diff --git a/.gitignore b/.gitignore
index 0090cc7..85760b4 100644
--- a/.gitignore
+++ b/.gitignore
@@ -173,3 +173,5 @@ dist
# Finder (MacOS) folder config
.DS_Store
+
+*.blend?
\ No newline at end of file
diff --git a/README.md b/README.md
index d7e7b6b..ac97788 100644
--- a/README.md
+++ b/README.md
@@ -4,13 +4,16 @@ Foxes dream of electron beams.
**noe** + **eidelon** _(n. a thing, an image, a reflection)_
-https://art.mekanoe.com
+https://3d.noe.sh
## Artworks
-- [./001-platform-provenance](https://art.mekanoe.com/001-platform-provenance)
-- [./002-webgl-engine](https://art.mekanoe.com/002-webgl-engine)
-- [./003-scene](https://art.mekanoe.com/003-scene)
+- [./001-platform-provenance](https://3d.noe.sh/001-platform-provenance)
+- [./002-webgl-engine](https://3d.noe.sh/002-webgl-engine)
+- [./003-scene](https://3d.noe.sh/003-scene)
+- [./004-a-new-leaf](https://3d.noe.sh/004-a-new-leaf)
+- [./005-thoughtform-hidenoe](https://3d.noe.sh/005-thoughtform-hidenoe)
+- [./006-the-edge](https://3d.noe.sh/006-the-edge)
## Development
diff --git a/bun.lockb b/bun.lockb
deleted file mode 100755
index ccec66b..0000000
Binary files a/bun.lockb and /dev/null differ
diff --git a/hack/build.ts b/hack/build.ts
index 4f0b982..c230b66 100644
--- a/hack/build.ts
+++ b/hack/build.ts
@@ -27,6 +27,8 @@ const results = await Bun.build({
".wgsl": "text",
".vert": "text",
".frag": "text",
+ ".html": "text",
+ ".md": "text",
},
minify: process.env.MINIFY === "false" ? false : true,
plugins: [glslPlugin],
diff --git a/hack/convert-meshes.ts b/hack/convert-meshes.ts
index a760bc5..2fa1600 100644
--- a/hack/convert-meshes.ts
+++ b/hack/convert-meshes.ts
@@ -1,5 +1,6 @@
import chalk from "chalk";
import { globSync } from "glob";
+import { relative, resolve, dirname } from "node:path";
const w = 1;
@@ -49,8 +50,13 @@ type Triangle = {
// ...vertToArray(t.c),
// ];
+const meshAbsolutePath = resolve("./src/renderer/mesh.ts");
+
+const getMeshImportPath = (thisFile: string) =>
+ relative(dirname(thisFile), meshAbsolutePath).replace(/\.ts$/g, "");
+
export const convertMeshes = async () => {
- const meshes = globSync("src/meshes/*.ply");
+ const meshes = globSync("src/meshes/**/*.ply");
for (const file of meshes) {
const ply = await Bun.file(file).text();
@@ -214,42 +220,32 @@ export const convertMeshes = async () => {
: [];
const facesArray: number[] = faces.flatMap((f) => [f.a, f.b, f.c]);
+ const facesMaxValue = facesArray.reduce(
+ (acc, face) => (face > acc ? face : acc),
+ 0
+ );
+ const facesBitDepth =
+ facesMaxValue <= 0xff ? 8 : facesMaxValue <= 0xffff ? 16 : 32;
const outFile = file.replace(".ply", ".ts");
- const outString = `
-import { Mesh } from "../renderer/mesh";
+ const outString = `import { Mesh } from "${getMeshImportPath(outFile)}";
// prettier-ignore
-const positions = new Float32Array(${JSON.stringify(positions)});
-
-// prettier-ignore
-const colors = ${
- vertexConfig.colors ? `new Uint8Array(${JSON.stringify(colors)})` : "null"
- };
-
-// prettier-ignore
-const uvs = ${
- vertexConfig.uvs ? `new Float32Array(${JSON.stringify(uvs)})` : "null"
- };
-
-
-// prettier-ignore
-const normals = ${
- vertexConfig.normals
- ? `new Float32Array(${JSON.stringify(normals)})`
- : "null"
- };
-
-// prettier-ignore
-const faces = new Uint32Array(${JSON.stringify(facesArray)});
-
export default new Mesh({
- colors,
- faces,
+ colors: ${
+ vertexConfig.colors ? `new Uint8Array(${JSON.stringify(colors)})` : "null"
+ },
+ faces: new Uint${facesBitDepth}Array(${JSON.stringify(facesArray)}),
name: ${JSON.stringify(file)},
- normals,
- positions,
- uvs,
+ normals: ${
+ vertexConfig.normals
+ ? `new Float32Array(${JSON.stringify(normals)})`
+ : "null"
+ },
+ positions: new Float32Array(${JSON.stringify(positions)}),
+ uvs: ${
+ vertexConfig.uvs ? `new Float32Array(${JSON.stringify(uvs)})` : "null"
+ },
vertexCount: ${vertexCount}
});
`;
diff --git a/hack/templates/work.html.txt b/hack/templates/work.html.txt
index 55a9dda..cb45028 100644
--- a/hack/templates/work.html.txt
+++ b/hack/templates/work.html.txt
@@ -1,4 +1,4 @@
-
+
com.mekanoe.art // ##name##
+
+
+
+ XX.X FPS (XX.X ms)
+ [noeidelon] [stage 1]
bootstrapping...
this is taking a while...
[panic] heck wtf
+
+
+
+
diff --git a/html/004-a-new-leaf/main.js b/html/004-a-new-leaf/main.js
new file mode 100644
index 0000000..979cf4c
--- /dev/null
+++ b/html/004-a-new-leaf/main.js
@@ -0,0 +1,2 @@
+import{a as $,b as D} from"../chunk-13ea4b456137d650.js";import{d as i,f as Y,g as R,h as q,i as Q,j as C,n as B,o as G} from"../chunk-0ef35489d83e6289.js";var x=`#version 300 es
+precision highp float;uniform vec4 u_light_0_color;uniform vec4 u_albedo;uniform sampler2D u_texture_0;uniform sampler2D u_texture_1;uniform sampler2D u_texture_2;in vec2 uv0;in vec3 normal;in vec3 light_pos;out vec4 fragColor;void main(){vec3 normal=normalize(normal);float light=clamp(dot(normal,light_pos),0.0,1.0);vec3 ramp=texture(u_texture_2,vec2(light,0.0)).rgb;fragColor=vec4(1.0);fragColor.rgb=texture(u_texture_0,uv0).rgb;fragColor.rgb*=ramp;fragColor.a=1.0;}`;var K={attributes:{vertex:"a_vertex",uv0:"a_uv0",normal:"a_normal",vertexColor:"a_vertex_color"},uniforms:{view:"u_view",projection:"u_projection",objectToWorld:"u_object_to_world",objectToWorldInv:"u_object_to_world_inv",light0:"u_light_0",light0Color:"u_light_0_color",time:"u_time",albedo:"u_albedo",texture0:"u_texture_0",texture1:"u_texture_1",texture2:"u_texture_2"}},H=(c,y=[0.1,0.1,0.1,1])=>new C(K).vertex(D).fragment(x).app(c).prerenderHook(({gl:s},A)=>{s.uniform4fv(A.mappings.uniforms.albedo,y)});var J=new i({colors:null,faces:new Uint8Array([0,1,2,3,4,0,0,5,3,0,4,1,3,6,4,0,7,5]),name:"src/meshes/cube-backdrop/cube-backdrop.ply",normals:new Float32Array([0.5773503,0.5773503,0.5773503,1,0,0,0.70710677,0.70710677,0,0,0.70710677,0.70710677,0.70710677,0,0.70710677,0,1,0,0,0,1,0.70710677,0.70710677,0]),positions:new Float32Array([-0.10000001,-0.0025735903,-0.10000001,-0.10000001,0.19742644,0.10000001,-0.10000001,-0.0025735903,0.10000001,0.10000001,-0.0025735903,-0.10000001,-0.10000001,0.19742644,-0.10000001,0.10000001,-0.0025735903,0.10000001,0.10000001,0.19742644,-0.10000001,-0.10000001,-0.0025735903,0.10000001]),uvs:new Float32Array([0.5,0.5,-0.000000059604645,1,0,0.49999997,1,0.50000006,0.49999997,1,1,0,1,1,0.50000006,0]),vertexCount:8});var d=new Y(q(0),R([0,-45,0]),q(20));var X=(c,y,s,A=255)=>[c/255,y/255,s/255,A/255];var F="../ramp-aa773f5148819e95.png";var _=new i({colors:null,faces:new Uint16Array([0,1,2,0,3,4,2,3,0,5,3,2,6,7,8,8,7,9,10,11,12,13,14,15,16,17,18,19,20,21,22,1,23,24,25,26,27,28,29,30,31,27,32,18,17,33,34,35,36,37,38,39,40,13,41,42,43,44,45,46,47,15,14,48,18,32,49,26,50,33,35,51,52,53,54,54,47,14,55,48,56,11,10,57,13,58,59,40,14,13,53,47,54,60,61,62,44,63,64,6,60,65,65,7,6,66,67,54,60,68,61,38,37,69,26,49,70,67,10,12,55,71,48,72,22,23,9,68,8,68,60,6,73,17,74,75,10,67,76,26,77,1,26,76,78,47,79,0,80,81,82,50,83,84,85,86,39,13,59,87,27,29,87,20,88,29,21,87,20,89,88,90,17,16,29,72,91,40,84,86,58,92,59,21,11,19,73,87,88,27,31,2,31,5,2,52,49,53,61,68,9,93,48,94,88,93,94,51,35,95,37,96,69,33,51,41,77,52,54,67,12,77,26,1,0,76,77,12,97,49,82,46,98,99,79,53,97,23,76,72,25,50,26,0,24,26,100,37,36,52,70,49,36,101,102,64,45,44,86,66,40,11,21,91,12,72,76,82,49,50,72,11,91,75,103,89,19,89,20,32,88,94,87,21,20,79,47,53,2,1,22,22,72,29,22,29,28,27,2,28,51,95,42,50,25,83,26,70,77,0,81,24,91,21,29,23,1,76,53,49,97,77,54,67,104,105,106,52,77,70,101,36,38,4,80,0,66,54,14,62,107,60,44,46,108,41,51,42,86,109,66,57,10,75,71,16,18,55,16,71,35,110,95,32,17,73,111,3,5,40,39,84,112,75,67,72,12,11,75,89,19,75,19,57,88,89,93,74,27,73,94,48,32,19,11,57,71,18,48,40,66,14,73,88,32,113,62,61,22,28,2,35,114,110,73,27,87,115,93,89,115,89,103,116,117,118,119,120,121,122,30,74,123,124,122,125,126,127,128,129,130,131,132,133,4,132,134,135,121,136,137,112,86,138,128,139,140,141,142,143,144,145,146,147,148,122,124,30,123,136,121,56,48,93,58,13,15,121,141,140,123,121,124,30,27,74,149,150,151,152,122,74,145,153,154,120,141,121,100,36,102,155,156,153,157,151,118,152,74,17,121,135,119,144,119,145,119,144,120,158,159,160,4,159,132,100,161,162,163,98,164,138,98,45,15,165,149,166,34,33,154,153,167,153,145,155,93,115,56,154,167,164,116,168,117,150,168,116,92,157,118,136,123,169,109,112,67,3,111,160,170,171,127,132,131,34,165,150,149,148,147,172,115,85,173,158,139,159,159,4,160,149,151,157,126,125,148,45,174,129,128,133,159,156,163,167,92,58,157,175,5,142,140,31,124,144,141,120,86,85,137,8,68,6,45,98,46,34,176,35,64,176,174,176,34,177,64,174,45,64,63,176,132,34,166,162,96,100,58,149,157,125,127,171,178,179,180,181,125,171,147,182,172,126,148,172,129,128,138,130,133,128,179,178,183,177,34,131,132,166,134,159,139,128,159,133,132,160,111,175,154,143,145,137,85,115,138,45,129,35,176,114,100,102,161,100,96,37,139,98,138,164,98,158,99,98,184,98,163,184,165,47,78,160,4,3,17,90,152,167,153,156,75,112,103,142,144,143,113,107,62,151,150,116,124,31,30,142,5,140,5,31,140,125,146,148,176,63,114,139,158,98,5,175,111,164,158,160,143,164,160,15,149,58,118,151,116,112,137,103,163,164,167,175,142,143,164,143,154,175,143,160,142,141,144,121,140,124,103,137,115,80,4,134,67,66,109,109,86,112,47,165,15,181,171,170,185,186,187,188,189,190,191,192,193,191,194,192,195,196,197,198,199,200,201,199,198,202,203,204,205,201,206,207,201,205,208,185,209,210,185,208,211,185,210,212,185,211,194,189,213,194,190,189,214,215,216,192,212,217,218,219,220,221,219,218,213,192,194,198,206,201,187,209,185,217,193,192,193,222,191,193,223,222,193,224,223,193,225,224,193,226,225,193,203,226,193,204,203,218,227,221,218,199,227,218,200,199,204,215,202,204,216,215,216,219,214,216,220,219,211,217,212,228,229,85,228,85,84,230,231,84,230,84,39,232,230,39,232,39,59,233,234,90,233,90,16,235,236,55,235,55,56,237,238,173,239,240,16,239,16,55,241,232,59,241,59,92,242,241,92,231,228,84,240,233,16,243,244,122,243,122,152,245,246,119,245,119,135,247,248,136,247,136,169,246,249,119,250,251,168,234,252,152,234,152,90,244,253,122,254,255,118,253,256,123,253,123,122,257,258,145,256,259,169,256,169,123,260,261,262,248,135,136,263,237,173,263,173,85,238,264,115,238,115,173,265,254,118,265,118,117,264,235,56,264,56,115,255,242,92,255,92,118,258,266,155,258,155,145,252,243,152,259,247,169,249,257,145,249,145,119,251,265,117,251,117,168,267,268,269,270,271,272,273,274,275,276,277,278,236,239,55,229,263,85,279,280,281,282,283,284]),name:"src/meshes/fox/fox.ply",normals:new Float32Array([0.3475203,-0.1423119,-0.92681,0.5162422,0.12797521,-0.8468272,0.15832935,0.05530619,-0.98583627,-0.34248725,0.027904412,-0.9391081,-0.5169309,-0.31768712,-0.7948945,-0.48697895,-0.1626665,-0.85813236,0.979832,0.13666466,-0.14578043,0.9031805,0.21487509,-0.37160963,0.66321534,0.26724067,-0.6990907,0.6848186,0.23503296,-0.68977004,0.50283414,0.37262148,-0.779943,0.23640795,0.47815725,-0.84585875,0.3647613,0.40136182,-0.8401535,0.3046436,0.23757984,0.92236,0.31008115,0.576068,0.7563038,-0.22806334,0.32389933,0.91819185,0.17951295,-0.316014,-0.931617,-0.17395478,-0.060770363,-0.9828767,0.3371145,-0.028111659,-0.94104385,0.5286752,0.36182427,-0.76784486,0.37282482,0.34924614,-0.8596678,0.04436654,0.3120137,-0.9490411,0.1748497,-0.08175629,-0.981195,0.4760932,0.18387188,-0.8599573,0.77194935,-0.10489054,-0.6269707,0.8878576,0.018637033,-0.45974046,0.8233882,0.00536109,-0.5674533,0.50706327,0.2949509,-0.8098708,0.5776023,0.024086185,-0.8159629,0.20082258,0.4428197,-0.8738313,-0.3673268,-0.008583662,-0.9300523,-0.23037066,-0.14419852,-0.9623597,0.10130113,0.55220604,-0.82753044,-0.30028316,0.6138469,-0.7300836,-0.42857707,0.59847176,-0.67687017,0.2310956,0.77802414,-0.5841861,0.40507296,-0.59645694,-0.69293207,0.018303465,0.44150117,-0.8970739,0.77194935,-0.10489054,-0.6269707,0.6770759,-0.15234865,0.71997094,0.5551748,0.09818922,0.82591754,0.5862696,0.275684,-0.7617652,0.8878576,0.018637033,-0.45974046,0.77194935,-0.10489054,-0.6269707,0.3452935,0.52275664,0.7794215,-0.037781123,0.40868607,0.9118927,0.47639555,0.22756127,0.8492721,0.038687505,0.4890638,0.87138975,0.4779266,0.31795877,-0.8188335,0.9412043,0.3062575,0.14262189,0.985557,-0.050912835,-0.16150954,0.41709664,0.43660966,-0.79712135,0.65320575,0.7567542,-0.025403246,0.5102622,0.5121896,0.6908649,0.5327677,0.8339708,0.14370571,0.50982845,-0.2752561,-0.81505156,0.9362124,0.034893714,-0.34969804,0.49277383,0.474742,-0.729242,-0.10767815,0.15382154,0.98221403,0.53157943,-0.18795584,0.825891,0.3452935,0.52275664,0.7794215,0.73606163,0.6634644,-0.13426952,-0.17794462,0.9747583,-0.13484038,-0.38528097,0.9081675,0.1636775,0.03706524,0.8542405,0.51855505,0.90783143,0.11600388,0.40297043,0.8010637,0.5264299,0.2849009,0.6885465,0.57700217,-0.43928608,0.95855004,0.10577212,0.26456407,0.5862696,0.275684,-0.7617652,0.78829354,0.5408408,-0.2934015,0.21502984,0.04666299,-0.97549206,0.102968186,0.09595936,-0.9900452,-0.42321405,0.5065525,-0.7511954,-0.69715625,-0.08602459,-0.71173936,0.82457936,0.081235796,-0.5598835,0.4377959,0.26956058,-0.85771316,0.6155783,0.5745703,-0.5393813,0.07019434,0.24138543,0.9678872,0.3541473,0.25355586,0.9001605,-0.29064578,-0.724498,-0.62500215,0.375913,-0.73612595,-0.56285685,0.90783143,0.11600388,0.40297043,0.9031805,0.21487509,-0.37160963,0.5472127,-0.29103354,0.7847661,0.87695193,-0.2072897,0.4335738,0.8803676,0.14394727,0.45192042,0.15257555,0.7520019,-0.64125955,0.073696144,0.91218823,-0.40308988,0.48116767,0.69189876,-0.5382877,-0.38885155,-0.2292497,-0.8923223,-0.08802483,0.3184032,-0.94385976,-0.16566989,-0.31949857,0.9329921,0.4088575,0.88988423,-0.20234066,0.23401263,0.7841241,-0.5747935,0.9031805,0.21487509,-0.37160963,-0.30028316,0.6138469,-0.7300836,0.47639555,0.22756127,0.8492721,-0.13893181,0.08481444,0.98666334,0.3541473,0.25355586,0.9001605,-0.6594078,-0.34964943,-0.6655273,0.375913,-0.73612595,-0.56285685,-0.29064578,-0.724498,-0.62500215,0.7611686,0.58185023,-0.28648314,-0.04397583,0.70420456,-0.7086339,0.73606163,0.6634644,-0.13426952,0.6848186,0.23503296,-0.68977004,-0.38528097,0.9081675,0.1636775,0.90783143,0.11600388,0.40297043,0.9180944,0.3928391,0.052727237,0.6848186,0.23503296,-0.68977004,-0.75246775,0.008946161,-0.6585683,0.93610126,0.23180684,-0.26453748,-0.04397583,0.70420456,-0.7086339,-0.04397583,0.70420456,-0.7086339,0.92324126,0.38289523,0.03188642,-0.8208653,0.15153797,0.55065095,-0.6847748,0.31241915,0.6583902,-0.44955286,-0.170653,0.87680095,-0.69434595,0.69967836,-0.16832665,-0.64949834,0.59640735,-0.47164628,-0.72120667,0.6666094,-0.18839571,-0.44213012,-0.017088598,-0.8967881,-0.16689667,0.37004504,-0.9138995,-0.32365012,-0.16409263,-0.93183917,-0.81858766,0.5451293,-0.18096499,-0.992983,0.08945896,0.07734239,-0.21252948,0.5347677,0.81783545,-0.7021046,-0.14130145,0.6979133,-0.992983,0.08945896,0.07734239,-0.9546164,0.028929858,-0.2964296,-0.7311533,0.36524838,-0.5762018,-0.9617006,-0.03754102,-0.27151904,-0.9879483,0.08645398,-0.1283894,-0.78725094,-0.2752617,-0.5517852,-0.74839973,-0.49738073,-0.4387599,-0.6237263,0.711984,-0.32255915,0.9198568,0.38913035,-0.049406413,-0.44723478,0.13983466,0.883418,-0.6689012,-0.23592637,0.7049185,-0.8903412,-0.15419926,-0.42838684,-0.92482555,0.016368585,-0.3800392,-0.8165544,-0.1464694,-0.55837774,-0.87178856,-0.35990623,-0.3323434,-0.517776,0.4540006,-0.7251148,-0.8433312,0.09983585,0.52803904,-0.47634494,-0.05045076,-0.87780994,-0.7311533,0.36524838,-0.5762018,-0.6984636,-0.017294424,-0.71543664,-0.64312565,0.17802551,0.7447794,-0.66986597,-0.026210472,0.7420193,-0.90760005,0.06683492,0.41448176,-0.71550065,-0.2610496,-0.6480061,-0.48163462,-0.16273934,0.86112946,-0.9447443,-0.18422589,0.271144,-0.84864473,-0.16340141,0.5030924,-0.66986597,-0.026210472,0.7420193,-0.44133595,0.045067813,0.8962095,-0.84305483,-0.09319865,0.52969086,-0.96471584,-0.253683,0.070486,-0.90281165,-0.30579108,-0.30236223,-0.78725094,-0.2752617,-0.5517852,-0.747842,0.21194589,-0.6291353,-0.38904643,0.09032617,0.9167791,-0.8832008,-0.12243323,0.45273212,-0.38904643,0.09032617,0.9167791,-0.747842,0.21194589,-0.6291353,-0.4839415,-0.097555116,0.86964566,-0.84864473,-0.16340141,0.5030924,-0.05462312,0.1690641,-0.9840902,0.075866185,0.9794647,-0.18679745,0.02688641,0.9635681,-0.26610863,-0.9546164,0.028929858,-0.2964296,0.94705594,-0.2590572,-0.18966934,-0.21252948,0.5347677,0.81783545,-0.6675564,-0.59708816,-0.444808,0.075866185,0.9794647,-0.18679745,-0.23479536,0.67432845,-0.7001088,-0.23479536,0.67432845,-0.7001088,-0.47634494,-0.05045076,-0.87780994,-0.81858766,0.5451293,-0.18096499,-0.23479536,0.67432845,-0.7001088,-0.9879483,0.08645398,-0.1283894,-0.7311533,0.36524838,-0.5762018,0.07019434,0.24138543,0.9678872,-0.40643814,-0.8098558,-0.42301488,-0.19065972,-0.720445,-0.66678923,0.075374685,-0.7676886,-0.6363747,0.41129172,-0.60820895,-0.6789117,0.3633369,-0.6630077,-0.65452826,-0.52704555,-0.58184344,-0.6194199,-0.017521787,-0.99930537,0.032890607,-0.021521537,-0.94214505,-0.3345139,0.6121442,-0.6924734,-0.38178536,-0.70010203,-0.5537167,-0.45083794,-0.7312984,-0.6671969,-0.14160144,-0.70010203,-0.5537167,-0.45083794,-0.017521787,-0.99930537,0.032890607,0.3288468,-0.8804425,0.34158558,-0.1467376,-0.75445783,0.63973546,0.24385142,-0.7973807,0.55201495,-0.23899291,-0.84482497,0.4786994,-0.80877304,-0.50211614,0.3062115,-0.847515,-0.42922866,-0.3122198,0.5623081,-0.8260273,-0.03858204,0.04242061,-0.8742375,0.4836417,0.407,-0.7800877,0.47519907,-0.12836032,-0.80886763,0.57380897,0.16910498,-0.7943238,-0.5834837,0.12811182,-0.79456544,-0.59350926,0.40930107,-0.86440027,-0.29203552,0.48217154,-0.858188,-0.17613666,-0.57233065,-0.7097642,-0.41069746,0.22967121,-0.49633533,-0.83719915,-0.27430204,-0.8970687,0.34644783,-0.62714297,-0.48046845,0.6130593,0.5038301,-0.8556301,0.1185428,0.42636088,-0.8999785,-0.09085657,0.39348367,-0.810439,0.4340037,-0.38334632,-0.9040218,0.18918258,0.4810456,-0.8009131,0.35655776,-0.68955994,-0.7188539,0.0880689,-0.0558253,-0.9859457,0.15746342,-0.0028608302,-0.9999959,-0.000106975036,-0.011426341,-0.9991058,-0.04070532,-0.011439374,-0.9991109,-0.04057865,-0.58131546,-0.51583326,-0.6292762,-0.58025545,-0.63782334,0.5064435,0.39348367,-0.810439,0.4340037,0.4810456,-0.8009131,0.35655776,0.3288468,-0.8804425,0.34158558,0.24385142,-0.7973807,0.55201495,0.407,-0.7800877,0.47519907,0.075374685,-0.7676886,-0.6363747,-0.19065972,-0.720445,-0.66678923,0.48217154,-0.858188,-0.17613666,0.40930107,-0.86440027,-0.29203552,0.5623081,-0.8260273,-0.03858204,0.6121442,-0.6924734,-0.38178536,0.16910498,-0.7943238,-0.5834837,0.12811182,-0.79456544,-0.59350926,0.04242061,-0.8742375,0.4836417,-0.12836032,-0.80886763,0.57380897,-0.57233065,-0.7097642,-0.41069746,-0.021521537,-0.94214505,-0.3345139,-0.58131546,-0.51583326,-0.6292762,-0.847515,-0.42922866,-0.3122198,-0.52704555,-0.58184344,-0.6194199,-0.70010203,-0.5537167,-0.45083794,-0.80877304,-0.50211614,0.3062115,-0.38334632,-0.9040218,0.18918258,-0.68955994,-0.7188539,0.0880689,-0.40643814,-0.8098558,-0.42301488,0.22967121,-0.49633533,-0.83719915,-0.1467376,-0.75445783,0.63973546,-0.23899291,-0.84482497,0.4786994,0.3633369,-0.6630077,-0.65452826,-0.62714297,-0.48046845,0.6130593,-0.27430204,-0.8970687,0.34644783,0.41129172,-0.60820895,-0.6789117,-0.70010203,-0.5537167,-0.45083794,-0.7312984,-0.6671969,-0.14160144,-0.74839973,-0.49738073,-0.4387599,0.5038301,-0.8556301,0.1185428,0.42636088,-0.8999785,-0.09085657,-0.58025545,-0.63782334,0.5064435,-0.38334632,-0.9040218,0.18918258,-0.7312984,-0.6671969,-0.14160144,-0.017521787,-0.99930537,0.032890607,-0.74839973,-0.49738073,-0.4387599,-0.0028608302,-0.9999959,-0.000106975036,-0.011426341,-0.9991058,-0.04070532,-0.74839973,-0.49738073,-0.4387599,-0.017521787,-0.99930537,0.032890607,-0.0558253,-0.9859457,0.15746342,-0.74839973,-0.49738073,-0.4387599,-0.0558253,-0.9859457,0.15746342,-0.0028608302,-0.9999959,-0.000106975036,-0.74839973,-0.49738073,-0.4387599,-0.011439374,-0.9991109,-0.04057865,-0.58131546,-0.51583326,-0.6292762,-0.74839973,-0.49738073,-0.4387599,-0.011426341,-0.9991058,-0.04070532,-0.011439374,-0.9991109,-0.04057865,-0.74839973,-0.49738073,-0.4387599]),positions:new Float32Array([-0.6999253,6.443001,-0.82603,0.07097474,5.343301,-0.52663046,-0.76262593,4.472701,-1.15393,-1.7783258,5.520501,-0.86433035,-2.2427258,6.713101,-0.82603,-1.5250261,4.4763007,-0.9856301,0.29497454,9.249201,0.16336976,0.06327439,8.8725,-0.28472978,-0.035225682,9.543601,0.14946976,-0.30342564,9.674201,-0.23032992,2.4808748,3.6319008,-0.11143037,2.0297747,3.2159004,-0.4459305,1.5565743,4.603301,-0.21123049,2.1004748,3.2381003,3.2929707,1.8371744,4.748301,2.81227,0.20437472,4.420901,2.9141703,1.8253747,0.4645001,-1.7956301,0.91437465,0.9539002,-2.1209302,2.4374743,1.0497,-1.8992304,2.5767748,2.7875004,-0.6003304,1.7599748,1.8992002,-1.1086301,1.5595742,2.5219004,-1.29143,0.24357454,3.5395007,-0.67183006,0.24817431,4.333201,-0.45933002,-0.3960259,7.7391005,-1.2657304,0.05687409,8.074501,-0.67993015,-0.12432557,6.748201,-0.34603044,-0.06132584,2.9543004,-0.8707303,-0.20062563,3.4773006,-0.68853,0.43317416,2.5253003,-0.46623006,-0.4904259,2.1981003,-0.90393,-1.0552258,3.1734004,-1.06763,1.4597749,1.4790002,-2.0267305,-1.8893259,8.729101,-1.7110304,-2.2624261,9.345001,-1.37473,-0.97242594,9.702102,-0.89533013,-1.2870256,7.527001,-2.5206306,-1.5926256,8.311801,-2.8306303,-0.3960259,7.7391005,-1.2657304,2.5549746,1.4319001,2.9302707,2.773675,2.7475002,3.0280704,-0.94812554,8.5809,-1.5055304,0.05687409,8.074501,-0.67993015,-0.3960259,7.7391005,-1.2657304,-0.40532535,9.700401,0.84696966,-1.540426,8.934701,1.6871705,-0.62042546,7.995201,1.7714701,-0.15842591,5.3485007,2.2917705,3.3480747,1.1927001,-1.4741304,0.23047411,6.9421005,0.8096703,0.17777406,7.816401,-0.13533022,-0.80692565,9.159501,-1.4650301,0.73637474,6.182101,0.90636986,0.16357423,6.238301,1.5856699,2.0266747,5.562201,1.4546701,3.4768748,0.57150006,-1.4508302,4.1452746,0.9685002,-0.7070302,2.576082,3.1560004,-0.31358007,0.7198746,2.4339004,3.54267,2.288975,1.3705001,3.4610705,-0.40532535,9.700401,0.84696966,0.14267427,10.748201,0.011170197,-0.35632557,10.885501,-0.026630403,-1.0288259,10.067701,0.053869635,-1.2105256,9.758201,0.87647027,0.09657441,8.901701,0.59447026,3.0635746,4.299401,1.8075701,2.5929751,4.772801,0.5979699,0.16167451,9.942601,0.37547,-0.94812554,8.5809,-1.5055304,0.47697452,6.306901,0.39987034,3.0665743,0.73340005,-1.42483,0.6858742,3.7022007,-0.62512976,0.044074252,1.8123003,-1.5475305,-0.053825382,1.2451001,-1.5953302,3.2380748,2.4352005,-0.08572999,0.5252747,5.1989007,-0.29223025,0.8465745,5.738801,0.27866977,-0.7709256,5.724101,2.2065706,-0.619426,6.356501,1.9183702,-1.9789258,7.178801,-1.18583,-0.91182566,7.3815007,-1.4608301,0.09657441,8.901701,0.59447026,0.06327439,8.8725,-0.28472978,3.0936747,0.6671002,2.4830706,4.0453753,0.52309996,1.4920702,3.6563747,2.4587002,2.1933703,0.5219742,1.8811003,-1.0851305,1.1984742,1.6896003,-1.65813,2.625175,1.7991003,-0.6557297,0.67027444,0.5334,-1.9347303,1.2843744,3.0958004,-0.5304299,0.77727437,1.2146001,3.4750705,3.4174747,1.7396003,-0.85813,2.3443742,1.5199003,-1.5742303,0.06327439,8.8725,-0.28472978,-1.8893259,8.729101,-1.7110304,-0.62042546,7.995201,1.7714701,-1.219426,6.696401,2.0643702,-0.619426,6.356501,1.9183702,-2.161226,7.667401,-2.4847305,-0.91182566,7.3815007,-1.4608301,-1.9789258,7.178801,-1.18583,3.1734743,1.5024002,0.15137026,-0.7888257,10.067701,-0.3484299,0.14267427,10.748201,0.011170197,-0.30342564,9.674201,-0.23032992,-1.0288259,10.067701,0.053869635,0.09657441,8.901701,0.59447026,3.387675,3.7165008,1.58967,-0.30342564,9.674201,-0.23032992,-2.2445261,4.9454007,-0.66073006,3.6162753,2.8629005,0.8747697,-0.7888257,10.067701,-0.3484299,-0.7888257,10.067701,-0.3484299,4.364375,1.0550001,0.5702698,-0.61192554,1.0255002,2.04657,-1.0520257,0.52869993,2.4247699,-0.0897255,0.5721001,2.6455705,-2.517626,0.78980017,0.25796968,-1.337726,0.8835,0.28996965,-1.4268259,0.95919997,-0.43353048,-0.44272542,1.0345002,-0.70443004,-1.0315259,1.0731,-0.7273301,-1.0638257,2.0252004,-0.7415303,-3.471126,10.565201,0.1122696,-3.4521263,9.519001,0.46967015,-2.878626,9.963901,0.81987005,-2.741226,7.508901,1.3471704,-3.4521263,9.519001,0.46967015,-3.433826,9.038601,0.28866962,-2.882526,9.084501,-0.10313035,-3.3896263,8.113201,-0.3605301,-3.3058262,8.5403,0.07176972,-2.7694259,7.7350006,-1.0115304,-2.230626,0.22640002,-0.41983035,-1.868326,0.75070006,-0.9546304,3.880675,1.3958001,1.1265702,-2.327826,8.2278,1.5766702,-2.5213258,6.882601,1.3467698,-1.4618257,2.4264002,-0.6133301,-1.2621258,1.7734003,0.17966996,-1.4422258,3.0290003,0.4318703,-1.9845258,3.6388009,0.69077003,-1.890426,1.0817002,0.44496998,-2.0575259,0.9955001,0.9599702,-2.964326,9.822501,-0.10223008,-2.882526,9.084501,-0.10313035,-3.092126,9.502201,0.2502701,-0.087125406,3.1274004,2.8989704,-0.8196259,2.3198001,1.7973703,-0.8748258,2.0967002,2.7634706,0.02887421,0.7540002,-1.4195303,-1.665426,1.8197002,1.62437,-2.1923258,3.5194008,1.3925699,-1.186226,0.55610013,1.5514703,-0.8196259,2.3198001,1.7973703,-0.029425815,2.1513002,3.4381702,-2.5888262,6.208601,0.9756699,-3.112326,7.3445005,0.3178696,-2.667426,4.758001,0.018969728,-2.7694259,7.7350006,-1.0115304,-2.392026,8.487902,-1.3364304,-0.8792256,4.817401,2.3403704,-2.6100261,4.707801,1.3596704,-0.8792256,4.817401,2.3403704,-2.392026,8.487902,-1.3364304,-1.8001261,4.085301,1.9035699,-1.186226,0.55610013,1.5514703,-1.569626,0.3742001,-1.4788301,-1.9930261,9.862201,-0.003130341,-3.0411263,10.770401,0.043869786,-3.433826,9.038601,0.28866962,4.2867746,0.52519995,0.41017002,-2.878626,9.963901,0.81987005,-1.9710261,3.9114006,0.01537018,-1.9930261,9.862201,-0.003130341,-2.2901258,9.714901,-0.21963045,-2.2901258,9.714901,-0.21963045,-2.964326,9.822501,-0.10223008,-3.471126,10.565201,0.1122696,-2.2901258,9.714901,-0.21963045,-3.3058262,8.5403,0.07176972,-2.882526,9.084501,-0.10313035,-0.7709256,5.724101,2.2065706,0.58418125,0.22400019,-1.7113466,0.7487328,0.22400019,-1.869269,1.2752382,0.22400019,-1.8116388,-1.4210848,0.22400019,-1.3924581,-1.2286401,0.22400019,-1.2118917,-1.7548681,0.22400019,-1.3470285,-2.2161448,0.22400019,-0.43305972,-0.5065232,0.22400019,-0.5854172,3.6921923,0.22400019,-0.5356896,-1.9521799,0.22400019,-1.126045,-2.2274122,0.22400019,-0.4297089,-1.9521799,0.22400019,-1.126045,-2.2161448,0.22400019,-0.43305972,2.2313638,0.22400019,2.680494,-0.6810555,0.22400019,2.4642336,2.4538667,0.22400019,2.5940027,0.41850665,0.22400019,2.7519977,-2.6425998,0.22400019,0.70022744,-2.7626433,0.22400019,0.07626649,4.1131854,0.22400019,0.46040884,1.955617,0.22400019,2.7750673,2.1960154,0.22400019,2.7574801,0.7445824,0.22400019,2.9373279,2.7569857,0.22400019,-1.5163606,2.100773,0.22400019,-1.6653436,3.4797022,0.22400019,-1.0087174,3.5642383,0.22400019,-0.8515244,-0.37594378,0.22400019,-0.7854573,-1.1313287,0.22400019,-1.2045778,-1.2935071,0.22400019,1.0919343,-2.5766528,0.22400019,0.8374413,4.0127363,0.22400019,0.9127198,3.5815594,0.22400019,-0.7074967,3.4810352,0.22400019,1.8996607,-1.11559,0.22400019,1.3025575,3.8143253,0.22400019,1.5762239,-1.0991356,0.22400019,2.0397234,-2.209373,0.22400019,-0.42154086,-2.1618967,0.22400019,-0.40970844,-2.1749234,0.22400019,-0.40605244,-2.1937947,0.22400019,-0.40073627,-2.2783449,0.22400019,-0.37692034,-1.0468484,0.22400019,2.382645,3.4810352,0.22400019,1.8996607,3.8143253,0.22400019,1.5762239,2.2313638,0.22400019,2.680494,2.4538667,0.22400019,2.5940027,2.1960154,0.22400019,2.7574801,1.2752382,0.22400019,-1.8116388,0.7487328,0.22400019,-1.869269,3.5642383,0.22400019,-0.8515244,3.4797022,0.22400019,-1.0087174,4.1131854,0.22400019,0.46040884,3.6921923,0.22400019,-0.5356896,2.7569857,0.22400019,-1.5163606,2.100773,0.22400019,-1.6653436,1.955617,0.22400019,2.7750673,0.7445824,0.22400019,2.9373279,-0.37594378,0.22400019,-0.7854573,-0.5065232,0.22400019,-0.5854172,-2.2783449,0.22400019,-0.37692034,-2.7626433,0.22400019,0.07626649,-1.7548681,0.22400019,-1.3470285,-1.9521799,0.22400019,-1.126045,-2.6425998,0.22400019,0.70022744,-1.11559,0.22400019,1.3025575,-1.0991356,0.22400019,2.0397234,0.58418125,0.22400019,-1.7113466,-1.1313287,0.22400019,-1.2045778,-0.6810555,0.22400019,2.4642336,0.41850665,0.22400019,2.7519977,-1.2286401,0.22400019,-1.2118917,-2.5766528,0.22400019,0.8374413,-1.2935071,0.22400019,1.0919343,-1.4210848,0.22400019,-1.3924581,-1.9521799,0.22400019,-1.126045,-2.2274122,0.22400019,-0.4297089,-2.230626,0.22640002,-0.41983035,4.0127363,0.22400019,0.9127198,3.5815594,0.22400019,-0.7074967,-1.0468484,0.22400019,2.382645,-1.11559,0.22400019,1.3025575,-2.2274122,0.22400019,-0.4297089,-2.2161448,0.22400019,-0.43305972,-2.230626,0.22640002,-0.41983035,-2.1618967,0.22400019,-0.40970844,-2.1749234,0.22400019,-0.40605244,-2.230626,0.22640002,-0.41983035,-2.2161448,0.22400019,-0.43305972,-2.209373,0.22400019,-0.42154086,-2.230626,0.22640002,-0.41983035,-2.209373,0.22400019,-0.42154086,-2.1618967,0.22400019,-0.40970844,-2.230626,0.22640002,-0.41983035,-2.1937947,0.22400019,-0.40073627,-2.2783449,0.22400019,-0.37692034,-2.230626,0.22640002,-0.41983035,-2.1749234,0.22400019,-0.40605244,-2.1937947,0.22400019,-0.40073627,-2.230626,0.22640002,-0.41983035]),uvs:new Float32Array([0.21851481,0.38709354,0.25122124,0.29925498,0.33613995,0.31277353,0.31780326,0.41546077,0.26634175,0.49754715,0.36926088,0.35428312,0.8862014,0.7660378,0.96414614,0.65773886,0.9142767,0.82184976,0.96414614,0.8656495,0.24378048,0.15517116,0.27324826,0.1538348,0.24071635,0.21034758,0.12782207,0.13377228,0.13686845,0.17050092,0.097095504,0.18026535,0.3456612,0.015984222,0.38372317,0.05219409,0.3173124,0.03967564,0.2669188,0.12665303,0.3150151,0.10144508,0.312529,0.12937495,0.32927862,0.22344446,0.2904697,0.2528519,0.13747068,0.42125323,0.1110152,0.38961607,0.17645767,0.34971166,0.37940347,0.20685007,0.3529383,0.23464157,0.35064337,0.17517665,0.43924242,0.18647039,0.41530237,0.2674248,0.34998143,0.06725915,0.12322961,0.6801839,0.1720783,0.6964544,0.16144735,0.7933706,0.8861246,0.52512723,0.84557533,0.5134298,0.9878913,0.42880467,0.12832226,0.086800925,0.14096868,0.11748978,0.074313566,0.7435197,0.020883663,0.84153533,0.00000001081579,0.77996564,0.32931674,0.8416559,0.35599756,0.7471563,0.4352468,0.76457715,0.09890157,0.21372627,0.28071728,0.038383927,0.12732372,0.2965882,0.11473294,0.36185902,0.110673696,0.76611084,0.1568792,0.258202,0.11916661,0.24799357,0.1670033,0.20147358,0.27564877,0.017370421,0.24627076,0.033188876,0.25064924,0.13463129,0.09065693,0.12818988,0.11538713,0.09199737,0.8276462,0.8879465,0.8977165,0.9073449,0.8979689,0.9335955,0.24703515,0.8216678,0.30523577,0.7905776,0.8020745,0.7431329,0.17493051,0.15400115,0.20319703,0.1803566,0.89068747,0.8602873,0.8669603,0.42128757,0.1696568,0.2862294,0.29085746,0.022808408,0.30401754,0.21331184,0.4063384,0.124203816,0.4319168,0.09517003,0.24068871,0.10983848,0.2422915,0.26877972,0.19642983,0.2589539,0.084621415,0.22762483,0.08997824,0.2432744,0.21659407,0.49825695,0.16409814,0.4431432,0.06007273,0.3584054,0.077401064,0.3881148,0.13976377,0.06055675,0.1772671,0.045047924,0.1689892,0.10318307,0.36747235,0.13334484,0.35129,0.09048066,0.27406374,0.088201545,0.40481266,0.033736143,0.3024185,0.17043002,0.080950305,0.101946086,0.26399732,0.060749806,0.3123137,0.06264582,0.08229262,0.8732247,0.78262734,0.48695683,0.054573745,0.28939876,0.4784059,0.67288846,0.52534187,0.6902852,0.843693,0.54919225,0.967211,0.5381632,0.8863765,0.6507956,0.23814057,0.07682296,0.52430856,0.78790325,0.5076637,0.9781552,0.42495766,0.8044593,0.88358545,0.94791806,0.39027283,0.865766,0.18311635,0.13782379,0.15227878,0.86758876,0.37036988,0.41615537,0.20584682,0.11498356,0.935007,0.9301176,0.19761893,0.83779246,0.20950294,0.045586396,0.0322884,0.11481223,0.02451134,0.09802288,0.048454616,0.09665558,0.6460075,0.21836895,0.5963892,0.2274105,0.5771463,0.1884031,0.5055221,0.114784405,0.5447714,0.15467297,0.48357084,0.21026236,0.75558704,0.9432239,0.8020744,0.9034289,0.7897775,0.96688294,0.36300594,0.6462114,0.27383736,0.69182056,0.27248618,0.6792056,0.2478923,0.6867268,0.25436208,0.6271816,0.26854706,0.6570603,0.2133645,0.5806204,0.637635,0.17406993,0.60493344,0.1558058,0.19796096,0.06852602,0.35857934,0.69122976,0.3951752,0.6194137,0.48257515,0.25476277,0.5577472,0.2591085,0.5101766,0.3366432,0.50301826,0.39985734,0.6224612,0.2508355,0.65923995,0.27131322,0.7339221,0.92058545,0.667627,0.84930974,0.75460386,0.8875665,0.07549074,0.15373975,0.036297202,0.14856292,0.053295545,0.13493255,0.45089763,0.06624607,0.65852106,0.35673973,0.5478699,0.43424743,0.734133,0.3012958,0.69251174,0.422131,0.07396352,0.1281145,0.4061021,0.5678618,0.31435022,0.5997315,0.4114268,0.44731957,0.75763285,0.6744133,0.734765,0.56230044,0.5902533,0.5873184,0.48538992,0.4962032,0.07417127,0.20548928,0.16459617,0.6398786,0.5627961,0.49731115,0.010203981,0.1122183,0.61384606,0.11812159,0.7293909,0.98951745,0.753717,0.961225,0.8020744,0.78846765,0.20760685,0.029241929,0.27992412,0.7168905,0.45012152,0.3856737,0.2468168,0.7547342,0.23586477,0.728986,0.52842814,0.74081594,0.58254737,0.8386313,0.5380133,0.9808106,0.69757915,0.9635888,0.70988774,0.65773886,0.6677008,0.75300074,0.5507923,0.6433447,0.9718312,0.020504208,0.97220457,0.021100836,0.9716987,0.022655101,0.9721315,0.014245303,0.9714647,0.014712902,0.97220457,0.013208317,0.96973413,0.01123883,0.96911705,0.01649964,0.96632093,0.029152708,0.9716613,0.012472974,0.80359983,1.0238159,0.80359983,0.95338476,0.8044696,1.023133,0.95752156,0.022717984,0.96000504,0.01405433,0.95764303,0.02344461,0.95844465,0.017195703,0.9665674,0.0092362035,0.96852803,0.009265589,0.9630468,0.029798763,0.9574091,0.02182542,0.95731115,0.022562819,0.9576798,0.018064456,0.9698729,0.026945414,0.9707365,0.02505687,0.9678838,0.028808849,0.96735567,0.028965177,0.9696391,0.017020183,0.9713813,0.015002267,0.96453613,0.013066204,0.96611136,0.009349244,0.9617433,0.029211031,0.96690965,0.028926747,0.9590955,0.02698438,0.963788,0.013471412,0.95986325,0.028194623,0.96155035,0.013057904,0.9696951,0.011252033,0.9696294,0.011387991,0.96961904,0.011344941,0.9696118,0.01128404,0.969593,0.011013629,0.9604814,0.013000401,0.15420465,0.04102335,0.16792865,0.037144165,0.110636964,0.05624038,0.117879316,0.05280347,0.1069449,0.059347447,0.37604672,0.008110086,0.4070614,0.013023422,0.25538462,0.0031148791,0.2648711,0.000000008450675,0.20259783,0.019268692,0.23897217,0.0057812533,0.3031835,0.0016587148,0.3331248,0.0026185757,0.09809749,0.06282124,0.068156235,0.07761529,0.52157223,0.044851843,0.5435285,0.046751596,0.63853747,0.17621852,0.66334546,0.19258852,0.62489164,0.1247898,0.6287393,0.14086775,0.68118423,0.21481499,-0.0000000033102134,0.10996528,0.013690739,0.09781893,0.42186216,0.014245739,0.6017828,0.094806425,0.030619193,0.091465615,0.057839744,0.08235605,0.59865737,0.10087764,0.67908764,0.21657859,0.7325371,0.2680749,0.614245,0.10814548,0.43263742,0.92657316,0.43597075,0.8869815,0.43614823,0.88644433,0.18772343,0.02667462,0.24657853,0.0037103465,0.021488441,0.09233946,0.7439689,0.2791134,0.67494655,0.99038863,0.67444944,0.9913764,0.67444944,0.98951757,0.80714715,0.95338464,0.8076674,0.95454615,0.80714715,0.9599234,0.67331666,0.9900621,0.6744493,0.98951745,0.67444944,0.99153584,0.80814487,0.9553456,0.8076674,0.95992327,0.8076674,0.9533845,0.8044694,0.9616473,0.8044694,0.95338464,0.807147,0.9587995,0.67240256,0.98951757,0.6733167,0.9911193,0.67240256,0.9949199]),vertexCount:285});var b="../fox-tex-03f042508a92e722.png";var a="../fox-normal-7ce4a77b1285eb7a.png";var f="../backdrop-0e5863d39a0305cf.png";var O="../backdrop-normals-6ba4b06676f112b6.png";var N="../white-532695823c58790a.png";var E=(c)=>new $(c,N);var g=location.search.includes("alt1"),I=new G({fov:45}),L=new Y([0,2,4],R([-15,0,0])),e=new Y([10,!g?10:-2,10]),u=new Y(q(0),R([0,225,0]),q(0.1)),V=new $(I,F,{uvClamp:!0}),r=!g?new $(I,f):E(I),M=new $(I,O),U=!g?new $(I,b):E(I),n=new $(I,a),h=X(35,76,37);I.onUpdate((c,y)=>{});new B(I,u,new Q(I,_,H(I,h).addTexture("texture0",U).addTexture("texture1",n).addTexture("texture2",V),L,e).configure({}));new B(I,d,new Q(I,J,H(I,h).addTexture("texture0",r).addTexture("texture1",M).addTexture("texture2",V),L,e).configure({}));I.start();
diff --git a/html/005-thoughtform-hidenoe/index.html b/html/005-thoughtform-hidenoe/index.html
new file mode 100644
index 0000000..276b855
--- /dev/null
+++ b/html/005-thoughtform-hidenoe/index.html
@@ -0,0 +1,29 @@
+
+
+com.mekanoe.art // 005-thoughtform-hidenoe
+
+
+
+
+ XX.X FPS (XX.X ms)
+ [noeidelon] [stage 1]
bootstrapping...
this is taking a while...
[panic] heck wtf
+
+
+
+
diff --git a/html/005-thoughtform-hidenoe/main.js b/html/005-thoughtform-hidenoe/main.js
new file mode 100644
index 0000000..aa2cf84
--- /dev/null
+++ b/html/005-thoughtform-hidenoe/main.js
@@ -0,0 +1,6 @@
+import{c as N} from"../chunk-d24458ad0a4be457.js";import{f as D,g as I,h as j,i as O,j as k,l as y,n as Q,o as z} from"../chunk-0ef35489d83e6289.js";var C=`#version 300 es
+precision highp float;uniform float u_time;in vec2 uv0;out vec4 fragColor;vec2 squareImaginary(vec2 number,float mod){return vec2(pow(number.x*mod,2.0)-pow(number.y*mod,2.0),2.0*number.x*number.y);}float iterateMandelbrot(vec2 coord){vec2 z=vec2(0,0);float maxIterations=100.0;for(float i=0.0;i2.0)return i/float(maxIterations);}return maxIterations;}void main(){vec2 uvMirror=abs(uv0*2.0-1.0);fragColor=vec4(0.0);float mandelbrot=iterateMandelbrot((uvMirror.xy+vec2(0.14,-0.525))*0.9);fragColor.r=mandelbrot;vec2 outerNoise=(mandelbrot)*(1.0-uvMirror*0.5);fragColor.gb+=(1.0-mandelbrot)*outerNoise;fragColor.r+=pow(1.0-length(uvMirror),8.0);fragColor.a=1.0;}`;var V=`#version 300 es
+precision highp float;uniform float u_time;in vec2 uv0;out vec4 fragColor;vec2 squareImaginary(vec2 number,float mod){return vec2(pow(number.x*mod,2.0)-pow(number.y*mod,2.0),2.0*number.x*number.y);}float iterateMandelbrot(vec2 coord){vec2 z=vec2(0,0);float maxIterations=69.0;for(float i=0.0;i100.0)return i/float(maxIterations);}return maxIterations;}void main(){vec2 uvMirror=abs(uv0*2.0-1.0);fragColor=vec4(0.0);float mandelbrot=iterateMandelbrot((uvMirror.yx-vec2(-1.075,1.0))*0.9);fragColor.r=mandelbrot;vec2 outerNoise=(mandelbrot)*(1.0-uvMirror*0.5);fragColor.gb+=(1.0-mandelbrot)*outerNoise;fragColor.a=1.0;}`;var R={attributes:{vertex:"a_vertex",uv0:"a_uv0",normal:"a_normal",vertexColor:"a_vertex_color"},uniforms:{view:"u_view",projection:"u_projection",objectToWorld:"u_object_to_world",objectToWorldInv:"u_object_to_world_inv",light0:"u_light_0",light0Color:"u_light_0_color",time:"u_time",albedo:"u_albedo",texture0:"u_texture_0",texture1:"u_texture_1",texture2:"u_texture_2"}},E={normal:C,alt3:V},Z=(_,x=C)=>new k(R).vertex(y).fragment(x).app(_);var J=`#version 300 es
+precision highp float;uniform float u_time;in vec2 uv0;in vec3 light_pos;out vec4 fragColor;const float margin=0.5;vec3 hsv2rgb(vec3 c){vec4 K=vec4(1.0,2.0/3.0,1.0/3.0,3.0);vec3 p=abs(fract(c.xxx+K.xyz)*6.0-K.www);return c.z*mix(K.xxx,clamp(p-K.xxx,0.0,1.0),c.y);}void main(){vec2 cUV=uv0*2.0-1.0;float circleDistance=length(cUV);if(circleDistance>margin){discard;}float theta=atan(cUV.y,cUV.x);float spiral=sin(100.0*(sqrt(circleDistance*20.0)-10.0*theta-0.01*u_time*0.001));float edgeLightZone=pow(clamp(abs(dot(cUV.xyx,light_pos)),0.0,1.0)*2.0,4.0);float colorSpiral=sin(100.0*(sqrt(circleDistance*10.0)-0.001*theta-0.3*u_time*0.00005));vec3 hueRotation=hsv2rgb(vec3(colorSpiral,1.0,0.5));fragColor=vec4(hueRotation*spiral*edgeLightZone,1.0);fragColor.rgb+=min(spiral,0.0041666);}`;var $=`#version 300 es
+precision highp float;uniform float u_time;in vec2 uv0;in vec3 light_pos;out vec4 fragColor;const float margin=0.5;vec3 hsv2rgb(vec3 c){vec4 K=vec4(1.0,2.0/3.0,1.0/3.0,3.0);vec3 p=abs(fract(c.xxx+K.xyz)*6.0-K.www);return c.z*mix(K.xxx,clamp(p-K.xxx,0.0,1.0),c.y);}void main(){vec2 cUV=uv0*2.0-1.0;float circleDistance=length(cUV);if(circleDistance>margin){discard;}float theta=atan(cUV.y,cUV.x);float spiral=sin(100.0*(sqrt(circleDistance*20.0)-10.0*theta-0.01*u_time*0.001));float edgeLightZone=pow(clamp(abs(dot(cUV.xyx,light_pos)),0.0,1.0)*2.0,4.0);float colorSpiral=sin(100.0*(sqrt(circleDistance*10.0)-0.001*theta-0.3*u_time*0.00005));vec3 hueRotation=hsv2rgb(vec3(colorSpiral,1.0,0.5));fragColor=vec4(colorSpiral,spiral,1.0,1.0);}`;var q=`#version 300 es
+precision highp float;uniform float u_time;in vec2 uv0;in vec3 light_pos;out vec4 fragColor;const float margin=0.9;vec3 hsv2rgb(vec3 c){vec4 K=vec4(1.0,2.0/3.0,1.0/3.0,3.0);vec3 p=abs(fract(c.xxx+K.xyz)*6.0-K.www);return c.z*mix(K.xxx,clamp(p-K.xxx,0.0,1.0),c.y);}void main(){vec2 cUV=uv0*2.0-1.0;float circleDistance=length(cUV);if(circleDistance>margin){discard;}float theta=atan(cUV.y,cUV.x);float spiral=sin(100.0*(sqrt(circleDistance*13.0)-(u_time*0.0001)*theta-0.01*u_time*0.001));float colorSpiral=sin(100.0*(sqrt(circleDistance*10.0)-0.001*theta-0.3*u_time*0.00005));fragColor=vec4(0,spiral,0,1.0);}`;var v={attributes:{vertex:"a_vertex",uv0:"a_uv0",normal:"a_normal",vertexColor:"a_vertex_color"},uniforms:{view:"u_view",projection:"u_projection",objectToWorld:"u_object_to_world",objectToWorldInv:"u_object_to_world_inv",light0:"u_light_0",light0Color:"u_light_0_color",time:"u_time",albedo:"u_albedo",texture0:"u_texture_0",texture1:"u_texture_1",texture2:"u_texture_2"}},B={normal:J,debug:$,alt2:q},w=(_,x=J)=>new k(v).vertex(y).fragment(x).app(_);var i=new z({fov:45}),G=new D([0,0,2],I([0,0,0])),K=new D([1,-1,0],I([0,0,0])),b=new D(j(0),I([0,180,0]),j(1.8)),m=new D(j(0),I([0,180,180]),j(0.6));document.body.addEventListener("mousemove",(_)=>{const{clientX:x,clientY:L}=_,{clientWidth:M,clientHeight:P}=document.body,c=x/M,F=L/P,W=c*2-1,A=F*2-1;K.position[1]=W,K.position[0]=A});i.onUpdate((_,x)=>{});var U=B.normal,H=E.normal;if(location.search.includes("alt1"))U=B.debug;if(location.search.includes("alt2"))U=B.alt2;if(location.search.includes("alt3"))H=E.alt3;new Q(i,b,new O(i,N,Z(i,H),G).configure({}));new Q(i,m,new O(i,N,w(i,U),G,K).configure({}));i.start();
diff --git a/html/006-the-edge/index.html b/html/006-the-edge/index.html
new file mode 100644
index 0000000..af20ccd
--- /dev/null
+++ b/html/006-the-edge/index.html
@@ -0,0 +1,29 @@
+
+
+com.mekanoe.art // 006-the-edge
+
+
+
+
+ XX.X FPS (XX.X ms)
+ [noeidelon] [stage 1]
bootstrapping...
this is taking a while...
[panic] heck wtf
+
+
+
+
diff --git a/html/006-the-edge/main.js b/html/006-the-edge/main.js
new file mode 100644
index 0000000..1f4f49d
--- /dev/null
+++ b/html/006-the-edge/main.js
@@ -0,0 +1,2 @@
+import{c as E} from"../chunk-d24458ad0a4be457.js";import{f as j,g as k,h as z,i as F,j as y,l as B,n as H,o as I} from"../chunk-0ef35489d83e6289.js";var t=`#version 300 es
+precision highp float;uniform float u_time;in vec2 uv0;out vec4 fragColor;const float railWidth=0.041666;const float railWiggle=0.0015;vec3 mod289(vec3 x){return x-floor(x*(1.0/289.0))*289.0;}vec4 mod289(vec4 x){return x-floor(x*(1.0/289.0))*289.0;}vec4 permute(vec4 x){return mod289(((x*34.0)+1.0)*x);}vec4 taylorInvSqrt(vec4 r){return 1.79284291400159-0.85373472095314*r;}float snoise(vec3 v){const vec2 C=vec2(1.0/6.0,1.0/3.0);const vec4 D=vec4(0.0,0.5,1.0,2.0);vec3 i=floor(v+dot(v,C.yyy));vec3 x0=v-i+dot(i,C.xxx);vec3 g=step(x0.yzx,x0.xyz);vec3 l=1.0-g;vec3 i1=min(g.xyz,l.zxy);vec3 i2=max(g.xyz,l.zxy);vec3 x1=x0-i1+C.xxx;vec3 x2=x0-i2+C.yyy;vec3 x3=x0-D.yyy;i=mod289(i);vec4 p=permute(permute(permute(i.z+vec4(0.0,i1.z,i2.z,1.0))+i.y+vec4(0.0,i1.y,i2.y,1.0))+i.x+vec4(0.0,i1.x,i2.x,1.0));const float n_=0.142857142857;vec3 ns=n_*D.wyz-D.xzx;vec4 j=p-49.0*floor(p*ns.z*ns.z);vec4 x_=floor(j*ns.z);vec4 y_=floor(j-7.0*x_);vec4 x=x_*ns.x+ns.yyyy;vec4 y=y_*ns.x+ns.yyyy;vec4 h=1.0-abs(x)-abs(y);vec4 b0=vec4(x.xy,y.xy);vec4 b1=vec4(x.zw,y.zw);vec4 s0=floor(b0)*2.0+1.0;vec4 s1=floor(b1)*2.0+1.0;vec4 sh=-step(h,vec4(0,0,0,0));vec4 a0=b0.xzyw+s0.xzyw*sh.xxyy;vec4 a1=b1.xzyw+s1.xzyw*sh.zzww;vec3 p0=vec3(a0.xy,h.x);vec3 p1=vec3(a0.zw,h.y);vec3 p2=vec3(a1.xy,h.z);vec3 p3=vec3(a1.zw,h.w);vec4 norm=taylorInvSqrt(vec4(dot(p0,p0),dot(p1,p1),dot(p2,p2),dot(p3,p3)));p0*=norm.x;p1*=norm.y;p2*=norm.z;p3*=norm.w;vec4 m=max(0.6-vec4(dot(x0,x0),dot(x1,x1),dot(x2,x2),dot(x3,x3)),0.0);m=m*m;return 42.0*dot(m*m,vec4(dot(p0,x0),dot(p1,x1),dot(p2,x2),dot(p3,x3)));}void main(){vec2 cUV=uv0*2.0-1.0;float sintime=sin(u_time*0.0001);float vY=cos(uv0.y*sintime);float vX=sin(uv0.x*sintime*10000.0);float vibes=railWiggle*snoise(vec3(vY,vX,u_time));float rail=1.0-step(abs(pow(abs(cUV.y)-railWidth+vibes,30.0)),1.0);vec4 railColor=vec4(rail);float noise=abs(sin(snoise(uv0.xxy*10000.*u_time)));float noise2=abs(sin(snoise(uv0.yxy*10000.*u_time)));float noise3=abs(sin(snoise(uv0.xyx*10000.*u_time)));railColor.rgb-=(vec3(noise,noise2,noise3)*0.3);float theta=atan(cUV.y,uv0.x);float spiral=sin(10.0*(sqrt(19.0+(15.0*sintime*0.05)))-1000.0*theta-0.01*u_time*0.0001);float theta2=atan(1.0-(cUV.y/1000.0),uv0.x-(railWidth/20.));float spiral2=sin(10.0*(sqrt(20.0+u_time*0.00001)-10000.0*theta2-0.01*u_time*0.0001));float theta3=atan(1.0-uv0.y/10.0,uv0.x);float spiral3=sin(100.0*(sqrt(100.0+uv0.y)-100000.0*theta3-0.01*sintime*0.0001));float sparkleNoise=snoise(vec3(spiral,spiral2,u_time*0.00001));fragColor.r=step(abs(spiral2*spiral*sparkleNoise),mix(0.0333,0.0666,abs(uv0.y+sin(u_time*0.00001))));fragColor.r*=pow(1.0-abs(cUV.y),3.0)*abs(spiral3);fragColor.r*=10.0;if(cUV.y>0.0){fragColor.r=0.0;}fragColor=clamp(vec4(fragColor+railColor),vec4(0),vec4(1));}`;var O={attributes:{vertex:"a_vertex",uv0:"a_uv0",normal:"a_normal",vertexColor:"a_vertex_color"},uniforms:{view:"u_view",projection:"u_projection",objectToWorld:"u_object_to_world",objectToWorldInv:"u_object_to_world_inv",light0:"u_light_0",light0Color:"u_light_0_color",time:"u_time",albedo:"u_albedo",texture0:"u_texture_0",texture1:"u_texture_1",texture2:"u_texture_2"}},D=(J,K=t)=>new y(O).vertex(B).fragment(K).app(J);var x=new I({fov:45}),P=new j([0,0,2],k([0,0,0])),Q=new j(z(0),k(z(0)),[1000,1,1]);new H(x,Q,new F(x,E,D(x),P).configure({}));x.start();
diff --git a/html/backdrop-0e5863d39a0305cf.png b/html/backdrop-0e5863d39a0305cf.png
new file mode 100644
index 0000000..cac2e0c
Binary files /dev/null and b/html/backdrop-0e5863d39a0305cf.png differ
diff --git a/html/backdrop-normals-6ba4b06676f112b6.png b/html/backdrop-normals-6ba4b06676f112b6.png
new file mode 100644
index 0000000..ee06369
Binary files /dev/null and b/html/backdrop-normals-6ba4b06676f112b6.png differ
diff --git a/html/chunk-0ef35489d83e6289.js b/html/chunk-0ef35489d83e6289.js
new file mode 100644
index 0000000..d8bf369
--- /dev/null
+++ b/html/chunk-0ef35489d83e6289.js
@@ -0,0 +1,5 @@
+var u0=Object.defineProperty;var u=(C,M)=>{for(var N in M)u0(C,N,{get:M[N],enumerable:!0,configurable:!0,set:(I)=>M[N]=()=>I})};var f={};u(f,{str:()=>{{return mC}},squaredLength:()=>{{return d0}},sqrLen:()=>{{return NM}},sqlerp:()=>{{return WM}},slerp:()=>{{return e}},setAxisAngle:()=>{{return h0}},setAxes:()=>{{return AM}},set:()=>{{return oC}},scale:()=>{{return g0}},rotationTo:()=>{{return QM}},rotateZ:()=>{{return lC}},rotateY:()=>{{return iC}},rotateX:()=>{{return dC}},random:()=>{{return yC}},pow:()=>{{return zC}},normalize:()=>{{return C0}},multiply:()=>{{return q0}},mul:()=>{{return aC}},ln:()=>{{return w0}},lerp:()=>{{return CM}},length:()=>{{return f0}},len:()=>{{return MM}},invert:()=>{{return rC}},identity:()=>{{return gC}},getAxisAngle:()=>{{return nC}},getAngle:()=>{{return fC}},fromValues:()=>{{return bC}},fromMat3:()=>{{return v0}},fromEuler:()=>{{return sC}},exp:()=>{{return p0}},exactEquals:()=>{{return IM}},equals:()=>{{return VM}},dot:()=>{{return n0}},create:()=>{{return a}},copy:()=>{{return uC}},conjugate:()=>{{return xC}},clone:()=>{{return eC}},calculateW:()=>{{return cC}},add:()=>{{return tC}}});var F=0.000001,k=typeof Float32Array!=="undefined"?Float32Array:Array,n=Math.random,QN=Math.PI/180;if(!Math.hypot)Math.hypot=function(){var C=0,M=arguments.length;while(M--)C+=arguments[M]*arguments[M];return Math.sqrt(C)};function X0(){var C=new k(9);if(k!=Float32Array)C[1]=0,C[2]=0,C[3]=0,C[5]=0,C[6]=0,C[7]=0;return C[0]=1,C[4]=1,C[8]=1,C}var i={};u(i,{zero:()=>{{return FC}},transformQuat:()=>{{return HC}},transformMat4:()=>{{return LC}},transformMat3:()=>{{return PC}},subtract:()=>{{return Z0}},sub:()=>{{return _C}},str:()=>{{return OC}},squaredLength:()=>{{return P0}},squaredDistance:()=>{{return L0}},sqrLen:()=>{{return qC}},sqrDist:()=>{{return hC}},set:()=>{{return CC}},scaleAndAdd:()=>{{return EC}},scale:()=>{{return AC}},round:()=>{{return WC}},rotateZ:()=>{{return GC}},rotateY:()=>{{return DC}},rotateX:()=>{{return JC}},random:()=>{{return KC}},normalize:()=>{{return o}},negate:()=>{{return XC}},multiply:()=>{{return $0}},mul:()=>{{return TC}},min:()=>{{return VC}},max:()=>{{return QC}},lerp:()=>{{return ZC}},length:()=>{{return Y0}},len:()=>{{return t}},inverse:()=>{{return YC}},hermite:()=>{{return $C}},fromValues:()=>{{return s}},forEach:()=>{{return pC}},floor:()=>{{return IC}},exactEquals:()=>{{return RC}},equals:()=>{{return kC}},dot:()=>{{return m}},divide:()=>{{return B0}},div:()=>{{return jC}},distance:()=>{{return K0}},dist:()=>{{return SC}},cross:()=>{{return r}},create:()=>{{return x}},copy:()=>{{return a0}},clone:()=>{{return t0}},ceil:()=>{{return NC}},bezier:()=>{{return BC}},angle:()=>{{return UC}},add:()=>{{return MC}}});function x(){var C=new k(3);if(k!=Float32Array)C[0]=0,C[1]=0,C[2]=0;return C}function t0(C){var M=new k(3);return M[0]=C[0],M[1]=C[1],M[2]=C[2],M}function Y0(C){var M=C[0],N=C[1],I=C[2];return Math.hypot(M,N,I)}function s(C,M,N){var I=new k(3);return I[0]=C,I[1]=M,I[2]=N,I}function a0(C,M){return C[0]=M[0],C[1]=M[1],C[2]=M[2],C}function CC(C,M,N,I){return C[0]=M,C[1]=N,C[2]=I,C}function MC(C,M,N){return C[0]=M[0]+N[0],C[1]=M[1]+N[1],C[2]=M[2]+N[2],C}function Z0(C,M,N){return C[0]=M[0]-N[0],C[1]=M[1]-N[1],C[2]=M[2]-N[2],C}function $0(C,M,N){return C[0]=M[0]*N[0],C[1]=M[1]*N[1],C[2]=M[2]*N[2],C}function B0(C,M,N){return C[0]=M[0]/N[0],C[1]=M[1]/N[1],C[2]=M[2]/N[2],C}function NC(C,M){return C[0]=Math.ceil(M[0]),C[1]=Math.ceil(M[1]),C[2]=Math.ceil(M[2]),C}function IC(C,M){return C[0]=Math.floor(M[0]),C[1]=Math.floor(M[1]),C[2]=Math.floor(M[2]),C}function VC(C,M,N){return C[0]=Math.min(M[0],N[0]),C[1]=Math.min(M[1],N[1]),C[2]=Math.min(M[2],N[2]),C}function QC(C,M,N){return C[0]=Math.max(M[0],N[0]),C[1]=Math.max(M[1],N[1]),C[2]=Math.max(M[2],N[2]),C}function WC(C,M){return C[0]=Math.round(M[0]),C[1]=Math.round(M[1]),C[2]=Math.round(M[2]),C}function AC(C,M,N){return C[0]=M[0]*N,C[1]=M[1]*N,C[2]=M[2]*N,C}function EC(C,M,N,I){return C[0]=M[0]+N[0]*I,C[1]=M[1]+N[1]*I,C[2]=M[2]+N[2]*I,C}function K0(C,M){var N=M[0]-C[0],I=M[1]-C[1],V=M[2]-C[2];return Math.hypot(N,I,V)}function L0(C,M){var N=M[0]-C[0],I=M[1]-C[1],V=M[2]-C[2];return N*N+I*I+V*V}function P0(C){var M=C[0],N=C[1],I=C[2];return M*M+N*N+I*I}function XC(C,M){return C[0]=-M[0],C[1]=-M[1],C[2]=-M[2],C}function YC(C,M){return C[0]=1/M[0],C[1]=1/M[1],C[2]=1/M[2],C}function o(C,M){var N=M[0],I=M[1],V=M[2],Q=N*N+I*I+V*V;if(Q>0)Q=1/Math.sqrt(Q);return C[0]=M[0]*Q,C[1]=M[1]*Q,C[2]=M[2]*Q,C}function m(C,M){return C[0]*M[0]+C[1]*M[1]+C[2]*M[2]}function r(C,M,N){var I=M[0],V=M[1],Q=M[2],W=N[0],A=N[1],E=N[2];return C[0]=V*E-Q*A,C[1]=Q*W-I*E,C[2]=I*A-V*W,C}function ZC(C,M,N,I){var V=M[0],Q=M[1],W=M[2];return C[0]=V+I*(N[0]-V),C[1]=Q+I*(N[1]-Q),C[2]=W+I*(N[2]-W),C}function $C(C,M,N,I,V,Q){var W=Q*Q,A=W*(2*Q-3)+1,E=W*(Q-2)+Q,X=W*(Q-1),Y=W*(3-2*Q);return C[0]=M[0]*A+N[0]*E+I[0]*X+V[0]*Y,C[1]=M[1]*A+N[1]*E+I[1]*X+V[1]*Y,C[2]=M[2]*A+N[2]*E+I[2]*X+V[2]*Y,C}function BC(C,M,N,I,V,Q){var W=1-Q,A=W*W,E=Q*Q,X=A*W,Y=3*Q*A,$=3*E*W,K=E*Q;return C[0]=M[0]*X+N[0]*Y+I[0]*$+V[0]*K,C[1]=M[1]*X+N[1]*Y+I[1]*$+V[1]*K,C[2]=M[2]*X+N[2]*Y+I[2]*$+V[2]*K,C}function KC(C,M){M=M||1;var N=n()*2*Math.PI,I=n()*2-1,V=Math.sqrt(1-I*I)*M;return C[0]=Math.cos(N)*V,C[1]=Math.sin(N)*V,C[2]=I*M,C}function LC(C,M,N){var I=M[0],V=M[1],Q=M[2],W=N[3]*I+N[7]*V+N[11]*Q+N[15];return W=W||1,C[0]=(N[0]*I+N[4]*V+N[8]*Q+N[12])/W,C[1]=(N[1]*I+N[5]*V+N[9]*Q+N[13])/W,C[2]=(N[2]*I+N[6]*V+N[10]*Q+N[14])/W,C}function PC(C,M,N){var I=M[0],V=M[1],Q=M[2];return C[0]=I*N[0]+V*N[3]+Q*N[6],C[1]=I*N[1]+V*N[4]+Q*N[7],C[2]=I*N[2]+V*N[5]+Q*N[8],C}function HC(C,M,N){var I=N[0],V=N[1],Q=N[2],W=N[3],A=M[0],E=M[1],X=M[2],Y=V*X-Q*E,$=Q*A-I*X,K=I*E-V*A,B=V*K-Q*$,P=Q*Y-I*K,L=I*$-V*Y,Z=W*2;return Y*=Z,$*=Z,K*=Z,B*=2,P*=2,L*=2,C[0]=A+Y+B,C[1]=E+$+P,C[2]=X+K+L,C}function JC(C,M,N,I){var V=[],Q=[];return V[0]=M[0]-N[0],V[1]=M[1]-N[1],V[2]=M[2]-N[2],Q[0]=V[0],Q[1]=V[1]*Math.cos(I)-V[2]*Math.sin(I),Q[2]=V[1]*Math.sin(I)+V[2]*Math.cos(I),C[0]=Q[0]+N[0],C[1]=Q[1]+N[1],C[2]=Q[2]+N[2],C}function DC(C,M,N,I){var V=[],Q=[];return V[0]=M[0]-N[0],V[1]=M[1]-N[1],V[2]=M[2]-N[2],Q[0]=V[2]*Math.sin(I)+V[0]*Math.cos(I),Q[1]=V[1],Q[2]=V[2]*Math.cos(I)-V[0]*Math.sin(I),C[0]=Q[0]+N[0],C[1]=Q[1]+N[1],C[2]=Q[2]+N[2],C}function GC(C,M,N,I){var V=[],Q=[];return V[0]=M[0]-N[0],V[1]=M[1]-N[1],V[2]=M[2]-N[2],Q[0]=V[0]*Math.cos(I)-V[1]*Math.sin(I),Q[1]=V[0]*Math.sin(I)+V[1]*Math.cos(I),Q[2]=V[2],C[0]=Q[0]+N[0],C[1]=Q[1]+N[1],C[2]=Q[2]+N[2],C}function UC(C,M){var N=C[0],I=C[1],V=C[2],Q=M[0],W=M[1],A=M[2],E=Math.sqrt(N*N+I*I+V*V),X=Math.sqrt(Q*Q+W*W+A*A),Y=E*X,$=Y&&m(C,M)/Y;return Math.acos(Math.min(Math.max($,-1),1))}function FC(C){return C[0]=0,C[1]=0,C[2]=0,C}function OC(C){return"vec3("+C[0]+", "+C[1]+", "+C[2]+")"}function RC(C,M){return C[0]===M[0]&&C[1]===M[1]&&C[2]===M[2]}function kC(C,M){var N=C[0],I=C[1],V=C[2],Q=M[0],W=M[1],A=M[2];return Math.abs(N-Q)<=F*Math.max(1,Math.abs(N),Math.abs(Q))&&Math.abs(I-W)<=F*Math.max(1,Math.abs(I),Math.abs(W))&&Math.abs(V-A)<=F*Math.max(1,Math.abs(V),Math.abs(A))}var _C=Z0,TC=$0,jC=B0,SC=K0,hC=L0,t=Y0,qC=P0,pC=function(){var C=x();return function(M,N,I,V,Q,W){var A,E;if(!N)N=3;if(!I)I=0;if(V)E=Math.min(V*N+I,M.length);else E=M.length;for(A=I;A0)W=1/Math.sqrt(W);return C[0]=N*W,C[1]=I*W,C[2]=V*W,C[3]=Q*W,C}function _0(C,M){return C[0]*M[0]+C[1]*M[1]+C[2]*M[2]+C[3]*M[3]}function T0(C,M,N,I){var V=M[0],Q=M[1],W=M[2],A=M[3];return C[0]=V+I*(N[0]-V),C[1]=Q+I*(N[1]-Q),C[2]=W+I*(N[2]-W),C[3]=A+I*(N[3]-A),C}function j0(C,M){return C[0]===M[0]&&C[1]===M[1]&&C[2]===M[2]&&C[3]===M[3]}function S0(C,M){var N=C[0],I=C[1],V=C[2],Q=C[3],W=M[0],A=M[1],E=M[2],X=M[3];return Math.abs(N-W)<=F*Math.max(1,Math.abs(N),Math.abs(W))&&Math.abs(I-A)<=F*Math.max(1,Math.abs(I),Math.abs(A))&&Math.abs(V-E)<=F*Math.max(1,Math.abs(V),Math.abs(E))&&Math.abs(Q-X)<=F*Math.max(1,Math.abs(Q),Math.abs(X))}var WN=function(){var C=wC();return function(M,N,I,V,Q,W){var A,E;if(!N)N=4;if(!I)I=0;if(V)E=Math.min(V*N+I,M.length);else E=M.length;for(A=I;AF)C[0]=M[0]/I,C[1]=M[1]/I,C[2]=M[2]/I;else C[0]=1,C[1]=0,C[2]=0;return N}function fC(C,M){var N=n0(C,M);return Math.acos(2*N*N-1)}function q0(C,M,N){var I=M[0],V=M[1],Q=M[2],W=M[3],A=N[0],E=N[1],X=N[2],Y=N[3];return C[0]=I*Y+W*A+V*X-Q*E,C[1]=V*Y+W*E+Q*A-I*X,C[2]=Q*Y+W*X+I*E-V*A,C[3]=W*Y-I*A-V*E-Q*X,C}function dC(C,M,N){N*=0.5;var I=M[0],V=M[1],Q=M[2],W=M[3],A=Math.sin(N),E=Math.cos(N);return C[0]=I*E+W*A,C[1]=V*E+Q*A,C[2]=Q*E-V*A,C[3]=W*E-I*A,C}function iC(C,M,N){N*=0.5;var I=M[0],V=M[1],Q=M[2],W=M[3],A=Math.sin(N),E=Math.cos(N);return C[0]=I*E-Q*A,C[1]=V*E+W*A,C[2]=Q*E+I*A,C[3]=W*E-V*A,C}function lC(C,M,N){N*=0.5;var I=M[0],V=M[1],Q=M[2],W=M[3],A=Math.sin(N),E=Math.cos(N);return C[0]=I*E+V*A,C[1]=V*E-I*A,C[2]=Q*E+W*A,C[3]=W*E-Q*A,C}function cC(C,M){var N=M[0],I=M[1],V=M[2];return C[0]=N,C[1]=I,C[2]=V,C[3]=Math.sqrt(Math.abs(1-N*N-I*I-V*V)),C}function p0(C,M){var N=M[0],I=M[1],V=M[2],Q=M[3],W=Math.sqrt(N*N+I*I+V*V),A=Math.exp(Q),E=W>0?A*Math.sin(W)/W:0;return C[0]=N*E,C[1]=I*E,C[2]=V*E,C[3]=A*Math.cos(W),C}function w0(C,M){var N=M[0],I=M[1],V=M[2],Q=M[3],W=Math.sqrt(N*N+I*I+V*V),A=W>0?Math.atan2(W,Q)/W:0;return C[0]=N*A,C[1]=I*A,C[2]=V*A,C[3]=0.5*Math.log(N*N+I*I+V*V+Q*Q),C}function zC(C,M,N){return w0(C,M),g0(C,C,N),p0(C,C),C}function e(C,M,N,I){var V=M[0],Q=M[1],W=M[2],A=M[3],E=N[0],X=N[1],Y=N[2],$=N[3],K,B,P,L,Z;if(B=V*E+Q*X+W*Y+A*$,B<0)B=-B,E=-E,X=-X,Y=-Y,$=-$;if(1-B>F)K=Math.acos(B),P=Math.sin(K),L=Math.sin((1-I)*K)/P,Z=Math.sin(I*K)/P;else L=1-I,Z=I;return C[0]=L*V+Z*E,C[1]=L*Q+Z*X,C[2]=L*W+Z*Y,C[3]=L*A+Z*$,C}function yC(C){var M=n(),N=n(),I=n(),V=Math.sqrt(1-M),Q=Math.sqrt(M);return C[0]=V*Math.sin(2*Math.PI*N),C[1]=V*Math.cos(2*Math.PI*N),C[2]=Q*Math.sin(2*Math.PI*I),C[3]=Q*Math.cos(2*Math.PI*I),C}function rC(C,M){var N=M[0],I=M[1],V=M[2],Q=M[3],W=N*N+I*I+V*V+Q*Q,A=W?1/W:0;return C[0]=-N*A,C[1]=-I*A,C[2]=-V*A,C[3]=Q*A,C}function xC(C,M){return C[0]=-M[0],C[1]=-M[1],C[2]=-M[2],C[3]=M[3],C}function v0(C,M){var N=M[0]+M[4]+M[8],I;if(N>0)I=Math.sqrt(N+1),C[3]=0.5*I,I=0.5/I,C[0]=(M[5]-M[7])*I,C[1]=(M[6]-M[2])*I,C[2]=(M[1]-M[3])*I;else{var V=0;if(M[4]>M[0])V=1;if(M[8]>M[V*3+V])V=2;var Q=(V+1)%3,W=(V+2)%3;I=Math.sqrt(M[V*3+V]-M[Q*3+Q]-M[W*3+W]+1),C[V]=0.5*I,I=0.5/I,C[3]=(M[Q*3+W]-M[W*3+Q])*I,C[Q]=(M[Q*3+V]+M[V*3+Q])*I,C[W]=(M[W*3+V]+M[V*3+W])*I}return C}function sC(C,M,N,I){var V=0.5*Math.PI/180;M*=V,N*=V,I*=V;var Q=Math.sin(M),W=Math.cos(M),A=Math.sin(N),E=Math.cos(N),X=Math.sin(I),Y=Math.cos(I);return C[0]=Q*E*Y-W*A*X,C[1]=W*A*Y+Q*E*X,C[2]=W*E*X-Q*A*Y,C[3]=W*E*Y+Q*A*X,C}function mC(C){return"quat("+C[0]+", "+C[1]+", "+C[2]+", "+C[3]+")"}var eC=H0,bC=J0,uC=D0,oC=G0,tC=U0,aC=q0,g0=F0,n0=_0,CM=T0,f0=O0,MM=f0,d0=R0,NM=d0,C0=k0,IM=j0,VM=S0,QM=function(){var C=x(),M=s(1,0,0),N=s(0,1,0);return function(I,V,Q){var W=m(V,Q);if(W<-0.999999){if(r(C,M,V),t(C)<0.000001)r(C,N,V);return o(C,C),h0(I,C,Math.PI),I}else if(W>0.999999)return I[0]=0,I[1]=0,I[2]=0,I[3]=1,I;else return r(C,V,Q),I[0]=C[0],I[1]=C[1],I[2]=C[2],I[3]=1+W,C0(I,I)}}(),WM=function(){var C=a(),M=a();return function(N,I,V,Q,W,A){return e(C,I,W,A),e(M,V,Q,A),e(N,C,M,2*A*(1-A)),N}}(),AM=function(){var C=X0();return function(M,N,I,V){return C[0]=I[0],C[3]=I[1],C[6]=I[2],C[1]=V[0],C[4]=V[1],C[7]=V[2],C[2]=-N[0],C[5]=-N[1],C[8]=-N[2],C0(M,v0(M,C))}}();var w={};u(w,{transpose:()=>{{return BM}},translate:()=>{{return HM}},targetTo:()=>{{return zM}},subtract:()=>{{return x0}},sub:()=>{{return oM}},str:()=>{{return yM}},set:()=>{{return $M}},scale:()=>{{return JM}},rotateZ:()=>{{return FM}},rotateY:()=>{{return UM}},rotateX:()=>{{return GM}},rotate:()=>{{return DM}},perspectiveZO:()=>{{return fM}},perspectiveNO:()=>{{return y0}},perspectiveFromFieldOfView:()=>{{return dM}},perspective:()=>{{return nM}},orthoZO:()=>{{return lM}},orthoNO:()=>{{return r0}},ortho:()=>{{return iM}},multiplyScalarAndAdd:()=>{{return mM}},multiplyScalar:()=>{{return sM}},multiply:()=>{{return l0}},mul:()=>{{return uM}},lookAt:()=>{{return cM}},invert:()=>{{return KM}},identity:()=>{{return i0}},getTranslation:()=>{{return hM}},getScaling:()=>{{return z0}},getRotation:()=>{{return qM}},frustum:()=>{{return gM}},fromZRotation:()=>{{return jM}},fromYRotation:()=>{{return TM}},fromXRotation:()=>{{return _M}},fromValues:()=>{{return ZM}},fromTranslation:()=>{{return OM}},fromScaling:()=>{{return RM}},fromRotationTranslationScaleOrigin:()=>{{return wM}},fromRotationTranslationScale:()=>{{return pM}},fromRotationTranslation:()=>{{return c0}},fromRotation:()=>{{return kM}},fromQuat2:()=>{{return SM}},fromQuat:()=>{{return vM}},frob:()=>{{return rM}},exactEquals:()=>{{return eM}},equals:()=>{{return bM}},determinant:()=>{{return PM}},create:()=>{{return EM}},copy:()=>{{return YM}},clone:()=>{{return XM}},adjoint:()=>{{return LM}},add:()=>{{return xM}}});function EM(){var C=new k(16);if(k!=Float32Array)C[1]=0,C[2]=0,C[3]=0,C[4]=0,C[6]=0,C[7]=0,C[8]=0,C[9]=0,C[11]=0,C[12]=0,C[13]=0,C[14]=0;return C[0]=1,C[5]=1,C[10]=1,C[15]=1,C}function XM(C){var M=new k(16);return M[0]=C[0],M[1]=C[1],M[2]=C[2],M[3]=C[3],M[4]=C[4],M[5]=C[5],M[6]=C[6],M[7]=C[7],M[8]=C[8],M[9]=C[9],M[10]=C[10],M[11]=C[11],M[12]=C[12],M[13]=C[13],M[14]=C[14],M[15]=C[15],M}function YM(C,M){return C[0]=M[0],C[1]=M[1],C[2]=M[2],C[3]=M[3],C[4]=M[4],C[5]=M[5],C[6]=M[6],C[7]=M[7],C[8]=M[8],C[9]=M[9],C[10]=M[10],C[11]=M[11],C[12]=M[12],C[13]=M[13],C[14]=M[14],C[15]=M[15],C}function ZM(C,M,N,I,V,Q,W,A,E,X,Y,$,K,B,P,L){var Z=new k(16);return Z[0]=C,Z[1]=M,Z[2]=N,Z[3]=I,Z[4]=V,Z[5]=Q,Z[6]=W,Z[7]=A,Z[8]=E,Z[9]=X,Z[10]=Y,Z[11]=$,Z[12]=K,Z[13]=B,Z[14]=P,Z[15]=L,Z}function $M(C,M,N,I,V,Q,W,A,E,X,Y,$,K,B,P,L,Z){return C[0]=M,C[1]=N,C[2]=I,C[3]=V,C[4]=Q,C[5]=W,C[6]=A,C[7]=E,C[8]=X,C[9]=Y,C[10]=$,C[11]=K,C[12]=B,C[13]=P,C[14]=L,C[15]=Z,C}function i0(C){return C[0]=1,C[1]=0,C[2]=0,C[3]=0,C[4]=0,C[5]=1,C[6]=0,C[7]=0,C[8]=0,C[9]=0,C[10]=1,C[11]=0,C[12]=0,C[13]=0,C[14]=0,C[15]=1,C}function BM(C,M){if(C===M){var N=M[1],I=M[2],V=M[3],Q=M[6],W=M[7],A=M[11];C[1]=M[4],C[2]=M[8],C[3]=M[12],C[4]=N,C[6]=M[9],C[7]=M[13],C[8]=I,C[9]=Q,C[11]=M[14],C[12]=V,C[13]=W,C[14]=A}else C[0]=M[0],C[1]=M[4],C[2]=M[8],C[3]=M[12],C[4]=M[1],C[5]=M[5],C[6]=M[9],C[7]=M[13],C[8]=M[2],C[9]=M[6],C[10]=M[10],C[11]=M[14],C[12]=M[3],C[13]=M[7],C[14]=M[11],C[15]=M[15];return C}function KM(C,M){var N=M[0],I=M[1],V=M[2],Q=M[3],W=M[4],A=M[5],E=M[6],X=M[7],Y=M[8],$=M[9],K=M[10],B=M[11],P=M[12],L=M[13],Z=M[14],H=M[15],O=N*A-I*W,U=N*E-V*W,G=N*X-Q*W,J=I*E-V*A,D=I*X-Q*A,S=V*X-Q*E,_=Y*L-$*P,T=Y*Z-K*P,j=Y*H-B*P,h=$*Z-K*L,q=$*H-B*L,p=K*H-B*Z,R=O*p-U*q+G*h+J*j-D*T+S*_;if(!R)return null;return R=1/R,C[0]=(A*p-E*q+X*h)*R,C[1]=(V*q-I*p-Q*h)*R,C[2]=(L*S-Z*D+H*J)*R,C[3]=(K*D-$*S-B*J)*R,C[4]=(E*j-W*p-X*T)*R,C[5]=(N*p-V*j+Q*T)*R,C[6]=(Z*G-P*S-H*U)*R,C[7]=(Y*S-K*G+B*U)*R,C[8]=(W*q-A*j+X*_)*R,C[9]=(I*j-N*q-Q*_)*R,C[10]=(P*D-L*G+H*O)*R,C[11]=($*G-Y*D-B*O)*R,C[12]=(A*T-W*h-E*_)*R,C[13]=(N*h-I*T+V*_)*R,C[14]=(L*U-P*J-Z*O)*R,C[15]=(Y*J-$*U+K*O)*R,C}function LM(C,M){var N=M[0],I=M[1],V=M[2],Q=M[3],W=M[4],A=M[5],E=M[6],X=M[7],Y=M[8],$=M[9],K=M[10],B=M[11],P=M[12],L=M[13],Z=M[14],H=M[15];return C[0]=A*(K*H-B*Z)-$*(E*H-X*Z)+L*(E*B-X*K),C[1]=-(I*(K*H-B*Z)-$*(V*H-Q*Z)+L*(V*B-Q*K)),C[2]=I*(E*H-X*Z)-A*(V*H-Q*Z)+L*(V*X-Q*E),C[3]=-(I*(E*B-X*K)-A*(V*B-Q*K)+$*(V*X-Q*E)),C[4]=-(W*(K*H-B*Z)-Y*(E*H-X*Z)+P*(E*B-X*K)),C[5]=N*(K*H-B*Z)-Y*(V*H-Q*Z)+P*(V*B-Q*K),C[6]=-(N*(E*H-X*Z)-W*(V*H-Q*Z)+P*(V*X-Q*E)),C[7]=N*(E*B-X*K)-W*(V*B-Q*K)+Y*(V*X-Q*E),C[8]=W*($*H-B*L)-Y*(A*H-X*L)+P*(A*B-X*$),C[9]=-(N*($*H-B*L)-Y*(I*H-Q*L)+P*(I*B-Q*$)),C[10]=N*(A*H-X*L)-W*(I*H-Q*L)+P*(I*X-Q*A),C[11]=-(N*(A*B-X*$)-W*(I*B-Q*$)+Y*(I*X-Q*A)),C[12]=-(W*($*Z-K*L)-Y*(A*Z-E*L)+P*(A*K-E*$)),C[13]=N*($*Z-K*L)-Y*(I*Z-V*L)+P*(I*K-V*$),C[14]=-(N*(A*Z-E*L)-W*(I*Z-V*L)+P*(I*E-V*A)),C[15]=N*(A*K-E*$)-W*(I*K-V*$)+Y*(I*E-V*A),C}function PM(C){var M=C[0],N=C[1],I=C[2],V=C[3],Q=C[4],W=C[5],A=C[6],E=C[7],X=C[8],Y=C[9],$=C[10],K=C[11],B=C[12],P=C[13],L=C[14],Z=C[15],H=M*W-N*Q,O=M*A-I*Q,U=M*E-V*Q,G=N*A-I*W,J=N*E-V*W,D=I*E-V*A,S=X*P-Y*B,_=X*L-$*B,T=X*Z-K*B,j=Y*L-$*P,h=Y*Z-K*P,q=$*Z-K*L;return H*q-O*h+U*j+G*T-J*_+D*S}function l0(C,M,N){var I=M[0],V=M[1],Q=M[2],W=M[3],A=M[4],E=M[5],X=M[6],Y=M[7],$=M[8],K=M[9],B=M[10],P=M[11],L=M[12],Z=M[13],H=M[14],O=M[15],U=N[0],G=N[1],J=N[2],D=N[3];return C[0]=U*I+G*A+J*$+D*L,C[1]=U*V+G*E+J*K+D*Z,C[2]=U*Q+G*X+J*B+D*H,C[3]=U*W+G*Y+J*P+D*O,U=N[4],G=N[5],J=N[6],D=N[7],C[4]=U*I+G*A+J*$+D*L,C[5]=U*V+G*E+J*K+D*Z,C[6]=U*Q+G*X+J*B+D*H,C[7]=U*W+G*Y+J*P+D*O,U=N[8],G=N[9],J=N[10],D=N[11],C[8]=U*I+G*A+J*$+D*L,C[9]=U*V+G*E+J*K+D*Z,C[10]=U*Q+G*X+J*B+D*H,C[11]=U*W+G*Y+J*P+D*O,U=N[12],G=N[13],J=N[14],D=N[15],C[12]=U*I+G*A+J*$+D*L,C[13]=U*V+G*E+J*K+D*Z,C[14]=U*Q+G*X+J*B+D*H,C[15]=U*W+G*Y+J*P+D*O,C}function HM(C,M,N){var I=N[0],V=N[1],Q=N[2],W,A,E,X,Y,$,K,B,P,L,Z,H;if(M===C)C[12]=M[0]*I+M[4]*V+M[8]*Q+M[12],C[13]=M[1]*I+M[5]*V+M[9]*Q+M[13],C[14]=M[2]*I+M[6]*V+M[10]*Q+M[14],C[15]=M[3]*I+M[7]*V+M[11]*Q+M[15];else W=M[0],A=M[1],E=M[2],X=M[3],Y=M[4],$=M[5],K=M[6],B=M[7],P=M[8],L=M[9],Z=M[10],H=M[11],C[0]=W,C[1]=A,C[2]=E,C[3]=X,C[4]=Y,C[5]=$,C[6]=K,C[7]=B,C[8]=P,C[9]=L,C[10]=Z,C[11]=H,C[12]=W*I+Y*V+P*Q+M[12],C[13]=A*I+$*V+L*Q+M[13],C[14]=E*I+K*V+Z*Q+M[14],C[15]=X*I+B*V+H*Q+M[15];return C}function JM(C,M,N){var I=N[0],V=N[1],Q=N[2];return C[0]=M[0]*I,C[1]=M[1]*I,C[2]=M[2]*I,C[3]=M[3]*I,C[4]=M[4]*V,C[5]=M[5]*V,C[6]=M[6]*V,C[7]=M[7]*V,C[8]=M[8]*Q,C[9]=M[9]*Q,C[10]=M[10]*Q,C[11]=M[11]*Q,C[12]=M[12],C[13]=M[13],C[14]=M[14],C[15]=M[15],C}function DM(C,M,N,I){var V=I[0],Q=I[1],W=I[2],A=Math.hypot(V,Q,W),E,X,Y,$,K,B,P,L,Z,H,O,U,G,J,D,S,_,T,j,h,q,p,R,v;if(A0)N[0]=(A*W+Y*I+E*Q-X*V)*2/$,N[1]=(E*W+Y*V+X*I-A*Q)*2/$,N[2]=(X*W+Y*Q+A*V-E*I)*2/$;else N[0]=(A*W+Y*I+E*Q-X*V)*2,N[1]=(E*W+Y*V+X*I-A*Q)*2,N[2]=(X*W+Y*Q+A*V-E*I)*2;return c0(C,M,N),C}function hM(C,M){return C[0]=M[12],C[1]=M[13],C[2]=M[14],C}function z0(C,M){var N=M[0],I=M[1],V=M[2],Q=M[4],W=M[5],A=M[6],E=M[8],X=M[9],Y=M[10];return C[0]=Math.hypot(N,I,V),C[1]=Math.hypot(Q,W,A),C[2]=Math.hypot(E,X,Y),C}function qM(C,M){var N=new k(3);z0(N,M);var I=1/N[0],V=1/N[1],Q=1/N[2],W=M[0]*I,A=M[1]*V,E=M[2]*Q,X=M[4]*I,Y=M[5]*V,$=M[6]*Q,K=M[8]*I,B=M[9]*V,P=M[10]*Q,L=W+Y+P,Z=0;if(L>0)Z=Math.sqrt(L+1)*2,C[3]=0.25*Z,C[0]=($-B)/Z,C[1]=(K-E)/Z,C[2]=(A-X)/Z;else if(W>Y&&W>P)Z=Math.sqrt(1+W-Y-P)*2,C[3]=($-B)/Z,C[0]=0.25*Z,C[1]=(A+X)/Z,C[2]=(K+E)/Z;else if(Y>P)Z=Math.sqrt(1+Y-W-P)*2,C[3]=(K-E)/Z,C[0]=(A+X)/Z,C[1]=0.25*Z,C[2]=($+B)/Z;else Z=Math.sqrt(1+P-W-Y)*2,C[3]=(A-X)/Z,C[0]=(K+E)/Z,C[1]=($+B)/Z,C[2]=0.25*Z;return C}function pM(C,M,N,I){var V=M[0],Q=M[1],W=M[2],A=M[3],E=V+V,X=Q+Q,Y=W+W,$=V*E,K=V*X,B=V*Y,P=Q*X,L=Q*Y,Z=W*Y,H=A*E,O=A*X,U=A*Y,G=I[0],J=I[1],D=I[2];return C[0]=(1-(P+Z))*G,C[1]=(K+U)*G,C[2]=(B-O)*G,C[3]=0,C[4]=(K-U)*J,C[5]=(1-($+Z))*J,C[6]=(L+H)*J,C[7]=0,C[8]=(B+O)*D,C[9]=(L-H)*D,C[10]=(1-($+P))*D,C[11]=0,C[12]=N[0],C[13]=N[1],C[14]=N[2],C[15]=1,C}function wM(C,M,N,I,V){var Q=M[0],W=M[1],A=M[2],E=M[3],X=Q+Q,Y=W+W,$=A+A,K=Q*X,B=Q*Y,P=Q*$,L=W*Y,Z=W*$,H=A*$,O=E*X,U=E*Y,G=E*$,J=I[0],D=I[1],S=I[2],_=V[0],T=V[1],j=V[2],h=(1-(L+H))*J,q=(B+G)*J,p=(P-U)*J,R=(B-G)*D,v=(1-(K+H))*D,c=(Z+O)*D,z=(P+U)*S,A0=(Z-O)*S,E0=(1-(K+L))*S;return C[0]=h,C[1]=q,C[2]=p,C[3]=0,C[4]=R,C[5]=v,C[6]=c,C[7]=0,C[8]=z,C[9]=A0,C[10]=E0,C[11]=0,C[12]=N[0]+_-(h*_+R*T+z*j),C[13]=N[1]+T-(q*_+v*T+A0*j),C[14]=N[2]+j-(p*_+c*T+E0*j),C[15]=1,C}function vM(C,M){var N=M[0],I=M[1],V=M[2],Q=M[3],W=N+N,A=I+I,E=V+V,X=N*W,Y=I*W,$=I*A,K=V*W,B=V*A,P=V*E,L=Q*W,Z=Q*A,H=Q*E;return C[0]=1-$-P,C[1]=Y+H,C[2]=K-Z,C[3]=0,C[4]=Y-H,C[5]=1-X-P,C[6]=B+L,C[7]=0,C[8]=K+Z,C[9]=B-L,C[10]=1-X-$,C[11]=0,C[12]=0,C[13]=0,C[14]=0,C[15]=1,C}function gM(C,M,N,I,V,Q,W){var A=1/(N-M),E=1/(V-I),X=1/(Q-W);return C[0]=Q*2*A,C[1]=0,C[2]=0,C[3]=0,C[4]=0,C[5]=Q*2*E,C[6]=0,C[7]=0,C[8]=(N+M)*A,C[9]=(V+I)*E,C[10]=(W+Q)*X,C[11]=-1,C[12]=0,C[13]=0,C[14]=W*Q*2*X,C[15]=0,C}function y0(C,M,N,I,V){var Q=1/Math.tan(M/2),W;if(C[0]=Q/N,C[1]=0,C[2]=0,C[3]=0,C[4]=0,C[5]=Q,C[6]=0,C[7]=0,C[8]=0,C[9]=0,C[11]=-1,C[12]=0,C[13]=0,C[15]=0,V!=null&&V!==Infinity)W=1/(I-V),C[10]=(V+I)*W,C[14]=2*V*I*W;else C[10]=-1,C[14]=-2*I;return C}function fM(C,M,N,I,V){var Q=1/Math.tan(M/2),W;if(C[0]=Q/N,C[1]=0,C[2]=0,C[3]=0,C[4]=0,C[5]=Q,C[6]=0,C[7]=0,C[8]=0,C[9]=0,C[11]=-1,C[12]=0,C[13]=0,C[15]=0,V!=null&&V!==Infinity)W=1/(I-V),C[10]=V*W,C[14]=V*I*W;else C[10]=-1,C[14]=-I;return C}function dM(C,M,N,I){var V=Math.tan(M.upDegrees*Math.PI/180),Q=Math.tan(M.downDegrees*Math.PI/180),W=Math.tan(M.leftDegrees*Math.PI/180),A=Math.tan(M.rightDegrees*Math.PI/180),E=2/(W+A),X=2/(V+Q);return C[0]=E,C[1]=0,C[2]=0,C[3]=0,C[4]=0,C[5]=X,C[6]=0,C[7]=0,C[8]=-((W-A)*E*0.5),C[9]=(V-Q)*X*0.5,C[10]=I/(N-I),C[11]=-1,C[12]=0,C[13]=0,C[14]=I*N/(N-I),C[15]=0,C}function r0(C,M,N,I,V,Q,W){var A=1/(M-N),E=1/(I-V),X=1/(Q-W);return C[0]=-2*A,C[1]=0,C[2]=0,C[3]=0,C[4]=0,C[5]=-2*E,C[6]=0,C[7]=0,C[8]=0,C[9]=0,C[10]=2*X,C[11]=0,C[12]=(M+N)*A,C[13]=(V+I)*E,C[14]=(W+Q)*X,C[15]=1,C}function lM(C,M,N,I,V,Q,W){var A=1/(M-N),E=1/(I-V),X=1/(Q-W);return C[0]=-2*A,C[1]=0,C[2]=0,C[3]=0,C[4]=0,C[5]=-2*E,C[6]=0,C[7]=0,C[8]=0,C[9]=0,C[10]=X,C[11]=0,C[12]=(M+N)*A,C[13]=(V+I)*E,C[14]=Q*X,C[15]=1,C}function cM(C,M,N,I){var V,Q,W,A,E,X,Y,$,K,B,P=M[0],L=M[1],Z=M[2],H=I[0],O=I[1],U=I[2],G=N[0],J=N[1],D=N[2];if(Math.abs(P-G)0)B=1/Math.sqrt(B),Y*=B,$*=B,K*=B;var P=E*K-X*$,L=X*Y-A*K,Z=A*$-E*Y;if(B=P*P+L*L+Z*Z,B>0)B=1/Math.sqrt(B),P*=B,L*=B,Z*=B;return C[0]=P,C[1]=L,C[2]=Z,C[3]=0,C[4]=$*Z-K*L,C[5]=K*P-Y*Z,C[6]=Y*L-$*P,C[7]=0,C[8]=Y,C[9]=$,C[10]=K,C[11]=0,C[12]=V,C[13]=Q,C[14]=W,C[15]=1,C}function yM(C){return"mat4("+C[0]+", "+C[1]+", "+C[2]+", "+C[3]+", "+C[4]+", "+C[5]+", "+C[6]+", "+C[7]+", "+C[8]+", "+C[9]+", "+C[10]+", "+C[11]+", "+C[12]+", "+C[13]+", "+C[14]+", "+C[15]+")"}function rM(C){return Math.hypot(C[0],C[1],C[2],C[3],C[4],C[5],C[6],C[7],C[8],C[9],C[10],C[11],C[12],C[13],C[14],C[15])}function xM(C,M,N){return C[0]=M[0]+N[0],C[1]=M[1]+N[1],C[2]=M[2]+N[2],C[3]=M[3]+N[3],C[4]=M[4]+N[4],C[5]=M[5]+N[5],C[6]=M[6]+N[6],C[7]=M[7]+N[7],C[8]=M[8]+N[8],C[9]=M[9]+N[9],C[10]=M[10]+N[10],C[11]=M[11]+N[11],C[12]=M[12]+N[12],C[13]=M[13]+N[13],C[14]=M[14]+N[14],C[15]=M[15]+N[15],C}function x0(C,M,N){return C[0]=M[0]-N[0],C[1]=M[1]-N[1],C[2]=M[2]-N[2],C[3]=M[3]-N[3],C[4]=M[4]-N[4],C[5]=M[5]-N[5],C[6]=M[6]-N[6],C[7]=M[7]-N[7],C[8]=M[8]-N[8],C[9]=M[9]-N[9],C[10]=M[10]-N[10],C[11]=M[11]-N[11],C[12]=M[12]-N[12],C[13]=M[13]-N[13],C[14]=M[14]-N[14],C[15]=M[15]-N[15],C}function sM(C,M,N){return C[0]=M[0]*N,C[1]=M[1]*N,C[2]=M[2]*N,C[3]=M[3]*N,C[4]=M[4]*N,C[5]=M[5]*N,C[6]=M[6]*N,C[7]=M[7]*N,C[8]=M[8]*N,C[9]=M[9]*N,C[10]=M[10]*N,C[11]=M[11]*N,C[12]=M[12]*N,C[13]=M[13]*N,C[14]=M[14]*N,C[15]=M[15]*N,C}function mM(C,M,N,I){return C[0]=M[0]+N[0]*I,C[1]=M[1]+N[1]*I,C[2]=M[2]+N[2]*I,C[3]=M[3]+N[3]*I,C[4]=M[4]+N[4]*I,C[5]=M[5]+N[5]*I,C[6]=M[6]+N[6]*I,C[7]=M[7]+N[7]*I,C[8]=M[8]+N[8]*I,C[9]=M[9]+N[9]*I,C[10]=M[10]+N[10]*I,C[11]=M[11]+N[11]*I,C[12]=M[12]+N[12]*I,C[13]=M[13]+N[13]*I,C[14]=M[14]+N[14]*I,C[15]=M[15]+N[15]*I,C}function eM(C,M){return C[0]===M[0]&&C[1]===M[1]&&C[2]===M[2]&&C[3]===M[3]&&C[4]===M[4]&&C[5]===M[5]&&C[6]===M[6]&&C[7]===M[7]&&C[8]===M[8]&&C[9]===M[9]&&C[10]===M[10]&&C[11]===M[11]&&C[12]===M[12]&&C[13]===M[13]&&C[14]===M[14]&&C[15]===M[15]}function bM(C,M){var N=C[0],I=C[1],V=C[2],Q=C[3],W=C[4],A=C[5],E=C[6],X=C[7],Y=C[8],$=C[9],K=C[10],B=C[11],P=C[12],L=C[13],Z=C[14],H=C[15],O=M[0],U=M[1],G=M[2],J=M[3],D=M[4],S=M[5],_=M[6],T=M[7],j=M[8],h=M[9],q=M[10],p=M[11],R=M[12],v=M[13],c=M[14],z=M[15];return Math.abs(N-O)<=F*Math.max(1,Math.abs(N),Math.abs(O))&&Math.abs(I-U)<=F*Math.max(1,Math.abs(I),Math.abs(U))&&Math.abs(V-G)<=F*Math.max(1,Math.abs(V),Math.abs(G))&&Math.abs(Q-J)<=F*Math.max(1,Math.abs(Q),Math.abs(J))&&Math.abs(W-D)<=F*Math.max(1,Math.abs(W),Math.abs(D))&&Math.abs(A-S)<=F*Math.max(1,Math.abs(A),Math.abs(S))&&Math.abs(E-_)<=F*Math.max(1,Math.abs(E),Math.abs(_))&&Math.abs(X-T)<=F*Math.max(1,Math.abs(X),Math.abs(T))&&Math.abs(Y-j)<=F*Math.max(1,Math.abs(Y),Math.abs(j))&&Math.abs($-h)<=F*Math.max(1,Math.abs($),Math.abs(h))&&Math.abs(K-q)<=F*Math.max(1,Math.abs(K),Math.abs(q))&&Math.abs(B-p)<=F*Math.max(1,Math.abs(B),Math.abs(p))&&Math.abs(P-R)<=F*Math.max(1,Math.abs(P),Math.abs(R))&&Math.abs(L-v)<=F*Math.max(1,Math.abs(L),Math.abs(v))&&Math.abs(Z-c)<=F*Math.max(1,Math.abs(Z),Math.abs(c))&&Math.abs(H-z)<=F*Math.max(1,Math.abs(H),Math.abs(z))}var nM=y0,iM=r0,uM=l0,oM=x0;class l{C;M;N;constructor(C=i.create(),M=f.create(),N=i.fromValues(1,1,1)){this.position=C;this.rotation=M;this.scale=N}rotateEuler(C,M,N){return f.fromEuler(this.rotation,C,M,N),this}toMat4(){const C=w.create();return w.fromRotationTranslationScale(C,this.rotation,this.position,this.scale),C}}var XN=(C)=>f.fromEuler(f.create(),C[0],C[1],C[2]),YN=(C)=>[C,C,C];class g{C;constructor(C){this.app=C;this.onStart&&C.onStart(this.onStart.bind(this)),this.onUpdate&&C.onUpdate(this.onUpdate.bind(this)),this.onAfterUpdate&&C.onAfterUpdate(this.onAfterUpdate.bind(this)),this.onBeforeUpdate&&C.onBeforeUpdate(this.onBeforeUpdate.bind(this)),this.onDraw&&C.onDraw(this.onDraw.bind(this))}}class M0 extends g{C;M;N;I;V;Q;projectionMatrix=w.create();buffers={textures:{}};faceDataType;colorDataType;constructor(C,M,N,I=new l([0,0,-6]),V=new l([100,100,0]),Q={}){super(C);this.app=C;this.mesh=M;this.shader=N;this.camera=I;this.light=V;this.config=Q;this.faceDataType=this.getDataType(M.config.faces),this.colorDataType=M.config.colors?this.getDataType(M.config.colors):null}getDataType(C){switch(C.BYTES_PER_ELEMENT){case 1:return 5121;case 2:return 5123;case 4:return 5125;default:return 5126}}configure(C){return this.config=C,this}makeBuffer(C,M=34962){const N=this.app.gl,I=N.createBuffer();if(!I)throw new Error("failed to create a buffer");return N.bindBuffer(M,I),N.bufferData(M,C,N.STATIC_DRAW),N.bindBuffer(M,null),I}initializeBuffers(){const C=this.app.gl.createVertexArray();if(!C)throw new Error("VAO creation failed");this.buffers.vao=C,this.app.gl.bindVertexArray(C),this.buffers.faces=this.makeBuffer(this.mesh.config.faces,this.app.gl.ELEMENT_ARRAY_BUFFER);const M=this.shader.mappings;if(this.buffers.position=this.makeBuffer(this.mesh.config.positions),this.bindAttrib(this.buffers.position,M.attributes.vertex,3,this.app.gl.FLOAT),this.mesh.config.normals)this.buffers.normal=this.makeBuffer(this.mesh.config.normals),this.bindAttrib(this.buffers.normal,M.attributes.normal,3,this.app.gl.FLOAT,!0);if(this.mesh.config.colors)this.buffers.color=this.makeBuffer(this.mesh.config.colors),this.bindAttrib(this.buffers.color,M.attributes.vertexColor,4,this.colorDataType||this.app.gl.UNSIGNED_BYTE);if(this.mesh.config.uvs)this.buffers.uv=this.makeBuffer(this.mesh.config.uvs),this.bindAttrib(this.buffers.uv,M.attributes.uv0,2,this.app.gl.FLOAT);this.app.gl.bindVertexArray(null)}async initializeTextures(){const{gl:C}=this.app;for(let[M,N]of Object.entries(this.shader.textures)){await N.loadImage();const I=C.createTexture();if(!I)throw new Error("failed to allocate texture");const V=N.texture;C.bindTexture(C.TEXTURE_2D,I),C.texImage2D(C.TEXTURE_2D,0,C.RGBA,N.width,N.height,0,C.RGBA,C.UNSIGNED_BYTE,V);const Q=N.config.uvClamp?C.CLAMP_TO_EDGE:C.REPEAT;C.texParameteri(C.TEXTURE_2D,C.TEXTURE_WRAP_S,Q),C.texParameteri(C.TEXTURE_2D,C.TEXTURE_WRAP_T,Q),C.texParameteri(C.TEXTURE_2D,C.TEXTURE_MAG_FILTER,C.NEAREST),C.texParameteri(C.TEXTURE_2D,C.TEXTURE_MIN_FILTER,C.NEAREST),this.buffers.textures[M]=I}}bindTextures(){const{gl:C}=this.app,M=this.app.gl.TEXTURE0,N=Object.entries(this.buffers.textures),I=[];return N.forEach(([V,Q],W)=>{const A=this.shader.mappings.uniforms[V];if(!A)return;C.activeTexture(M+W),C.bindTexture(C.TEXTURE_2D,Q),C.uniform1i(A,W),I.push(()=>{C.activeTexture(M+W),C.bindTexture(C.TEXTURE_2D,null)})}),I}bindAttrib(C,M,N,I,V=!1){const Q=this.app.gl;Q.bindBuffer(Q.ARRAY_BUFFER,C);const W=Number.isSafeInteger(M)?M:this.shader.attrib(M);if(W!==-1)Q.vertexAttribPointer(W,N,I,V,0,0),Q.enableVertexAttribArray(W);Q.bindBuffer(Q.ARRAY_BUFFER,null)}initializeShader(C,M){const N=w.invert(w.create(),this.camera.toMat4()),I=this.app.gl,{uniforms:V}=this.shader.mappings;this.shader.use(),I.uniform1f(V.time,C),I.uniform4fv(V.light0Color,[1,1,1,1]),I.uniformMatrix4fv(V.view,!1,N),I.uniformMatrix4fv(V.projection,!1,this.projectionMatrix),I.uniform3fv(V.light0,this.light.position),I.uniformMatrix4fv(V.objectToWorld,!1,M.toMat4()),I.uniformMatrix4fv(V.objectToWorldInv,!1,w.invert(w.create(),M.toMat4())),this.shader.onPrerender(this.app,C)}async onStart(C,M){M.loading("baking vectors"),M.telemetry?.addRenderers(1),M.telemetry?.addTriangles(this.mesh.config.faces.length),M.telemetry?.addVertexes(this.mesh.config.vertexCount),w.perspective(this.projectionMatrix,this.app.config.fov||45,this.app.aspect,this.app.config.zNear||0.1,this.app.config.zFar||100),this.shader.compile(),this.shader.link(),this.initializeBuffers(),this.shader.link(),await this.initializeTextures()}onRenderableUpdate(C,M){const N=this.app.gl;N.bindVertexArray(this.buffers.vao||null),N.bindBuffer(N.ELEMENT_ARRAY_BUFFER,this.buffers.faces||null),N.bindBuffer(N.ARRAY_BUFFER,this.buffers.position||null),this.initializeShader(C,M);const I=this.bindTextures();N.drawElements(this.config.drawMode??N.TRIANGLES,this.mesh.config.faces.length,this.faceDataType,0);const V=N.getError();if(V!==0)throw console.log({err:V}),new Error(`(MeshRenderer) webgl failure: ${V}`);N.bindVertexArray(null),N.bindBuffer(N.ELEMENT_ARRAY_BUFFER,null),N.bindBuffer(N.ARRAY_BUFFER,null),I.forEach((Q)=>Q())}}class d{C;static VERTEX=35633;static FRAGMENT=35632;constructor(C){this.config=C}vertexCode="";fragmentCode="";_app;program=null;mappings={};textures={};materialValues={};prerenderHooks=[];get gl(){const C=this._app?.gl;if(!C)throw new Error("GL context not defined at shader compile time.");return C}app(C){return this._app=C,this.program=C.gl.createProgram(),this}vertex(C){return this.vertexCode=C,this}fragment(C){return this.fragmentCode=C,this}prerenderHook(C){return this.prerenderHooks.push(C),this}attrib(C){return this.gl.getAttribLocation(this.program,C)}uniform(C){return this.gl.getUniformLocation(this.program,C)}generateMappings(C){return{attributes:{normal:this.attrib(C.attributes.normal),uv0:this.attrib(C.attributes.uv0),vertex:this.attrib(C.attributes.vertex),vertexColor:this.attrib(C.attributes.vertexColor)},uniforms:{albedo:this.uniform(C.uniforms.albedo),light0:this.uniform(C.uniforms.light0),light0Color:this.uniform(C.uniforms.light0Color),objectToWorld:this.uniform(C.uniforms.objectToWorld),objectToWorldInv:this.uniform(C.uniforms.objectToWorldInv),projection:this.uniform(C.uniforms.projection),texture0:this.uniform(C.uniforms.texture0),texture1:this.uniform(C.uniforms.texture1),texture2:this.uniform(C.uniforms.texture2),time:this.uniform(C.uniforms.time),view:this.uniform(C.uniforms.view)}}}attach(C,M){const N=this.gl,I=N.createShader(C);if(!I)throw new Error(`failed to init ${tM(C)} shader`);N.shaderSource(I,M),N.compileShader(I),N.attachShader(this.program,I)}addTexture(C,M){return this.textures[C]=M,this}compile(){const C=this.gl;this.attach(C.FRAGMENT_SHADER,this.fragmentCode),this.attach(C.VERTEX_SHADER,this.vertexCode)}link(){if(this.gl.linkProgram(this.program),!this.gl.getProgramParameter(this.program,this.gl.LINK_STATUS))throw new Error("Unable to initialize the shader program: "+this.gl.getProgramInfoLog(this.program));this.mappings=this.generateMappings(this.config)}bindAttrib(C,M){this.gl.bindAttribLocation(this.program,C,M)}use(){this._app?.gl.useProgram(this.program)}onPrerender(C,M){for(let N of this.prerenderHooks)N(C,this,M)}}var tM=(C)=>{switch(C){case d.FRAGMENT:return"fragment";case d.VERTEX:return"vertex";default:return"some unknown type of"}};var s0=`#version 300 es
+precision highp float;uniform sampler2D u_texture_0;uniform sampler2D u_texture_1;in vec2 uv0;in vec3 normal;in vec3 light_pos;out vec4 fragColor;void main(){vec4 normalTex=texture(u_texture_1,uv0);vec3 normal=normalize(normal*normalTex.xyz);float light=dot(normal,light_pos);fragColor=vec4(1.0);fragColor.rgb=texture(u_texture_0,uv0).rgb;fragColor.rgb*=max(light,0.1);fragColor.a=1.0;}`;var b=`#version 300 es
+uniform mat4 u_view;uniform mat4 u_projection;uniform mat4 u_object_to_world;uniform mat4 u_object_to_world_inv;uniform vec3 u_light_0;in vec4 a_vertex;in vec2 a_uv0;in vec3 a_normal;in vec4 a_vertex_color;out vec2 uv0;out vec3 normal;out vec4 vertex_color;out vec3 light_pos;void main(){mat4 worldInv=inverse(u_view);mat4 MVW=u_projection*u_view*u_object_to_world;gl_Position=MVW*a_vertex;uv0=a_uv0;normal=normalize(mat3(worldInv)*a_normal);vertex_color=a_vertex_color;light_pos=normalize(mat3(u_object_to_world_inv)*u_light_0);}`;var N0={attributes:{vertex:"a_vertex",uv0:"a_uv0",normal:"a_normal",vertexColor:"a_vertex_color"},uniforms:{view:"u_view",projection:"u_projection",objectToWorld:"u_object_to_world",objectToWorldInv:"u_object_to_world_inv",light0:"u_light_0",light0Color:"u_light_0_color",time:"u_time",albedo:"u_albedo",texture0:"u_texture_0",texture1:"u_texture_1",texture2:"u_texture_2"}},TN=(C)=>new d(N0).vertex(b).fragment(s0).app(C);var m0=`#version 300 es
+precision highp float;in vec4 vertex_color;out vec4 fragColor;void main(){fragColor=vertex_color;}`;class I0{C;constructor(C){this.config=C}get name(){return this.config.name}}var e0=new I0({colors:new Uint8Array([0,254,0,255,0,254,0,255,0,254,0,255,0,254,0,255,0,254,0,255,0,254,0,255,0,254,0,255,0,254,0,255,0,254,0,255,0,254,0,255,0,254,0,255,0,254,0,255,0,254,0,255,0,254,0,255,254,0,0,255,254,0,0,255,254,0,0,255,254,0,0,255,254,0,0,255,254,0,0,255,254,0,0,255,254,0,0,255,254,0,0,255,254,0,0,255,254,0,0,255,254,0,0,255,254,0,0,255,254,0,0,255,0,0,254,255,0,0,254,255,0,0,254,255,0,0,254,255,0,0,254,255,0,0,254,255,0,0,254,255,0,0,254,255,0,0,254,255,0,0,254,255,0,0,254,255,0,0,254,255,0,0,254,255,0,0,254,255]),faces:new Uint8Array([0,1,2,3,4,1,5,6,4,7,8,6,4,9,10,11,7,5,0,3,1,3,5,4,5,7,6,7,12,8,4,6,9,11,13,7,14,15,16,17,18,15,19,20,18,21,22,20,18,23,24,25,21,19,14,17,15,17,19,18,19,21,20,21,26,22,18,20,23,25,27,21,28,29,30,31,32,29,33,34,32,35,36,34,32,37,38,39,35,33,28,31,29,31,33,32,33,35,34,35,40,36,32,34,37,39,41,35]),name:"src/meshes/gizmo.ply",normals:new Float32Array([-0.057735033,0.5773503,-0.5773503,0.057735033,-0.5773503,-0.5773503,-0.057735033,-0.5773503,-0.5773503,0.057735033,0.5773503,-0.5773503,0.057735033,-0.5773503,0.5773503,0.057735033,0.5773503,0.5773503,-0.057735033,-0.5773503,0.5773503,-0.057735033,0.5773503,0.5773503,-0.057735033,-0.5773503,-0.5773503,-0.057735033,-0.5773503,-0.5773503,0.057735033,-0.5773503,-0.5773503,0.057735033,0.5773503,-0.5773503,-0.057735033,0.5773503,-0.5773503,-0.057735033,0.5773503,-0.5773503,-0.5773503,0.5773503,-0.057735033,0.5773503,-0.5773503,-0.057735033,-0.5773503,-0.5773503,-0.057735033,0.5773503,0.5773503,-0.057735033,0.5773503,-0.5773503,0.057735033,0.5773503,0.5773503,0.057735033,-0.5773503,-0.5773503,0.057735033,-0.5773503,0.5773503,0.057735033,-0.5773503,-0.5773503,-0.057735033,-0.5773503,-0.5773503,-0.057735033,0.5773503,-0.5773503,-0.057735033,0.5773503,0.5773503,-0.057735033,-0.5773503,0.5773503,-0.057735033,-0.5773503,0.5773503,-0.057735033,-0.5773503,0.057735033,-0.5773503,0.5773503,-0.057735033,-0.5773503,-0.5773503,-0.057735033,-0.5773503,0.5773503,0.057735033,-0.5773503,0.5773503,-0.057735033,0.5773503,0.5773503,0.057735033,0.5773503,-0.5773503,-0.057735033,0.5773503,-0.5773503,0.057735033,0.5773503,-0.5773503,-0.057735033,-0.5773503,-0.5773503,-0.057735033,-0.5773503,0.5773503,-0.057735033,-0.5773503,0.5773503,0.057735033,-0.5773503,-0.5773503,0.057735033,-0.5773503,-0.5773503,0.057735033,-0.5773503]),positions:new Float32Array([0,0.05,-0.05,1,-0.05,-0.05,0,-0.05,-0.05,1,0.05,-0.05,1,-0.05,0.05,1,0.05,0.05,0,-0.05,0.05,0,0.05,0.05,0,-0.05,-0.05,0,-0.05,-0.05,1,-0.05,-0.05,1,0.05,-0.05,0,0.05,-0.05,0,0.05,-0.05,-0.05,0.05,0,0.05,-0.05,0,-0.05,-0.05,0,0.05,0.05,0,0.05,-0.05,1,0.05,0.05,1,-0.05,-0.05,1,-0.05,0.05,1,-0.05,-0.05,0,-0.05,-0.05,0,0.05,-0.05,0,0.05,0.05,0,-0.05,0.05,0,-0.05,0.05,0,-0.05,1,-0.05,0.05,0,-0.05,-0.05,0,-0.05,0.05,1,-0.05,0.05,0,0.05,0.05,1,0.05,-0.05,0,0.05,-0.05,1,0.05,-0.05,0,-0.05,-0.05,0,-0.05,0.05,0,-0.05,0.05,1,-0.05,-0.05,1,-0.05,-0.05,1,-0.05]),uvs:new Float32Array([0.625,0,0.375,0.25,0.375,0,0.625,0.25,0.375,0.5,0.625,0.5,0.375,0.75,0.625,0.75,0.375,1,0.125,0.75,0.125,0.5,0.875,0.5,0.625,1,0.875,0.75,0.625,0,0.375,0.25,0.375,0,0.625,0.25,0.375,0.5,0.625,0.5,0.375,0.75,0.625,0.75,0.375,1,0.125,0.75,0.125,0.5,0.875,0.5,0.625,1,0.875,0.75,0.625,0,0.375,0.25,0.375,0,0.625,0.25,0.375,0.5,0.625,0.5,0.375,0.75,0.625,0.75,0.375,1,0.125,0.75,0.125,0.5,0.875,0.5,0.625,1,0.875,0.75]),vertexCount:42});var NN=(C)=>new d(N0).vertex(b).fragment(m0).app(C),b0=(C,M,N)=>{const I=new l(N?.position,N?.rotation),V=new M0(C,e0,NN(C),M).configure({});new V0(C,I,V)};class V0 extends g{C;M;N;constructor(C,M,N,I=!1){super(C);this.app=C;this.transform=M;this.renderer=N;if(I)b0(C,N.camera,M)}onDraw(C){this.renderer.onRenderableUpdate(C,this.transform)}}class Q0 extends g{constructor(){super(...arguments)}panes=[];addTransform(C,M){this.panes.push({name:C,type:"transform",onChange:M})}}class W0 extends g{C;el;frameTimes=[];maxFrameTimes=100;lastFrameTime=0;activeTriangles=0;activeVertexes=0;activeRenderers=0;activeTextures=0;constructor(C,M="#telemetry"){super(C);this.app=C;if(this.el=document.querySelector(M),this.el&&location.search.includes("telemetry"))this.el.style.display="block"}insertTime(C){if(this.frameTimes.push(C),this.frameTimes.length>this.maxFrameTimes)this.frameTimes.shift()}async onStart(){this.lastFrameTime=0,this.frameTimes=[],setTimeout(()=>this.setText(),0),setInterval(()=>{this.setText()},1001)}setText(){const C=this.frameTimes.reduce((N,I)=>N+I,0)/this.frameTimes.length,M=1000/C;this.el.innerHTML=`${M.toFixed(1)} FPS (${C.toFixed(3)} ms)
update :: b: ${this.app.registry.onBeforeUpdate.length} | u: ${this.app.registry.onUpdate.length} | a: ${this.app.registry.onAfterUpdate.length} | d: ${this.app.registry.onDraw.length}
render :: mr: ${this.activeRenderers} | v: ${this.activeVertexes} | t: ${this.activeTriangles}
others :: tex: ${this.activeTextures}`}onAfterUpdate(C){const M=C-this.lastFrameTime;this.insertTime(M),this.lastFrameTime=C}addTriangles(C){this.activeTriangles+=C}addVertexes(C){this.activeVertexes+=C}addRenderers(C){this.activeRenderers+=C}addTextures(C){this.activeTextures+=C}}class IN{C;canvas;telemetry;gl;editor;loadingMessages=new Set(["[noeidelon] [stage 2]"]);registry={onBeforeUpdate:[],onAfterUpdate:[],onUpdate:[],onStart:[],onDraw:[]};constructor(C={}){this.config=C;try{this.canvas=document.querySelector("canvas"),this.canvas.width=window.innerWidth,this.canvas.height=window.innerHeight;const M=this.canvas.getContext("webgl2");if(!M)throw new Error("Canvas was unable to get a webgl2 context");const N=this.gl=M;if(N.viewport(0,0,N.drawingBufferWidth,N.drawingBufferHeight),this.gl.getExtension("EXT_texture_filter_anisotropic"),location.search.includes("telemetry")||C.telemetry)this.telemetry=new W0(this);if(location.search.includes("editor")||C.editor)this.editor=new Q0(this)}catch(M){const N=document.querySelector("main");if(N)N.innerHTML="your browser didn't let me set up webgl.
";throw new Error(`Unable to initialize WebGL. Your browser or machine may not support it.\n -> ${M}`)}}get aspect(){return this.canvas.clientWidth/this.canvas.clientHeight}clear(){const C=this.gl;C.clearColor(0,0,0,1),C.clearDepth(1),C.enable(C.DEPTH_TEST),C.depthFunc(C.LEQUAL),C.clear(C.COLOR_BUFFER_BIT|C.DEPTH_BUFFER_BIT)}loading(C){this.loadingMessages.add(C.toLowerCase()),document.querySelector("#loading-text").innerHTML=[...this.loadingMessages].join("
")}ready(){document.querySelector("#loading")?.classList.remove("loading-active")}onBeforeUpdate(C){this.registry.onBeforeUpdate.push(C)}onAfterUpdate(C){this.registry.onAfterUpdate.push(C)}onUpdate(C){this.registry.onUpdate.push(C)}onStart(C){this.registry.onStart.push(C)}onDraw(C){this.registry.onDraw.push(C)}doUpdate(C){this.registry.onBeforeUpdate.forEach((M)=>M(C,this)),this.registry.onUpdate.forEach((M)=>M(C,this)),this.registry.onAfterUpdate.forEach((M)=>M(C,this)),this.registry.onDraw.forEach((M)=>M(C,this))}async doStart(C=0){this.loading("setting launch parameters"),this.clear();try{for(let M of this.registry.onStart)await M(C,this)}catch(M){if(this.loading('[panic] failed to start noeidelon'),this.telemetry)this.loading(`${M}`);return}this.ready()}async oneShot(C=0){await this.doStart(C),this.doUpdate(C)}async start(){await this.doStart();const C=(M)=>{this.doUpdate(M),requestAnimationFrame(C)};requestAnimationFrame(C)}}
+export{I0 as d,f as e,l as f,XN as g,YN as h,M0 as i,d as j,s0 as k,b as l,TN as m,V0 as n,IN as o};
diff --git a/html/chunk-13ea4b456137d650.js b/html/chunk-13ea4b456137d650.js
new file mode 100644
index 0000000..cea0e87
--- /dev/null
+++ b/html/chunk-13ea4b456137d650.js
@@ -0,0 +1,5 @@
+class n{_;u;y;texture=null;width=0;height=0;constructor(_,u,y={}){this.app=_;this.url=u;this.config=y}setImage(_,u,y){return this.texture=_,this.width=u,this.height=y,this}async loadImage(){if(this.url==="manual"){if(this.texture===null)throw new Error("manual specified, but texture was not ready...");return}if(this.texture!==null)return;this.app.telemetry?.addTextures(-1),this.app.loading("Fetching textures...");const _=new Image;return new Promise((u,y)=>{_.onload=async()=>{this.texture=await createImageBitmap(_,{imageOrientation:"flipY"}),this.width=this.texture.width,this.height=this.texture.height,this.app.telemetry?.addTextures(2),u(void 0)},_.onerror=(f)=>{this.app.telemetry?.addTextures(1),y(new Error(`texture load of ${this.url} failed: ${f.toString()}`))},_.src=this.url})}}var q=`#version 300 es
+uniform mat4 u_view;uniform mat4 u_projection;uniform mat4 u_object_to_world;uniform mat4 u_object_to_world_inv;uniform vec3 u_light_0;in vec4 a_vertex;in vec2 a_uv0;in vec3 a_normal;in vec4 a_vertex_color;out vec2 uv0;out vec3 normal;out vec4 vertex_color;out vec3 light_pos;
+#define ROUNDING_FACTOR 230.0f
+void main(){mat4 worldInv=inverse(u_view);mat4 MVW=u_projection*u_view*u_object_to_world;vec4 realPosition=MVW*a_vertex;realPosition.xyz=round(vec3(realPosition.xyz*ROUNDING_FACTOR))/ROUNDING_FACTOR;gl_Position=realPosition;uv0=a_uv0;normal=normalize(mat3(worldInv)*a_normal);vertex_color=a_vertex_color;light_pos=normalize(mat3(u_object_to_world_inv)*u_light_0);}`;
+export{n as a,q as b};
diff --git a/html/chunk-d24458ad0a4be457.js b/html/chunk-d24458ad0a4be457.js
new file mode 100644
index 0000000..4220563
--- /dev/null
+++ b/html/chunk-d24458ad0a4be457.js
@@ -0,0 +1,2 @@
+import{d as o} from"./chunk-0ef35489d83e6289.js";var u=new o({colors:null,faces:new Uint8Array([0,1,2,0,3,1]),name:"src/meshes/plane.ply",normals:null,positions:new Float32Array([1,-1,0,-1,1,0,-1,-1,0,1,1,0]),uvs:new Float32Array([1,0,0,1,0,0,1,1]),vertexCount:4});
+export{u as c};
diff --git a/html/fox-normal-7ce4a77b1285eb7a.png b/html/fox-normal-7ce4a77b1285eb7a.png
new file mode 100644
index 0000000..970533b
Binary files /dev/null and b/html/fox-normal-7ce4a77b1285eb7a.png differ
diff --git a/html/fox-tex-03f042508a92e722.png b/html/fox-tex-03f042508a92e722.png
new file mode 100644
index 0000000..ffa6333
Binary files /dev/null and b/html/fox-tex-03f042508a92e722.png differ
diff --git a/html/index.html b/html/index.html
index 10a5a01..95f8448 100644
--- a/html/index.html
+++ b/html/index.html
@@ -31,6 +31,9 @@
+ - ./006-the-edge
+ - ./005-thoughtform-hidenoe
+ - ./004-a-new-leaf
- ./003-scene
- ./002-webgl-engine
- ./001-platform-provenance
diff --git a/html/ramp-aa773f5148819e95.png b/html/ramp-aa773f5148819e95.png
new file mode 100644
index 0000000..5ea6dab
Binary files /dev/null and b/html/ramp-aa773f5148819e95.png differ
diff --git a/html/texture0-577d5216cdab32bc.png b/html/texture0-577d5216cdab32bc.png
new file mode 100644
index 0000000..4635a2c
Binary files /dev/null and b/html/texture0-577d5216cdab32bc.png differ
diff --git a/html/texture1-e472a46c91711e86.png b/html/texture1-e472a46c91711e86.png
new file mode 100644
index 0000000..377d94d
Binary files /dev/null and b/html/texture1-e472a46c91711e86.png differ
diff --git a/html/white-532695823c58790a.png b/html/white-532695823c58790a.png
new file mode 100644
index 0000000..ceb1f54
Binary files /dev/null and b/html/white-532695823c58790a.png differ
diff --git a/html/work.css b/html/work.css
index 6009a42..8840ff9 100644
--- a/html/work.css
+++ b/html/work.css
@@ -11,6 +11,54 @@
display: none;
}
+#loading {
+ display: none;
+ z-index: 110;
+ position: fixed;
+ top: 0;
+ bottom: 0;
+ left: 0;
+ right: 0;
+ align-items: center;
+ justify-content: center;
+ text-align: center;
+ font-family: 'Fira Code', 'Fira Mono', monospace;
+
+ &.loading-active {
+ display: flex;
+ }
+
+ & #loading-text {
+ background-color: black;
+ padding: 1em;
+ border-radius: 8px;
+ max-width: 80vw;
+ word-wrap: break-word;
+
+ & #stage1-error {
+ opacity: 0;
+ animation: opacity_0_1 1ms 5s forwards 1;
+ color: orange;
+ }
+
+ & #stage1-error2 {
+ opacity: 0;
+ animation: opacity_0_1 1ms 10s forwards 1;
+ }
+ }
+}
+
+@keyframes opacity_0_1 {
+ 0% {
+ opacity: 0;
+ }
+
+ 100% {
+ opacity: 1;
+ }
+}
+
+
nav {
position: fixed;
z-index: 10;
diff --git a/index.d.ts b/index.d.ts
index 28247ed..4d2a951 100644
--- a/index.d.ts
+++ b/index.d.ts
@@ -20,3 +20,18 @@ declare module "*.frag" {
const content: string;
export default content;
}
+
+declare module "*.html" {
+ const content: string;
+ export default content;
+}
+
+declare module "*.md" {
+ const content: string;
+ export default content;
+}
+
+declare module "*.png" {
+ const path: string;
+ export default path;
+}
diff --git a/package.json b/package.json
index c6d2a20..9ff0e02 100644
--- a/package.json
+++ b/package.json
@@ -4,32 +4,32 @@
"main": "./hack/build.ts",
"scripts": {
"build": "bun $BUNFLAGS .",
- "build:watch": "nodemon -e ts,js,frag,vert,glsl,ply",
+ "build:watch": "MINIFY=false nodemon -e ts,js,frag,vert,glsl,ply,png",
"serve": "serve ./html",
"dev": "run-p serve build:watch"
},
"devDependencies": {
"bun-types": "latest",
- "npm-run-all2": "^6.1.1",
- "nodemon": "^3.0.1",
- "prettier": "^3.0.3"
+ "npm-run-all2": "^6.1.2",
+ "nodemon": "^3.1.0",
+ "prettier": "^3.2.5"
},
"peerDependencies": {
- "typescript": "^5.2.2"
+ "typescript": "^5.4.5"
},
"dependencies": {
"chalk": "^5.3.0",
"esbuild-plugin-glsl": "^1.2.2",
"gl-matrix": "^3.4.3",
- "glob": "^10.3.10",
- "serve": "^14.2.1",
- "typescript": "^5.2.2"
+ "glob": "^10.3.12",
+ "serve": "^14.2.3",
+ "typescript": "^5.4.5"
},
"nodemonConfig": {
"ignore": [
"html/",
"README.md",
- "src/meshes/*.ts"
+ "src/meshes/**/*.ts"
],
"delay": 1000,
"exec": "bun run . --"
diff --git a/shell.nix b/shell.nix
index ae6219b..e1e056d 100644
--- a/shell.nix
+++ b/shell.nix
@@ -3,5 +3,6 @@
pkgs.mkShell {
buildInputs = with pkgs; [
bun
+ nodejs
];
}
\ No newline at end of file
diff --git a/src/003-scene/main.ts b/src/003-scene/main.ts
index d7f8f93..6e762ce 100644
--- a/src/003-scene/main.ts
+++ b/src/003-scene/main.ts
@@ -1,30 +1,55 @@
import { MeshRenderer } from "../renderer/mesh-renderer";
import { WebGLApp } from "../renderer/webgl";
import { Renderable } from "../renderer/renderable";
-import { Transform } from "../renderer/transform";
-import torus from "../meshes/torus";
-import { errorShader } from "../common-shaders/error";
-import plane from "../meshes/plane";
-import { uvRainbow } from "../common-shaders/uv-rainbow";
-import uvsphere from "../meshes/uvsphere";
+import { Transform, etoq, v3 } from "../renderer/transform";
import { quat } from "gl-matrix";
-import trianglething from "../meshes/trianglething";
-import teapot from "../meshes/teapot";
+import { trianglething, texture0, texture1 } from "../meshes/trianglething";
+import { basic } from "../common-shaders/basic";
+import { Texture } from "../renderer/texture";
+import { basicVertexRounding } from "../common-shaders/basic-vertex-rounding";
const app = new WebGLApp({ fov: 45 });
-const camera = new Transform([0, -2, -6]);
+const camera = new Transform([2, 3, 3], etoq([-15, 40, 0]));
+const light = new Transform([2, 2, 0]);
+
+const transform = new Transform(v3(0), etoq([0, 0, 0]));
+const transform2 = new Transform([-3, 0, 1], etoq([0, 0, 0]));
+
+const trithingTexture = new Texture(app, texture0);
+const trithingTextureNormals = new Texture(app, texture1);
+
+app.onUpdate(() => {
+ quat.rotateY(transform.rotation, transform.rotation, 0.001);
+ quat.rotateY(transform2.rotation, transform2.rotation, 0.001);
+});
new Renderable(
app,
- new Transform(),
- new MeshRenderer(app, trianglething, uvRainbow(app), camera).configure({})
+ transform,
+ new MeshRenderer(
+ app,
+ trianglething,
+ basicVertexRounding(app)
+ .addTexture("texture0", trithingTexture)
+ .addTexture("texture1", trithingTextureNormals),
+ camera,
+ light
+ ).configure({})
);
-// new Renderable(
-// app,
-// new Transform(),
-// new MeshRenderer(app, torus, uvRainbow(app), camera).configure({})
-// );
+new Renderable(
+ app,
+ transform2,
+ new MeshRenderer(
+ app,
+ trianglething,
+ basic(app)
+ .addTexture("texture0", trithingTexture)
+ .addTexture("texture1", trithingTextureNormals),
+ camera,
+ light
+ ).configure({})
+);
app.start();
diff --git a/src/004-a-new-leaf/main.ts b/src/004-a-new-leaf/main.ts
new file mode 100644
index 0000000..da54e4c
--- /dev/null
+++ b/src/004-a-new-leaf/main.ts
@@ -0,0 +1,75 @@
+import { MeshRenderer } from "../renderer/mesh-renderer";
+import { WebGLApp } from "../renderer/webgl";
+import { Renderable } from "../renderer/renderable";
+import { Transform, etoq, v3 } from "../renderer/transform";
+import { Texture } from "../renderer/texture";
+import { sonya } from "../common-shaders/sonya";
+import { cubeBackdrop, defaultTransform } from "../meshes/cube-backdrop";
+import { rgbToFloat } from "../renderer/color-utils";
+import rampTexture from "./textures/ramp.png";
+import fox from "../meshes/fox/fox";
+import foxImg from "../meshes/fox/fox-tex.png";
+import foxNormal from "../meshes/fox/fox-normal.png";
+import backdropImg from "./textures/backdrop.png";
+import backdropNormalsImg from "./textures/backdrop-normals.png";
+import { createWhiteTexture } from "../renderer/helper-textures/white";
+
+const useAlt = location.search.includes("alt1");
+
+const app = new WebGLApp({ fov: 45 });
+
+const camera = new Transform([0, 2, 4], etoq([-15, 0, 0]));
+const light = new Transform([10, !useAlt ? 10 : -2, 10]);
+
+const transform = new Transform(v3(0), etoq([0, 180 + 45, 0]), v3(0.1));
+
+const ramp = new Texture(app, rampTexture, { uvClamp: true });
+const backdropTex = !useAlt
+ ? new Texture(app, backdropImg)
+ : createWhiteTexture(app);
+const backdropNormalsTex = new Texture(app, backdropNormalsImg);
+const foxTex = !useAlt ? new Texture(app, foxImg) : createWhiteTexture(app);
+const foxNormalTex = new Texture(app, foxNormal);
+
+const ambientLight = rgbToFloat(35, 76, 37);
+
+app.onUpdate((time, app) => {
+ // const wiggle = 40 * (Math.sin(time) * 0.001);
+ // camera.position = [wiggle, 2, 4 - wiggle];
+});
+
+new Renderable(
+ app,
+ transform,
+ new MeshRenderer(
+ app,
+ fox,
+ sonya(app, ambientLight)
+ .addTexture("texture0", foxTex)
+ .addTexture("texture1", foxNormalTex)
+ .addTexture("texture2", ramp),
+ camera,
+ light
+ ).configure({})
+ // true
+);
+
+new Renderable(
+ app,
+ defaultTransform,
+ new MeshRenderer(
+ app,
+ cubeBackdrop,
+ sonya(app, ambientLight)
+ .addTexture("texture0", backdropTex)
+ .addTexture("texture1", backdropNormalsTex)
+ .addTexture("texture2", ramp),
+ camera,
+ light
+ ).configure({})
+ // true
+);
+
+// createGizmo(app, camera, light);
+
+app.start();
diff --git a/src/004-a-new-leaf/textures/backdrop-normals.png b/src/004-a-new-leaf/textures/backdrop-normals.png
new file mode 100644
index 0000000..ee06369
Binary files /dev/null and b/src/004-a-new-leaf/textures/backdrop-normals.png differ
diff --git a/src/004-a-new-leaf/textures/backdrop.png b/src/004-a-new-leaf/textures/backdrop.png
new file mode 100644
index 0000000..cac2e0c
Binary files /dev/null and b/src/004-a-new-leaf/textures/backdrop.png differ
diff --git a/src/004-a-new-leaf/textures/ramp.png b/src/004-a-new-leaf/textures/ramp.png
new file mode 100644
index 0000000..5ea6dab
Binary files /dev/null and b/src/004-a-new-leaf/textures/ramp.png differ
diff --git a/src/005-thoughtform-hidenoe/main.ts b/src/005-thoughtform-hidenoe/main.ts
new file mode 100644
index 0000000..8fa8ba3
--- /dev/null
+++ b/src/005-thoughtform-hidenoe/main.ts
@@ -0,0 +1,63 @@
+import { MeshRenderer } from "../renderer/mesh-renderer";
+import { WebGLApp } from "../renderer/webgl";
+import { Renderable } from "../renderer/renderable";
+import { Transform, etoq, v3 } from "../renderer/transform";
+import plane from "../meshes/plane";
+import { outer, outerFrags } from "./shaders/outer";
+import { frags, noe } from "./shaders/noe";
+import { createGizmo } from "../renderer/gizmo";
+
+const app = new WebGLApp({ fov: 45 });
+
+const camera = new Transform([0, 0, 2], etoq([0, 0, 0]));
+
+const light = new Transform([1, -1, 0], etoq([0, 0, 0]));
+
+const transformPlane = new Transform(v3(0), etoq([0, 180, 0]), v3(1.8));
+const transformSphere = new Transform(v3(0), etoq([0, 180, 180]), v3(0.6));
+
+document.body.addEventListener("mousemove", (event) => {
+ const { clientX, clientY } = event;
+ const { clientWidth, clientHeight } = document.body;
+
+ const screenX = clientX / clientWidth;
+ const screenY = clientY / clientHeight;
+
+ const centeredX = screenX * 2 - 1;
+ const centeredY = screenY * 2 - 1;
+
+ light.position[1] = centeredX;
+ light.position[0] = centeredY;
+});
+
+app.onUpdate((time, app) => {});
+
+let noeShader = frags.normal;
+let hShader = outerFrags.normal;
+if (location.search.includes("alt1")) {
+ noeShader = frags.debug;
+}
+
+if (location.search.includes("alt2")) {
+ noeShader = frags.alt2;
+}
+
+if (location.search.includes("alt3")) {
+ hShader = outerFrags.alt3;
+}
+
+new Renderable(
+ app,
+ transformPlane,
+ new MeshRenderer(app, plane, outer(app, hShader), camera).configure({})
+);
+
+new Renderable(
+ app,
+ transformSphere,
+ new MeshRenderer(app, plane, noe(app, noeShader), camera, light).configure({})
+);
+
+// createGizmo(app, camera, light);
+
+app.start();
diff --git a/src/005-thoughtform-hidenoe/shaders/noe-alt2.frag b/src/005-thoughtform-hidenoe/shaders/noe-alt2.frag
new file mode 100644
index 0000000..941a7f5
--- /dev/null
+++ b/src/005-thoughtform-hidenoe/shaders/noe-alt2.frag
@@ -0,0 +1,43 @@
+#version 300 es
+precision highp float;
+
+// uniform mat4 u_view;
+// uniform mat4 u_projection;
+// uniform mat4 u_object_to_world;
+// uniform mat4 u_object_to_world_inv;
+// uniform vec3 u_light_0;
+// uniform vec4 u_light_0_color;
+uniform float u_time;
+// uniform vec4 u_albedo;
+
+in vec2 uv0;
+in vec3 light_pos;
+
+out vec4 fragColor;
+
+const float margin = 0.9;
+
+vec3 hsv2rgb(vec3 c) {
+ vec4 K = vec4(1.0, 2.0 / 3.0, 1.0 / 3.0, 3.0);
+ vec3 p = abs(fract(c.xxx + K.xyz) * 6.0 - K.www);
+ return c.z * mix(K.xxx, clamp(p - K.xxx, 0.0, 1.0), c.y);
+}
+
+void main() {
+ // 0..1 to -1..1
+ vec2 cUV = uv0 * 2.0 - 1.0;
+ float circleDistance = length(cUV);
+ if (circleDistance > margin) {
+ discard;
+ }
+
+ float theta = atan(cUV.y, cUV.x) ;
+ float spiral = sin(100.0 * (sqrt(circleDistance*13.0) - (u_time * 0.0001) * theta - 0.01 * u_time * 0.001));
+
+ // float edgeLightZone = pow(clamp(abs(dot(cUV.xyx, light_pos)), 0.0, 1.0) * 2.0, 4.0);
+
+ float colorSpiral = sin(100.0 * (sqrt(circleDistance * 10.0) - 0.001 * theta - 0.3 * u_time * 0.00005));
+ // vec3 hueRotation = hsv2rgb(vec3(colorSpiral, 1.0, 0.5));
+
+ fragColor = vec4(0, spiral, 0, 1.0);
+}
\ No newline at end of file
diff --git a/src/005-thoughtform-hidenoe/shaders/noe-debug.frag b/src/005-thoughtform-hidenoe/shaders/noe-debug.frag
new file mode 100644
index 0000000..27091a0
--- /dev/null
+++ b/src/005-thoughtform-hidenoe/shaders/noe-debug.frag
@@ -0,0 +1,43 @@
+#version 300 es
+precision highp float;
+
+// uniform mat4 u_view;
+// uniform mat4 u_projection;
+// uniform mat4 u_object_to_world;
+// uniform mat4 u_object_to_world_inv;
+// uniform vec3 u_light_0;
+// uniform vec4 u_light_0_color;
+uniform float u_time;
+// uniform vec4 u_albedo;
+
+in vec2 uv0;
+in vec3 light_pos;
+
+out vec4 fragColor;
+
+const float margin = 0.5;
+
+vec3 hsv2rgb(vec3 c) {
+ vec4 K = vec4(1.0, 2.0 / 3.0, 1.0 / 3.0, 3.0);
+ vec3 p = abs(fract(c.xxx + K.xyz) * 6.0 - K.www);
+ return c.z * mix(K.xxx, clamp(p - K.xxx, 0.0, 1.0), c.y);
+}
+
+void main() {
+ // 0..1 to -1..1
+ vec2 cUV = uv0 * 2.0 - 1.0;
+ float circleDistance = length(cUV);
+ if (circleDistance > margin) {
+ discard;
+ }
+
+ float theta = atan(cUV.y, cUV.x) ;
+ float spiral = sin(100.0 * (sqrt(circleDistance*20.0) - 10.0 * theta - 0.01 * u_time * 0.001));
+
+ float edgeLightZone = pow(clamp(abs(dot(cUV.xyx, light_pos)), 0.0, 1.0) * 2.0, 4.0);
+
+ float colorSpiral = sin(100.0 * (sqrt(circleDistance * 10.0) - 0.001 * theta - 0.3 * u_time * 0.00005));
+ vec3 hueRotation = hsv2rgb(vec3(colorSpiral, 1.0, 0.5));
+
+ fragColor = vec4(colorSpiral, spiral, 1.0, 1.0);
+}
\ No newline at end of file
diff --git a/src/005-thoughtform-hidenoe/shaders/noe.frag b/src/005-thoughtform-hidenoe/shaders/noe.frag
new file mode 100644
index 0000000..2faad62
--- /dev/null
+++ b/src/005-thoughtform-hidenoe/shaders/noe.frag
@@ -0,0 +1,44 @@
+#version 300 es
+precision highp float;
+
+// uniform mat4 u_view;
+// uniform mat4 u_projection;
+// uniform mat4 u_object_to_world;
+// uniform mat4 u_object_to_world_inv;
+// uniform vec3 u_light_0;
+// uniform vec4 u_light_0_color;
+uniform float u_time;
+// uniform vec4 u_albedo;
+
+in vec2 uv0;
+in vec3 light_pos;
+
+out vec4 fragColor;
+
+const float margin = 0.5;
+
+vec3 hsv2rgb(vec3 c) {
+ vec4 K = vec4(1.0, 2.0 / 3.0, 1.0 / 3.0, 3.0);
+ vec3 p = abs(fract(c.xxx + K.xyz) * 6.0 - K.www);
+ return c.z * mix(K.xxx, clamp(p - K.xxx, 0.0, 1.0), c.y);
+}
+
+void main() {
+ // 0..1 to -1..1
+ vec2 cUV = uv0 * 2.0 - 1.0;
+ float circleDistance = length(cUV);
+ if (circleDistance > margin) {
+ discard;
+ }
+
+ float theta = atan(cUV.y, cUV.x) ;
+ float spiral = sin(100.0 * (sqrt(circleDistance*20.0) - 10.0 * theta - 0.01 * u_time * 0.001));
+
+ float edgeLightZone = pow(clamp(abs(dot(cUV.xyx, light_pos)), 0.0, 1.0) * 2.0, 4.0);
+
+ float colorSpiral = sin(100.0 * (sqrt(circleDistance * 10.0) - 0.001 * theta - 0.3 * u_time * 0.00005));
+ vec3 hueRotation = hsv2rgb(vec3(colorSpiral, 1.0, 0.5));
+
+ fragColor = vec4(hueRotation * spiral * edgeLightZone, 1.0);
+ fragColor.rgb += min(spiral, 0.0041666);
+}
\ No newline at end of file
diff --git a/src/005-thoughtform-hidenoe/shaders/noe.ts b/src/005-thoughtform-hidenoe/shaders/noe.ts
new file mode 100644
index 0000000..b657d05
--- /dev/null
+++ b/src/005-thoughtform-hidenoe/shaders/noe.ts
@@ -0,0 +1,38 @@
+import { Shader, ShaderConfig } from "../../renderer/shader";
+import { WebGLApp } from "../../renderer/webgl";
+import vert from "../../common-shaders/basic.vert";
+import frag from "./noe.frag";
+import fragDebug from "./noe-debug.frag";
+import fragAlt2 from "./noe-alt2.frag";
+
+export const basicShaderConfig: ShaderConfig = {
+ attributes: {
+ vertex: "a_vertex",
+ uv0: "a_uv0",
+ normal: "a_normal",
+ vertexColor: "a_vertex_color",
+ },
+
+ uniforms: {
+ view: "u_view",
+ projection: "u_projection",
+ objectToWorld: "u_object_to_world",
+ objectToWorldInv: "u_object_to_world_inv",
+ light0: "u_light_0",
+ light0Color: "u_light_0_color",
+ time: "u_time",
+ albedo: "u_albedo",
+ texture0: "u_texture_0",
+ texture1: "u_texture_1",
+ texture2: "u_texture_2",
+ },
+};
+
+export const frags = {
+ normal: frag,
+ debug: fragDebug,
+ alt2: fragAlt2,
+};
+
+export const noe = (app: WebGLApp, fragShader: string = frag) =>
+ new Shader(basicShaderConfig).vertex(vert).fragment(fragShader).app(app);
diff --git a/src/005-thoughtform-hidenoe/shaders/outer-alt3.frag b/src/005-thoughtform-hidenoe/shaders/outer-alt3.frag
new file mode 100644
index 0000000..0060862
--- /dev/null
+++ b/src/005-thoughtform-hidenoe/shaders/outer-alt3.frag
@@ -0,0 +1,45 @@
+#version 300 es
+precision highp float;
+
+uniform float u_time;
+
+in vec2 uv0;
+
+out vec4 fragColor;
+
+vec2 squareImaginary(vec2 number, float mod){
+ return vec2(
+ pow(number.x * mod,2.0) - pow(number.y * mod, 2.0),
+ 2.0 * number.x * number.y
+ );
+}
+
+float iterateMandelbrot(vec2 coord){
+ vec2 z = vec2(0,0);
+ float maxIterations = 69.0;
+
+ for (float i = 0.0; i < maxIterations; i++) {
+ // float factor = cos((1.3*6.0) * sin(u_time * 0.0005));
+ float mod = u_time * 0.0003;
+ // mod = 0.5;
+ z = squareImaginary(z, 1.0/mod) + coord;
+ if (length(z) > 100.0) return i / float(maxIterations);
+ }
+
+ return maxIterations;
+}
+
+void main() {
+ // uv0 is 0..1, we want to denormalize this to -1..1
+ vec2 uvMirror = abs(uv0 * 2.0 - 1.0);
+ fragColor = vec4(0.0);
+ float mandelbrot = iterateMandelbrot((uvMirror.yx - vec2(-1.075, 1.0)) * 0.9);
+ fragColor.r = mandelbrot;
+
+ vec2 outerNoise = (mandelbrot) * (1.0 - uvMirror * 0.5);
+ fragColor.gb += (1.0 - mandelbrot) * outerNoise;
+
+ // fragColor.r += pow(1.0 - length(uvMirror), 18.0);
+
+ fragColor.a = 1.0;
+}
diff --git a/src/005-thoughtform-hidenoe/shaders/outer.frag b/src/005-thoughtform-hidenoe/shaders/outer.frag
new file mode 100644
index 0000000..b7c0653
--- /dev/null
+++ b/src/005-thoughtform-hidenoe/shaders/outer.frag
@@ -0,0 +1,43 @@
+#version 300 es
+precision highp float;
+
+uniform float u_time;
+
+in vec2 uv0;
+
+out vec4 fragColor;
+
+vec2 squareImaginary(vec2 number, float mod){
+ return vec2(
+ pow(number.x * mod,2.0) - pow(number.y * mod, 2.0),
+ 2.0 * number.x * number.y
+ );
+}
+
+float iterateMandelbrot(vec2 coord){
+ vec2 z = vec2(0,0);
+ float maxIterations = 100.0;
+
+ for (float i = 0.0; i < maxIterations; i++) {
+ float factor = 2.6 + (1.3 * sin(u_time * 0.0001));
+ z = squareImaginary(z, factor + 1.0) + (coord / factor);
+ if (length(z) > 2.0) return i / float(maxIterations);
+ }
+
+ return maxIterations;
+}
+
+void main() {
+ // uv0 is 0..1, we want to denormalize this to -1..1
+ vec2 uvMirror = abs(uv0 * 2.0 - 1.0);
+ fragColor = vec4(0.0);
+ float mandelbrot = iterateMandelbrot((uvMirror.xy + vec2(0.14, -0.525)) * 0.9);
+ fragColor.r = mandelbrot;
+
+ vec2 outerNoise = (mandelbrot) * (1.0 - uvMirror * 0.5);
+ fragColor.gb += (1.0 - mandelbrot) * outerNoise;
+
+ fragColor.r += pow(1.0 - length(uvMirror), 8.0);
+
+ fragColor.a = 1.0;
+}
diff --git a/src/005-thoughtform-hidenoe/shaders/outer.ts b/src/005-thoughtform-hidenoe/shaders/outer.ts
new file mode 100644
index 0000000..de15303
--- /dev/null
+++ b/src/005-thoughtform-hidenoe/shaders/outer.ts
@@ -0,0 +1,36 @@
+import { Shader, ShaderConfig } from "../../renderer/shader";
+import { WebGLApp } from "../../renderer/webgl";
+import vert from "../../common-shaders/basic.vert";
+import frag from "./outer.frag";
+import fragAlt3 from "./outer-alt3.frag";
+
+export const basicShaderConfig: ShaderConfig = {
+ attributes: {
+ vertex: "a_vertex",
+ uv0: "a_uv0",
+ normal: "a_normal",
+ vertexColor: "a_vertex_color",
+ },
+
+ uniforms: {
+ view: "u_view",
+ projection: "u_projection",
+ objectToWorld: "u_object_to_world",
+ objectToWorldInv: "u_object_to_world_inv",
+ light0: "u_light_0",
+ light0Color: "u_light_0_color",
+ time: "u_time",
+ albedo: "u_albedo",
+ texture0: "u_texture_0",
+ texture1: "u_texture_1",
+ texture2: "u_texture_2",
+ },
+};
+
+export const outerFrags = {
+ normal: frag,
+ alt3: fragAlt3,
+};
+
+export const outer = (app: WebGLApp, fragShader: string = frag) =>
+ new Shader(basicShaderConfig).vertex(vert).fragment(fragShader).app(app);
diff --git a/src/006-the-edge/main.ts b/src/006-the-edge/main.ts
new file mode 100644
index 0000000..3647d01
--- /dev/null
+++ b/src/006-the-edge/main.ts
@@ -0,0 +1,25 @@
+import { outer } from "../005-thoughtform-hidenoe/shaders/outer";
+import plane from "../meshes/plane";
+import { MeshRenderer } from "../renderer/mesh-renderer";
+import { Renderable } from "../renderer/renderable";
+import { etoq, Transform, v3 } from "../renderer/transform";
+import { WebGLApp } from "../renderer/webgl";
+import { rail } from "./shaders/rail";
+
+const app = new WebGLApp({ fov: 45 });
+
+const camera = new Transform([0, 0, 2], etoq([0, 0, 0]));
+
+const transformRail = new Transform(v3(0), etoq(v3(0)), [1000, 1, 1]);
+// new Renderable(
+// app,
+// transformRail,
+// new MeshRenderer(app, plane, outer(app), camera).configure({})
+// );
+new Renderable(
+ app,
+ transformRail,
+ new MeshRenderer(app, plane, rail(app), camera).configure({})
+);
+
+app.start();
diff --git a/src/006-the-edge/shaders/rail.frag b/src/006-the-edge/shaders/rail.frag
new file mode 100644
index 0000000..293f454
--- /dev/null
+++ b/src/006-the-edge/shaders/rail.frag
@@ -0,0 +1,157 @@
+#version 300 es
+precision highp float;
+
+/*
+ This one is weird... We ran into engine limitations that won't exist in future iterations
+ Namely that we don't have a way to get screen space pixel location yet.
+*/
+
+uniform float u_time;
+
+in vec2 uv0;
+
+out vec4 fragColor;
+
+const float railWidth = 0.041666;
+const float railWiggle = 0.0015;
+
+vec3 mod289(vec3 x) {
+ return x - floor(x * (1.0 / 289.0)) * 289.0;
+}
+
+vec4 mod289(vec4 x) {
+ return x - floor(x * (1.0 / 289.0)) * 289.0;
+}
+
+vec4 permute(vec4 x) {
+ return mod289(((x*34.0)+1.0)*x);
+}
+
+vec4 taylorInvSqrt(vec4 r)
+{
+ return 1.79284291400159 - 0.85373472095314 * r;
+}
+
+float snoise(vec3 v) {
+ const vec2 C = vec2(1.0/6.0, 1.0/3.0) ;
+ const vec4 D = vec4(0.0, 0.5, 1.0, 2.0);
+
+ // First corner
+ vec3 i = floor(v + dot(v, C.yyy) );
+ vec3 x0 = v - i + dot(i, C.xxx) ;
+
+ // Other corners
+ vec3 g = step(x0.yzx, x0.xyz);
+ vec3 l = 1.0 - g;
+ vec3 i1 = min( g.xyz, l.zxy );
+ vec3 i2 = max( g.xyz, l.zxy );
+
+ // x0 = x0 - 0.0 + 0.0 * C.xxx;
+ // x1 = x0 - i1 + 1.0 * C.xxx;
+ // x2 = x0 - i2 + 2.0 * C.xxx;
+ // x3 = x0 - 1.0 + 3.0 * C.xxx;
+ vec3 x1 = x0 - i1 + C.xxx;
+ vec3 x2 = x0 - i2 + C.yyy; // 2.0*C.x = 1/3 = C.y
+ vec3 x3 = x0 - D.yyy; // -1.0+3.0*C.x = -0.5 = -D.y
+
+ // Permutations
+ i = mod289(i);
+ vec4 p = permute( permute( permute(
+ i.z + vec4(0.0, i1.z, i2.z, 1.0 ))
+ + i.y + vec4(0.0, i1.y, i2.y, 1.0 ))
+ + i.x + vec4(0.0, i1.x, i2.x, 1.0 ));
+
+ // Gradients: 7x7 points over a square, mapped onto an octahedron.
+ // The ring size 17*17 = 289 is close to a multiple of 49 (49*6 = 294)
+ const float n_ = 0.142857142857; // 1.0/7.0
+ vec3 ns = n_ * D.wyz - D.xzx;
+
+ vec4 j = p - 49.0 * floor(p * ns.z * ns.z); // mod(p,7*7)
+
+ vec4 x_ = floor(j * ns.z);
+ vec4 y_ = floor(j - 7.0 * x_ ); // mod(j,N)
+
+ vec4 x = x_ *ns.x + ns.yyyy;
+ vec4 y = y_ *ns.x + ns.yyyy;
+ vec4 h = 1.0 - abs(x) - abs(y);
+
+ vec4 b0 = vec4( x.xy, y.xy );
+ vec4 b1 = vec4( x.zw, y.zw );
+
+ //vec4 s0 = vec4(lessThan(b0,0.0))*2.0 - 1.0;
+ //vec4 s1 = vec4(lessThan(b1,0.0))*2.0 - 1.0;
+ vec4 s0 = floor(b0)*2.0 + 1.0;
+ vec4 s1 = floor(b1)*2.0 + 1.0;
+ vec4 sh = -step(h, vec4(0, 0, 0, 0));
+
+ vec4 a0 = b0.xzyw + s0.xzyw*sh.xxyy ;
+ vec4 a1 = b1.xzyw + s1.xzyw*sh.zzww ;
+
+ vec3 p0 = vec3(a0.xy,h.x);
+ vec3 p1 = vec3(a0.zw,h.y);
+ vec3 p2 = vec3(a1.xy,h.z);
+ vec3 p3 = vec3(a1.zw,h.w);
+
+ //Normalise gradients
+ vec4 norm = taylorInvSqrt(vec4(dot(p0,p0), dot(p1,p1), dot(p2, p2), dot(p3,p3)));
+ p0 *= norm.x;
+ p1 *= norm.y;
+ p2 *= norm.z;
+ p3 *= norm.w;
+
+ // Mix final noise value
+ vec4 m = max(0.6 - vec4(dot(x0,x0), dot(x1,x1), dot(x2,x2), dot(x3,x3)), 0.0);
+ m = m * m;
+ return 42.0 * dot( m*m, vec4( dot(p0,x0), dot(p1,x1),
+ dot(p2,x2), dot(p3,x3) ) );
+}
+
+void main() {
+ vec2 cUV = uv0 * 2.0 - 1.0;
+ float sintime = sin(u_time * 0.0001);
+
+ // wiggle
+ float vY = cos(uv0.y * sintime);
+ float vX = sin(uv0.x * sintime * 10000.0);
+ float vibes = railWiggle * snoise(vec3(vY, vX, u_time));
+
+ // smoothly calculate the wiggle
+ float rail = 1.0 - step(abs(pow(abs(cUV.y) - railWidth + vibes, 30.0)), 1.0);
+
+ // snip out wrapping
+ // if (abs(cUV.y) > railWidth * 2.0) {
+ // discard;
+ // }
+
+ vec4 railColor = vec4(rail);
+
+ // albedo (staticy colorful <333)
+ float noise = abs(sin(snoise(uv0.xxy * 10000. * u_time)));
+ float noise2 = abs(sin(snoise(uv0.yxy * 10000.* u_time)));
+ float noise3 = abs(sin(snoise(uv0.xyx * 10000. * u_time)));
+ railColor.rgb -= (vec3(noise, noise2, noise3) * 0.3);
+
+ // simplex noise based on 3 moire spirals
+ float theta = atan(cUV.y, uv0.x);
+ float spiral = sin(10.0 * (sqrt(19.0 + (15.0 * sintime * 0.05))) - 1000.0 * theta - 0.01 * u_time * 0.0001);
+
+ float theta2 = atan(1.0-(cUV.y / 1000.0), uv0.x - (railWidth / 20.));
+ float spiral2 = sin(10.0 * (sqrt(20.0 + u_time * 0.00001) - 10000.0 * theta2 - 0.01 * u_time * 0.0001));
+
+ float theta3 = atan(1.0 - uv0.y/10.0, uv0.x);
+ float spiral3 = sin(100.0 * (sqrt(100.0 + uv0.y) - 100000.0 * theta3 - 0.01 * sintime * 0.0001));
+
+ float sparkleNoise = snoise(vec3(spiral, spiral2, u_time * 0.00001));
+ fragColor.r = step(abs(spiral2 * spiral * sparkleNoise), mix(0.0333, 0.0666, abs(uv0.y + sin(u_time * 0.00001))));
+ fragColor.r *= pow(1.0 - abs(cUV.y), 3.0) * abs(spiral3);
+ fragColor.r *= 10.0;
+
+ if (cUV.y > 0.0) {
+ fragColor.r = 0.0;
+ }
+
+ // fragColor.g = spiral3;
+
+ // keep within 0-1
+ fragColor = clamp(vec4(fragColor + railColor), vec4(0), vec4(1));
+}
diff --git a/src/006-the-edge/shaders/rail.ts b/src/006-the-edge/shaders/rail.ts
new file mode 100644
index 0000000..53f3bb2
--- /dev/null
+++ b/src/006-the-edge/shaders/rail.ts
@@ -0,0 +1,35 @@
+import { Shader, ShaderConfig } from "../../renderer/shader";
+import { WebGLApp } from "../../renderer/webgl";
+import vert from "../../common-shaders/basic.vert";
+import frag from "./rail.frag";
+
+export const basicShaderConfig: ShaderConfig = {
+ attributes: {
+ vertex: "a_vertex",
+ uv0: "a_uv0",
+ normal: "a_normal",
+ vertexColor: "a_vertex_color",
+ },
+
+ uniforms: {
+ view: "u_view",
+ projection: "u_projection",
+ objectToWorld: "u_object_to_world",
+ objectToWorldInv: "u_object_to_world_inv",
+ light0: "u_light_0",
+ light0Color: "u_light_0_color",
+ time: "u_time",
+ albedo: "u_albedo",
+ texture0: "u_texture_0",
+ texture1: "u_texture_1",
+ texture2: "u_texture_2",
+ },
+};
+
+// export const outerFrags = {
+// normal: frag,
+// alt3: fragAlt3,
+// };
+
+export const rail = (app: WebGLApp, fragShader: string = frag) =>
+ new Shader(basicShaderConfig).vertex(vert).fragment(fragShader).app(app);
diff --git a/src/common-shaders/basic-vertex-rounding.ts b/src/common-shaders/basic-vertex-rounding.ts
new file mode 100644
index 0000000..d232171
--- /dev/null
+++ b/src/common-shaders/basic-vertex-rounding.ts
@@ -0,0 +1,30 @@
+import { Shader, ShaderConfig } from "../renderer/shader";
+import { WebGLApp } from "../renderer/webgl";
+import frag from "./basic.frag";
+import vert from "./basic-vertex-rounding.vert";
+
+export const basicShaderConfig: ShaderConfig = {
+ attributes: {
+ vertex: "a_vertex",
+ uv0: "a_uv0",
+ normal: "a_normal",
+ vertexColor: "a_vertex_color",
+ },
+
+ uniforms: {
+ view: "u_view",
+ projection: "u_projection",
+ objectToWorld: "u_object_to_world",
+ objectToWorldInv: "u_object_to_world_inv",
+ light0: "u_light_0",
+ light0Color: "u_light_0_color",
+ time: "u_time",
+ albedo: "u_albedo",
+ texture0: "u_texture_0",
+ texture1: "u_texture_1",
+ texture2: "u_texture_2",
+ },
+};
+
+export const basicVertexRounding = (app: WebGLApp) =>
+ new Shader(basicShaderConfig).vertex(vert).fragment(frag).app(app);
diff --git a/src/common-shaders/basic-vertex-rounding.vert b/src/common-shaders/basic-vertex-rounding.vert
new file mode 100644
index 0000000..c46b22a
--- /dev/null
+++ b/src/common-shaders/basic-vertex-rounding.vert
@@ -0,0 +1,35 @@
+#version 300 es
+uniform mat4 u_view;
+uniform mat4 u_projection;
+uniform mat4 u_object_to_world;
+uniform mat4 u_object_to_world_inv;
+uniform vec3 u_light_0;
+// uniform vec4 u_light_0_color;
+// uniform float u_time;
+// uniform vec4 u_albedo;
+
+in vec4 a_vertex;
+in vec2 a_uv0;
+in vec3 a_normal;
+in vec4 a_vertex_color;
+
+out vec2 uv0;
+out vec3 normal;
+out vec4 vertex_color;
+out vec3 light_pos;
+
+#define ROUNDING_FACTOR 230.0f
+
+void main() {
+ mat4 worldInv = inverse(u_view);
+ mat4 MVW = u_projection * u_view * u_object_to_world;
+ vec4 realPosition = MVW * a_vertex;
+ realPosition.xyz = round(vec3(realPosition.xyz * ROUNDING_FACTOR)) / ROUNDING_FACTOR;
+ gl_Position = realPosition;
+
+ uv0 = a_uv0;
+ normal = normalize(mat3(worldInv) * a_normal);
+ vertex_color = a_vertex_color;
+ light_pos = normalize(mat3(u_object_to_world_inv) * u_light_0);
+
+}
\ No newline at end of file
diff --git a/src/common-shaders/basic.frag b/src/common-shaders/basic.frag
index 38a8691..7ab8758 100644
--- a/src/common-shaders/basic.frag
+++ b/src/common-shaders/basic.frag
@@ -1,6 +1,32 @@
#version 300 es
precision highp float;
+// uniform mat4 u_view;
+// uniform mat4 u_projection;
+// uniform mat4 u_object_to_world;
+// uniform mat4 u_object_to_world_inv;
+// uniform vec3 u_light_0;
+// uniform vec4 u_light_0_color;
+// uniform float u_time;
+// uniform vec4 u_albedo;
+
+uniform sampler2D u_texture_0;
+uniform sampler2D u_texture_1;
+
+in vec2 uv0;
+in vec3 normal;
+in vec3 light_pos;
+
+out vec4 fragColor;
+
void main() {
- gl_FragColor = vec4(1.0, 0.0, 1.0, 1.0);
-}
\ No newline at end of file
+ vec4 normalTex = texture(u_texture_1, uv0);
+ vec3 normal = normalize(normal * normalTex.xyz);
+
+ float light = dot(normal, light_pos);
+
+ fragColor = vec4(1.0);
+ fragColor.rgb = texture(u_texture_0, uv0).rgb;
+ fragColor.rgb *= max(light, 0.1);
+ fragColor.a = 1.0;
+}
diff --git a/src/common-shaders/basic.ts b/src/common-shaders/basic.ts
index 44bc3d2..0dc314c 100644
--- a/src/common-shaders/basic.ts
+++ b/src/common-shaders/basic.ts
@@ -4,16 +4,26 @@ import frag from "./basic.frag";
import vert from "./basic.vert";
export const basicShaderConfig: ShaderConfig = {
- model: 0,
- view: 4,
- projection: 8,
- world: 12,
- light0: 13,
- light0Color: 17,
- uv0: 18,
- normals: 19,
- vertexColor: 20,
- time: 21,
+ attributes: {
+ vertex: "a_vertex",
+ uv0: "a_uv0",
+ normal: "a_normal",
+ vertexColor: "a_vertex_color",
+ },
+
+ uniforms: {
+ view: "u_view",
+ projection: "u_projection",
+ objectToWorld: "u_object_to_world",
+ objectToWorldInv: "u_object_to_world_inv",
+ light0: "u_light_0",
+ light0Color: "u_light_0_color",
+ time: "u_time",
+ albedo: "u_albedo",
+ texture0: "u_texture_0",
+ texture1: "u_texture_1",
+ texture2: "u_texture_2",
+ },
};
export const basic = (app: WebGLApp) =>
diff --git a/src/common-shaders/basic.vert b/src/common-shaders/basic.vert
index 66ea25c..7eefb51 100644
--- a/src/common-shaders/basic.vert
+++ b/src/common-shaders/basic.vert
@@ -1,17 +1,34 @@
#version 300 es
-layout(location = 0) in mat4 model;
-layout(location = 4) in mat4 view;
-layout(location = 8) in mat4 projection;
-layout(location = 12) in vec3 worldPos;
-layout(location = 13) in mat4 light0;
-layout(location = 17) in vec4 light0Color;
-layout(location = 18) in vec2 uv0;
-layout(location = 19) in vec3 normals;
-layout(location = 20) in vec4 vertexColor;
-layout(location = 21) in float time;
+uniform mat4 u_view;
+uniform mat4 u_projection;
+uniform mat4 u_object_to_world;
+uniform mat4 u_object_to_world_inv;
+uniform vec3 u_light_0;
+// uniform vec4 u_light_0_color;
+// uniform float u_time;
+// uniform vec4 u_albedo;
-// injection point
+in vec4 a_vertex;
+in vec2 a_uv0;
+in vec3 a_normal;
+in vec4 a_vertex_color;
+
+out vec2 uv0;
+out vec3 normal;
+out vec4 vertex_color;
+out vec3 light_pos;
+
+// injection point 1
void main() {
- gl_Position = uProjectionMatrix * uModelViewMatrix * aVertexPosition;
+ mat4 worldInv = inverse(u_view);
+ mat4 MVW = u_projection * u_view * u_object_to_world;
+ gl_Position = MVW * a_vertex;
+
+ uv0 = a_uv0;
+ normal = normalize(mat3(worldInv) * a_normal);
+ vertex_color = a_vertex_color;
+ light_pos = normalize(mat3(u_object_to_world_inv) * u_light_0);
+
+ // injection point 2
}
\ No newline at end of file
diff --git a/src/common-shaders/error.frag b/src/common-shaders/error.frag
index 00c4724..ab1a50d 100644
--- a/src/common-shaders/error.frag
+++ b/src/common-shaders/error.frag
@@ -1,5 +1,18 @@
+#version 300 es
precision highp float;
+uniform float u_time;
+
+// in vec2 uv0;
+// in vec3 normal;
+// in vec4 vertex_color;
+// in vec3 light_pos;
+
+out vec4 fragColor;
+
+
void main() {
- gl_FragColor = vec4(1.0, 0.0, 1.0, 1.0);
-}
\ No newline at end of file
+
+
+ fragColor = vec4(1.0, 0.0, 1.0, 1.0);
+}
diff --git a/src/common-shaders/error.ts b/src/common-shaders/error.ts
index 8ecfad6..f979502 100644
--- a/src/common-shaders/error.ts
+++ b/src/common-shaders/error.ts
@@ -1,7 +1,26 @@
-import { Shader } from "../renderer/shader";
+import { Shader, ShaderConfig } from "../renderer/shader";
import { WebGLApp } from "../renderer/webgl";
import frag from "./error.frag";
-import vert from "./error.vert";
+import vert from "./basic.vert";
+
+export const basicShaderConfig: ShaderConfig = {
+ attributes: {
+ vertex: "a_vertex",
+ uv0: "a_uv0",
+ normal: "a_normal",
+ vertexColor: "a_vertex_color",
+ },
+
+ uniforms: {
+ view: "u_view",
+ projection: "u_projection",
+ objectToWorld: "u_object_to_world",
+ objectToWorldInv: "u_object_to_world_inv",
+ light0: "u_light_0",
+ light0Color: "u_light_0_color",
+ time: "u_time",
+ },
+};
export const errorShader = (app: WebGLApp) =>
- new Shader().vertex(vert).fragment(frag).app(app);
+ new Shader(basicShaderConfig).vertex(vert).fragment(frag).app(app);
diff --git a/src/common-shaders/error.vert b/src/common-shaders/error.vert
deleted file mode 100644
index 19a92db..0000000
--- a/src/common-shaders/error.vert
+++ /dev/null
@@ -1,8 +0,0 @@
-attribute vec4 aVertexPosition;
-
-uniform mat4 uModelViewMatrix;
-uniform mat4 uProjectionMatrix;
-
-void main() {
- gl_Position = uProjectionMatrix * uModelViewMatrix * aVertexPosition;
-}
\ No newline at end of file
diff --git a/src/common-shaders/sonya.ts b/src/common-shaders/sonya.ts
new file mode 100644
index 0000000..cd99ed0
--- /dev/null
+++ b/src/common-shaders/sonya.ts
@@ -0,0 +1,37 @@
+import { Shader, ShaderConfig } from "../renderer/shader";
+import { WebGLApp } from "../renderer/webgl";
+import frag from "./toon-shading.frag";
+import vert from "./basic-vertex-rounding.vert";
+import { vec4 } from "gl-matrix";
+
+export const basicShaderConfig: ShaderConfig = {
+ attributes: {
+ vertex: "a_vertex",
+ uv0: "a_uv0",
+ normal: "a_normal",
+ vertexColor: "a_vertex_color",
+ },
+
+ uniforms: {
+ view: "u_view",
+ projection: "u_projection",
+ objectToWorld: "u_object_to_world",
+ objectToWorldInv: "u_object_to_world_inv",
+ light0: "u_light_0",
+ light0Color: "u_light_0_color",
+ time: "u_time",
+ albedo: "u_albedo",
+ texture0: "u_texture_0",
+ texture1: "u_texture_1",
+ texture2: "u_texture_2",
+ },
+};
+
+export const sonya = (app: WebGLApp, ambientLight: vec4 = [0.1, 0.1, 0.1, 1]) =>
+ new Shader(basicShaderConfig)
+ .vertex(vert)
+ .fragment(frag)
+ .app(app)
+ .prerenderHook(({ gl }: WebGLApp, shader: Shader) => {
+ gl.uniform4fv(shader.mappings.uniforms.albedo, ambientLight);
+ });
diff --git a/src/common-shaders/toon-shading.frag b/src/common-shaders/toon-shading.frag
new file mode 100644
index 0000000..315476d
--- /dev/null
+++ b/src/common-shaders/toon-shading.frag
@@ -0,0 +1,30 @@
+#version 300 es
+precision highp float;
+
+uniform vec4 u_light_0_color;
+uniform vec4 u_albedo; // ambient color
+
+uniform sampler2D u_texture_0;
+uniform sampler2D u_texture_1;
+uniform sampler2D u_texture_2;
+
+in vec2 uv0;
+in vec3 normal;
+in vec3 light_pos;
+
+out vec4 fragColor;
+
+void main() {
+ // vec4 normalTex = texture(u_texture_1, uv0);
+ // vec3 normal = normalize(normal * normalTex.rgb);
+ vec3 normal = normalize(normal);
+
+ float light = clamp(dot(normal, light_pos), 0.0, 1.0);
+
+ vec3 ramp = texture(u_texture_2, vec2(light, 0.0)).rgb;
+
+ fragColor = vec4(1.0);
+ fragColor.rgb = texture(u_texture_0, uv0).rgb;
+ fragColor.rgb *= ramp;
+ fragColor.a = 1.0;
+}
diff --git a/src/common-shaders/vertex-colors.frag b/src/common-shaders/vertex-colors.frag
new file mode 100644
index 0000000..856a039
--- /dev/null
+++ b/src/common-shaders/vertex-colors.frag
@@ -0,0 +1,11 @@
+#version 300 es
+precision highp float;
+
+in vec4 vertex_color;
+
+out vec4 fragColor;
+
+
+void main() {
+ fragColor = vertex_color;
+}
diff --git a/src/meshes/cube-backdrop/cube-backdrop.blend b/src/meshes/cube-backdrop/cube-backdrop.blend
new file mode 100644
index 0000000..cfa2e9b
Binary files /dev/null and b/src/meshes/cube-backdrop/cube-backdrop.blend differ
diff --git a/src/meshes/cube-backdrop/cube-backdrop.ply b/src/meshes/cube-backdrop/cube-backdrop.ply
new file mode 100644
index 0000000..cb0b891
--- /dev/null
+++ b/src/meshes/cube-backdrop/cube-backdrop.ply
@@ -0,0 +1,29 @@
+ply
+format ascii 1.0
+comment Created in Blender version 3.6.4
+element vertex 8
+property float x
+property float y
+property float z
+property float nx
+property float ny
+property float nz
+property float s
+property float t
+element face 6
+property list uchar uint vertex_indices
+end_header
+-0.10000001 -0.0025735903 -0.10000001 0.5773503 0.5773503 0.5773503 0.5 0.5
+-0.10000001 0.19742644 0.10000001 1 0 0 -5.9604645e-08 1
+-0.10000001 -0.0025735903 0.10000001 0.70710677 0.70710677 0 0 0.49999997
+0.10000001 -0.0025735903 -0.10000001 0 0.70710677 0.70710677 1 0.50000006
+-0.10000001 0.19742644 -0.10000001 0.70710677 0 0.70710677 0.49999997 1
+0.10000001 -0.0025735903 0.10000001 0 1 0 1 0
+0.10000001 0.19742644 -0.10000001 0 0 1 1 1
+-0.10000001 -0.0025735903 0.10000001 0.70710677 0.70710677 0 0.50000006 0
+3 0 1 2
+3 3 4 0
+3 0 5 3
+3 0 4 1
+3 3 6 4
+3 0 7 5
diff --git a/src/meshes/cube-backdrop/cube-backdrop.ts b/src/meshes/cube-backdrop/cube-backdrop.ts
new file mode 100644
index 0000000..fdeea5e
--- /dev/null
+++ b/src/meshes/cube-backdrop/cube-backdrop.ts
@@ -0,0 +1,12 @@
+import { Mesh } from "../../renderer/mesh";
+
+// prettier-ignore
+export default new Mesh({
+ colors: null,
+ faces: new Uint8Array([0,1,2,3,4,0,0,5,3,0,4,1,3,6,4,0,7,5]),
+ name: "src/meshes/cube-backdrop/cube-backdrop.ply",
+ normals: new Float32Array([0.5773503,0.5773503,0.5773503,1,0,0,0.70710677,0.70710677,0,0,0.70710677,0.70710677,0.70710677,0,0.70710677,0,1,0,0,0,1,0.70710677,0.70710677,0]),
+ positions: new Float32Array([-0.10000001,-0.0025735903,-0.10000001,-0.10000001,0.19742644,0.10000001,-0.10000001,-0.0025735903,0.10000001,0.10000001,-0.0025735903,-0.10000001,-0.10000001,0.19742644,-0.10000001,0.10000001,-0.0025735903,0.10000001,0.10000001,0.19742644,-0.10000001,-0.10000001,-0.0025735903,0.10000001]),
+ uvs: new Float32Array([0.5,0.5,-5.9604645e-8,1,0,0.49999997,1,0.50000006,0.49999997,1,1,0,1,1,0.50000006,0]),
+ vertexCount: 8
+});
diff --git a/src/meshes/cube-backdrop/index.ts b/src/meshes/cube-backdrop/index.ts
new file mode 100644
index 0000000..aba8c2f
--- /dev/null
+++ b/src/meshes/cube-backdrop/index.ts
@@ -0,0 +1,6 @@
+import { Transform, etoq, v3 } from "../../renderer/transform";
+import cubeBackdrop from "./cube-backdrop";
+
+export const defaultTransform = new Transform(v3(0), etoq([0, -45, 0]), v3(20));
+
+export { cubeBackdrop };
diff --git a/src/meshes/cube-backdrop/uv-template.png b/src/meshes/cube-backdrop/uv-template.png
new file mode 100644
index 0000000..b5edc32
Binary files /dev/null and b/src/meshes/cube-backdrop/uv-template.png differ
diff --git a/src/meshes/fox/fox-normal.png b/src/meshes/fox/fox-normal.png
new file mode 100644
index 0000000..970533b
Binary files /dev/null and b/src/meshes/fox/fox-normal.png differ
diff --git a/src/meshes/fox/fox-tex.png b/src/meshes/fox/fox-tex.png
new file mode 100644
index 0000000..ffa6333
Binary files /dev/null and b/src/meshes/fox/fox-tex.png differ
diff --git a/src/meshes/fox/fox-tex.xcf b/src/meshes/fox/fox-tex.xcf
new file mode 100644
index 0000000..262e1a0
Binary files /dev/null and b/src/meshes/fox/fox-tex.xcf differ
diff --git a/src/meshes/fox/fox-uv.png b/src/meshes/fox/fox-uv.png
new file mode 100644
index 0000000..aa2e27b
Binary files /dev/null and b/src/meshes/fox/fox-uv.png differ
diff --git a/src/meshes/fox/fox.blend b/src/meshes/fox/fox.blend
new file mode 100644
index 0000000..3f1cfb8
Binary files /dev/null and b/src/meshes/fox/fox.blend differ
diff --git a/src/meshes/fox/fox.ply b/src/meshes/fox/fox.ply
new file mode 100644
index 0000000..406e994
--- /dev/null
+++ b/src/meshes/fox/fox.ply
@@ -0,0 +1,674 @@
+ply
+format ascii 1.0
+comment Created in Blender version 3.6.4
+element vertex 285
+property float x
+property float y
+property float z
+property float nx
+property float ny
+property float nz
+property float s
+property float t
+element face 374
+property list uchar uint vertex_indices
+end_header
+-0.6999253 6.443001 -0.82603 0.3475203 -0.1423119 -0.92681 0.21851481 0.38709354
+0.07097474 5.343301 -0.52663046 0.5162422 0.12797521 -0.8468272 0.25122124 0.29925498
+-0.76262593 4.472701 -1.15393 0.15832935 0.05530619 -0.98583627 0.33613995 0.31277353
+-1.7783258 5.520501 -0.86433035 -0.34248725 0.027904412 -0.9391081 0.31780326 0.41546077
+-2.2427258 6.713101 -0.82603 -0.5169309 -0.31768712 -0.7948945 0.26634175 0.49754715
+-1.5250261 4.4763007 -0.9856301 -0.48697895 -0.1626665 -0.85813236 0.36926088 0.35428312
+0.29497454 9.249201 0.16336976 0.979832 0.13666466 -0.14578043 0.8862014 0.7660378
+0.06327439 8.8725 -0.28472978 0.9031805 0.21487509 -0.37160963 0.96414614 0.65773886
+-0.035225682 9.543601 0.14946976 0.66321534 0.26724067 -0.6990907 0.9142767 0.82184976
+-0.30342564 9.674201 -0.23032992 0.6848186 0.23503296 -0.68977004 0.96414614 0.8656495
+2.4808748 3.6319008 -0.11143037 0.50283414 0.37262148 -0.779943 0.24378048 0.15517116
+2.0297747 3.2159004 -0.4459305 0.23640795 0.47815725 -0.84585875 0.27324826 0.1538348
+1.5565743 4.603301 -0.21123049 0.3647613 0.40136182 -0.8401535 0.24071635 0.21034758
+2.1004748 3.2381003 3.2929707 0.3046436 0.23757984 0.92236 0.12782207 0.13377228
+1.8371744 4.748301 2.81227 0.31008115 0.576068 0.7563038 0.13686845 0.17050092
+0.20437472 4.420901 2.9141703 -0.22806334 0.32389933 0.91819185 0.097095504 0.18026535
+1.8253747 0.4645001 -1.7956301 0.17951295 -0.316014 -0.931617 0.3456612 0.015984222
+0.91437465 0.9539002 -2.1209302 -0.17395478 -0.060770363 -0.9828767 0.38372317 0.05219409
+2.4374743 1.0497 -1.8992304 0.3371145 -0.028111659 -0.94104385 0.3173124 0.03967564
+2.5767748 2.7875004 -0.6003304 0.5286752 0.36182427 -0.76784486 0.2669188 0.12665303
+1.7599748 1.8992002 -1.1086301 0.37282482 0.34924614 -0.8596678 0.3150151 0.10144508
+1.5595742 2.5219004 -1.29143 0.04436654 0.3120137 -0.9490411 0.312529 0.12937495
+0.24357454 3.5395007 -0.67183006 0.1748497 -0.08175629 -0.981195 0.32927862 0.22344446
+0.24817431 4.333201 -0.45933002 0.4760932 0.18387188 -0.8599573 0.2904697 0.2528519
+-0.3960259 7.7391005 -1.2657304 0.77194935 -0.10489054 -0.6269707 0.13747068 0.42125323
+0.05687409 8.074501 -0.67993015 0.8878576 0.018637033 -0.45974046 0.1110152 0.38961607
+-0.12432557 6.748201 -0.34603044 0.8233882 0.00536109 -0.5674533 0.17645767 0.34971166
+-0.06132584 2.9543004 -0.8707303 0.50706327 0.2949509 -0.8098708 0.37940347 0.20685007
+-0.20062563 3.4773006 -0.68853 0.5776023 0.024086185 -0.8159629 0.3529383 0.23464157
+0.43317416 2.5253003 -0.46623006 0.20082258 0.4428197 -0.8738313 0.35064337 0.17517665
+-0.4904259 2.1981003 -0.90393 -0.3673268 -0.008583662 -0.9300523 0.43924242 0.18647039
+-1.0552258 3.1734004 -1.06763 -0.23037066 -0.14419852 -0.9623597 0.41530237 0.2674248
+1.4597749 1.4790002 -2.0267305 0.10130113 0.55220604 -0.82753044 0.34998143 0.06725915
+-1.8893259 8.729101 -1.7110304 -0.30028316 0.6138469 -0.7300836 0.12322961 0.6801839
+-2.2624261 9.345001 -1.37473 -0.42857707 0.59847176 -0.67687017 0.1720783 0.6964544
+-0.97242594 9.702102 -0.89533013 0.2310956 0.77802414 -0.5841861 0.16144735 0.7933706
+-1.2870256 7.527001 -2.5206306 0.40507296 -0.59645694 -0.69293207 0.8861246 0.52512723
+-1.5926256 8.311801 -2.8306303 0.018303465 0.44150117 -0.8970739 0.84557533 0.5134298
+-0.3960259 7.7391005 -1.2657304 0.77194935 -0.10489054 -0.6269707 0.9878913 0.42880467
+2.5549746 1.4319001 2.9302707 0.6770759 -0.15234865 0.71997094 0.12832226 0.086800925
+2.773675 2.7475002 3.0280704 0.5551748 0.09818922 0.82591754 0.14096868 0.11748978
+-0.94812554 8.5809 -1.5055304 0.5862696 0.275684 -0.7617652 0.074313566 0.7435197
+0.05687409 8.074501 -0.67993015 0.8878576 0.018637033 -0.45974046 0.020883663 0.84153533
+-0.3960259 7.7391005 -1.2657304 0.77194935 -0.10489054 -0.6269707 1.081579e-08 0.77996564
+-0.40532535 9.700401 0.84696966 0.3452935 0.52275664 0.7794215 0.32931674 0.8416559
+-1.540426 8.934701 1.6871705 -0.037781123 0.40868607 0.9118927 0.35599756 0.7471563
+-0.62042546 7.995201 1.7714701 0.47639555 0.22756127 0.8492721 0.4352468 0.76457715
+-0.15842591 5.3485007 2.2917705 0.038687505 0.4890638 0.87138975 0.09890157 0.21372627
+3.3480747 1.1927001 -1.4741304 0.4779266 0.31795877 -0.8188335 0.28071728 0.038383927
+0.23047411 6.9421005 0.8096703 0.9412043 0.3062575 0.14262189 0.12732372 0.2965882
+0.17777406 7.816401 -0.13533022 0.985557 -0.050912835 -0.16150954 0.11473294 0.36185902
+-0.80692565 9.159501 -1.4650301 0.41709664 0.43660966 -0.79712135 0.110673696 0.76611084
+0.73637474 6.182101 0.90636986 0.65320575 0.7567542 -0.025403246 0.1568792 0.258202
+0.16357423 6.238301 1.5856699 0.5102622 0.5121896 0.6908649 0.11916661 0.24799357
+2.0266747 5.562201 1.4546701 0.5327677 0.8339708 0.14370571 0.1670033 0.20147358
+3.4768748 0.57150006 -1.4508302 0.50982845 -0.2752561 -0.81505156 0.27564877 0.017370421
+4.1452746 0.9685002 -0.7070302 0.9362124 0.034893714 -0.34969804 0.24627076 0.033188876
+2.576082 3.1560004 -0.31358007 0.49277383 0.474742 -0.729242 0.25064924 0.13463129
+0.7198746 2.4339004 3.54267 -0.10767815 0.15382154 0.98221403 0.09065693 0.12818988
+2.288975 1.3705001 3.4610705 0.53157943 -0.18795584 0.825891 0.11538713 0.09199737
+-0.40532535 9.700401 0.84696966 0.3452935 0.52275664 0.7794215 0.8276462 0.8879465
+0.14267427 10.748201 0.011170197 0.73606163 0.6634644 -0.13426952 0.8977165 0.9073449
+-0.35632557 10.885501 -0.026630403 -0.17794462 0.9747583 -0.13484038 0.8979689 0.9335955
+-1.0288259 10.067701 0.053869635 -0.38528097 0.9081675 0.1636775 0.24703515 0.8216678
+-1.2105256 9.758201 0.87647027 0.03706524 0.8542405 0.51855505 0.30523577 0.7905776
+0.09657441 8.901701 0.59447026 0.90783143 0.11600388 0.40297043 0.8020745 0.7431329
+3.0635746 4.299401 1.8075701 0.8010637 0.5264299 0.2849009 0.17493051 0.15400115
+2.5929751 4.772801 0.5979699 0.6885465 0.57700217 -0.43928608 0.20319703 0.1803566
+0.16167451 9.942601 0.37547 0.95855004 0.10577212 0.26456407 0.89068747 0.8602873
+-0.94812554 8.5809 -1.5055304 0.5862696 0.275684 -0.7617652 0.8669603 0.42128757
+0.47697452 6.306901 0.39987034 0.78829354 0.5408408 -0.2934015 0.1696568 0.2862294
+3.0665743 0.73340005 -1.42483 0.21502984 0.04666299 -0.97549206 0.29085746 0.022808408
+0.6858742 3.7022007 -0.62512976 0.102968186 0.09595936 -0.9900452 0.30401754 0.21331184
+0.044074252 1.8123003 -1.5475305 -0.42321405 0.5065525 -0.7511954 0.4063384 0.124203816
+-0.053825382 1.2451001 -1.5953302 -0.69715625 -0.08602459 -0.71173936 0.4319168 0.09517003
+3.2380748 2.4352005 -0.08572999 0.82457936 0.081235796 -0.5598835 0.24068871 0.10983848
+0.5252747 5.1989007 -0.29223025 0.4377959 0.26956058 -0.85771316 0.2422915 0.26877972
+0.8465745 5.738801 0.27866977 0.6155783 0.5745703 -0.5393813 0.19642983 0.2589539
+-0.7709256 5.724101 2.2065706 0.07019434 0.24138543 0.9678872 0.084621415 0.22762483
+-0.619426 6.356501 1.9183702 0.3541473 0.25355586 0.9001605 0.08997824 0.2432744
+-1.9789258 7.178801 -1.18583 -0.29064578 -0.724498 -0.62500215 0.21659407 0.49825695
+-0.91182566 7.3815007 -1.4608301 0.375913 -0.73612595 -0.56285685 0.16409814 0.4431432
+0.09657441 8.901701 0.59447026 0.90783143 0.11600388 0.40297043 0.06007273 0.3584054
+0.06327439 8.8725 -0.28472978 0.9031805 0.21487509 -0.37160963 0.077401064 0.3881148
+3.0936747 0.6671002 2.4830706 0.5472127 -0.29103354 0.7847661 0.13976377 0.06055675
+4.0453753 0.52309996 1.4920702 0.87695193 -0.2072897 0.4335738 0.1772671 0.045047924
+3.6563747 2.4587002 2.1933703 0.8803676 0.14394727 0.45192042 0.1689892 0.10318307
+0.5219742 1.8811003 -1.0851305 0.15257555 0.7520019 -0.64125955 0.36747235 0.13334484
+1.1984742 1.6896003 -1.65813 0.073696144 0.91218823 -0.40308988 0.35129 0.09048066
+2.625175 1.7991003 -0.6557297 0.48116767 0.69189876 -0.5382877 0.27406374 0.088201545
+0.67027444 0.5334 -1.9347303 -0.38885155 -0.2292497 -0.8923223 0.40481266 0.033736143
+1.2843744 3.0958004 -0.5304299 -0.08802483 0.3184032 -0.94385976 0.3024185 0.17043002
+0.77727437 1.2146001 3.4750705 -0.16566989 -0.31949857 0.9329921 0.080950305 0.101946086
+3.4174747 1.7396003 -0.85813 0.4088575 0.88988423 -0.20234066 0.26399732 0.060749806
+2.3443742 1.5199003 -1.5742303 0.23401263 0.7841241 -0.5747935 0.3123137 0.06264582
+0.06327439 8.8725 -0.28472978 0.9031805 0.21487509 -0.37160963 0.08229262 0.8732247
+-1.8893259 8.729101 -1.7110304 -0.30028316 0.6138469 -0.7300836 0.78262734 0.48695683
+-0.62042546 7.995201 1.7714701 0.47639555 0.22756127 0.8492721 0.054573745 0.28939876
+-1.219426 6.696401 2.0643702 -0.13893181 0.08481444 0.98666334 0.4784059 0.67288846
+-0.619426 6.356501 1.9183702 0.3541473 0.25355586 0.9001605 0.52534187 0.6902852
+-2.161226 7.667401 -2.4847305 -0.6594078 -0.34964943 -0.6655273 0.843693 0.54919225
+-0.91182566 7.3815007 -1.4608301 0.375913 -0.73612595 -0.56285685 0.967211 0.5381632
+-1.9789258 7.178801 -1.18583 -0.29064578 -0.724498 -0.62500215 0.8863765 0.6507956
+3.1734743 1.5024002 0.15137026 0.7611686 0.58185023 -0.28648314 0.23814057 0.07682296
+-0.7888257 10.067701 -0.3484299 -0.04397583 0.70420456 -0.7086339 0.52430856 0.78790325
+0.14267427 10.748201 0.011170197 0.73606163 0.6634644 -0.13426952 0.5076637 0.9781552
+-0.30342564 9.674201 -0.23032992 0.6848186 0.23503296 -0.68977004 0.42495766 0.8044593
+-1.0288259 10.067701 0.053869635 -0.38528097 0.9081675 0.1636775 0.88358545 0.94791806
+0.09657441 8.901701 0.59447026 0.90783143 0.11600388 0.40297043 0.39027283 0.865766
+3.387675 3.7165008 1.58967 0.9180944 0.3928391 0.052727237 0.18311635 0.13782379
+-0.30342564 9.674201 -0.23032992 0.6848186 0.23503296 -0.68977004 0.15227878 0.86758876
+-2.2445261 4.9454007 -0.66073006 -0.75246775 0.008946161 -0.6585683 0.37036988 0.41615537
+3.6162753 2.8629005 0.8747697 0.93610126 0.23180684 -0.26453748 0.20584682 0.11498356
+-0.7888257 10.067701 -0.3484299 -0.04397583 0.70420456 -0.7086339 0.935007 0.9301176
+-0.7888257 10.067701 -0.3484299 -0.04397583 0.70420456 -0.7086339 0.19761893 0.83779246
+4.364375 1.0550001 0.5702698 0.92324126 0.38289523 0.03188642 0.20950294 0.045586396
+-0.61192554 1.0255002 2.04657 -0.8208653 0.15153797 0.55065095 0.0322884 0.11481223
+-1.0520257 0.52869993 2.4247699 -0.6847748 0.31241915 0.6583902 0.02451134 0.09802288
+-0.0897255 0.5721001 2.6455705 -0.44955286 -0.170653 0.87680095 0.048454616 0.09665558
+-2.517626 0.78980017 0.25796968 -0.69434595 0.69967836 -0.16832665 0.6460075 0.21836895
+-1.337726 0.8835 0.28996965 -0.64949834 0.59640735 -0.47164628 0.5963892 0.2274105
+-1.4268259 0.95919997 -0.43353048 -0.72120667 0.6666094 -0.18839571 0.5771463 0.1884031
+-0.44272542 1.0345002 -0.70443004 -0.44213012 -0.017088598 -0.8967881 0.5055221 0.114784405
+-1.0315259 1.0731 -0.7273301 -0.16689667 0.37004504 -0.9138995 0.5447714 0.15467297
+-1.0638257 2.0252004 -0.7415303 -0.32365012 -0.16409263 -0.93183917 0.48357084 0.21026236
+-3.471126 10.565201 0.1122696 -0.81858766 0.5451293 -0.18096499 0.75558704 0.9432239
+-3.4521263 9.519001 0.46967015 -0.992983 0.08945896 0.07734239 0.8020744 0.9034289
+-2.878626 9.963901 0.81987005 -0.21252948 0.5347677 0.81783545 0.7897775 0.96688294
+-2.741226 7.508901 1.3471704 -0.7021046 -0.14130145 0.6979133 0.36300594 0.6462114
+-3.4521263 9.519001 0.46967015 -0.992983 0.08945896 0.07734239 0.27383736 0.69182056
+-3.433826 9.038601 0.28866962 -0.9546164 0.028929858 -0.2964296 0.27248618 0.6792056
+-2.882526 9.084501 -0.10313035 -0.7311533 0.36524838 -0.5762018 0.2478923 0.6867268
+-3.3896263 8.113201 -0.3605301 -0.9617006 -0.03754102 -0.27151904 0.25436208 0.6271816
+-3.3058262 8.5403 0.07176972 -0.9879483 0.08645398 -0.1283894 0.26854706 0.6570603
+-2.7694259 7.7350006 -1.0115304 -0.78725094 -0.2752617 -0.5517852 0.2133645 0.5806204
+-2.230626 0.22640002 -0.41983035 -0.74839973 -0.49738073 -0.4387599 0.637635 0.17406993
+-1.868326 0.75070006 -0.9546304 -0.6237263 0.711984 -0.32255915 0.60493344 0.1558058
+3.880675 1.3958001 1.1265702 0.9198568 0.38913035 -0.049406413 0.19796096 0.06852602
+-2.327826 8.2278 1.5766702 -0.44723478 0.13983466 0.883418 0.35857934 0.69122976
+-2.5213258 6.882601 1.3467698 -0.6689012 -0.23592637 0.7049185 0.3951752 0.6194137
+-1.4618257 2.4264002 -0.6133301 -0.8903412 -0.15419926 -0.42838684 0.48257515 0.25476277
+-1.2621258 1.7734003 0.17966996 -0.92482555 0.016368585 -0.3800392 0.5577472 0.2591085
+-1.4422258 3.0290003 0.4318703 -0.8165544 -0.1464694 -0.55837774 0.5101766 0.3366432
+-1.9845258 3.6388009 0.69077003 -0.87178856 -0.35990623 -0.3323434 0.50301826 0.39985734
+-1.890426 1.0817002 0.44496998 -0.517776 0.4540006 -0.7251148 0.6224612 0.2508355
+-2.0575259 0.9955001 0.9599702 -0.8433312 0.09983585 0.52803904 0.65923995 0.27131322
+-2.964326 9.822501 -0.10223008 -0.47634494 -0.05045076 -0.87780994 0.7339221 0.92058545
+-2.882526 9.084501 -0.10313035 -0.7311533 0.36524838 -0.5762018 0.667627 0.84930974
+-3.092126 9.502201 0.2502701 -0.6984636 -0.017294424 -0.71543664 0.75460386 0.8875665
+-0.087125406 3.1274004 2.8989704 -0.64312565 0.17802551 0.7447794 0.07549074 0.15373975
+-0.8196259 2.3198001 1.7973703 -0.66986597 -0.026210472 0.7420193 0.036297202 0.14856292
+-0.8748258 2.0967002 2.7634706 -0.90760005 0.06683492 0.41448176 0.053295545 0.13493255
+0.02887421 0.7540002 -1.4195303 -0.71550065 -0.2610496 -0.6480061 0.45089763 0.06624607
+-1.665426 1.8197002 1.62437 -0.48163462 -0.16273934 0.86112946 0.65852106 0.35673973
+-2.1923258 3.5194008 1.3925699 -0.9447443 -0.18422589 0.271144 0.5478699 0.43424743
+-1.186226 0.55610013 1.5514703 -0.84864473 -0.16340141 0.5030924 0.734133 0.3012958
+-0.8196259 2.3198001 1.7973703 -0.66986597 -0.026210472 0.7420193 0.69251174 0.422131
+-0.029425815 2.1513002 3.4381702 -0.44133595 0.045067813 0.8962095 0.07396352 0.1281145
+-2.5888262 6.208601 0.9756699 -0.84305483 -0.09319865 0.52969086 0.4061021 0.5678618
+-3.112326 7.3445005 0.3178696 -0.96471584 -0.253683 0.070486 0.31435022 0.5997315
+-2.667426 4.758001 0.018969728 -0.90281165 -0.30579108 -0.30236223 0.4114268 0.44731957
+-2.7694259 7.7350006 -1.0115304 -0.78725094 -0.2752617 -0.5517852 0.75763285 0.6744133
+-2.392026 8.487902 -1.3364304 -0.747842 0.21194589 -0.6291353 0.734765 0.56230044
+-0.8792256 4.817401 2.3403704 -0.38904643 0.09032617 0.9167791 0.5902533 0.5873184
+-2.6100261 4.707801 1.3596704 -0.8832008 -0.12243323 0.45273212 0.48538992 0.4962032
+-0.8792256 4.817401 2.3403704 -0.38904643 0.09032617 0.9167791 0.07417127 0.20548928
+-2.392026 8.487902 -1.3364304 -0.747842 0.21194589 -0.6291353 0.16459617 0.6398786
+-1.8001261 4.085301 1.9035699 -0.4839415 -0.097555116 0.86964566 0.5627961 0.49731115
+-1.186226 0.55610013 1.5514703 -0.84864473 -0.16340141 0.5030924 0.010203981 0.1122183
+-1.569626 0.3742001 -1.4788301 -0.05462312 0.1690641 -0.9840902 0.61384606 0.11812159
+-1.9930261 9.862201 -0.003130341 0.075866185 0.9794647 -0.18679745 0.7293909 0.98951745
+-3.0411263 10.770401 0.043869786 0.02688641 0.9635681 -0.26610863 0.753717 0.961225
+-3.433826 9.038601 0.28866962 -0.9546164 0.028929858 -0.2964296 0.8020744 0.78846765
+4.2867746 0.52519995 0.41017002 0.94705594 -0.2590572 -0.18966934 0.20760685 0.029241929
+-2.878626 9.963901 0.81987005 -0.21252948 0.5347677 0.81783545 0.27992412 0.7168905
+-1.9710261 3.9114006 0.01537018 -0.6675564 -0.59708816 -0.444808 0.45012152 0.3856737
+-1.9930261 9.862201 -0.003130341 0.075866185 0.9794647 -0.18679745 0.2468168 0.7547342
+-2.2901258 9.714901 -0.21963045 -0.23479536 0.67432845 -0.7001088 0.23586477 0.728986
+-2.2901258 9.714901 -0.21963045 -0.23479536 0.67432845 -0.7001088 0.52842814 0.74081594
+-2.964326 9.822501 -0.10223008 -0.47634494 -0.05045076 -0.87780994 0.58254737 0.8386313
+-3.471126 10.565201 0.1122696 -0.81858766 0.5451293 -0.18096499 0.5380133 0.9808106
+-2.2901258 9.714901 -0.21963045 -0.23479536 0.67432845 -0.7001088 0.69757915 0.9635888
+-3.3058262 8.5403 0.07176972 -0.9879483 0.08645398 -0.1283894 0.70988774 0.65773886
+-2.882526 9.084501 -0.10313035 -0.7311533 0.36524838 -0.5762018 0.6677008 0.75300074
+-0.7709256 5.724101 2.2065706 0.07019434 0.24138543 0.9678872 0.5507923 0.6433447
+0.58418125 0.22400019 -1.7113466 -0.40643814 -0.8098558 -0.42301488 0.9718312 0.020504208
+0.7487328 0.22400019 -1.869269 -0.19065972 -0.720445 -0.66678923 0.97220457 0.021100836
+1.2752382 0.22400019 -1.8116388 0.075374685 -0.7676886 -0.6363747 0.9716987 0.022655101
+-1.4210848 0.22400019 -1.3924581 0.41129172 -0.60820895 -0.6789117 0.9721315 0.014245303
+-1.2286401 0.22400019 -1.2118917 0.3633369 -0.6630077 -0.65452826 0.9714647 0.014712902
+-1.7548681 0.22400019 -1.3470285 -0.52704555 -0.58184344 -0.6194199 0.97220457 0.013208317
+-2.2161448 0.22400019 -0.43305972 -0.017521787 -0.99930537 0.032890607 0.96973413 0.01123883
+-0.5065232 0.22400019 -0.5854172 -0.021521537 -0.94214505 -0.3345139 0.96911705 0.01649964
+3.6921923 0.22400019 -0.5356896 0.6121442 -0.6924734 -0.38178536 0.96632093 0.029152708
+-1.9521799 0.22400019 -1.126045 -0.70010203 -0.5537167 -0.45083794 0.9716613 0.012472974
+-2.2274122 0.22400019 -0.4297089 -0.7312984 -0.6671969 -0.14160144 0.80359983 1.0238159
+-1.9521799 0.22400019 -1.126045 -0.70010203 -0.5537167 -0.45083794 0.80359983 0.95338476
+-2.2161448 0.22400019 -0.43305972 -0.017521787 -0.99930537 0.032890607 0.8044696 1.023133
+2.2313638 0.22400019 2.680494 0.3288468 -0.8804425 0.34158558 0.95752156 0.022717984
+-0.6810555 0.22400019 2.4642336 -0.1467376 -0.75445783 0.63973546 0.96000504 0.01405433
+2.4538667 0.22400019 2.5940027 0.24385142 -0.7973807 0.55201495 0.95764303 0.02344461
+0.41850665 0.22400019 2.7519977 -0.23899291 -0.84482497 0.4786994 0.95844465 0.017195703
+-2.6425998 0.22400019 0.70022744 -0.80877304 -0.50211614 0.3062115 0.9665674 0.0092362035
+-2.7626433 0.22400019 0.07626649 -0.847515 -0.42922866 -0.3122198 0.96852803 0.009265589
+4.1131854 0.22400019 0.46040884 0.5623081 -0.8260273 -0.03858204 0.9630468 0.029798763
+1.955617 0.22400019 2.7750673 0.04242061 -0.8742375 0.4836417 0.9574091 0.02182542
+2.1960154 0.22400019 2.7574801 0.407 -0.7800877 0.47519907 0.95731115 0.022562819
+0.7445824 0.22400019 2.9373279 -0.12836032 -0.80886763 0.57380897 0.9576798 0.018064456
+2.7569857 0.22400019 -1.5163606 0.16910498 -0.7943238 -0.5834837 0.9698729 0.026945414
+2.100773 0.22400019 -1.6653436 0.12811182 -0.79456544 -0.59350926 0.9707365 0.02505687
+3.4797022 0.22400019 -1.0087174 0.40930107 -0.86440027 -0.29203552 0.9678838 0.028808849
+3.5642383 0.22400019 -0.8515244 0.48217154 -0.858188 -0.17613666 0.96735567 0.028965177
+-0.37594378 0.22400019 -0.7854573 -0.57233065 -0.7097642 -0.41069746 0.9696391 0.017020183
+-1.1313287 0.22400019 -1.2045778 0.22967121 -0.49633533 -0.83719915 0.9713813 0.015002267
+-1.2935071 0.22400019 1.0919343 -0.27430204 -0.8970687 0.34644783 0.96453613 0.013066204
+-2.5766528 0.22400019 0.8374413 -0.62714297 -0.48046845 0.6130593 0.96611136 0.009349244
+4.0127363 0.22400019 0.9127198 0.5038301 -0.8556301 0.1185428 0.9617433 0.029211031
+3.5815594 0.22400019 -0.7074967 0.42636088 -0.8999785 -0.09085657 0.96690965 0.028926747
+3.4810352 0.22400019 1.8996607 0.39348367 -0.810439 0.4340037 0.9590955 0.02698438
+-1.11559 0.22400019 1.3025575 -0.38334632 -0.9040218 0.18918258 0.963788 0.013471412
+3.8143253 0.22400019 1.5762239 0.4810456 -0.8009131 0.35655776 0.95986325 0.028194623
+-1.0991356 0.22400019 2.0397234 -0.68955994 -0.7188539 0.0880689 0.96155035 0.013057904
+-2.209373 0.22400019 -0.42154086 -0.0558253 -0.9859457 0.15746342 0.9696951 0.011252033
+-2.1618967 0.22400019 -0.40970844 -0.0028608302 -0.9999959 -0.000106975036 0.9696294 0.011387991
+-2.1749234 0.22400019 -0.40605244 -0.011426341 -0.9991058 -0.04070532 0.96961904 0.011344941
+-2.1937947 0.22400019 -0.40073627 -0.011439374 -0.9991109 -0.04057865 0.9696118 0.01128404
+-2.2783449 0.22400019 -0.37692034 -0.58131546 -0.51583326 -0.6292762 0.969593 0.011013629
+-1.0468484 0.22400019 2.382645 -0.58025545 -0.63782334 0.5064435 0.9604814 0.013000401
+3.4810352 0.22400019 1.8996607 0.39348367 -0.810439 0.4340037 0.15420465 0.04102335
+3.8143253 0.22400019 1.5762239 0.4810456 -0.8009131 0.35655776 0.16792865 0.037144165
+2.2313638 0.22400019 2.680494 0.3288468 -0.8804425 0.34158558 0.110636964 0.05624038
+2.4538667 0.22400019 2.5940027 0.24385142 -0.7973807 0.55201495 0.117879316 0.05280347
+2.1960154 0.22400019 2.7574801 0.407 -0.7800877 0.47519907 0.1069449 0.059347447
+1.2752382 0.22400019 -1.8116388 0.075374685 -0.7676886 -0.6363747 0.37604672 0.008110086
+0.7487328 0.22400019 -1.869269 -0.19065972 -0.720445 -0.66678923 0.4070614 0.013023422
+3.5642383 0.22400019 -0.8515244 0.48217154 -0.858188 -0.17613666 0.25538462 0.0031148791
+3.4797022 0.22400019 -1.0087174 0.40930107 -0.86440027 -0.29203552 0.2648711 8.450675e-09
+4.1131854 0.22400019 0.46040884 0.5623081 -0.8260273 -0.03858204 0.20259783 0.019268692
+3.6921923 0.22400019 -0.5356896 0.6121442 -0.6924734 -0.38178536 0.23897217 0.0057812533
+2.7569857 0.22400019 -1.5163606 0.16910498 -0.7943238 -0.5834837 0.3031835 0.0016587148
+2.100773 0.22400019 -1.6653436 0.12811182 -0.79456544 -0.59350926 0.3331248 0.0026185757
+1.955617 0.22400019 2.7750673 0.04242061 -0.8742375 0.4836417 0.09809749 0.06282124
+0.7445824 0.22400019 2.9373279 -0.12836032 -0.80886763 0.57380897 0.068156235 0.07761529
+-0.37594378 0.22400019 -0.7854573 -0.57233065 -0.7097642 -0.41069746 0.52157223 0.044851843
+-0.5065232 0.22400019 -0.5854172 -0.021521537 -0.94214505 -0.3345139 0.5435285 0.046751596
+-2.2783449 0.22400019 -0.37692034 -0.58131546 -0.51583326 -0.6292762 0.63853747 0.17621852
+-2.7626433 0.22400019 0.07626649 -0.847515 -0.42922866 -0.3122198 0.66334546 0.19258852
+-1.7548681 0.22400019 -1.3470285 -0.52704555 -0.58184344 -0.6194199 0.62489164 0.1247898
+-1.9521799 0.22400019 -1.126045 -0.70010203 -0.5537167 -0.45083794 0.6287393 0.14086775
+-2.6425998 0.22400019 0.70022744 -0.80877304 -0.50211614 0.3062115 0.68118423 0.21481499
+-1.11559 0.22400019 1.3025575 -0.38334632 -0.9040218 0.18918258 -3.3102134e-09 0.10996528
+-1.0991356 0.22400019 2.0397234 -0.68955994 -0.7188539 0.0880689 0.013690739 0.09781893
+0.58418125 0.22400019 -1.7113466 -0.40643814 -0.8098558 -0.42301488 0.42186216 0.014245739
+-1.1313287 0.22400019 -1.2045778 0.22967121 -0.49633533 -0.83719915 0.6017828 0.094806425
+-0.6810555 0.22400019 2.4642336 -0.1467376 -0.75445783 0.63973546 0.030619193 0.091465615
+0.41850665 0.22400019 2.7519977 -0.23899291 -0.84482497 0.4786994 0.057839744 0.08235605
+-1.2286401 0.22400019 -1.2118917 0.3633369 -0.6630077 -0.65452826 0.59865737 0.10087764
+-2.5766528 0.22400019 0.8374413 -0.62714297 -0.48046845 0.6130593 0.67908764 0.21657859
+-1.2935071 0.22400019 1.0919343 -0.27430204 -0.8970687 0.34644783 0.7325371 0.2680749
+-1.4210848 0.22400019 -1.3924581 0.41129172 -0.60820895 -0.6789117 0.614245 0.10814548
+-1.9521799 0.22400019 -1.126045 -0.70010203 -0.5537167 -0.45083794 0.43263742 0.92657316
+-2.2274122 0.22400019 -0.4297089 -0.7312984 -0.6671969 -0.14160144 0.43597075 0.8869815
+-2.230626 0.22640002 -0.41983035 -0.74839973 -0.49738073 -0.4387599 0.43614823 0.88644433
+4.0127363 0.22400019 0.9127198 0.5038301 -0.8556301 0.1185428 0.18772343 0.02667462
+3.5815594 0.22400019 -0.7074967 0.42636088 -0.8999785 -0.09085657 0.24657853 0.0037103465
+-1.0468484 0.22400019 2.382645 -0.58025545 -0.63782334 0.5064435 0.021488441 0.09233946
+-1.11559 0.22400019 1.3025575 -0.38334632 -0.9040218 0.18918258 0.7439689 0.2791134
+-2.2274122 0.22400019 -0.4297089 -0.7312984 -0.6671969 -0.14160144 0.67494655 0.99038863
+-2.2161448 0.22400019 -0.43305972 -0.017521787 -0.99930537 0.032890607 0.67444944 0.9913764
+-2.230626 0.22640002 -0.41983035 -0.74839973 -0.49738073 -0.4387599 0.67444944 0.98951757
+-2.1618967 0.22400019 -0.40970844 -0.0028608302 -0.9999959 -0.000106975036 0.80714715 0.95338464
+-2.1749234 0.22400019 -0.40605244 -0.011426341 -0.9991058 -0.04070532 0.8076674 0.95454615
+-2.230626 0.22640002 -0.41983035 -0.74839973 -0.49738073 -0.4387599 0.80714715 0.9599234
+-2.2161448 0.22400019 -0.43305972 -0.017521787 -0.99930537 0.032890607 0.67331666 0.9900621
+-2.209373 0.22400019 -0.42154086 -0.0558253 -0.9859457 0.15746342 0.6744493 0.98951745
+-2.230626 0.22640002 -0.41983035 -0.74839973 -0.49738073 -0.4387599 0.67444944 0.99153584
+-2.209373 0.22400019 -0.42154086 -0.0558253 -0.9859457 0.15746342 0.80814487 0.9553456
+-2.1618967 0.22400019 -0.40970844 -0.0028608302 -0.9999959 -0.000106975036 0.8076674 0.95992327
+-2.230626 0.22640002 -0.41983035 -0.74839973 -0.49738073 -0.4387599 0.8076674 0.9533845
+-2.1937947 0.22400019 -0.40073627 -0.011439374 -0.9991109 -0.04057865 0.8044694 0.9616473
+-2.2783449 0.22400019 -0.37692034 -0.58131546 -0.51583326 -0.6292762 0.8044694 0.95338464
+-2.230626 0.22640002 -0.41983035 -0.74839973 -0.49738073 -0.4387599 0.807147 0.9587995
+-2.1749234 0.22400019 -0.40605244 -0.011426341 -0.9991058 -0.04070532 0.67240256 0.98951757
+-2.1937947 0.22400019 -0.40073627 -0.011439374 -0.9991109 -0.04057865 0.6733167 0.9911193
+-2.230626 0.22640002 -0.41983035 -0.74839973 -0.49738073 -0.4387599 0.67240256 0.9949199
+3 0 1 2
+3 0 3 4
+3 2 3 0
+3 5 3 2
+3 6 7 8
+3 8 7 9
+3 10 11 12
+3 13 14 15
+3 16 17 18
+3 19 20 21
+3 22 1 23
+3 24 25 26
+3 27 28 29
+3 30 31 27
+3 32 18 17
+3 33 34 35
+3 36 37 38
+3 39 40 13
+3 41 42 43
+3 44 45 46
+3 47 15 14
+3 48 18 32
+3 49 26 50
+3 33 35 51
+3 52 53 54
+3 54 47 14
+3 55 48 56
+3 11 10 57
+3 13 58 59
+3 40 14 13
+3 53 47 54
+3 60 61 62
+3 44 63 64
+3 6 60 65
+3 65 7 6
+3 66 67 54
+3 60 68 61
+3 38 37 69
+3 26 49 70
+3 67 10 12
+3 55 71 48
+3 72 22 23
+3 9 68 8
+3 68 60 6
+3 73 17 74
+3 75 10 67
+3 76 26 77
+3 1 26 76
+3 78 47 79
+3 0 80 81
+3 82 50 83
+3 84 85 86
+3 39 13 59
+3 87 27 29
+3 87 20 88
+3 29 21 87
+3 20 89 88
+3 90 17 16
+3 29 72 91
+3 40 84 86
+3 58 92 59
+3 21 11 19
+3 73 87 88
+3 27 31 2
+3 31 5 2
+3 52 49 53
+3 61 68 9
+3 93 48 94
+3 88 93 94
+3 51 35 95
+3 37 96 69
+3 33 51 41
+3 77 52 54
+3 67 12 77
+3 26 1 0
+3 76 77 12
+3 97 49 82
+3 46 98 99
+3 79 53 97
+3 23 76 72
+3 25 50 26
+3 0 24 26
+3 100 37 36
+3 52 70 49
+3 36 101 102
+3 64 45 44
+3 86 66 40
+3 11 21 91
+3 12 72 76
+3 82 49 50
+3 72 11 91
+3 75 103 89
+3 19 89 20
+3 32 88 94
+3 87 21 20
+3 79 47 53
+3 2 1 22
+3 22 72 29
+3 22 29 28
+3 27 2 28
+3 51 95 42
+3 50 25 83
+3 26 70 77
+3 0 81 24
+3 91 21 29
+3 23 1 76
+3 53 49 97
+3 77 54 67
+3 104 105 106
+3 52 77 70
+3 101 36 38
+3 4 80 0
+3 66 54 14
+3 62 107 60
+3 44 46 108
+3 41 51 42
+3 86 109 66
+3 57 10 75
+3 71 16 18
+3 55 16 71
+3 35 110 95
+3 32 17 73
+3 111 3 5
+3 40 39 84
+3 112 75 67
+3 72 12 11
+3 75 89 19
+3 75 19 57
+3 88 89 93
+3 74 27 73
+3 94 48 32
+3 19 11 57
+3 71 18 48
+3 40 66 14
+3 73 88 32
+3 113 62 61
+3 22 28 2
+3 35 114 110
+3 73 27 87
+3 115 93 89
+3 115 89 103
+3 116 117 118
+3 119 120 121
+3 122 30 74
+3 123 124 122
+3 125 126 127
+3 128 129 130
+3 131 132 133
+3 4 132 134
+3 135 121 136
+3 137 112 86
+3 138 128 139
+3 140 141 142
+3 143 144 145
+3 146 147 148
+3 122 124 30
+3 123 136 121
+3 56 48 93
+3 58 13 15
+3 121 141 140
+3 123 121 124
+3 30 27 74
+3 149 150 151
+3 152 122 74
+3 145 153 154
+3 120 141 121
+3 100 36 102
+3 155 156 153
+3 157 151 118
+3 152 74 17
+3 121 135 119
+3 144 119 145
+3 119 144 120
+3 158 159 160
+3 4 159 132
+3 100 161 162
+3 163 98 164
+3 138 98 45
+3 15 165 149
+3 166 34 33
+3 154 153 167
+3 153 145 155
+3 93 115 56
+3 154 167 164
+3 116 168 117
+3 150 168 116
+3 92 157 118
+3 136 123 169
+3 109 112 67
+3 3 111 160
+3 170 171 127
+3 132 131 34
+3 165 150 149
+3 148 147 172
+3 115 85 173
+3 158 139 159
+3 159 4 160
+3 149 151 157
+3 126 125 148
+3 45 174 129
+3 128 133 159
+3 156 163 167
+3 92 58 157
+3 175 5 142
+3 140 31 124
+3 144 141 120
+3 86 85 137
+3 8 68 6
+3 45 98 46
+3 34 176 35
+3 64 176 174
+3 176 34 177
+3 64 174 45
+3 64 63 176
+3 132 34 166
+3 162 96 100
+3 58 149 157
+3 125 127 171
+3 178 179 180
+3 181 125 171
+3 147 182 172
+3 126 148 172
+3 129 128 138
+3 130 133 128
+3 179 178 183
+3 177 34 131
+3 132 166 134
+3 159 139 128
+3 159 133 132
+3 160 111 175
+3 154 143 145
+3 137 85 115
+3 138 45 129
+3 35 176 114
+3 100 102 161
+3 100 96 37
+3 139 98 138
+3 164 98 158
+3 99 98 184
+3 98 163 184
+3 165 47 78
+3 160 4 3
+3 17 90 152
+3 167 153 156
+3 75 112 103
+3 142 144 143
+3 113 107 62
+3 151 150 116
+3 124 31 30
+3 142 5 140
+3 5 31 140
+3 125 146 148
+3 176 63 114
+3 139 158 98
+3 5 175 111
+3 164 158 160
+3 143 164 160
+3 15 149 58
+3 118 151 116
+3 112 137 103
+3 163 164 167
+3 175 142 143
+3 164 143 154
+3 175 143 160
+3 142 141 144
+3 121 140 124
+3 103 137 115
+3 80 4 134
+3 67 66 109
+3 109 86 112
+3 47 165 15
+3 181 171 170
+3 185 186 187
+3 188 189 190
+3 191 192 193
+3 191 194 192
+3 195 196 197
+3 198 199 200
+3 201 199 198
+3 202 203 204
+3 205 201 206
+3 207 201 205
+3 208 185 209
+3 210 185 208
+3 211 185 210
+3 212 185 211
+3 194 189 213
+3 194 190 189
+3 214 215 216
+3 192 212 217
+3 218 219 220
+3 221 219 218
+3 213 192 194
+3 198 206 201
+3 187 209 185
+3 217 193 192
+3 193 222 191
+3 193 223 222
+3 193 224 223
+3 193 225 224
+3 193 226 225
+3 193 203 226
+3 193 204 203
+3 218 227 221
+3 218 199 227
+3 218 200 199
+3 204 215 202
+3 204 216 215
+3 216 219 214
+3 216 220 219
+3 211 217 212
+3 228 229 85
+3 228 85 84
+3 230 231 84
+3 230 84 39
+3 232 230 39
+3 232 39 59
+3 233 234 90
+3 233 90 16
+3 235 236 55
+3 235 55 56
+3 237 238 173
+3 239 240 16
+3 239 16 55
+3 241 232 59
+3 241 59 92
+3 242 241 92
+3 231 228 84
+3 240 233 16
+3 243 244 122
+3 243 122 152
+3 245 246 119
+3 245 119 135
+3 247 248 136
+3 247 136 169
+3 246 249 119
+3 250 251 168
+3 234 252 152
+3 234 152 90
+3 244 253 122
+3 254 255 118
+3 253 256 123
+3 253 123 122
+3 257 258 145
+3 256 259 169
+3 256 169 123
+3 260 261 262
+3 248 135 136
+3 263 237 173
+3 263 173 85
+3 238 264 115
+3 238 115 173
+3 265 254 118
+3 265 118 117
+3 264 235 56
+3 264 56 115
+3 255 242 92
+3 255 92 118
+3 258 266 155
+3 258 155 145
+3 252 243 152
+3 259 247 169
+3 249 257 145
+3 249 145 119
+3 251 265 117
+3 251 117 168
+3 267 268 269
+3 270 271 272
+3 273 274 275
+3 276 277 278
+3 236 239 55
+3 229 263 85
+3 279 280 281
+3 282 283 284
diff --git a/src/meshes/fox/fox.ts b/src/meshes/fox/fox.ts
new file mode 100644
index 0000000..8296bff
--- /dev/null
+++ b/src/meshes/fox/fox.ts
@@ -0,0 +1,12 @@
+import { Mesh } from "../../renderer/mesh";
+
+// prettier-ignore
+export default new Mesh({
+ colors: null,
+ faces: new Uint16Array([0,1,2,0,3,4,2,3,0,5,3,2,6,7,8,8,7,9,10,11,12,13,14,15,16,17,18,19,20,21,22,1,23,24,25,26,27,28,29,30,31,27,32,18,17,33,34,35,36,37,38,39,40,13,41,42,43,44,45,46,47,15,14,48,18,32,49,26,50,33,35,51,52,53,54,54,47,14,55,48,56,11,10,57,13,58,59,40,14,13,53,47,54,60,61,62,44,63,64,6,60,65,65,7,6,66,67,54,60,68,61,38,37,69,26,49,70,67,10,12,55,71,48,72,22,23,9,68,8,68,60,6,73,17,74,75,10,67,76,26,77,1,26,76,78,47,79,0,80,81,82,50,83,84,85,86,39,13,59,87,27,29,87,20,88,29,21,87,20,89,88,90,17,16,29,72,91,40,84,86,58,92,59,21,11,19,73,87,88,27,31,2,31,5,2,52,49,53,61,68,9,93,48,94,88,93,94,51,35,95,37,96,69,33,51,41,77,52,54,67,12,77,26,1,0,76,77,12,97,49,82,46,98,99,79,53,97,23,76,72,25,50,26,0,24,26,100,37,36,52,70,49,36,101,102,64,45,44,86,66,40,11,21,91,12,72,76,82,49,50,72,11,91,75,103,89,19,89,20,32,88,94,87,21,20,79,47,53,2,1,22,22,72,29,22,29,28,27,2,28,51,95,42,50,25,83,26,70,77,0,81,24,91,21,29,23,1,76,53,49,97,77,54,67,104,105,106,52,77,70,101,36,38,4,80,0,66,54,14,62,107,60,44,46,108,41,51,42,86,109,66,57,10,75,71,16,18,55,16,71,35,110,95,32,17,73,111,3,5,40,39,84,112,75,67,72,12,11,75,89,19,75,19,57,88,89,93,74,27,73,94,48,32,19,11,57,71,18,48,40,66,14,73,88,32,113,62,61,22,28,2,35,114,110,73,27,87,115,93,89,115,89,103,116,117,118,119,120,121,122,30,74,123,124,122,125,126,127,128,129,130,131,132,133,4,132,134,135,121,136,137,112,86,138,128,139,140,141,142,143,144,145,146,147,148,122,124,30,123,136,121,56,48,93,58,13,15,121,141,140,123,121,124,30,27,74,149,150,151,152,122,74,145,153,154,120,141,121,100,36,102,155,156,153,157,151,118,152,74,17,121,135,119,144,119,145,119,144,120,158,159,160,4,159,132,100,161,162,163,98,164,138,98,45,15,165,149,166,34,33,154,153,167,153,145,155,93,115,56,154,167,164,116,168,117,150,168,116,92,157,118,136,123,169,109,112,67,3,111,160,170,171,127,132,131,34,165,150,149,148,147,172,115,85,173,158,139,159,159,4,160,149,151,157,126,125,148,45,174,129,128,133,159,156,163,167,92,58,157,175,5,142,140,31,124,144,141,120,86,85,137,8,68,6,45,98,46,34,176,35,64,176,174,176,34,177,64,174,45,64,63,176,132,34,166,162,96,100,58,149,157,125,127,171,178,179,180,181,125,171,147,182,172,126,148,172,129,128,138,130,133,128,179,178,183,177,34,131,132,166,134,159,139,128,159,133,132,160,111,175,154,143,145,137,85,115,138,45,129,35,176,114,100,102,161,100,96,37,139,98,138,164,98,158,99,98,184,98,163,184,165,47,78,160,4,3,17,90,152,167,153,156,75,112,103,142,144,143,113,107,62,151,150,116,124,31,30,142,5,140,5,31,140,125,146,148,176,63,114,139,158,98,5,175,111,164,158,160,143,164,160,15,149,58,118,151,116,112,137,103,163,164,167,175,142,143,164,143,154,175,143,160,142,141,144,121,140,124,103,137,115,80,4,134,67,66,109,109,86,112,47,165,15,181,171,170,185,186,187,188,189,190,191,192,193,191,194,192,195,196,197,198,199,200,201,199,198,202,203,204,205,201,206,207,201,205,208,185,209,210,185,208,211,185,210,212,185,211,194,189,213,194,190,189,214,215,216,192,212,217,218,219,220,221,219,218,213,192,194,198,206,201,187,209,185,217,193,192,193,222,191,193,223,222,193,224,223,193,225,224,193,226,225,193,203,226,193,204,203,218,227,221,218,199,227,218,200,199,204,215,202,204,216,215,216,219,214,216,220,219,211,217,212,228,229,85,228,85,84,230,231,84,230,84,39,232,230,39,232,39,59,233,234,90,233,90,16,235,236,55,235,55,56,237,238,173,239,240,16,239,16,55,241,232,59,241,59,92,242,241,92,231,228,84,240,233,16,243,244,122,243,122,152,245,246,119,245,119,135,247,248,136,247,136,169,246,249,119,250,251,168,234,252,152,234,152,90,244,253,122,254,255,118,253,256,123,253,123,122,257,258,145,256,259,169,256,169,123,260,261,262,248,135,136,263,237,173,263,173,85,238,264,115,238,115,173,265,254,118,265,118,117,264,235,56,264,56,115,255,242,92,255,92,118,258,266,155,258,155,145,252,243,152,259,247,169,249,257,145,249,145,119,251,265,117,251,117,168,267,268,269,270,271,272,273,274,275,276,277,278,236,239,55,229,263,85,279,280,281,282,283,284]),
+ name: "src/meshes/fox/fox.ply",
+ normals: new Float32Array([0.3475203,-0.1423119,-0.92681,0.5162422,0.12797521,-0.8468272,0.15832935,0.05530619,-0.98583627,-0.34248725,0.027904412,-0.9391081,-0.5169309,-0.31768712,-0.7948945,-0.48697895,-0.1626665,-0.85813236,0.979832,0.13666466,-0.14578043,0.9031805,0.21487509,-0.37160963,0.66321534,0.26724067,-0.6990907,0.6848186,0.23503296,-0.68977004,0.50283414,0.37262148,-0.779943,0.23640795,0.47815725,-0.84585875,0.3647613,0.40136182,-0.8401535,0.3046436,0.23757984,0.92236,0.31008115,0.576068,0.7563038,-0.22806334,0.32389933,0.91819185,0.17951295,-0.316014,-0.931617,-0.17395478,-0.060770363,-0.9828767,0.3371145,-0.028111659,-0.94104385,0.5286752,0.36182427,-0.76784486,0.37282482,0.34924614,-0.8596678,0.04436654,0.3120137,-0.9490411,0.1748497,-0.08175629,-0.981195,0.4760932,0.18387188,-0.8599573,0.77194935,-0.10489054,-0.6269707,0.8878576,0.018637033,-0.45974046,0.8233882,0.00536109,-0.5674533,0.50706327,0.2949509,-0.8098708,0.5776023,0.024086185,-0.8159629,0.20082258,0.4428197,-0.8738313,-0.3673268,-0.008583662,-0.9300523,-0.23037066,-0.14419852,-0.9623597,0.10130113,0.55220604,-0.82753044,-0.30028316,0.6138469,-0.7300836,-0.42857707,0.59847176,-0.67687017,0.2310956,0.77802414,-0.5841861,0.40507296,-0.59645694,-0.69293207,0.018303465,0.44150117,-0.8970739,0.77194935,-0.10489054,-0.6269707,0.6770759,-0.15234865,0.71997094,0.5551748,0.09818922,0.82591754,0.5862696,0.275684,-0.7617652,0.8878576,0.018637033,-0.45974046,0.77194935,-0.10489054,-0.6269707,0.3452935,0.52275664,0.7794215,-0.037781123,0.40868607,0.9118927,0.47639555,0.22756127,0.8492721,0.038687505,0.4890638,0.87138975,0.4779266,0.31795877,-0.8188335,0.9412043,0.3062575,0.14262189,0.985557,-0.050912835,-0.16150954,0.41709664,0.43660966,-0.79712135,0.65320575,0.7567542,-0.025403246,0.5102622,0.5121896,0.6908649,0.5327677,0.8339708,0.14370571,0.50982845,-0.2752561,-0.81505156,0.9362124,0.034893714,-0.34969804,0.49277383,0.474742,-0.729242,-0.10767815,0.15382154,0.98221403,0.53157943,-0.18795584,0.825891,0.3452935,0.52275664,0.7794215,0.73606163,0.6634644,-0.13426952,-0.17794462,0.9747583,-0.13484038,-0.38528097,0.9081675,0.1636775,0.03706524,0.8542405,0.51855505,0.90783143,0.11600388,0.40297043,0.8010637,0.5264299,0.2849009,0.6885465,0.57700217,-0.43928608,0.95855004,0.10577212,0.26456407,0.5862696,0.275684,-0.7617652,0.78829354,0.5408408,-0.2934015,0.21502984,0.04666299,-0.97549206,0.102968186,0.09595936,-0.9900452,-0.42321405,0.5065525,-0.7511954,-0.69715625,-0.08602459,-0.71173936,0.82457936,0.081235796,-0.5598835,0.4377959,0.26956058,-0.85771316,0.6155783,0.5745703,-0.5393813,0.07019434,0.24138543,0.9678872,0.3541473,0.25355586,0.9001605,-0.29064578,-0.724498,-0.62500215,0.375913,-0.73612595,-0.56285685,0.90783143,0.11600388,0.40297043,0.9031805,0.21487509,-0.37160963,0.5472127,-0.29103354,0.7847661,0.87695193,-0.2072897,0.4335738,0.8803676,0.14394727,0.45192042,0.15257555,0.7520019,-0.64125955,0.073696144,0.91218823,-0.40308988,0.48116767,0.69189876,-0.5382877,-0.38885155,-0.2292497,-0.8923223,-0.08802483,0.3184032,-0.94385976,-0.16566989,-0.31949857,0.9329921,0.4088575,0.88988423,-0.20234066,0.23401263,0.7841241,-0.5747935,0.9031805,0.21487509,-0.37160963,-0.30028316,0.6138469,-0.7300836,0.47639555,0.22756127,0.8492721,-0.13893181,0.08481444,0.98666334,0.3541473,0.25355586,0.9001605,-0.6594078,-0.34964943,-0.6655273,0.375913,-0.73612595,-0.56285685,-0.29064578,-0.724498,-0.62500215,0.7611686,0.58185023,-0.28648314,-0.04397583,0.70420456,-0.7086339,0.73606163,0.6634644,-0.13426952,0.6848186,0.23503296,-0.68977004,-0.38528097,0.9081675,0.1636775,0.90783143,0.11600388,0.40297043,0.9180944,0.3928391,0.052727237,0.6848186,0.23503296,-0.68977004,-0.75246775,0.008946161,-0.6585683,0.93610126,0.23180684,-0.26453748,-0.04397583,0.70420456,-0.7086339,-0.04397583,0.70420456,-0.7086339,0.92324126,0.38289523,0.03188642,-0.8208653,0.15153797,0.55065095,-0.6847748,0.31241915,0.6583902,-0.44955286,-0.170653,0.87680095,-0.69434595,0.69967836,-0.16832665,-0.64949834,0.59640735,-0.47164628,-0.72120667,0.6666094,-0.18839571,-0.44213012,-0.017088598,-0.8967881,-0.16689667,0.37004504,-0.9138995,-0.32365012,-0.16409263,-0.93183917,-0.81858766,0.5451293,-0.18096499,-0.992983,0.08945896,0.07734239,-0.21252948,0.5347677,0.81783545,-0.7021046,-0.14130145,0.6979133,-0.992983,0.08945896,0.07734239,-0.9546164,0.028929858,-0.2964296,-0.7311533,0.36524838,-0.5762018,-0.9617006,-0.03754102,-0.27151904,-0.9879483,0.08645398,-0.1283894,-0.78725094,-0.2752617,-0.5517852,-0.74839973,-0.49738073,-0.4387599,-0.6237263,0.711984,-0.32255915,0.9198568,0.38913035,-0.049406413,-0.44723478,0.13983466,0.883418,-0.6689012,-0.23592637,0.7049185,-0.8903412,-0.15419926,-0.42838684,-0.92482555,0.016368585,-0.3800392,-0.8165544,-0.1464694,-0.55837774,-0.87178856,-0.35990623,-0.3323434,-0.517776,0.4540006,-0.7251148,-0.8433312,0.09983585,0.52803904,-0.47634494,-0.05045076,-0.87780994,-0.7311533,0.36524838,-0.5762018,-0.6984636,-0.017294424,-0.71543664,-0.64312565,0.17802551,0.7447794,-0.66986597,-0.026210472,0.7420193,-0.90760005,0.06683492,0.41448176,-0.71550065,-0.2610496,-0.6480061,-0.48163462,-0.16273934,0.86112946,-0.9447443,-0.18422589,0.271144,-0.84864473,-0.16340141,0.5030924,-0.66986597,-0.026210472,0.7420193,-0.44133595,0.045067813,0.8962095,-0.84305483,-0.09319865,0.52969086,-0.96471584,-0.253683,0.070486,-0.90281165,-0.30579108,-0.30236223,-0.78725094,-0.2752617,-0.5517852,-0.747842,0.21194589,-0.6291353,-0.38904643,0.09032617,0.9167791,-0.8832008,-0.12243323,0.45273212,-0.38904643,0.09032617,0.9167791,-0.747842,0.21194589,-0.6291353,-0.4839415,-0.097555116,0.86964566,-0.84864473,-0.16340141,0.5030924,-0.05462312,0.1690641,-0.9840902,0.075866185,0.9794647,-0.18679745,0.02688641,0.9635681,-0.26610863,-0.9546164,0.028929858,-0.2964296,0.94705594,-0.2590572,-0.18966934,-0.21252948,0.5347677,0.81783545,-0.6675564,-0.59708816,-0.444808,0.075866185,0.9794647,-0.18679745,-0.23479536,0.67432845,-0.7001088,-0.23479536,0.67432845,-0.7001088,-0.47634494,-0.05045076,-0.87780994,-0.81858766,0.5451293,-0.18096499,-0.23479536,0.67432845,-0.7001088,-0.9879483,0.08645398,-0.1283894,-0.7311533,0.36524838,-0.5762018,0.07019434,0.24138543,0.9678872,-0.40643814,-0.8098558,-0.42301488,-0.19065972,-0.720445,-0.66678923,0.075374685,-0.7676886,-0.6363747,0.41129172,-0.60820895,-0.6789117,0.3633369,-0.6630077,-0.65452826,-0.52704555,-0.58184344,-0.6194199,-0.017521787,-0.99930537,0.032890607,-0.021521537,-0.94214505,-0.3345139,0.6121442,-0.6924734,-0.38178536,-0.70010203,-0.5537167,-0.45083794,-0.7312984,-0.6671969,-0.14160144,-0.70010203,-0.5537167,-0.45083794,-0.017521787,-0.99930537,0.032890607,0.3288468,-0.8804425,0.34158558,-0.1467376,-0.75445783,0.63973546,0.24385142,-0.7973807,0.55201495,-0.23899291,-0.84482497,0.4786994,-0.80877304,-0.50211614,0.3062115,-0.847515,-0.42922866,-0.3122198,0.5623081,-0.8260273,-0.03858204,0.04242061,-0.8742375,0.4836417,0.407,-0.7800877,0.47519907,-0.12836032,-0.80886763,0.57380897,0.16910498,-0.7943238,-0.5834837,0.12811182,-0.79456544,-0.59350926,0.40930107,-0.86440027,-0.29203552,0.48217154,-0.858188,-0.17613666,-0.57233065,-0.7097642,-0.41069746,0.22967121,-0.49633533,-0.83719915,-0.27430204,-0.8970687,0.34644783,-0.62714297,-0.48046845,0.6130593,0.5038301,-0.8556301,0.1185428,0.42636088,-0.8999785,-0.09085657,0.39348367,-0.810439,0.4340037,-0.38334632,-0.9040218,0.18918258,0.4810456,-0.8009131,0.35655776,-0.68955994,-0.7188539,0.0880689,-0.0558253,-0.9859457,0.15746342,-0.0028608302,-0.9999959,-0.000106975036,-0.011426341,-0.9991058,-0.04070532,-0.011439374,-0.9991109,-0.04057865,-0.58131546,-0.51583326,-0.6292762,-0.58025545,-0.63782334,0.5064435,0.39348367,-0.810439,0.4340037,0.4810456,-0.8009131,0.35655776,0.3288468,-0.8804425,0.34158558,0.24385142,-0.7973807,0.55201495,0.407,-0.7800877,0.47519907,0.075374685,-0.7676886,-0.6363747,-0.19065972,-0.720445,-0.66678923,0.48217154,-0.858188,-0.17613666,0.40930107,-0.86440027,-0.29203552,0.5623081,-0.8260273,-0.03858204,0.6121442,-0.6924734,-0.38178536,0.16910498,-0.7943238,-0.5834837,0.12811182,-0.79456544,-0.59350926,0.04242061,-0.8742375,0.4836417,-0.12836032,-0.80886763,0.57380897,-0.57233065,-0.7097642,-0.41069746,-0.021521537,-0.94214505,-0.3345139,-0.58131546,-0.51583326,-0.6292762,-0.847515,-0.42922866,-0.3122198,-0.52704555,-0.58184344,-0.6194199,-0.70010203,-0.5537167,-0.45083794,-0.80877304,-0.50211614,0.3062115,-0.38334632,-0.9040218,0.18918258,-0.68955994,-0.7188539,0.0880689,-0.40643814,-0.8098558,-0.42301488,0.22967121,-0.49633533,-0.83719915,-0.1467376,-0.75445783,0.63973546,-0.23899291,-0.84482497,0.4786994,0.3633369,-0.6630077,-0.65452826,-0.62714297,-0.48046845,0.6130593,-0.27430204,-0.8970687,0.34644783,0.41129172,-0.60820895,-0.6789117,-0.70010203,-0.5537167,-0.45083794,-0.7312984,-0.6671969,-0.14160144,-0.74839973,-0.49738073,-0.4387599,0.5038301,-0.8556301,0.1185428,0.42636088,-0.8999785,-0.09085657,-0.58025545,-0.63782334,0.5064435,-0.38334632,-0.9040218,0.18918258,-0.7312984,-0.6671969,-0.14160144,-0.017521787,-0.99930537,0.032890607,-0.74839973,-0.49738073,-0.4387599,-0.0028608302,-0.9999959,-0.000106975036,-0.011426341,-0.9991058,-0.04070532,-0.74839973,-0.49738073,-0.4387599,-0.017521787,-0.99930537,0.032890607,-0.0558253,-0.9859457,0.15746342,-0.74839973,-0.49738073,-0.4387599,-0.0558253,-0.9859457,0.15746342,-0.0028608302,-0.9999959,-0.000106975036,-0.74839973,-0.49738073,-0.4387599,-0.011439374,-0.9991109,-0.04057865,-0.58131546,-0.51583326,-0.6292762,-0.74839973,-0.49738073,-0.4387599,-0.011426341,-0.9991058,-0.04070532,-0.011439374,-0.9991109,-0.04057865,-0.74839973,-0.49738073,-0.4387599]),
+ positions: new Float32Array([-0.6999253,6.443001,-0.82603,0.07097474,5.343301,-0.52663046,-0.76262593,4.472701,-1.15393,-1.7783258,5.520501,-0.86433035,-2.2427258,6.713101,-0.82603,-1.5250261,4.4763007,-0.9856301,0.29497454,9.249201,0.16336976,0.06327439,8.8725,-0.28472978,-0.035225682,9.543601,0.14946976,-0.30342564,9.674201,-0.23032992,2.4808748,3.6319008,-0.11143037,2.0297747,3.2159004,-0.4459305,1.5565743,4.603301,-0.21123049,2.1004748,3.2381003,3.2929707,1.8371744,4.748301,2.81227,0.20437472,4.420901,2.9141703,1.8253747,0.4645001,-1.7956301,0.91437465,0.9539002,-2.1209302,2.4374743,1.0497,-1.8992304,2.5767748,2.7875004,-0.6003304,1.7599748,1.8992002,-1.1086301,1.5595742,2.5219004,-1.29143,0.24357454,3.5395007,-0.67183006,0.24817431,4.333201,-0.45933002,-0.3960259,7.7391005,-1.2657304,0.05687409,8.074501,-0.67993015,-0.12432557,6.748201,-0.34603044,-0.06132584,2.9543004,-0.8707303,-0.20062563,3.4773006,-0.68853,0.43317416,2.5253003,-0.46623006,-0.4904259,2.1981003,-0.90393,-1.0552258,3.1734004,-1.06763,1.4597749,1.4790002,-2.0267305,-1.8893259,8.729101,-1.7110304,-2.2624261,9.345001,-1.37473,-0.97242594,9.702102,-0.89533013,-1.2870256,7.527001,-2.5206306,-1.5926256,8.311801,-2.8306303,-0.3960259,7.7391005,-1.2657304,2.5549746,1.4319001,2.9302707,2.773675,2.7475002,3.0280704,-0.94812554,8.5809,-1.5055304,0.05687409,8.074501,-0.67993015,-0.3960259,7.7391005,-1.2657304,-0.40532535,9.700401,0.84696966,-1.540426,8.934701,1.6871705,-0.62042546,7.995201,1.7714701,-0.15842591,5.3485007,2.2917705,3.3480747,1.1927001,-1.4741304,0.23047411,6.9421005,0.8096703,0.17777406,7.816401,-0.13533022,-0.80692565,9.159501,-1.4650301,0.73637474,6.182101,0.90636986,0.16357423,6.238301,1.5856699,2.0266747,5.562201,1.4546701,3.4768748,0.57150006,-1.4508302,4.1452746,0.9685002,-0.7070302,2.576082,3.1560004,-0.31358007,0.7198746,2.4339004,3.54267,2.288975,1.3705001,3.4610705,-0.40532535,9.700401,0.84696966,0.14267427,10.748201,0.011170197,-0.35632557,10.885501,-0.026630403,-1.0288259,10.067701,0.053869635,-1.2105256,9.758201,0.87647027,0.09657441,8.901701,0.59447026,3.0635746,4.299401,1.8075701,2.5929751,4.772801,0.5979699,0.16167451,9.942601,0.37547,-0.94812554,8.5809,-1.5055304,0.47697452,6.306901,0.39987034,3.0665743,0.73340005,-1.42483,0.6858742,3.7022007,-0.62512976,0.044074252,1.8123003,-1.5475305,-0.053825382,1.2451001,-1.5953302,3.2380748,2.4352005,-0.08572999,0.5252747,5.1989007,-0.29223025,0.8465745,5.738801,0.27866977,-0.7709256,5.724101,2.2065706,-0.619426,6.356501,1.9183702,-1.9789258,7.178801,-1.18583,-0.91182566,7.3815007,-1.4608301,0.09657441,8.901701,0.59447026,0.06327439,8.8725,-0.28472978,3.0936747,0.6671002,2.4830706,4.0453753,0.52309996,1.4920702,3.6563747,2.4587002,2.1933703,0.5219742,1.8811003,-1.0851305,1.1984742,1.6896003,-1.65813,2.625175,1.7991003,-0.6557297,0.67027444,0.5334,-1.9347303,1.2843744,3.0958004,-0.5304299,0.77727437,1.2146001,3.4750705,3.4174747,1.7396003,-0.85813,2.3443742,1.5199003,-1.5742303,0.06327439,8.8725,-0.28472978,-1.8893259,8.729101,-1.7110304,-0.62042546,7.995201,1.7714701,-1.219426,6.696401,2.0643702,-0.619426,6.356501,1.9183702,-2.161226,7.667401,-2.4847305,-0.91182566,7.3815007,-1.4608301,-1.9789258,7.178801,-1.18583,3.1734743,1.5024002,0.15137026,-0.7888257,10.067701,-0.3484299,0.14267427,10.748201,0.011170197,-0.30342564,9.674201,-0.23032992,-1.0288259,10.067701,0.053869635,0.09657441,8.901701,0.59447026,3.387675,3.7165008,1.58967,-0.30342564,9.674201,-0.23032992,-2.2445261,4.9454007,-0.66073006,3.6162753,2.8629005,0.8747697,-0.7888257,10.067701,-0.3484299,-0.7888257,10.067701,-0.3484299,4.364375,1.0550001,0.5702698,-0.61192554,1.0255002,2.04657,-1.0520257,0.52869993,2.4247699,-0.0897255,0.5721001,2.6455705,-2.517626,0.78980017,0.25796968,-1.337726,0.8835,0.28996965,-1.4268259,0.95919997,-0.43353048,-0.44272542,1.0345002,-0.70443004,-1.0315259,1.0731,-0.7273301,-1.0638257,2.0252004,-0.7415303,-3.471126,10.565201,0.1122696,-3.4521263,9.519001,0.46967015,-2.878626,9.963901,0.81987005,-2.741226,7.508901,1.3471704,-3.4521263,9.519001,0.46967015,-3.433826,9.038601,0.28866962,-2.882526,9.084501,-0.10313035,-3.3896263,8.113201,-0.3605301,-3.3058262,8.5403,0.07176972,-2.7694259,7.7350006,-1.0115304,-2.230626,0.22640002,-0.41983035,-1.868326,0.75070006,-0.9546304,3.880675,1.3958001,1.1265702,-2.327826,8.2278,1.5766702,-2.5213258,6.882601,1.3467698,-1.4618257,2.4264002,-0.6133301,-1.2621258,1.7734003,0.17966996,-1.4422258,3.0290003,0.4318703,-1.9845258,3.6388009,0.69077003,-1.890426,1.0817002,0.44496998,-2.0575259,0.9955001,0.9599702,-2.964326,9.822501,-0.10223008,-2.882526,9.084501,-0.10313035,-3.092126,9.502201,0.2502701,-0.087125406,3.1274004,2.8989704,-0.8196259,2.3198001,1.7973703,-0.8748258,2.0967002,2.7634706,0.02887421,0.7540002,-1.4195303,-1.665426,1.8197002,1.62437,-2.1923258,3.5194008,1.3925699,-1.186226,0.55610013,1.5514703,-0.8196259,2.3198001,1.7973703,-0.029425815,2.1513002,3.4381702,-2.5888262,6.208601,0.9756699,-3.112326,7.3445005,0.3178696,-2.667426,4.758001,0.018969728,-2.7694259,7.7350006,-1.0115304,-2.392026,8.487902,-1.3364304,-0.8792256,4.817401,2.3403704,-2.6100261,4.707801,1.3596704,-0.8792256,4.817401,2.3403704,-2.392026,8.487902,-1.3364304,-1.8001261,4.085301,1.9035699,-1.186226,0.55610013,1.5514703,-1.569626,0.3742001,-1.4788301,-1.9930261,9.862201,-0.003130341,-3.0411263,10.770401,0.043869786,-3.433826,9.038601,0.28866962,4.2867746,0.52519995,0.41017002,-2.878626,9.963901,0.81987005,-1.9710261,3.9114006,0.01537018,-1.9930261,9.862201,-0.003130341,-2.2901258,9.714901,-0.21963045,-2.2901258,9.714901,-0.21963045,-2.964326,9.822501,-0.10223008,-3.471126,10.565201,0.1122696,-2.2901258,9.714901,-0.21963045,-3.3058262,8.5403,0.07176972,-2.882526,9.084501,-0.10313035,-0.7709256,5.724101,2.2065706,0.58418125,0.22400019,-1.7113466,0.7487328,0.22400019,-1.869269,1.2752382,0.22400019,-1.8116388,-1.4210848,0.22400019,-1.3924581,-1.2286401,0.22400019,-1.2118917,-1.7548681,0.22400019,-1.3470285,-2.2161448,0.22400019,-0.43305972,-0.5065232,0.22400019,-0.5854172,3.6921923,0.22400019,-0.5356896,-1.9521799,0.22400019,-1.126045,-2.2274122,0.22400019,-0.4297089,-1.9521799,0.22400019,-1.126045,-2.2161448,0.22400019,-0.43305972,2.2313638,0.22400019,2.680494,-0.6810555,0.22400019,2.4642336,2.4538667,0.22400019,2.5940027,0.41850665,0.22400019,2.7519977,-2.6425998,0.22400019,0.70022744,-2.7626433,0.22400019,0.07626649,4.1131854,0.22400019,0.46040884,1.955617,0.22400019,2.7750673,2.1960154,0.22400019,2.7574801,0.7445824,0.22400019,2.9373279,2.7569857,0.22400019,-1.5163606,2.100773,0.22400019,-1.6653436,3.4797022,0.22400019,-1.0087174,3.5642383,0.22400019,-0.8515244,-0.37594378,0.22400019,-0.7854573,-1.1313287,0.22400019,-1.2045778,-1.2935071,0.22400019,1.0919343,-2.5766528,0.22400019,0.8374413,4.0127363,0.22400019,0.9127198,3.5815594,0.22400019,-0.7074967,3.4810352,0.22400019,1.8996607,-1.11559,0.22400019,1.3025575,3.8143253,0.22400019,1.5762239,-1.0991356,0.22400019,2.0397234,-2.209373,0.22400019,-0.42154086,-2.1618967,0.22400019,-0.40970844,-2.1749234,0.22400019,-0.40605244,-2.1937947,0.22400019,-0.40073627,-2.2783449,0.22400019,-0.37692034,-1.0468484,0.22400019,2.382645,3.4810352,0.22400019,1.8996607,3.8143253,0.22400019,1.5762239,2.2313638,0.22400019,2.680494,2.4538667,0.22400019,2.5940027,2.1960154,0.22400019,2.7574801,1.2752382,0.22400019,-1.8116388,0.7487328,0.22400019,-1.869269,3.5642383,0.22400019,-0.8515244,3.4797022,0.22400019,-1.0087174,4.1131854,0.22400019,0.46040884,3.6921923,0.22400019,-0.5356896,2.7569857,0.22400019,-1.5163606,2.100773,0.22400019,-1.6653436,1.955617,0.22400019,2.7750673,0.7445824,0.22400019,2.9373279,-0.37594378,0.22400019,-0.7854573,-0.5065232,0.22400019,-0.5854172,-2.2783449,0.22400019,-0.37692034,-2.7626433,0.22400019,0.07626649,-1.7548681,0.22400019,-1.3470285,-1.9521799,0.22400019,-1.126045,-2.6425998,0.22400019,0.70022744,-1.11559,0.22400019,1.3025575,-1.0991356,0.22400019,2.0397234,0.58418125,0.22400019,-1.7113466,-1.1313287,0.22400019,-1.2045778,-0.6810555,0.22400019,2.4642336,0.41850665,0.22400019,2.7519977,-1.2286401,0.22400019,-1.2118917,-2.5766528,0.22400019,0.8374413,-1.2935071,0.22400019,1.0919343,-1.4210848,0.22400019,-1.3924581,-1.9521799,0.22400019,-1.126045,-2.2274122,0.22400019,-0.4297089,-2.230626,0.22640002,-0.41983035,4.0127363,0.22400019,0.9127198,3.5815594,0.22400019,-0.7074967,-1.0468484,0.22400019,2.382645,-1.11559,0.22400019,1.3025575,-2.2274122,0.22400019,-0.4297089,-2.2161448,0.22400019,-0.43305972,-2.230626,0.22640002,-0.41983035,-2.1618967,0.22400019,-0.40970844,-2.1749234,0.22400019,-0.40605244,-2.230626,0.22640002,-0.41983035,-2.2161448,0.22400019,-0.43305972,-2.209373,0.22400019,-0.42154086,-2.230626,0.22640002,-0.41983035,-2.209373,0.22400019,-0.42154086,-2.1618967,0.22400019,-0.40970844,-2.230626,0.22640002,-0.41983035,-2.1937947,0.22400019,-0.40073627,-2.2783449,0.22400019,-0.37692034,-2.230626,0.22640002,-0.41983035,-2.1749234,0.22400019,-0.40605244,-2.1937947,0.22400019,-0.40073627,-2.230626,0.22640002,-0.41983035]),
+ uvs: new Float32Array([0.21851481,0.38709354,0.25122124,0.29925498,0.33613995,0.31277353,0.31780326,0.41546077,0.26634175,0.49754715,0.36926088,0.35428312,0.8862014,0.7660378,0.96414614,0.65773886,0.9142767,0.82184976,0.96414614,0.8656495,0.24378048,0.15517116,0.27324826,0.1538348,0.24071635,0.21034758,0.12782207,0.13377228,0.13686845,0.17050092,0.097095504,0.18026535,0.3456612,0.015984222,0.38372317,0.05219409,0.3173124,0.03967564,0.2669188,0.12665303,0.3150151,0.10144508,0.312529,0.12937495,0.32927862,0.22344446,0.2904697,0.2528519,0.13747068,0.42125323,0.1110152,0.38961607,0.17645767,0.34971166,0.37940347,0.20685007,0.3529383,0.23464157,0.35064337,0.17517665,0.43924242,0.18647039,0.41530237,0.2674248,0.34998143,0.06725915,0.12322961,0.6801839,0.1720783,0.6964544,0.16144735,0.7933706,0.8861246,0.52512723,0.84557533,0.5134298,0.9878913,0.42880467,0.12832226,0.086800925,0.14096868,0.11748978,0.074313566,0.7435197,0.020883663,0.84153533,1.081579e-8,0.77996564,0.32931674,0.8416559,0.35599756,0.7471563,0.4352468,0.76457715,0.09890157,0.21372627,0.28071728,0.038383927,0.12732372,0.2965882,0.11473294,0.36185902,0.110673696,0.76611084,0.1568792,0.258202,0.11916661,0.24799357,0.1670033,0.20147358,0.27564877,0.017370421,0.24627076,0.033188876,0.25064924,0.13463129,0.09065693,0.12818988,0.11538713,0.09199737,0.8276462,0.8879465,0.8977165,0.9073449,0.8979689,0.9335955,0.24703515,0.8216678,0.30523577,0.7905776,0.8020745,0.7431329,0.17493051,0.15400115,0.20319703,0.1803566,0.89068747,0.8602873,0.8669603,0.42128757,0.1696568,0.2862294,0.29085746,0.022808408,0.30401754,0.21331184,0.4063384,0.124203816,0.4319168,0.09517003,0.24068871,0.10983848,0.2422915,0.26877972,0.19642983,0.2589539,0.084621415,0.22762483,0.08997824,0.2432744,0.21659407,0.49825695,0.16409814,0.4431432,0.06007273,0.3584054,0.077401064,0.3881148,0.13976377,0.06055675,0.1772671,0.045047924,0.1689892,0.10318307,0.36747235,0.13334484,0.35129,0.09048066,0.27406374,0.088201545,0.40481266,0.033736143,0.3024185,0.17043002,0.080950305,0.101946086,0.26399732,0.060749806,0.3123137,0.06264582,0.08229262,0.8732247,0.78262734,0.48695683,0.054573745,0.28939876,0.4784059,0.67288846,0.52534187,0.6902852,0.843693,0.54919225,0.967211,0.5381632,0.8863765,0.6507956,0.23814057,0.07682296,0.52430856,0.78790325,0.5076637,0.9781552,0.42495766,0.8044593,0.88358545,0.94791806,0.39027283,0.865766,0.18311635,0.13782379,0.15227878,0.86758876,0.37036988,0.41615537,0.20584682,0.11498356,0.935007,0.9301176,0.19761893,0.83779246,0.20950294,0.045586396,0.0322884,0.11481223,0.02451134,0.09802288,0.048454616,0.09665558,0.6460075,0.21836895,0.5963892,0.2274105,0.5771463,0.1884031,0.5055221,0.114784405,0.5447714,0.15467297,0.48357084,0.21026236,0.75558704,0.9432239,0.8020744,0.9034289,0.7897775,0.96688294,0.36300594,0.6462114,0.27383736,0.69182056,0.27248618,0.6792056,0.2478923,0.6867268,0.25436208,0.6271816,0.26854706,0.6570603,0.2133645,0.5806204,0.637635,0.17406993,0.60493344,0.1558058,0.19796096,0.06852602,0.35857934,0.69122976,0.3951752,0.6194137,0.48257515,0.25476277,0.5577472,0.2591085,0.5101766,0.3366432,0.50301826,0.39985734,0.6224612,0.2508355,0.65923995,0.27131322,0.7339221,0.92058545,0.667627,0.84930974,0.75460386,0.8875665,0.07549074,0.15373975,0.036297202,0.14856292,0.053295545,0.13493255,0.45089763,0.06624607,0.65852106,0.35673973,0.5478699,0.43424743,0.734133,0.3012958,0.69251174,0.422131,0.07396352,0.1281145,0.4061021,0.5678618,0.31435022,0.5997315,0.4114268,0.44731957,0.75763285,0.6744133,0.734765,0.56230044,0.5902533,0.5873184,0.48538992,0.4962032,0.07417127,0.20548928,0.16459617,0.6398786,0.5627961,0.49731115,0.010203981,0.1122183,0.61384606,0.11812159,0.7293909,0.98951745,0.753717,0.961225,0.8020744,0.78846765,0.20760685,0.029241929,0.27992412,0.7168905,0.45012152,0.3856737,0.2468168,0.7547342,0.23586477,0.728986,0.52842814,0.74081594,0.58254737,0.8386313,0.5380133,0.9808106,0.69757915,0.9635888,0.70988774,0.65773886,0.6677008,0.75300074,0.5507923,0.6433447,0.9718312,0.020504208,0.97220457,0.021100836,0.9716987,0.022655101,0.9721315,0.014245303,0.9714647,0.014712902,0.97220457,0.013208317,0.96973413,0.01123883,0.96911705,0.01649964,0.96632093,0.029152708,0.9716613,0.012472974,0.80359983,1.0238159,0.80359983,0.95338476,0.8044696,1.023133,0.95752156,0.022717984,0.96000504,0.01405433,0.95764303,0.02344461,0.95844465,0.017195703,0.9665674,0.0092362035,0.96852803,0.009265589,0.9630468,0.029798763,0.9574091,0.02182542,0.95731115,0.022562819,0.9576798,0.018064456,0.9698729,0.026945414,0.9707365,0.02505687,0.9678838,0.028808849,0.96735567,0.028965177,0.9696391,0.017020183,0.9713813,0.015002267,0.96453613,0.013066204,0.96611136,0.009349244,0.9617433,0.029211031,0.96690965,0.028926747,0.9590955,0.02698438,0.963788,0.013471412,0.95986325,0.028194623,0.96155035,0.013057904,0.9696951,0.011252033,0.9696294,0.011387991,0.96961904,0.011344941,0.9696118,0.01128404,0.969593,0.011013629,0.9604814,0.013000401,0.15420465,0.04102335,0.16792865,0.037144165,0.110636964,0.05624038,0.117879316,0.05280347,0.1069449,0.059347447,0.37604672,0.008110086,0.4070614,0.013023422,0.25538462,0.0031148791,0.2648711,8.450675e-9,0.20259783,0.019268692,0.23897217,0.0057812533,0.3031835,0.0016587148,0.3331248,0.0026185757,0.09809749,0.06282124,0.068156235,0.07761529,0.52157223,0.044851843,0.5435285,0.046751596,0.63853747,0.17621852,0.66334546,0.19258852,0.62489164,0.1247898,0.6287393,0.14086775,0.68118423,0.21481499,-3.3102134e-9,0.10996528,0.013690739,0.09781893,0.42186216,0.014245739,0.6017828,0.094806425,0.030619193,0.091465615,0.057839744,0.08235605,0.59865737,0.10087764,0.67908764,0.21657859,0.7325371,0.2680749,0.614245,0.10814548,0.43263742,0.92657316,0.43597075,0.8869815,0.43614823,0.88644433,0.18772343,0.02667462,0.24657853,0.0037103465,0.021488441,0.09233946,0.7439689,0.2791134,0.67494655,0.99038863,0.67444944,0.9913764,0.67444944,0.98951757,0.80714715,0.95338464,0.8076674,0.95454615,0.80714715,0.9599234,0.67331666,0.9900621,0.6744493,0.98951745,0.67444944,0.99153584,0.80814487,0.9553456,0.8076674,0.95992327,0.8076674,0.9533845,0.8044694,0.9616473,0.8044694,0.95338464,0.807147,0.9587995,0.67240256,0.98951757,0.6733167,0.9911193,0.67240256,0.9949199]),
+ vertexCount: 285
+});
diff --git a/src/meshes/gizmo.ply b/src/meshes/gizmo.ply
new file mode 100644
index 0000000..3b466cd
--- /dev/null
+++ b/src/meshes/gizmo.ply
@@ -0,0 +1,97 @@
+ply
+format ascii 1.0
+comment Created in Blender version 3.6.4
+element vertex 42
+property float x
+property float y
+property float z
+property float nx
+property float ny
+property float nz
+property uchar red
+property uchar green
+property uchar blue
+property uchar alpha
+property float s
+property float t
+element face 36
+property list uchar uint vertex_indices
+end_header
+0 0.05 -0.05 -0.057735033 0.5773503 -0.5773503 0 254 0 255 0.625 0
+1 -0.05 -0.05 0.057735033 -0.5773503 -0.5773503 0 254 0 255 0.375 0.25
+0 -0.05 -0.05 -0.057735033 -0.5773503 -0.5773503 0 254 0 255 0.375 0
+1 0.05 -0.05 0.057735033 0.5773503 -0.5773503 0 254 0 255 0.625 0.25
+1 -0.05 0.05 0.057735033 -0.5773503 0.5773503 0 254 0 255 0.375 0.5
+1 0.05 0.05 0.057735033 0.5773503 0.5773503 0 254 0 255 0.625 0.5
+0 -0.05 0.05 -0.057735033 -0.5773503 0.5773503 0 254 0 255 0.375 0.75
+0 0.05 0.05 -0.057735033 0.5773503 0.5773503 0 254 0 255 0.625 0.75
+0 -0.05 -0.05 -0.057735033 -0.5773503 -0.5773503 0 254 0 255 0.375 1
+0 -0.05 -0.05 -0.057735033 -0.5773503 -0.5773503 0 254 0 255 0.125 0.75
+1 -0.05 -0.05 0.057735033 -0.5773503 -0.5773503 0 254 0 255 0.125 0.5
+1 0.05 -0.05 0.057735033 0.5773503 -0.5773503 0 254 0 255 0.875 0.5
+0 0.05 -0.05 -0.057735033 0.5773503 -0.5773503 0 254 0 255 0.625 1
+0 0.05 -0.05 -0.057735033 0.5773503 -0.5773503 0 254 0 255 0.875 0.75
+-0.05 0.05 0 -0.5773503 0.5773503 -0.057735033 254 0 0 255 0.625 0
+0.05 -0.05 0 0.5773503 -0.5773503 -0.057735033 254 0 0 255 0.375 0.25
+-0.05 -0.05 0 -0.5773503 -0.5773503 -0.057735033 254 0 0 255 0.375 0
+0.05 0.05 0 0.5773503 0.5773503 -0.057735033 254 0 0 255 0.625 0.25
+0.05 -0.05 1 0.5773503 -0.5773503 0.057735033 254 0 0 255 0.375 0.5
+0.05 0.05 1 0.5773503 0.5773503 0.057735033 254 0 0 255 0.625 0.5
+-0.05 -0.05 1 -0.5773503 -0.5773503 0.057735033 254 0 0 255 0.375 0.75
+-0.05 0.05 1 -0.5773503 0.5773503 0.057735033 254 0 0 255 0.625 0.75
+-0.05 -0.05 0 -0.5773503 -0.5773503 -0.057735033 254 0 0 255 0.375 1
+-0.05 -0.05 0 -0.5773503 -0.5773503 -0.057735033 254 0 0 255 0.125 0.75
+0.05 -0.05 0 0.5773503 -0.5773503 -0.057735033 254 0 0 255 0.125 0.5
+0.05 0.05 0 0.5773503 0.5773503 -0.057735033 254 0 0 255 0.875 0.5
+-0.05 0.05 0 -0.5773503 0.5773503 -0.057735033 254 0 0 255 0.625 1
+-0.05 0.05 0 -0.5773503 0.5773503 -0.057735033 254 0 0 255 0.875 0.75
+-0.05 1 -0.05 -0.5773503 0.057735033 -0.5773503 0 0 254 255 0.625 0
+0.05 0 -0.05 0.5773503 -0.057735033 -0.5773503 0 0 254 255 0.375 0.25
+-0.05 0 -0.05 -0.5773503 -0.057735033 -0.5773503 0 0 254 255 0.375 0
+0.05 1 -0.05 0.5773503 0.057735033 -0.5773503 0 0 254 255 0.625 0.25
+0.05 0 0.05 0.5773503 -0.057735033 0.5773503 0 0 254 255 0.375 0.5
+0.05 1 0.05 0.5773503 0.057735033 0.5773503 0 0 254 255 0.625 0.5
+-0.05 0 0.05 -0.5773503 -0.057735033 0.5773503 0 0 254 255 0.375 0.75
+-0.05 1 0.05 -0.5773503 0.057735033 0.5773503 0 0 254 255 0.625 0.75
+-0.05 0 -0.05 -0.5773503 -0.057735033 -0.5773503 0 0 254 255 0.375 1
+-0.05 0 -0.05 -0.5773503 -0.057735033 -0.5773503 0 0 254 255 0.125 0.75
+0.05 0 -0.05 0.5773503 -0.057735033 -0.5773503 0 0 254 255 0.125 0.5
+0.05 1 -0.05 0.5773503 0.057735033 -0.5773503 0 0 254 255 0.875 0.5
+-0.05 1 -0.05 -0.5773503 0.057735033 -0.5773503 0 0 254 255 0.625 1
+-0.05 1 -0.05 -0.5773503 0.057735033 -0.5773503 0 0 254 255 0.875 0.75
+3 0 1 2
+3 3 4 1
+3 5 6 4
+3 7 8 6
+3 4 9 10
+3 11 7 5
+3 0 3 1
+3 3 5 4
+3 5 7 6
+3 7 12 8
+3 4 6 9
+3 11 13 7
+3 14 15 16
+3 17 18 15
+3 19 20 18
+3 21 22 20
+3 18 23 24
+3 25 21 19
+3 14 17 15
+3 17 19 18
+3 19 21 20
+3 21 26 22
+3 18 20 23
+3 25 27 21
+3 28 29 30
+3 31 32 29
+3 33 34 32
+3 35 36 34
+3 32 37 38
+3 39 35 33
+3 28 31 29
+3 31 33 32
+3 33 35 34
+3 35 40 36
+3 32 34 37
+3 39 41 35
diff --git a/src/meshes/gizmo.ts b/src/meshes/gizmo.ts
new file mode 100644
index 0000000..2d70cfc
--- /dev/null
+++ b/src/meshes/gizmo.ts
@@ -0,0 +1,12 @@
+import { Mesh } from "../renderer/mesh";
+
+// prettier-ignore
+export default new Mesh({
+ colors: new Uint8Array([0,254,0,255,0,254,0,255,0,254,0,255,0,254,0,255,0,254,0,255,0,254,0,255,0,254,0,255,0,254,0,255,0,254,0,255,0,254,0,255,0,254,0,255,0,254,0,255,0,254,0,255,0,254,0,255,254,0,0,255,254,0,0,255,254,0,0,255,254,0,0,255,254,0,0,255,254,0,0,255,254,0,0,255,254,0,0,255,254,0,0,255,254,0,0,255,254,0,0,255,254,0,0,255,254,0,0,255,254,0,0,255,0,0,254,255,0,0,254,255,0,0,254,255,0,0,254,255,0,0,254,255,0,0,254,255,0,0,254,255,0,0,254,255,0,0,254,255,0,0,254,255,0,0,254,255,0,0,254,255,0,0,254,255,0,0,254,255]),
+ faces: new Uint8Array([0,1,2,3,4,1,5,6,4,7,8,6,4,9,10,11,7,5,0,3,1,3,5,4,5,7,6,7,12,8,4,6,9,11,13,7,14,15,16,17,18,15,19,20,18,21,22,20,18,23,24,25,21,19,14,17,15,17,19,18,19,21,20,21,26,22,18,20,23,25,27,21,28,29,30,31,32,29,33,34,32,35,36,34,32,37,38,39,35,33,28,31,29,31,33,32,33,35,34,35,40,36,32,34,37,39,41,35]),
+ name: "src/meshes/gizmo.ply",
+ normals: new Float32Array([-0.057735033,0.5773503,-0.5773503,0.057735033,-0.5773503,-0.5773503,-0.057735033,-0.5773503,-0.5773503,0.057735033,0.5773503,-0.5773503,0.057735033,-0.5773503,0.5773503,0.057735033,0.5773503,0.5773503,-0.057735033,-0.5773503,0.5773503,-0.057735033,0.5773503,0.5773503,-0.057735033,-0.5773503,-0.5773503,-0.057735033,-0.5773503,-0.5773503,0.057735033,-0.5773503,-0.5773503,0.057735033,0.5773503,-0.5773503,-0.057735033,0.5773503,-0.5773503,-0.057735033,0.5773503,-0.5773503,-0.5773503,0.5773503,-0.057735033,0.5773503,-0.5773503,-0.057735033,-0.5773503,-0.5773503,-0.057735033,0.5773503,0.5773503,-0.057735033,0.5773503,-0.5773503,0.057735033,0.5773503,0.5773503,0.057735033,-0.5773503,-0.5773503,0.057735033,-0.5773503,0.5773503,0.057735033,-0.5773503,-0.5773503,-0.057735033,-0.5773503,-0.5773503,-0.057735033,0.5773503,-0.5773503,-0.057735033,0.5773503,0.5773503,-0.057735033,-0.5773503,0.5773503,-0.057735033,-0.5773503,0.5773503,-0.057735033,-0.5773503,0.057735033,-0.5773503,0.5773503,-0.057735033,-0.5773503,-0.5773503,-0.057735033,-0.5773503,0.5773503,0.057735033,-0.5773503,0.5773503,-0.057735033,0.5773503,0.5773503,0.057735033,0.5773503,-0.5773503,-0.057735033,0.5773503,-0.5773503,0.057735033,0.5773503,-0.5773503,-0.057735033,-0.5773503,-0.5773503,-0.057735033,-0.5773503,0.5773503,-0.057735033,-0.5773503,0.5773503,0.057735033,-0.5773503,-0.5773503,0.057735033,-0.5773503,-0.5773503,0.057735033,-0.5773503]),
+ positions: new Float32Array([0,0.05,-0.05,1,-0.05,-0.05,0,-0.05,-0.05,1,0.05,-0.05,1,-0.05,0.05,1,0.05,0.05,0,-0.05,0.05,0,0.05,0.05,0,-0.05,-0.05,0,-0.05,-0.05,1,-0.05,-0.05,1,0.05,-0.05,0,0.05,-0.05,0,0.05,-0.05,-0.05,0.05,0,0.05,-0.05,0,-0.05,-0.05,0,0.05,0.05,0,0.05,-0.05,1,0.05,0.05,1,-0.05,-0.05,1,-0.05,0.05,1,-0.05,-0.05,0,-0.05,-0.05,0,0.05,-0.05,0,0.05,0.05,0,-0.05,0.05,0,-0.05,0.05,0,-0.05,1,-0.05,0.05,0,-0.05,-0.05,0,-0.05,0.05,1,-0.05,0.05,0,0.05,0.05,1,0.05,-0.05,0,0.05,-0.05,1,0.05,-0.05,0,-0.05,-0.05,0,-0.05,0.05,0,-0.05,0.05,1,-0.05,-0.05,1,-0.05,-0.05,1,-0.05]),
+ uvs: new Float32Array([0.625,0,0.375,0.25,0.375,0,0.625,0.25,0.375,0.5,0.625,0.5,0.375,0.75,0.625,0.75,0.375,1,0.125,0.75,0.125,0.5,0.875,0.5,0.625,1,0.875,0.75,0.625,0,0.375,0.25,0.375,0,0.625,0.25,0.375,0.5,0.625,0.5,0.375,0.75,0.625,0.75,0.375,1,0.125,0.75,0.125,0.5,0.875,0.5,0.625,1,0.875,0.75,0.625,0,0.375,0.25,0.375,0,0.625,0.25,0.375,0.5,0.625,0.5,0.375,0.75,0.625,0.75,0.375,1,0.125,0.75,0.125,0.5,0.875,0.5,0.625,1,0.875,0.75]),
+ vertexCount: 42
+});
diff --git a/src/meshes/note-UP_is_y--FWD_is_x.txt b/src/meshes/note-UP_is_y--FWD_is_x.txt
new file mode 100644
index 0000000..e69de29
diff --git a/src/meshes/plane.ts b/src/meshes/plane.ts
index 4f1abf2..2de8861 100644
--- a/src/meshes/plane.ts
+++ b/src/meshes/plane.ts
@@ -1,28 +1,12 @@
-
import { Mesh } from "../renderer/mesh";
// prettier-ignore
-const positions = new Float32Array([1,-1,0,-1,1,0,-1,-1,0,1,1,0]);
-
-// prettier-ignore
-const colors = null;
-
-// prettier-ignore
-const uvs = new Float32Array([1,0,0,1,0,0,1,1]);
-
-
-// prettier-ignore
-const normals = null;
-
-// prettier-ignore
-const faces = new Uint32Array([0,1,2,0,3,1]);
-
export default new Mesh({
- colors,
- faces,
+ colors: null,
+ faces: new Uint8Array([0,1,2,0,3,1]),
name: "src/meshes/plane.ply",
- normals,
- positions,
- uvs,
+ normals: null,
+ positions: new Float32Array([1,-1,0,-1,1,0,-1,-1,0,1,1,0]),
+ uvs: new Float32Array([1,0,0,1,0,0,1,1]),
vertexCount: 4
});
diff --git a/src/meshes/teapot.ply b/src/meshes/teapot.ply
index 756d9c9..e29e265 100644
--- a/src/meshes/teapot.ply
+++ b/src/meshes/teapot.ply
@@ -1,2028 +1,2416 @@
ply
format ascii 1.0
comment Created in Blender version 3.6.4
-element vertex 686
+element vertex 823
property float x
property float y
property float z
+property float nx
+property float ny
+property float nz
property float s
property float t
-element face 1330
+element face 1578
property list uchar uint vertex_indices
end_header
-0.3173194 0.3333786 8.5697365 0.5130135 0.9198848
-0.4346243 -0.49552074 8.534368 0.5217891 0.85828614
-0.9198235 -0.10649914 8.46603 0.58114374 0.8746406
-0.69460624 0.52524734 8.511177 0.58527386 0.9281594
-0.97284055 0.4136325 8.389786 0.6222538 0.9077095
-1.0132805 -0.11324591 8.344206 0.59163153 0.86890244
-0.7736344 -0.57159126 8.38971 0.552618 0.84294724
-0.9758238 -0.10039134 8.188933 0.59104407 0.8699213
-0.94195294 0.414358 8.188992 0.62563014 0.9079919
-0.7588978 -0.54432714 8.18913 0.5540415 0.841756
-0.49902672 -0.07166117 7.6414285 0.5516901 0.8839597
-0.50669265 0.21589954 7.6385503 0.5668332 0.913114
-0.69673765 0.83600205 8.38971 0.63845086 0.9481697
-0.35126597 -0.8476943 8.389785 0.5143893 0.82650316
-0.6694722 0.82126665 8.18913 0.64400506 0.9493522
-0.23164886 0.982192 8.466029 0.5032841 0.97406995
-0.35198915 -0.8168068 8.188991 0.5152399 0.82476294
-0.37011656 -0.26150253 7.638832 0.52789915 0.8641659
-0.5069319 0.14772983 7.4535193 0.560285 0.9045825
-0.3866512 0.43248278 7.6388326 0.55687505 0.93820417
--0.5578883 -0.3094799 8.534368 0.43091312 0.86009645
-0.39927992 -0.20180121 7.4527583 0.53206015 0.86927867
-0.23839387 1.0756484 8.344206 0.50688475 0.9820157
--0.16887234 -0.79467624 8.46603 0.47324118 0.82889205
-0.60362357 -0.019366859 7.313401 0.57240975 0.880344
-0.5811307 0.29035118 7.3134084 0.5955016 0.91412896
-0.22553529 1.0381917 8.188932 0.49936882 0.98160875
--0.37184733 0.68303454 8.534368 0.38838595 0.9307757
--0.17561466 -0.88813454 8.344206 0.47342134 0.818861
-0.4734453 -0.28901318 7.3134036 0.5419219 0.85465
--0.16275844 -0.8506782 8.188933 0.47360563 0.8194256
-0.15353324 -0.38154563 7.63855 0.5009462 0.85286015
-1.198738 -0.14633353 7.1056128 0.6320224 0.8241051
-1.1576148 0.4868177 7.1055975 0.6957167 0.8717224
-0.2565811 0.60471696 7.727753 0.5244438 0.9552642
--0.28848737 1.0352092 8.389786 0.321421 0.95452094
-0.92881936 -0.69529 7.105553 0.5772139 0.7874715
-0.32694885 0.46164724 7.4527583 0.5419612 0.94312495
--0.6339587 -0.64848906 8.38971 0.43428594 0.82873905
-0.08536056 -0.3817857 7.45352 0.48963708 0.85210955
-0.4141602 0.53581345 7.313403 0.5909376 0.9488121
--0.28921315 1.0043199 8.188991 0.31289035 0.9535726
-0.22798373 -0.45598426 7.3134084 0.50808364 0.8386394
--0.6066965 -0.6337515 8.189131 0.43398276 0.8264038
--0.13403079 -0.37388057 7.641429 0.4672116 0.8490727
-2.7538369 -0.47784615 6.855464 0.68442667 0.69075227
-2.6645033 1.0011065 6.8552766 0.7677691 0.74190634
-0.82043344 0.9911856 7.105554 0.7797651 0.919399
-0.13346235 0.5647119 7.615177 0.47073036 0.95381856
--0.71085685 0.75910497 8.38971 0.3296314 0.91405547
-0.42445442 -1.03247 7.1055965 0.52456814 0.764805
-2.1208193 -1.7569087 6.855009 0.6112861 0.647773
-0.14451347 0.66599226 7.313401 0.47136694 0.9693712
--0.9100624 -0.22612211 8.389785 0.39690262 0.84757364
--0.022583503 0.56930006 7.4535193 0.4286443 0.94780624
--0.17598931 0.5413771 7.6360645 0.393127 0.93785214
--0.6961207 0.73184085 8.18913 0.32605162 0.91227955
--0.08173364 -0.4784776 7.313401 0.47129816 0.83305895
-3.3105688 -0.6107299 6.7219095 0.6915945 0.65503204
-3.2099237 1.1729777 6.721785 0.7756376 0.7061503
-0.27146533 1.2611125 7.1056128 0.9493108 0.9476329
--0.8791747 -0.22684313 8.188991 0.3959446 0.84520465
--0.3238697 -0.24497157 7.638832 0.43808037 0.85536253
-2.5387228 -2.1470783 6.721652 0.6164496 0.61160266
-3.5068655 -0.60725945 6.572071 0.6955771 0.64192766
-3.5817578 0.23275018 6.5618834 0.73241365 0.6636259
-1.8820512 2.1831918 6.85501 0.86089665 0.7841265
--0.8570466 0.29401478 8.466029 0.36793247 0.8823658
--0.2641706 -0.27413306 7.4527583 0.44432837 0.85408545
--0.20868984 -1.0735997 7.1056113 0.47024077 0.7573834
-0.93873763 -2.5393524 6.8552766 0.5411039 0.62103
-3.2108827 -1.4866515 6.5724206 0.6577283 0.61399305
--0.16520894 0.6434989 7.313408 0.35257414 0.9472293
--0.95050275 0.30076113 8.344206 0.35724416 0.8758726
-3.4251747 1.1554604 6.5717473 0.7746078 0.68852794
--0.41020927 0.43279728 7.724516 0.3733376 0.9145913
--0.91304624 0.2879027 8.188933 0.35807136 0.8755461
--0.35138005 -0.3483008 7.313403 0.43603545 0.83863723
-2.7134223 -2.2387066 6.572655 0.6199908 0.5952105
-2.2722223 2.6010914 6.7216535 0.86648875 0.74763167
-0.57838964 3.232884 6.7839127 0.9804292 0.7847217
-0.27146533 1.2611125 7.1056128 0.05800074 0.9470879
--0.36167288 1.2199802 7.1055984 0.1700483 0.9186431
--0.45191103 -0.00358756 7.6383915 0.40918443 0.8729354
-1.6036147 -2.998129 6.6701837 0.5642368 0.579605
-3.0742886 1.9522526 6.5674567 0.81633395 0.70794994
--0.75766027 -0.80367374 7.1055527 0.41838777 0.76619494
--0.5401944 -2.6286998 6.8554626 0.46870893 0.6141348
-2.0888412 -2.8002293 6.5673866 0.58635426 0.57979107
-2.4488332 2.7006938 6.5624285 0.86578345 0.7297765
--0.41066995 0.4765256 7.313403 0.34922224 0.9129243
--0.3365005 0.3893181 7.4527583 0.38138193 0.9140363
--0.41160053 0.29100296 7.6205225 0.38661256 0.9008091
--0.44415385 0.039785467 7.45352 0.40486693 0.8772048
-0.69117117 -3.1695483 6.7201076 0.5255224 0.58028775
-1.8696885 3.1343663 6.5751276 0.9041162 0.7425292
-1.1240903 3.3882115 6.6680064 0.94570374 0.7563357
--0.5183526 -0.10284078 7.3134084 0.40270334 0.8547409
-0.57838964 3.232884 6.7839127 0.014138669 0.784562
--0.8759619 2.7268612 6.8552785 0.08442734 0.79050976
--0.8660391 0.8828046 7.1055536 0.2515162 0.87192476
--0.6730901 -3.1854231 6.721909 0.4679464 0.57813275
-0.8811102 -3.3549297 6.5695343 0.53227085 0.56509775
--1.0948335 -0.2993084 7.1055975 0.36694822 0.7899612
--1.8192712 -1.995676 6.855009 0.39988467 0.6280756
--0.54084575 0.20688291 7.3134017 0.37145704 0.88099164
--0.19194114 -3.440414 6.572637 0.488151 0.5603074
-0.6793699 3.5807958 6.5659122 0.9749289 0.7515472
--1.0478399 3.2722905 6.7217855 0.07733683 0.75583076
--0.23563012 3.6250587 6.5726337 1 0.7518859
--2.058048 1.9444163 6.85501 0.1780229 0.7524028
--1.1359624 0.33383572 7.1056128 0.3113885 0.827473
--2.2094445 -2.4135787 6.721652 0.39620015 0.5933264
--1.1199048 -3.2616193 6.57264 0.45013458 0.5626584
--0.23563012 3.6250587 6.5726337 0.02590349 0.7502048
--2.601717 -0.8135826 6.855278 0.33165544 0.66004163
--1.2548609 3.4110599 6.5634727 0.08336244 0.7360534
--2.0500004 -2.7948868 6.5637937 0.4090929 0.57185626
--2.475946 2.3345895 6.7216535 0.16890922 0.7196524
--2.0788782 2.9596846 6.571581 0.13130634 0.7213562
--2.691062 0.66534126 6.8554645 0.25745046 0.7056582
--3.1471443 -0.9854685 6.721784 0.32541767 0.6267899
--2.6357317 -2.247982 6.573928 0.37749538 0.58520985
--2.63897 2.3919406 6.6172624 0.1695168 0.7052448
--3.1306086 -1.522142 6.5726523 0.34251413 0.6000702
--3.2477925 0.7982382 6.7219095 0.24910891 0.6733818
--3.0718286 1.8474529 6.571794 0.20017692 0.6860455
--3.413452 -0.74533796 6.5658684 0.31026167 0.6179733
--3.5159945 0.059388027 6.5718307 0.27798718 0.6378613
--3.4100876 0.9910958 6.574492 0.23958251 0.6624164
--4.730704 -0.86154985 4.941897 0.28464392 0.4864717
--4.349601 -0.5207203 5.8704295 0.28498235 0.55736434
--4.431518 -0.47427037 5.7001743 0.28115457 0.5477971
--4.544287 0.27175042 5.5340447 0.25570035 0.5514192
--4.515292 -0.18791197 5.5581765 0.2705213 0.5432856
--6.0064917 -0.26725486 5.555498 0.26806915 0.5302274
--5.974183 0.19864558 5.5146837 0.25634587 0.5351294
--6.012012 0.50790197 5.5816584 0.24925917 0.5426619
--6.550813 -0.48760614 5.679387 0.27259868 0.5282114
--5.2484293 0.09680519 3.7657053 0.24444605 0.4413668
--4.4538007 0.60822797 5.6591616 0.24575703 0.56613994
--4.7887526 0.7449787 4.8942394 0.23414335 0.51830506
--3.971134 -0.7134599 6.6173983 0.30268717 0.60578007
--6.0881467 0.67618674 5.706145 0.24627501 0.54972535
--4.281139 1.5959278 5.605165 0.21067178 0.574331
--4.9241576 1.4730728 4.175028 0.2076304 0.4881872
--4.3772764 0.7091898 5.81098 0.2438646 0.57847446
--5.2557173 -0.6386304 3.5125139 0.26293457 0.41529727
--4.5762753 -2.2242808 4.1880355 0.31854618 0.42177543
--4.056509 -1.9614571 5.593843 0.3294336 0.5032448
--6.9542165 -0.5174698 5.7965603 0.2723695 0.5323272
--4.7068014 2.1098776 4.175024 0.18816572 0.49985325
--5.255685 0.8265116 3.51245 0.22189446 0.44077185
--5.115945 -1.338603 3.5125136 0.28322378 0.40314728
--4.2860003 -0.41995412 6.0210557 0.28365842 0.5696856
--6.2920575 -0.4233016 5.9851403 0.27400708 0.54523134
--6.739088 -0.20704432 5.4430785 0.2642439 0.52296853
--6.757185 0.45542058 5.4665256 0.25022617 0.5320317
--4.2435946 2.9862344 4.1873975 0.1593124 0.5159724
--3.7614768 2.6614072 5.5901113 0.17086244 0.5971978
--3.8449485 -3.3171709 4.187343 0.35865298 0.40223253
--3.4095986 -2.932576 5.5886626 0.36771506 0.48477077
--3.586688 -1.7080476 6.694552 0.34112304 0.59049904
--6.4975467 0.7083442 5.8248315 0.24659455 0.5515303
--7.19817 0.6742263 5.519435 0.24588035 0.53279114
--4.305058 0.66851044 5.9728203 0.24699932 0.58816814
--3.96999 0.63667864 6.678227 0.2548594 0.6407019
--3.379538 3.9700978 4.187344 0.12066301 0.53475666
--2.994935 3.5347333 5.5886993 0.13061813 0.6171116
--3.7781985 1.4320339 6.6953306 0.2254057 0.66042745
--3.3161764 2.3631377 6.695235 0.18546042 0.68367624
--5.0724497 1.8809651 3.2418895 0.19035369 0.44470155
--5.436617 -0.07728625 2.4636514 0.23766378 0.3736579
--5.4069343 -0.39494467 2.332125 0.24596088 0.36147276
--4.8036203 -2.3392727 3.2419538 0.3112502 0.3721156
--2.861079 -4.181229 4.1874 0.3998853 0.38667402
--2.536268 -3.699107 5.590102 0.40648776 0.47049192
--3.0171854 -2.5670226 6.694106 0.37710464 0.5732688
--3.7049954 -0.95043725 6.8313518 0.31416214 0.61545026
--6.2546616 0.6104441 5.987863 0.24981065 0.56025493
--5.4033594 0.59700084 2.3087864 0.21801525 0.37797883
--5.2481666 -1.3797152 2.377088 0.27380627 0.34845197
--4.252325 -0.099223375 6.1451607 0.2743498 0.58408105
--3.956284 0.00023755585 6.7539997 0.2795482 0.62895304
--6.3227677 -0.11042072 6.10885 0.26718163 0.5543414
--7.1245694 -0.1845508 5.3228803 0.26248547 0.5156484
--7.0947223 0.19801868 5.306762 0.2544375 0.51999414
--7.174853 0.5064983 5.3518076 0.24837086 0.5254307
--7.5182743 0.7055142 5.573855 0.24616271 0.53391534
--2.286653 4.701417 4.188045 0.08102207 0.5495714
--2.0238216 4.1816473 5.5938654 0.08862658 0.63335013
--2.6384156 3.133416 6.695234 0.1437526 0.7048693
--4.454975 3.1285956 3.2412653 0.1525248 0.46621132
--5.250233 1.5595442 2.3770206 0.19328743 0.39823967
--5.016066 -2.0581434 2.377086 0.2941829 0.33673427
--4.035949 -3.4859674 3.2413816 0.3523931 0.35192838
--1.9847316 -4.644433 4.1750174 0.43191862 0.37803334
--1.48033 -4.218348 5.5979357 0.44650903 0.46116275
--2.4405496 -3.068894 6.729654 0.4043408 0.56586915
--5.0191436 2.2382622 2.3770227 0.17444819 0.40960068
--3.7470934 0.88844436 6.830117 0.24774413 0.6591667
--3.5256727 1.5801275 6.827864 0.21926193 0.67785656
--5.360387 -0.52368873 2.1185849 0.24717681 0.35058284
--4.701892 -2.6908948 2.3770838 0.31475133 0.32563043
--1.3479232 -4.861798 4.1750026 0.4540663 0.37416425
--1.8018217 -3.5090172 6.694245 0.43135697 0.55576897
--7.200964 0.609706 5.840724 0.24941503 0.5462295
--6.3285265 0.37226683 6.087644 0.25612414 0.5607166
--4.25417 0.37743765 6.1208873 0.25816396 0.5935229
--1.3476619 5.0493426 4.1751246 0.050283827 0.5576775
--0.8926558 4.5611806 5.6040473 0.044015072 0.64466846
--1.7815825 3.7057772 6.6953135 0.09908898 0.72281355
--3.548338 4.161096 3.2413821 0.11497244 0.4843169
--4.705932 2.8714378 2.3770392 0.15597351 0.42016393
--3.1936693 2.3020644 6.8124237 0.18731065 0.69494605
--5.346328 0.71555746 2.063215 0.21368273 0.36845344
--5.010006 -1.6751164 1.7790406 0.27828977 0.3130484
--4.3117332 -3.2718909 2.3770773 0.3356722 0.31524217
--3.0034537 -4.3925996 3.2412758 0.39518535 0.33556834
--0.6614745 -4.861669 4.587829 0.47720122 0.39825025
--3.3389218 -1.8052135 6.831704 0.3490256 0.5995908
--2.8393576 -2.49956 6.8336506 0.3802572 0.5843848
--7.701988 -0.5187389 5.405467 0.26847196 0.51288396
--7.367252 -0.46998867 5.3715563 0.2683577 0.51376116
--0.6737634 5.183913 4.175127 0.028906103 0.5612363
--4.31667 3.4529867 2.3770516 0.13770096 0.4298646
--5.119853 1.1243631 1.5908962 0.19671394 0.35345167
--5.903442 0.09866872 2.7168872 0.2370786 0.3967119
--5.8858705 -0.27557752 2.642396 0.24548845 0.38788235
--5.0957665 -0.5644824 1.4881663 0.24416023 0.31525728
--3.851685 -3.7950518 2.3770664 0.35708755 0.30569434
-0.031256422 -5.04252 4.1750975 0.5006035 0.3715247
-0.011662637 -3.9763088 6.6404853 0.4985274 0.54524106
--0.819132 -3.853918 6.688407 0.46821022 0.54922736
--7.312107 0.37113437 5.9253755 0.25474378 0.54580563
--7.300333 -0.009827633 5.119475 0.25747308 0.5090618
--7.367562 0.44728976 5.111066 0.24825433 0.5143125
--7.586666 0.67378813 5.127903 0.24393636 0.5164698
-0.031525277 5.2300315 4.1751146 0.006745183 0.56319314
-0.3496119 4.638354 5.6102314 0.008450594 0.649223
--0.7830427 4.044278 6.6954255 0.050416894 0.7358967
--2.4016495 4.9287653 3.241949 0.07677932 0.49832088
--3.8574228 3.9768324 2.377068 0.11949526 0.43863845
--2.6021001 2.9604928 6.8223453 0.15003483 0.7145771
--4.7469864 2.4944785 1.7789929 0.16068405 0.38497368
--5.252127 -0.38440123 1.7811959 0.24007717 0.33743805
--5.2223115 0.2085007 1.6619786 0.22259447 0.34067464
--4.6468096 -1.5506939 1.1972382 0.27037823 0.27944613
--4.3991623 -2.9073324 1.7792491 0.31981084 0.29058224
--3.3278384 -4.254301 2.3770509 0.37912178 0.29713255
--1.7558192 -5.0100827 3.241873 0.44038028 0.32420915
-0.7365425 -4.996398 4.1751213 0.5243146 0.37308502
-0.9554415 -4.373686 5.6039987 0.5318696 0.46083057
--7.746068 0.5081755 5.663058 0.25049984 0.53463733
--7.842549 0.70379484 5.12325 0.24431553 0.51584655
--8.019979 0.5683675 5.2090693 0.2472804 0.51718134
-0.7368014 5.1839046 4.175056 0.9844811 0.5633728
-0.031525277 5.2300315 4.1751146 1 0.56319314
-0.3496119 4.638354 5.6102314 0.99197483 0.6494522
--3.334263 4.4368796 2.3770814 0.10123867 0.44641507
--4.8758225 -0.16590808 1.1607132 0.22563857 0.301084
--2.7462924 -4.643561 2.3770385 0.40188268 0.2897215
-1.4104426 -4.861831 4.175107 0.5472815 0.37644538
--1.8565576 -3.291895 6.829735 0.42563075 0.57035005
--7.2763257 -0.3220995 5.8849096 0.26852047 0.5359441
--7.4144034 -0.31355634 5.09981 0.263421 0.5041579
--7.341536 -0.012963378 5.944661 0.2625745 0.54166716
-1.4107013 5.0493035 4.175035 0.962814 0.5618191
-1.5431004 4.4058485 5.5979724 0.94899464 0.64654464
-0.31550398 4.114251 6.6955013 0.010972952 0.7414839
--1.0648859 5.3834357 3.2426853 0.037107322 0.5074313
--2.753266 4.827038 2.3770866 0.08282236 0.45311695
--1.9496351 3.403922 6.828042 0.11480032 0.7302347
--3.9892373 3.6279087 1.7792077 0.124822065 0.40396053
--3.534902 1.3419379 6.7536054 0.22795789 0.6712179
--3.1034727 2.213788 6.753592 0.18806413 0.6945492
--4.4050016 2.3193011 1.1972897 0.15476128 0.35073918
--4.768838 1.1694709 1.1613004 0.18683645 0.3258141
--3.7303765 0.36352766 6.7753444 0.2670692 0.6476468
--6.4756627 0.29410294 3.156839 0.23768584 0.42655855
--6.6369 -0.09990094 3.3072042 0.24732496 0.42923182
--6.2025986 -0.470372 2.7201223 0.2513246 0.3941782
--5.7300205 -0.5029038 2.1332479 0.24699345 0.3647126
--4.0792565 -2.6941519 1.1974577 0.31205833 0.25660333
--3.5027647 -3.9268675 1.7792103 0.36353832 0.27104187
--2.1131122 -4.956774 2.3770192 0.42546284 0.28364503
--0.34353554 -5.2910557 3.243316 0.48857814 0.31930292
-2.3494358 -4.513902 4.188034 0.58037746 0.38458973
-2.0866013 -3.9941409 5.5938454 0.57323647 0.47017878
-0.8458194 -3.8567634 6.695423 0.52795506 0.5532292
--7.831824 0.19886562 5.705507 0.25658727 0.53219366
--8.094867 0.2955673 5.3307548 0.25265223 0.51852256
-2.0475075 4.831946 4.175031 0.94164366 0.5586555
--2.12051 5.1412153 2.3770878 0.064138554 0.45866
--1.2157704 3.7652235 6.8247223 0.07560094 0.7424201
--6.1934395 0.5100337 2.8293028 0.2287847 0.412081
--5.4246874 0.36932442 2.4164786 0.2252812 0.38013548
--5.932614 -0.14036371 2.0343564 0.237499 0.3639056
--1.4343928 -5.187864 2.3770118 0.4499393 0.27911296
--0.6543521 -3.7040982 6.834261 0.4727381 0.5608466
--7.685257 -0.42229876 5.6169567 0.26802626 0.52248174
--7.347461 -0.008614036 4.8715043 0.2559492 0.49901754
--7.3810925 0.377184 4.744323 0.24765734 0.4988456
-2.9238608 4.368738 4.1874127 0.910648 0.5509713
-2.599037 3.8866217 5.5901165 0.9039712 0.6368661
-0.31550398 4.114251 6.6955013 0.99177855 0.7418896
-1.3696648 3.9033444 6.6953316 0.9445268 0.7391354
-0.4063109 5.478569 3.2433312 0.0058846734 0.5107175
--1.4420887 5.3733134 2.3770819 0.045073416 0.46295327
--2.969696 4.5243163 1.7792546 0.089141905 0.41903478
--2.6308517 2.7743998 6.7802687 0.15707599 0.7121016
--3.7023778 3.3718052 1.1974682 0.119970635 0.36917055
--3.6680453 -0.6744328 6.753139 0.30608022 0.6226108
--6.314681 0.37202823 2.2773352 0.22846006 0.38857847
--6.159253 0.65871054 2.3440857 0.22233938 0.3925001
--5.2512546 0.5622446 1.7798784 0.21354789 0.35497448
--6.717674 0.68150586 3.0420375 0.22825976 0.4302618
--6.684208 -0.39921018 3.2172334 0.25367334 0.42289954
--4.0868173 -0.192652 0.4751745 0.21533352 0.25173414
--3.8717358 -1.2729477 0.4751809 0.25441208 0.22724009
--3.246659 -3.640007 1.1974671 0.35662487 0.23639931
--2.3693287 -4.68462 1.7789958 0.41050792 0.25573406
--0.71620446 -5.330765 2.3770237 0.47537002 0.27636734
-1.1276636 -5.1959224 3.24267 0.53835475 0.32231665
-3.4423199 -3.7825778 4.187342 0.6230136 0.3999052
-3.0577242 -3.3472278 5.5886636 0.6132673 0.4848028
-1.8443594 -3.5182643 6.6953096 0.56592655 0.56214267
--3.3633852 -1.6067684 6.7742524 0.34224516 0.6024473
--7.8042846 -0.18544722 5.6870413 0.26374185 0.5272366
-0.4063109 5.478569 3.2433312 0.9922643 0.5107441
--0.72409046 5.5172434 2.3770707 0.025501903 0.4659015
--0.20039962 3.9575915 6.8247266 0.023741495 0.7523519
--2.088375 3.2287989 6.7536 0.124242544 0.7255496
--3.8722596 1.4589622 0.4751937 0.16061805 0.28683957
--4.051824 0.64860255 0.47571108 0.1872019 0.2699982
--6.8648367 0.70852804 3.0078607 0.22820812 0.43035787
--7.046276 -0.520934 3.3223233 0.25663978 0.42851302
--7.0870767 -0.49296743 3.1119637 0.2546264 0.4211613
--6.602185 -0.37153652 2.5548275 0.24792275 0.39440238
-0.035404194 -5.3794003 2.377041 0.5017849 0.2756912
-0.29871577 -3.743172 6.8321533 0.508569 0.5649978
--7.5974884 -0.48682934 5.0446377 0.26613542 0.5001962
--8.030417 -0.20051181 5.426653 0.26213217 0.5167769
--7.4448137 0.60520554 4.411285 0.24071859 0.48803627
--7.5999126 0.71828 4.102902 0.23722394 0.47757038
--7.9099193 0.6069816 4.24128 0.24043372 0.4823474
--8.092233 0.3703162 4.4733057 0.24633712 0.4881283
--8.168957 0.17194043 4.822119 0.25210133 0.49871373
-3.9077268 3.5046847 4.1873484 0.8701271 0.53633034
-3.472368 3.1200871 5.588685 0.86064655 0.6215639
-2.3007684 3.4413216 6.6952367 0.8948408 0.7288636
-1.8185909 5.1976027 3.2418675 0.95402485 0.5076542
-0.027373014 5.566918 2.37704 0.0052853553 0.4674071
--1.7374868 5.135153 1.7790415 0.052798085 0.42963132
--2.756525 4.204398 1.1974552 0.08550118 0.3836488
--3.5780842 1.404164 6.5562587 0.22329965 0.65884614
--2.8333483 2.7082171 6.556407 0.16140229 0.6930944
--3.7940054 0.371256 6.556247 0.26411742 0.63358617
--3.3993247 -2.227243 0.4751969 0.29573697 0.20379181
--2.1941495 -4.3426347 1.1972888 0.40533763 0.22028199
--1.0482578 -5.1330214 1.778742 0.46140826 0.24633451
-0.78686714 -5.329726 2.3770711 0.5282129 0.277283
-2.4644177 -4.7412496 3.2419624 0.58522785 0.33254033
-4.306375 -2.7987163 4.1873918 0.664364 0.41957307
-3.8242598 -2.4738975 5.590093 0.65271306 0.50385976
-2.7011974 -2.9458964 6.695234 0.6030338 0.5760627
-0.77898186 5.518282 2.3770227 0.9850117 0.46737605
-0.027373014 5.566918 2.37704 1 0.4674071
--0.20039962 3.9575915 6.8247266 1 0.7548339
-0.8531174 3.8797479 6.8247237 0.9689623 0.7538595
--0.74499977 3.791392 6.7858686 0.053079598 0.74916697
--1.4417481 3.566486 6.7536907 0.08941819 0.7382798
--3.400405 2.4131637 0.47520807 0.12735724 0.30603665
--6.923593 0.60747963 3.4389355 0.23328477 0.44659027
--6.6953583 -0.013274428 2.5051777 0.23990135 0.3978003
-1.5048629 -5.1857967 2.3770826 0.55368125 0.28091577
-1.2785492 -3.5777092 6.82472 0.54532224 0.56910527
--1.2664151 -3.4705017 6.7800164 0.4484285 0.56550455
--2.8481781 -2.4062736 6.75612 0.377361 0.58471334
--2.1361177 -3.0412354 6.7564607 0.4124903 0.57208216
--8.126128 -0.18313502 5.0961356 0.26004678 0.5048106
--7.344837 -0.24456674 4.456033 0.25816453 0.47931442
--7.2117953 -0.008970504 4.2507915 0.25196767 0.47361618
-4.6390495 2.4117992 4.1880417 0.82999194 0.5171074
-4.119274 2.1489663 5.593877 0.8184418 0.6016948
-3.0710456 2.7635624 6.695235 0.8480723 0.71267325
-3.066226 4.580123 3.2412648 0.91437626 0.49865025
-1.4971681 5.375383 2.3770146 0.9652791 0.46581846
--0.34254044 5.4136314 1.7785238 0.014920957 0.4351397
--1.6130615 4.771958 1.1972396 0.050511353 0.39369583
--1.6573169 3.5457325 6.556233 0.09699449 0.72082126
--3.6192412 -1.269777 6.556458 0.3253156 0.5958716
--7.013715 0.36999366 2.7914958 0.2342488 0.41791308
--7.238237 0.60780025 3.1472998 0.23233967 0.43768787
--7.0722775 0.36817148 3.878109 0.2417015 0.4628297
--7.0563846 -0.3823268 3.7118723 0.25608715 0.4461575
--7.249857 -0.32068634 3.085015 0.25090727 0.42321837
--2.7058933 -3.0168705 0.47520605 0.34132147 0.18236053
--0.96771836 -4.7579217 1.1970073 0.45899224 0.21018139
-0.4053214 -5.226116 1.7785263 0.51620805 0.2449415
-2.1832895 -4.953697 2.3770845 0.57821965 0.28630847
-3.611114 -3.9735818 3.241378 0.6295434 0.34836558
-4.900875 -1.9813905 3.7656164 0.6986259 0.4139017
-4.3434877 -1.4179593 5.5979514 0.6924484 0.5265296
-3.378955 -2.1756198 6.6952353 0.6400835 0.59438854
--0.5045018 -3.635692 6.753706 0.47775102 0.56172615
--7.4469895 -0.41718417 4.420278 0.26123652 0.47624022
--8.028167 -0.08392716 4.1285315 0.25196254 0.46908635
--8.090689 -0.18284929 4.465577 0.2564879 0.48179382
-2.1758907 5.144292 2.3770273 0.94596356 0.46280584
-2.00482 3.4299693 6.832451 0.9056911 0.74452984
-0.04425714 3.8563523 6.7803407 0.011648702 0.7546241
--2.7074025 3.2030592 0.47520375 0.09504482 0.3214411
--2.5726264 -2.8716905 6.556129 0.3948876 0.56230557
--4.025156 -0.21047442 0.28335992 0.21322796 0.24270606
--3.8078282 -1.2731591 0.2834088 0.25202188 0.2182599
-2.816042 -4.6395216 2.3770845 0.6018889 0.2932198
-4.992367 -1.2846601 4.1606407 0.71569586 0.4478733
-2.0124123 -3.2164075 6.82804 0.57573783 0.5785021
-0.29789388 -3.668307 6.7528677 0.50834394 0.562658
--7.949939 -0.46532854 5.0585604 0.26506776 0.50088143
--7.8970437 0.36936703 3.8938644 0.24278924 0.4662631
-4.667706 1.3815396 5.037746 0.79168963 0.554464
-3.6434104 1.906729 6.6953106 0.803711 0.6920006
-4.098726 3.673484 3.2413895 0.87550515 0.48441458
-2.809069 4.8310785 2.377043 0.92695457 0.45841175
-1.1110369 5.320537 1.7787428 0.9759161 0.43499935
--0.34254044 5.4136314 1.7785238 1 0.43584436
-0.04425714 3.8563523 6.7803407 1 0.7546241
-0.56071013 3.820888 6.780335 0.98398024 0.75550973
--0.31851503 5.0310044 1.1968436 0.01413902 0.39880005
-2.6458645 2.9585094 6.556356 0.868809 0.7172815
-0.88556135 3.8675795 6.55643 0.9653001 0.7377642
--1.6573169 3.5457325 6.556233 1 0.7240665
--3.9590328 0.898784 0.28337845 0.17623064 0.26678324
--7.3148484 -0.012829382 3.0350292 0.24434593 0.425496
--1.8290501 -3.6038957 0.4752029 0.39319336 0.16462019
-0.3812963 -4.8434844 1.1968379 0.51726466 0.20852074
-1.8002667 -4.947635 1.779039 0.56916356 0.25230134
-3.3970406 -4.2493625 2.3770742 0.6247703 0.30143803
-4.517753 -2.9410813 3.241257 0.6719923 0.36845642
-4.792674 -0.56844103 5.037682 0.72788703 0.515442
-3.840976 -1.2445179 6.6953306 0.6780026 0.61651725
-2.6648738 -2.7729814 6.822344 0.60504115 0.5900477
-1.2915494 -3.4710155 6.7790594 0.5469693 0.57037175
--1.2361106 -3.541482 6.564154 0.4497681 0.55080956
--7.628632 -0.5208629 4.342767 0.26254386 0.4725662
--7.879861 -0.4778739 4.3912725 0.26130295 0.47535282
-3.3906176 4.4418178 2.3770528 0.9081522 0.45271018
-1.2823496 3.6588292 6.77232 0.94439054 0.7519003
--1.8306533 3.7906063 0.4751903 0.062776744 0.33274406
-3.4833674 1.7824525 6.556236 0.8024688 0.6887559
-3.8516362 -0.21831024 6.556236 0.71680963 0.638291
--0.65172243 3.8495312 6.5640235 1 0.73574334
--0.65172243 3.8495312 6.5640235 0.046413425 0.73597884
--3.621578 1.9081422 0.28341877 0.14240545 0.28766018
--3.3375154 -2.2108119 0.2834436 0.29325184 0.19474868
-3.9201987 -3.7893152 2.3770666 0.64696115 0.31077474
--7.7622733 -0.01176587 3.5889034 0.24813175 0.44989252
-5.1114855 1.5272183 3.731053 0.8033589 0.47525275
-3.9819095 0.9081907 6.695424 0.7607902 0.6680474
-4.8663964 2.5267985 3.2419434 0.836696 0.46560705
-3.9144619 3.9825702 2.3770678 0.8894618 0.44577354
-2.8981256 2.727245 6.8223453 0.85052013 0.72661227
-2.4321156 4.872134 1.7789999 0.9384965 0.42915654
-1.0305097 4.94544 1.1970135 0.97672856 0.39852363
--0.31851503 5.0310044 1.1968436 1 0.39942795
-3.7871618 0.7768693 6.5640225 0.7574405 0.66551316
-2.151423 3.2286174 6.7535925 0.89383173 0.74101996
-0.88556135 3.8675795 6.55643 0.011154608 0.73886675
-1.2109123 -3.5427477 6.5585585 0.5440886 0.55540556
-0.030377537 -3.7481942 6.556368 0.49831235 0.54786146
--7.5394063 0.36914256 3.3318565 0.23886186 0.44325644
--7.7099285 -0.38731572 3.7365253 0.2554974 0.45171374
--0.8070288 -3.9515762 0.4751778 0.45275858 0.15303537
-1.6758456 -4.5844383 1.1972371 0.5733626 0.21616451
-3.0324783 -4.3367934 1.7792495 0.6180971 0.26645094
-4.3794475 -3.2654703 2.3770523 0.6685742 0.32105863
-5.236874 -0.6392787 3.7783449 0.7394554 0.43875772
-4.0518813 -0.1903576 6.6955 0.71812326 0.6417457
-3.3676007 -1.8796743 6.8324494 0.64740777 0.6122155
-4.921234 0.76358765 4.746632 0.7735597 0.5233191
-4.374509 3.459411 2.3770778 0.87078696 0.4376698
--0.80837876 4.1388216 0.47517642 0.029751394 0.33957282
--3.0476236 2.775321 0.2834471 0.110194296 0.30487964
-3.7290246 0.87014186 6.785868 0.7591016 0.68206155
-3.504117 1.5668962 6.75369 0.79072416 0.698256
-3.1664298 2.2135217 6.753599 0.82384145 0.7148347
-2.7120318 2.755998 6.7802687 0.8575531 0.7304795
-3.4622812 -1.7084004 6.5564127 0.65675634 0.60153115
--3.5008435 -0.6699893 0.13198212 0.22462386 0.20846418
--2.6501765 -2.9852502 0.28344595 0.33912283 0.17315191
-4.76871 -2.6839197 2.377037 0.68973815 0.33213538
-5.2927423 -1.2423507 3.0185995 0.72964406 0.38926312
-4.9627104 0.06955906 4.750888 0.75212336 0.51039696
-2.1511536 -3.0412834 6.7535977 0.583444 0.580559
-4.7646704 2.87841 2.3770845 0.8520217 0.4284638
-3.3415554 2.0747788 6.8280416 0.8142802 0.7111209
-3.5655434 4.1143823 1.7792106 0.9019402 0.41805565
-2.2569351 4.530146 1.1972893 0.9408077 0.3928109
-3.7585196 -0.43556315 6.7803335 0.7053113 0.6480297
-3.7939835 0.08088671 6.7803392 0.7262233 0.66132563
-2.3425848 -2.9970698 6.556362 0.5916475 0.5689258
-0.3178027 -4.024448 0.4751742 0.5190917 0.15078324
-2.8193026 -4.016883 1.1974564 0.6244662 0.23087302
-4.052013 -3.440397 1.7792099 0.6635175 0.2854808
-5.0819216 -2.0507438 2.377021 0.7105987 0.34386867
-2.6936302 -2.5868845 6.7802677 0.61060345 0.59317833
-5.285567 1.4042546 3.093043 0.804546 0.44055903
-5.0788436 2.2456608 2.3770828 0.833041 0.41821745
-3.702855 1.3409172 6.824722 0.7786581 0.6917183
-0.020473175 4.2125535 0.47571662 0.004252717 0.3416968
--2.2731817 3.4626627 0.28344473 0.07839418 0.31816578
-3.5964599 -1.1572055 6.7723184 0.67608464 0.6290335
-3.1662495 -2.0262752 6.753591 0.6384618 0.6063454
--3.3948684 1.2518055 0.132026 0.1536803 0.25443566
--2.7330964 -2.3770037 0.14949782 0.30864602 0.16505495
--1.7829934 -3.5592084 0.28341725 0.391684 0.15519494
-5.3429136 -1.2053245 2.5984461 0.7340543 0.37023962
-5.234566 -0.9998197 3.517517 0.7319386 0.41817933
-5.2317896 -0.14782351 3.9187021 0.75303197 0.45468277
-3.817382 -0.7279616 6.824723 0.69445324 0.64012146
-5.23198 0.7170731 3.8378177 0.77908087 0.46549228
-5.2374287 1.2228642 3.4744844 0.79626656 0.45541567
-4.461943 3.0948472 1.7792519 0.8654965 0.4021955
-3.3094323 3.8275242 1.197465 0.9056376 0.3820153
-0.86980563 4.1390944 0.47517905 0.97806096 0.34068596
-0.020473175 4.2125535 0.47571662 1 0.3416968
-1.3980982 -3.809365 0.47518066 0.5823958 0.15903464
-3.7651544 -3.184287 1.1974654 0.67106485 0.25044128
-4.8097653 -2.3069603 1.7789931 0.7063438 0.30785483
-3.8952193 0.32555953 6.8247256 0.7360157 0.66639125
-5.304023 1.5456657 2.294942 0.81432575 0.40297848
--1.3355259 3.932978 0.28341034 0.046318103 0.3272149
--2.4393737 2.858245 0.14949907 0.0916705 0.29149556
--2.1378677 -1.8630359 0.062231947 0.2863888 0.13205566
--0.7736363 -3.8966615 0.283377 0.4527353 0.1434733
-5.365675 -1.0353161 2.2656987 0.74100137 0.3587609
-5.980071 -0.95416343 3.7473016 0.7338084 0.44182512
-5.8726006 -0.47322437 4.0314875 0.7437084 0.46124923
-5.6534486 0.5390246 4.004417 0.7709421 0.47320032
-5.9734955 1.1424643 3.743597 0.7870091 0.47345734
-5.320845 1.4251025 2.715455 0.80696774 0.42082763
-5.362547 1.2023716 2.236414 0.8045546 0.39467335
-5.1053176 1.8224366 1.8128697 0.82727057 0.3819661
-4.1420302 2.8816752 1.1974589 0.8704606 0.36655763
-1.8918276 3.7914135 0.4752043 0.94478977 0.3351723
--2.490558 0.21160704 0.037366636 0.16632336 0.18295112
-2.3523912 -3.3369524 0.4751951 0.63797927 0.17492375
-4.46778 -2.131785 1.1972903 0.7142772 0.2731492
-5.1768384 -1.3231857 1.7953123 0.73717165 0.32669032
-6.533757 -1.0639676 3.6835604 0.7331228 0.44125232
-6.638696 1.200992 3.8430643 0.78412217 0.48296824
--0.2728472 4.1503034 0.28336054 0.013105107 0.33166564
--1.9254082 2.263013 0.062232867 0.0850115 0.25460055
--1.1266558 -3.3324995 0.132025 0.41676068 0.12536348
-0.33562735 -3.9627848 0.28335863 0.5210398 0.1413637
-5.3656826 -0.552829 1.9139667 0.75902903 0.34773517
-5.952957 -1.1935283 2.9967444 0.73352563 0.40064338
-6.116315 0.0951385 4.2783213 0.75607884 0.48527357
-6.1461897 0.6248089 4.2172513 0.7698728 0.49004295
-5.3687925 0.831689 1.9620869 0.7974898 0.37389576
-4.709585 1.7382131 1.1972369 0.8344185 0.34684342
-2.7686727 3.2043874 0.4752079 0.91211915 0.3249089
-0.23503682 -1.071256 -0.0003161478 0.089365445 0.059318684
-3.1420164 -2.643525 0.47520587 0.6865314 0.19556446
-4.831614 -0.98195803 1.1612992 0.75341636 0.2906637
-5.186922 -0.22539668 1.4699719 0.77362293 0.3284449
-6.454007 1.2974428 3.3594618 0.7907253 0.45771837
-5.129014 0.80249345 1.4593781 0.8027427 0.34600335
-0.83641624 4.0841804 0.28337893 0.97897816 0.33123446
--0.2728472 4.1503034 0.28336054 1 0.33219123
--0.73235995 3.6259918 0.13198325 0.029211603 0.3049663
--0.17723309 1.2943197 3.5632477e-06 0.073849484 0.16211563
-1.3983141 -3.7454555 0.28340825 0.58582526 0.14999673
-5.3477383 0.29166287 1.7928702 0.7839223 0.35713086
-6.329355 -0.9915551 2.7560124 0.74145424 0.39977834
-6.61503 -1.0288318 3.2925076 0.73710525 0.42637146
-6.555245 -0.626463 4.513844 0.73674035 0.48684162
-6.353933 -0.4007407 4.4410877 0.7431381 0.4855297
-6.6771183 -0.79848605 4.4080696 0.73397624 0.4802106
-6.4833198 1.0061774 4.227145 0.7778673 0.496201
-6.0156517 1.3106078 2.7524338 0.79826665 0.42915648
-3.4621005 2.41476 0.47519627 0.8793003 0.31020576
--0.086459965 -2.4281883 0.037366044 0.49658078 0.0703934
-3.7290418 -1.7666837 0.47520345 0.7299443 0.21887559
-6.1249423 -0.648356 2.2706246 0.7532975 0.38050473
-6.502354 0.30787817 4.7692614 0.7576252 0.51215523
-6.1080465 0.95751995 2.3589628 0.7920153 0.40722287
-1.8457707 3.7467268 0.28341934 0.9461781 0.32587862
-0.7951409 -3.4384716 0.13198134 0.5593095 0.12159761
-2.3359544 -3.275149 0.2834438 0.6421275 0.16630144
-6.561281 0.63669205 4.7027864 0.76569843 0.5144738
-6.6590147 1.0898895 3.0319288 0.78716 0.4450481
-4.7372355 0.42505196 0.97745115 0.79966164 0.30859056
-3.934514 1.4604647 0.4751819 0.8454733 0.2913379
-0.14923692 2.6157062 0.03736722 0.025933046 0.2437008
-4.0767236 -0.74466074 0.4751781 0.77028036 0.24349295
-6.601287 -0.4528047 2.5900903 0.7553843 0.4034027
-6.996112 -0.69361264 3.3450387 0.74534714 0.4371755
-6.980644 -0.8744909 3.9022043 0.73730695 0.45866233
-6.581801 -0.060869526 4.9807677 0.74747044 0.5160859
-2.7129488 3.1727731 0.2834469 0.9140076 0.31586528
-1.1894317 3.5200171 0.13202651 0.96481144 0.30409497
--0.73235995 3.6259918 0.13198325 1 0.30761978
-3.1104014 -2.587803 0.28344575 0.6908571 0.18729456
-6.160445 0.31580782 2.1495166 0.77787626 0.38870138
-7.2517424 -0.56772244 5.5264316 0.73335403 0.53012216
-6.77691 0.8437352 4.8424435 0.7692145 0.52146775
-4.1495953 0.380169 0.47517455 0.8093312 0.26860565
-6.632122 0.49791166 2.550653 0.7772624 0.4160522
-6.963985 -0.09763762 2.9635518 0.7604917 0.42829394
-3.400295 2.3983274 0.28344494 0.8816228 0.30137065
-2.5021532 -2.6707227 0.14949752 0.67542815 0.15788853
-3.6843576 -1.72062 0.28341755 0.7340389 0.21069852
-7.2163815 -0.37407193 3.6072721 0.7504252 0.4536472
-7.4610567 -0.5447116 5.3487186 0.7355558 0.5237522
-6.9951925 1.0524173 3.9312193 0.77865803 0.4853931
-0.14923692 2.6157062 0.03736722 0.9850999 0.25003365
-6.9370003 0.6047369 3.0253458 0.7755457 0.4401307
-7.2538595 0.26284945 3.5667257 0.764043 0.4602291
-7.604919 -0.4150154 5.2876244 0.73875844 0.52297765
-3.8706036 1.4606845 0.28340954 0.84827495 0.28276503
-2.7958703 2.5645244 0.1494988 0.901832 0.28869012
-1.9881839 -2.0754974 0.062231906 0.6985599 0.12355745
-4.0218105 -0.7112595 0.2833773 0.7740327 0.23530614
-7.7167187 -0.21032076 5.2491274 0.743394 0.52335006
-6.9847584 -0.24307872 5.9314547 0.7365941 0.5498972
-7.4152937 -0.4006576 6.2037954 0.73343647 0.56249
-6.8654375 0.20102085 5.797168 0.74791646 0.55489075
-7.0197935 0.4880324 5.897712 0.7533589 0.56317425
-7.473017 0.65329975 6.0312843 0.7563343 0.56590277
-7.1624184 0.7782843 3.694129 0.77408516 0.4719417
-7.7543983 0.20389417 5.2316613 0.751775 0.5281325
-4.087933 0.39799693 0.28335974 0.8126398 0.26028186
-2.2006412 2.0505579 0.06223284 0.90993035 0.2513137
-3.4576466 -1.064283 0.1320253 0.7640979 0.201195
-7.868846 -0.4188554 5.9469986 0.7356446 0.5479983
-7.311481 0.5206287 6.2384286 0.75149727 0.57473445
-7.2509556 0.857493 5.01134 0.7655549 0.5332784
-0.23503682 -1.071256 -0.0003161478 0.8855156 0.08481474
-7.655847 0.5398016 5.2791934 0.7583207 0.53470504
-7.144215 -0.13775255 6.2459326 0.7375035 0.5678402
-7.097779 0.18415965 6.2468796 0.74448085 0.57287586
-3.5636184 0.857513 0.13198228 0.83801496 0.24903476
-8.270933 -0.40947828 6.6404014 0.7324858 0.57108116
-8.397093 -0.2674425 6.27001 0.7378615 0.5595827
-8.090277 -0.16513182 5.8901577 0.7408856 0.5482673
--0.17723309 1.2943197 3.5632477e-06 0.97768795 0.16312042
-2.5533364 -0.024088254 0.037366614 0.827278 0.17662486
-8.1105585 0.35696587 5.8848352 0.7503656 0.5544029
-7.745861 -0.29607552 6.619299 0.7337154 0.5760231
-8.791607 -0.37024873 6.680369 0.7342241 0.56942034
-9.208957 -0.22081424 6.7232866 0.7374404 0.5699929
-8.514184 0.18247418 6.254532 0.7455945 0.563058
-7.6830177 0.6525094 5.8102393 0.7571533 0.55710304
-8.254537 0.54529625 6.26645 0.75144994 0.5692185
-7.6640778 -0.051385157 6.699082 0.73763454 0.5818495
-7.452693 0.18596663 6.5899305 0.7425302 0.58358496
-9.418197 0.02214857 6.7426867 0.74144787 0.5716608
-9.309395 0.2883362 6.7054057 0.74508154 0.57318884
-7.639344 0.42809772 6.5993533 0.74746835 0.5851656
-8.081022 0.54702026 6.682619 0.74911624 0.58507687
-8.973659 0.5072487 6.6863976 0.7491651 0.5770056
-8.516912 0.5961705 6.6518593 0.75066555 0.58108795
-7.774359 0.30062857 6.710231 0.7449089 0.586397
-8.778585 -0.31967074 6.749737 0.7340877 0.5716504
-8.168418 -0.3056635 6.7230115 0.7336544 0.57627
-9.289243 0.35341647 6.7610135 0.74608964 0.5756417
-9.343727 -0.047097933 6.773689 0.73963976 0.5714663
-8.747097 0.51438695 6.747256 0.74934244 0.58129424
-7.8048196 0.034893997 6.686088 0.73925436 0.5820999
-7.9792643 -0.14918195 6.6844816 0.73624176 0.57854915
-9.230967 0.1964769 6.742982 0.74347126 0.5738409
-7.8494005 0.23327385 6.683101 0.74344695 0.58441556
-8.797728 -0.20270823 6.696664 0.7368448 0.57165444
-8.379226 -0.23452786 6.685985 0.73521954 0.574153
-8.787157 0.39214262 6.6979775 0.7470784 0.57800543
-8.434503 0.42667592 6.686893 0.7476074 0.5812706
-8.068272 0.3675492 6.6910095 0.746387 0.58409214
-8.594647 0.33826095 6.5586057 0.74605036 0.57389486
-8.741324 -0.040165488 6.556678 0.74057925 0.5696205
-8.313558 -0.22020936 6.556027 0.73663545 0.5705806
-7.7901807 -0.120350294 6.5560217 0.7377069 0.5759552
-7.9875245 0.3855724 6.5559316 0.74682367 0.5798425
-7.6833825 0.17818877 6.5562525 0.7427287 0.58012176
+0.08334465 2.1424341 0.07932985 0.0568927 0.9963135 0.06420743 0.56383085 0.49572945
+-0.070349455 2.1392877 0.08685406 -0.0799326 0.9941669 0.07240759 0.54318315 0.48315775
+-0.026624786 2.1165075 0.22995588 -0.12358398 0.8280825 0.5468148 0.5540097 0.43693596
+0.13131183 2.1277943 0.17365156 0.16515216 0.9512132 0.2606115 0.5753557 0.46960098
+0.09853005 2.109425 0.23106422 0.18880455 0.7516897 0.63191414 0.57408524 0.445826
+-0.14236523 2.1277943 0.11571934 -0.26532406 0.94982946 0.1656113 0.53243506 0.46702212
+-0.028311478 2.0860515 0.25332013 -0.19603758 0.18551922 0.9628873 0.5545062 0.42716795
+0.10569635 2.086041 0.24514012 0.31580678 0.15921263 0.9353702 0.57629883 0.44063866
+-0.13464902 2.1094203 0.18321484 -0.43467745 0.75106066 0.4969541 0.53459597 0.44297063
+-0.025097836 2.0472333 0.24395595 -0.17107923 -0.4452516 0.87891006 0.55473495 0.4281926
+0.1035895 2.047248 0.23548824 0.2905992 -0.44421753 0.84748024 0.5762996 0.44182265
+-0.14345975 2.086042 0.1963199 -0.6487634 0.16213906 0.74351656 0.53320307 0.43675837
+-0.13608178 2.0472825 0.18972445 -0.5879791 -0.44476756 0.67561996 0.53354996 0.43743944
+-0.029490227 1.9328475 0.13811602 -0.27674997 -0.62449604 0.7303521 0.5486393 0.4567124
+0.053974885 1.9096376 0.12667316 0.2358193 -0.42483014 0.8740186 0.5664972 0.46747687
+0.19880696 2.1094203 0.16593559 0.49695557 0.7510595 0.43467775 0.58744353 0.47444963
+0.21191177 2.086042 0.17474641 0.7435171 0.16213848 0.64876306 0.59065866 0.47207454
+-0.19977777 2.109425 0.08293786 -0.6319153 0.75168955 0.18880102 0.5204789 0.47005764
+0.000612297 1.893343 0.12393209 -0.20482819 -0.26208463 0.9430573 0.5540453 0.46283823
+0.20531666 2.0472825 0.16736805 0.67565376 -0.44470808 0.5879853 0.59044933 0.4732049
+-0.2138535 2.086041 0.090104885 -0.9353683 0.15921454 0.3158116 0.5177227 0.46598
+0.245548 2.1165073 0.057912216 0.54587257 0.82860136 0.124269575 0.5902579 0.5125457
+-0.2042017 2.0472476 0.08799729 -0.8474803 -0.44421813 0.2905984 0.5180881 0.4662444
+-0.06537563 1.909708 0.09252914 -0.655661 -0.44749412 0.60815924 0.53862274 0.46785623
+0.036932457 1.8633798 0.12673298 0.10755416 0.316445 0.94249386 0.56176317 0.4661005
+0.108120695 1.9097081 0.0966628 0.6087708 -0.44502082 0.6567759 0.5758522 0.48511207
+-0.055567756 2.1392877 -0.08594141 -0.07176643 0.9943648 -0.07802775 0.53929913 0.5309931
+-0.19866906 2.1165075 -0.042218085 -0.5470333 0.8279137 -0.12374764 0.51626885 0.5093962
+-0.050450303 1.8631896 0.09981998 -0.5860273 0.3307474 0.739715 0.5416415 0.46679458
+0.2689121 2.0860515 0.05959847 0.96288687 0.18551841 0.19604005 0.59520185 0.51372135
+-0.0048417146 1.8283503 0.15090589 -0.11087169 0.8464678 0.52076846 0.55432063 0.4454817
+0.072587796 1.8283521 0.14528267 0.19153932 0.8446995 0.49979553 0.57204807 0.45691085
+0.25954792 2.047233 0.056383822 0.88023216 -0.44247022 0.17149743 0.59483075 0.5146255
+0.11722808 2.1392877 -0.0711597 0.07892639 0.9941629 -0.07355772 0.5633087 0.53875506
+-0.22203363 2.0860515 -0.043903664 -0.9628871 0.18552043 -0.19603696 0.5113002 0.5085487
+-0.072253294 1.8283509 0.118361324 -0.35559997 0.8422419 0.40518793 0.5367605 0.45300454
+0.18924369 2.1277943 -0.10002511 0.2653233 0.94982976 -0.16561094 0.57409024 0.5547935
+-0.21266955 2.0472333 -0.04068961 -0.87890965 -0.44525272 -0.17107858 0.5115867 0.50839025
+-0.09538641 1.9096375 0.03838331 -0.8740171 -0.4248306 0.23582417 0.5298807 0.48665497
+-0.036583383 1.7764032 0.2996845 -0.04412791 0.9740091 0.22216877 0.55576324 0.3693412
+0.12170442 1.7763994 0.2894037 0.07273095 0.9740669 0.21425168 0.5944495 0.394134
+0.15117924 1.9319383 0.064145274 0.6665567 -0.6451215 0.37352404 0.5811135 0.5021577
+0.24665661 2.109425 -0.06724304 0.6319164 0.7516886 -0.18880096 0.5860809 0.5519036
+-0.0844333 2.1277943 -0.15795717 -0.16561036 0.9498298 -0.2653234 0.5310886 0.5520973
+-0.1738225 1.7763883 0.23220484 -0.14883141 0.9741497 0.16994546 0.5173457 0.38657805
+0.11541181 1.8631896 0.08173721 0.7390099 0.32275876 0.5913468 0.57664156 0.49205488
+0.26073214 2.086041 -0.07441039 0.9353688 0.15920955 -0.3158124 0.58881485 0.5562849
+-0.1519282 2.1094203 -0.15024127 -0.49695373 0.7510587 -0.43468118 0.5189948 0.5473309
+-0.09544642 1.86338 0.02134014 -0.9424942 0.31644404 0.10755316 0.5287704 0.49657688
+0.13395336 1.8283508 0.10354005 0.40518782 0.8422419 0.3556001 0.58378273 0.48316658
+0.25107998 2.0472476 -0.07230329 0.84570974 -0.44714823 -0.29126188 0.5883615 0.5567608
+-0.16503382 2.0860417 -0.15905136 -0.7435199 0.16213731 -0.6487601 0.5157375 0.54997957
+-0.113996066 1.8283521 0.056995932 -0.49979565 0.8446998 0.1915378 0.5237934 0.47678053
+-0.15843788 2.0472827 -0.15167412 -0.6756196 -0.44476625 -0.5879805 0.5158632 0.54958963
+-0.10682954 1.9328475 -0.045082346 -0.73035246 -0.62449574 -0.27674958 0.52477556 0.52163744
+-0.11946154 1.713866 0.6884592 -0.038720626 0.9802991 0.19368611 0.5585938 0.22247021
+0.25027663 1.7138191 0.66612583 0.063005276 0.98030907 0.18714827 0.64761 0.2784205
+0.2477964 1.7763885 0.20510836 0.16994497 0.9741499 0.14883141 0.6182397 0.44949877
+0.14117798 1.9037943 0.03336559 0.89001334 -0.41327643 0.19255881 0.57885647 0.517105
+0.18152781 2.1094203 -0.16752036 0.4346789 0.7510582 -0.4969565 0.5719042 0.5788152
+-0.2581175 1.7763991 0.106113605 -0.21425173 0.97406685 0.07273215 0.49103063 0.43748364
+-0.43922716 1.7137523 0.53020483 -0.13100335 0.98024756 0.14816482 0.4686071 0.26525488
+0.16649806 1.8283503 0.03612837 0.5207663 0.8464689 0.110872634 0.58739704 0.51773506
+0.19033799 2.086042 -0.1806257 0.6487612 0.16213807 -0.7435188 0.57326114 0.5852916
+-0.051651962 2.109425 -0.21536976 -0.18880336 0.75168747 -0.6319171 0.53228956 0.5757849
+-0.09264548 1.8933431 -0.014980405 -0.94305664 -0.26208672 -0.20482866 0.5274779 0.51147443
+0.14232501 1.8633798 -0.005645876 0.927822 0.35810852 -0.10442601 0.5769825 0.5319237
+0.15161814 1.9313473 -0.046003956 0.74960953 -0.58988744 -0.30019733 0.57637024 0.54634094
+0.18296021 2.0472825 -0.17403017 0.58641934 -0.44965163 -0.67373997 0.5728233 0.58533984
+-0.058818705 2.086041 -0.22944556 -0.3158121 0.15920925 -0.93536896 0.530019 0.5812064
+-0.1196194 1.8283503 -0.02043341 -0.5207683 0.8464675 -0.11087459 0.51827604 0.51161677
+-0.15268247 1.6804774 0.8276422 -0.09214917 0.89951503 0.42706114 0.5589657 0.18589944
+0.29324442 1.6804463 0.80248094 0.13593124 0.9032904 0.4069266 0.665279 0.25202373
+0.3152781 1.7764032 0.06786633 0.22216831 0.9740093 0.044125848 0.6252903 0.5199709
+0.073503695 2.1165073 -0.21426165 0.12374541 0.8279141 -0.5470333 0.55240446 0.5846863
+-0.056710783 2.0472476 -0.21979368 -0.28963035 -0.44636554 -0.84668297 0.529932 0.58075184
+-0.061242893 1.909708 -0.08096743 -0.60316056 -0.44652066 -0.660921 0.53001624 0.5417409
+-0.53676957 1.680413 0.6346807 -0.29100645 0.8999372 0.32469702 0.45103097 0.23829988
+-0.15181486 1.6430178 0.8767164 -0.06529754 0.941149 0.33162448 0.5626184 0.16698733
+0.058187544 1.6404709 0.89543945 0.0150432745 0.9696322 0.24410492 0.6247753 0.18617442
+0.54579794 1.7137525 0.4705128 0.14827539 0.98033655 0.13021009 0.6879668 0.38968867
+0.13048695 1.8922141 -0.04576187 0.8491187 -0.31183332 -0.42632988 0.57217985 0.5462866
+-0.068533264 1.8631896 -0.06604265 -0.73799974 0.33206502 -0.5874429 0.5290633 0.5363385
+-0.26839992 1.7764028 -0.05217246 -0.22216895 0.9740091 -0.04412647 0.48064515 0.50874543
+-0.6348381 1.7138191 0.23468441 -0.19106235 0.97922087 0.067983545 0.42309892 0.37117362
+-0.37166288 1.6431051 0.80272067 -0.11515666 0.96360004 0.24127544 0.49041742 0.17701697
+0.16087472 1.828352 -0.041302234 0.49979365 0.84470016 -0.19154097 0.58189076 0.552547
+0.07519028 2.0860515 -0.23762569 0.19604 0.18552105 -0.96288645 0.5518453 0.59467715
+0.2888651 1.6429368 0.8562937 0.08195558 0.9361994 0.34178054 0.6725122 0.23476869
+0.10819932 1.931129 -0.10255232 0.5105226 -0.61432433 -0.60164136 0.56545967 0.5650203
+0.07197568 2.0472333 -0.22826156 0.17159176 -0.4463835 -0.8782357 0.5515262 0.5943763
+-0.0870752 1.8283508 -0.08784501 -0.40519148 0.84224117 -0.35559756 0.5218095 0.54596895
+-0.55967665 1.6431638 0.6783556 -0.22821908 0.93927765 0.25626835 0.44077924 0.22286889
+0.65027285 1.6804134 0.56805557 0.32816982 0.89590144 0.29944128 0.7067529 0.37683308
+0.70405036 1.7138665 0.15074402 0.1975296 0.9792445 0.045413945 0.6980337 0.51875657
+0.30499506 1.7763996 -0.09041822 0.21425161 0.97406685 -0.07273223 0.6149787 0.5911406
+-0.0057035857 1.9322323 -0.12842005 -0.15752232 -0.6019658 -0.7828307 0.540123 0.56421566
+-0.7495322 1.6675459 0.40090367 -0.64037937 0.7020605 0.31148887 0.4057543 0.3180548
+0.48806316 1.6418642 0.76857215 0.13905965 0.9677601 0.21000648 0.6998223 0.29267883
+-0.20091844 1.7763882 -0.18941507 -0.16994499 0.97414994 -0.14883073 0.48735338 0.57831013
+-0.65717494 1.7138656 -0.1350486 -0.19368784 0.98029894 -0.038718842 0.40912092 0.50296944
+-0.7000573 1.6418467 0.5222103 -0.7531385 -0.27243838 0.59879863 0.41304666 0.27685326
+0.67517346 1.6406071 0.6122083 0.2311729 0.94583035 0.22795625 0.71633554 0.36712104
+0.1191314 1.8283508 -0.10266749 0.35559824 0.8422407 -0.40519187 0.5688516 0.576087
+0.09732953 1.8631896 -0.084125124 0.59211653 0.34975803 -0.72599393 0.5640695 0.56155723
+0.07275074 1.9051306 -0.10290013 0.34693137 -0.4197221 -0.83873236 0.557402 0.5650748
+-0.0010098432 1.8934784 -0.10959778 -0.22816393 -0.24784744 -0.9415481 0.54199606 0.55881494
+0.009946367 1.86338 -0.11103846 -0.10603079 0.3418128 -0.9337674 0.5438986 0.56214833
+-0.79238707 1.6800269 0.17279279 -0.41045263 0.9100289 0.05810424 0.39789137 0.39166212
+0.78359157 1.6437819 0.46742213 0.26046315 0.9538541 0.14940341 0.7218531 0.4239874
+0.8470529 1.6670016 0.28102258 0.66324204 0.70797217 0.24266315 0.7220329 0.48431596
+-0.025710195 1.8283521 -0.12958816 -0.19154151 0.8446996 -0.49979421 0.5334698 0.57199335
+0.6817153 1.7138196 -0.21899047 0.18488625 0.9806092 -0.06498178 0.68458766 0.65040684
+0.22070114 1.7763884 -0.21650977 0.14883095 0.97414994 -0.16994493 0.58836097 0.641064
+-0.7963558 1.6804773 -0.16827253 -0.44652867 0.8897225 -0.09490019 0.39101952 0.50230837
+-0.8387324 1.6423836 0.22027755 -0.29479906 0.95335644 0.06484548 0.39100444 0.3763519
+0.85286504 1.6800337 0.06970149 0.42767462 0.90370363 0.020352375 0.7162062 0.5545882
+-0.0748271 1.7763994 -0.27370837 -0.07273271 0.9740667 -0.21425195 0.51079065 0.63266134
+-0.498919 1.7137523 -0.4548178 -0.1482752 0.9803365 -0.13021062 0.4181591 0.6297085
+0.051720727 1.8283504 -0.13521144 0.11087301 0.8464686 -0.5207667 0.55120647 0.5834012
+-0.8601035 1.6431593 -0.047985286 -0.28433686 0.95869786 -0.007141059 0.3832671 0.46170026
+0.89519894 1.6414781 0.16984248 0.32448876 0.9447116 0.047191318 0.7258587 0.52451074
+0.8180726 1.6804464 -0.26195997 0.4279118 0.8934629 -0.13643934 0.70407915 0.66081554
+0.90626466 1.6431584 -0.05890753 0.29161766 0.95610714 -0.028606733 0.72241366 0.5960014
+0.48610407 1.7137525 -0.514512 0.13020985 0.9803366 -0.14827532 0.6384633 0.75398684
+0.08345893 1.7764032 -0.2839906 0.044125937 0.97400904 -0.22216941 0.5495067 0.6573702
+-0.6033947 1.680413 -0.55236113 -0.33558717 0.8937264 -0.29771492 0.39953196 0.640071
+-0.81540483 1.64316 -0.2799762 -0.2702287 0.9562008 -0.112500936 0.38218474 0.5362937
+-0.20339565 1.7138195 -0.65042925 -0.06300514 0.98030907 -0.18714845 0.4571666 0.73813814
+0.85276496 1.6408682 -0.31371522 0.28017506 0.9526421 -0.11821659 0.7127075 0.67821175
+-0.6987217 1.6409484 -0.5125001 -0.22911097 0.9642257 -0.13333002 0.38674617 0.61653984
+0.5836474 1.6804134 -0.6189865 0.27159607 0.91634977 -0.2941745 0.6567383 0.7785614
+0.73992115 1.6428952 -0.51971954 0.220297 0.96315503 -0.15427755 0.6928016 0.744717
+0.16633531 1.7138661 -0.6727655 0.03871876 0.980299 -0.19368725 0.5462981 0.7940663
+-0.24636713 1.680446 -0.7867861 -0.14345643 0.89244264 -0.42774576 0.4392854 0.761696
+-0.5619955 1.643482 -0.6589329 -0.19300526 0.9457528 -0.2613439 0.3962282 0.6768964
+0.59798515 1.6543156 -0.6597425 0.6438041 0.16508555 -0.74717 0.6643171 0.7936463
+-0.3805355 1.6431631 -0.78265214 -0.13398604 0.9638022 -0.23050606 0.41241777 0.74058795
+0.19955955 1.6804774 -0.8119481 0.08083865 0.90355885 -0.42076907 0.54573774 0.8279332
+0.46186322 1.6429485 -0.76795715 0.11614376 0.96613634 -0.23041533 0.6269679 0.8275783
+-0.18633449 1.6414671 -0.853363 -0.05823296 0.94927675 -0.30900225 0.43963152 0.79260314
+0.014847007 1.6429577 -0.87899864 -0.015903335 0.96565497 -0.25934052 0.48516735 0.83040583
+0.24777395 1.643623 -0.8525219 0.10609722 0.936394 -0.33452925 0.55752325 0.8468027
+-0.13708203 1.2201986 -1.1987333 -0.11303801 0.37131402 -0.921601 0.31630385 0.87820697
+-0.13018008 1.4676074 -1.0874002 -0.6073066 0.4466621 -0.65701723 0.3994552 0.85925615
+-0.11856759 1.4250436 -1.1078795 -0.6287273 -0.01988204 -0.77737164 0.39018303 0.86876595
+0.067937605 1.3835112 -1.1360718 0.16192104 -0.49644288 -0.8528341 0.4184501 0.9156983
+-0.046977993 1.3895441 -1.128823 -0.27315903 -0.4509954 -0.8496984 0.39014873 0.89028597
+-0.066813715 1.3888745 -1.5016229 -0.34677228 -0.93581283 0.06327186 0.37146783 0.89708775
+0.049661394 1.3786709 -1.4935458 0.0624638 -0.9958382 0.06636646 0.38622057 0.9194009
+0.12697549 1.3954146 -1.503003 0.4291102 -0.9016674 0.053481903 0.40976498 0.9309267
+-0.122212425 1.4266 -1.5219053 -0.84010273 -0.54110277 0.037883993 0.3737538 0.8842662
+0.023472408 1.043774 -1.2762223 3.3328535e-05 0.32010022 -0.9473837 0.23950031 0.9142025
+0.15205699 1.4147904 -1.1134502 0.5705572 -0.19284672 -0.79829484 0.4633667 0.9254246
+0.18624468 1.2235599 -1.1971881 0.12458854 0.37519276 -0.9185358 0.3346259 0.9577966
+-0.2992081 1.2212609 -1.1666684 -0.24489552 0.37535915 -0.89394164 0.3139935 0.8372988
+-0.17836498 1.6543496 -0.9927835 -0.16807152 0.5414624 -0.8237538 0.43512294 0.8101324
+0.16904669 1.4265362 -1.5220367 0.8355659 -0.5486128 0.029217526 0.4304539 0.93350905
+0.39898196 1.4012913 -1.0702847 0.3030873 0.41261315 -0.85900426 0.63565016 0.93904555
+0.3682682 1.043757 -1.2310394 0.23757592 0.32127005 -0.9167024 0.9739257 0.9628624
+0.17729744 1.452745 -1.0943191 0.69009066 0.28463605 -0.6654 0.48726785 0.91974795
+-0.1596576 0.87812847 -1.3139293 -0.12938234 0.22760966 -0.9651186 0.21705404 0.8610444
+-0.4805254 1.0437776 -1.1767193 -0.35548154 0.32174394 -0.8775613 0.27601063 0.79483736
+-0.49036428 1.3984607 -1.0141273 -0.40686584 0.41495034 -0.8138036 0.3431179 0.7732532
+-0.13023514 1.4610814 -1.5664936 -0.9772298 0.21190935 -0.010794063 0.3811314 0.881681
+0.5274694 1.043756 -1.1767004 0.37442914 0.3181547 -0.8709653 0.89244634 0.9368228
+0.2066279 0.8781125 -1.3139212 0.13511828 0.22292574 -0.9654258 0.12659624 0.92099905
+-0.33465075 0.8781284 -1.2789862 -0.25837418 0.22079034 -0.9404757 0.23522949 0.82441294
+-0.62902933 1.0437685 -1.1031295 -0.4846586 0.31808934 -0.8148161 0.2799794 0.75534624
+-0.10498853 1.5052639 -1.0715001 -0.34721985 0.7038826 -0.6196674 0.4141152 0.85817957
+-0.1058254 1.4962851 -1.5730144 -0.61502546 0.786133 -0.061144456 0.39055282 0.8830576
+-0.0029746592 1.3575419 -1.6793306 -0.06999321 -0.9749556 0.21109822 0.36346495 0.91361344
+0.113855146 1.3666314 -1.6892962 0.34029248 -0.9196074 0.19627312 0.384903 0.9319419
+0.6759691 1.0437552 -1.1030997 0.4661976 0.31828693 -0.8254411 0.8608255 0.9018117
+0.6653518 1.3975278 -0.9403692 0.50688547 0.41306433 -0.75660104 0.73524475 0.8779523
+0.3682682 1.043757 -1.2310394 0.23757592 0.32127005 -0.9167024 0.026442397 0.9485693
+0.023179002 0.80810404 -1.3389374 -0.0022349653 0.17242128 -0.98502076 0.16734466 0.88560563
+-0.7654057 1.0437644 -1.0117038 -0.569519 0.31818825 -0.75789475 0.28270602 0.71602315
+-0.733144 1.3971657 -0.85239965 -0.6001163 0.4117828 -0.68578094 0.33558387 0.69573176
+-0.4270119 1.673638 -0.896672 -0.3449401 0.61892354 -0.7056558 0.40632513 0.7451786
+0.17708606 1.4562079 -1.6243867 0.9692294 0.24369162 -0.034765996 0.43343356 0.93211156
+0.16855657 1.3798587 -1.7995425 0.88955164 -0.40996432 0.20156175 0.3905912 0.9401609
+0.8123401 1.0437571 -1.0116649 0.5862451 0.31831607 -0.7449776 0.8456663 0.86443007
+0.16712761 1.4932051 -1.0762645 0.4199348 0.637634 -0.64581555 0.49127582 0.9085049
+0.15916966 1.6695567 -0.9924975 0.10910918 0.6037591 -0.7896645 0.51914746 0.85764116
+-0.88822824 1.0437622 -0.90386957 -0.67768383 0.3183623 -0.6628649 0.2846386 0.67672276
+-0.080393285 1.3720747 -1.6966659 -0.4440786 -0.871485 0.20810601 0.35883933 0.89965475
+0.9351563 1.043763 -0.9038204 0.66286516 0.31836423 -0.6776829 0.8370842 0.8261407
+0.8836833 1.3971748 -0.74873376 0.68473256 0.4132006 -0.60033876 0.76005816 0.80400383
+0.35800847 1.6738327 -0.9445496 0.26002446 0.6310335 -0.73087895 0.58363223 0.8558965
+0.59078443 1.6738087 -0.8290441 0.44219097 0.6021347 -0.6647564 0.65143096 0.8240836
+0.47024128 0.81047237 -1.2681124 0.32458493 0.1773824 -0.92907494 0.038318068 0.9135703
+-0.019321563 0.61591285 -1.3591542 -0.15207665 0.8484287 -0.50699246 0.14398704 0.8493366
+-0.16366085 0.63544285 -1.346943 -0.13621426 0.024309358 -0.990381 0.17289378 0.83242357
+-0.5848182 0.81048846 -1.2009051 -0.4424219 0.17716533 -0.8791333 0.2395395 0.7644464
+-0.9960717 1.0437592 -0.7810527 -0.744977 0.31831685 -0.58624536 0.28602123 0.6372835
+-0.92477673 1.3975255 -0.634067 -0.7567828 0.4090529 -0.50985813 0.33208448 0.61762834
+-0.64175564 1.6735265 -0.75429636 -0.5086223 0.61625963 -0.6012716 0.389248 0.6786765
+-0.23952836 1.6979915 -0.94038737 -0.17220406 0.80270594 -0.5709719 0.43330306 0.78607297
+0.15261103 1.4969658 -1.5636654 0.6370755 0.7689299 -0.05368111 0.44316125 0.92224383
+1.0429908 1.0437641 -0.78099835 0.75789464 0.3181883 -0.56951904 0.8316798 0.78729254
+0.47024128 0.81047237 -1.2681124 0.32458493 0.1773824 -0.92907494 1.0051861 0.9072281
+0.20625602 0.6347588 -1.347509 0.1326088 0.018059323 -0.99100393 0.09494999 0.8750376
+-0.3449288 0.594272 -1.3120416 -0.25677392 -0.06652102 -0.9641796 0.189686 0.7972015
+-1.0875072 1.043755 -0.64468265 -0.8254329 0.31820318 -0.4662696 0.28699383 0.5975273
+-0.024805844 1.5362902 -1.0630813 -0.10136998 0.8075103 -0.58107764 0.4391803 0.868773
+5.9388964e-05 1.6884999 -0.989071 -0.013309714 0.7443602 -0.66764575 0.47519934 0.83548546
+-0.027793014 1.5310217 -1.4637215 -0.16676837 0.9856542 -0.025962915 0.4173985 0.8893641
+-0.1222637 1.3989162 -1.729115 -0.77460724 -0.6032929 0.18979272 0.3615672 0.89139855
+-0.0461377 1.3307201 -1.7811424 -0.28326458 -0.83178055 0.4773912 0.3477749 0.90871096
+0.04950467 1.3266906 -1.7736806 0.089326374 -0.8624186 0.49825203 0.3558516 0.9248323
+0.12662457 1.3379519 -1.7937132 0.49384397 -0.7118854 0.49933687 0.36995012 0.9366081
+0.17637855 1.3934637 -1.8795686 0.9342529 0.30316672 -0.18778028 0.39293575 0.9393337
+1.1344155 1.0437716 -0.6446212 0.814816 0.31809175 -0.48465708 0.8280345 0.74790883
+1.0454118 1.3984663 -0.5059554 0.81656945 0.41303498 -0.40325734 0.7702403 0.72654426
+0.783354 1.6738085 -0.6596039 0.60063404 0.6128854 -0.51342994 0.69116163 0.7700589
+0.7821489 0.8103163 -1.1137438 0.5474521 0.18045183 -0.8171495 0.91438663 0.8606985
+0.38988605 0.59425515 -1.3125583 0.2564565 -0.07427342 -0.9636979 0.04389055 0.8710385
+-0.51453584 0.5942715 -1.2540165 -0.38624382 -0.076836735 -0.91919076 0.20533343 0.765149
+-0.87149185 0.8103454 -1.0089873 -0.64866 0.1805916 -0.7393423 0.25238276 0.68962944
+-1.1611083 1.0437543 -0.4961829 -0.87103516 0.31803873 -0.37436515 0.2876373 0.5572525
+-1.054587 1.3994839 -0.3700825 -0.86113894 0.40805468 -0.30320138 0.3308706 0.5378139
+-0.7672235 1.6824135 -0.6101374 -0.5812343 0.67319137 -0.45714337 0.38344625 0.62601316
+1.2080059 1.0437784 -0.49611753 0.8794617 0.3177003 -0.35442027 0.8254702 0.7078785
+0.55956554 0.5942557 -1.2547859 0.38061017 -0.07632841 -0.92158 0.9982284 0.8625037
+0.38988605 0.59425515 -1.3125583 0.2564565 -0.07427342 -0.9636979 1.0430932 0.8798418
+0.22211109 1.7075293 -0.93677336 0.00592411 0.99356157 -0.11313795 0.54186094 0.84615785
+0.39503187 1.706966 -0.88141817 0.009151153 0.9996958 -0.022905637 0.59648347 0.83932334
+-0.13092218 0.5296462 -1.3400967 -0.65795285 -0.22420235 -0.71890986 0.15331717 0.82203066
+-0.6727237 0.59427094 -1.175473 -0.49865997 -0.076390184 -0.863425 0.2165005 0.73156726
+-1.2154495 1.0437506 -0.3369808 -0.91880125 0.31459275 -0.23840229 0.28799257 0.5162235
+-0.8772543 1.6735612 -0.45045543 -0.70152295 0.6216766 -0.3484018 0.3781705 0.5729711
+0.1524265 1.460181 -1.800241 0.66472954 0.72054803 -0.19734564 0.41710848 0.92946446
+0.09306671 1.521911 -1.5821316 0.22654732 0.97000825 -0.08809251 0.43223578 0.9112146
+0.09435941 1.5302218 -1.0635425 0.15571941 0.7931232 -0.5888184 0.47324222 0.88942355
+1.2623357 1.0437812 -0.33691546 0.9127222 0.31749925 -0.25716233 0.8236269 0.6670113
+1.1402951 1.4010118 -0.22316395 0.8923693 0.41150168 -0.1853199 0.77506745 0.64578354
+0.9264443 1.6738284 -0.44539562 0.6948445 0.63072336 -0.34551302 0.7128606 0.70532316
+1.040274 0.81034553 -0.8870845 0.7393419 0.18059178 -0.64866036 0.8773848 0.7933226
+0.71785945 0.5942598 -1.176483 0.5013318 -0.076273024 -0.86188686 0.96161425 0.8442181
+0.5755161 1.7031059 -0.7984173 0.23737372 0.90702415 -0.34779435 0.64506763 0.814677
+0.17888936 0.51580375 -1.336582 0.60123914 -0.3145745 -0.73454356 0.095404744 0.8497234
+-0.4187791 0.44476014 -1.2525015 -0.3021015 -0.39865646 -0.8659143 0.17790608 0.763546
+-0.8179727 0.59426934 -1.0779333 -0.61028993 -0.076691985 -0.78845716 0.2245918 0.6969963
+-1.0981499 0.81031895 -0.75086343 -0.81714857 0.18045281 -0.5474533 0.258806 0.6133525
+-1.2490982 1.0437595 -0.16850698 -0.9388901 0.3193567 -0.12843937 0.2880738 0.47416353
+-1.1169127 1.3706566 -0.15020968 -0.91549164 0.39307147 -0.08584715 0.33110994 0.47582412
+-0.45130336 1.707926 -0.83473045 -0.03370434 0.9992675 0.018122032 0.41049153 0.728501
+-0.62489 1.7084126 -0.7098394 0.07265752 0.99673235 0.03529114 0.3954427 0.6716704
+-0.12968473 1.3513668 -1.925497 -0.9377702 0.1965707 -0.2862638 0.34402776 0.8964109
+-0.11749717 1.3428891 -1.841813 -0.8476745 -0.42073518 0.323156 0.34547284 0.8968492
+1.2959783 1.0437818 -0.16844085 0.9416219 0.3171567 -0.112959385 0.8223003 0.6250541
+0.8632467 0.5942629 -1.0791675 0.60549426 -0.07648694 -0.79216564 0.9345888 0.819371
+0.38080394 0.4455707 -1.2758154 0.25024083 -0.39775956 -0.8827043 0.04624506 0.8399837
+0.02466718 0.6792218 -1.4758605 -0.0031387366 0.84861845 0.52899617 0.15114078 0.8716937
+-0.06889438 0.660599 -1.4714676 -0.35348126 0.7938304 0.49485782 0.16534404 0.8576466
+-0.100696936 0.5771033 -1.3464222 -0.607254 0.40940168 -0.6809059 0.15453808 0.83297074
+-0.1411206 0.37204158 -1.2739416 -0.11951341 -0.5197567 -0.8459134 0.13936551 0.7900752
+-0.94876295 0.5942666 -0.96292126 -0.7039729 -0.07633587 -0.7061127 0.23048392 0.661693
+-1.26063 1.0437744 0.007814106 -0.9461909 0.32353407 0.0069617 0.28786457 0.43075478
+-0.9940772 1.6601213 0.0029156592 -0.8019823 0.5973176 -0.00600709 0.37647867 0.4401566
+-0.9634795 1.6721017 -0.204783 -0.76444167 0.6208708 -0.1736326 0.37632447 0.50008273
+-0.027717575 1.5191196 -1.6507251 -0.16607542 0.9776404 -0.12898931 0.40347695 0.89606446
+-0.122253865 1.4428332 -1.7923522 -0.8555783 0.4976877 -0.14245196 0.3705746 0.8904132
+0.09278359 1.4813439 -1.8280268 0.2500902 0.9238363 -0.2897952 0.40839478 0.9197351
+-0.0024569083 1.2798687 -1.8250833 -0.104858786 -0.5076317 0.85516936 0.33406636 0.91815096
+0.092384905 1.2819638 -1.833126 0.2819893 -0.47212288 0.83521366 0.34152085 0.9338925
+0.1368052 1.2746896 -1.8629043 0.6185565 -0.28166273 0.73352164 0.34174722 0.9415728
+0.16844703 1.2819757 -1.8966665 0.9385148 -0.11205244 0.32654887 0.34581825 0.94552493
+1.3075079 1.0437787 0.007881319 0.94834495 0.3170913 -0.009754637 0.82137203 0.5817005
+1.1741234 1.370678 0.007898085 0.9152297 0.40272892 -0.012810119 0.7768586 0.5823276
+1.0110695 1.6738564 -0.19576068 0.76089084 0.6310293 -0.15115221 0.7245535 0.63395655
+1.2321913 0.8104873 -0.60041237 0.88168555 0.18049638 -0.43594906 0.8605069 0.71924996
+0.9942081 0.594267 -0.9643557 0.70611215 -0.07633663 -0.70397335 0.9150971 0.7903331
+0.7401232 1.7055863 -0.65052503 0.15685886 0.9720634 -0.17460783 0.680092 0.76864254
+0.6236196 0.44474822 -1.1867466 0.41048655 -0.39970005 -0.8195979 0.010102542 0.83329844
+0.55956554 0.5942557 -1.2547859 0.38061017 -0.07632841 -0.92158 0.0030432213 0.8525695
+0.19085829 0.37187874 -1.2735764 0.10566444 -0.5358142 -0.83769804 0.08077693 0.8202523
+-0.09610031 0.44529897 -1.3130318 -0.2623624 -0.59641486 -0.7585877 0.13855019 0.813244
+0.052125175 0.41549465 -1.3055779 0.033179097 -0.7136528 -0.69971347 0.11104485 0.82161444
+-0.30954644 0.30001438 -1.1835359 -0.19073243 -0.6605752 -0.72612774 0.15052624 0.75320524
+-0.7268331 0.44481227 -1.0997906 -0.510398 -0.4008934 -0.76077485 0.20234337 0.70244884
+-1.0635753 0.5942627 -0.8319596 -0.79216594 -0.07648588 -0.605494 0.23472509 0.6257595
+-1.2525207 0.81046826 -0.4389548 -0.93106586 0.18015763 -0.31726903 0.2615531 0.5350409
+-1.2490995 1.0437803 0.18413563 -0.94162226 0.3171557 0.11295923 0.2873337 0.38723594
+-1.0934215 1.4009997 0.23886037 -0.89497656 0.4086997 0.17883374 0.3342346 0.36913118
+-0.19008996 1.707011 -0.92855847 0.0663958 0.98723555 0.14476712 0.44668284 0.793293
+0.12704387 1.4157645 -1.936517 0.48941252 0.68227893 -0.54311216 0.39015055 0.9309025
+0.17594871 1.2808125 -1.9606372 0.94115216 0.06587937 -0.33150053 0.34402654 0.9445945
+0.1519235 1.3461933 -1.9711549 0.6861239 0.37766856 -0.62177205 0.36946887 0.9392354
+1.2959762 1.043764 0.18420035 0.9398365 0.3152334 0.1316633 0.8207962 0.53819144
+1.163787 1.3706676 0.1659035 0.90392065 0.40694627 0.13161427 0.77732575 0.5392391
+1.1092199 0.59427035 -0.8335658 0.7884571 -0.07669112 -0.61028993 0.9009819 0.7585324
+0.6236196 0.44474822 -1.1867466 0.41048655 -0.39970005 -0.8195979 0.99486446 0.82600343
+0.29236773 0.2903251 -1.1922095 0.16158944 -0.6697055 -0.72483337 0.057383277 0.7982096
+-0.04147702 0.2901783 -1.2189556 -0.029519957 -0.6780582 -0.7344152 0.1123959 0.7814099
+-0.46264032 0.3000183 -1.1310996 -0.30348128 -0.6507821 -0.6959754 0.16600168 0.7283648
+-1.1608902 0.5942596 -0.6865731 -0.86188686 -0.07627245 -0.50133187 0.23765638 0.58920324
+-1.2154578 1.0437768 0.35261065 -0.91272295 0.3174962 0.2571634 0.2864412 0.34486967
+-0.8483239 1.7080646 -0.40925828 -0.06969765 0.99727255 -0.024285067 0.38421538 0.5661064
+-0.7651855 1.7067481 -0.5444803 0.14684993 0.97897154 0.14159726 0.3883865 0.61418116
+-0.08052488 1.4712274 -1.8190814 -0.4488461 0.85128504 -0.27175522 0.38018233 0.89548135
+-0.078389086 1.2749525 -1.8536009 -0.5188946 -0.29918793 0.8007715 0.3281302 0.9056306
+-0.0032408445 1.4861653 -1.835384 -0.08009979 0.94682115 -0.3116305 0.39307618 0.90596795
+1.2623259 1.0437587 0.35267532 0.9187996 0.31459683 0.23840332 0.82053536 0.4957883
+1.1014621 1.3994931 0.3857751 0.8589238 0.41467944 0.3004842 0.7770672 0.4765774
+1.0285628 1.6738753 0.078875996 0.7727502 0.63237756 0.05436729 0.7299949 0.5567374
+1.3458589 0.8106713 -0.26622146 0.9646935 0.18017855 -0.19209892 0.85194457 0.6407261
+1.2067595 0.59427166 -0.6883165 0.863425 -0.07638879 -0.49866015 0.89064854 0.7247515
+0.8509805 1.7070105 -0.4874088 0.0022519769 0.99939305 -0.03476365 0.7002369 0.7202891
+0.9069772 0.44480193 -0.9973093 0.60372174 -0.40108934 -0.68894655 0.94475424 0.7848522
+0.33548447 1.6884013 -0.8837255 -0.27618033 0.15091555 0.9491832 0.5804895 0.8447108
+0.553447 1.688398 -0.7758682 -0.5412319 -0.12412039 0.83166224 0.6441476 0.8154453
+0.50699013 0.30001226 -1.1321464 0.28476608 -0.65459013 -0.7002999 0.019554103 0.79892695
+0.15361957 1.6884285 -0.9242653 -0.12599292 0.21462484 0.96853596 0.522547 0.8448826
+0.073525734 0.7892097 -1.6189157 0.14528479 0.7110604 0.68795747 0.16875345 0.89893186
+-0.045844708 0.7724023 -1.6080177 -0.22671466 0.71308583 0.6634072 0.18636717 0.88102067
+-0.117593 0.6800306 -1.5506496 -0.7379689 0.53414774 0.4124172 0.18008813 0.8581727
+-0.12936573 0.5632415 -1.4531778 -0.965222 -0.21938927 -0.14217912 0.16063176 0.8350351
+-0.60541946 0.30002186 -1.060142 -0.37134373 -0.6511029 -0.66194326 0.17801286 0.7011962
+-0.9817169 0.44480258 -0.8756912 -0.6889468 -0.401088 -0.60372245 0.21583033 0.636252
+-1.2391936 0.5942548 -0.52827805 -0.9215801 -0.07632891 -0.3806101 0.23948005 0.55196404
+-1.3227639 0.810829 -0.085883886 -0.9815208 0.17998163 -0.0649896 0.2614029 0.45334715
+-1.1611271 1.0437764 0.5118124 -0.87946194 0.31769958 0.3544201 0.28509632 0.30337375
+-0.9985352 1.3984613 0.5216503 -0.81656957 0.41303408 0.4032578 0.3398387 0.2872956
+-0.96419084 1.6738558 0.21145485 -0.7533562 0.63851786 0.15731965 0.3839585 0.3830905
+0.049716406 1.4263767 -1.957956 0.098535605 0.7634281 -0.63833237 0.38013 0.9194697
+0.12730582 1.2738886 -2.0164306 0.5222951 0.10876507 -0.8458003 0.33658502 0.9384182
+0.073891826 1.3326887 -2.0237167 0.19933788 0.37108737 -0.9069501 0.3529101 0.9282392
+1.2079865 1.0437578 0.5118769 0.8710348 0.3180395 0.37436515 0.8205595 0.45420164
+1.2853038 0.59427196 -0.5301275 0.91919065 -0.07683615 -0.38624445 0.88302755 0.6893792
+0.9413059 1.7061806 -0.3039426 0.24613649 0.9669457 -0.06657969 0.71312606 0.665328
+0.64991015 0.30001685 -1.0615208 0.38470134 -0.65110654 -0.6542669 0.993998 0.78701615
+0.50699013 0.30001226 -1.1321464 0.28476608 -0.65459013 -0.7002999 1.019253 0.80039835
+0.023474278 1.6963738 -0.93315494 0.035242617 -0.08891843 0.9954153 0.48682415 0.8303633
+0.12750843 0.7073257 -1.5483599 0.41595146 0.7168372 0.559579 0.13642532 0.89077127
+0.092331104 0.60411966 -1.3561718 0.13932231 0.64942926 0.74754995 0.12022326 0.8604912
+0.15194933 0.5712692 -1.3457208 0.65248007 0.41793174 -0.6321414 0.10455793 0.8587749
+-0.10715316 0.5336413 -1.4658571 -0.63705295 -0.66872 -0.38337576 0.15538755 0.8354224
+-0.035090927 0.5085891 -1.4831535 -0.17679265 -0.85809755 -0.48209226 0.14116205 0.8400314
+-0.73650944 0.30002305 -0.9720382 -0.47235027 -0.6512968 -0.5938835 0.18726017 0.6723334
+-1.296966 0.59425294 -0.3585982 -0.9624097 -0.0762164 -0.26068887 0.24029738 0.51392716
+-1.0875372 1.0437692 0.6603158 -0.81481636 0.31808951 0.48465797 0.28313246 0.26251027
+-0.92602456 1.7085652 -0.16358803 -0.052266106 0.99852407 0.014765209 0.38239992 0.49189982
+-0.10557469 1.4042392 -1.9213142 -0.68047464 0.57544297 -0.45367366 0.35926634 0.89765877
+-0.002153509 1.2178761 -1.8368653 -0.07217364 0.009945293 0.99734247 0.31336838 0.9192887
+0.094296 1.1860807 -1.8452731 0.2649408 0.0798971 0.960949 0.30315912 0.93477184
+1.1343851 1.0437593 0.66037637 0.8254323 0.31820524 0.46626922 0.82086796 0.41317564
+0.9716554 1.3975291 0.64975923 0.7564821 0.41311368 0.5070227 0.77514154 0.39523253
+0.9758361 1.6738329 0.3424162 0.7256235 0.63976055 0.25333145 0.73045987 0.48025316
+1.3696423 0.8108328 0.10157772 0.98152053 0.17998332 0.064988986 0.84784347 0.5572104
+1.3433284 0.59427047 -0.36052218 0.9632319 -0.07645694 -0.2575626 0.87742245 0.6525608
+1.1310791 0.44481364 -0.742424 0.7607763 -0.40089202 -0.51039696 0.91484374 0.72793627
+0.69359994 1.6950672 -0.65771294 -0.6134942 0.49237242 0.6174093 0.67565024 0.77784437
+0.7811897 0.3000209 -0.9737265 0.45762283 -0.65118486 -0.6054252 0.9723182 0.7696337
+-0.1686082 1.6882848 -0.9170113 0.14230624 0.16314223 0.9762856 0.44603172 0.7974458
+0.09300706 0.5693338 -1.5786703 0.24676883 -0.8162543 -0.52233523 0.12915558 0.8678758
+0.16467763 0.5860214 -1.5398133 0.7565897 -0.55339444 -0.3483197 0.11576745 0.87325937
+0.14056115 0.4449696 -1.3128136 0.26354837 -0.5978047 -0.7570811 0.095596895 0.8362795
+0.16903256 0.6736092 -1.555701 0.79550844 0.5012649 0.34044054 0.1227257 0.88932824
+-0.099802546 0.80430835 -1.671052 -0.5896707 0.57853526 0.5635473 0.2049109 0.8794678
+-0.048163 0.11879362 -1.0217043 -0.0577113 -0.5379457 -0.84100163 0.09990238 0.7325561
+-0.31823692 0.11879522 -0.96793395 -0.26975495 -0.5369161 -0.7993456 0.13171342 0.7010565
+-0.8545382 0.3000229 -0.8681664 -0.52895707 -0.6514096 -0.54393935 0.19428936 0.64218295
+-1.171155 0.44474894 -0.5923322 -0.821488 -0.40078744 -0.40561908 0.22262993 0.5668012
+-1.3326912 0.5942559 -0.17905112 -0.9888783 -0.076404184 -0.1276013 0.24012333 0.47493124
+-1.2989806 0.8106675 0.2819159 -0.964694 0.1801763 0.19209902 0.25808018 0.36947685
+-0.99611145 1.0437648 0.7966923 -0.7578948 0.31818843 0.56951874 0.28025505 0.22209531
+-0.83680695 1.3971659 0.76443106 -0.6847328 0.41319945 0.6003394 0.35099363 0.20816088
+-0.8795661 1.6738274 0.46108985 -0.69484633 0.6307211 0.34551325 0.3959996 0.31096038
+-0.34940365 1.6954257 -0.8616451 0.33176392 0.18595974 0.92485225 0.42006066 0.7548212
+-0.046361804 1.4217603 -1.9510711 -0.27789447 0.7568023 -0.591629 0.36786973 0.9059211
+1.0429507 1.0437593 0.7967477 0.74497753 0.3183167 0.5862449 0.82149017 0.37249053
+1.3793108 0.59426767 -0.18102261 0.9880374 -0.07682274 -0.13371718 0.8733851 0.6142801
+0.9893979 1.7061816 -0.050099906 0.24896204 0.9684981 -0.0054061743 0.7216755 0.59258616
+0.8071997 1.6884 -0.5220938 -0.7942945 0.17510648 0.58175075 0.6962464 0.7340659
+0.8994539 0.3000235 -0.87013036 0.5396305 -0.6514862 -0.53325856 0.9545672 0.7479695
+0.36474055 0.11879843 -0.9680649 0.26433992 -0.5935468 -0.760149 0.039846003 0.7454215
+0.16215064 0.11892777 -1.012956 0.07599004 -0.57183886 -0.81683886 0.0706412 0.745618
+0.17713201 0.75196517 -1.7162092 0.96934986 -0.17911702 -0.16816027 0.14354782 0.9084484
+-0.1302335 0.83058083 -1.761569 -0.9881642 0.10289019 0.11377657 0.21659145 0.8795565
+-0.12324186 0.77799094 -1.7717692 -0.8553196 -0.3622972 -0.37036347 0.20664567 0.876316
+-0.09288413 0.63870686 -1.6505462 -0.56167305 -0.66720396 -0.4892467 0.17356203 0.8614421
+-0.9581343 0.300021 -0.7499031 -0.6090764 -0.6511836 -0.45275345 0.19949794 0.6109961
+-1.3448501 0.5942603 0.008851049 -0.99707425 -0.07642164 -0.0016692313 0.23888418 0.43478018
+-0.8882775 1.0437622 0.91951483 -0.6628653 0.3183633 0.67768306 0.27590188 0.18201256
+-0.935793 1.7080383 0.07467894 0.0062100366 0.999895 -0.013092021 0.38764995 0.42231292
+-0.121707335 1.2611594 -1.8993721 -0.8740984 -0.039710097 0.4841229 0.3232206 0.8996445
+-0.050127953 1.3566632 -2.0076044 -0.3430281 0.44582027 -0.8267866 0.350004 0.9094449
+0.15130138 1.1028212 -1.8612034 0.71217304 0.18423882 0.6773961 0.2626592 0.94234025
+0.17272587 1.0844145 -1.8929814 0.9541309 0.086973324 0.28647837 0.25361505 0.94478023
+0.15187073 1.1289787 -1.9903777 0.72849303 -0.1267787 -0.67322 0.27609164 0.94276375
+0.09257905 1.1183264 -2.0230582 0.2905741 -0.19713351 -0.9363253 0.27635702 0.93333185
+0.042985108 1.2055298 -2.0422392 0.07305205 -0.026999103 -0.99696267 0.30888554 0.92650914
+0.93510735 1.0437636 0.91956353 0.677683 0.31836408 0.6628651 0.8224908 0.33195662
+0.7800218 1.3971713 0.868092 0.60033923 0.4132003 0.6847323 0.7707547 0.31498438
+0.8603304 1.6738092 0.5751921 0.63291126 0.6325709 0.44640476 0.726369 0.40645424
+1.2994007 0.8104669 0.45464772 0.93106616 0.18015833 0.3172677 0.8470397 0.47494054
+1.3917295 0.59426 0.0068432535 0.9970742 -0.07642196 0.001669381 0.8706365 0.5744108
+1.2837882 0.44476038 -0.4343717 0.86720574 -0.40029845 -0.29616794 0.89766645 0.66224134
+1.0033246 0.3000229 -0.75210214 0.59770006 -0.6512723 -0.4675456 0.940339 0.72299385
+0.351041 1.6390647 -0.89452106 -0.28357622 0.56277436 0.7764468 0.5876003 0.85790575
+0.5710031 1.6390593 -0.7824896 -0.45501956 0.58612734 0.670382 0.655066 0.8243456
+0.092814 1.6390618 -0.94850135 -0.06511579 0.58439684 0.80885124 0.4999789 0.85188174
+-0.55681074 0.118799224 -0.84983116 -0.46759528 -0.5372656 -0.7019262 0.15374178 0.6583288
+-1.0459286 0.30001685 -0.6186236 -0.65118486 -0.65104514 -0.3899982 0.20315903 0.5789169
+-1.2832553 0.4446855 -0.26206446 -0.8989264 -0.40009323 -0.17848445 0.22445136 0.4942851
+-1.3324316 0.5942678 0.19671679 -0.9880374 -0.07682402 0.13371672 0.23649046 0.39472556
+-1.1853124 0.8104906 0.6161044 -0.88168603 0.18049748 0.43594766 0.25050107 0.28970248
+-0.76546127 1.0437561 1.0273592 -0.586245 0.31831536 0.74497795 0.26889545 0.1422564
+-0.61847436 1.3975233 0.95606494 -0.50702333 0.41311258 0.75648224 0.3770157 0.1322842
+-0.7364741 1.6738085 0.67529935 -0.5969534 0.6146739 0.51557976 0.41775966 0.24504325
+0.81228477 1.043766 1.0273979 0.56951845 0.31818923 0.75789464 0.8239912 0.2914059
+1.3795705 0.5942557 0.19474547 0.9888785 -0.07640335 0.1276006 0.86907184 0.5342185
+0.96993697 1.7061809 0.21327935 0.21566948 0.97552216 0.0429322 0.7246051 0.5162777
+0.9318202 1.6950785 -0.24165387 -0.8545147 0.46449488 0.23248467 0.7153263 0.64987767
+0.8916215 1.6884227 -0.36043704 -0.9355284 -0.08246132 0.3434922 0.7099234 0.6850091
+1.0914276 0.3000211 -0.6210122 0.6587962 -0.651212 -0.3767102 0.92909133 0.6954125
+0.6032909 0.11880202 -0.85010123 0.44872537 -0.58936906 -0.671781 0.011705842 0.7352587
+0.64991015 0.30001685 -1.0615208 0.38470134 -0.65110654 -0.6542669 0.0020890192 0.7662393
+-0.45504582 1.6888597 -0.8117126 0.5119284 0.19139077 0.8374359 0.4076269 0.724994
+0.1727533 0.83271813 -1.7481815 0.9332855 0.22927499 0.27642536 0.16157696 0.9199486
+0.15186991 0.8597339 -1.7308983 0.6637491 0.4517646 0.596109 0.17185542 0.9202498
+-0.0022435542 0.8908064 -1.7042718 -0.11455723 0.5922031 0.7976039 0.20851976 0.9028299
+-0.003318607 0.62629443 -1.6738396 -0.08912172 -0.79848486 -0.59538174 0.15837461 0.8707802
+-1.1165541 0.3000116 -0.47570226 -0.70596814 -0.6504781 -0.28015566 0.2054437 0.546011
+-1.2964492 0.59427065 0.37621573 -0.9632319 -0.07645643 0.25756273 0.23283681 0.35604805
+-0.62909013 1.0437534 1.1187947 -0.46626976 0.31820208 0.8254332 0.25639617 0.10308963
+-0.8944273 1.70618 0.3196373 -0.1913724 0.9785611 0.07612405 0.39542955 0.351829
+-0.8676254 1.6950041 -0.31660378 0.9268485 0.21421269 0.30832574 0.38356 0.5397457
+-0.6015684 1.68903 -0.71204454 0.63793784 0.07977822 0.76594436 0.3959546 0.6771858
+-0.76030886 1.6891152 -0.5340294 0.8211981 0.048709583 0.5685604 0.3866856 0.60994774
+-0.045783754 1.2740339 -2.031532 -0.30401585 0.11435825 -0.9457783 0.327372 0.9123534
+-0.061141685 1.1140083 -1.8362093 -0.39313543 0.22452794 0.89164555 0.28169328 0.90794176
+-0.002242626 1.0626979 -1.8029488 -0.08601123 0.36519384 0.9269495 0.2617978 0.9159303
+0.17710689 1.0170327 -1.9092469 0.9720044 -0.091856085 -0.21626358 0.22494194 0.9403597
+0.67590773 1.0437715 1.1188234 0.48465738 0.31809112 0.8148161 0.8262062 0.25068322
+0.5372416 1.3984692 1.0298185 0.40909263 0.41595185 0.8121744 0.76189876 0.23490636
+0.6908906 1.6738087 0.7677614 0.51557803 0.6146738 0.5969551 0.71680844 0.3350131
+1.1450307 0.8103162 0.7665565 0.8171496 0.18045238 0.5474518 0.8491803 0.39528048
+1.3438457 0.59425366 0.37429202 0.96241 -0.07621669 0.2606881 0.86860144 0.49497387
+1.3534079 0.44463095 -0.08563511 0.9145783 -0.3997602 -0.061141793 0.8883383 0.59003794
+0.9604242 1.7005188 -0.11909212 -0.78029895 0.62236094 0.061648514 0.7189672 0.6133101
+1.1623869 0.30001885 -0.4782323 0.6985244 -0.6507318 -0.29767725 0.92031527 0.6656936
+0.75240046 1.6390642 -0.6195225 -0.6301238 0.5626794 0.53510344 0.6939259 0.7691926
+0.6032909 0.11880202 -0.85010123 0.44872537 -0.58936906 -0.671781 1.0030916 0.72869766
+0.8864331 1.6390582 -0.41432923 -0.74074525 0.56552815 0.36259407 0.7149812 0.7037196
+-0.1848513 1.6390746 -0.9309358 0.1595758 0.5564255 0.81543005 0.43458605 0.8044536
+-0.420149 1.6390626 -0.85602874 0.37361875 0.5445601 0.7509083 0.40316474 0.7448584
+0.092498414 0.69787395 -1.7534287 0.25525808 -0.7312859 -0.63250625 0.15411791 0.8934298
+0.15227985 0.7210788 -1.7361515 0.6424904 -0.572907 -0.50890434 0.14409631 0.9023117
+0.09326837 0.91392785 -1.7304785 0.2774148 0.5184833 0.8088362 0.19948873 0.9192374
+-0.0955817 0.9279681 -1.7640961 -0.5735225 0.40979612 0.70932287 0.23258546 0.89324296
+-0.080171585 0.77125376 -1.8124642 -0.4462423 -0.61444926 -0.6506303 0.19931342 0.8829355
+-0.7542176 0.11880151 -0.6764733 -0.6326444 -0.537364 -0.5576746 0.1677765 0.6085763
+-1.168643 0.3000056 -0.32250932 -0.73065263 -0.650157 -0.2084289 0.20643434 0.5122849
+-1.306529 0.44463158 0.10133035 -0.91457903 -0.3997585 0.06114216 0.22140096 0.41831866
+-1.2384243 0.5942711 0.5458224 -0.9191904 -0.07683627 0.38624474 0.22765638 0.31863615
+-0.99339545 0.8103445 0.9027785 -0.7393426 0.18059081 0.64865977 0.23506218 0.21352899
+-0.4805904 1.0437543 1.1923953 -0.37037706 0.31799647 0.8727538 0.23003425 0.06571498
+-0.35448983 1.3994879 1.0858719 -0.29924813 0.41621774 0.8586113 0.4697102 0.06994735
+-0.54390496 1.6738088 0.8447387 -0.44640455 0.63256955 0.6329129 0.45671684 0.18964238
+-0.908923 1.6884265 -0.12612545 0.9455975 0.30330303 0.11769665 0.38312566 0.4821517
+-0.10429604 1.1050695 -1.8617474 -0.74734837 0.17486478 0.6410091 0.28140977 0.9010872
+0.15177988 0.99041355 -1.9450421 0.694849 -0.30526525 -0.6511512 0.2205838 0.9355509
+-0.02098179 1.0321329 -2.0070417 -0.1915997 -0.32965392 -0.92445546 0.25420392 0.9139817
+-0.045712322 1.1163943 -2.0226722 -0.32587445 -0.16963114 -0.9300705 0.2829442 0.9123806
+0.52740514 1.0437775 1.1924136 0.3573786 0.3208679 0.8771113 0.82953995 0.20964654
+1.286073 0.5942568 0.5439727 0.92157966 -0.07632585 0.38061163 0.8691423 0.4565053
+0.8574923 1.7081127 0.501205 0.068837434 0.9967834 0.0410425 0.72102094 0.42659163
+0.9640881 1.6950852 0.011064285 -0.8973028 0.44138545 0.005144538 0.72251856 0.5755899
+1.2148224 0.3000144 -0.32513958 0.73470587 -0.6503604 -0.1929728 0.91359663 0.63411325
+0.8007648 0.11880094 -0.6768506 0.6068192 -0.5889496 -0.5337684 0.97410107 0.6961486
+-0.7793039 1.6390554 -0.54850656 0.70968485 0.51610595 0.47956452 0.37838843 0.61276746
+-0.050331697 0.08221776 -1.0122828 -0.059610605 -0.52306193 -0.85020745 0.09861616 0.7257828
+-0.31768233 0.0822433 -0.9583365 -0.27784815 -0.5232454 -0.80561453 0.12927498 0.6952243
+-1.2008306 0.300002 -0.16041449 -0.7553407 -0.64960384 -0.08645968 0.20613039 0.47770053
+-1.1598804 0.5942711 0.7040105 -0.86342525 -0.07638958 0.49865976 0.22051457 0.2824815
+-0.32116503 1.0401602 1.2480917 -0.24447371 0.3137911 0.9174791 0.15845968 0.036823973
+-0.8041019 1.70701 0.5031031 -0.021071695 0.9980633 0.058529653 0.40848404 0.2961582
+-0.91707677 1.6882169 0.07447347 0.9579049 0.26509196 -0.11020215 0.38642603 0.42249554
+-0.116332136 1.2646401 -1.9874847 -0.79886484 0.0796449 -0.5962145 0.3236786 0.90181774
+0.09295388 1.0318686 -1.7966456 0.24305792 0.42355347 0.87265414 0.24023741 0.9299147
+0.09234176 0.9734661 -1.9742609 0.2890374 -0.41016114 -0.8650001 0.22631797 0.926111
+0.3453849 1.2594365 1.1669265 0.25191274 0.39037988 0.88551885 0.7797758 0.16995642
+0.47668225 1.6738276 0.9108526 0.3457385 0.6310644 0.6944225 0.6987512 0.26678047
+0.918371 0.8103474 1.0246814 0.64866006 0.1805922 0.7393421 0.8549764 0.31700122
+1.2077696 0.59426075 0.7022672 0.8618871 -0.076270916 0.50133175 0.8707031 0.41866988
+1.3301343 0.4446857 0.27775922 0.8989263 -0.4000934 0.17848478 0.88469285 0.51403046
+0.955222 1.6950837 0.14017753 -0.901067 0.41502446 -0.12582895 0.7240294 0.5372222
+1.2473593 0.30000815 -0.16310902 0.7539355 -0.6480573 -0.10771732 0.90862614 0.6007991
+0.8137766 1.6390581 0.5554113 -0.67212546 0.5862709 -0.45225394 0.72742605 0.40328735
+0.97850096 1.6390604 0.085862175 -0.80567294 0.58959603 -0.057163894 0.7314122 0.55403
+-0.6211516 1.6390601 -0.7274221 0.56716686 0.49883437 0.6553518 0.38675377 0.6804997
+0.22850965 0.08222909 -0.9949484 0.17322753 -0.48622125 -0.8564935 0.06040067 0.7394608
+-0.0032073455 0.7587573 -1.8287121 -0.09063972 -0.69379455 -0.7144463 0.18578342 0.8918899
+-0.9009739 0.11880072 -0.45726252 -0.7552487 -0.5372017 -0.37551793 0.17542432 0.5542337
+-1.2117472 0.30000284 0.009216302 -0.7603337 -0.6494285 -0.011636602 0.2044411 0.44219476
+-1.2369088 0.44475976 0.4500667 -0.867206 -0.40029785 0.2961683 0.21275958 0.34536695
+-1.0623406 0.59426856 0.84926015 -0.7884563 -0.07669505 0.6102905 0.21072568 0.24773009
+-0.7352703 0.81031424 1.1294383 -0.55302626 0.18154295 0.81314456 0.20035607 0.1430239
+-0.14211026 1.2594205 1.1981685 -0.13563862 0.39050275 0.91055465 0.7367424 0.05022887
+-0.31112948 1.6738327 0.960244 -0.25333068 0.639761 0.7256235 0.5221014 0.15630889
+-0.69324535 1.705586 0.66621846 -0.1541273 0.96959203 0.19009499 0.42852125 0.24680768
+-0.86775386 1.6947649 0.32288736 0.825119 0.47493875 -0.3059604 0.39643967 0.34887433
+-0.8853705 1.6410385 -0.30902764 0.7936305 0.5596947 0.23852164 0.37619823 0.5365642
+-0.13021572 1.0856917 -1.907158 -0.9953851 0.01983485 0.09388793 0.27796844 0.89708257
+-0.11946847 1.0978181 -1.9699652 -0.8173281 -0.13822408 -0.5593468 0.28030416 0.90066564
+1.1104544 0.5942632 0.8476544 0.7921663 -0.07648689 0.6054934 0.87338126 0.38136727
+0.93015987 1.6950794 0.26351663 -0.87690204 0.40906972 -0.25239813 0.7242763 0.49972084
+1.2586273 0.30000442 0.006478278 0.75985515 -0.65001833 0.009810083 0.9051932 0.56576633
+0.9623828 1.6410059 -0.16293061 -0.7878318 0.5975274 0.14927198 0.725572 0.62842274
+0.94765157 0.11879758 -0.45766333 0.7233115 -0.5900535 -0.35868827 0.9534835 0.65215254
+0.44561312 1.639059 0.87084186 -0.35775718 0.5692737 -0.7402279 0.6992627 0.26296425
+-0.05457756 1.639059 0.96290904 0.06512692 0.58801156 -0.8062263 0.6006683 0.15814152
+0.9258077 1.6390648 0.33544832 -0.7738933 0.56644154 -0.28325444 0.7316742 0.47733963
+0.48206767 0.08224002 -0.90942264 0.39476693 -0.45568284 -0.7978172 0.022647364 0.7329271
+-0.05109592 0.059807647 -0.9850721 -0.0278585 -0.8857905 -0.46324837 0.09707912 0.7190199
+-0.31108904 0.059824314 -0.9319244 -0.16059536 -0.88539493 -0.43621668 0.12663382 0.6895207
+-0.553738 0.082253784 -0.84072477 -0.4767875 -0.52369964 -0.70598334 0.1507213 0.65369403
+-1.2004795 0.30000684 0.17880301 -0.7516553 -0.6499023 0.1124336 0.20128646 0.40698892
+-0.9473288 0.59426665 0.98004967 -0.7061125 -0.07633618 0.70397294 0.19721995 0.21476683
+-0.0029414676 0.89722586 -1.9405683 -0.08805917 -0.53848773 -0.8380195 0.21901277 0.90698874
+0.3818046 0.9327633 1.2778714 0.2594672 0.2643199 0.92887664 0.85984546 0.1733515
+0.22704768 1.673856 0.9954774 0.14881657 0.62863576 0.7633286 0.6650467 0.20531285
+0.6316996 0.81048584 1.2165991 0.44210073 0.17889428 0.87894464 0.8671396 0.23960212
+0.99564254 0.59426695 0.97861546 0.70397294 -0.07633589 0.7061126 0.877378 0.34454972
+0.6818113 1.7055863 0.7245314 0.1900975 0.96959114 0.15412949 0.7109925 0.34566605
+1.2180336 0.44474998 0.6080289 0.8214877 -0.4007865 0.4056207 0.8860152 0.44075093
+1.2477103 0.3000035 0.17611045 0.7553415 -0.6496028 0.086459786 0.90324473 0.53024584
+0.19421732 1.6410056 0.94679046 -0.14927296 0.5975252 -0.7878333 0.66168624 0.20048526
+0.65080816 1.6390641 0.73680925 -0.53510404 0.56267655 -0.63012606 0.71768016 0.3315375
+0.80715436 1.6883981 0.53785574 -0.80193037 0.24422896 -0.54521555 0.72014856 0.40933836
+0.8908367 1.6884251 0.3780169 -0.9249085 0.04579585 -0.37742138 0.72392416 0.46290368
+-0.88568693 1.6396396 0.3027281 0.7584057 0.6139537 -0.21881904 0.38760626 0.35190713
+-0.93704855 1.639092 0.0075943843 0.8317092 0.5551332 0.009322383 0.37798128 0.44069678
+0.09228564 0.8329641 -1.8848516 0.27489418 -0.59582376 -0.75460404 0.18572791 0.91264224
+0.15192024 0.85334104 -1.8605547 0.7147256 -0.4233568 -0.5567193 0.1767126 0.92175514
+-0.07565109 0.8995878 -1.9182856 -0.48250148 -0.48867595 -0.7269031 0.22759733 0.8971156
+-0.98789406 0.11879445 -0.2017572 -0.827133 -0.53669876 -0.16674994 0.17749402 0.49656904
+-1.1679426 0.30001345 0.34083384 -0.73643166 -0.6502296 0.18673468 0.19660565 0.37332794
+-1.0841984 0.4448124 0.7581196 -0.76077497 -0.40089354 0.5103978 0.19637565 0.27821976
+-0.81636757 0.5942631 1.0948619 -0.60549456 -0.07648573 0.7921655 0.17835855 0.18437243
+-0.5049327 0.80808693 1.2503597 -0.38066542 0.18328202 0.9063671 0.14423707 0.09959388
+-0.32116503 1.0401602 1.2480917 -0.24447371 0.3137911 0.9174791 1.120868 0.037678167
+-0.15981968 0.9445862 1.3092185 -0.3989486 0.75241303 0.5241324 0.97361374 0.061942983
+-0.0475894 1.673875 1.0129703 -0.05235144 0.6291649 0.7755069 0.60319483 0.1616428
+-0.46991858 1.7081124 0.84190017 -0.041041452 0.9967831 0.06884103 0.4777652 0.19074252
+-0.1049901 0.9838308 -1.9418 -0.71432 -0.30211282 -0.6312487 0.2511641 0.8980028
+0.19089691 1.186658 1.2303085 0.122228935 0.36528826 0.9228351 0.79776704 0.12770903
+0.8648527 0.59426945 1.0936272 0.61029047 -0.07669198 0.7884566 0.8830383 0.30823648
+1.2155231 0.3000069 0.3382041 0.7306542 -0.6501548 0.2084302 0.9027065 0.49547347
+1.0347054 0.118794106 -0.20209469 0.7882368 -0.5935703 -0.16234875 0.940197 0.5997641
+0.6997237 0.08225137 -0.7645136 0.58640903 -0.45781326 -0.66823006 0.99055505 0.70891833
+0.48206767 0.08224002 -0.90942264 0.39476693 -0.45568284 -0.7978172 1.0134751 0.7287643
+0.2729403 1.6950784 0.9162281 -0.2324854 0.4644979 -0.854513 0.6684639 0.22824666
+0.39172405 1.6884224 0.87602925 -0.3434935 -0.082457274 -0.93552816 0.6855686 0.2572325
+0.5533804 1.6883998 0.79160744 -0.5817501 0.17510433 -0.79429555 0.7023461 0.3058412
+0.6889995 1.6950672 0.67800796 -0.6174096 0.4923722 -0.61349416 0.71291363 0.3566494
+-0.5241259 1.6390591 0.7981828 0.45708394 0.58794796 -0.66737664 0.4530578 0.18988124
+0.46759793 0.05982532 -0.8862934 0.20767291 -0.8857861 -0.41503608 0.024340479 0.7262165
+0.22043568 0.059815656 -0.9689146 0.07909864 -0.88510203 -0.45862585 0.06049446 0.7322935
+-0.16749732 0.03299553 -0.8752109 -0.039413672 -0.9817992 -0.18578738 0.10615084 0.6875897
+-0.5405655 0.0598326 -0.8168594 -0.25546017 -0.8850025 -0.38924384 0.14752346 0.6492876
+-0.74892044 0.08225116 -0.6684375 -0.6424488 -0.5238506 -0.55932117 0.16448535 0.6051896
+-1.1155082 0.30001873 0.49392647 -0.6959757 -0.6507815 0.30348167 0.1901878 0.3412431
+-0.6709799 0.59425926 1.1921775 -0.5044349 -0.08161278 0.8595841 0.1518211 0.15799889
+-0.31058767 0.7546499 1.3231856 -0.74769914 0.19260174 0.6354925 0.060376346 0.09549808
+0.017389765 1.187722 1.2406776 -0.0034968064 0.36224008 0.93207824 0.7963034 0.086349756
+-0.76032084 1.6883994 0.5377884 0.81732136 0.13847801 -0.559294 0.4124586 0.28243908
+0.7196025 0.5942711 1.1911676 0.4988722 -0.07608865 0.86332905 0.8909239 0.2725429
+0.5186947 1.7070104 0.83538884 0.03476506 0.99939305 0.002249302 0.69793415 0.29217616
+1.0285956 0.44480264 0.89138585 0.68894637 -0.40108898 0.6037222 0.8923864 0.36995867
+1.1634332 0.300012 0.49139646 0.7059685 -0.6504775 0.28015587 0.90348446 0.4614069
+-0.10889079 1.6950834 0.9396299 0.12582701 0.41502208 -0.9010683 0.5812108 0.1680985
+0.020221677 1.6950848 0.94849586 -0.0051446613 0.4413751 -0.897308 0.6169653 0.18082921
+-0.74926746 1.6390905 0.5856462 0.6740702 0.54330504 -0.5004488 0.40869692 0.26411596
+-0.30416387 1.6390644 0.9102148 0.2832615 0.5664472 -0.77388656 0.5180519 0.15466207
+-1.006112 0.11879355 0.079450674 -0.8422995 -0.53636956 0.053284034 0.17386448 0.43639725
+-1.0445492 0.3000216 0.6367062 -0.66194224 -0.6511037 0.3713442 0.18171889 0.3108757
+-0.86009926 0.44480246 1.0130032 -0.60372293 -0.40108803 0.6889462 0.16728054 0.21922782
+-0.51268595 0.59425527 1.2704804 -0.36214146 -0.08990027 0.92777777 0.11514859 0.13813944
+-0.6467211 1.6950669 0.67340755 0.6031099 0.52215004 -0.6030073 0.4328936 0.23768297
+0.35106364 0.7732608 1.3213917 0.7594776 0.21847361 0.6127504 0.8928435 0.17874672
+0.5614152 0.5942707 1.2697109 0.38746458 -0.07664855 0.9186927 0.9019443 0.23774533
+0.3352293 1.7061805 0.9257138 0.066579446 0.96694547 0.24613766 0.6762424 0.240712
+1.0928069 0.3000166 0.6343185 0.65118474 -0.6510455 0.38999775 0.9055772 0.428026
+1.0531384 0.118929155 0.0051182937 0.8299473 -0.5574951 0.019664947 0.9342299 0.556529
+0.8720118 0.08225419 -0.56933045 0.7389591 -0.45695427 -0.4951083 0.9663038 0.6716173
+0.67991734 0.059832525 -0.7457506 0.29829386 -0.8842896 -0.3592388 0.9934339 0.70346105
+0.46759793 0.05982532 -0.8862934 0.20767291 -0.8857861 -0.41503608 1.0148032 0.7237499
+-0.23223007 1.6950792 0.9145677 0.252398 0.40907076 -0.8769016 0.543087 0.16565736
+0.15037927 1.7005186 0.94483197 -0.06165332 0.62234724 -0.78030944 0.6456228 0.20294578
+-0.5065688 1.6883978 0.7915624 0.54521364 0.2442346 -0.80192983 0.4636531 0.19902518
+-0.34673038 1.6884246 0.8752446 0.37742057 0.04578843 -0.92490923 0.5066303 0.17211679
+0.3129514 0.0330065 -0.8487171 0.059723653 -0.98194623 -0.17948414 0.04425102 0.71032476
+-0.5942509 0.037374455 -0.6832741 -0.14278756 -0.97664493 -0.1605502 0.1470029 0.61795956
+-0.73015743 0.05983211 -0.6486305 -0.35923785 -0.8842905 -0.2982926 0.16110814 0.6019808
+-0.8938302 0.082239576 -0.4507805 -0.7652233 -0.5235699 -0.3745769 0.17199329 0.5520996
+-0.9564454 0.3000228 0.7677964 -0.5938839 -0.6512967 0.47235006 0.17077188 0.28251737
+-0.30133113 0.64961153 1.3357284 -0.70149463 -0.15060677 0.69657934 0.056724157 0.11606196
+-0.24995492 0.8793793 1.3086416 -0.613081 0.53109765 0.5848649 1.0290993 0.069496475
+-0.24995492 0.8793793 1.3086416 -0.613081 0.53109765 0.5848649 0.031415872 0.07017061
+-0.03695588 0.97967553 1.3079474 -0.086276144 0.8588921 0.50483733 0.91177213 0.07733829
+-0.1819904 1.7061807 0.9543455 -0.04293235 0.97552204 0.21567005 0.5601574 0.16579899
+0.17926827 0.9594544 1.307995 0.30958048 0.78875923 0.5310545 0.8744266 0.12511595
+0.30571604 0.8686211 1.3093572 0.60573775 0.5309248 0.5926219 0.8809192 0.1602133
+0.7737118 0.44481298 1.1154858 0.51003546 -0.4010711 0.76092434 0.9055455 0.30196273
+1.0050129 0.30002028 0.7655969 0.6090757 -0.65118456 0.45275295 0.9090684 0.39535284
+1.0347736 0.11879476 0.21745141 0.8271196 -0.5344722 0.17381765 0.93193865 0.5107813
+-0.95234126 0.118795164 0.34952456 -0.7993451 -0.53691685 0.26975495 0.16420986 0.37993538
+-0.85257345 0.30002248 0.88582504 -0.543939 -0.6514099 0.52895683 0.15681028 0.25665724
+-0.5767401 0.44474828 1.2024413 -0.40723163 -0.39826483 0.8219169 0.11739838 0.1756522
+0.08138988 1.7061814 0.97380483 0.0054060225 0.9684998 0.24895594 0.6305673 0.18948299
+0.38641644 0.5737355 1.3260057 0.24990632 -0.09694528 0.96340466 0.9205624 0.20671281
+0.90141755 0.3000228 0.88386023 0.5289571 -0.6514102 0.54393846 0.914134 0.3634692
+0.9896236 0.08224336 -0.3332743 0.8436938 -0.45338723 -0.28743818 0.9496427 0.6246412
+0.84814644 0.059832968 -0.5561582 0.38924524 -0.8850015 -0.25546142 0.9696953 0.66739136
+0.7145612 0.03737477 -0.60984343 0.16055058 -0.9766448 -0.14278778 0.00466474 0.6968733
+0.67991734 0.059832525 -0.7457506 0.29829386 -0.8842896 -0.3592388 0.0010359646 0.70697594
+-0.46575898 0.015557987 -0.5344669 -0.049939163 -0.997203 -0.055607144 0.1295646 0.5991937
+-0.87070054 0.059824992 -0.43631175 -0.41503373 -0.88578707 -0.20767337 0.16843033 0.5503728
+-0.97935545 0.082228154 -0.19722213 -0.8365695 -0.52304375 -0.1630235 0.17396149 0.495718
+-0.7343107 0.30002075 0.9894209 -0.45275304 -0.65118414 0.60907614 0.13924164 0.2340366
+-0.26821455 0.58004856 1.3408854 -0.57844615 -0.38761654 0.7177419 0.049634315 0.12772693
+-0.23854086 0.9368254 1.4950178 -0.7574206 0.6064358 -0.24197035 0.98799556 0.05256421
+-0.11657804 0.993846 1.4253682 -0.35042202 0.88275445 -0.312968 0.9244236 0.060714968
+0.02343951 1.0082848 1.4138813 0.015965637 0.93062675 -0.3656216 0.87569815 0.08405379
+0.1716484 0.9868551 1.4172457 0.35170946 0.8858485 -0.30260992 0.86308634 0.11680955
+0.28561607 0.93589926 1.4933739 0.67326033 0.6983603 -0.24292646 0.8626927 0.14038087
+0.35627562 0.67886376 1.3302113 0.77710396 -0.04378903 0.62784714 0.9094556 0.18796468
+0.3005929 0.5591035 1.3406367 0.5027922 -0.44275767 0.7424053 0.9328412 0.19234224
+0.45560914 0.45321742 1.2763294 0.30233395 -0.39084107 0.86938924 0.9304708 0.23694636
+0.78338903 0.30002385 0.9877331 0.47235066 -0.6512959 0.5938843 0.9210572 0.33253777
+0.9478534 0.11880107 0.4729569 0.7535136 -0.5386016 0.3769955 0.9337046 0.4526049
+0.05290176 0.009341659 -0.6226395 0.0021595194 -0.9984392 -0.05580811 0.06918667 0.64846075
+-0.8342381 0.11879878 0.5880978 -0.7019278 -0.53726125 0.46759796 0.1477781 0.3304975
+-0.60303146 0.30001727 1.0772156 -0.38999805 -0.6510452 0.65118486 0.11758165 0.21568888
+-0.33079642 0.44882807 1.2942096 -0.2685397 -0.37256968 0.8883007 0.06517966 0.15940702
+-0.26700586 0.91420513 1.6028824 -0.96313137 0.26849186 -0.017036166 0.024783935 0.06399959
+-0.23854086 0.9368254 1.4950178 -0.7574206 0.6064358 -0.24197035 0.022717228 0.062015295
+0.300248 0.9607661 1.659674 0.96805775 0.21774086 0.12431079 0.85049397 0.13513921
+0.652299 0.3000218 1.0758358 0.37134337 -0.65110403 0.6619423 0.9302535 0.30283427
+1.0435697 0.08221803 -0.06592431 0.87150615 -0.4864577 -0.06193376 0.93956906 0.57021624
+0.96321094 0.059824612 -0.32668257 0.4362134 -0.8853963 -0.16059661 0.9532609 0.6219051
+0.7145612 0.03737477 -0.60984343 0.16055058 -0.9766448 -0.14278778 0.9878628 0.67414516
+0.5657532 0.015558217 -0.48135206 0.056622326 -0.9970706 -0.05142218 0.009285603 0.6562987
+-0.8331249 0.03300625 -0.28166395 -0.17948449 -0.9819463 -0.05972348 0.1595816 0.5208753
+-0.9533219 0.05981528 -0.18914744 -0.4586208 -0.885105 -0.079096034 0.1703323 0.49536115
+-0.99669015 0.08221763 0.08161961 -0.85020524 -0.52306545 0.059611905 0.17023937 0.43694377
+-0.46011025 0.3000119 1.1478409 -0.27881098 -0.6542879 0.70297354 0.0917953 0.20290676
+-0.22779876 0.53590405 1.341137 -0.45738187 -0.5154124 0.7246736 0.037925575 0.1406532
+-0.16082466 0.49030796 1.3423923 -0.27769044 -0.65801114 0.6999353 0.02408451 0.15310602
+-0.29838207 0.7491861 1.4882393 -0.9754545 -0.11510383 0.18772174 0.041587517 0.08715959
+-0.11753322 1.031781 1.5066577 -0.3482694 0.7846437 -0.5128768 0.89762306 0.05502879
+0.023784624 1.0695803 1.5290787 -0.018545028 0.7704709 -0.6372054 0.84465134 0.07873442
+0.15620223 1.0543128 1.5365474 0.3461242 0.7269931 -0.5930254 0.8398113 0.106518894
+0.20792225 0.49052173 1.3421981 0.29381034 -0.6531096 0.6979422 0.9545424 0.18966609
+0.5095196 0.30001822 1.1467938 0.30367562 -0.6481849 0.69831043 0.94229674 0.27479863
+0.80109686 0.118801974 0.6921682 0.6222849 -0.5593877 0.5475829 0.9411439 0.39736885
+-0.267814 -7.903695e-05 0.058759205 -0.014826651 -0.99988675 0.0025810385 0.07982181 0.48698
+-0.6608812 0.11880147 0.7855041 -0.557676 -0.53736377 0.63264334 0.12326829 0.2905175
+-0.24548951 0.2903248 1.2079035 -0.16118349 -0.67230684 0.7225118 0.05319361 0.20305538
+-0.15712076 0.3610921 1.278753 -0.10342326 -0.5610246 0.821313 0.029864682 0.1829566
+-0.2643062 0.9047255 1.6497712 -0.95986694 0.063469894 0.27317932 0.02099512 0.06611339
+0.3243607 0.83986545 1.6135018 0.95260024 -0.04406177 0.30101737 0.8797976 0.14915228
+0.20062336 0.36484453 1.2822535 0.113713086 -0.5518254 0.8261707 0.9701077 0.2126197
+0.3564262 0.30001375 1.1992296 0.1922566 -0.65990055 0.7263393 0.9579313 0.24911647
+1.0262349 0.082228504 0.2129178 0.8336552 -0.5261227 0.16797003 0.93548506 0.5114485
+1.0163591 0.059807908 -0.06669014 0.46325153 -0.8857888 -0.027860155 0.9432408 0.56901294
+0.90649796 0.032995813 -0.18308999 0.18578757 -0.9817992 -0.039414044 0.95797443 0.5893675
+0.32357994 8.908119e-07 -0.04430827 0.015259005 -0.9998801 -0.0026702227 0.028216114 0.5279245
+-0.9694796 0.059807435 0.08238242 -0.46325004 -0.88578975 0.027857272 0.16657166 0.4380747
+-0.9427431 0.0822428 0.34897104 -0.80561197 -0.52324826 0.27784994 0.16054389 0.381997
+-0.16082466 0.49030796 1.3423923 -0.27769044 -0.65801114 0.6999353 1.0247798 0.15661404
+-0.15712076 0.3610921 1.278753 -0.10342326 -0.5610246 0.821313 1.0298647 0.1829566
+0.019480878 0.37236822 1.2998635 -0.007495285 -0.5606672 0.8280073 0.9966049 0.19159634
+0.02425789 0.4495198 1.338842 -0.0024945622 -0.7214028 0.69251114 0.98930275 0.17481327
+-0.078982666 0.46021366 1.3368335 -0.16268705 -0.7141415 0.680834 1.0083582 0.16438743
+-0.24788877 0.6890031 1.5823387 -0.7435987 -0.46765542 0.47786975 0.01768047 0.09513326
+-0.25720796 0.8231269 1.6537575 -0.83365804 -0.21651146 0.50807196 0.020187318 0.07552176
+-0.18069129 1.0745118 1.6120213 -0.5484398 0.6116161 -0.5702101 0.8776393 0.03989821
+-0.10018518 1.1102719 1.5884832 -0.28193444 0.60136694 -0.74757665 0.84095573 0.053258877
+-0.19962151 1.1020174 1.6692796 -0.71058565 0.46169123 -0.53095126 0.85897744 0.03842187
+-0.26700586 0.91420513 1.6028824 -0.96313137 0.26849186 -0.017036166 0.98452926 0.05211184
+0.25154436 1.0567863 1.6208299 0.7580732 0.49962223 -0.419169 0.8333796 0.123133555
+0.32765195 0.68810844 1.5039129 0.8811482 -0.3578383 0.30907845 0.9062468 0.16944145
+0.12445844 0.4597369 1.3368949 0.17091094 -0.72518474 0.66700584 0.9705882 0.1843482
+0.60369 0.11879907 0.8655251 0.46759787 -0.5372592 0.7019293 0.9551114 0.34648752
+-0.6070471 0.009341511 -0.021614991 -0.058667447 -0.9982712 -0.0035690207 0.1286795 0.47774857
+-0.44167092 0.11880086 0.93226045 -0.37528303 -0.5370112 0.75550085 0.09003194 0.26410693
+-0.192009 0.5880472 1.5250467 -0.53545296 -0.7190021 0.44308704 0.014737048 0.11929629
+0.07696954 1.1923153 1.6255885 0.1137618 0.47988096 -0.86992675 0.79521275 0.08756951
+0.23937999 0.5897407 1.5270116 0.5305283 -0.710462 0.4623674 0.93098885 0.16544151
+0.94070965 0.08224014 0.46647504 0.7682774 -0.51965165 0.3737807 0.93716276 0.45458943
+1.0002018 0.05981586 0.20484166 0.45862043 -0.8851053 0.07909467 0.93913555 0.5117389
+0.5657532 0.015558217 -0.48135206 0.056622326 -0.9970706 -0.05142218 0.99783933 0.640623
+-0.8596179 0.032995336 0.19878523 -0.18578702 -0.98179924 0.03941407 0.15202224 0.41760615
+-0.91633075 0.05982407 0.3423783 -0.4362125 -0.88539696 0.16059557 0.15690833 0.38467845
+-0.825133 0.082253985 0.58502406 -0.7059868 -0.5236949 0.47678736 0.14421701 0.3340978
+0.15917301 1.1756966 1.6403203 0.3942839 0.48989397 -0.77752435 0.800063 0.10358047
+0.27247238 0.7579822 1.6647537 0.6722502 -0.3985169 0.6239102 0.895252 0.14458385
+0.10626299 0.24436279 1.1843089 0.040959552 -0.72129446 0.69141644 0.99614376 0.23219824
+0.36511618 0.11879548 0.9836285 0.26975363 -0.5369171 0.79934543 0.9772991 0.30260828
+0.65392655 0.009341805 0.03730923 0.058859013 -0.9982597 0.0036215517 0.98118126 0.52992237
+-0.18616518 0.11879452 1.0191809 -0.16643573 -0.53591985 0.8277011 0.050173834 0.2562365
+0.10626299 0.24436279 1.1843089 0.040959552 -0.72129446 0.69141644 0.00814436 0.22405156
+0.019480878 0.37236822 1.2998635 -0.007495285 -0.5606672 0.8280073 0.0029977264 0.20809662
+-0.078982666 0.46021366 1.3368335 -0.16268705 -0.7141415 0.680834 0.008653378 0.16413386
+-0.07510188 0.54567724 1.5366232 -0.19089821 -0.8373103 0.5123175 0.9909069 0.1349066
+-0.192009 0.5880472 1.5250467 -0.53545296 -0.7190021 0.44308704 1.0072939 0.124720424
+-0.11320118 0.64752257 1.6503217 -0.2981791 -0.66078454 0.6888056 0.9821185 0.108832315
+-0.24788877 0.6890031 1.5823387 -0.7435987 -0.46765542 0.47786975 1.0086749 0.089490056
+-0.16665137 0.7800166 1.7204527 -0.47440672 -0.42741844 0.76957893 0.9722822 0.08089945
+-0.25720796 0.8231269 1.6537575 -0.83365804 -0.21651146 0.50807196 1.0013709 0.06843192
+-0.21862273 0.97555107 1.745161 -0.8112236 -0.053253315 0.58230597 0.9312191 0.047337655
+-0.2643062 0.9047255 1.6497712 -0.95986694 0.063469894 0.27317932 0.9835572 0.054165266
+-0.13000561 1.2205523 1.6696383 -0.4808207 0.417548 -0.7710157 0.7704978 0.04829276
+-0.0152173815 1.2451919 1.6454502 -0.116383865 0.3788277 -0.9181201 0.77006364 0.07060939
+0.7931933 0.07086173 0.6782372 0.5569627 -0.68479425 0.46994612 0.9456291 0.40174264
+0.91758025 0.05982536 0.4520053 0.41459462 -0.8870803 0.20297733 0.9407612 0.45627543
+0.8800043 0.033006627 0.29735792 0.17948453 -0.98194623 0.059723217 0.949846 0.4861468
+-0.8012676 0.059832525 0.57185113 -0.389244 -0.88500243 0.25545996 0.14078286 0.33831108
+-0.6528442 0.08225095 0.780208 -0.55932015 -0.5238506 0.6424496 0.120153844 0.29564327
+0.078951955 0.53737915 1.5401113 0.1136213 -0.84909356 0.5158781 0.96196365 0.15118504
+-0.16948636 0.933222 1.7792666 -0.55017525 -0.23986265 0.79985815 0.92791 0.059126325
+-0.14193061 1.3816079 1.8129356 -0.9806211 0.19528137 0.015733398 0.7059092 0.0602891
+0.2109338 1.2106109 1.6942275 0.72265047 0.39150146 -0.5696515 0.79371023 0.1124961
+0.09504225 0.11879364 1.0373988 0.053417124 -0.5391922 0.84048706 1.0095878 0.27026922
+0.65392655 0.009341805 0.03730923 0.058859013 -0.9982597 0.0036215517 0.006635111 0.5502757
+0.09504225 0.11879364 1.0373988 0.053417124 -0.5391922 0.84048706 0.010118984 0.27173066
+0.0234396 0.63065225 1.6565068 -0.0043023974 -0.7040536 0.7101339 0.9548465 0.1254378
+-0.024409406 0.74088794 1.7409962 -0.08344183 -0.5230442 0.84821117 0.94234973 0.10155833
+-0.09351798 0.90181804 1.8040954 -0.24533775 -0.3265284 0.9127917 0.9148942 0.07291348
+0.16101281 0.6488754 1.6512141 0.29877883 -0.65574056 0.6933509 0.9290308 0.14041883
+0.6006169 0.08225434 0.85641986 0.4744638 -0.521518 0.7091565 0.9581758 0.35108936
+-0.6676807 0.03737438 0.6255383 -0.16054972 -0.976645 0.14278765 0.122613296 0.33127278
+-0.63303703 0.059832104 0.7614454 -0.2982918 -0.88429075 0.35923794 0.11721027 0.30114627
+-0.43518695 0.08223949 0.9251175 -0.37457377 -0.5235713 0.7652239 0.08795343 0.2705322
+-0.1361779 1.3371797 1.8652642 -0.90707225 -0.0075176666 0.42090788 0.7206092 0.05729463
+0.26310432 0.98280483 1.7487981 0.8022419 -0.07237982 0.59259516 0.84774965 0.12397552
+0.15118423 0.75633645 1.7342501 0.2667997 -0.49315006 0.82802224 0.90906703 0.123698026
+0.06571236 0.89168143 1.8134649 0.08201508 -0.35124153 0.93268585 0.8884691 0.09684041
+-0.10375385 1.3219061 1.9012297 -0.63644016 -0.21659233 0.74029166 0.7337785 0.061232284
+0.3645637 0.08224325 0.97403014 0.27785155 -0.5232476 0.8056118 0.9797741 0.3084783
+0.5874454 0.059832793 0.83255357 0.25019524 -0.88658875 0.3890535 0.9614298 0.35555312
+0.6411311 0.0373747 0.6989676 0.15361488 -0.9741731 0.16549683 0.96210706 0.3876406
+-0.51887435 0.015557976 0.49704596 -0.056561127 -0.9970781 0.05134228 0.108620495 0.36098602
+-0.42071757 0.059825003 0.9019881 -0.20767131 -0.8857876 0.41503373 0.08619282 0.27736655
+-0.18162851 0.08222829 1.0106426 -0.1630221 -0.52304363 0.8365699 0.04972796 0.2633428
+-0.05258019 1.3122818 1.9291797 -0.32236737 -0.33986393 0.8834997 0.74697006 0.068518676
+-0.06076968 1.4828637 1.7461896 -0.4605093 0.44202393 -0.7697701 0.6851326 0.0792802
+-0.1001644 1.5509489 1.8538234 -0.8251584 0.42552376 -0.37154135 0.6635486 0.087631434
+0.050255213 1.449292 1.7163594 0.10782897 0.39809215 -0.910986 0.7127924 0.09624627
+0.1220081 1.474428 1.7549484 0.5435823 0.42694983 -0.72265625 0.71703374 0.10972002
+0.16332494 1.5078211 1.8682543 0.9622954 0.24859825 -0.11039245 0.72064126 0.11600459
+0.19457108 0.92353225 1.7906046 0.45068246 -0.27716884 0.84856516 0.8664504 0.114961214
+0.050973542 1.3079153 1.9385996 0.102536045 -0.38795987 0.91595495 0.7584554 0.084766865
+0.097212024 0.08221799 1.0279773 0.05961242 -0.52305984 0.8502087 1.0020937 0.28290224
+0.3579707 0.059824385 0.9476178 0.16059598 -0.8853962 0.43621388 0.9824674 0.31430203
+0.51263946 0.01555821 0.5501603 0.049951337 -0.997201 0.05563205 0.97984743 0.4072153
+-0.26607075 0.033006325 0.86441165 -0.059722867 -0.98194635 0.17948428 0.065994516 0.29359323
+-0.17355272 0.059815552 0.9846096 -0.07909461 -0.8851043 0.45862246 0.049602073 0.27068478
+0.097212024 0.08221799 1.0279773 0.05961242 -0.52305984 0.8502087 0.010874764 0.2771328
+-0.10471385 1.4867496 1.9672115 -0.82100654 -0.28240198 0.49618283 0.6832024 0.07649769
+0.13015717 1.5596071 1.8278702 0.6941628 0.5188444 -0.49893734 0.7022272 0.11630611
+0.21437325 1.252835 1.8127389 0.88830954 0.050359752 0.45647576 0.773759 0.11052422
+0.1349504 1.3197984 1.9139618 0.5534558 -0.25927168 0.7914954 0.76089746 0.09917171
+-0.034438137 1.5614831 1.7860538 -0.36891752 0.60290545 -0.70739293 0.67210484 0.095783524
+0.046039913 1.5617199 1.7744447 0.14934604 0.60427624 -0.7826532 0.6872533 0.10680348
+0.09797596 0.059807725 1.0007666 0.027859287 -0.88578963 0.46324998 1.0043076 0.2893865
+0.21437825 0.03299557 0.8909046 0.039414313 -0.98179924 0.185787 0.9997717 0.31875882
+0.09797596 0.059807725 1.0007666 0.027859287 -0.88578963 0.46324998 0.012433548 0.28406644
+-0.10236957 1.6601003 2.0677333 -0.9330978 0.35961676 0.0020848594 0.65457666 0.09493222
+-0.08605082 1.568438 2.0625153 -0.8139494 -0.40681753 0.414712 0.6728004 0.08640602
+-0.041282956 1.4725394 2.0225692 -0.40283307 -0.55008656 0.7315261 0.7005047 0.082337916
+0.32357994 8.908119e-07 -0.04430827 0.015259005 -0.9998801 -0.0026702227 1.0057929 0.46996826
+-0.0060220635 0.009341653 0.6383341 -0.0021773847 -0.9984397 0.055797476 0.04141562 0.35654837
+0.046714686 1.4694996 2.0333884 0.11844444 -0.6104027 0.7831854 0.7152771 0.09342489
+0.21437825 0.03299557 0.8909046 0.039414313 -0.98179924 0.185787 0.013314394 0.30861285
+0.1186981 1.4747397 2.0027006 0.5804413 -0.47744548 0.65964675 0.7224884 0.104023114
+-0.035708997 1.5648086 2.115774 -0.3419636 -0.7632996 0.548119 0.685135 0.090783246
+-0.07401888 1.6548247 1.9364653 -0.65817714 0.68104106 -0.32091418 0.6554768 0.10039595
+-0.092562184 1.6700922 2.1979017 -0.9669006 0.082957454 0.24129081 0.66094816 0.09457934
+-0.05520356 1.6808217 2.3022392 -0.81168526 0.11497714 0.5726669 0.67023504 0.09762179
+0.045618545 1.563633 2.128546 0.14244813 -0.8093766 0.56975275 0.69851214 0.099748686
+0.16312735 1.4525598 1.9207544 0.93979883 -0.041933786 0.33914548 0.7310855 0.11061789
+-0.0060220635 0.009341653 0.6383341 -0.0021773847 -0.9984397 0.055797476 1.008975 0.3731629
+0.13632406 1.5666125 2.0636342 0.78608865 -0.45581526 0.41748908 0.7068112 0.1115801
+-0.02377089 1.6676809 1.9068271 -0.2777247 0.8586703 -0.4307599 0.66103554 0.10672435
+0.046491656 1.6474826 1.8631732 0.14775084 0.78869987 -0.5967598 0.67454684 0.114199296
+-0.01231475 1.6774539 2.334932 -0.37684715 -0.5498762 0.74540085 0.6775614 0.1002444
+0.07208405 1.6763514 2.3273487 0.38708767 -0.63448757 0.6690208 0.68844455 0.107599385
+0.10702443 1.6498383 1.909836 0.5728922 0.705167 -0.41777274 0.68508065 0.12022652
+0.13675506 1.6706548 2.0202556 0.6899195 0.7097548 -0.14233533 0.6887903 0.121841475
+0.51263946 0.01555821 0.5501603 0.049951337 -0.997201 0.05563205 0.002489133 0.40105778
+0.12681217 1.6715994 2.2434146 0.9196396 -0.02230809 0.39212936 0.6950637 0.11515421
+0.024489984 1.6868597 2.3553615 0.1109336 0.15195152 0.98214275 0.68191314 0.10423266
+0.14904262 1.6629648 2.129228 0.9653483 0.2470969 0.083938986 0.6951387 0.120165974
+0.013497298 1.6765794 1.9208583 -0.015702538 0.97643965 -0.21521866 0.6667152 0.111996174
+0.07515714 1.6775577 1.9435898 0.15239777 0.97695476 -0.14944725 0.67839 0.11883555
+-0.079917684 1.6874342 2.1946464 -0.29387432 0.9558123 0.0078054564 0.6591545 0.096556745
+-0.076415874 1.6807529 2.0421045 -0.30025354 0.94874126 -0.09868107 0.6551869 0.1005799
+0.08835412 1.6902534 2.3223107 0.66442573 0.5007882 0.5547519 0.68892753 0.110719785
+-0.011774483 1.6934222 2.3359318 -0.3585756 0.767221 0.5317852 0.6754353 0.10084474
+0.12859674 1.686814 2.1867743 0.36082104 0.931945 0.035868943 0.69209236 0.11888718
+0.02234845 1.6753298 1.9481443 -0.08874891 0.9646178 0.24826646 0.6695055 0.11244151
+-0.04541487 1.6728067 2.0182877 0.80905527 0.5159834 0.28140828 0.65978134 0.10301311
+0.049119227 1.6857455 2.3077416 -0.07240278 0.98167646 -0.17626423 0.6838405 0.10652727
+0.002972571 1.6707135 1.9543043 0.44612837 0.29525754 0.84486234 0.66625226 0.10904685
+0.058318462 1.6707753 1.9623501 -0.5816681 0.4384945 0.6851166 0.67627454 0.115739666
+-0.050677057 1.674166 2.199432 0.5285301 0.8225281 -0.21000801 0.66736096 0.0986426
+-0.058631964 1.6714963 2.0948064 0.97539204 0.20357357 0.08466432 0.6610199 0.099692166
+0.098035656 1.6744944 2.1967893 -0.5293027 0.82365745 -0.20353639 0.68947494 0.1137353
+0.10666898 1.6717232 2.1086257 -0.86167955 0.5062396 0.035066746 0.6882302 0.117041595
+0.0918873 1.6727524 2.017068 -0.95927596 -0.121700734 0.25490898 0.68340147 0.11822277
+-0.022561306 1.6681252 1.9745932 0.50083363 -0.7702286 0.39485887 0.6628245 0.10603843
+0.08456524 1.6396514 2.1486619 -0.49141815 0.86019737 -0.13626751 0.69022506 0.1092011
+-0.010041372 1.6391695 2.185331 0.22715555 0.94847506 -0.22089653 0.67939335 0.10008923
+-0.05505234 1.6390067 2.0783894 0.7098428 0.7028163 0.04661016 0.6674889 0.09749396
+-0.030087573 1.6390054 1.9475452 0.6460368 0.39400306 0.65375686 0.6669351 0.10325063
+0.0963931 1.6389829 1.9968811 -0.7809922 0.5310517 0.3286871 0.68748736 0.11503552
+0.044547193 1.6390631 1.9208456 -0.26333243 0.31176257 0.91294026 0.6773752 0.11130737
3 0 1 2
3 2 3 0
3 2 4 3
-3 4 2 5
-3 2 1 6
-3 7 8 4
-3 4 5 7
-3 6 5 2
-3 9 7 5
-3 5 6 9
-3 10 11 7
-3 4 12 3
-3 8 7 11
-3 13 6 1
-3 8 14 12
-3 12 4 8
-3 7 9 10
-3 3 15 0
-3 16 9 6
-3 6 13 16
-3 17 10 9
-3 18 11 10
-3 11 19 8
-3 15 3 12
-3 20 1 0
-3 10 21 18
-3 14 8 19
-3 12 22 15
-3 1 20 23
-3 23 13 1
-3 21 10 17
-3 18 21 24
-3 24 25 18
-3 14 26 22
-3 22 12 14
-3 27 0 15
-3 13 23 28
-3 9 16 17
-3 29 24 21
-3 30 16 13
-3 13 28 30
-3 31 17 16
-3 32 33 25
-3 25 24 32
-3 19 34 14
-3 15 35 27
-3 36 32 24
-3 24 29 36
-3 11 18 37
-3 37 19 11
-3 26 14 34
-3 35 15 22
-3 23 20 38
-3 31 39 21
-3 21 17 31
-3 25 40 37
-3 37 18 25
-3 26 41 35
-3 35 22 26
-3 38 28 23
-3 16 30 31
-3 42 29 21
-3 21 39 42
-3 43 30 28
-3 28 38 43
-3 44 31 30
-3 45 46 33
-3 33 32 45
-3 33 47 40
-3 40 25 33
-3 34 19 48
-3 34 48 26
-3 35 49 27
-3 50 36 29
-3 29 42 50
-3 51 45 32
-3 32 36 51
-3 40 52 37
-3 37 48 19
-3 41 26 48
-3 53 38 20
-3 39 31 44
-3 54 37 52
-3 48 55 41
-3 41 56 49
-3 49 35 41
-3 30 43 44
-3 57 42 39
-3 58 59 46
-3 46 45 58
-3 47 60 52
-3 52 40 47
-3 48 37 54
-3 61 43 38
-3 38 53 61
-3 62 44 43
-3 63 58 45
-3 45 51 63
-3 64 65 58
-3 46 66 47
-3 47 33 46
-3 67 27 49
-3 27 20 0
-3 44 68 39
-3 69 50 42
-3 42 57 69
-3 70 51 36
-3 36 50 70
-3 71 64 58
-3 59 58 65
-3 52 72 54
-3 54 55 48
-3 56 41 55
-3 49 73 67
-3 20 27 67
-3 67 53 20
-3 68 44 62
-3 39 68 57
-3 58 63 71
-3 65 74 59
-3 55 75 56
-3 56 76 73
-3 73 49 56
-3 53 67 73
-3 43 61 62
-3 77 57 68
-3 78 71 63
-3 59 79 66
-3 66 46 59
-3 66 80 60
-3 60 47 66
-3 81 82 72
-3 72 52 81
-3 76 61 53
-3 53 73 76
-3 83 62 61
-3 84 63 51
-3 51 70 84
-3 74 85 59
-3 86 69 57
-3 57 77 86
-3 87 70 50
-3 50 69 87
-3 88 78 63
-3 79 59 85
-3 85 89 79
-3 72 90 91
-3 91 54 72
-3 55 54 91
-3 55 92 75
-3 76 56 75
-3 83 93 68
-3 68 62 83
-3 94 84 70
-3 84 88 63
-3 89 95 79
-3 79 96 80
-3 80 66 79
-3 92 55 91
-3 75 92 76
-3 61 76 83
-3 97 77 68
-3 68 93 97
-3 98 99 82
-3 82 81 98
-3 82 100 90
-3 90 72 82
-3 92 83 76
-3 101 94 70
-3 70 87 101
-3 84 94 102
-3 84 102 88
-3 96 79 95
-3 103 86 77
-3 77 97 103
-3 104 87 69
-3 69 86 104
-3 90 105 91
-3 106 102 94
-3 94 101 106
-3 96 95 107
-3 96 107 80
-3 98 108 99
-3 93 91 105
-3 105 97 93
-3 107 109 80
-3 99 110 100
-3 100 82 99
-3 100 111 105
-3 105 90 100
-3 92 91 93
-3 93 83 92
-3 112 101 87
-3 87 104 112
-3 113 106 101
-3 108 98 114
-3 111 103 97
-3 97 105 111
-3 115 104 86
-3 86 103 115
-3 114 116 108
-3 117 113 101
-3 101 112 117
-3 108 118 110
-3 110 99 108
-3 116 119 108
-3 110 120 111
-3 111 100 110
-3 121 112 104
-3 104 115 121
-3 122 117 112
-3 118 108 119
-3 120 115 103
-3 103 111 120
-3 119 123 118
-3 124 122 112
-3 112 121 124
-3 118 125 120
-3 120 110 118
-3 123 119 126
-3 123 126 118
-3 125 121 115
-3 115 120 125
-3 127 124 121
-3 125 118 126
-3 128 127 121
-3 126 129 125
-3 121 125 128
-3 129 128 125
-3 130 131 132
-3 133 130 134
-3 130 132 134
-3 135 136 133
-3 133 134 135
-3 134 132 135
-3 136 137 133
-3 138 135 132
-3 130 133 139
-3 140 133 137
-3 141 139 133
-3 131 130 142
-3 131 138 132
-3 137 143 140
-3 141 144 145
-3 146 144 141
-3 139 147 130
-3 130 148 149
-3 149 142 130
-3 138 131 150
-3 146 140 143
-3 151 145 144
-3 139 141 152
-3 147 153 130
-3 131 154 155
-3 155 150 131
-3 136 135 156
-3 156 157 136
-3 137 136 157
-3 158 151 144
-3 144 159 158
-3 145 152 141
-3 148 130 153
-3 148 160 161
-3 161 149 148
-3 142 149 162
-3 143 163 146
-3 157 164 143
-3 143 137 157
-3 146 165 166
-3 144 146 166
-3 165 146 163
-3 167 158 159
-3 159 168 167
-3 159 144 169
-3 169 170 159
-3 166 169 144
-3 152 145 171
-3 172 173 147
-3 147 139 172
-3 153 174 148
-3 160 175 176
-3 176 161 160
-3 149 161 177
-3 177 162 149
-3 178 142 162
-3 179 165 163
-3 163 143 164
-3 145 151 171
-3 180 172 139
-3 139 152 180
-3 173 181 153
-3 153 147 173
-3 182 142 183
-3 154 131 142
-3 182 154 142
-3 154 182 184
-3 184 155 154
-3 138 156 135
-3 185 186 156
-3 157 156 186
-3 186 187 157
-3 164 157 187
-3 164 188 163
-3 189 167 168
-3 168 190 189
-3 168 159 170
-3 170 191 168
-3 192 171 151
-3 151 158 192
-3 193 180 152
-3 152 171 193
-3 181 194 174
-3 174 153 181
-3 174 195 160
-3 160 148 174
-3 175 196 197
-3 197 176 175
-3 161 176 198
-3 198 177 161
-3 183 142 178
-3 199 193 171
-3 200 201 169
-3 181 173 202
-3 194 203 174
-3 196 204 197
-3 205 198 176
-3 163 206 179
-3 179 207 208
-3 208 165 179
-3 209 189 190
-3 190 210 209
-3 190 168 191
-3 191 211 190
-3 212 192 158
-3 158 167 212
-3 213 199 171
-3 171 192 213
-3 170 169 201
-3 201 214 170
-3 169 166 200
-3 193 215 180
-3 202 216 181
-3 203 217 195
-3 195 174 203
-3 195 218 175
-3 175 160 195
-3 219 197 204
-3 176 197 205
-3 162 220 178
-3 177 221 220
-3 220 162 177
-3 207 184 182
-3 182 208 207
-3 138 150 222
-3 223 185 156
-3 206 163 188
-3 224 209 210
-3 225 213 192
-3 183 200 166
-3 215 193 226
-3 227 228 172
-3 172 228 173
-3 216 202 229
-3 194 181 216
-3 217 230 195
-3 219 231 232
-3 233 205 197
-3 156 138 223
-3 206 234 207
-3 207 179 206
-3 186 185 235
-3 235 236 186
-3 187 186 236
-3 164 187 236
-3 236 237 164
-3 188 164 237
-3 238 224 210
-3 210 239 238
-3 210 190 211
-3 211 240 210
-3 241 212 167
-3 167 189 241
-3 242 225 192
-3 192 212 242
-3 191 170 214
-3 214 243 191
-3 244 226 193
-3 193 199 244
-3 228 202 173
-3 229 202 245
-3 245 246 229
-3 229 247 216
-3 216 248 203
-3 203 194 216
-3 230 249 218
-3 218 195 230
-3 218 250 196
-3 196 175 218
-3 231 251 252
-3 252 232 231
-3 197 219 233
-3 221 177 198
-3 222 223 138
-3 188 253 206
-3 254 255 188
-3 256 257 258
-3 259 242 212
-3 201 243 214
-3 199 213 244
-3 229 246 260
-3 217 203 248
-3 249 261 218
-3 204 196 250
-3 251 262 252
-3 232 233 219
-3 205 263 198
-3 198 263 221
-3 264 150 155
-3 265 235 185
-3 234 206 253
-3 234 266 184
-3 184 207 234
-3 237 254 188
-3 253 188 255
-3 267 256 258
-3 258 268 267
-3 239 210 240
-3 240 269 239
-3 270 241 189
-3 189 209 270
-3 271 259 212
-3 212 241 271
-3 211 191 243
-3 243 272 211
-3 273 244 213
-3 213 225 273
-3 274 275 201
-3 276 277 226
-3 226 244 276
-3 200 183 178
-3 201 200 278
-3 278 274 201
-3 226 260 246
-3 228 227 279
-3 279 280 228
-3 202 228 281
-3 281 282 202
-3 247 229 260
-3 247 283 248
-3 248 216 247
-3 248 284 230
-3 230 217 248
-3 261 285 250
-3 250 218 261
-3 250 286 219
-3 219 204 250
-3 262 287 288
-3 288 252 262
-3 232 252 289
-3 185 223 265
-3 253 290 234
-3 255 291 253
-3 292 267 268
-3 209 224 270
-3 293 271 241
-3 272 294 211
-3 225 242 273
-3 243 201 275
-3 278 200 178
-3 295 227 296
-3 296 180 295
-3 281 228 280
-3 202 282 245
-3 245 282 297
-3 249 230 284
-3 285 298 250
-3 231 219 286
-3 233 299 263
-3 263 205 233
-3 266 264 184
-3 155 184 264
-3 300 222 150
-3 266 234 290
-3 236 235 301
-3 301 302 236
-3 303 292 268
-3 268 304 303
-3 268 258 305
-3 305 306 268
-3 307 270 224
-3 224 238 307
-3 308 293 241
-3 241 270 308
-3 240 211 294
-3 309 273 242
-3 242 259 309
-3 272 243 310
-3 310 243 275
-3 311 276 244
-3 244 273 311
-3 178 312 278
-3 260 226 277
-3 313 314 315
-3 315 314 215
-3 316 295 180
-3 180 215 316
-3 280 317 281
-3 245 297 246
-3 318 319 247
-3 247 260 318
-3 283 320 284
-3 284 248 283
-3 284 321 261
-3 261 249 284
-3 298 322 286
-3 286 250 298
-3 286 323 251
-3 251 231 286
-3 287 324 325
-3 325 288 287
-3 252 288 326
-3 326 289 252
-3 232 299 233
-3 327 178 220
-3 290 253 291
-3 290 328 266
-3 257 256 329
-3 330 308 270
-3 294 331 240
-3 259 271 309
-3 310 332 272
-3 333 334 277
-3 215 314 335
-3 316 215 335
-3 295 279 227
-3 317 336 281
-3 337 338 282
-3 285 261 321
-3 322 339 286
-3 262 251 323
-3 232 340 299
-3 150 264 300
-3 265 223 341
-3 265 301 235
-3 291 342 290
-3 264 266 328
-3 302 343 236
-3 237 236 343
-3 343 344 237
-3 254 237 344
-3 255 254 345
-3 345 346 255
-3 255 347 291
-3 348 303 304
-3 304 349 348
-3 304 268 306
-3 306 350 304
-3 351 329 256
-3 256 267 351
-3 352 330 270
-3 270 307 352
-3 269 240 331
-3 353 309 271
-3 271 293 353
-3 354 311 273
-3 273 309 354
-3 275 274 355
-3 355 356 275
-3 277 276 333
-3 312 178 327
-3 274 278 357
-3 357 355 274
-3 334 318 260
-3 260 277 334
-3 282 281 336
-3 319 358 283
-3 283 247 319
-3 320 359 321
-3 321 284 320
-3 321 360 298
-3 298 285 321
-3 339 361 323
-3 323 286 339
-3 323 362 287
-3 287 262 323
-3 324 363 364
-3 364 325 324
-3 288 325 365
-3 365 326 288
-3 232 289 340
-3 328 290 342
-3 347 255 346
-3 267 292 351
-3 366 367 329
-3 368 369 305
-3 293 308 353
-3 272 370 294
-3 332 371 272
-3 372 333 276
-3 355 357 356
-3 297 313 246
-3 315 246 313
-3 373 279 295
-3 337 282 336
-3 297 282 338
-3 338 374 297
-3 322 298 360
-3 361 375 323
-3 376 340 289
-3 377 263 299
-3 220 378 327
-3 378 220 221
-3 378 221 263
-3 263 379 378
-3 263 377 379
-3 328 300 264
-3 222 341 223
-3 291 380 342
-3 301 265 381
-3 302 301 382
-3 345 254 344
-3 383 348 349
-3 349 384 383
-3 349 304 350
-3 350 385 349
-3 386 351 292
-3 292 303 386
-3 387 366 329
-3 329 351 387
-3 306 305 369
-3 388 353 308
-3 308 330 388
-3 331 294 370
-3 370 272 371
-3 389 354 309
-3 309 353 389
-3 310 275 356
-3 276 311 372
-3 390 119 116
-3 357 128 129
-3 390 356 119
-3 356 126 119
-3 357 129 126
-3 356 357 126
-3 312 391 357
-3 357 278 312
-3 313 297 374
-3 314 313 392
-3 392 393 314
-3 335 314 393
-3 295 316 373
-3 394 280 279
-3 280 395 317
-3 336 317 395
-3 337 396 338
-3 358 397 320
-3 320 283 358
-3 359 398 360
-3 360 321 359
-3 360 399 339
-3 339 322 360
-3 375 400 362
-3 362 323 375
-3 362 401 324
-3 324 287 362
-3 363 402 403
-3 403 364 363
-3 325 364 404
-3 404 365 325
-3 289 326 376
-3 299 405 377
-3 406 381 265
-3 380 291 347
-3 300 328 342
-3 381 382 301
-3 346 407 347
-3 347 408 380
-3 409 387 351
-3 369 410 306
-3 330 352 388
-3 370 411 331
-3 332 310 356
-3 412 372 311
-3 357 127 128
-3 413 122 124
-3 357 391 127
-3 391 124 127
-3 391 413 124
-3 374 392 313
-3 414 415 319
-3 319 318 414
-3 361 339 399
-3 400 416 362
-3 402 417 403
-3 418 376 326
-3 405 299 340
-3 340 419 405
-3 342 222 300
-3 265 341 406
-3 380 420 342
-3 343 302 394
-3 345 421 346
-3 407 346 421
-3 408 347 407
-3 422 383 384
-3 384 349 385
-3 385 423 384
-3 424 386 303
-3 303 348 424
-3 425 409 351
-3 351 386 425
-3 350 306 410
-3 426 427 367
-3 367 366 426
-3 369 368 428
-3 428 429 369
-3 430 389 353
-3 353 388 430
-3 356 390 332
-3 311 354 412
-3 390 116 114
-3 431 95 89
-3 432 433 109
-3 431 107 95
-3 432 109 107
-3 431 432 107
-3 371 332 390
-3 122 413 117
-3 391 312 327
-3 334 333 434
-3 395 280 382
-3 396 435 374
-3 374 338 396
-3 392 374 435
-3 397 436 359
-3 359 320 397
-3 398 437 399
-3 399 360 398
-3 399 438 375
-3 375 361 399
-3 416 439 401
-3 401 362 416
-3 401 440 363
-3 363 324 401
-3 441 403 417
-3 364 403 442
-3 442 404 364
-3 326 365 443
-3 443 418 326
-3 340 376 444
-3 445 377 405
-3 341 222 446
-3 446 406 341
-3 222 342 420
-3 382 394 302
-3 408 447 420
-3 420 380 408
-3 448 425 386
-3 366 387 426
-3 429 449 369
-3 450 412 354
-3 451 65 452
-3 431 89 85
-3 451 74 65
-3 451 431 85
-3 451 85 74
-3 453 433 432
-3 370 371 390
-3 390 454 370
-3 391 327 378
-3 378 413 391
-3 455 434 333
-3 434 414 318
-3 318 334 434
-3 373 394 279
-3 415 456 358
-3 358 319 415
-3 400 375 438
-3 439 457 401
-3 418 444 376
-3 444 419 340
-3 447 446 222
-3 222 420 447
-3 421 458 407
-3 383 422 459
-3 422 384 423
-3 423 460 422
-3 461 424 348
-3 348 383 461
-3 462 448 386
-3 386 424 462
-3 385 350 410
-3 410 463 385
-3 464 426 387
-3 387 409 464
-3 410 369 449
-3 465 466 427
-3 427 426 465
-3 411 370 454
-3 354 389 450
-3 333 372 455
-3 451 452 467
-3 468 449 432
-3 432 431 468
-3 429 428 432
-3 454 469 411
-3 413 378 379
-3 413 113 117
-3 470 88 102
-3 413 471 113
-3 471 106 113
-3 470 102 106
-3 471 470 106
-3 393 392 472
-3 394 382 280
-3 382 381 395
-3 381 406 395
-3 336 395 406
-3 406 446 336
-3 337 336 446
-3 446 447 337
-3 337 473 396
-3 435 396 473
-3 473 458 435
-3 435 472 392
-3 436 474 398
-3 398 359 436
-3 437 475 438
-3 438 399 437
-3 438 476 416
-3 416 400 438
-3 457 477 440
-3 440 401 457
-3 402 363 440
-3 417 478 441
-3 403 441 479
-3 479 442 403
-3 365 404 480
-3 480 443 365
-3 394 373 343
-3 344 393 345
-3 421 345 393
-3 393 472 421
-3 458 473 407
-3 407 473 447
-3 447 408 407
-3 481 459 422
-3 481 422 460
-3 482 462 424
-3 409 425 464
-3 483 450 389
-3 484 455 372
-3 485 486 451
-3 451 467 485
-3 486 487 451
-3 431 451 487
-3 488 468 431
-3 449 429 432
-3 445 471 413
-3 452 64 71
-3 470 78 88
-3 470 489 78
-3 489 452 71
-3 489 71 78
-3 316 335 344
-3 447 473 337
-3 415 414 490
-3 456 491 397
-3 397 358 456
-3 439 416 476
-3 477 492 440
-3 402 493 417
-3 494 441 478
-3 441 494 479
-3 495 444 418
-3 419 444 470
-3 373 316 344
-3 344 343 373
-3 458 421 472
-3 494 481 460
-3 460 479 494
-3 459 461 383
-3 496 482 424
-3 424 461 496
-3 423 385 463
-3 463 497 423
-3 498 464 425
-3 425 448 498
-3 449 468 410
-3 499 465 426
-3 426 464 499
-3 389 430 483
-3 372 412 484
-3 500 501 452
-3 467 452 501
-3 487 488 431
-3 64 452 65
-3 413 379 377
-3 377 445 413
-3 471 405 419
-3 502 489 470
-3 393 344 335
-3 472 435 458
-3 474 503 437
-3 437 398 474
-3 475 504 476
-3 476 438 475
-3 476 505 457
-3 457 439 476
-3 492 506 402
-3 402 440 492
-3 404 442 480
-3 418 443 507
-3 461 459 508
-3 509 496 461
-3 497 510 423
-3 448 462 498
-3 463 410 468
-3 511 483 430
-3 512 484 412
-3 513 500 452
-3 452 489 513
-3 405 471 445
-3 470 471 419
-3 444 495 502
-3 502 470 444
-3 514 513 489
-3 434 455 515
-3 515 490 414
-3 414 434 515
-3 490 516 456
-3 456 415 490
-3 491 517 436
-3 436 397 491
-3 477 457 505
-3 506 518 493
-3 493 402 506
-3 478 417 519
-3 417 493 519
-3 494 478 520
-3 521 480 442
-3 507 495 418
-3 481 494 520
-3 481 520 522
-3 459 481 522
-3 522 523 459
-3 508 459 523
-3 508 509 461
-3 460 423 510
-3 524 498 462
-3 462 482 524
-3 497 463 488
-3 488 463 468
-3 525 499 464
-3 464 498 525
-3 526 527 466
-3 466 465 526
-3 412 450 512
-3 501 485 467
-3 495 507 502
-3 507 514 489
-3 489 502 507
-3 503 528 475
-3 475 437 503
-3 504 529 505
-3 505 476 504
-3 505 530 492
-3 492 477 505
-3 442 479 521
-3 507 443 514
-3 510 531 460
-3 509 508 532
-3 482 496 524
-3 488 487 497
-3 533 512 450
-3 534 515 455
-3 455 484 534
-3 485 497 486
-3 487 486 497
-3 490 535 516
-3 491 456 516
-3 517 536 474
-3 474 436 517
-3 506 492 530
-3 506 537 518
-3 519 538 539
-3 539 478 519
-3 531 521 479
-3 443 480 514
-3 520 540 522
-3 479 460 531
-3 522 540 541
-3 541 523 522
-3 542 532 508
-3 542 543 532
-3 544 524 496
-3 496 509 544
-3 545 525 498
-3 498 524 545
-3 546 526 465
-3 465 499 546
-3 450 483 533
-3 531 510 485
-3 497 485 510
-3 490 515 547
-3 535 490 547
-3 528 548 504
-3 504 475 528
-3 529 549 530
-3 530 505 529
-3 530 550 537
-3 537 506 530
-3 493 551 538
-3 538 519 493
-3 539 520 478
-3 539 540 520
-3 480 521 513
-3 513 514 480
-3 523 541 552
-3 552 508 523
-3 509 532 544
-3 553 533 483
-3 484 512 534
-3 515 534 554
-3 521 531 501
-3 501 500 521
-3 485 501 531
-3 516 555 517
-3 517 491 516
-3 536 556 503
-3 503 474 536
-3 550 557 537
-3 493 558 551
-3 559 540 539
-3 500 513 521
-3 540 559 560
-3 540 560 541
-3 544 543 561
-3 544 532 543
-3 562 545 524
-3 524 544 562
-3 563 546 499
-3 499 525 563
-3 483 511 553
-3 554 547 515
-3 547 564 535
-3 548 565 529
-3 529 504 548
-3 549 566 550
-3 550 530 549
-3 550 567 557
-3 508 552 568
-3 568 542 508
-3 544 561 569
-3 570 571 527
-3 527 526 570
-3 572 534 512
-3 512 533 572
-3 573 564 547
-3 555 516 535
-3 536 517 555
-3 556 574 528
-3 528 503 556
-3 567 550 566
-3 575 557 567
-3 576 558 518
-3 518 537 576
-3 558 493 518
-3 558 577 551
-3 538 578 579
-3 579 539 538
-3 538 580 578
-3 580 538 551
-3 559 539 579
-3 581 541 560
-3 542 568 582
-3 567 569 561
-3 575 567 561
-3 569 562 544
-3 583 563 525
-3 525 545 583
-3 547 554 573
-3 535 584 555
-3 565 585 549
-3 549 529 565
-3 537 586 576
-3 577 558 576
-3 587 559 579
-3 587 560 559
-3 541 581 552
-3 582 543 542
-3 543 582 588
-3 589 570 526
-3 526 546 589
-3 533 553 572
-3 572 554 534
-3 555 590 556
-3 556 536 555
-3 574 591 548
-3 548 528 574
-3 586 537 557
-3 560 587 592
-3 560 592 581
-3 582 568 593
-3 562 569 594
-3 595 583 545
-3 545 562 595
-3 554 572 596
-3 584 535 564
-3 585 597 566
-3 566 549 585
-3 566 594 567
-3 586 598 576
-3 576 599 577
-3 577 600 551
-3 601 587 579
-3 579 578 601
-3 588 561 543
-3 593 588 582
-3 569 567 594
-3 602 589 546
-3 546 563 602
-3 603 604 571
-3 571 570 603
-3 574 556 590
-3 591 605 565
-3 565 548 591
-3 575 606 586
-3 586 557 575
-3 599 576 598
-3 600 577 599
-3 551 607 580
-3 608 581 592
-3 561 588 606
-3 606 575 561
-3 609 595 562
-3 562 594 609
-3 596 573 554
-3 590 555 584
-3 597 609 594
-3 594 566 597
-3 598 586 606
-3 606 610 598
-3 598 611 599
-3 581 608 552
-3 588 593 610
-3 612 602 563
-3 563 583 612
-3 570 589 603
-3 590 613 591
-3 591 574 590
-3 605 614 585
-3 585 565 605
-3 611 598 610
-3 615 599 611
-3 600 616 607
-3 607 551 600
-3 617 568 552
-3 617 593 568
-3 610 606 588
-3 604 603 618
-3 610 619 611
-3 611 620 615
-3 599 621 616
-3 616 600 599
-3 622 612 583
-3 583 595 622
-3 623 603 589
-3 589 602 623
-3 590 624 613
-3 605 591 613
-3 614 625 597
-3 597 585 614
-3 620 611 619
-3 621 599 615
-3 615 626 621
-3 627 578 580
-3 628 580 607
-3 601 627 629
-3 627 601 578
-3 629 587 601
-3 587 629 630
-3 630 592 587
-3 630 608 592
-3 631 552 608
-3 619 610 593
-3 593 617 632
-3 624 590 584
-3 619 632 620
-3 620 633 626
-3 626 615 620
-3 580 628 627
-3 632 619 593
-3 634 622 595
-3 595 609 634
-3 602 612 623
-3 603 623 635
-3 613 636 614
-3 614 605 613
-3 625 634 609
-3 609 597 625
-3 616 637 607
-3 638 608 630
-3 608 638 631
-3 552 631 639
-3 639 617 552
-3 635 618 603
-3 584 640 624
-3 632 641 633
-3 633 620 632
-3 627 642 643
-3 643 629 627
-3 641 632 617
-3 644 623 612
-3 612 622 644
-3 636 613 624
-3 625 614 636
-3 637 616 621
-3 607 645 628
-3 645 607 637
-3 637 646 645
-3 626 647 637
-3 637 621 626
-3 629 643 630
-3 618 635 648
-3 624 649 636
-3 633 650 647
-3 647 626 633
-3 627 628 642
-3 617 639 641
-3 622 634 644
-3 644 635 623
-3 636 644 634
-3 634 625 636
-3 650 633 641
-3 646 637 647
-3 628 645 651
-3 652 645 646
-3 646 653 652
-3 650 654 646
-3 646 647 650
-3 638 630 643
-3 639 631 655
-3 635 644 649
-3 649 624 640
-3 639 655 641
-3 650 656 654
-3 642 651 657
-3 642 657 658
-3 658 643 642
-3 651 642 628
-3 650 641 655
-3 646 659 653
-3 659 646 654
-3 654 660 659
-3 643 658 661
-3 661 638 643
-3 638 661 662
-3 662 631 638
-3 649 648 635
-3 644 636 649
-3 656 650 655
-3 660 654 656
-3 656 663 660
-3 656 655 631
-3 631 662 664
-3 656 664 663
-3 640 648 649
-3 664 656 631
-3 665 658 657
-3 645 666 667
-3 666 645 652
-3 667 651 645
-3 668 660 663
-3 665 661 658
-3 661 665 662
-3 651 667 657
-3 666 652 653
-3 659 669 653
-3 660 668 659
-3 664 670 663
-3 670 664 662
-3 663 670 668
-3 653 669 666
-3 657 671 665
-3 672 667 666
-3 659 673 669
-3 673 659 668
-3 662 665 670
-3 667 672 671
-3 671 657 667
-3 674 665 671
-3 675 666 669
-3 666 676 672
-3 668 677 673
-3 677 668 670
-3 670 678 677
-3 665 679 670
-3 665 674 679
-3 666 675 676
-3 678 670 679
-3 680 673 677
-3 669 681 675
-3 681 669 673
-3 675 681 682
-3 682 676 675
-3 673 680 681
-3 676 682 683
-3 683 672 676
-3 678 684 680
-3 680 677 678
-3 684 678 679
-3 674 685 684
-3 684 679 674
-3 683 671 672
-3 671 683 685
-3 685 674 671
-3 682 681 680
-3 680 684 682
-3 682 684 685
-3 685 683 682
-3 140 146 141
-3 133 140 141
-3 208 182 183
-3 183 166 208
-3 166 165 208
-3 180 296 172
-3 296 227 172
-3 226 315 215
-3 226 246 315
+3 5 2 1
+3 6 7 4
+3 4 2 6
+3 2 5 8
+3 9 10 7
+3 7 6 9
+3 11 6 2
+3 2 8 11
+3 12 9 6
+3 6 11 12
+3 13 14 9
+3 4 15 3
+3 10 9 14
+3 7 16 15
+3 15 4 7
+3 17 8 5
+3 14 13 18
+3 10 19 16
+3 16 7 10
+3 20 11 8
+3 8 17 20
+3 9 12 13
+3 3 21 0
+3 22 12 11
+3 11 20 22
+3 23 13 12
+3 24 14 18
+3 14 25 10
+3 21 3 15
+3 26 1 0
+3 27 5 1
+3 13 23 18
+3 18 28 24
+3 19 10 25
+3 16 29 21
+3 21 15 16
+3 1 26 27
+3 27 17 5
+3 28 18 23
+3 24 28 30
+3 30 31 24
+3 19 32 29
+3 29 16 19
+3 33 0 21
+3 34 20 17
+3 17 27 34
+3 12 22 23
+3 35 30 28
+3 21 36 33
+3 37 22 20
+3 20 34 37
+3 38 23 22
+3 39 40 31
+3 31 30 39
+3 25 41 19
+3 21 42 36
+3 43 27 26
+3 44 39 30
+3 30 35 44
+3 14 24 45
+3 45 25 14
+3 32 19 41
+3 29 46 42
+3 42 21 29
+3 27 43 47
+3 38 48 28
+3 28 23 38
+3 31 49 45
+3 45 24 31
+3 32 50 46
+3 46 29 32
+3 51 34 27
+3 27 47 51
+3 22 37 38
+3 52 35 28
+3 28 48 52
+3 53 37 34
+3 34 51 53
+3 54 38 37
+3 55 56 40
+3 40 39 55
+3 40 57 49
+3 49 31 40
+3 41 25 58
+3 41 58 32
+3 42 59 36
+3 60 44 35
+3 35 52 60
+3 61 55 39
+3 39 44 61
+3 49 62 45
+3 45 58 25
+3 50 32 58
+3 46 63 59
+3 59 42 46
+3 64 47 43
+3 38 54 65
+3 48 38 65
+3 66 45 62
+3 58 67 50
+3 50 68 63
+3 63 46 50
+3 69 51 47
+3 47 64 69
+3 37 53 54
+3 70 52 48
+3 71 72 56
+3 56 55 71
+3 57 73 62
+3 62 49 57
+3 58 45 66
+3 36 74 33
+3 75 53 51
+3 51 69 75
+3 76 54 53
+3 77 71 55
+3 55 61 77
+3 78 79 71
+3 56 80 57
+3 57 40 56
+3 81 67 58
+3 74 36 59
+3 33 26 0
+3 74 43 26
+3 54 76 65
+3 65 82 48
+3 83 60 52
+3 52 70 83
+3 84 61 44
+3 44 60 84
+3 85 78 71
+3 72 71 79
+3 62 86 66
+3 66 81 58
+3 68 50 67
+3 63 87 74
+3 74 59 63
+3 26 33 74
+3 74 64 43
+3 82 65 76
+3 48 82 70
+3 71 77 85
+3 79 88 72
+3 67 89 68
+3 68 90 87
+3 87 63 68
+3 87 69 64
+3 64 74 87
+3 53 75 76
+3 91 70 82
+3 92 85 77
+3 72 93 80
+3 80 56 72
+3 80 94 73
+3 73 57 80
+3 73 95 86
+3 86 62 73
+3 81 89 67
+3 90 75 69
+3 69 87 90
+3 96 76 75
+3 97 77 61
+3 61 84 97
+3 88 98 72
+3 99 83 70
+3 70 91 99
+3 100 84 60
+3 60 83 100
+3 101 92 77
+3 93 72 98
+3 98 102 93
+3 86 103 104
+3 104 66 86
+3 81 66 104
+3 81 105 89
+3 90 68 89
+3 106 76 96
+3 106 107 82
+3 82 76 106
+3 108 97 84
+3 97 101 77
+3 102 109 93
+3 93 110 94
+3 94 80 93
+3 105 81 104
+3 89 105 90
+3 75 90 96
+3 111 91 82
+3 82 107 111
+3 94 112 95
+3 95 73 94
+3 95 113 103
+3 103 86 95
+3 105 96 90
+3 114 108 84
+3 84 100 114
+3 97 108 115
+3 97 115 101
+3 110 93 109
+3 110 116 94
+3 117 99 91
+3 91 111 117
+3 118 100 83
+3 83 99 118
+3 103 119 104
+3 106 96 105
+3 120 115 108
+3 108 114 120
+3 110 109 121
+3 110 121 116
+3 116 122 112
+3 112 94 116
+3 107 104 119
+3 119 111 107
+3 121 123 116
+3 112 124 113
+3 113 95 112
+3 113 125 119
+3 119 103 113
+3 105 104 107
+3 107 106 105
+3 126 114 100
+3 100 118 126
+3 127 120 114
+3 122 116 123
+3 125 117 111
+3 111 119 125
+3 128 118 99
+3 99 117 128
+3 123 129 122
+3 130 127 114
+3 114 126 130
+3 122 131 124
+3 124 112 122
+3 129 132 122
+3 124 133 125
+3 125 113 124
+3 134 126 118
+3 118 128 134
+3 135 130 126
+3 131 122 132
+3 133 128 117
+3 117 125 133
+3 132 136 131
+3 137 135 126
+3 126 134 137
+3 131 138 133
+3 133 124 131
+3 136 132 139
+3 136 139 131
+3 138 134 128
+3 128 133 138
+3 140 137 134
+3 138 131 139
+3 141 140 134
+3 139 142 138
+3 134 138 141
+3 142 141 138
+3 143 144 145
+3 146 143 147
+3 143 145 147
+3 148 149 146
+3 146 147 148
+3 147 145 148
+3 149 150 146
+3 151 148 145
+3 143 146 152
+3 153 146 150
+3 154 152 146
+3 144 155 156
+3 144 143 155
+3 144 151 145
+3 150 157 153
+3 154 158 159
+3 160 158 154
+3 152 161 143
+3 155 162 163
+3 163 156 155
+3 151 144 164
+3 160 153 157
+3 165 159 158
+3 152 154 166
+3 161 167 155
+3 155 143 161
+3 162 168 163
+3 144 169 170
+3 170 164 144
+3 149 148 171
+3 171 172 149
+3 150 149 172
+3 173 165 158
+3 158 174 173
+3 175 166 154
+3 161 152 176
+3 162 155 167
+3 168 177 178
+3 178 163 168
+3 156 163 179
+3 157 180 160
+3 172 181 157
+3 157 150 172
+3 182 173 174
+3 160 183 184
+3 158 160 184
+3 166 176 152
+3 177 185 178
+3 186 171 148
+3 183 160 180
+3 187 182 174
+3 174 188 187
+3 174 158 189
+3 189 190 174
+3 184 189 158
+3 166 175 191
+3 192 193 161
+3 161 176 192
+3 167 194 162
+3 185 195 196
+3 196 178 185
+3 163 178 197
+3 197 179 163
+3 198 156 179
+3 199 183 180
+3 180 157 181
+3 200 187 188
+3 159 165 201
+3 202 192 176
+3 176 166 202
+3 193 203 167
+3 167 161 193
+3 168 162 194
+3 195 204 196
+3 205 156 206
+3 169 144 156
+3 205 169 156
+3 169 205 207
+3 207 170 169
+3 148 151 208
+3 208 186 148
+3 209 210 171
+3 172 171 210
+3 210 211 172
+3 181 172 211
+3 181 212 180
+3 213 200 188
+3 188 214 213
+3 188 174 190
+3 190 215 188
+3 216 201 165
+3 165 173 216
+3 217 202 166
+3 166 191 217
+3 203 218 194
+3 194 167 203
+3 194 219 177
+3 177 168 194
+3 204 220 221
+3 221 196 204
+3 178 196 222
+3 222 197 178
+3 206 156 198
+3 164 208 151
+3 223 213 214
+3 173 182 216
+3 224 225 201
+3 226 227 189
+3 203 193 228
+3 218 229 194
+3 185 177 219
+3 220 230 221
+3 231 222 196
+3 171 186 209
+3 180 232 199
+3 199 233 234
+3 234 183 199
+3 235 223 214
+3 214 236 235
+3 214 188 215
+3 215 237 214
+3 238 216 182
+3 182 187 238
+3 239 224 201
+3 201 216 239
+3 190 189 227
+3 227 240 190
+3 189 184 226
+3 217 241 202
+3 228 242 203
+3 229 243 219
+3 219 194 229
+3 219 244 195
+3 195 185 219
+3 230 245 246
+3 246 221 230
+3 196 221 231
+3 179 247 198
+3 197 248 247
+3 247 179 197
+3 233 207 205
+3 205 234 233
+3 208 164 249
+3 250 209 186
+3 232 180 212
+3 251 235 236
+3 187 200 238
+3 252 239 216
+3 206 226 184
+3 241 217 253
+3 254 255 192
+3 192 255 256
+3 242 228 257
+3 218 203 242
+3 243 258 219
+3 204 195 244
+3 245 259 260
+3 260 246 245
+3 261 231 221
+3 170 207 262
+3 164 170 263
+3 263 249 164
+3 186 208 250
+3 232 264 233
+3 233 199 232
+3 210 209 265
+3 265 266 210
+3 211 210 266
+3 266 267 211
+3 181 211 267
+3 267 268 181
+3 212 181 268
+3 269 251 236
+3 236 270 269
+3 236 214 237
+3 237 271 236
+3 272 238 200
+3 200 213 272
+3 273 252 216
+3 216 238 273
+3 215 190 240
+3 240 274 215
+3 275 253 217
+3 217 276 275
+3 253 277 241
+3 255 228 256
+3 257 228 278
+3 278 279 257
+3 257 280 242
+3 242 281 229
+3 229 218 242
+3 258 282 244
+3 244 219 258
+3 244 283 220
+3 220 204 244
+3 259 284 285
+3 285 260 259
+3 221 246 261
+3 248 197 222
+3 286 206 198
+3 233 262 207
+3 249 250 208
+3 212 287 232
+3 288 289 212
+3 290 269 270
+3 270 291 290
+3 213 223 272
+3 292 273 238
+3 227 274 240
+3 224 239 293
+3 277 253 294
+3 257 279 295
+3 280 296 242
+3 243 229 281
+3 282 297 244
+3 230 220 283
+3 284 298 285
+3 260 261 246
+3 231 299 222
+3 222 300 248
+3 301 263 170
+3 302 265 209
+3 264 232 287
+3 264 303 262
+3 262 233 264
+3 268 288 212
+3 287 212 289
+3 304 290 291
+3 291 305 304
+3 270 236 271
+3 271 306 270
+3 307 272 223
+3 223 235 307
+3 308 292 238
+3 238 272 308
+3 237 215 274
+3 274 309 237
+3 310 293 239
+3 239 252 310
+3 311 312 227
+3 313 294 253
+3 253 275 313
+3 226 206 286
+3 227 226 314
+3 314 311 227
+3 277 295 279
+3 255 254 315
+3 315 316 255
+3 228 255 317
+3 317 318 228
+3 280 257 295
+3 296 319 281
+3 281 242 296
+3 281 320 258
+3 258 243 281
+3 297 321 283
+3 283 244 297
+3 283 322 245
+3 245 230 283
+3 298 323 324
+3 324 285 298
+3 260 285 325
+3 300 222 299
+3 286 198 247
+3 209 250 302
+3 287 326 264
+3 288 327 289
+3 289 328 287
+3 329 304 305
+3 291 270 306
+3 235 251 307
+3 330 308 272
+3 309 331 237
+3 252 273 310
+3 274 227 312
+3 332 333 293
+3 334 226 286
+3 334 314 226
+3 335 254 336
+3 336 337 335
+3 317 255 316
+3 228 318 278
+3 278 318 338
+3 278 338 339
+3 319 340 281
+3 282 258 320
+3 321 341 283
+3 259 245 322
+3 323 342 324
+3 261 343 299
+3 299 231 261
+3 303 301 262
+3 170 262 301
+3 344 249 263
+3 303 264 326
+3 266 265 345
+3 345 346 266
+3 267 266 346
+3 328 289 327
+3 347 329 305
+3 305 348 347
+3 305 291 306
+3 306 349 305
+3 350 307 251
+3 251 269 350
+3 351 330 272
+3 272 307 351
+3 271 237 331
+3 352 310 273
+3 273 292 352
+3 309 274 353
+3 353 274 312
+3 354 332 293
+3 293 310 354
+3 286 355 334
+3 295 277 294
+3 356 357 358
+3 358 357 241
+3 359 335 337
+3 337 241 359
+3 316 360 317
+3 278 339 279
+3 361 362 280
+3 280 295 361
+3 340 363 320
+3 320 281 340
+3 320 364 297
+3 297 282 320
+3 341 365 322
+3 322 283 341
+3 322 366 284
+3 284 259 322
+3 342 367 368
+3 368 324 342
+3 285 324 369
+3 369 325 285
+3 260 343 261
+3 370 286 247
+3 326 287 328
+3 326 371 303
+3 372 347 348
+3 269 290 350
+3 373 351 307
+3 331 374 271
+3 292 308 352
+3 353 375 309
+3 376 354 310
+3 377 378 294
+3 241 357 379
+3 359 241 379
+3 335 315 254
+3 360 380 317
+3 338 318 381
+3 381 382 338
+3 296 280 362
+3 363 383 320
+3 321 297 364
+3 365 384 322
+3 298 284 366
+3 367 385 368
+3 260 386 343
+3 263 301 344
+3 302 250 387
+3 302 345 265
+3 328 388 326
+3 301 303 371
+3 346 389 267
+3 268 267 389
+3 389 390 268
+3 288 268 390
+3 327 288 391
+3 391 392 327
+3 327 393 328
+3 394 372 348
+3 348 395 394
+3 348 305 349
+3 349 396 348
+3 397 350 290
+3 290 304 397
+3 398 373 307
+3 307 350 398
+3 306 271 374
+3 399 352 308
+3 308 330 399
+3 400 376 310
+3 310 352 400
+3 312 311 401
+3 401 402 312
+3 294 313 377
+3 355 286 370
+3 311 314 403
+3 403 401 311
+3 378 361 295
+3 295 294 378
+3 318 317 380
+3 362 404 319
+3 319 296 362
+3 383 405 364
+3 364 320 383
+3 364 406 341
+3 341 321 364
+3 384 407 366
+3 366 322 384
+3 366 408 323
+3 323 298 366
+3 385 409 410
+3 410 368 385
+3 324 368 411
+3 411 369 324
+3 260 325 386
+3 371 326 388
+3 393 327 392
+3 412 394 395
+3 304 329 397
+3 413 398 350
+3 374 414 306
+3 330 351 399
+3 309 415 331
+3 375 416 309
+3 417 400 352
+3 418 377 313
+3 313 419 418
+3 401 403 402
+3 247 420 370
+3 314 334 403
+3 339 356 279
+3 358 279 356
+3 379 421 359
+3 421 422 359
+3 422 315 335
+3 316 315 423
+3 423 360 316
+3 381 318 380
+3 339 338 382
+3 382 424 339
+3 340 319 404
+3 405 425 364
+3 365 341 406
+3 407 426 366
+3 342 323 408
+3 409 427 410
+3 428 386 325
+3 429 299 343
+3 247 430 420
+3 430 247 248
+3 430 248 300
+3 300 431 430
+3 431 300 299
+3 299 429 431
+3 371 344 301
+3 249 387 250
+3 328 432 388
+3 345 302 433
+3 346 345 434
+3 390 435 288
+3 391 288 435
+3 436 412 395
+3 395 437 436
+3 395 348 396
+3 396 438 395
+3 439 397 329
+3 329 347 439
+3 440 413 350
+3 350 397 440
+3 349 306 414
+3 441 399 351
+3 351 373 441
+3 374 331 415
+3 415 442 374
+3 415 309 416
+3 443 417 352
+3 352 399 443
+3 353 312 402
+3 402 444 353
+3 332 354 445
+3 446 132 129
+3 403 141 142
+3 446 402 132
+3 402 139 132
+3 403 142 139
+3 402 403 139
+3 355 447 403
+3 403 334 355
+3 447 448 403
+3 356 339 424
+3 357 356 449
+3 449 450 357
+3 379 357 450
+3 335 359 422
+3 451 423 315
+3 423 452 360
+3 380 360 452
+3 381 453 382
+3 404 454 363
+3 363 340 404
+3 425 455 406
+3 406 364 425
+3 406 456 384
+3 384 365 406
+3 426 457 408
+3 408 366 426
+3 408 458 367
+3 367 342 408
+3 427 459 460
+3 460 410 427
+3 368 410 461
+3 461 411 368
+3 325 369 428
+3 343 462 429
+3 463 433 302
+3 432 328 393
+3 344 371 388
+3 433 434 345
+3 435 464 391
+3 392 465 393
+3 393 466 432
+3 467 436 437
+3 347 372 439
+3 468 440 397
+3 414 469 349
+3 373 398 441
+3 442 470 374
+3 471 443 399
+3 375 353 444
+3 472 445 354
+3 354 376 472
+3 444 402 446
+3 403 140 141
+3 473 135 137
+3 403 448 140
+3 448 137 140
+3 448 473 137
+3 424 449 356
+3 474 475 362
+3 362 361 474
+3 383 363 454
+3 455 476 406
+3 407 384 456
+3 457 477 408
+3 385 367 458
+3 459 478 460
+3 479 428 369
+3 462 343 386
+3 386 480 462
+3 388 249 344
+3 302 387 463
+3 432 481 388
+3 389 346 482
+3 392 391 464
+3 464 483 392
+3 465 392 483
+3 466 393 465
+3 484 467 437
+3 437 395 438
+3 438 485 437
+3 486 439 372
+3 372 394 486
+3 487 468 397
+3 397 439 487
+3 396 349 469
+3 488 441 398
+3 398 413 488
+3 414 374 470
+3 470 489 414
+3 490 471 399
+3 399 441 490
+3 444 446 375
+3 376 400 472
+3 446 129 123
+3 491 109 102
+3 492 446 123
+3 491 121 109
+3 492 123 121
+3 491 492 121
+3 416 375 446
+3 493 473 448
+3 135 473 130
+3 370 448 447
+3 447 355 370
+3 378 377 494
+3 452 423 434
+3 453 495 424
+3 424 382 453
+3 449 424 495
+3 454 496 405
+3 405 383 454
+3 476 497 456
+3 456 406 476
+3 456 498 426
+3 426 407 456
+3 477 499 458
+3 458 408 477
+3 458 500 409
+3 409 385 458
+3 501 460 478
+3 410 460 502
+3 502 461 410
+3 369 411 503
+3 503 479 369
+3 386 428 504
+3 505 429 462
+3 387 249 506
+3 506 463 387
+3 249 388 481
+3 434 482 346
+3 466 507 481
+3 481 432 466
+3 394 412 486
+3 508 487 439
+3 413 440 488
+3 489 509 414
+3 510 490 441
+3 415 511 442
+3 512 472 400
+3 400 417 512
+3 513 79 514
+3 491 102 98
+3 513 88 79
+3 513 491 98
+3 513 98 88
+3 515 492 491
+3 511 446 492
+3 415 416 446
+3 446 511 415
+3 448 370 420
+3 448 420 430
+3 430 493 448
+3 516 494 377
+3 494 474 361
+3 361 378 494
+3 422 451 315
+3 517 518 475
+3 475 474 517
+3 475 519 404
+3 404 362 475
+3 425 405 496
+3 497 520 456
+3 457 426 498
+3 499 521 458
+3 427 409 500
+3 479 504 428
+3 504 480 386
+3 507 506 249
+3 249 481 507
+3 483 522 465
+3 467 484 523
+3 484 437 485
+3 485 524 484
+3 525 486 412
+3 412 436 525
+3 526 508 439
+3 439 486 526
+3 438 396 469
+3 469 527 438
+3 528 488 440
+3 440 468 528
+3 469 414 509
+3 529 510 441
+3 441 488 529
+3 470 442 511
+3 417 443 512
+3 377 418 516
+3 513 514 530
+3 531 491 513
+3 532 533 515
+3 515 491 532
+3 489 470 492
+3 511 492 470
+3 493 430 431
+3 431 473 493
+3 473 127 130
+3 534 101 115
+3 473 535 127
+3 535 120 127
+3 534 115 120
+3 535 534 120
+3 450 449 536
+3 536 537 450
+3 379 450 537
+3 423 451 482
+3 482 434 423
+3 434 433 452
+3 433 463 452
+3 380 452 463
+3 463 506 380
+3 381 380 506
+3 506 507 381
+3 381 538 453
+3 495 453 538
+3 538 522 495
+3 495 536 449
+3 496 539 455
+3 455 425 496
+3 520 540 498
+3 498 456 520
+3 498 541 477
+3 477 457 498
+3 521 542 500
+3 500 458 521
+3 500 543 459
+3 459 427 500
+3 544 545 501
+3 460 501 546
+3 546 502 460
+3 411 461 547
+3 547 503 411
+3 389 482 451
+3 451 422 389
+3 435 390 421
+3 435 537 464
+3 483 464 537
+3 537 536 483
+3 522 538 465
+3 465 548 507
+3 507 466 465
+3 549 523 484
+3 549 484 524
+3 436 467 525
+3 550 526 486
+3 468 487 528
+3 509 533 469
+3 551 529 488
+3 552 512 443
+3 443 471 552
+3 553 554 445
+3 555 556 513
+3 513 530 555
+3 556 557 513
+3 531 513 557
+3 558 532 491
+3 491 531 558
+3 533 509 515
+3 509 489 492
+3 492 515 509
+3 505 535 473
+3 514 78 85
+3 534 92 101
+3 534 559 92
+3 559 514 85
+3 559 85 92
+3 560 561 494
+3 494 516 560
+3 561 517 474
+3 474 494 561
+3 421 379 435
+3 507 548 381
+3 538 381 548
+3 518 517 562
+3 518 563 519
+3 519 475 518
+3 519 564 454
+3 454 404 519
+3 476 455 539
+3 540 565 498
+3 499 477 541
+3 542 566 500
+3 543 567 478
+3 478 459 543
+3 568 501 545
+3 501 568 546
+3 569 504 479
+3 480 504 534
+3 422 421 390
+3 390 389 422
+3 522 483 536
+3 548 465 538
+3 568 549 524
+3 524 546 568
+3 523 525 467
+3 570 550 486
+3 486 525 570
+3 485 438 527
+3 527 571 485
+3 572 528 487
+3 487 508 572
+3 533 532 469
+3 573 551 488
+3 488 528 573
+3 471 490 552
+3 445 472 553
+3 574 575 514
+3 530 514 575
+3 557 558 531
+3 78 514 79
+3 473 431 429
+3 429 505 473
+3 535 462 480
+3 576 559 534
+3 577 514 559
+3 537 435 379
+3 536 495 522
+3 539 578 497
+3 497 476 539
+3 565 579 541
+3 541 498 565
+3 541 580 521
+3 521 499 541
+3 566 581 543
+3 543 500 566
+3 461 502 547
+3 479 503 582
+3 525 523 583
+3 584 570 525
+3 571 585 485
+3 508 526 572
+3 527 469 532
+3 586 573 528
+3 587 552 490
+3 490 510 587
+3 588 553 472
+3 589 590 554
+3 554 553 589
+3 591 574 514
+3 514 577 591
+3 555 530 592
+3 462 535 505
+3 534 535 480
+3 504 569 576
+3 576 534 504
+3 593 594 577
+3 577 559 593
+3 561 560 595
+3 595 562 517
+3 517 561 595
+3 562 596 563
+3 563 518 562
+3 563 597 564
+3 564 519 563
+3 564 598 496
+3 496 454 564
+3 520 497 578
+3 579 599 541
+3 542 521 580
+3 581 600 567
+3 567 543 581
+3 545 544 601
+3 478 567 602
+3 568 545 603
+3 604 547 502
+3 582 569 479
+3 549 568 603
+3 549 603 605
+3 523 549 605
+3 605 606 523
+3 583 523 606
+3 583 584 525
+3 524 485 585
+3 607 572 526
+3 526 550 607
+3 571 527 558
+3 558 527 532
+3 608 586 528
+3 528 572 608
+3 609 587 510
+3 510 529 609
+3 472 512 588
+3 594 591 577
+3 575 592 530
+3 569 582 576
+3 582 593 559
+3 559 576 582
+3 578 610 540
+3 540 520 578
+3 599 611 580
+3 580 541 599
+3 580 612 566
+3 566 542 580
+3 502 546 604
+3 582 503 593
+3 585 613 524
+3 584 583 614
+3 550 570 607
+3 558 557 571
+3 615 608 572
+3 529 551 609
+3 616 588 512
+3 617 589 553
+3 553 588 617
+3 618 595 560
+3 560 619 618
+3 555 571 556
+3 557 556 571
+3 562 620 596
+3 597 563 596
+3 597 621 598
+3 598 564 597
+3 598 622 539
+3 539 496 598
+3 565 540 610
+3 611 623 580
+3 581 566 612
+3 581 624 600
+3 601 625 626
+3 626 545 601
+3 613 604 546
+3 503 547 593
+3 627 628 605
+3 603 627 605
+3 546 524 613
+3 605 628 629
+3 629 606 605
+3 630 614 583
+3 630 631 614
+3 632 607 570
+3 570 584 632
+3 633 615 572
+3 572 607 633
+3 634 609 551
+3 551 573 634
+3 512 552 616
+3 613 585 555
+3 555 592 613
+3 571 555 585
+3 562 595 635
+3 620 562 635
+3 610 636 579
+3 579 565 610
+3 623 637 612
+3 612 580 623
+3 612 638 624
+3 624 581 612
+3 567 639 640
+3 640 602 567
+3 626 603 545
+3 626 627 603
+3 547 604 591
+3 594 593 547
+3 606 629 641
+3 641 583 606
+3 584 614 632
+3 642 633 607
+3 573 586 634
+3 643 616 552
+3 644 617 588
+3 588 616 644
+3 589 617 645
+3 595 618 646
+3 604 613 575
+3 575 574 604
+3 592 575 613
+3 596 647 621
+3 621 597 596
+3 621 648 622
+3 622 598 621
+3 622 649 578
+3 578 539 622
+3 599 579 636
+3 637 650 612
+3 638 651 624
+3 638 652 651
+3 567 653 639
+3 654 626 625
+3 626 654 655
+3 655 627 626
+3 574 591 604
+3 591 594 547
+3 627 655 656
+3 656 628 627
+3 628 656 629
+3 632 631 657
+3 632 614 631
+3 658 642 607
+3 607 632 658
+3 659 634 586
+3 586 608 659
+3 552 587 643
+3 646 635 595
+3 635 660 620
+3 636 661 611
+3 611 599 636
+3 650 662 638
+3 638 612 650
+3 638 663 652
+3 653 664 639
+3 583 641 665
+3 665 630 583
+3 632 657 666
+3 667 658 632
+3 608 615 659
+3 668 643 587
+3 587 609 668
+3 669 644 616
+3 616 643 669
+3 670 645 617
+3 617 644 670
+3 671 660 635
+3 647 596 620
+3 648 621 647
+3 648 672 649
+3 649 622 648
+3 649 673 610
+3 610 578 649
+3 623 611 661
+3 663 638 662
+3 674 675 676
+3 677 678 676
+3 678 674 676
+3 679 653 600
+3 600 624 679
+3 653 567 600
+3 653 680 664
+3 625 681 682
+3 682 654 625
+3 625 683 681
+3 683 625 684
+3 655 654 682
+3 685 629 656
+3 630 665 686
+3 676 666 657
+3 687 677 676
+3 687 676 657
+3 666 667 632
+3 688 659 615
+3 615 633 688
+3 635 646 671
+3 620 689 647
+3 661 690 637
+3 637 623 661
+3 679 624 651
+3 651 691 679
+3 680 653 679
+3 692 655 682
+3 692 656 655
+3 629 685 641
+3 686 631 630
+3 631 686 693
+3 633 642 688
+3 694 668 609
+3 609 634 694
+3 695 669 643
+3 643 668 695
+3 644 669 670
+3 670 696 645
+3 647 697 672
+3 672 648 647
+3 672 698 673
+3 673 649 672
+3 673 699 636
+3 636 610 673
+3 650 637 690
+3 691 651 652
+3 656 692 700
+3 656 700 685
+3 686 665 701
+3 667 666 702
+3 703 688 642
+3 642 658 703
+3 696 670 704
+3 689 620 660
+3 690 705 662
+3 662 650 690
+3 662 706 707
+3 707 663 662
+3 691 652 708
+3 678 709 710
+3 710 711 712
+3 712 713 714
+3 714 715 716
+3 717 681 683
+3 718 692 682
+3 682 717 718
+3 693 657 631
+3 701 693 686
+3 666 676 702
+3 658 667 703
+3 719 694 634
+3 634 659 719
+3 720 695 668
+3 668 694 720
+3 721 670 669
+3 669 695 721
+3 698 672 697
+3 698 722 699
+3 699 673 698
+3 699 723 661
+3 661 636 699
+3 677 724 709
+3 709 678 677
+3 711 710 709
+3 713 712 711
+3 715 714 713
+3 713 725 715
+3 717 682 681
+3 684 726 683
+3 726 684 716
+3 727 685 700
+3 657 693 724
+3 724 687 657
+3 724 677 687
+3 728 703 667
+3 667 702 728
+3 729 671 646
+3 697 647 689
+3 705 730 706
+3 706 662 705
+3 711 709 724
+3 724 731 711
+3 711 732 713
+3 713 733 725
+3 685 727 641
+3 693 701 734
+3 735 719 659
+3 659 688 735
+3 719 720 694
+3 695 720 721
+3 697 736 722
+3 722 698 697
+3 722 737 723
+3 723 699 722
+3 723 738 690
+3 690 661 723
+3 724 734 731
+3 732 711 731
+3 733 713 732
+3 715 739 726
+3 726 716 715
+3 740 665 641
+3 740 701 665
+3 734 724 693
+3 670 721 704
+3 732 731 734
+3 734 741 732
+3 732 742 733
+3 725 743 739
+3 739 715 725
+3 744 735 688
+3 688 703 744
+3 719 735 745
+3 746 721 720
+3 720 719 746
+3 697 747 736
+3 737 722 736
+3 737 748 738
+3 738 723 737
+3 738 749 705
+3 705 690 738
+3 742 732 741
+3 743 725 733
+3 733 750 743
+3 751 717 683
+3 752 683 726
+3 718 751 753
+3 751 718 717
+3 753 692 718
+3 692 753 754
+3 754 700 692
+3 754 727 700
+3 755 641 727
+3 741 734 701
+3 701 740 756
+3 747 697 689
+3 741 756 742
+3 742 757 750
+3 750 733 742
+3 683 752 751
+3 756 741 701
+3 758 744 703
+3 703 728 758
+3 759 745 735
+3 735 744 759
+3 719 745 746
+3 721 746 760
+3 736 761 748
+3 748 737 736
+3 748 762 749
+3 749 738 748
+3 749 763 730
+3 730 705 749
+3 739 764 726
+3 765 727 754
+3 727 765 755
+3 641 755 766
+3 766 740 641
+3 760 704 721
+3 689 660 747
+3 756 767 757
+3 757 742 756
+3 751 768 769
+3 769 753 751
+3 767 756 740
+3 770 759 744
+3 744 758 770
+3 771 746 745
+3 745 759 771
+3 761 736 747
+3 762 748 761
+3 762 772 763
+3 763 749 762
+3 764 739 743
+3 726 773 752
+3 773 726 764
+3 764 774 773
+3 750 775 764
+3 764 743 750
+3 753 769 754
+3 704 760 776
+3 747 777 761
+3 757 778 775
+3 775 750 757
+3 751 752 768
+3 740 766 767
+3 759 770 771
+3 771 760 746
+3 761 779 772
+3 772 762 761
+3 778 757 767
+3 767 780 778
+3 775 781 774
+3 774 764 775
+3 752 773 782
+3 783 773 774
+3 774 784 783
+3 778 785 781
+3 781 775 778
+3 765 754 769
+3 766 755 786
+3 760 771 787
+3 777 747 660
+3 766 786 767
+3 780 788 785
+3 785 778 780
+3 784 774 781
+3 768 782 789
+3 768 789 790
+3 790 769 768
+3 782 768 752
+3 780 767 786
+3 781 791 784
+3 791 781 785
+3 785 792 791
+3 769 790 793
+3 793 765 769
+3 765 793 794
+3 794 755 765
+3 777 671 795
+3 779 761 777
+3 788 780 786
+3 792 785 788
+3 788 796 792
+3 797 791 792
+3 788 786 755
+3 755 794 798
+3 788 798 796
+3 799 790 789
+3 660 671 777
+3 798 788 755
+3 800 790 799
+3 773 801 802
+3 801 773 783
+3 802 782 773
+3 803 792 796
+3 800 793 790
+3 793 800 794
+3 782 802 789
+3 801 783 784
+3 791 804 784
+3 804 791 797
+3 792 803 797
+3 798 805 796
+3 805 798 794
+3 796 805 803
+3 784 804 801
+3 799 789 802
+3 799 806 800
+3 807 802 801
+3 797 808 804
+3 808 797 803
+3 794 800 805
+3 802 807 809
+3 809 799 802
+3 799 809 806
+3 810 800 806
+3 811 801 804
+3 801 812 807
+3 803 813 808
+3 813 803 805
+3 805 814 813
+3 800 815 805
+3 800 810 815
+3 816 809 807
+3 801 811 812
+3 814 805 815
+3 817 808 813
+3 806 809 810
+3 804 818 811
+3 818 804 808
+3 811 818 819
+3 819 812 811
+3 808 817 818
+3 812 819 820
+3 820 807 812
+3 814 821 817
+3 817 813 814
+3 821 814 815
+3 810 822 821
+3 821 815 810
+3 820 816 807
+3 820 809 816
+3 809 820 822
+3 822 810 809
+3 819 818 817
+3 817 821 819
+3 819 821 822
+3 822 820 819
+3 153 160 154
+3 146 153 154
+3 234 205 206
+3 206 184 234
+3 184 183 234
+3 193 192 256
+3 228 193 256
+3 202 337 192
+3 202 241 337
+3 337 336 192
+3 336 254 192
+3 277 358 241
+3 277 279 358
diff --git a/src/meshes/teapot.ts b/src/meshes/teapot.ts
index 4b5ed0a..d1449f4 100644
--- a/src/meshes/teapot.ts
+++ b/src/meshes/teapot.ts
@@ -1,28 +1,12 @@
-
import { Mesh } from "../renderer/mesh";
// prettier-ignore
-const positions = new Float32Array([0.3173194,0.3333786,8.5697365,0.4346243,-0.49552074,8.534368,0.9198235,-0.10649914,8.46603,0.69460624,0.52524734,8.511177,0.97284055,0.4136325,8.389786,1.0132805,-0.11324591,8.344206,0.7736344,-0.57159126,8.38971,0.9758238,-0.10039134,8.188933,0.94195294,0.414358,8.188992,0.7588978,-0.54432714,8.18913,0.49902672,-0.07166117,7.6414285,0.50669265,0.21589954,7.6385503,0.69673765,0.83600205,8.38971,0.35126597,-0.8476943,8.389785,0.6694722,0.82126665,8.18913,0.23164886,0.982192,8.466029,0.35198915,-0.8168068,8.188991,0.37011656,-0.26150253,7.638832,0.5069319,0.14772983,7.4535193,0.3866512,0.43248278,7.6388326,-0.5578883,-0.3094799,8.534368,0.39927992,-0.20180121,7.4527583,0.23839387,1.0756484,8.344206,-0.16887234,-0.79467624,8.46603,0.60362357,-0.019366859,7.313401,0.5811307,0.29035118,7.3134084,0.22553529,1.0381917,8.188932,-0.37184733,0.68303454,8.534368,-0.17561466,-0.88813454,8.344206,0.4734453,-0.28901318,7.3134036,-0.16275844,-0.8506782,8.188933,0.15353324,-0.38154563,7.63855,1.198738,-0.14633353,7.1056128,1.1576148,0.4868177,7.1055975,0.2565811,0.60471696,7.727753,-0.28848737,1.0352092,8.389786,0.92881936,-0.69529,7.105553,0.32694885,0.46164724,7.4527583,-0.6339587,-0.64848906,8.38971,0.08536056,-0.3817857,7.45352,0.4141602,0.53581345,7.313403,-0.28921315,1.0043199,8.188991,0.22798373,-0.45598426,7.3134084,-0.6066965,-0.6337515,8.189131,-0.13403079,-0.37388057,7.641429,2.7538369,-0.47784615,6.855464,2.6645033,1.0011065,6.8552766,0.82043344,0.9911856,7.105554,0.13346235,0.5647119,7.615177,-0.71085685,0.75910497,8.38971,0.42445442,-1.03247,7.1055965,2.1208193,-1.7569087,6.855009,0.14451347,0.66599226,7.313401,-0.9100624,-0.22612211,8.389785,-0.022583503,0.56930006,7.4535193,-0.17598931,0.5413771,7.6360645,-0.6961207,0.73184085,8.18913,-0.08173364,-0.4784776,7.313401,3.3105688,-0.6107299,6.7219095,3.2099237,1.1729777,6.721785,0.27146533,1.2611125,7.1056128,-0.8791747,-0.22684313,8.188991,-0.3238697,-0.24497157,7.638832,2.5387228,-2.1470783,6.721652,3.5068655,-0.60725945,6.572071,3.5817578,0.23275018,6.5618834,1.8820512,2.1831918,6.85501,-0.8570466,0.29401478,8.466029,-0.2641706,-0.27413306,7.4527583,-0.20868984,-1.0735997,7.1056113,0.93873763,-2.5393524,6.8552766,3.2108827,-1.4866515,6.5724206,-0.16520894,0.6434989,7.313408,-0.95050275,0.30076113,8.344206,3.4251747,1.1554604,6.5717473,-0.41020927,0.43279728,7.724516,-0.91304624,0.2879027,8.188933,-0.35138005,-0.3483008,7.313403,2.7134223,-2.2387066,6.572655,2.2722223,2.6010914,6.7216535,0.57838964,3.232884,6.7839127,0.27146533,1.2611125,7.1056128,-0.36167288,1.2199802,7.1055984,-0.45191103,-0.00358756,7.6383915,1.6036147,-2.998129,6.6701837,3.0742886,1.9522526,6.5674567,-0.75766027,-0.80367374,7.1055527,-0.5401944,-2.6286998,6.8554626,2.0888412,-2.8002293,6.5673866,2.4488332,2.7006938,6.5624285,-0.41066995,0.4765256,7.313403,-0.3365005,0.3893181,7.4527583,-0.41160053,0.29100296,7.6205225,-0.44415385,0.039785467,7.45352,0.69117117,-3.1695483,6.7201076,1.8696885,3.1343663,6.5751276,1.1240903,3.3882115,6.6680064,-0.5183526,-0.10284078,7.3134084,0.57838964,3.232884,6.7839127,-0.8759619,2.7268612,6.8552785,-0.8660391,0.8828046,7.1055536,-0.6730901,-3.1854231,6.721909,0.8811102,-3.3549297,6.5695343,-1.0948335,-0.2993084,7.1055975,-1.8192712,-1.995676,6.855009,-0.54084575,0.20688291,7.3134017,-0.19194114,-3.440414,6.572637,0.6793699,3.5807958,6.5659122,-1.0478399,3.2722905,6.7217855,-0.23563012,3.6250587,6.5726337,-2.058048,1.9444163,6.85501,-1.1359624,0.33383572,7.1056128,-2.2094445,-2.4135787,6.721652,-1.1199048,-3.2616193,6.57264,-0.23563012,3.6250587,6.5726337,-2.601717,-0.8135826,6.855278,-1.2548609,3.4110599,6.5634727,-2.0500004,-2.7948868,6.5637937,-2.475946,2.3345895,6.7216535,-2.0788782,2.9596846,6.571581,-2.691062,0.66534126,6.8554645,-3.1471443,-0.9854685,6.721784,-2.6357317,-2.247982,6.573928,-2.63897,2.3919406,6.6172624,-3.1306086,-1.522142,6.5726523,-3.2477925,0.7982382,6.7219095,-3.0718286,1.8474529,6.571794,-3.413452,-0.74533796,6.5658684,-3.5159945,0.059388027,6.5718307,-3.4100876,0.9910958,6.574492,-4.730704,-0.86154985,4.941897,-4.349601,-0.5207203,5.8704295,-4.431518,-0.47427037,5.7001743,-4.544287,0.27175042,5.5340447,-4.515292,-0.18791197,5.5581765,-6.0064917,-0.26725486,5.555498,-5.974183,0.19864558,5.5146837,-6.012012,0.50790197,5.5816584,-6.550813,-0.48760614,5.679387,-5.2484293,0.09680519,3.7657053,-4.4538007,0.60822797,5.6591616,-4.7887526,0.7449787,4.8942394,-3.971134,-0.7134599,6.6173983,-6.0881467,0.67618674,5.706145,-4.281139,1.5959278,5.605165,-4.9241576,1.4730728,4.175028,-4.3772764,0.7091898,5.81098,-5.2557173,-0.6386304,3.5125139,-4.5762753,-2.2242808,4.1880355,-4.056509,-1.9614571,5.593843,-6.9542165,-0.5174698,5.7965603,-4.7068014,2.1098776,4.175024,-5.255685,0.8265116,3.51245,-5.115945,-1.338603,3.5125136,-4.2860003,-0.41995412,6.0210557,-6.2920575,-0.4233016,5.9851403,-6.739088,-0.20704432,5.4430785,-6.757185,0.45542058,5.4665256,-4.2435946,2.9862344,4.1873975,-3.7614768,2.6614072,5.5901113,-3.8449485,-3.3171709,4.187343,-3.4095986,-2.932576,5.5886626,-3.586688,-1.7080476,6.694552,-6.4975467,0.7083442,5.8248315,-7.19817,0.6742263,5.519435,-4.305058,0.66851044,5.9728203,-3.96999,0.63667864,6.678227,-3.379538,3.9700978,4.187344,-2.994935,3.5347333,5.5886993,-3.7781985,1.4320339,6.6953306,-3.3161764,2.3631377,6.695235,-5.0724497,1.8809651,3.2418895,-5.436617,-0.07728625,2.4636514,-5.4069343,-0.39494467,2.332125,-4.8036203,-2.3392727,3.2419538,-2.861079,-4.181229,4.1874,-2.536268,-3.699107,5.590102,-3.0171854,-2.5670226,6.694106,-3.7049954,-0.95043725,6.8313518,-6.2546616,0.6104441,5.987863,-5.4033594,0.59700084,2.3087864,-5.2481666,-1.3797152,2.377088,-4.252325,-0.099223375,6.1451607,-3.956284,0.00023755585,6.7539997,-6.3227677,-0.11042072,6.10885,-7.1245694,-0.1845508,5.3228803,-7.0947223,0.19801868,5.306762,-7.174853,0.5064983,5.3518076,-7.5182743,0.7055142,5.573855,-2.286653,4.701417,4.188045,-2.0238216,4.1816473,5.5938654,-2.6384156,3.133416,6.695234,-4.454975,3.1285956,3.2412653,-5.250233,1.5595442,2.3770206,-5.016066,-2.0581434,2.377086,-4.035949,-3.4859674,3.2413816,-1.9847316,-4.644433,4.1750174,-1.48033,-4.218348,5.5979357,-2.4405496,-3.068894,6.729654,-5.0191436,2.2382622,2.3770227,-3.7470934,0.88844436,6.830117,-3.5256727,1.5801275,6.827864,-5.360387,-0.52368873,2.1185849,-4.701892,-2.6908948,2.3770838,-1.3479232,-4.861798,4.1750026,-1.8018217,-3.5090172,6.694245,-7.200964,0.609706,5.840724,-6.3285265,0.37226683,6.087644,-4.25417,0.37743765,6.1208873,-1.3476619,5.0493426,4.1751246,-0.8926558,4.5611806,5.6040473,-1.7815825,3.7057772,6.6953135,-3.548338,4.161096,3.2413821,-4.705932,2.8714378,2.3770392,-3.1936693,2.3020644,6.8124237,-5.346328,0.71555746,2.063215,-5.010006,-1.6751164,1.7790406,-4.3117332,-3.2718909,2.3770773,-3.0034537,-4.3925996,3.2412758,-0.6614745,-4.861669,4.587829,-3.3389218,-1.8052135,6.831704,-2.8393576,-2.49956,6.8336506,-7.701988,-0.5187389,5.405467,-7.367252,-0.46998867,5.3715563,-0.6737634,5.183913,4.175127,-4.31667,3.4529867,2.3770516,-5.119853,1.1243631,1.5908962,-5.903442,0.09866872,2.7168872,-5.8858705,-0.27557752,2.642396,-5.0957665,-0.5644824,1.4881663,-3.851685,-3.7950518,2.3770664,0.031256422,-5.04252,4.1750975,0.011662637,-3.9763088,6.6404853,-0.819132,-3.853918,6.688407,-7.312107,0.37113437,5.9253755,-7.300333,-0.009827633,5.119475,-7.367562,0.44728976,5.111066,-7.586666,0.67378813,5.127903,0.031525277,5.2300315,4.1751146,0.3496119,4.638354,5.6102314,-0.7830427,4.044278,6.6954255,-2.4016495,4.9287653,3.241949,-3.8574228,3.9768324,2.377068,-2.6021001,2.9604928,6.8223453,-4.7469864,2.4944785,1.7789929,-5.252127,-0.38440123,1.7811959,-5.2223115,0.2085007,1.6619786,-4.6468096,-1.5506939,1.1972382,-4.3991623,-2.9073324,1.7792491,-3.3278384,-4.254301,2.3770509,-1.7558192,-5.0100827,3.241873,0.7365425,-4.996398,4.1751213,0.9554415,-4.373686,5.6039987,-7.746068,0.5081755,5.663058,-7.842549,0.70379484,5.12325,-8.019979,0.5683675,5.2090693,0.7368014,5.1839046,4.175056,0.031525277,5.2300315,4.1751146,0.3496119,4.638354,5.6102314,-3.334263,4.4368796,2.3770814,-4.8758225,-0.16590808,1.1607132,-2.7462924,-4.643561,2.3770385,1.4104426,-4.861831,4.175107,-1.8565576,-3.291895,6.829735,-7.2763257,-0.3220995,5.8849096,-7.4144034,-0.31355634,5.09981,-7.341536,-0.012963378,5.944661,1.4107013,5.0493035,4.175035,1.5431004,4.4058485,5.5979724,0.31550398,4.114251,6.6955013,-1.0648859,5.3834357,3.2426853,-2.753266,4.827038,2.3770866,-1.9496351,3.403922,6.828042,-3.9892373,3.6279087,1.7792077,-3.534902,1.3419379,6.7536054,-3.1034727,2.213788,6.753592,-4.4050016,2.3193011,1.1972897,-4.768838,1.1694709,1.1613004,-3.7303765,0.36352766,6.7753444,-6.4756627,0.29410294,3.156839,-6.6369,-0.09990094,3.3072042,-6.2025986,-0.470372,2.7201223,-5.7300205,-0.5029038,2.1332479,-4.0792565,-2.6941519,1.1974577,-3.5027647,-3.9268675,1.7792103,-2.1131122,-4.956774,2.3770192,-0.34353554,-5.2910557,3.243316,2.3494358,-4.513902,4.188034,2.0866013,-3.9941409,5.5938454,0.8458194,-3.8567634,6.695423,-7.831824,0.19886562,5.705507,-8.094867,0.2955673,5.3307548,2.0475075,4.831946,4.175031,-2.12051,5.1412153,2.3770878,-1.2157704,3.7652235,6.8247223,-6.1934395,0.5100337,2.8293028,-5.4246874,0.36932442,2.4164786,-5.932614,-0.14036371,2.0343564,-1.4343928,-5.187864,2.3770118,-0.6543521,-3.7040982,6.834261,-7.685257,-0.42229876,5.6169567,-7.347461,-0.008614036,4.8715043,-7.3810925,0.377184,4.744323,2.9238608,4.368738,4.1874127,2.599037,3.8866217,5.5901165,0.31550398,4.114251,6.6955013,1.3696648,3.9033444,6.6953316,0.4063109,5.478569,3.2433312,-1.4420887,5.3733134,2.3770819,-2.969696,4.5243163,1.7792546,-2.6308517,2.7743998,6.7802687,-3.7023778,3.3718052,1.1974682,-3.6680453,-0.6744328,6.753139,-6.314681,0.37202823,2.2773352,-6.159253,0.65871054,2.3440857,-5.2512546,0.5622446,1.7798784,-6.717674,0.68150586,3.0420375,-6.684208,-0.39921018,3.2172334,-4.0868173,-0.192652,0.4751745,-3.8717358,-1.2729477,0.4751809,-3.246659,-3.640007,1.1974671,-2.3693287,-4.68462,1.7789958,-0.71620446,-5.330765,2.3770237,1.1276636,-5.1959224,3.24267,3.4423199,-3.7825778,4.187342,3.0577242,-3.3472278,5.5886636,1.8443594,-3.5182643,6.6953096,-3.3633852,-1.6067684,6.7742524,-7.8042846,-0.18544722,5.6870413,0.4063109,5.478569,3.2433312,-0.72409046,5.5172434,2.3770707,-0.20039962,3.9575915,6.8247266,-2.088375,3.2287989,6.7536,-3.8722596,1.4589622,0.4751937,-4.051824,0.64860255,0.47571108,-6.8648367,0.70852804,3.0078607,-7.046276,-0.520934,3.3223233,-7.0870767,-0.49296743,3.1119637,-6.602185,-0.37153652,2.5548275,0.035404194,-5.3794003,2.377041,0.29871577,-3.743172,6.8321533,-7.5974884,-0.48682934,5.0446377,-8.030417,-0.20051181,5.426653,-7.4448137,0.60520554,4.411285,-7.5999126,0.71828,4.102902,-7.9099193,0.6069816,4.24128,-8.092233,0.3703162,4.4733057,-8.168957,0.17194043,4.822119,3.9077268,3.5046847,4.1873484,3.472368,3.1200871,5.588685,2.3007684,3.4413216,6.6952367,1.8185909,5.1976027,3.2418675,0.027373014,5.566918,2.37704,-1.7374868,5.135153,1.7790415,-2.756525,4.204398,1.1974552,-3.5780842,1.404164,6.5562587,-2.8333483,2.7082171,6.556407,-3.7940054,0.371256,6.556247,-3.3993247,-2.227243,0.4751969,-2.1941495,-4.3426347,1.1972888,-1.0482578,-5.1330214,1.778742,0.78686714,-5.329726,2.3770711,2.4644177,-4.7412496,3.2419624,4.306375,-2.7987163,4.1873918,3.8242598,-2.4738975,5.590093,2.7011974,-2.9458964,6.695234,0.77898186,5.518282,2.3770227,0.027373014,5.566918,2.37704,-0.20039962,3.9575915,6.8247266,0.8531174,3.8797479,6.8247237,-0.74499977,3.791392,6.7858686,-1.4417481,3.566486,6.7536907,-3.400405,2.4131637,0.47520807,-6.923593,0.60747963,3.4389355,-6.6953583,-0.013274428,2.5051777,1.5048629,-5.1857967,2.3770826,1.2785492,-3.5777092,6.82472,-1.2664151,-3.4705017,6.7800164,-2.8481781,-2.4062736,6.75612,-2.1361177,-3.0412354,6.7564607,-8.126128,-0.18313502,5.0961356,-7.344837,-0.24456674,4.456033,-7.2117953,-0.008970504,4.2507915,4.6390495,2.4117992,4.1880417,4.119274,2.1489663,5.593877,3.0710456,2.7635624,6.695235,3.066226,4.580123,3.2412648,1.4971681,5.375383,2.3770146,-0.34254044,5.4136314,1.7785238,-1.6130615,4.771958,1.1972396,-1.6573169,3.5457325,6.556233,-3.6192412,-1.269777,6.556458,-7.013715,0.36999366,2.7914958,-7.238237,0.60780025,3.1472998,-7.0722775,0.36817148,3.878109,-7.0563846,-0.3823268,3.7118723,-7.249857,-0.32068634,3.085015,-2.7058933,-3.0168705,0.47520605,-0.96771836,-4.7579217,1.1970073,0.4053214,-5.226116,1.7785263,2.1832895,-4.953697,2.3770845,3.611114,-3.9735818,3.241378,4.900875,-1.9813905,3.7656164,4.3434877,-1.4179593,5.5979514,3.378955,-2.1756198,6.6952353,-0.5045018,-3.635692,6.753706,-7.4469895,-0.41718417,4.420278,-8.028167,-0.08392716,4.1285315,-8.090689,-0.18284929,4.465577,2.1758907,5.144292,2.3770273,2.00482,3.4299693,6.832451,0.04425714,3.8563523,6.7803407,-2.7074025,3.2030592,0.47520375,-2.5726264,-2.8716905,6.556129,-4.025156,-0.21047442,0.28335992,-3.8078282,-1.2731591,0.2834088,2.816042,-4.6395216,2.3770845,4.992367,-1.2846601,4.1606407,2.0124123,-3.2164075,6.82804,0.29789388,-3.668307,6.7528677,-7.949939,-0.46532854,5.0585604,-7.8970437,0.36936703,3.8938644,4.667706,1.3815396,5.037746,3.6434104,1.906729,6.6953106,4.098726,3.673484,3.2413895,2.809069,4.8310785,2.377043,1.1110369,5.320537,1.7787428,-0.34254044,5.4136314,1.7785238,0.04425714,3.8563523,6.7803407,0.56071013,3.820888,6.780335,-0.31851503,5.0310044,1.1968436,2.6458645,2.9585094,6.556356,0.88556135,3.8675795,6.55643,-1.6573169,3.5457325,6.556233,-3.9590328,0.898784,0.28337845,-7.3148484,-0.012829382,3.0350292,-1.8290501,-3.6038957,0.4752029,0.3812963,-4.8434844,1.1968379,1.8002667,-4.947635,1.779039,3.3970406,-4.2493625,2.3770742,4.517753,-2.9410813,3.241257,4.792674,-0.56844103,5.037682,3.840976,-1.2445179,6.6953306,2.6648738,-2.7729814,6.822344,1.2915494,-3.4710155,6.7790594,-1.2361106,-3.541482,6.564154,-7.628632,-0.5208629,4.342767,-7.879861,-0.4778739,4.3912725,3.3906176,4.4418178,2.3770528,1.2823496,3.6588292,6.77232,-1.8306533,3.7906063,0.4751903,3.4833674,1.7824525,6.556236,3.8516362,-0.21831024,6.556236,-0.65172243,3.8495312,6.5640235,-0.65172243,3.8495312,6.5640235,-3.621578,1.9081422,0.28341877,-3.3375154,-2.2108119,0.2834436,3.9201987,-3.7893152,2.3770666,-7.7622733,-0.01176587,3.5889034,5.1114855,1.5272183,3.731053,3.9819095,0.9081907,6.695424,4.8663964,2.5267985,3.2419434,3.9144619,3.9825702,2.3770678,2.8981256,2.727245,6.8223453,2.4321156,4.872134,1.7789999,1.0305097,4.94544,1.1970135,-0.31851503,5.0310044,1.1968436,3.7871618,0.7768693,6.5640225,2.151423,3.2286174,6.7535925,0.88556135,3.8675795,6.55643,1.2109123,-3.5427477,6.5585585,0.030377537,-3.7481942,6.556368,-7.5394063,0.36914256,3.3318565,-7.7099285,-0.38731572,3.7365253,-0.8070288,-3.9515762,0.4751778,1.6758456,-4.5844383,1.1972371,3.0324783,-4.3367934,1.7792495,4.3794475,-3.2654703,2.3770523,5.236874,-0.6392787,3.7783449,4.0518813,-0.1903576,6.6955,3.3676007,-1.8796743,6.8324494,4.921234,0.76358765,4.746632,4.374509,3.459411,2.3770778,-0.80837876,4.1388216,0.47517642,-3.0476236,2.775321,0.2834471,3.7290246,0.87014186,6.785868,3.504117,1.5668962,6.75369,3.1664298,2.2135217,6.753599,2.7120318,2.755998,6.7802687,3.4622812,-1.7084004,6.5564127,-3.5008435,-0.6699893,0.13198212,-2.6501765,-2.9852502,0.28344595,4.76871,-2.6839197,2.377037,5.2927423,-1.2423507,3.0185995,4.9627104,0.06955906,4.750888,2.1511536,-3.0412834,6.7535977,4.7646704,2.87841,2.3770845,3.3415554,2.0747788,6.8280416,3.5655434,4.1143823,1.7792106,2.2569351,4.530146,1.1972893,3.7585196,-0.43556315,6.7803335,3.7939835,0.08088671,6.7803392,2.3425848,-2.9970698,6.556362,0.3178027,-4.024448,0.4751742,2.8193026,-4.016883,1.1974564,4.052013,-3.440397,1.7792099,5.0819216,-2.0507438,2.377021,2.6936302,-2.5868845,6.7802677,5.285567,1.4042546,3.093043,5.0788436,2.2456608,2.3770828,3.702855,1.3409172,6.824722,0.020473175,4.2125535,0.47571662,-2.2731817,3.4626627,0.28344473,3.5964599,-1.1572055,6.7723184,3.1662495,-2.0262752,6.753591,-3.3948684,1.2518055,0.132026,-2.7330964,-2.3770037,0.14949782,-1.7829934,-3.5592084,0.28341725,5.3429136,-1.2053245,2.5984461,5.234566,-0.9998197,3.517517,5.2317896,-0.14782351,3.9187021,3.817382,-0.7279616,6.824723,5.23198,0.7170731,3.8378177,5.2374287,1.2228642,3.4744844,4.461943,3.0948472,1.7792519,3.3094323,3.8275242,1.197465,0.86980563,4.1390944,0.47517905,0.020473175,4.2125535,0.47571662,1.3980982,-3.809365,0.47518066,3.7651544,-3.184287,1.1974654,4.8097653,-2.3069603,1.7789931,3.8952193,0.32555953,6.8247256,5.304023,1.5456657,2.294942,-1.3355259,3.932978,0.28341034,-2.4393737,2.858245,0.14949907,-2.1378677,-1.8630359,0.062231947,-0.7736363,-3.8966615,0.283377,5.365675,-1.0353161,2.2656987,5.980071,-0.95416343,3.7473016,5.8726006,-0.47322437,4.0314875,5.6534486,0.5390246,4.004417,5.9734955,1.1424643,3.743597,5.320845,1.4251025,2.715455,5.362547,1.2023716,2.236414,5.1053176,1.8224366,1.8128697,4.1420302,2.8816752,1.1974589,1.8918276,3.7914135,0.4752043,-2.490558,0.21160704,0.037366636,2.3523912,-3.3369524,0.4751951,4.46778,-2.131785,1.1972903,5.1768384,-1.3231857,1.7953123,6.533757,-1.0639676,3.6835604,6.638696,1.200992,3.8430643,-0.2728472,4.1503034,0.28336054,-1.9254082,2.263013,0.062232867,-1.1266558,-3.3324995,0.132025,0.33562735,-3.9627848,0.28335863,5.3656826,-0.552829,1.9139667,5.952957,-1.1935283,2.9967444,6.116315,0.0951385,4.2783213,6.1461897,0.6248089,4.2172513,5.3687925,0.831689,1.9620869,4.709585,1.7382131,1.1972369,2.7686727,3.2043874,0.4752079,0.23503682,-1.071256,-0.0003161478,3.1420164,-2.643525,0.47520587,4.831614,-0.98195803,1.1612992,5.186922,-0.22539668,1.4699719,6.454007,1.2974428,3.3594618,5.129014,0.80249345,1.4593781,0.83641624,4.0841804,0.28337893,-0.2728472,4.1503034,0.28336054,-0.73235995,3.6259918,0.13198325,-0.17723309,1.2943197,0.0000035632477,1.3983141,-3.7454555,0.28340825,5.3477383,0.29166287,1.7928702,6.329355,-0.9915551,2.7560124,6.61503,-1.0288318,3.2925076,6.555245,-0.626463,4.513844,6.353933,-0.4007407,4.4410877,6.6771183,-0.79848605,4.4080696,6.4833198,1.0061774,4.227145,6.0156517,1.3106078,2.7524338,3.4621005,2.41476,0.47519627,-0.086459965,-2.4281883,0.037366044,3.7290418,-1.7666837,0.47520345,6.1249423,-0.648356,2.2706246,6.502354,0.30787817,4.7692614,6.1080465,0.95751995,2.3589628,1.8457707,3.7467268,0.28341934,0.7951409,-3.4384716,0.13198134,2.3359544,-3.275149,0.2834438,6.561281,0.63669205,4.7027864,6.6590147,1.0898895,3.0319288,4.7372355,0.42505196,0.97745115,3.934514,1.4604647,0.4751819,0.14923692,2.6157062,0.03736722,4.0767236,-0.74466074,0.4751781,6.601287,-0.4528047,2.5900903,6.996112,-0.69361264,3.3450387,6.980644,-0.8744909,3.9022043,6.581801,-0.060869526,4.9807677,2.7129488,3.1727731,0.2834469,1.1894317,3.5200171,0.13202651,-0.73235995,3.6259918,0.13198325,3.1104014,-2.587803,0.28344575,6.160445,0.31580782,2.1495166,7.2517424,-0.56772244,5.5264316,6.77691,0.8437352,4.8424435,4.1495953,0.380169,0.47517455,6.632122,0.49791166,2.550653,6.963985,-0.09763762,2.9635518,3.400295,2.3983274,0.28344494,2.5021532,-2.6707227,0.14949752,3.6843576,-1.72062,0.28341755,7.2163815,-0.37407193,3.6072721,7.4610567,-0.5447116,5.3487186,6.9951925,1.0524173,3.9312193,0.14923692,2.6157062,0.03736722,6.9370003,0.6047369,3.0253458,7.2538595,0.26284945,3.5667257,7.604919,-0.4150154,5.2876244,3.8706036,1.4606845,0.28340954,2.7958703,2.5645244,0.1494988,1.9881839,-2.0754974,0.062231906,4.0218105,-0.7112595,0.2833773,7.7167187,-0.21032076,5.2491274,6.9847584,-0.24307872,5.9314547,7.4152937,-0.4006576,6.2037954,6.8654375,0.20102085,5.797168,7.0197935,0.4880324,5.897712,7.473017,0.65329975,6.0312843,7.1624184,0.7782843,3.694129,7.7543983,0.20389417,5.2316613,4.087933,0.39799693,0.28335974,2.2006412,2.0505579,0.06223284,3.4576466,-1.064283,0.1320253,7.868846,-0.4188554,5.9469986,7.311481,0.5206287,6.2384286,7.2509556,0.857493,5.01134,0.23503682,-1.071256,-0.0003161478,7.655847,0.5398016,5.2791934,7.144215,-0.13775255,6.2459326,7.097779,0.18415965,6.2468796,3.5636184,0.857513,0.13198228,8.270933,-0.40947828,6.6404014,8.397093,-0.2674425,6.27001,8.090277,-0.16513182,5.8901577,-0.17723309,1.2943197,0.0000035632477,2.5533364,-0.024088254,0.037366614,8.1105585,0.35696587,5.8848352,7.745861,-0.29607552,6.619299,8.791607,-0.37024873,6.680369,9.208957,-0.22081424,6.7232866,8.514184,0.18247418,6.254532,7.6830177,0.6525094,5.8102393,8.254537,0.54529625,6.26645,7.6640778,-0.051385157,6.699082,7.452693,0.18596663,6.5899305,9.418197,0.02214857,6.7426867,9.309395,0.2883362,6.7054057,7.639344,0.42809772,6.5993533,8.081022,0.54702026,6.682619,8.973659,0.5072487,6.6863976,8.516912,0.5961705,6.6518593,7.774359,0.30062857,6.710231,8.778585,-0.31967074,6.749737,8.168418,-0.3056635,6.7230115,9.289243,0.35341647,6.7610135,9.343727,-0.047097933,6.773689,8.747097,0.51438695,6.747256,7.8048196,0.034893997,6.686088,7.9792643,-0.14918195,6.6844816,9.230967,0.1964769,6.742982,7.8494005,0.23327385,6.683101,8.797728,-0.20270823,6.696664,8.379226,-0.23452786,6.685985,8.787157,0.39214262,6.6979775,8.434503,0.42667592,6.686893,8.068272,0.3675492,6.6910095,8.594647,0.33826095,6.5586057,8.741324,-0.040165488,6.556678,8.313558,-0.22020936,6.556027,7.7901807,-0.120350294,6.5560217,7.9875245,0.3855724,6.5559316,7.6833825,0.17818877,6.5562525]);
-
-// prettier-ignore
-const colors = null;
-
-// prettier-ignore
-const uvs = new Float32Array([0.5130135,0.9198848,0.5217891,0.85828614,0.58114374,0.8746406,0.58527386,0.9281594,0.6222538,0.9077095,0.59163153,0.86890244,0.552618,0.84294724,0.59104407,0.8699213,0.62563014,0.9079919,0.5540415,0.841756,0.5516901,0.8839597,0.5668332,0.913114,0.63845086,0.9481697,0.5143893,0.82650316,0.64400506,0.9493522,0.5032841,0.97406995,0.5152399,0.82476294,0.52789915,0.8641659,0.560285,0.9045825,0.55687505,0.93820417,0.43091312,0.86009645,0.53206015,0.86927867,0.50688475,0.9820157,0.47324118,0.82889205,0.57240975,0.880344,0.5955016,0.91412896,0.49936882,0.98160875,0.38838595,0.9307757,0.47342134,0.818861,0.5419219,0.85465,0.47360563,0.8194256,0.5009462,0.85286015,0.6320224,0.8241051,0.6957167,0.8717224,0.5244438,0.9552642,0.321421,0.95452094,0.5772139,0.7874715,0.5419612,0.94312495,0.43428594,0.82873905,0.48963708,0.85210955,0.5909376,0.9488121,0.31289035,0.9535726,0.50808364,0.8386394,0.43398276,0.8264038,0.4672116,0.8490727,0.68442667,0.69075227,0.7677691,0.74190634,0.7797651,0.919399,0.47073036,0.95381856,0.3296314,0.91405547,0.52456814,0.764805,0.6112861,0.647773,0.47136694,0.9693712,0.39690262,0.84757364,0.4286443,0.94780624,0.393127,0.93785214,0.32605162,0.91227955,0.47129816,0.83305895,0.6915945,0.65503204,0.7756376,0.7061503,0.9493108,0.9476329,0.3959446,0.84520465,0.43808037,0.85536253,0.6164496,0.61160266,0.6955771,0.64192766,0.73241365,0.6636259,0.86089665,0.7841265,0.36793247,0.8823658,0.44432837,0.85408545,0.47024077,0.7573834,0.5411039,0.62103,0.6577283,0.61399305,0.35257414,0.9472293,0.35724416,0.8758726,0.7746078,0.68852794,0.3733376,0.9145913,0.35807136,0.8755461,0.43603545,0.83863723,0.6199908,0.5952105,0.86648875,0.74763167,0.9804292,0.7847217,0.05800074,0.9470879,0.1700483,0.9186431,0.40918443,0.8729354,0.5642368,0.579605,0.81633395,0.70794994,0.41838777,0.76619494,0.46870893,0.6141348,0.58635426,0.57979107,0.86578345,0.7297765,0.34922224,0.9129243,0.38138193,0.9140363,0.38661256,0.9008091,0.40486693,0.8772048,0.5255224,0.58028775,0.9041162,0.7425292,0.94570374,0.7563357,0.40270334,0.8547409,0.014138669,0.784562,0.08442734,0.79050976,0.2515162,0.87192476,0.4679464,0.57813275,0.53227085,0.56509775,0.36694822,0.7899612,0.39988467,0.6280756,0.37145704,0.88099164,0.488151,0.5603074,0.9749289,0.7515472,0.07733683,0.75583076,1,0.7518859,0.1780229,0.7524028,0.3113885,0.827473,0.39620015,0.5933264,0.45013458,0.5626584,0.02590349,0.7502048,0.33165544,0.66004163,0.08336244,0.7360534,0.4090929,0.57185626,0.16890922,0.7196524,0.13130634,0.7213562,0.25745046,0.7056582,0.32541767,0.6267899,0.37749538,0.58520985,0.1695168,0.7052448,0.34251413,0.6000702,0.24910891,0.6733818,0.20017692,0.6860455,0.31026167,0.6179733,0.27798718,0.6378613,0.23958251,0.6624164,0.28464392,0.4864717,0.28498235,0.55736434,0.28115457,0.5477971,0.25570035,0.5514192,0.2705213,0.5432856,0.26806915,0.5302274,0.25634587,0.5351294,0.24925917,0.5426619,0.27259868,0.5282114,0.24444605,0.4413668,0.24575703,0.56613994,0.23414335,0.51830506,0.30268717,0.60578007,0.24627501,0.54972535,0.21067178,0.574331,0.2076304,0.4881872,0.2438646,0.57847446,0.26293457,0.41529727,0.31854618,0.42177543,0.3294336,0.5032448,0.2723695,0.5323272,0.18816572,0.49985325,0.22189446,0.44077185,0.28322378,0.40314728,0.28365842,0.5696856,0.27400708,0.54523134,0.2642439,0.52296853,0.25022617,0.5320317,0.1593124,0.5159724,0.17086244,0.5971978,0.35865298,0.40223253,0.36771506,0.48477077,0.34112304,0.59049904,0.24659455,0.5515303,0.24588035,0.53279114,0.24699932,0.58816814,0.2548594,0.6407019,0.12066301,0.53475666,0.13061813,0.6171116,0.2254057,0.66042745,0.18546042,0.68367624,0.19035369,0.44470155,0.23766378,0.3736579,0.24596088,0.36147276,0.3112502,0.3721156,0.3998853,0.38667402,0.40648776,0.47049192,0.37710464,0.5732688,0.31416214,0.61545026,0.24981065,0.56025493,0.21801525,0.37797883,0.27380627,0.34845197,0.2743498,0.58408105,0.2795482,0.62895304,0.26718163,0.5543414,0.26248547,0.5156484,0.2544375,0.51999414,0.24837086,0.5254307,0.24616271,0.53391534,0.08102207,0.5495714,0.08862658,0.63335013,0.1437526,0.7048693,0.1525248,0.46621132,0.19328743,0.39823967,0.2941829,0.33673427,0.3523931,0.35192838,0.43191862,0.37803334,0.44650903,0.46116275,0.4043408,0.56586915,0.17444819,0.40960068,0.24774413,0.6591667,0.21926193,0.67785656,0.24717681,0.35058284,0.31475133,0.32563043,0.4540663,0.37416425,0.43135697,0.55576897,0.24941503,0.5462295,0.25612414,0.5607166,0.25816396,0.5935229,0.050283827,0.5576775,0.044015072,0.64466846,0.09908898,0.72281355,0.11497244,0.4843169,0.15597351,0.42016393,0.18731065,0.69494605,0.21368273,0.36845344,0.27828977,0.3130484,0.3356722,0.31524217,0.39518535,0.33556834,0.47720122,0.39825025,0.3490256,0.5995908,0.3802572,0.5843848,0.26847196,0.51288396,0.2683577,0.51376116,0.028906103,0.5612363,0.13770096,0.4298646,0.19671394,0.35345167,0.2370786,0.3967119,0.24548845,0.38788235,0.24416023,0.31525728,0.35708755,0.30569434,0.5006035,0.3715247,0.4985274,0.54524106,0.46821022,0.54922736,0.25474378,0.54580563,0.25747308,0.5090618,0.24825433,0.5143125,0.24393636,0.5164698,0.006745183,0.56319314,0.008450594,0.649223,0.050416894,0.7358967,0.07677932,0.49832088,0.11949526,0.43863845,0.15003483,0.7145771,0.16068405,0.38497368,0.24007717,0.33743805,0.22259447,0.34067464,0.27037823,0.27944613,0.31981084,0.29058224,0.37912178,0.29713255,0.44038028,0.32420915,0.5243146,0.37308502,0.5318696,0.46083057,0.25049984,0.53463733,0.24431553,0.51584655,0.2472804,0.51718134,0.9844811,0.5633728,1,0.56319314,0.99197483,0.6494522,0.10123867,0.44641507,0.22563857,0.301084,0.40188268,0.2897215,0.5472815,0.37644538,0.42563075,0.57035005,0.26852047,0.5359441,0.263421,0.5041579,0.2625745,0.54166716,0.962814,0.5618191,0.94899464,0.64654464,0.010972952,0.7414839,0.037107322,0.5074313,0.08282236,0.45311695,0.11480032,0.7302347,0.124822065,0.40396053,0.22795789,0.6712179,0.18806413,0.6945492,0.15476128,0.35073918,0.18683645,0.3258141,0.2670692,0.6476468,0.23768584,0.42655855,0.24732496,0.42923182,0.2513246,0.3941782,0.24699345,0.3647126,0.31205833,0.25660333,0.36353832,0.27104187,0.42546284,0.28364503,0.48857814,0.31930292,0.58037746,0.38458973,0.57323647,0.47017878,0.52795506,0.5532292,0.25658727,0.53219366,0.25265223,0.51852256,0.94164366,0.5586555,0.064138554,0.45866,0.07560094,0.7424201,0.2287847,0.412081,0.2252812,0.38013548,0.237499,0.3639056,0.4499393,0.27911296,0.4727381,0.5608466,0.26802626,0.52248174,0.2559492,0.49901754,0.24765734,0.4988456,0.910648,0.5509713,0.9039712,0.6368661,0.99177855,0.7418896,0.9445268,0.7391354,0.0058846734,0.5107175,0.045073416,0.46295327,0.089141905,0.41903478,0.15707599,0.7121016,0.119970635,0.36917055,0.30608022,0.6226108,0.22846006,0.38857847,0.22233938,0.3925001,0.21354789,0.35497448,0.22825976,0.4302618,0.25367334,0.42289954,0.21533352,0.25173414,0.25441208,0.22724009,0.35662487,0.23639931,0.41050792,0.25573406,0.47537002,0.27636734,0.53835475,0.32231665,0.6230136,0.3999052,0.6132673,0.4848028,0.56592655,0.56214267,0.34224516,0.6024473,0.26374185,0.5272366,0.9922643,0.5107441,0.025501903,0.4659015,0.023741495,0.7523519,0.124242544,0.7255496,0.16061805,0.28683957,0.1872019,0.2699982,0.22820812,0.43035787,0.25663978,0.42851302,0.2546264,0.4211613,0.24792275,0.39440238,0.5017849,0.2756912,0.508569,0.5649978,0.26613542,0.5001962,0.26213217,0.5167769,0.24071859,0.48803627,0.23722394,0.47757038,0.24043372,0.4823474,0.24633712,0.4881283,0.25210133,0.49871373,0.8701271,0.53633034,0.86064655,0.6215639,0.8948408,0.7288636,0.95402485,0.5076542,0.0052853553,0.4674071,0.052798085,0.42963132,0.08550118,0.3836488,0.22329965,0.65884614,0.16140229,0.6930944,0.26411742,0.63358617,0.29573697,0.20379181,0.40533763,0.22028199,0.46140826,0.24633451,0.5282129,0.277283,0.58522785,0.33254033,0.664364,0.41957307,0.65271306,0.50385976,0.6030338,0.5760627,0.9850117,0.46737605,1,0.4674071,1,0.7548339,0.9689623,0.7538595,0.053079598,0.74916697,0.08941819,0.7382798,0.12735724,0.30603665,0.23328477,0.44659027,0.23990135,0.3978003,0.55368125,0.28091577,0.54532224,0.56910527,0.4484285,0.56550455,0.377361,0.58471334,0.4124903,0.57208216,0.26004678,0.5048106,0.25816453,0.47931442,0.25196767,0.47361618,0.82999194,0.5171074,0.8184418,0.6016948,0.8480723,0.71267325,0.91437626,0.49865025,0.9652791,0.46581846,0.014920957,0.4351397,0.050511353,0.39369583,0.09699449,0.72082126,0.3253156,0.5958716,0.2342488,0.41791308,0.23233967,0.43768787,0.2417015,0.4628297,0.25608715,0.4461575,0.25090727,0.42321837,0.34132147,0.18236053,0.45899224,0.21018139,0.51620805,0.2449415,0.57821965,0.28630847,0.6295434,0.34836558,0.6986259,0.4139017,0.6924484,0.5265296,0.6400835,0.59438854,0.47775102,0.56172615,0.26123652,0.47624022,0.25196254,0.46908635,0.2564879,0.48179382,0.94596356,0.46280584,0.9056911,0.74452984,0.011648702,0.7546241,0.09504482,0.3214411,0.3948876,0.56230557,0.21322796,0.24270606,0.25202188,0.2182599,0.6018889,0.2932198,0.71569586,0.4478733,0.57573783,0.5785021,0.50834394,0.562658,0.26506776,0.50088143,0.24278924,0.4662631,0.79168963,0.554464,0.803711,0.6920006,0.87550515,0.48441458,0.92695457,0.45841175,0.9759161,0.43499935,1,0.43584436,1,0.7546241,0.98398024,0.75550973,0.01413902,0.39880005,0.868809,0.7172815,0.9653001,0.7377642,1,0.7240665,0.17623064,0.26678324,0.24434593,0.425496,0.39319336,0.16462019,0.51726466,0.20852074,0.56916356,0.25230134,0.6247703,0.30143803,0.6719923,0.36845642,0.72788703,0.515442,0.6780026,0.61651725,0.60504115,0.5900477,0.5469693,0.57037175,0.4497681,0.55080956,0.26254386,0.4725662,0.26130295,0.47535282,0.9081522,0.45271018,0.94439054,0.7519003,0.062776744,0.33274406,0.8024688,0.6887559,0.71680963,0.638291,1,0.73574334,0.046413425,0.73597884,0.14240545,0.28766018,0.29325184,0.19474868,0.64696115,0.31077474,0.24813175,0.44989252,0.8033589,0.47525275,0.7607902,0.6680474,0.836696,0.46560705,0.8894618,0.44577354,0.85052013,0.72661227,0.9384965,0.42915654,0.97672856,0.39852363,1,0.39942795,0.7574405,0.66551316,0.89383173,0.74101996,0.011154608,0.73886675,0.5440886,0.55540556,0.49831235,0.54786146,0.23886186,0.44325644,0.2554974,0.45171374,0.45275858,0.15303537,0.5733626,0.21616451,0.6180971,0.26645094,0.6685742,0.32105863,0.7394554,0.43875772,0.71812326,0.6417457,0.64740777,0.6122155,0.7735597,0.5233191,0.87078696,0.4376698,0.029751394,0.33957282,0.110194296,0.30487964,0.7591016,0.68206155,0.79072416,0.698256,0.82384145,0.7148347,0.8575531,0.7304795,0.65675634,0.60153115,0.22462386,0.20846418,0.33912283,0.17315191,0.68973815,0.33213538,0.72964406,0.38926312,0.75212336,0.51039696,0.583444,0.580559,0.8520217,0.4284638,0.8142802,0.7111209,0.9019402,0.41805565,0.9408077,0.3928109,0.7053113,0.6480297,0.7262233,0.66132563,0.5916475,0.5689258,0.5190917,0.15078324,0.6244662,0.23087302,0.6635175,0.2854808,0.7105987,0.34386867,0.61060345,0.59317833,0.804546,0.44055903,0.833041,0.41821745,0.7786581,0.6917183,0.004252717,0.3416968,0.07839418,0.31816578,0.67608464,0.6290335,0.6384618,0.6063454,0.1536803,0.25443566,0.30864602,0.16505495,0.391684,0.15519494,0.7340543,0.37023962,0.7319386,0.41817933,0.75303197,0.45468277,0.69445324,0.64012146,0.77908087,0.46549228,0.79626656,0.45541567,0.8654965,0.4021955,0.9056376,0.3820153,0.97806096,0.34068596,1,0.3416968,0.5823958,0.15903464,0.67106485,0.25044128,0.7063438,0.30785483,0.7360157,0.66639125,0.81432575,0.40297848,0.046318103,0.3272149,0.0916705,0.29149556,0.2863888,0.13205566,0.4527353,0.1434733,0.74100137,0.3587609,0.7338084,0.44182512,0.7437084,0.46124923,0.7709421,0.47320032,0.7870091,0.47345734,0.80696774,0.42082763,0.8045546,0.39467335,0.82727057,0.3819661,0.8704606,0.36655763,0.94478977,0.3351723,0.16632336,0.18295112,0.63797927,0.17492375,0.7142772,0.2731492,0.73717165,0.32669032,0.7331228,0.44125232,0.78412217,0.48296824,0.013105107,0.33166564,0.0850115,0.25460055,0.41676068,0.12536348,0.5210398,0.1413637,0.75902903,0.34773517,0.73352563,0.40064338,0.75607884,0.48527357,0.7698728,0.49004295,0.7974898,0.37389576,0.8344185,0.34684342,0.91211915,0.3249089,0.089365445,0.059318684,0.6865314,0.19556446,0.75341636,0.2906637,0.77362293,0.3284449,0.7907253,0.45771837,0.8027427,0.34600335,0.97897816,0.33123446,1,0.33219123,0.029211603,0.3049663,0.073849484,0.16211563,0.58582526,0.14999673,0.7839223,0.35713086,0.74145424,0.39977834,0.73710525,0.42637146,0.73674035,0.48684162,0.7431381,0.4855297,0.73397624,0.4802106,0.7778673,0.496201,0.79826665,0.42915648,0.8793003,0.31020576,0.49658078,0.0703934,0.7299443,0.21887559,0.7532975,0.38050473,0.7576252,0.51215523,0.7920153,0.40722287,0.9461781,0.32587862,0.5593095,0.12159761,0.6421275,0.16630144,0.76569843,0.5144738,0.78716,0.4450481,0.79966164,0.30859056,0.8454733,0.2913379,0.025933046,0.2437008,0.77028036,0.24349295,0.7553843,0.4034027,0.74534714,0.4371755,0.73730695,0.45866233,0.74747044,0.5160859,0.9140076,0.31586528,0.96481144,0.30409497,1,0.30761978,0.6908571,0.18729456,0.77787626,0.38870138,0.73335403,0.53012216,0.7692145,0.52146775,0.8093312,0.26860565,0.7772624,0.4160522,0.7604917,0.42829394,0.8816228,0.30137065,0.67542815,0.15788853,0.7340389,0.21069852,0.7504252,0.4536472,0.7355558,0.5237522,0.77865803,0.4853931,0.9850999,0.25003365,0.7755457,0.4401307,0.764043,0.4602291,0.73875844,0.52297765,0.84827495,0.28276503,0.901832,0.28869012,0.6985599,0.12355745,0.7740327,0.23530614,0.743394,0.52335006,0.7365941,0.5498972,0.73343647,0.56249,0.74791646,0.55489075,0.7533589,0.56317425,0.7563343,0.56590277,0.77408516,0.4719417,0.751775,0.5281325,0.8126398,0.26028186,0.90993035,0.2513137,0.7640979,0.201195,0.7356446,0.5479983,0.75149727,0.57473445,0.7655549,0.5332784,0.8855156,0.08481474,0.7583207,0.53470504,0.7375035,0.5678402,0.74448085,0.57287586,0.83801496,0.24903476,0.7324858,0.57108116,0.7378615,0.5595827,0.7408856,0.5482673,0.97768795,0.16312042,0.827278,0.17662486,0.7503656,0.5544029,0.7337154,0.5760231,0.7342241,0.56942034,0.7374404,0.5699929,0.7455945,0.563058,0.7571533,0.55710304,0.75144994,0.5692185,0.73763454,0.5818495,0.7425302,0.58358496,0.74144787,0.5716608,0.74508154,0.57318884,0.74746835,0.5851656,0.74911624,0.58507687,0.7491651,0.5770056,0.75066555,0.58108795,0.7449089,0.586397,0.7340877,0.5716504,0.7336544,0.57627,0.74608964,0.5756417,0.73963976,0.5714663,0.74934244,0.58129424,0.73925436,0.5820999,0.73624176,0.57854915,0.74347126,0.5738409,0.74344695,0.58441556,0.7368448,0.57165444,0.73521954,0.574153,0.7470784,0.57800543,0.7476074,0.5812706,0.746387,0.58409214,0.74605036,0.57389486,0.74057925,0.5696205,0.73663545,0.5705806,0.7377069,0.5759552,0.74682367,0.5798425,0.7427287,0.58012176]);
-
-
-// prettier-ignore
-const normals = null;
-
-// prettier-ignore
-const faces = new Uint32Array([0,1,2,2,3,0,2,4,3,4,2,5,2,1,6,7,8,4,4,5,7,6,5,2,9,7,5,5,6,9,10,11,7,4,12,3,8,7,11,13,6,1,8,14,12,12,4,8,7,9,10,3,15,0,16,9,6,6,13,16,17,10,9,18,11,10,11,19,8,15,3,12,20,1,0,10,21,18,14,8,19,12,22,15,1,20,23,23,13,1,21,10,17,18,21,24,24,25,18,14,26,22,22,12,14,27,0,15,13,23,28,9,16,17,29,24,21,30,16,13,13,28,30,31,17,16,32,33,25,25,24,32,19,34,14,15,35,27,36,32,24,24,29,36,11,18,37,37,19,11,26,14,34,35,15,22,23,20,38,31,39,21,21,17,31,25,40,37,37,18,25,26,41,35,35,22,26,38,28,23,16,30,31,42,29,21,21,39,42,43,30,28,28,38,43,44,31,30,45,46,33,33,32,45,33,47,40,40,25,33,34,19,48,34,48,26,35,49,27,50,36,29,29,42,50,51,45,32,32,36,51,40,52,37,37,48,19,41,26,48,53,38,20,39,31,44,54,37,52,48,55,41,41,56,49,49,35,41,30,43,44,57,42,39,58,59,46,46,45,58,47,60,52,52,40,47,48,37,54,61,43,38,38,53,61,62,44,43,63,58,45,45,51,63,64,65,58,46,66,47,47,33,46,67,27,49,27,20,0,44,68,39,69,50,42,42,57,69,70,51,36,36,50,70,71,64,58,59,58,65,52,72,54,54,55,48,56,41,55,49,73,67,20,27,67,67,53,20,68,44,62,39,68,57,58,63,71,65,74,59,55,75,56,56,76,73,73,49,56,53,67,73,43,61,62,77,57,68,78,71,63,59,79,66,66,46,59,66,80,60,60,47,66,81,82,72,72,52,81,76,61,53,53,73,76,83,62,61,84,63,51,51,70,84,74,85,59,86,69,57,57,77,86,87,70,50,50,69,87,88,78,63,79,59,85,85,89,79,72,90,91,91,54,72,55,54,91,55,92,75,76,56,75,83,93,68,68,62,83,94,84,70,84,88,63,89,95,79,79,96,80,80,66,79,92,55,91,75,92,76,61,76,83,97,77,68,68,93,97,98,99,82,82,81,98,82,100,90,90,72,82,92,83,76,101,94,70,70,87,101,84,94,102,84,102,88,96,79,95,103,86,77,77,97,103,104,87,69,69,86,104,90,105,91,106,102,94,94,101,106,96,95,107,96,107,80,98,108,99,93,91,105,105,97,93,107,109,80,99,110,100,100,82,99,100,111,105,105,90,100,92,91,93,93,83,92,112,101,87,87,104,112,113,106,101,108,98,114,111,103,97,97,105,111,115,104,86,86,103,115,114,116,108,117,113,101,101,112,117,108,118,110,110,99,108,116,119,108,110,120,111,111,100,110,121,112,104,104,115,121,122,117,112,118,108,119,120,115,103,103,111,120,119,123,118,124,122,112,112,121,124,118,125,120,120,110,118,123,119,126,123,126,118,125,121,115,115,120,125,127,124,121,125,118,126,128,127,121,126,129,125,121,125,128,129,128,125,130,131,132,133,130,134,130,132,134,135,136,133,133,134,135,134,132,135,136,137,133,138,135,132,130,133,139,140,133,137,141,139,133,131,130,142,131,138,132,137,143,140,141,144,145,146,144,141,139,147,130,130,148,149,149,142,130,138,131,150,146,140,143,151,145,144,139,141,152,147,153,130,131,154,155,155,150,131,136,135,156,156,157,136,137,136,157,158,151,144,144,159,158,145,152,141,148,130,153,148,160,161,161,149,148,142,149,162,143,163,146,157,164,143,143,137,157,146,165,166,144,146,166,165,146,163,167,158,159,159,168,167,159,144,169,169,170,159,166,169,144,152,145,171,172,173,147,147,139,172,153,174,148,160,175,176,176,161,160,149,161,177,177,162,149,178,142,162,179,165,163,163,143,164,145,151,171,180,172,139,139,152,180,173,181,153,153,147,173,182,142,183,154,131,142,182,154,142,154,182,184,184,155,154,138,156,135,185,186,156,157,156,186,186,187,157,164,157,187,164,188,163,189,167,168,168,190,189,168,159,170,170,191,168,192,171,151,151,158,192,193,180,152,152,171,193,181,194,174,174,153,181,174,195,160,160,148,174,175,196,197,197,176,175,161,176,198,198,177,161,183,142,178,199,193,171,200,201,169,181,173,202,194,203,174,196,204,197,205,198,176,163,206,179,179,207,208,208,165,179,209,189,190,190,210,209,190,168,191,191,211,190,212,192,158,158,167,212,213,199,171,171,192,213,170,169,201,201,214,170,169,166,200,193,215,180,202,216,181,203,217,195,195,174,203,195,218,175,175,160,195,219,197,204,176,197,205,162,220,178,177,221,220,220,162,177,207,184,182,182,208,207,138,150,222,223,185,156,206,163,188,224,209,210,225,213,192,183,200,166,215,193,226,227,228,172,172,228,173,216,202,229,194,181,216,217,230,195,219,231,232,233,205,197,156,138,223,206,234,207,207,179,206,186,185,235,235,236,186,187,186,236,164,187,236,236,237,164,188,164,237,238,224,210,210,239,238,210,190,211,211,240,210,241,212,167,167,189,241,242,225,192,192,212,242,191,170,214,214,243,191,244,226,193,193,199,244,228,202,173,229,202,245,245,246,229,229,247,216,216,248,203,203,194,216,230,249,218,218,195,230,218,250,196,196,175,218,231,251,252,252,232,231,197,219,233,221,177,198,222,223,138,188,253,206,254,255,188,256,257,258,259,242,212,201,243,214,199,213,244,229,246,260,217,203,248,249,261,218,204,196,250,251,262,252,232,233,219,205,263,198,198,263,221,264,150,155,265,235,185,234,206,253,234,266,184,184,207,234,237,254,188,253,188,255,267,256,258,258,268,267,239,210,240,240,269,239,270,241,189,189,209,270,271,259,212,212,241,271,211,191,243,243,272,211,273,244,213,213,225,273,274,275,201,276,277,226,226,244,276,200,183,178,201,200,278,278,274,201,226,260,246,228,227,279,279,280,228,202,228,281,281,282,202,247,229,260,247,283,248,248,216,247,248,284,230,230,217,248,261,285,250,250,218,261,250,286,219,219,204,250,262,287,288,288,252,262,232,252,289,185,223,265,253,290,234,255,291,253,292,267,268,209,224,270,293,271,241,272,294,211,225,242,273,243,201,275,278,200,178,295,227,296,296,180,295,281,228,280,202,282,245,245,282,297,249,230,284,285,298,250,231,219,286,233,299,263,263,205,233,266,264,184,155,184,264,300,222,150,266,234,290,236,235,301,301,302,236,303,292,268,268,304,303,268,258,305,305,306,268,307,270,224,224,238,307,308,293,241,241,270,308,240,211,294,309,273,242,242,259,309,272,243,310,310,243,275,311,276,244,244,273,311,178,312,278,260,226,277,313,314,315,315,314,215,316,295,180,180,215,316,280,317,281,245,297,246,318,319,247,247,260,318,283,320,284,284,248,283,284,321,261,261,249,284,298,322,286,286,250,298,286,323,251,251,231,286,287,324,325,325,288,287,252,288,326,326,289,252,232,299,233,327,178,220,290,253,291,290,328,266,257,256,329,330,308,270,294,331,240,259,271,309,310,332,272,333,334,277,215,314,335,316,215,335,295,279,227,317,336,281,337,338,282,285,261,321,322,339,286,262,251,323,232,340,299,150,264,300,265,223,341,265,301,235,291,342,290,264,266,328,302,343,236,237,236,343,343,344,237,254,237,344,255,254,345,345,346,255,255,347,291,348,303,304,304,349,348,304,268,306,306,350,304,351,329,256,256,267,351,352,330,270,270,307,352,269,240,331,353,309,271,271,293,353,354,311,273,273,309,354,275,274,355,355,356,275,277,276,333,312,178,327,274,278,357,357,355,274,334,318,260,260,277,334,282,281,336,319,358,283,283,247,319,320,359,321,321,284,320,321,360,298,298,285,321,339,361,323,323,286,339,323,362,287,287,262,323,324,363,364,364,325,324,288,325,365,365,326,288,232,289,340,328,290,342,347,255,346,267,292,351,366,367,329,368,369,305,293,308,353,272,370,294,332,371,272,372,333,276,355,357,356,297,313,246,315,246,313,373,279,295,337,282,336,297,282,338,338,374,297,322,298,360,361,375,323,376,340,289,377,263,299,220,378,327,378,220,221,378,221,263,263,379,378,263,377,379,328,300,264,222,341,223,291,380,342,301,265,381,302,301,382,345,254,344,383,348,349,349,384,383,349,304,350,350,385,349,386,351,292,292,303,386,387,366,329,329,351,387,306,305,369,388,353,308,308,330,388,331,294,370,370,272,371,389,354,309,309,353,389,310,275,356,276,311,372,390,119,116,357,128,129,390,356,119,356,126,119,357,129,126,356,357,126,312,391,357,357,278,312,313,297,374,314,313,392,392,393,314,335,314,393,295,316,373,394,280,279,280,395,317,336,317,395,337,396,338,358,397,320,320,283,358,359,398,360,360,321,359,360,399,339,339,322,360,375,400,362,362,323,375,362,401,324,324,287,362,363,402,403,403,364,363,325,364,404,404,365,325,289,326,376,299,405,377,406,381,265,380,291,347,300,328,342,381,382,301,346,407,347,347,408,380,409,387,351,369,410,306,330,352,388,370,411,331,332,310,356,412,372,311,357,127,128,413,122,124,357,391,127,391,124,127,391,413,124,374,392,313,414,415,319,319,318,414,361,339,399,400,416,362,402,417,403,418,376,326,405,299,340,340,419,405,342,222,300,265,341,406,380,420,342,343,302,394,345,421,346,407,346,421,408,347,407,422,383,384,384,349,385,385,423,384,424,386,303,303,348,424,425,409,351,351,386,425,350,306,410,426,427,367,367,366,426,369,368,428,428,429,369,430,389,353,353,388,430,356,390,332,311,354,412,390,116,114,431,95,89,432,433,109,431,107,95,432,109,107,431,432,107,371,332,390,122,413,117,391,312,327,334,333,434,395,280,382,396,435,374,374,338,396,392,374,435,397,436,359,359,320,397,398,437,399,399,360,398,399,438,375,375,361,399,416,439,401,401,362,416,401,440,363,363,324,401,441,403,417,364,403,442,442,404,364,326,365,443,443,418,326,340,376,444,445,377,405,341,222,446,446,406,341,222,342,420,382,394,302,408,447,420,420,380,408,448,425,386,366,387,426,429,449,369,450,412,354,451,65,452,431,89,85,451,74,65,451,431,85,451,85,74,453,433,432,370,371,390,390,454,370,391,327,378,378,413,391,455,434,333,434,414,318,318,334,434,373,394,279,415,456,358,358,319,415,400,375,438,439,457,401,418,444,376,444,419,340,447,446,222,222,420,447,421,458,407,383,422,459,422,384,423,423,460,422,461,424,348,348,383,461,462,448,386,386,424,462,385,350,410,410,463,385,464,426,387,387,409,464,410,369,449,465,466,427,427,426,465,411,370,454,354,389,450,333,372,455,451,452,467,468,449,432,432,431,468,429,428,432,454,469,411,413,378,379,413,113,117,470,88,102,413,471,113,471,106,113,470,102,106,471,470,106,393,392,472,394,382,280,382,381,395,381,406,395,336,395,406,406,446,336,337,336,446,446,447,337,337,473,396,435,396,473,473,458,435,435,472,392,436,474,398,398,359,436,437,475,438,438,399,437,438,476,416,416,400,438,457,477,440,440,401,457,402,363,440,417,478,441,403,441,479,479,442,403,365,404,480,480,443,365,394,373,343,344,393,345,421,345,393,393,472,421,458,473,407,407,473,447,447,408,407,481,459,422,481,422,460,482,462,424,409,425,464,483,450,389,484,455,372,485,486,451,451,467,485,486,487,451,431,451,487,488,468,431,449,429,432,445,471,413,452,64,71,470,78,88,470,489,78,489,452,71,489,71,78,316,335,344,447,473,337,415,414,490,456,491,397,397,358,456,439,416,476,477,492,440,402,493,417,494,441,478,441,494,479,495,444,418,419,444,470,373,316,344,344,343,373,458,421,472,494,481,460,460,479,494,459,461,383,496,482,424,424,461,496,423,385,463,463,497,423,498,464,425,425,448,498,449,468,410,499,465,426,426,464,499,389,430,483,372,412,484,500,501,452,467,452,501,487,488,431,64,452,65,413,379,377,377,445,413,471,405,419,502,489,470,393,344,335,472,435,458,474,503,437,437,398,474,475,504,476,476,438,475,476,505,457,457,439,476,492,506,402,402,440,492,404,442,480,418,443,507,461,459,508,509,496,461,497,510,423,448,462,498,463,410,468,511,483,430,512,484,412,513,500,452,452,489,513,405,471,445,470,471,419,444,495,502,502,470,444,514,513,489,434,455,515,515,490,414,414,434,515,490,516,456,456,415,490,491,517,436,436,397,491,477,457,505,506,518,493,493,402,506,478,417,519,417,493,519,494,478,520,521,480,442,507,495,418,481,494,520,481,520,522,459,481,522,522,523,459,508,459,523,508,509,461,460,423,510,524,498,462,462,482,524,497,463,488,488,463,468,525,499,464,464,498,525,526,527,466,466,465,526,412,450,512,501,485,467,495,507,502,507,514,489,489,502,507,503,528,475,475,437,503,504,529,505,505,476,504,505,530,492,492,477,505,442,479,521,507,443,514,510,531,460,509,508,532,482,496,524,488,487,497,533,512,450,534,515,455,455,484,534,485,497,486,487,486,497,490,535,516,491,456,516,517,536,474,474,436,517,506,492,530,506,537,518,519,538,539,539,478,519,531,521,479,443,480,514,520,540,522,479,460,531,522,540,541,541,523,522,542,532,508,542,543,532,544,524,496,496,509,544,545,525,498,498,524,545,546,526,465,465,499,546,450,483,533,531,510,485,497,485,510,490,515,547,535,490,547,528,548,504,504,475,528,529,549,530,530,505,529,530,550,537,537,506,530,493,551,538,538,519,493,539,520,478,539,540,520,480,521,513,513,514,480,523,541,552,552,508,523,509,532,544,553,533,483,484,512,534,515,534,554,521,531,501,501,500,521,485,501,531,516,555,517,517,491,516,536,556,503,503,474,536,550,557,537,493,558,551,559,540,539,500,513,521,540,559,560,540,560,541,544,543,561,544,532,543,562,545,524,524,544,562,563,546,499,499,525,563,483,511,553,554,547,515,547,564,535,548,565,529,529,504,548,549,566,550,550,530,549,550,567,557,508,552,568,568,542,508,544,561,569,570,571,527,527,526,570,572,534,512,512,533,572,573,564,547,555,516,535,536,517,555,556,574,528,528,503,556,567,550,566,575,557,567,576,558,518,518,537,576,558,493,518,558,577,551,538,578,579,579,539,538,538,580,578,580,538,551,559,539,579,581,541,560,542,568,582,567,569,561,575,567,561,569,562,544,583,563,525,525,545,583,547,554,573,535,584,555,565,585,549,549,529,565,537,586,576,577,558,576,587,559,579,587,560,559,541,581,552,582,543,542,543,582,588,589,570,526,526,546,589,533,553,572,572,554,534,555,590,556,556,536,555,574,591,548,548,528,574,586,537,557,560,587,592,560,592,581,582,568,593,562,569,594,595,583,545,545,562,595,554,572,596,584,535,564,585,597,566,566,549,585,566,594,567,586,598,576,576,599,577,577,600,551,601,587,579,579,578,601,588,561,543,593,588,582,569,567,594,602,589,546,546,563,602,603,604,571,571,570,603,574,556,590,591,605,565,565,548,591,575,606,586,586,557,575,599,576,598,600,577,599,551,607,580,608,581,592,561,588,606,606,575,561,609,595,562,562,594,609,596,573,554,590,555,584,597,609,594,594,566,597,598,586,606,606,610,598,598,611,599,581,608,552,588,593,610,612,602,563,563,583,612,570,589,603,590,613,591,591,574,590,605,614,585,585,565,605,611,598,610,615,599,611,600,616,607,607,551,600,617,568,552,617,593,568,610,606,588,604,603,618,610,619,611,611,620,615,599,621,616,616,600,599,622,612,583,583,595,622,623,603,589,589,602,623,590,624,613,605,591,613,614,625,597,597,585,614,620,611,619,621,599,615,615,626,621,627,578,580,628,580,607,601,627,629,627,601,578,629,587,601,587,629,630,630,592,587,630,608,592,631,552,608,619,610,593,593,617,632,624,590,584,619,632,620,620,633,626,626,615,620,580,628,627,632,619,593,634,622,595,595,609,634,602,612,623,603,623,635,613,636,614,614,605,613,625,634,609,609,597,625,616,637,607,638,608,630,608,638,631,552,631,639,639,617,552,635,618,603,584,640,624,632,641,633,633,620,632,627,642,643,643,629,627,641,632,617,644,623,612,612,622,644,636,613,624,625,614,636,637,616,621,607,645,628,645,607,637,637,646,645,626,647,637,637,621,626,629,643,630,618,635,648,624,649,636,633,650,647,647,626,633,627,628,642,617,639,641,622,634,644,644,635,623,636,644,634,634,625,636,650,633,641,646,637,647,628,645,651,652,645,646,646,653,652,650,654,646,646,647,650,638,630,643,639,631,655,635,644,649,649,624,640,639,655,641,650,656,654,642,651,657,642,657,658,658,643,642,651,642,628,650,641,655,646,659,653,659,646,654,654,660,659,643,658,661,661,638,643,638,661,662,662,631,638,649,648,635,644,636,649,656,650,655,660,654,656,656,663,660,656,655,631,631,662,664,656,664,663,640,648,649,664,656,631,665,658,657,645,666,667,666,645,652,667,651,645,668,660,663,665,661,658,661,665,662,651,667,657,666,652,653,659,669,653,660,668,659,664,670,663,670,664,662,663,670,668,653,669,666,657,671,665,672,667,666,659,673,669,673,659,668,662,665,670,667,672,671,671,657,667,674,665,671,675,666,669,666,676,672,668,677,673,677,668,670,670,678,677,665,679,670,665,674,679,666,675,676,678,670,679,680,673,677,669,681,675,681,669,673,675,681,682,682,676,675,673,680,681,676,682,683,683,672,676,678,684,680,680,677,678,684,678,679,674,685,684,684,679,674,683,671,672,671,683,685,685,674,671,682,681,680,680,684,682,682,684,685,685,683,682,140,146,141,133,140,141,208,182,183,183,166,208,166,165,208,180,296,172,296,227,172,226,315,215,226,246,315]);
-
export default new Mesh({
- colors,
- faces,
+ colors: null,
+ faces: new Uint16Array([0,1,2,2,3,0,2,4,3,5,2,1,6,7,4,4,2,6,2,5,8,9,10,7,7,6,9,11,6,2,2,8,11,12,9,6,6,11,12,13,14,9,4,15,3,10,9,14,7,16,15,15,4,7,17,8,5,14,13,18,10,19,16,16,7,10,20,11,8,8,17,20,9,12,13,3,21,0,22,12,11,11,20,22,23,13,12,24,14,18,14,25,10,21,3,15,26,1,0,27,5,1,13,23,18,18,28,24,19,10,25,16,29,21,21,15,16,1,26,27,27,17,5,28,18,23,24,28,30,30,31,24,19,32,29,29,16,19,33,0,21,34,20,17,17,27,34,12,22,23,35,30,28,21,36,33,37,22,20,20,34,37,38,23,22,39,40,31,31,30,39,25,41,19,21,42,36,43,27,26,44,39,30,30,35,44,14,24,45,45,25,14,32,19,41,29,46,42,42,21,29,27,43,47,38,48,28,28,23,38,31,49,45,45,24,31,32,50,46,46,29,32,51,34,27,27,47,51,22,37,38,52,35,28,28,48,52,53,37,34,34,51,53,54,38,37,55,56,40,40,39,55,40,57,49,49,31,40,41,25,58,41,58,32,42,59,36,60,44,35,35,52,60,61,55,39,39,44,61,49,62,45,45,58,25,50,32,58,46,63,59,59,42,46,64,47,43,38,54,65,48,38,65,66,45,62,58,67,50,50,68,63,63,46,50,69,51,47,47,64,69,37,53,54,70,52,48,71,72,56,56,55,71,57,73,62,62,49,57,58,45,66,36,74,33,75,53,51,51,69,75,76,54,53,77,71,55,55,61,77,78,79,71,56,80,57,57,40,56,81,67,58,74,36,59,33,26,0,74,43,26,54,76,65,65,82,48,83,60,52,52,70,83,84,61,44,44,60,84,85,78,71,72,71,79,62,86,66,66,81,58,68,50,67,63,87,74,74,59,63,26,33,74,74,64,43,82,65,76,48,82,70,71,77,85,79,88,72,67,89,68,68,90,87,87,63,68,87,69,64,64,74,87,53,75,76,91,70,82,92,85,77,72,93,80,80,56,72,80,94,73,73,57,80,73,95,86,86,62,73,81,89,67,90,75,69,69,87,90,96,76,75,97,77,61,61,84,97,88,98,72,99,83,70,70,91,99,100,84,60,60,83,100,101,92,77,93,72,98,98,102,93,86,103,104,104,66,86,81,66,104,81,105,89,90,68,89,106,76,96,106,107,82,82,76,106,108,97,84,97,101,77,102,109,93,93,110,94,94,80,93,105,81,104,89,105,90,75,90,96,111,91,82,82,107,111,94,112,95,95,73,94,95,113,103,103,86,95,105,96,90,114,108,84,84,100,114,97,108,115,97,115,101,110,93,109,110,116,94,117,99,91,91,111,117,118,100,83,83,99,118,103,119,104,106,96,105,120,115,108,108,114,120,110,109,121,110,121,116,116,122,112,112,94,116,107,104,119,119,111,107,121,123,116,112,124,113,113,95,112,113,125,119,119,103,113,105,104,107,107,106,105,126,114,100,100,118,126,127,120,114,122,116,123,125,117,111,111,119,125,128,118,99,99,117,128,123,129,122,130,127,114,114,126,130,122,131,124,124,112,122,129,132,122,124,133,125,125,113,124,134,126,118,118,128,134,135,130,126,131,122,132,133,128,117,117,125,133,132,136,131,137,135,126,126,134,137,131,138,133,133,124,131,136,132,139,136,139,131,138,134,128,128,133,138,140,137,134,138,131,139,141,140,134,139,142,138,134,138,141,142,141,138,143,144,145,146,143,147,143,145,147,148,149,146,146,147,148,147,145,148,149,150,146,151,148,145,143,146,152,153,146,150,154,152,146,144,155,156,144,143,155,144,151,145,150,157,153,154,158,159,160,158,154,152,161,143,155,162,163,163,156,155,151,144,164,160,153,157,165,159,158,152,154,166,161,167,155,155,143,161,162,168,163,144,169,170,170,164,144,149,148,171,171,172,149,150,149,172,173,165,158,158,174,173,175,166,154,161,152,176,162,155,167,168,177,178,178,163,168,156,163,179,157,180,160,172,181,157,157,150,172,182,173,174,160,183,184,158,160,184,166,176,152,177,185,178,186,171,148,183,160,180,187,182,174,174,188,187,174,158,189,189,190,174,184,189,158,166,175,191,192,193,161,161,176,192,167,194,162,185,195,196,196,178,185,163,178,197,197,179,163,198,156,179,199,183,180,180,157,181,200,187,188,159,165,201,202,192,176,176,166,202,193,203,167,167,161,193,168,162,194,195,204,196,205,156,206,169,144,156,205,169,156,169,205,207,207,170,169,148,151,208,208,186,148,209,210,171,172,171,210,210,211,172,181,172,211,181,212,180,213,200,188,188,214,213,188,174,190,190,215,188,216,201,165,165,173,216,217,202,166,166,191,217,203,218,194,194,167,203,194,219,177,177,168,194,204,220,221,221,196,204,178,196,222,222,197,178,206,156,198,164,208,151,223,213,214,173,182,216,224,225,201,226,227,189,203,193,228,218,229,194,185,177,219,220,230,221,231,222,196,171,186,209,180,232,199,199,233,234,234,183,199,235,223,214,214,236,235,214,188,215,215,237,214,238,216,182,182,187,238,239,224,201,201,216,239,190,189,227,227,240,190,189,184,226,217,241,202,228,242,203,229,243,219,219,194,229,219,244,195,195,185,219,230,245,246,246,221,230,196,221,231,179,247,198,197,248,247,247,179,197,233,207,205,205,234,233,208,164,249,250,209,186,232,180,212,251,235,236,187,200,238,252,239,216,206,226,184,241,217,253,254,255,192,192,255,256,242,228,257,218,203,242,243,258,219,204,195,244,245,259,260,260,246,245,261,231,221,170,207,262,164,170,263,263,249,164,186,208,250,232,264,233,233,199,232,210,209,265,265,266,210,211,210,266,266,267,211,181,211,267,267,268,181,212,181,268,269,251,236,236,270,269,236,214,237,237,271,236,272,238,200,200,213,272,273,252,216,216,238,273,215,190,240,240,274,215,275,253,217,217,276,275,253,277,241,255,228,256,257,228,278,278,279,257,257,280,242,242,281,229,229,218,242,258,282,244,244,219,258,244,283,220,220,204,244,259,284,285,285,260,259,221,246,261,248,197,222,286,206,198,233,262,207,249,250,208,212,287,232,288,289,212,290,269,270,270,291,290,213,223,272,292,273,238,227,274,240,224,239,293,277,253,294,257,279,295,280,296,242,243,229,281,282,297,244,230,220,283,284,298,285,260,261,246,231,299,222,222,300,248,301,263,170,302,265,209,264,232,287,264,303,262,262,233,264,268,288,212,287,212,289,304,290,291,291,305,304,270,236,271,271,306,270,307,272,223,223,235,307,308,292,238,238,272,308,237,215,274,274,309,237,310,293,239,239,252,310,311,312,227,313,294,253,253,275,313,226,206,286,227,226,314,314,311,227,277,295,279,255,254,315,315,316,255,228,255,317,317,318,228,280,257,295,296,319,281,281,242,296,281,320,258,258,243,281,297,321,283,283,244,297,283,322,245,245,230,283,298,323,324,324,285,298,260,285,325,300,222,299,286,198,247,209,250,302,287,326,264,288,327,289,289,328,287,329,304,305,291,270,306,235,251,307,330,308,272,309,331,237,252,273,310,274,227,312,332,333,293,334,226,286,334,314,226,335,254,336,336,337,335,317,255,316,228,318,278,278,318,338,278,338,339,319,340,281,282,258,320,321,341,283,259,245,322,323,342,324,261,343,299,299,231,261,303,301,262,170,262,301,344,249,263,303,264,326,266,265,345,345,346,266,267,266,346,328,289,327,347,329,305,305,348,347,305,291,306,306,349,305,350,307,251,251,269,350,351,330,272,272,307,351,271,237,331,352,310,273,273,292,352,309,274,353,353,274,312,354,332,293,293,310,354,286,355,334,295,277,294,356,357,358,358,357,241,359,335,337,337,241,359,316,360,317,278,339,279,361,362,280,280,295,361,340,363,320,320,281,340,320,364,297,297,282,320,341,365,322,322,283,341,322,366,284,284,259,322,342,367,368,368,324,342,285,324,369,369,325,285,260,343,261,370,286,247,326,287,328,326,371,303,372,347,348,269,290,350,373,351,307,331,374,271,292,308,352,353,375,309,376,354,310,377,378,294,241,357,379,359,241,379,335,315,254,360,380,317,338,318,381,381,382,338,296,280,362,363,383,320,321,297,364,365,384,322,298,284,366,367,385,368,260,386,343,263,301,344,302,250,387,302,345,265,328,388,326,301,303,371,346,389,267,268,267,389,389,390,268,288,268,390,327,288,391,391,392,327,327,393,328,394,372,348,348,395,394,348,305,349,349,396,348,397,350,290,290,304,397,398,373,307,307,350,398,306,271,374,399,352,308,308,330,399,400,376,310,310,352,400,312,311,401,401,402,312,294,313,377,355,286,370,311,314,403,403,401,311,378,361,295,295,294,378,318,317,380,362,404,319,319,296,362,383,405,364,364,320,383,364,406,341,341,321,364,384,407,366,366,322,384,366,408,323,323,298,366,385,409,410,410,368,385,324,368,411,411,369,324,260,325,386,371,326,388,393,327,392,412,394,395,304,329,397,413,398,350,374,414,306,330,351,399,309,415,331,375,416,309,417,400,352,418,377,313,313,419,418,401,403,402,247,420,370,314,334,403,339,356,279,358,279,356,379,421,359,421,422,359,422,315,335,316,315,423,423,360,316,381,318,380,339,338,382,382,424,339,340,319,404,405,425,364,365,341,406,407,426,366,342,323,408,409,427,410,428,386,325,429,299,343,247,430,420,430,247,248,430,248,300,300,431,430,431,300,299,299,429,431,371,344,301,249,387,250,328,432,388,345,302,433,346,345,434,390,435,288,391,288,435,436,412,395,395,437,436,395,348,396,396,438,395,439,397,329,329,347,439,440,413,350,350,397,440,349,306,414,441,399,351,351,373,441,374,331,415,415,442,374,415,309,416,443,417,352,352,399,443,353,312,402,402,444,353,332,354,445,446,132,129,403,141,142,446,402,132,402,139,132,403,142,139,402,403,139,355,447,403,403,334,355,447,448,403,356,339,424,357,356,449,449,450,357,379,357,450,335,359,422,451,423,315,423,452,360,380,360,452,381,453,382,404,454,363,363,340,404,425,455,406,406,364,425,406,456,384,384,365,406,426,457,408,408,366,426,408,458,367,367,342,408,427,459,460,460,410,427,368,410,461,461,411,368,325,369,428,343,462,429,463,433,302,432,328,393,344,371,388,433,434,345,435,464,391,392,465,393,393,466,432,467,436,437,347,372,439,468,440,397,414,469,349,373,398,441,442,470,374,471,443,399,375,353,444,472,445,354,354,376,472,444,402,446,403,140,141,473,135,137,403,448,140,448,137,140,448,473,137,424,449,356,474,475,362,362,361,474,383,363,454,455,476,406,407,384,456,457,477,408,385,367,458,459,478,460,479,428,369,462,343,386,386,480,462,388,249,344,302,387,463,432,481,388,389,346,482,392,391,464,464,483,392,465,392,483,466,393,465,484,467,437,437,395,438,438,485,437,486,439,372,372,394,486,487,468,397,397,439,487,396,349,469,488,441,398,398,413,488,414,374,470,470,489,414,490,471,399,399,441,490,444,446,375,376,400,472,446,129,123,491,109,102,492,446,123,491,121,109,492,123,121,491,492,121,416,375,446,493,473,448,135,473,130,370,448,447,447,355,370,378,377,494,452,423,434,453,495,424,424,382,453,449,424,495,454,496,405,405,383,454,476,497,456,456,406,476,456,498,426,426,407,456,477,499,458,458,408,477,458,500,409,409,385,458,501,460,478,410,460,502,502,461,410,369,411,503,503,479,369,386,428,504,505,429,462,387,249,506,506,463,387,249,388,481,434,482,346,466,507,481,481,432,466,394,412,486,508,487,439,413,440,488,489,509,414,510,490,441,415,511,442,512,472,400,400,417,512,513,79,514,491,102,98,513,88,79,513,491,98,513,98,88,515,492,491,511,446,492,415,416,446,446,511,415,448,370,420,448,420,430,430,493,448,516,494,377,494,474,361,361,378,494,422,451,315,517,518,475,475,474,517,475,519,404,404,362,475,425,405,496,497,520,456,457,426,498,499,521,458,427,409,500,479,504,428,504,480,386,507,506,249,249,481,507,483,522,465,467,484,523,484,437,485,485,524,484,525,486,412,412,436,525,526,508,439,439,486,526,438,396,469,469,527,438,528,488,440,440,468,528,469,414,509,529,510,441,441,488,529,470,442,511,417,443,512,377,418,516,513,514,530,531,491,513,532,533,515,515,491,532,489,470,492,511,492,470,493,430,431,431,473,493,473,127,130,534,101,115,473,535,127,535,120,127,534,115,120,535,534,120,450,449,536,536,537,450,379,450,537,423,451,482,482,434,423,434,433,452,433,463,452,380,452,463,463,506,380,381,380,506,506,507,381,381,538,453,495,453,538,538,522,495,495,536,449,496,539,455,455,425,496,520,540,498,498,456,520,498,541,477,477,457,498,521,542,500,500,458,521,500,543,459,459,427,500,544,545,501,460,501,546,546,502,460,411,461,547,547,503,411,389,482,451,451,422,389,435,390,421,435,537,464,483,464,537,537,536,483,522,538,465,465,548,507,507,466,465,549,523,484,549,484,524,436,467,525,550,526,486,468,487,528,509,533,469,551,529,488,552,512,443,443,471,552,553,554,445,555,556,513,513,530,555,556,557,513,531,513,557,558,532,491,491,531,558,533,509,515,509,489,492,492,515,509,505,535,473,514,78,85,534,92,101,534,559,92,559,514,85,559,85,92,560,561,494,494,516,560,561,517,474,474,494,561,421,379,435,507,548,381,538,381,548,518,517,562,518,563,519,519,475,518,519,564,454,454,404,519,476,455,539,540,565,498,499,477,541,542,566,500,543,567,478,478,459,543,568,501,545,501,568,546,569,504,479,480,504,534,422,421,390,390,389,422,522,483,536,548,465,538,568,549,524,524,546,568,523,525,467,570,550,486,486,525,570,485,438,527,527,571,485,572,528,487,487,508,572,533,532,469,573,551,488,488,528,573,471,490,552,445,472,553,574,575,514,530,514,575,557,558,531,78,514,79,473,431,429,429,505,473,535,462,480,576,559,534,577,514,559,537,435,379,536,495,522,539,578,497,497,476,539,565,579,541,541,498,565,541,580,521,521,499,541,566,581,543,543,500,566,461,502,547,479,503,582,525,523,583,584,570,525,571,585,485,508,526,572,527,469,532,586,573,528,587,552,490,490,510,587,588,553,472,589,590,554,554,553,589,591,574,514,514,577,591,555,530,592,462,535,505,534,535,480,504,569,576,576,534,504,593,594,577,577,559,593,561,560,595,595,562,517,517,561,595,562,596,563,563,518,562,563,597,564,564,519,563,564,598,496,496,454,564,520,497,578,579,599,541,542,521,580,581,600,567,567,543,581,545,544,601,478,567,602,568,545,603,604,547,502,582,569,479,549,568,603,549,603,605,523,549,605,605,606,523,583,523,606,583,584,525,524,485,585,607,572,526,526,550,607,571,527,558,558,527,532,608,586,528,528,572,608,609,587,510,510,529,609,472,512,588,594,591,577,575,592,530,569,582,576,582,593,559,559,576,582,578,610,540,540,520,578,599,611,580,580,541,599,580,612,566,566,542,580,502,546,604,582,503,593,585,613,524,584,583,614,550,570,607,558,557,571,615,608,572,529,551,609,616,588,512,617,589,553,553,588,617,618,595,560,560,619,618,555,571,556,557,556,571,562,620,596,597,563,596,597,621,598,598,564,597,598,622,539,539,496,598,565,540,610,611,623,580,581,566,612,581,624,600,601,625,626,626,545,601,613,604,546,503,547,593,627,628,605,603,627,605,546,524,613,605,628,629,629,606,605,630,614,583,630,631,614,632,607,570,570,584,632,633,615,572,572,607,633,634,609,551,551,573,634,512,552,616,613,585,555,555,592,613,571,555,585,562,595,635,620,562,635,610,636,579,579,565,610,623,637,612,612,580,623,612,638,624,624,581,612,567,639,640,640,602,567,626,603,545,626,627,603,547,604,591,594,593,547,606,629,641,641,583,606,584,614,632,642,633,607,573,586,634,643,616,552,644,617,588,588,616,644,589,617,645,595,618,646,604,613,575,575,574,604,592,575,613,596,647,621,621,597,596,621,648,622,622,598,621,622,649,578,578,539,622,599,579,636,637,650,612,638,651,624,638,652,651,567,653,639,654,626,625,626,654,655,655,627,626,574,591,604,591,594,547,627,655,656,656,628,627,628,656,629,632,631,657,632,614,631,658,642,607,607,632,658,659,634,586,586,608,659,552,587,643,646,635,595,635,660,620,636,661,611,611,599,636,650,662,638,638,612,650,638,663,652,653,664,639,583,641,665,665,630,583,632,657,666,667,658,632,608,615,659,668,643,587,587,609,668,669,644,616,616,643,669,670,645,617,617,644,670,671,660,635,647,596,620,648,621,647,648,672,649,649,622,648,649,673,610,610,578,649,623,611,661,663,638,662,674,675,676,677,678,676,678,674,676,679,653,600,600,624,679,653,567,600,653,680,664,625,681,682,682,654,625,625,683,681,683,625,684,655,654,682,685,629,656,630,665,686,676,666,657,687,677,676,687,676,657,666,667,632,688,659,615,615,633,688,635,646,671,620,689,647,661,690,637,637,623,661,679,624,651,651,691,679,680,653,679,692,655,682,692,656,655,629,685,641,686,631,630,631,686,693,633,642,688,694,668,609,609,634,694,695,669,643,643,668,695,644,669,670,670,696,645,647,697,672,672,648,647,672,698,673,673,649,672,673,699,636,636,610,673,650,637,690,691,651,652,656,692,700,656,700,685,686,665,701,667,666,702,703,688,642,642,658,703,696,670,704,689,620,660,690,705,662,662,650,690,662,706,707,707,663,662,691,652,708,678,709,710,710,711,712,712,713,714,714,715,716,717,681,683,718,692,682,682,717,718,693,657,631,701,693,686,666,676,702,658,667,703,719,694,634,634,659,719,720,695,668,668,694,720,721,670,669,669,695,721,698,672,697,698,722,699,699,673,698,699,723,661,661,636,699,677,724,709,709,678,677,711,710,709,713,712,711,715,714,713,713,725,715,717,682,681,684,726,683,726,684,716,727,685,700,657,693,724,724,687,657,724,677,687,728,703,667,667,702,728,729,671,646,697,647,689,705,730,706,706,662,705,711,709,724,724,731,711,711,732,713,713,733,725,685,727,641,693,701,734,735,719,659,659,688,735,719,720,694,695,720,721,697,736,722,722,698,697,722,737,723,723,699,722,723,738,690,690,661,723,724,734,731,732,711,731,733,713,732,715,739,726,726,716,715,740,665,641,740,701,665,734,724,693,670,721,704,732,731,734,734,741,732,732,742,733,725,743,739,739,715,725,744,735,688,688,703,744,719,735,745,746,721,720,720,719,746,697,747,736,737,722,736,737,748,738,738,723,737,738,749,705,705,690,738,742,732,741,743,725,733,733,750,743,751,717,683,752,683,726,718,751,753,751,718,717,753,692,718,692,753,754,754,700,692,754,727,700,755,641,727,741,734,701,701,740,756,747,697,689,741,756,742,742,757,750,750,733,742,683,752,751,756,741,701,758,744,703,703,728,758,759,745,735,735,744,759,719,745,746,721,746,760,736,761,748,748,737,736,748,762,749,749,738,748,749,763,730,730,705,749,739,764,726,765,727,754,727,765,755,641,755,766,766,740,641,760,704,721,689,660,747,756,767,757,757,742,756,751,768,769,769,753,751,767,756,740,770,759,744,744,758,770,771,746,745,745,759,771,761,736,747,762,748,761,762,772,763,763,749,762,764,739,743,726,773,752,773,726,764,764,774,773,750,775,764,764,743,750,753,769,754,704,760,776,747,777,761,757,778,775,775,750,757,751,752,768,740,766,767,759,770,771,771,760,746,761,779,772,772,762,761,778,757,767,767,780,778,775,781,774,774,764,775,752,773,782,783,773,774,774,784,783,778,785,781,781,775,778,765,754,769,766,755,786,760,771,787,777,747,660,766,786,767,780,788,785,785,778,780,784,774,781,768,782,789,768,789,790,790,769,768,782,768,752,780,767,786,781,791,784,791,781,785,785,792,791,769,790,793,793,765,769,765,793,794,794,755,765,777,671,795,779,761,777,788,780,786,792,785,788,788,796,792,797,791,792,788,786,755,755,794,798,788,798,796,799,790,789,660,671,777,798,788,755,800,790,799,773,801,802,801,773,783,802,782,773,803,792,796,800,793,790,793,800,794,782,802,789,801,783,784,791,804,784,804,791,797,792,803,797,798,805,796,805,798,794,796,805,803,784,804,801,799,789,802,799,806,800,807,802,801,797,808,804,808,797,803,794,800,805,802,807,809,809,799,802,799,809,806,810,800,806,811,801,804,801,812,807,803,813,808,813,803,805,805,814,813,800,815,805,800,810,815,816,809,807,801,811,812,814,805,815,817,808,813,806,809,810,804,818,811,818,804,808,811,818,819,819,812,811,808,817,818,812,819,820,820,807,812,814,821,817,817,813,814,821,814,815,810,822,821,821,815,810,820,816,807,820,809,816,809,820,822,822,810,809,819,818,817,817,821,819,819,821,822,822,820,819,153,160,154,146,153,154,234,205,206,206,184,234,184,183,234,193,192,256,228,193,256,202,337,192,202,241,337,337,336,192,336,254,192,277,358,241,277,279,358]),
name: "src/meshes/teapot.ply",
- normals,
- positions,
- uvs,
- vertexCount: 686
+ normals: new Float32Array([0.0568927,0.9963135,0.06420743,-0.0799326,0.9941669,0.07240759,-0.12358398,0.8280825,0.5468148,0.16515216,0.9512132,0.2606115,0.18880455,0.7516897,0.63191414,-0.26532406,0.94982946,0.1656113,-0.19603758,0.18551922,0.9628873,0.31580678,0.15921263,0.9353702,-0.43467745,0.75106066,0.4969541,-0.17107923,-0.4452516,0.87891006,0.2905992,-0.44421753,0.84748024,-0.6487634,0.16213906,0.74351656,-0.5879791,-0.44476756,0.67561996,-0.27674997,-0.62449604,0.7303521,0.2358193,-0.42483014,0.8740186,0.49695557,0.7510595,0.43467775,0.7435171,0.16213848,0.64876306,-0.6319153,0.75168955,0.18880102,-0.20482819,-0.26208463,0.9430573,0.67565376,-0.44470808,0.5879853,-0.9353683,0.15921454,0.3158116,0.54587257,0.82860136,0.124269575,-0.8474803,-0.44421813,0.2905984,-0.655661,-0.44749412,0.60815924,0.10755416,0.316445,0.94249386,0.6087708,-0.44502082,0.6567759,-0.07176643,0.9943648,-0.07802775,-0.5470333,0.8279137,-0.12374764,-0.5860273,0.3307474,0.739715,0.96288687,0.18551841,0.19604005,-0.11087169,0.8464678,0.52076846,0.19153932,0.8446995,0.49979553,0.88023216,-0.44247022,0.17149743,0.07892639,0.9941629,-0.07355772,-0.9628871,0.18552043,-0.19603696,-0.35559997,0.8422419,0.40518793,0.2653233,0.94982976,-0.16561094,-0.87890965,-0.44525272,-0.17107858,-0.8740171,-0.4248306,0.23582417,-0.04412791,0.9740091,0.22216877,0.07273095,0.9740669,0.21425168,0.6665567,-0.6451215,0.37352404,0.6319164,0.7516886,-0.18880096,-0.16561036,0.9498298,-0.2653234,-0.14883141,0.9741497,0.16994546,0.7390099,0.32275876,0.5913468,0.9353688,0.15920955,-0.3158124,-0.49695373,0.7510587,-0.43468118,-0.9424942,0.31644404,0.10755316,0.40518782,0.8422419,0.3556001,0.84570974,-0.44714823,-0.29126188,-0.7435199,0.16213731,-0.6487601,-0.49979565,0.8446998,0.1915378,-0.6756196,-0.44476625,-0.5879805,-0.73035246,-0.62449574,-0.27674958,-0.038720626,0.9802991,0.19368611,0.063005276,0.98030907,0.18714827,0.16994497,0.9741499,0.14883141,0.89001334,-0.41327643,0.19255881,0.4346789,0.7510582,-0.4969565,-0.21425173,0.97406685,0.07273215,-0.13100335,0.98024756,0.14816482,0.5207663,0.8464689,0.110872634,0.6487612,0.16213807,-0.7435188,-0.18880336,0.75168747,-0.6319171,-0.94305664,-0.26208672,-0.20482866,0.927822,0.35810852,-0.10442601,0.74960953,-0.58988744,-0.30019733,0.58641934,-0.44965163,-0.67373997,-0.3158121,0.15920925,-0.93536896,-0.5207683,0.8464675,-0.11087459,-0.09214917,0.89951503,0.42706114,0.13593124,0.9032904,0.4069266,0.22216831,0.9740093,0.044125848,0.12374541,0.8279141,-0.5470333,-0.28963035,-0.44636554,-0.84668297,-0.60316056,-0.44652066,-0.660921,-0.29100645,0.8999372,0.32469702,-0.06529754,0.941149,0.33162448,0.0150432745,0.9696322,0.24410492,0.14827539,0.98033655,0.13021009,0.8491187,-0.31183332,-0.42632988,-0.73799974,0.33206502,-0.5874429,-0.22216895,0.9740091,-0.04412647,-0.19106235,0.97922087,0.067983545,-0.11515666,0.96360004,0.24127544,0.49979365,0.84470016,-0.19154097,0.19604,0.18552105,-0.96288645,0.08195558,0.9361994,0.34178054,0.5105226,-0.61432433,-0.60164136,0.17159176,-0.4463835,-0.8782357,-0.40519148,0.84224117,-0.35559756,-0.22821908,0.93927765,0.25626835,0.32816982,0.89590144,0.29944128,0.1975296,0.9792445,0.045413945,0.21425161,0.97406685,-0.07273223,-0.15752232,-0.6019658,-0.7828307,-0.64037937,0.7020605,0.31148887,0.13905965,0.9677601,0.21000648,-0.16994499,0.97414994,-0.14883073,-0.19368784,0.98029894,-0.038718842,-0.7531385,-0.27243838,0.59879863,0.2311729,0.94583035,0.22795625,0.35559824,0.8422407,-0.40519187,0.59211653,0.34975803,-0.72599393,0.34693137,-0.4197221,-0.83873236,-0.22816393,-0.24784744,-0.9415481,-0.10603079,0.3418128,-0.9337674,-0.41045263,0.9100289,0.05810424,0.26046315,0.9538541,0.14940341,0.66324204,0.70797217,0.24266315,-0.19154151,0.8446996,-0.49979421,0.18488625,0.9806092,-0.06498178,0.14883095,0.97414994,-0.16994493,-0.44652867,0.8897225,-0.09490019,-0.29479906,0.95335644,0.06484548,0.42767462,0.90370363,0.020352375,-0.07273271,0.9740667,-0.21425195,-0.1482752,0.9803365,-0.13021062,0.11087301,0.8464686,-0.5207667,-0.28433686,0.95869786,-0.007141059,0.32448876,0.9447116,0.047191318,0.4279118,0.8934629,-0.13643934,0.29161766,0.95610714,-0.028606733,0.13020985,0.9803366,-0.14827532,0.044125937,0.97400904,-0.22216941,-0.33558717,0.8937264,-0.29771492,-0.2702287,0.9562008,-0.112500936,-0.06300514,0.98030907,-0.18714845,0.28017506,0.9526421,-0.11821659,-0.22911097,0.9642257,-0.13333002,0.27159607,0.91634977,-0.2941745,0.220297,0.96315503,-0.15427755,0.03871876,0.980299,-0.19368725,-0.14345643,0.89244264,-0.42774576,-0.19300526,0.9457528,-0.2613439,0.6438041,0.16508555,-0.74717,-0.13398604,0.9638022,-0.23050606,0.08083865,0.90355885,-0.42076907,0.11614376,0.96613634,-0.23041533,-0.05823296,0.94927675,-0.30900225,-0.015903335,0.96565497,-0.25934052,0.10609722,0.936394,-0.33452925,-0.11303801,0.37131402,-0.921601,-0.6073066,0.4466621,-0.65701723,-0.6287273,-0.01988204,-0.77737164,0.16192104,-0.49644288,-0.8528341,-0.27315903,-0.4509954,-0.8496984,-0.34677228,-0.93581283,0.06327186,0.0624638,-0.9958382,0.06636646,0.4291102,-0.9016674,0.053481903,-0.84010273,-0.54110277,0.037883993,0.000033328535,0.32010022,-0.9473837,0.5705572,-0.19284672,-0.79829484,0.12458854,0.37519276,-0.9185358,-0.24489552,0.37535915,-0.89394164,-0.16807152,0.5414624,-0.8237538,0.8355659,-0.5486128,0.029217526,0.3030873,0.41261315,-0.85900426,0.23757592,0.32127005,-0.9167024,0.69009066,0.28463605,-0.6654,-0.12938234,0.22760966,-0.9651186,-0.35548154,0.32174394,-0.8775613,-0.40686584,0.41495034,-0.8138036,-0.9772298,0.21190935,-0.010794063,0.37442914,0.3181547,-0.8709653,0.13511828,0.22292574,-0.9654258,-0.25837418,0.22079034,-0.9404757,-0.4846586,0.31808934,-0.8148161,-0.34721985,0.7038826,-0.6196674,-0.61502546,0.786133,-0.061144456,-0.06999321,-0.9749556,0.21109822,0.34029248,-0.9196074,0.19627312,0.4661976,0.31828693,-0.8254411,0.50688547,0.41306433,-0.75660104,0.23757592,0.32127005,-0.9167024,-0.0022349653,0.17242128,-0.98502076,-0.569519,0.31818825,-0.75789475,-0.6001163,0.4117828,-0.68578094,-0.3449401,0.61892354,-0.7056558,0.9692294,0.24369162,-0.034765996,0.88955164,-0.40996432,0.20156175,0.5862451,0.31831607,-0.7449776,0.4199348,0.637634,-0.64581555,0.10910918,0.6037591,-0.7896645,-0.67768383,0.3183623,-0.6628649,-0.4440786,-0.871485,0.20810601,0.66286516,0.31836423,-0.6776829,0.68473256,0.4132006,-0.60033876,0.26002446,0.6310335,-0.73087895,0.44219097,0.6021347,-0.6647564,0.32458493,0.1773824,-0.92907494,-0.15207665,0.8484287,-0.50699246,-0.13621426,0.024309358,-0.990381,-0.4424219,0.17716533,-0.8791333,-0.744977,0.31831685,-0.58624536,-0.7567828,0.4090529,-0.50985813,-0.5086223,0.61625963,-0.6012716,-0.17220406,0.80270594,-0.5709719,0.6370755,0.7689299,-0.05368111,0.75789464,0.3181883,-0.56951904,0.32458493,0.1773824,-0.92907494,0.1326088,0.018059323,-0.99100393,-0.25677392,-0.06652102,-0.9641796,-0.8254329,0.31820318,-0.4662696,-0.10136998,0.8075103,-0.58107764,-0.013309714,0.7443602,-0.66764575,-0.16676837,0.9856542,-0.025962915,-0.77460724,-0.6032929,0.18979272,-0.28326458,-0.83178055,0.4773912,0.089326374,-0.8624186,0.49825203,0.49384397,-0.7118854,0.49933687,0.9342529,0.30316672,-0.18778028,0.814816,0.31809175,-0.48465708,0.81656945,0.41303498,-0.40325734,0.60063404,0.6128854,-0.51342994,0.5474521,0.18045183,-0.8171495,0.2564565,-0.07427342,-0.9636979,-0.38624382,-0.076836735,-0.91919076,-0.64866,0.1805916,-0.7393423,-0.87103516,0.31803873,-0.37436515,-0.86113894,0.40805468,-0.30320138,-0.5812343,0.67319137,-0.45714337,0.8794617,0.3177003,-0.35442027,0.38061017,-0.07632841,-0.92158,0.2564565,-0.07427342,-0.9636979,0.00592411,0.99356157,-0.11313795,0.009151153,0.9996958,-0.022905637,-0.65795285,-0.22420235,-0.71890986,-0.49865997,-0.076390184,-0.863425,-0.91880125,0.31459275,-0.23840229,-0.70152295,0.6216766,-0.3484018,0.66472954,0.72054803,-0.19734564,0.22654732,0.97000825,-0.08809251,0.15571941,0.7931232,-0.5888184,0.9127222,0.31749925,-0.25716233,0.8923693,0.41150168,-0.1853199,0.6948445,0.63072336,-0.34551302,0.7393419,0.18059178,-0.64866036,0.5013318,-0.076273024,-0.86188686,0.23737372,0.90702415,-0.34779435,0.60123914,-0.3145745,-0.73454356,-0.3021015,-0.39865646,-0.8659143,-0.61028993,-0.076691985,-0.78845716,-0.81714857,0.18045281,-0.5474533,-0.9388901,0.3193567,-0.12843937,-0.91549164,0.39307147,-0.08584715,-0.03370434,0.9992675,0.018122032,0.07265752,0.99673235,0.03529114,-0.9377702,0.1965707,-0.2862638,-0.8476745,-0.42073518,0.323156,0.9416219,0.3171567,-0.112959385,0.60549426,-0.07648694,-0.79216564,0.25024083,-0.39775956,-0.8827043,-0.0031387366,0.84861845,0.52899617,-0.35348126,0.7938304,0.49485782,-0.607254,0.40940168,-0.6809059,-0.11951341,-0.5197567,-0.8459134,-0.7039729,-0.07633587,-0.7061127,-0.9461909,0.32353407,0.0069617,-0.8019823,0.5973176,-0.00600709,-0.76444167,0.6208708,-0.1736326,-0.16607542,0.9776404,-0.12898931,-0.8555783,0.4976877,-0.14245196,0.2500902,0.9238363,-0.2897952,-0.104858786,-0.5076317,0.85516936,0.2819893,-0.47212288,0.83521366,0.6185565,-0.28166273,0.73352164,0.9385148,-0.11205244,0.32654887,0.94834495,0.3170913,-0.009754637,0.9152297,0.40272892,-0.012810119,0.76089084,0.6310293,-0.15115221,0.88168555,0.18049638,-0.43594906,0.70611215,-0.07633663,-0.70397335,0.15685886,0.9720634,-0.17460783,0.41048655,-0.39970005,-0.8195979,0.38061017,-0.07632841,-0.92158,0.10566444,-0.5358142,-0.83769804,-0.2623624,-0.59641486,-0.7585877,0.033179097,-0.7136528,-0.69971347,-0.19073243,-0.6605752,-0.72612774,-0.510398,-0.4008934,-0.76077485,-0.79216594,-0.07648588,-0.605494,-0.93106586,0.18015763,-0.31726903,-0.94162226,0.3171557,0.11295923,-0.89497656,0.4086997,0.17883374,0.0663958,0.98723555,0.14476712,0.48941252,0.68227893,-0.54311216,0.94115216,0.06587937,-0.33150053,0.6861239,0.37766856,-0.62177205,0.9398365,0.3152334,0.1316633,0.90392065,0.40694627,0.13161427,0.7884571,-0.07669112,-0.61028993,0.41048655,-0.39970005,-0.8195979,0.16158944,-0.6697055,-0.72483337,-0.029519957,-0.6780582,-0.7344152,-0.30348128,-0.6507821,-0.6959754,-0.86188686,-0.07627245,-0.50133187,-0.91272295,0.3174962,0.2571634,-0.06969765,0.99727255,-0.024285067,0.14684993,0.97897154,0.14159726,-0.4488461,0.85128504,-0.27175522,-0.5188946,-0.29918793,0.8007715,-0.08009979,0.94682115,-0.3116305,0.9187996,0.31459683,0.23840332,0.8589238,0.41467944,0.3004842,0.7727502,0.63237756,0.05436729,0.9646935,0.18017855,-0.19209892,0.863425,-0.07638879,-0.49866015,0.0022519769,0.99939305,-0.03476365,0.60372174,-0.40108934,-0.68894655,-0.27618033,0.15091555,0.9491832,-0.5412319,-0.12412039,0.83166224,0.28476608,-0.65459013,-0.7002999,-0.12599292,0.21462484,0.96853596,0.14528479,0.7110604,0.68795747,-0.22671466,0.71308583,0.6634072,-0.7379689,0.53414774,0.4124172,-0.965222,-0.21938927,-0.14217912,-0.37134373,-0.6511029,-0.66194326,-0.6889468,-0.401088,-0.60372245,-0.9215801,-0.07632891,-0.3806101,-0.9815208,0.17998163,-0.0649896,-0.87946194,0.31769958,0.3544201,-0.81656957,0.41303408,0.4032578,-0.7533562,0.63851786,0.15731965,0.098535605,0.7634281,-0.63833237,0.5222951,0.10876507,-0.8458003,0.19933788,0.37108737,-0.9069501,0.8710348,0.3180395,0.37436515,0.91919065,-0.07683615,-0.38624445,0.24613649,0.9669457,-0.06657969,0.38470134,-0.65110654,-0.6542669,0.28476608,-0.65459013,-0.7002999,0.035242617,-0.08891843,0.9954153,0.41595146,0.7168372,0.559579,0.13932231,0.64942926,0.74754995,0.65248007,0.41793174,-0.6321414,-0.63705295,-0.66872,-0.38337576,-0.17679265,-0.85809755,-0.48209226,-0.47235027,-0.6512968,-0.5938835,-0.9624097,-0.0762164,-0.26068887,-0.81481636,0.31808951,0.48465797,-0.052266106,0.99852407,0.014765209,-0.68047464,0.57544297,-0.45367366,-0.07217364,0.009945293,0.99734247,0.2649408,0.0798971,0.960949,0.8254323,0.31820524,0.46626922,0.7564821,0.41311368,0.5070227,0.7256235,0.63976055,0.25333145,0.98152053,0.17998332,0.064988986,0.9632319,-0.07645694,-0.2575626,0.7607763,-0.40089202,-0.51039696,-0.6134942,0.49237242,0.6174093,0.45762283,-0.65118486,-0.6054252,0.14230624,0.16314223,0.9762856,0.24676883,-0.8162543,-0.52233523,0.7565897,-0.55339444,-0.3483197,0.26354837,-0.5978047,-0.7570811,0.79550844,0.5012649,0.34044054,-0.5896707,0.57853526,0.5635473,-0.0577113,-0.5379457,-0.84100163,-0.26975495,-0.5369161,-0.7993456,-0.52895707,-0.6514096,-0.54393935,-0.821488,-0.40078744,-0.40561908,-0.9888783,-0.076404184,-0.1276013,-0.964694,0.1801763,0.19209902,-0.7578948,0.31818843,0.56951874,-0.6847328,0.41319945,0.6003394,-0.69484633,0.6307211,0.34551325,0.33176392,0.18595974,0.92485225,-0.27789447,0.7568023,-0.591629,0.74497753,0.3183167,0.5862449,0.9880374,-0.07682274,-0.13371718,0.24896204,0.9684981,-0.0054061743,-0.7942945,0.17510648,0.58175075,0.5396305,-0.6514862,-0.53325856,0.26433992,-0.5935468,-0.760149,0.07599004,-0.57183886,-0.81683886,0.96934986,-0.17911702,-0.16816027,-0.9881642,0.10289019,0.11377657,-0.8553196,-0.3622972,-0.37036347,-0.56167305,-0.66720396,-0.4892467,-0.6090764,-0.6511836,-0.45275345,-0.99707425,-0.07642164,-0.0016692313,-0.6628653,0.3183633,0.67768306,0.0062100366,0.999895,-0.013092021,-0.8740984,-0.039710097,0.4841229,-0.3430281,0.44582027,-0.8267866,0.71217304,0.18423882,0.6773961,0.9541309,0.086973324,0.28647837,0.72849303,-0.1267787,-0.67322,0.2905741,-0.19713351,-0.9363253,0.07305205,-0.026999103,-0.99696267,0.677683,0.31836408,0.6628651,0.60033923,0.4132003,0.6847323,0.63291126,0.6325709,0.44640476,0.93106616,0.18015833,0.3172677,0.9970742,-0.07642196,0.001669381,0.86720574,-0.40029845,-0.29616794,0.59770006,-0.6512723,-0.4675456,-0.28357622,0.56277436,0.7764468,-0.45501956,0.58612734,0.670382,-0.06511579,0.58439684,0.80885124,-0.46759528,-0.5372656,-0.7019262,-0.65118486,-0.65104514,-0.3899982,-0.8989264,-0.40009323,-0.17848445,-0.9880374,-0.07682402,0.13371672,-0.88168603,0.18049748,0.43594766,-0.586245,0.31831536,0.74497795,-0.50702333,0.41311258,0.75648224,-0.5969534,0.6146739,0.51557976,0.56951845,0.31818923,0.75789464,0.9888785,-0.07640335,0.1276006,0.21566948,0.97552216,0.0429322,-0.8545147,0.46449488,0.23248467,-0.9355284,-0.08246132,0.3434922,0.6587962,-0.651212,-0.3767102,0.44872537,-0.58936906,-0.671781,0.38470134,-0.65110654,-0.6542669,0.5119284,0.19139077,0.8374359,0.9332855,0.22927499,0.27642536,0.6637491,0.4517646,0.596109,-0.11455723,0.5922031,0.7976039,-0.08912172,-0.79848486,-0.59538174,-0.70596814,-0.6504781,-0.28015566,-0.9632319,-0.07645643,0.25756273,-0.46626976,0.31820208,0.8254332,-0.1913724,0.9785611,0.07612405,0.9268485,0.21421269,0.30832574,0.63793784,0.07977822,0.76594436,0.8211981,0.048709583,0.5685604,-0.30401585,0.11435825,-0.9457783,-0.39313543,0.22452794,0.89164555,-0.08601123,0.36519384,0.9269495,0.9720044,-0.091856085,-0.21626358,0.48465738,0.31809112,0.8148161,0.40909263,0.41595185,0.8121744,0.51557803,0.6146738,0.5969551,0.8171496,0.18045238,0.5474518,0.96241,-0.07621669,0.2606881,0.9145783,-0.3997602,-0.061141793,-0.78029895,0.62236094,0.061648514,0.6985244,-0.6507318,-0.29767725,-0.6301238,0.5626794,0.53510344,0.44872537,-0.58936906,-0.671781,-0.74074525,0.56552815,0.36259407,0.1595758,0.5564255,0.81543005,0.37361875,0.5445601,0.7509083,0.25525808,-0.7312859,-0.63250625,0.6424904,-0.572907,-0.50890434,0.2774148,0.5184833,0.8088362,-0.5735225,0.40979612,0.70932287,-0.4462423,-0.61444926,-0.6506303,-0.6326444,-0.537364,-0.5576746,-0.73065263,-0.650157,-0.2084289,-0.91457903,-0.3997585,0.06114216,-0.9191904,-0.07683627,0.38624474,-0.7393426,0.18059081,0.64865977,-0.37037706,0.31799647,0.8727538,-0.29924813,0.41621774,0.8586113,-0.44640455,0.63256955,0.6329129,0.9455975,0.30330303,0.11769665,-0.74734837,0.17486478,0.6410091,0.694849,-0.30526525,-0.6511512,-0.1915997,-0.32965392,-0.92445546,-0.32587445,-0.16963114,-0.9300705,0.3573786,0.3208679,0.8771113,0.92157966,-0.07632585,0.38061163,0.068837434,0.9967834,0.0410425,-0.8973028,0.44138545,0.005144538,0.73470587,-0.6503604,-0.1929728,0.6068192,-0.5889496,-0.5337684,0.70968485,0.51610595,0.47956452,-0.059610605,-0.52306193,-0.85020745,-0.27784815,-0.5232454,-0.80561453,-0.7553407,-0.64960384,-0.08645968,-0.86342525,-0.07638958,0.49865976,-0.24447371,0.3137911,0.9174791,-0.021071695,0.9980633,0.058529653,0.9579049,0.26509196,-0.11020215,-0.79886484,0.0796449,-0.5962145,0.24305792,0.42355347,0.87265414,0.2890374,-0.41016114,-0.8650001,0.25191274,0.39037988,0.88551885,0.3457385,0.6310644,0.6944225,0.64866006,0.1805922,0.7393421,0.8618871,-0.076270916,0.50133175,0.8989263,-0.4000934,0.17848478,-0.901067,0.41502446,-0.12582895,0.7539355,-0.6480573,-0.10771732,-0.67212546,0.5862709,-0.45225394,-0.80567294,0.58959603,-0.057163894,0.56716686,0.49883437,0.6553518,0.17322753,-0.48622125,-0.8564935,-0.09063972,-0.69379455,-0.7144463,-0.7552487,-0.5372017,-0.37551793,-0.7603337,-0.6494285,-0.011636602,-0.867206,-0.40029785,0.2961683,-0.7884563,-0.07669505,0.6102905,-0.55302626,0.18154295,0.81314456,-0.13563862,0.39050275,0.91055465,-0.25333068,0.639761,0.7256235,-0.1541273,0.96959203,0.19009499,0.825119,0.47493875,-0.3059604,0.7936305,0.5596947,0.23852164,-0.9953851,0.01983485,0.09388793,-0.8173281,-0.13822408,-0.5593468,0.7921663,-0.07648689,0.6054934,-0.87690204,0.40906972,-0.25239813,0.75985515,-0.65001833,0.009810083,-0.7878318,0.5975274,0.14927198,0.7233115,-0.5900535,-0.35868827,-0.35775718,0.5692737,-0.7402279,0.06512692,0.58801156,-0.8062263,-0.7738933,0.56644154,-0.28325444,0.39476693,-0.45568284,-0.7978172,-0.0278585,-0.8857905,-0.46324837,-0.16059536,-0.88539493,-0.43621668,-0.4767875,-0.52369964,-0.70598334,-0.7516553,-0.6499023,0.1124336,-0.7061125,-0.07633618,0.70397294,-0.08805917,-0.53848773,-0.8380195,0.2594672,0.2643199,0.92887664,0.14881657,0.62863576,0.7633286,0.44210073,0.17889428,0.87894464,0.70397294,-0.07633589,0.7061126,0.1900975,0.96959114,0.15412949,0.8214877,-0.4007865,0.4056207,0.7553415,-0.6496028,0.086459786,-0.14927296,0.5975252,-0.7878333,-0.53510404,0.56267655,-0.63012606,-0.80193037,0.24422896,-0.54521555,-0.9249085,0.04579585,-0.37742138,0.7584057,0.6139537,-0.21881904,0.8317092,0.5551332,0.009322383,0.27489418,-0.59582376,-0.75460404,0.7147256,-0.4233568,-0.5567193,-0.48250148,-0.48867595,-0.7269031,-0.827133,-0.53669876,-0.16674994,-0.73643166,-0.6502296,0.18673468,-0.76077497,-0.40089354,0.5103978,-0.60549456,-0.07648573,0.7921655,-0.38066542,0.18328202,0.9063671,-0.24447371,0.3137911,0.9174791,-0.3989486,0.75241303,0.5241324,-0.05235144,0.6291649,0.7755069,-0.041041452,0.9967831,0.06884103,-0.71432,-0.30211282,-0.6312487,0.122228935,0.36528826,0.9228351,0.61029047,-0.07669198,0.7884566,0.7306542,-0.6501548,0.2084302,0.7882368,-0.5935703,-0.16234875,0.58640903,-0.45781326,-0.66823006,0.39476693,-0.45568284,-0.7978172,-0.2324854,0.4644979,-0.854513,-0.3434935,-0.082457274,-0.93552816,-0.5817501,0.17510433,-0.79429555,-0.6174096,0.4923722,-0.61349416,0.45708394,0.58794796,-0.66737664,0.20767291,-0.8857861,-0.41503608,0.07909864,-0.88510203,-0.45862585,-0.039413672,-0.9817992,-0.18578738,-0.25546017,-0.8850025,-0.38924384,-0.6424488,-0.5238506,-0.55932117,-0.6959757,-0.6507815,0.30348167,-0.5044349,-0.08161278,0.8595841,-0.74769914,0.19260174,0.6354925,-0.0034968064,0.36224008,0.93207824,0.81732136,0.13847801,-0.559294,0.4988722,-0.07608865,0.86332905,0.03476506,0.99939305,0.002249302,0.68894637,-0.40108898,0.6037222,0.7059685,-0.6504775,0.28015587,0.12582701,0.41502208,-0.9010683,-0.0051446613,0.4413751,-0.897308,0.6740702,0.54330504,-0.5004488,0.2832615,0.5664472,-0.77388656,-0.8422995,-0.53636956,0.053284034,-0.66194224,-0.6511037,0.3713442,-0.60372293,-0.40108803,0.6889462,-0.36214146,-0.08990027,0.92777777,0.6031099,0.52215004,-0.6030073,0.7594776,0.21847361,0.6127504,0.38746458,-0.07664855,0.9186927,0.066579446,0.96694547,0.24613766,0.65118474,-0.6510455,0.38999775,0.8299473,-0.5574951,0.019664947,0.7389591,-0.45695427,-0.4951083,0.29829386,-0.8842896,-0.3592388,0.20767291,-0.8857861,-0.41503608,0.252398,0.40907076,-0.8769016,-0.06165332,0.62234724,-0.78030944,0.54521364,0.2442346,-0.80192983,0.37742057,0.04578843,-0.92490923,0.059723653,-0.98194623,-0.17948414,-0.14278756,-0.97664493,-0.1605502,-0.35923785,-0.8842905,-0.2982926,-0.7652233,-0.5235699,-0.3745769,-0.5938839,-0.6512967,0.47235006,-0.70149463,-0.15060677,0.69657934,-0.613081,0.53109765,0.5848649,-0.613081,0.53109765,0.5848649,-0.086276144,0.8588921,0.50483733,-0.04293235,0.97552204,0.21567005,0.30958048,0.78875923,0.5310545,0.60573775,0.5309248,0.5926219,0.51003546,-0.4010711,0.76092434,0.6090757,-0.65118456,0.45275295,0.8271196,-0.5344722,0.17381765,-0.7993451,-0.53691685,0.26975495,-0.543939,-0.6514099,0.52895683,-0.40723163,-0.39826483,0.8219169,0.0054060225,0.9684998,0.24895594,0.24990632,-0.09694528,0.96340466,0.5289571,-0.6514102,0.54393846,0.8436938,-0.45338723,-0.28743818,0.38924524,-0.8850015,-0.25546142,0.16055058,-0.9766448,-0.14278778,0.29829386,-0.8842896,-0.3592388,-0.049939163,-0.997203,-0.055607144,-0.41503373,-0.88578707,-0.20767337,-0.8365695,-0.52304375,-0.1630235,-0.45275304,-0.65118414,0.60907614,-0.57844615,-0.38761654,0.7177419,-0.7574206,0.6064358,-0.24197035,-0.35042202,0.88275445,-0.312968,0.015965637,0.93062675,-0.3656216,0.35170946,0.8858485,-0.30260992,0.67326033,0.6983603,-0.24292646,0.77710396,-0.04378903,0.62784714,0.5027922,-0.44275767,0.7424053,0.30233395,-0.39084107,0.86938924,0.47235066,-0.6512959,0.5938843,0.7535136,-0.5386016,0.3769955,0.0021595194,-0.9984392,-0.05580811,-0.7019278,-0.53726125,0.46759796,-0.38999805,-0.6510452,0.65118486,-0.2685397,-0.37256968,0.8883007,-0.96313137,0.26849186,-0.017036166,-0.7574206,0.6064358,-0.24197035,0.96805775,0.21774086,0.12431079,0.37134337,-0.65110403,0.6619423,0.87150615,-0.4864577,-0.06193376,0.4362134,-0.8853963,-0.16059661,0.16055058,-0.9766448,-0.14278778,0.056622326,-0.9970706,-0.05142218,-0.17948449,-0.9819463,-0.05972348,-0.4586208,-0.885105,-0.079096034,-0.85020524,-0.52306545,0.059611905,-0.27881098,-0.6542879,0.70297354,-0.45738187,-0.5154124,0.7246736,-0.27769044,-0.65801114,0.6999353,-0.9754545,-0.11510383,0.18772174,-0.3482694,0.7846437,-0.5128768,-0.018545028,0.7704709,-0.6372054,0.3461242,0.7269931,-0.5930254,0.29381034,-0.6531096,0.6979422,0.30367562,-0.6481849,0.69831043,0.6222849,-0.5593877,0.5475829,-0.014826651,-0.99988675,0.0025810385,-0.557676,-0.53736377,0.63264334,-0.16118349,-0.67230684,0.7225118,-0.10342326,-0.5610246,0.821313,-0.95986694,0.063469894,0.27317932,0.95260024,-0.04406177,0.30101737,0.113713086,-0.5518254,0.8261707,0.1922566,-0.65990055,0.7263393,0.8336552,-0.5261227,0.16797003,0.46325153,-0.8857888,-0.027860155,0.18578757,-0.9817992,-0.039414044,0.015259005,-0.9998801,-0.0026702227,-0.46325004,-0.88578975,0.027857272,-0.80561197,-0.52324826,0.27784994,-0.27769044,-0.65801114,0.6999353,-0.10342326,-0.5610246,0.821313,-0.007495285,-0.5606672,0.8280073,-0.0024945622,-0.7214028,0.69251114,-0.16268705,-0.7141415,0.680834,-0.7435987,-0.46765542,0.47786975,-0.83365804,-0.21651146,0.50807196,-0.5484398,0.6116161,-0.5702101,-0.28193444,0.60136694,-0.74757665,-0.71058565,0.46169123,-0.53095126,-0.96313137,0.26849186,-0.017036166,0.7580732,0.49962223,-0.419169,0.8811482,-0.3578383,0.30907845,0.17091094,-0.72518474,0.66700584,0.46759787,-0.5372592,0.7019293,-0.058667447,-0.9982712,-0.0035690207,-0.37528303,-0.5370112,0.75550085,-0.53545296,-0.7190021,0.44308704,0.1137618,0.47988096,-0.86992675,0.5305283,-0.710462,0.4623674,0.7682774,-0.51965165,0.3737807,0.45862043,-0.8851053,0.07909467,0.056622326,-0.9970706,-0.05142218,-0.18578702,-0.98179924,0.03941407,-0.4362125,-0.88539696,0.16059557,-0.7059868,-0.5236949,0.47678736,0.3942839,0.48989397,-0.77752435,0.6722502,-0.3985169,0.6239102,0.040959552,-0.72129446,0.69141644,0.26975363,-0.5369171,0.79934543,0.058859013,-0.9982597,0.0036215517,-0.16643573,-0.53591985,0.8277011,0.040959552,-0.72129446,0.69141644,-0.007495285,-0.5606672,0.8280073,-0.16268705,-0.7141415,0.680834,-0.19089821,-0.8373103,0.5123175,-0.53545296,-0.7190021,0.44308704,-0.2981791,-0.66078454,0.6888056,-0.7435987,-0.46765542,0.47786975,-0.47440672,-0.42741844,0.76957893,-0.83365804,-0.21651146,0.50807196,-0.8112236,-0.053253315,0.58230597,-0.95986694,0.063469894,0.27317932,-0.4808207,0.417548,-0.7710157,-0.116383865,0.3788277,-0.9181201,0.5569627,-0.68479425,0.46994612,0.41459462,-0.8870803,0.20297733,0.17948453,-0.98194623,0.059723217,-0.389244,-0.88500243,0.25545996,-0.55932015,-0.5238506,0.6424496,0.1136213,-0.84909356,0.5158781,-0.55017525,-0.23986265,0.79985815,-0.9806211,0.19528137,0.015733398,0.72265047,0.39150146,-0.5696515,0.053417124,-0.5391922,0.84048706,0.058859013,-0.9982597,0.0036215517,0.053417124,-0.5391922,0.84048706,-0.0043023974,-0.7040536,0.7101339,-0.08344183,-0.5230442,0.84821117,-0.24533775,-0.3265284,0.9127917,0.29877883,-0.65574056,0.6933509,0.4744638,-0.521518,0.7091565,-0.16054972,-0.976645,0.14278765,-0.2982918,-0.88429075,0.35923794,-0.37457377,-0.5235713,0.7652239,-0.90707225,-0.0075176666,0.42090788,0.8022419,-0.07237982,0.59259516,0.2667997,-0.49315006,0.82802224,0.08201508,-0.35124153,0.93268585,-0.63644016,-0.21659233,0.74029166,0.27785155,-0.5232476,0.8056118,0.25019524,-0.88658875,0.3890535,0.15361488,-0.9741731,0.16549683,-0.056561127,-0.9970781,0.05134228,-0.20767131,-0.8857876,0.41503373,-0.1630221,-0.52304363,0.8365699,-0.32236737,-0.33986393,0.8834997,-0.4605093,0.44202393,-0.7697701,-0.8251584,0.42552376,-0.37154135,0.10782897,0.39809215,-0.910986,0.5435823,0.42694983,-0.72265625,0.9622954,0.24859825,-0.11039245,0.45068246,-0.27716884,0.84856516,0.102536045,-0.38795987,0.91595495,0.05961242,-0.52305984,0.8502087,0.16059598,-0.8853962,0.43621388,0.049951337,-0.997201,0.05563205,-0.059722867,-0.98194635,0.17948428,-0.07909461,-0.8851043,0.45862246,0.05961242,-0.52305984,0.8502087,-0.82100654,-0.28240198,0.49618283,0.6941628,0.5188444,-0.49893734,0.88830954,0.050359752,0.45647576,0.5534558,-0.25927168,0.7914954,-0.36891752,0.60290545,-0.70739293,0.14934604,0.60427624,-0.7826532,0.027859287,-0.88578963,0.46324998,0.039414313,-0.98179924,0.185787,0.027859287,-0.88578963,0.46324998,-0.9330978,0.35961676,0.0020848594,-0.8139494,-0.40681753,0.414712,-0.40283307,-0.55008656,0.7315261,0.015259005,-0.9998801,-0.0026702227,-0.0021773847,-0.9984397,0.055797476,0.11844444,-0.6104027,0.7831854,0.039414313,-0.98179924,0.185787,0.5804413,-0.47744548,0.65964675,-0.3419636,-0.7632996,0.548119,-0.65817714,0.68104106,-0.32091418,-0.9669006,0.082957454,0.24129081,-0.81168526,0.11497714,0.5726669,0.14244813,-0.8093766,0.56975275,0.93979883,-0.041933786,0.33914548,-0.0021773847,-0.9984397,0.055797476,0.78608865,-0.45581526,0.41748908,-0.2777247,0.8586703,-0.4307599,0.14775084,0.78869987,-0.5967598,-0.37684715,-0.5498762,0.74540085,0.38708767,-0.63448757,0.6690208,0.5728922,0.705167,-0.41777274,0.6899195,0.7097548,-0.14233533,0.049951337,-0.997201,0.05563205,0.9196396,-0.02230809,0.39212936,0.1109336,0.15195152,0.98214275,0.9653483,0.2470969,0.083938986,-0.015702538,0.97643965,-0.21521866,0.15239777,0.97695476,-0.14944725,-0.29387432,0.9558123,0.0078054564,-0.30025354,0.94874126,-0.09868107,0.66442573,0.5007882,0.5547519,-0.3585756,0.767221,0.5317852,0.36082104,0.931945,0.035868943,-0.08874891,0.9646178,0.24826646,0.80905527,0.5159834,0.28140828,-0.07240278,0.98167646,-0.17626423,0.44612837,0.29525754,0.84486234,-0.5816681,0.4384945,0.6851166,0.5285301,0.8225281,-0.21000801,0.97539204,0.20357357,0.08466432,-0.5293027,0.82365745,-0.20353639,-0.86167955,0.5062396,0.035066746,-0.95927596,-0.121700734,0.25490898,0.50083363,-0.7702286,0.39485887,-0.49141815,0.86019737,-0.13626751,0.22715555,0.94847506,-0.22089653,0.7098428,0.7028163,0.04661016,0.6460368,0.39400306,0.65375686,-0.7809922,0.5310517,0.3286871,-0.26333243,0.31176257,0.91294026]),
+ positions: new Float32Array([0.08334465,2.1424341,0.07932985,-0.070349455,2.1392877,0.08685406,-0.026624786,2.1165075,0.22995588,0.13131183,2.1277943,0.17365156,0.09853005,2.109425,0.23106422,-0.14236523,2.1277943,0.11571934,-0.028311478,2.0860515,0.25332013,0.10569635,2.086041,0.24514012,-0.13464902,2.1094203,0.18321484,-0.025097836,2.0472333,0.24395595,0.1035895,2.047248,0.23548824,-0.14345975,2.086042,0.1963199,-0.13608178,2.0472825,0.18972445,-0.029490227,1.9328475,0.13811602,0.053974885,1.9096376,0.12667316,0.19880696,2.1094203,0.16593559,0.21191177,2.086042,0.17474641,-0.19977777,2.109425,0.08293786,0.000612297,1.893343,0.12393209,0.20531666,2.0472825,0.16736805,-0.2138535,2.086041,0.090104885,0.245548,2.1165073,0.057912216,-0.2042017,2.0472476,0.08799729,-0.06537563,1.909708,0.09252914,0.036932457,1.8633798,0.12673298,0.108120695,1.9097081,0.0966628,-0.055567756,2.1392877,-0.08594141,-0.19866906,2.1165075,-0.042218085,-0.050450303,1.8631896,0.09981998,0.2689121,2.0860515,0.05959847,-0.0048417146,1.8283503,0.15090589,0.072587796,1.8283521,0.14528267,0.25954792,2.047233,0.056383822,0.11722808,2.1392877,-0.0711597,-0.22203363,2.0860515,-0.043903664,-0.072253294,1.8283509,0.118361324,0.18924369,2.1277943,-0.10002511,-0.21266955,2.0472333,-0.04068961,-0.09538641,1.9096375,0.03838331,-0.036583383,1.7764032,0.2996845,0.12170442,1.7763994,0.2894037,0.15117924,1.9319383,0.064145274,0.24665661,2.109425,-0.06724304,-0.0844333,2.1277943,-0.15795717,-0.1738225,1.7763883,0.23220484,0.11541181,1.8631896,0.08173721,0.26073214,2.086041,-0.07441039,-0.1519282,2.1094203,-0.15024127,-0.09544642,1.86338,0.02134014,0.13395336,1.8283508,0.10354005,0.25107998,2.0472476,-0.07230329,-0.16503382,2.0860417,-0.15905136,-0.113996066,1.8283521,0.056995932,-0.15843788,2.0472827,-0.15167412,-0.10682954,1.9328475,-0.045082346,-0.11946154,1.713866,0.6884592,0.25027663,1.7138191,0.66612583,0.2477964,1.7763885,0.20510836,0.14117798,1.9037943,0.03336559,0.18152781,2.1094203,-0.16752036,-0.2581175,1.7763991,0.106113605,-0.43922716,1.7137523,0.53020483,0.16649806,1.8283503,0.03612837,0.19033799,2.086042,-0.1806257,-0.051651962,2.109425,-0.21536976,-0.09264548,1.8933431,-0.014980405,0.14232501,1.8633798,-0.005645876,0.15161814,1.9313473,-0.046003956,0.18296021,2.0472825,-0.17403017,-0.058818705,2.086041,-0.22944556,-0.1196194,1.8283503,-0.02043341,-0.15268247,1.6804774,0.8276422,0.29324442,1.6804463,0.80248094,0.3152781,1.7764032,0.06786633,0.073503695,2.1165073,-0.21426165,-0.056710783,2.0472476,-0.21979368,-0.061242893,1.909708,-0.08096743,-0.53676957,1.680413,0.6346807,-0.15181486,1.6430178,0.8767164,0.058187544,1.6404709,0.89543945,0.54579794,1.7137525,0.4705128,0.13048695,1.8922141,-0.04576187,-0.068533264,1.8631896,-0.06604265,-0.26839992,1.7764028,-0.05217246,-0.6348381,1.7138191,0.23468441,-0.37166288,1.6431051,0.80272067,0.16087472,1.828352,-0.041302234,0.07519028,2.0860515,-0.23762569,0.2888651,1.6429368,0.8562937,0.10819932,1.931129,-0.10255232,0.07197568,2.0472333,-0.22826156,-0.0870752,1.8283508,-0.08784501,-0.55967665,1.6431638,0.6783556,0.65027285,1.6804134,0.56805557,0.70405036,1.7138665,0.15074402,0.30499506,1.7763996,-0.09041822,-0.0057035857,1.9322323,-0.12842005,-0.7495322,1.6675459,0.40090367,0.48806316,1.6418642,0.76857215,-0.20091844,1.7763882,-0.18941507,-0.65717494,1.7138656,-0.1350486,-0.7000573,1.6418467,0.5222103,0.67517346,1.6406071,0.6122083,0.1191314,1.8283508,-0.10266749,0.09732953,1.8631896,-0.084125124,0.07275074,1.9051306,-0.10290013,-0.0010098432,1.8934784,-0.10959778,0.009946367,1.86338,-0.11103846,-0.79238707,1.6800269,0.17279279,0.78359157,1.6437819,0.46742213,0.8470529,1.6670016,0.28102258,-0.025710195,1.8283521,-0.12958816,0.6817153,1.7138196,-0.21899047,0.22070114,1.7763884,-0.21650977,-0.7963558,1.6804773,-0.16827253,-0.8387324,1.6423836,0.22027755,0.85286504,1.6800337,0.06970149,-0.0748271,1.7763994,-0.27370837,-0.498919,1.7137523,-0.4548178,0.051720727,1.8283504,-0.13521144,-0.8601035,1.6431593,-0.047985286,0.89519894,1.6414781,0.16984248,0.8180726,1.6804464,-0.26195997,0.90626466,1.6431584,-0.05890753,0.48610407,1.7137525,-0.514512,0.08345893,1.7764032,-0.2839906,-0.6033947,1.680413,-0.55236113,-0.81540483,1.64316,-0.2799762,-0.20339565,1.7138195,-0.65042925,0.85276496,1.6408682,-0.31371522,-0.6987217,1.6409484,-0.5125001,0.5836474,1.6804134,-0.6189865,0.73992115,1.6428952,-0.51971954,0.16633531,1.7138661,-0.6727655,-0.24636713,1.680446,-0.7867861,-0.5619955,1.643482,-0.6589329,0.59798515,1.6543156,-0.6597425,-0.3805355,1.6431631,-0.78265214,0.19955955,1.6804774,-0.8119481,0.46186322,1.6429485,-0.76795715,-0.18633449,1.6414671,-0.853363,0.014847007,1.6429577,-0.87899864,0.24777395,1.643623,-0.8525219,-0.13708203,1.2201986,-1.1987333,-0.13018008,1.4676074,-1.0874002,-0.11856759,1.4250436,-1.1078795,0.067937605,1.3835112,-1.1360718,-0.046977993,1.3895441,-1.128823,-0.066813715,1.3888745,-1.5016229,0.049661394,1.3786709,-1.4935458,0.12697549,1.3954146,-1.503003,-0.122212425,1.4266,-1.5219053,0.023472408,1.043774,-1.2762223,0.15205699,1.4147904,-1.1134502,0.18624468,1.2235599,-1.1971881,-0.2992081,1.2212609,-1.1666684,-0.17836498,1.6543496,-0.9927835,0.16904669,1.4265362,-1.5220367,0.39898196,1.4012913,-1.0702847,0.3682682,1.043757,-1.2310394,0.17729744,1.452745,-1.0943191,-0.1596576,0.87812847,-1.3139293,-0.4805254,1.0437776,-1.1767193,-0.49036428,1.3984607,-1.0141273,-0.13023514,1.4610814,-1.5664936,0.5274694,1.043756,-1.1767004,0.2066279,0.8781125,-1.3139212,-0.33465075,0.8781284,-1.2789862,-0.62902933,1.0437685,-1.1031295,-0.10498853,1.5052639,-1.0715001,-0.1058254,1.4962851,-1.5730144,-0.0029746592,1.3575419,-1.6793306,0.113855146,1.3666314,-1.6892962,0.6759691,1.0437552,-1.1030997,0.6653518,1.3975278,-0.9403692,0.3682682,1.043757,-1.2310394,0.023179002,0.80810404,-1.3389374,-0.7654057,1.0437644,-1.0117038,-0.733144,1.3971657,-0.85239965,-0.4270119,1.673638,-0.896672,0.17708606,1.4562079,-1.6243867,0.16855657,1.3798587,-1.7995425,0.8123401,1.0437571,-1.0116649,0.16712761,1.4932051,-1.0762645,0.15916966,1.6695567,-0.9924975,-0.88822824,1.0437622,-0.90386957,-0.080393285,1.3720747,-1.6966659,0.9351563,1.043763,-0.9038204,0.8836833,1.3971748,-0.74873376,0.35800847,1.6738327,-0.9445496,0.59078443,1.6738087,-0.8290441,0.47024128,0.81047237,-1.2681124,-0.019321563,0.61591285,-1.3591542,-0.16366085,0.63544285,-1.346943,-0.5848182,0.81048846,-1.2009051,-0.9960717,1.0437592,-0.7810527,-0.92477673,1.3975255,-0.634067,-0.64175564,1.6735265,-0.75429636,-0.23952836,1.6979915,-0.94038737,0.15261103,1.4969658,-1.5636654,1.0429908,1.0437641,-0.78099835,0.47024128,0.81047237,-1.2681124,0.20625602,0.6347588,-1.347509,-0.3449288,0.594272,-1.3120416,-1.0875072,1.043755,-0.64468265,-0.024805844,1.5362902,-1.0630813,0.000059388964,1.6884999,-0.989071,-0.027793014,1.5310217,-1.4637215,-0.1222637,1.3989162,-1.729115,-0.0461377,1.3307201,-1.7811424,0.04950467,1.3266906,-1.7736806,0.12662457,1.3379519,-1.7937132,0.17637855,1.3934637,-1.8795686,1.1344155,1.0437716,-0.6446212,1.0454118,1.3984663,-0.5059554,0.783354,1.6738085,-0.6596039,0.7821489,0.8103163,-1.1137438,0.38988605,0.59425515,-1.3125583,-0.51453584,0.5942715,-1.2540165,-0.87149185,0.8103454,-1.0089873,-1.1611083,1.0437543,-0.4961829,-1.054587,1.3994839,-0.3700825,-0.7672235,1.6824135,-0.6101374,1.2080059,1.0437784,-0.49611753,0.55956554,0.5942557,-1.2547859,0.38988605,0.59425515,-1.3125583,0.22211109,1.7075293,-0.93677336,0.39503187,1.706966,-0.88141817,-0.13092218,0.5296462,-1.3400967,-0.6727237,0.59427094,-1.175473,-1.2154495,1.0437506,-0.3369808,-0.8772543,1.6735612,-0.45045543,0.1524265,1.460181,-1.800241,0.09306671,1.521911,-1.5821316,0.09435941,1.5302218,-1.0635425,1.2623357,1.0437812,-0.33691546,1.1402951,1.4010118,-0.22316395,0.9264443,1.6738284,-0.44539562,1.040274,0.81034553,-0.8870845,0.71785945,0.5942598,-1.176483,0.5755161,1.7031059,-0.7984173,0.17888936,0.51580375,-1.336582,-0.4187791,0.44476014,-1.2525015,-0.8179727,0.59426934,-1.0779333,-1.0981499,0.81031895,-0.75086343,-1.2490982,1.0437595,-0.16850698,-1.1169127,1.3706566,-0.15020968,-0.45130336,1.707926,-0.83473045,-0.62489,1.7084126,-0.7098394,-0.12968473,1.3513668,-1.925497,-0.11749717,1.3428891,-1.841813,1.2959783,1.0437818,-0.16844085,0.8632467,0.5942629,-1.0791675,0.38080394,0.4455707,-1.2758154,0.02466718,0.6792218,-1.4758605,-0.06889438,0.660599,-1.4714676,-0.100696936,0.5771033,-1.3464222,-0.1411206,0.37204158,-1.2739416,-0.94876295,0.5942666,-0.96292126,-1.26063,1.0437744,0.007814106,-0.9940772,1.6601213,0.0029156592,-0.9634795,1.6721017,-0.204783,-0.027717575,1.5191196,-1.6507251,-0.122253865,1.4428332,-1.7923522,0.09278359,1.4813439,-1.8280268,-0.0024569083,1.2798687,-1.8250833,0.092384905,1.2819638,-1.833126,0.1368052,1.2746896,-1.8629043,0.16844703,1.2819757,-1.8966665,1.3075079,1.0437787,0.007881319,1.1741234,1.370678,0.007898085,1.0110695,1.6738564,-0.19576068,1.2321913,0.8104873,-0.60041237,0.9942081,0.594267,-0.9643557,0.7401232,1.7055863,-0.65052503,0.6236196,0.44474822,-1.1867466,0.55956554,0.5942557,-1.2547859,0.19085829,0.37187874,-1.2735764,-0.09610031,0.44529897,-1.3130318,0.052125175,0.41549465,-1.3055779,-0.30954644,0.30001438,-1.1835359,-0.7268331,0.44481227,-1.0997906,-1.0635753,0.5942627,-0.8319596,-1.2525207,0.81046826,-0.4389548,-1.2490995,1.0437803,0.18413563,-1.0934215,1.4009997,0.23886037,-0.19008996,1.707011,-0.92855847,0.12704387,1.4157645,-1.936517,0.17594871,1.2808125,-1.9606372,0.1519235,1.3461933,-1.9711549,1.2959762,1.043764,0.18420035,1.163787,1.3706676,0.1659035,1.1092199,0.59427035,-0.8335658,0.6236196,0.44474822,-1.1867466,0.29236773,0.2903251,-1.1922095,-0.04147702,0.2901783,-1.2189556,-0.46264032,0.3000183,-1.1310996,-1.1608902,0.5942596,-0.6865731,-1.2154578,1.0437768,0.35261065,-0.8483239,1.7080646,-0.40925828,-0.7651855,1.7067481,-0.5444803,-0.08052488,1.4712274,-1.8190814,-0.078389086,1.2749525,-1.8536009,-0.0032408445,1.4861653,-1.835384,1.2623259,1.0437587,0.35267532,1.1014621,1.3994931,0.3857751,1.0285628,1.6738753,0.078875996,1.3458589,0.8106713,-0.26622146,1.2067595,0.59427166,-0.6883165,0.8509805,1.7070105,-0.4874088,0.9069772,0.44480193,-0.9973093,0.33548447,1.6884013,-0.8837255,0.553447,1.688398,-0.7758682,0.50699013,0.30001226,-1.1321464,0.15361957,1.6884285,-0.9242653,0.073525734,0.7892097,-1.6189157,-0.045844708,0.7724023,-1.6080177,-0.117593,0.6800306,-1.5506496,-0.12936573,0.5632415,-1.4531778,-0.60541946,0.30002186,-1.060142,-0.9817169,0.44480258,-0.8756912,-1.2391936,0.5942548,-0.52827805,-1.3227639,0.810829,-0.085883886,-1.1611271,1.0437764,0.5118124,-0.9985352,1.3984613,0.5216503,-0.96419084,1.6738558,0.21145485,0.049716406,1.4263767,-1.957956,0.12730582,1.2738886,-2.0164306,0.073891826,1.3326887,-2.0237167,1.2079865,1.0437578,0.5118769,1.2853038,0.59427196,-0.5301275,0.9413059,1.7061806,-0.3039426,0.64991015,0.30001685,-1.0615208,0.50699013,0.30001226,-1.1321464,0.023474278,1.6963738,-0.93315494,0.12750843,0.7073257,-1.5483599,0.092331104,0.60411966,-1.3561718,0.15194933,0.5712692,-1.3457208,-0.10715316,0.5336413,-1.4658571,-0.035090927,0.5085891,-1.4831535,-0.73650944,0.30002305,-0.9720382,-1.296966,0.59425294,-0.3585982,-1.0875372,1.0437692,0.6603158,-0.92602456,1.7085652,-0.16358803,-0.10557469,1.4042392,-1.9213142,-0.002153509,1.2178761,-1.8368653,0.094296,1.1860807,-1.8452731,1.1343851,1.0437593,0.66037637,0.9716554,1.3975291,0.64975923,0.9758361,1.6738329,0.3424162,1.3696423,0.8108328,0.10157772,1.3433284,0.59427047,-0.36052218,1.1310791,0.44481364,-0.742424,0.69359994,1.6950672,-0.65771294,0.7811897,0.3000209,-0.9737265,-0.1686082,1.6882848,-0.9170113,0.09300706,0.5693338,-1.5786703,0.16467763,0.5860214,-1.5398133,0.14056115,0.4449696,-1.3128136,0.16903256,0.6736092,-1.555701,-0.099802546,0.80430835,-1.671052,-0.048163,0.11879362,-1.0217043,-0.31823692,0.11879522,-0.96793395,-0.8545382,0.3000229,-0.8681664,-1.171155,0.44474894,-0.5923322,-1.3326912,0.5942559,-0.17905112,-1.2989806,0.8106675,0.2819159,-0.99611145,1.0437648,0.7966923,-0.83680695,1.3971659,0.76443106,-0.8795661,1.6738274,0.46108985,-0.34940365,1.6954257,-0.8616451,-0.046361804,1.4217603,-1.9510711,1.0429507,1.0437593,0.7967477,1.3793108,0.59426767,-0.18102261,0.9893979,1.7061816,-0.050099906,0.8071997,1.6884,-0.5220938,0.8994539,0.3000235,-0.87013036,0.36474055,0.11879843,-0.9680649,0.16215064,0.11892777,-1.012956,0.17713201,0.75196517,-1.7162092,-0.1302335,0.83058083,-1.761569,-0.12324186,0.77799094,-1.7717692,-0.09288413,0.63870686,-1.6505462,-0.9581343,0.300021,-0.7499031,-1.3448501,0.5942603,0.008851049,-0.8882775,1.0437622,0.91951483,-0.935793,1.7080383,0.07467894,-0.121707335,1.2611594,-1.8993721,-0.050127953,1.3566632,-2.0076044,0.15130138,1.1028212,-1.8612034,0.17272587,1.0844145,-1.8929814,0.15187073,1.1289787,-1.9903777,0.09257905,1.1183264,-2.0230582,0.042985108,1.2055298,-2.0422392,0.93510735,1.0437636,0.91956353,0.7800218,1.3971713,0.868092,0.8603304,1.6738092,0.5751921,1.2994007,0.8104669,0.45464772,1.3917295,0.59426,0.0068432535,1.2837882,0.44476038,-0.4343717,1.0033246,0.3000229,-0.75210214,0.351041,1.6390647,-0.89452106,0.5710031,1.6390593,-0.7824896,0.092814,1.6390618,-0.94850135,-0.55681074,0.118799224,-0.84983116,-1.0459286,0.30001685,-0.6186236,-1.2832553,0.4446855,-0.26206446,-1.3324316,0.5942678,0.19671679,-1.1853124,0.8104906,0.6161044,-0.76546127,1.0437561,1.0273592,-0.61847436,1.3975233,0.95606494,-0.7364741,1.6738085,0.67529935,0.81228477,1.043766,1.0273979,1.3795705,0.5942557,0.19474547,0.96993697,1.7061809,0.21327935,0.9318202,1.6950785,-0.24165387,0.8916215,1.6884227,-0.36043704,1.0914276,0.3000211,-0.6210122,0.6032909,0.11880202,-0.85010123,0.64991015,0.30001685,-1.0615208,-0.45504582,1.6888597,-0.8117126,0.1727533,0.83271813,-1.7481815,0.15186991,0.8597339,-1.7308983,-0.0022435542,0.8908064,-1.7042718,-0.003318607,0.62629443,-1.6738396,-1.1165541,0.3000116,-0.47570226,-1.2964492,0.59427065,0.37621573,-0.62909013,1.0437534,1.1187947,-0.8944273,1.70618,0.3196373,-0.8676254,1.6950041,-0.31660378,-0.6015684,1.68903,-0.71204454,-0.76030886,1.6891152,-0.5340294,-0.045783754,1.2740339,-2.031532,-0.061141685,1.1140083,-1.8362093,-0.002242626,1.0626979,-1.8029488,0.17710689,1.0170327,-1.9092469,0.67590773,1.0437715,1.1188234,0.5372416,1.3984692,1.0298185,0.6908906,1.6738087,0.7677614,1.1450307,0.8103162,0.7665565,1.3438457,0.59425366,0.37429202,1.3534079,0.44463095,-0.08563511,0.9604242,1.7005188,-0.11909212,1.1623869,0.30001885,-0.4782323,0.75240046,1.6390642,-0.6195225,0.6032909,0.11880202,-0.85010123,0.8864331,1.6390582,-0.41432923,-0.1848513,1.6390746,-0.9309358,-0.420149,1.6390626,-0.85602874,0.092498414,0.69787395,-1.7534287,0.15227985,0.7210788,-1.7361515,0.09326837,0.91392785,-1.7304785,-0.0955817,0.9279681,-1.7640961,-0.080171585,0.77125376,-1.8124642,-0.7542176,0.11880151,-0.6764733,-1.168643,0.3000056,-0.32250932,-1.306529,0.44463158,0.10133035,-1.2384243,0.5942711,0.5458224,-0.99339545,0.8103445,0.9027785,-0.4805904,1.0437543,1.1923953,-0.35448983,1.3994879,1.0858719,-0.54390496,1.6738088,0.8447387,-0.908923,1.6884265,-0.12612545,-0.10429604,1.1050695,-1.8617474,0.15177988,0.99041355,-1.9450421,-0.02098179,1.0321329,-2.0070417,-0.045712322,1.1163943,-2.0226722,0.52740514,1.0437775,1.1924136,1.286073,0.5942568,0.5439727,0.8574923,1.7081127,0.501205,0.9640881,1.6950852,0.011064285,1.2148224,0.3000144,-0.32513958,0.8007648,0.11880094,-0.6768506,-0.7793039,1.6390554,-0.54850656,-0.050331697,0.08221776,-1.0122828,-0.31768233,0.0822433,-0.9583365,-1.2008306,0.300002,-0.16041449,-1.1598804,0.5942711,0.7040105,-0.32116503,1.0401602,1.2480917,-0.8041019,1.70701,0.5031031,-0.91707677,1.6882169,0.07447347,-0.116332136,1.2646401,-1.9874847,0.09295388,1.0318686,-1.7966456,0.09234176,0.9734661,-1.9742609,0.3453849,1.2594365,1.1669265,0.47668225,1.6738276,0.9108526,0.918371,0.8103474,1.0246814,1.2077696,0.59426075,0.7022672,1.3301343,0.4446857,0.27775922,0.955222,1.6950837,0.14017753,1.2473593,0.30000815,-0.16310902,0.8137766,1.6390581,0.5554113,0.97850096,1.6390604,0.085862175,-0.6211516,1.6390601,-0.7274221,0.22850965,0.08222909,-0.9949484,-0.0032073455,0.7587573,-1.8287121,-0.9009739,0.11880072,-0.45726252,-1.2117472,0.30000284,0.009216302,-1.2369088,0.44475976,0.4500667,-1.0623406,0.59426856,0.84926015,-0.7352703,0.81031424,1.1294383,-0.14211026,1.2594205,1.1981685,-0.31112948,1.6738327,0.960244,-0.69324535,1.705586,0.66621846,-0.86775386,1.6947649,0.32288736,-0.8853705,1.6410385,-0.30902764,-0.13021572,1.0856917,-1.907158,-0.11946847,1.0978181,-1.9699652,1.1104544,0.5942632,0.8476544,0.93015987,1.6950794,0.26351663,1.2586273,0.30000442,0.006478278,0.9623828,1.6410059,-0.16293061,0.94765157,0.11879758,-0.45766333,0.44561312,1.639059,0.87084186,-0.05457756,1.639059,0.96290904,0.9258077,1.6390648,0.33544832,0.48206767,0.08224002,-0.90942264,-0.05109592,0.059807647,-0.9850721,-0.31108904,0.059824314,-0.9319244,-0.553738,0.082253784,-0.84072477,-1.2004795,0.30000684,0.17880301,-0.9473288,0.59426665,0.98004967,-0.0029414676,0.89722586,-1.9405683,0.3818046,0.9327633,1.2778714,0.22704768,1.673856,0.9954774,0.6316996,0.81048584,1.2165991,0.99564254,0.59426695,0.97861546,0.6818113,1.7055863,0.7245314,1.2180336,0.44474998,0.6080289,1.2477103,0.3000035,0.17611045,0.19421732,1.6410056,0.94679046,0.65080816,1.6390641,0.73680925,0.80715436,1.6883981,0.53785574,0.8908367,1.6884251,0.3780169,-0.88568693,1.6396396,0.3027281,-0.93704855,1.639092,0.0075943843,0.09228564,0.8329641,-1.8848516,0.15192024,0.85334104,-1.8605547,-0.07565109,0.8995878,-1.9182856,-0.98789406,0.11879445,-0.2017572,-1.1679426,0.30001345,0.34083384,-1.0841984,0.4448124,0.7581196,-0.81636757,0.5942631,1.0948619,-0.5049327,0.80808693,1.2503597,-0.32116503,1.0401602,1.2480917,-0.15981968,0.9445862,1.3092185,-0.0475894,1.673875,1.0129703,-0.46991858,1.7081124,0.84190017,-0.1049901,0.9838308,-1.9418,0.19089691,1.186658,1.2303085,0.8648527,0.59426945,1.0936272,1.2155231,0.3000069,0.3382041,1.0347054,0.118794106,-0.20209469,0.6997237,0.08225137,-0.7645136,0.48206767,0.08224002,-0.90942264,0.2729403,1.6950784,0.9162281,0.39172405,1.6884224,0.87602925,0.5533804,1.6883998,0.79160744,0.6889995,1.6950672,0.67800796,-0.5241259,1.6390591,0.7981828,0.46759793,0.05982532,-0.8862934,0.22043568,0.059815656,-0.9689146,-0.16749732,0.03299553,-0.8752109,-0.5405655,0.0598326,-0.8168594,-0.74892044,0.08225116,-0.6684375,-1.1155082,0.30001873,0.49392647,-0.6709799,0.59425926,1.1921775,-0.31058767,0.7546499,1.3231856,0.017389765,1.187722,1.2406776,-0.76032084,1.6883994,0.5377884,0.7196025,0.5942711,1.1911676,0.5186947,1.7070104,0.83538884,1.0285956,0.44480264,0.89138585,1.1634332,0.300012,0.49139646,-0.10889079,1.6950834,0.9396299,0.020221677,1.6950848,0.94849586,-0.74926746,1.6390905,0.5856462,-0.30416387,1.6390644,0.9102148,-1.006112,0.11879355,0.079450674,-1.0445492,0.3000216,0.6367062,-0.86009926,0.44480246,1.0130032,-0.51268595,0.59425527,1.2704804,-0.6467211,1.6950669,0.67340755,0.35106364,0.7732608,1.3213917,0.5614152,0.5942707,1.2697109,0.3352293,1.7061805,0.9257138,1.0928069,0.3000166,0.6343185,1.0531384,0.118929155,0.0051182937,0.8720118,0.08225419,-0.56933045,0.67991734,0.059832525,-0.7457506,0.46759793,0.05982532,-0.8862934,-0.23223007,1.6950792,0.9145677,0.15037927,1.7005186,0.94483197,-0.5065688,1.6883978,0.7915624,-0.34673038,1.6884246,0.8752446,0.3129514,0.0330065,-0.8487171,-0.5942509,0.037374455,-0.6832741,-0.73015743,0.05983211,-0.6486305,-0.8938302,0.082239576,-0.4507805,-0.9564454,0.3000228,0.7677964,-0.30133113,0.64961153,1.3357284,-0.24995492,0.8793793,1.3086416,-0.24995492,0.8793793,1.3086416,-0.03695588,0.97967553,1.3079474,-0.1819904,1.7061807,0.9543455,0.17926827,0.9594544,1.307995,0.30571604,0.8686211,1.3093572,0.7737118,0.44481298,1.1154858,1.0050129,0.30002028,0.7655969,1.0347736,0.11879476,0.21745141,-0.95234126,0.118795164,0.34952456,-0.85257345,0.30002248,0.88582504,-0.5767401,0.44474828,1.2024413,0.08138988,1.7061814,0.97380483,0.38641644,0.5737355,1.3260057,0.90141755,0.3000228,0.88386023,0.9896236,0.08224336,-0.3332743,0.84814644,0.059832968,-0.5561582,0.7145612,0.03737477,-0.60984343,0.67991734,0.059832525,-0.7457506,-0.46575898,0.015557987,-0.5344669,-0.87070054,0.059824992,-0.43631175,-0.97935545,0.082228154,-0.19722213,-0.7343107,0.30002075,0.9894209,-0.26821455,0.58004856,1.3408854,-0.23854086,0.9368254,1.4950178,-0.11657804,0.993846,1.4253682,0.02343951,1.0082848,1.4138813,0.1716484,0.9868551,1.4172457,0.28561607,0.93589926,1.4933739,0.35627562,0.67886376,1.3302113,0.3005929,0.5591035,1.3406367,0.45560914,0.45321742,1.2763294,0.78338903,0.30002385,0.9877331,0.9478534,0.11880107,0.4729569,0.05290176,0.009341659,-0.6226395,-0.8342381,0.11879878,0.5880978,-0.60303146,0.30001727,1.0772156,-0.33079642,0.44882807,1.2942096,-0.26700586,0.91420513,1.6028824,-0.23854086,0.9368254,1.4950178,0.300248,0.9607661,1.659674,0.652299,0.3000218,1.0758358,1.0435697,0.08221803,-0.06592431,0.96321094,0.059824612,-0.32668257,0.7145612,0.03737477,-0.60984343,0.5657532,0.015558217,-0.48135206,-0.8331249,0.03300625,-0.28166395,-0.9533219,0.05981528,-0.18914744,-0.99669015,0.08221763,0.08161961,-0.46011025,0.3000119,1.1478409,-0.22779876,0.53590405,1.341137,-0.16082466,0.49030796,1.3423923,-0.29838207,0.7491861,1.4882393,-0.11753322,1.031781,1.5066577,0.023784624,1.0695803,1.5290787,0.15620223,1.0543128,1.5365474,0.20792225,0.49052173,1.3421981,0.5095196,0.30001822,1.1467938,0.80109686,0.118801974,0.6921682,-0.267814,-0.00007903695,0.058759205,-0.6608812,0.11880147,0.7855041,-0.24548951,0.2903248,1.2079035,-0.15712076,0.3610921,1.278753,-0.2643062,0.9047255,1.6497712,0.3243607,0.83986545,1.6135018,0.20062336,0.36484453,1.2822535,0.3564262,0.30001375,1.1992296,1.0262349,0.082228504,0.2129178,1.0163591,0.059807908,-0.06669014,0.90649796,0.032995813,-0.18308999,0.32357994,8.908119e-7,-0.04430827,-0.9694796,0.059807435,0.08238242,-0.9427431,0.0822428,0.34897104,-0.16082466,0.49030796,1.3423923,-0.15712076,0.3610921,1.278753,0.019480878,0.37236822,1.2998635,0.02425789,0.4495198,1.338842,-0.078982666,0.46021366,1.3368335,-0.24788877,0.6890031,1.5823387,-0.25720796,0.8231269,1.6537575,-0.18069129,1.0745118,1.6120213,-0.10018518,1.1102719,1.5884832,-0.19962151,1.1020174,1.6692796,-0.26700586,0.91420513,1.6028824,0.25154436,1.0567863,1.6208299,0.32765195,0.68810844,1.5039129,0.12445844,0.4597369,1.3368949,0.60369,0.11879907,0.8655251,-0.6070471,0.009341511,-0.021614991,-0.44167092,0.11880086,0.93226045,-0.192009,0.5880472,1.5250467,0.07696954,1.1923153,1.6255885,0.23937999,0.5897407,1.5270116,0.94070965,0.08224014,0.46647504,1.0002018,0.05981586,0.20484166,0.5657532,0.015558217,-0.48135206,-0.8596179,0.032995336,0.19878523,-0.91633075,0.05982407,0.3423783,-0.825133,0.082253985,0.58502406,0.15917301,1.1756966,1.6403203,0.27247238,0.7579822,1.6647537,0.10626299,0.24436279,1.1843089,0.36511618,0.11879548,0.9836285,0.65392655,0.009341805,0.03730923,-0.18616518,0.11879452,1.0191809,0.10626299,0.24436279,1.1843089,0.019480878,0.37236822,1.2998635,-0.078982666,0.46021366,1.3368335,-0.07510188,0.54567724,1.5366232,-0.192009,0.5880472,1.5250467,-0.11320118,0.64752257,1.6503217,-0.24788877,0.6890031,1.5823387,-0.16665137,0.7800166,1.7204527,-0.25720796,0.8231269,1.6537575,-0.21862273,0.97555107,1.745161,-0.2643062,0.9047255,1.6497712,-0.13000561,1.2205523,1.6696383,-0.0152173815,1.2451919,1.6454502,0.7931933,0.07086173,0.6782372,0.91758025,0.05982536,0.4520053,0.8800043,0.033006627,0.29735792,-0.8012676,0.059832525,0.57185113,-0.6528442,0.08225095,0.780208,0.078951955,0.53737915,1.5401113,-0.16948636,0.933222,1.7792666,-0.14193061,1.3816079,1.8129356,0.2109338,1.2106109,1.6942275,0.09504225,0.11879364,1.0373988,0.65392655,0.009341805,0.03730923,0.09504225,0.11879364,1.0373988,0.0234396,0.63065225,1.6565068,-0.024409406,0.74088794,1.7409962,-0.09351798,0.90181804,1.8040954,0.16101281,0.6488754,1.6512141,0.6006169,0.08225434,0.85641986,-0.6676807,0.03737438,0.6255383,-0.63303703,0.059832104,0.7614454,-0.43518695,0.08223949,0.9251175,-0.1361779,1.3371797,1.8652642,0.26310432,0.98280483,1.7487981,0.15118423,0.75633645,1.7342501,0.06571236,0.89168143,1.8134649,-0.10375385,1.3219061,1.9012297,0.3645637,0.08224325,0.97403014,0.5874454,0.059832793,0.83255357,0.6411311,0.0373747,0.6989676,-0.51887435,0.015557976,0.49704596,-0.42071757,0.059825003,0.9019881,-0.18162851,0.08222829,1.0106426,-0.05258019,1.3122818,1.9291797,-0.06076968,1.4828637,1.7461896,-0.1001644,1.5509489,1.8538234,0.050255213,1.449292,1.7163594,0.1220081,1.474428,1.7549484,0.16332494,1.5078211,1.8682543,0.19457108,0.92353225,1.7906046,0.050973542,1.3079153,1.9385996,0.097212024,0.08221799,1.0279773,0.3579707,0.059824385,0.9476178,0.51263946,0.01555821,0.5501603,-0.26607075,0.033006325,0.86441165,-0.17355272,0.059815552,0.9846096,0.097212024,0.08221799,1.0279773,-0.10471385,1.4867496,1.9672115,0.13015717,1.5596071,1.8278702,0.21437325,1.252835,1.8127389,0.1349504,1.3197984,1.9139618,-0.034438137,1.5614831,1.7860538,0.046039913,1.5617199,1.7744447,0.09797596,0.059807725,1.0007666,0.21437825,0.03299557,0.8909046,0.09797596,0.059807725,1.0007666,-0.10236957,1.6601003,2.0677333,-0.08605082,1.568438,2.0625153,-0.041282956,1.4725394,2.0225692,0.32357994,8.908119e-7,-0.04430827,-0.0060220635,0.009341653,0.6383341,0.046714686,1.4694996,2.0333884,0.21437825,0.03299557,0.8909046,0.1186981,1.4747397,2.0027006,-0.035708997,1.5648086,2.115774,-0.07401888,1.6548247,1.9364653,-0.092562184,1.6700922,2.1979017,-0.05520356,1.6808217,2.3022392,0.045618545,1.563633,2.128546,0.16312735,1.4525598,1.9207544,-0.0060220635,0.009341653,0.6383341,0.13632406,1.5666125,2.0636342,-0.02377089,1.6676809,1.9068271,0.046491656,1.6474826,1.8631732,-0.01231475,1.6774539,2.334932,0.07208405,1.6763514,2.3273487,0.10702443,1.6498383,1.909836,0.13675506,1.6706548,2.0202556,0.51263946,0.01555821,0.5501603,0.12681217,1.6715994,2.2434146,0.024489984,1.6868597,2.3553615,0.14904262,1.6629648,2.129228,0.013497298,1.6765794,1.9208583,0.07515714,1.6775577,1.9435898,-0.079917684,1.6874342,2.1946464,-0.076415874,1.6807529,2.0421045,0.08835412,1.6902534,2.3223107,-0.011774483,1.6934222,2.3359318,0.12859674,1.686814,2.1867743,0.02234845,1.6753298,1.9481443,-0.04541487,1.6728067,2.0182877,0.049119227,1.6857455,2.3077416,0.002972571,1.6707135,1.9543043,0.058318462,1.6707753,1.9623501,-0.050677057,1.674166,2.199432,-0.058631964,1.6714963,2.0948064,0.098035656,1.6744944,2.1967893,0.10666898,1.6717232,2.1086257,0.0918873,1.6727524,2.017068,-0.022561306,1.6681252,1.9745932,0.08456524,1.6396514,2.1486619,-0.010041372,1.6391695,2.185331,-0.05505234,1.6390067,2.0783894,-0.030087573,1.6390054,1.9475452,0.0963931,1.6389829,1.9968811,0.044547193,1.6390631,1.9208456]),
+ uvs: new Float32Array([0.56383085,0.49572945,0.54318315,0.48315775,0.5540097,0.43693596,0.5753557,0.46960098,0.57408524,0.445826,0.53243506,0.46702212,0.5545062,0.42716795,0.57629883,0.44063866,0.53459597,0.44297063,0.55473495,0.4281926,0.5762996,0.44182265,0.53320307,0.43675837,0.53354996,0.43743944,0.5486393,0.4567124,0.5664972,0.46747687,0.58744353,0.47444963,0.59065866,0.47207454,0.5204789,0.47005764,0.5540453,0.46283823,0.59044933,0.4732049,0.5177227,0.46598,0.5902579,0.5125457,0.5180881,0.4662444,0.53862274,0.46785623,0.56176317,0.4661005,0.5758522,0.48511207,0.53929913,0.5309931,0.51626885,0.5093962,0.5416415,0.46679458,0.59520185,0.51372135,0.55432063,0.4454817,0.57204807,0.45691085,0.59483075,0.5146255,0.5633087,0.53875506,0.5113002,0.5085487,0.5367605,0.45300454,0.57409024,0.5547935,0.5115867,0.50839025,0.5298807,0.48665497,0.55576324,0.3693412,0.5944495,0.394134,0.5811135,0.5021577,0.5860809,0.5519036,0.5310886,0.5520973,0.5173457,0.38657805,0.57664156,0.49205488,0.58881485,0.5562849,0.5189948,0.5473309,0.5287704,0.49657688,0.58378273,0.48316658,0.5883615,0.5567608,0.5157375,0.54997957,0.5237934,0.47678053,0.5158632,0.54958963,0.52477556,0.52163744,0.5585938,0.22247021,0.64761,0.2784205,0.6182397,0.44949877,0.57885647,0.517105,0.5719042,0.5788152,0.49103063,0.43748364,0.4686071,0.26525488,0.58739704,0.51773506,0.57326114,0.5852916,0.53228956,0.5757849,0.5274779,0.51147443,0.5769825,0.5319237,0.57637024,0.54634094,0.5728233,0.58533984,0.530019,0.5812064,0.51827604,0.51161677,0.5589657,0.18589944,0.665279,0.25202373,0.6252903,0.5199709,0.55240446,0.5846863,0.529932,0.58075184,0.53001624,0.5417409,0.45103097,0.23829988,0.5626184,0.16698733,0.6247753,0.18617442,0.6879668,0.38968867,0.57217985,0.5462866,0.5290633,0.5363385,0.48064515,0.50874543,0.42309892,0.37117362,0.49041742,0.17701697,0.58189076,0.552547,0.5518453,0.59467715,0.6725122,0.23476869,0.56545967,0.5650203,0.5515262,0.5943763,0.5218095,0.54596895,0.44077924,0.22286889,0.7067529,0.37683308,0.6980337,0.51875657,0.6149787,0.5911406,0.540123,0.56421566,0.4057543,0.3180548,0.6998223,0.29267883,0.48735338,0.57831013,0.40912092,0.50296944,0.41304666,0.27685326,0.71633554,0.36712104,0.5688516,0.576087,0.5640695,0.56155723,0.557402,0.5650748,0.54199606,0.55881494,0.5438986,0.56214833,0.39789137,0.39166212,0.7218531,0.4239874,0.7220329,0.48431596,0.5334698,0.57199335,0.68458766,0.65040684,0.58836097,0.641064,0.39101952,0.50230837,0.39100444,0.3763519,0.7162062,0.5545882,0.51079065,0.63266134,0.4181591,0.6297085,0.55120647,0.5834012,0.3832671,0.46170026,0.7258587,0.52451074,0.70407915,0.66081554,0.72241366,0.5960014,0.6384633,0.75398684,0.5495067,0.6573702,0.39953196,0.640071,0.38218474,0.5362937,0.4571666,0.73813814,0.7127075,0.67821175,0.38674617,0.61653984,0.6567383,0.7785614,0.6928016,0.744717,0.5462981,0.7940663,0.4392854,0.761696,0.3962282,0.6768964,0.6643171,0.7936463,0.41241777,0.74058795,0.54573774,0.8279332,0.6269679,0.8275783,0.43963152,0.79260314,0.48516735,0.83040583,0.55752325,0.8468027,0.31630385,0.87820697,0.3994552,0.85925615,0.39018303,0.86876595,0.4184501,0.9156983,0.39014873,0.89028597,0.37146783,0.89708775,0.38622057,0.9194009,0.40976498,0.9309267,0.3737538,0.8842662,0.23950031,0.9142025,0.4633667,0.9254246,0.3346259,0.9577966,0.3139935,0.8372988,0.43512294,0.8101324,0.4304539,0.93350905,0.63565016,0.93904555,0.9739257,0.9628624,0.48726785,0.91974795,0.21705404,0.8610444,0.27601063,0.79483736,0.3431179,0.7732532,0.3811314,0.881681,0.89244634,0.9368228,0.12659624,0.92099905,0.23522949,0.82441294,0.2799794,0.75534624,0.4141152,0.85817957,0.39055282,0.8830576,0.36346495,0.91361344,0.384903,0.9319419,0.8608255,0.9018117,0.73524475,0.8779523,0.026442397,0.9485693,0.16734466,0.88560563,0.28270602,0.71602315,0.33558387,0.69573176,0.40632513,0.7451786,0.43343356,0.93211156,0.3905912,0.9401609,0.8456663,0.86443007,0.49127582,0.9085049,0.51914746,0.85764116,0.2846386,0.67672276,0.35883933,0.89965475,0.8370842,0.8261407,0.76005816,0.80400383,0.58363223,0.8558965,0.65143096,0.8240836,0.038318068,0.9135703,0.14398704,0.8493366,0.17289378,0.83242357,0.2395395,0.7644464,0.28602123,0.6372835,0.33208448,0.61762834,0.389248,0.6786765,0.43330306,0.78607297,0.44316125,0.92224383,0.8316798,0.78729254,1.0051861,0.9072281,0.09494999,0.8750376,0.189686,0.7972015,0.28699383,0.5975273,0.4391803,0.868773,0.47519934,0.83548546,0.4173985,0.8893641,0.3615672,0.89139855,0.3477749,0.90871096,0.3558516,0.9248323,0.36995012,0.9366081,0.39293575,0.9393337,0.8280345,0.74790883,0.7702403,0.72654426,0.69116163,0.7700589,0.91438663,0.8606985,0.04389055,0.8710385,0.20533343,0.765149,0.25238276,0.68962944,0.2876373,0.5572525,0.3308706,0.5378139,0.38344625,0.62601316,0.8254702,0.7078785,0.9982284,0.8625037,1.0430932,0.8798418,0.54186094,0.84615785,0.59648347,0.83932334,0.15331717,0.82203066,0.2165005,0.73156726,0.28799257,0.5162235,0.3781705,0.5729711,0.41710848,0.92946446,0.43223578,0.9112146,0.47324222,0.88942355,0.8236269,0.6670113,0.77506745,0.64578354,0.7128606,0.70532316,0.8773848,0.7933226,0.96161425,0.8442181,0.64506763,0.814677,0.095404744,0.8497234,0.17790608,0.763546,0.2245918,0.6969963,0.258806,0.6133525,0.2880738,0.47416353,0.33110994,0.47582412,0.41049153,0.728501,0.3954427,0.6716704,0.34402776,0.8964109,0.34547284,0.8968492,0.8223003,0.6250541,0.9345888,0.819371,0.04624506,0.8399837,0.15114078,0.8716937,0.16534404,0.8576466,0.15453808,0.83297074,0.13936551,0.7900752,0.23048392,0.661693,0.28786457,0.43075478,0.37647867,0.4401566,0.37632447,0.50008273,0.40347695,0.89606446,0.3705746,0.8904132,0.40839478,0.9197351,0.33406636,0.91815096,0.34152085,0.9338925,0.34174722,0.9415728,0.34581825,0.94552493,0.82137203,0.5817005,0.7768586,0.5823276,0.7245535,0.63395655,0.8605069,0.71924996,0.9150971,0.7903331,0.680092,0.76864254,0.010102542,0.83329844,0.0030432213,0.8525695,0.08077693,0.8202523,0.13855019,0.813244,0.11104485,0.82161444,0.15052624,0.75320524,0.20234337,0.70244884,0.23472509,0.6257595,0.2615531,0.5350409,0.2873337,0.38723594,0.3342346,0.36913118,0.44668284,0.793293,0.39015055,0.9309025,0.34402654,0.9445945,0.36946887,0.9392354,0.8207962,0.53819144,0.77732575,0.5392391,0.9009819,0.7585324,0.99486446,0.82600343,0.057383277,0.7982096,0.1123959,0.7814099,0.16600168,0.7283648,0.23765638,0.58920324,0.2864412,0.34486967,0.38421538,0.5661064,0.3883865,0.61418116,0.38018233,0.89548135,0.3281302,0.9056306,0.39307618,0.90596795,0.82053536,0.4957883,0.7770672,0.4765774,0.7299949,0.5567374,0.85194457,0.6407261,0.89064854,0.7247515,0.7002369,0.7202891,0.94475424,0.7848522,0.5804895,0.8447108,0.6441476,0.8154453,0.019554103,0.79892695,0.522547,0.8448826,0.16875345,0.89893186,0.18636717,0.88102067,0.18008813,0.8581727,0.16063176,0.8350351,0.17801286,0.7011962,0.21583033,0.636252,0.23948005,0.55196404,0.2614029,0.45334715,0.28509632,0.30337375,0.3398387,0.2872956,0.3839585,0.3830905,0.38013,0.9194697,0.33658502,0.9384182,0.3529101,0.9282392,0.8205595,0.45420164,0.88302755,0.6893792,0.71312606,0.665328,0.993998,0.78701615,1.019253,0.80039835,0.48682415,0.8303633,0.13642532,0.89077127,0.12022326,0.8604912,0.10455793,0.8587749,0.15538755,0.8354224,0.14116205,0.8400314,0.18726017,0.6723334,0.24029738,0.51392716,0.28313246,0.26251027,0.38239992,0.49189982,0.35926634,0.89765877,0.31336838,0.9192887,0.30315912,0.93477184,0.82086796,0.41317564,0.77514154,0.39523253,0.73045987,0.48025316,0.84784347,0.5572104,0.87742245,0.6525608,0.91484374,0.72793627,0.67565024,0.77784437,0.9723182,0.7696337,0.44603172,0.7974458,0.12915558,0.8678758,0.11576745,0.87325937,0.095596895,0.8362795,0.1227257,0.88932824,0.2049109,0.8794678,0.09990238,0.7325561,0.13171342,0.7010565,0.19428936,0.64218295,0.22262993,0.5668012,0.24012333,0.47493124,0.25808018,0.36947685,0.28025505,0.22209531,0.35099363,0.20816088,0.3959996,0.31096038,0.42006066,0.7548212,0.36786973,0.9059211,0.82149017,0.37249053,0.8733851,0.6142801,0.7216755,0.59258616,0.6962464,0.7340659,0.9545672,0.7479695,0.039846003,0.7454215,0.0706412,0.745618,0.14354782,0.9084484,0.21659145,0.8795565,0.20664567,0.876316,0.17356203,0.8614421,0.19949794,0.6109961,0.23888418,0.43478018,0.27590188,0.18201256,0.38764995,0.42231292,0.3232206,0.8996445,0.350004,0.9094449,0.2626592,0.94234025,0.25361505,0.94478023,0.27609164,0.94276375,0.27635702,0.93333185,0.30888554,0.92650914,0.8224908,0.33195662,0.7707547,0.31498438,0.726369,0.40645424,0.8470397,0.47494054,0.8706365,0.5744108,0.89766645,0.66224134,0.940339,0.72299385,0.5876003,0.85790575,0.655066,0.8243456,0.4999789,0.85188174,0.15374178,0.6583288,0.20315903,0.5789169,0.22445136,0.4942851,0.23649046,0.39472556,0.25050107,0.28970248,0.26889545,0.1422564,0.3770157,0.1322842,0.41775966,0.24504325,0.8239912,0.2914059,0.86907184,0.5342185,0.7246051,0.5162777,0.7153263,0.64987767,0.7099234,0.6850091,0.92909133,0.6954125,0.011705842,0.7352587,0.0020890192,0.7662393,0.4076269,0.724994,0.16157696,0.9199486,0.17185542,0.9202498,0.20851976,0.9028299,0.15837461,0.8707802,0.2054437,0.546011,0.23283681,0.35604805,0.25639617,0.10308963,0.39542955,0.351829,0.38356,0.5397457,0.3959546,0.6771858,0.3866856,0.60994774,0.327372,0.9123534,0.28169328,0.90794176,0.2617978,0.9159303,0.22494194,0.9403597,0.8262062,0.25068322,0.76189876,0.23490636,0.71680844,0.3350131,0.8491803,0.39528048,0.86860144,0.49497387,0.8883383,0.59003794,0.7189672,0.6133101,0.92031527,0.6656936,0.6939259,0.7691926,1.0030916,0.72869766,0.7149812,0.7037196,0.43458605,0.8044536,0.40316474,0.7448584,0.15411791,0.8934298,0.14409631,0.9023117,0.19948873,0.9192374,0.23258546,0.89324296,0.19931342,0.8829355,0.1677765,0.6085763,0.20643434,0.5122849,0.22140096,0.41831866,0.22765638,0.31863615,0.23506218,0.21352899,0.23003425,0.06571498,0.4697102,0.06994735,0.45671684,0.18964238,0.38312566,0.4821517,0.28140977,0.9010872,0.2205838,0.9355509,0.25420392,0.9139817,0.2829442,0.9123806,0.82953995,0.20964654,0.8691423,0.4565053,0.72102094,0.42659163,0.72251856,0.5755899,0.91359663,0.63411325,0.97410107,0.6961486,0.37838843,0.61276746,0.09861616,0.7257828,0.12927498,0.6952243,0.20613039,0.47770053,0.22051457,0.2824815,0.15845968,0.036823973,0.40848404,0.2961582,0.38642603,0.42249554,0.3236786,0.90181774,0.24023741,0.9299147,0.22631797,0.926111,0.7797758,0.16995642,0.6987512,0.26678047,0.8549764,0.31700122,0.8707031,0.41866988,0.88469285,0.51403046,0.7240294,0.5372222,0.90862614,0.6007991,0.72742605,0.40328735,0.7314122,0.55403,0.38675377,0.6804997,0.06040067,0.7394608,0.18578342,0.8918899,0.17542432,0.5542337,0.2044411,0.44219476,0.21275958,0.34536695,0.21072568,0.24773009,0.20035607,0.1430239,0.7367424,0.05022887,0.5221014,0.15630889,0.42852125,0.24680768,0.39643967,0.34887433,0.37619823,0.5365642,0.27796844,0.89708257,0.28030416,0.90066564,0.87338126,0.38136727,0.7242763,0.49972084,0.9051932,0.56576633,0.725572,0.62842274,0.9534835,0.65215254,0.6992627,0.26296425,0.6006683,0.15814152,0.7316742,0.47733963,0.022647364,0.7329271,0.09707912,0.7190199,0.12663382,0.6895207,0.1507213,0.65369403,0.20128646,0.40698892,0.19721995,0.21476683,0.21901277,0.90698874,0.85984546,0.1733515,0.6650467,0.20531285,0.8671396,0.23960212,0.877378,0.34454972,0.7109925,0.34566605,0.8860152,0.44075093,0.90324473,0.53024584,0.66168624,0.20048526,0.71768016,0.3315375,0.72014856,0.40933836,0.72392416,0.46290368,0.38760626,0.35190713,0.37798128,0.44069678,0.18572791,0.91264224,0.1767126,0.92175514,0.22759733,0.8971156,0.17749402,0.49656904,0.19660565,0.37332794,0.19637565,0.27821976,0.17835855,0.18437243,0.14423707,0.09959388,1.120868,0.037678167,0.97361374,0.061942983,0.60319483,0.1616428,0.4777652,0.19074252,0.2511641,0.8980028,0.79776704,0.12770903,0.8830383,0.30823648,0.9027065,0.49547347,0.940197,0.5997641,0.99055505,0.70891833,1.0134751,0.7287643,0.6684639,0.22824666,0.6855686,0.2572325,0.7023461,0.3058412,0.71291363,0.3566494,0.4530578,0.18988124,0.024340479,0.7262165,0.06049446,0.7322935,0.10615084,0.6875897,0.14752346,0.6492876,0.16448535,0.6051896,0.1901878,0.3412431,0.1518211,0.15799889,0.060376346,0.09549808,0.7963034,0.086349756,0.4124586,0.28243908,0.8909239,0.2725429,0.69793415,0.29217616,0.8923864,0.36995867,0.90348446,0.4614069,0.5812108,0.1680985,0.6169653,0.18082921,0.40869692,0.26411596,0.5180519,0.15466207,0.17386448,0.43639725,0.18171889,0.3108757,0.16728054,0.21922782,0.11514859,0.13813944,0.4328936,0.23768297,0.8928435,0.17874672,0.9019443,0.23774533,0.6762424,0.240712,0.9055772,0.428026,0.9342299,0.556529,0.9663038,0.6716173,0.9934339,0.70346105,1.0148032,0.7237499,0.543087,0.16565736,0.6456228,0.20294578,0.4636531,0.19902518,0.5066303,0.17211679,0.04425102,0.71032476,0.1470029,0.61795956,0.16110814,0.6019808,0.17199329,0.5520996,0.17077188,0.28251737,0.056724157,0.11606196,1.0290993,0.069496475,0.031415872,0.07017061,0.91177213,0.07733829,0.5601574,0.16579899,0.8744266,0.12511595,0.8809192,0.1602133,0.9055455,0.30196273,0.9090684,0.39535284,0.93193865,0.5107813,0.16420986,0.37993538,0.15681028,0.25665724,0.11739838,0.1756522,0.6305673,0.18948299,0.9205624,0.20671281,0.914134,0.3634692,0.9496427,0.6246412,0.9696953,0.66739136,0.00466474,0.6968733,0.0010359646,0.70697594,0.1295646,0.5991937,0.16843033,0.5503728,0.17396149,0.495718,0.13924164,0.2340366,0.049634315,0.12772693,0.98799556,0.05256421,0.9244236,0.060714968,0.87569815,0.08405379,0.86308634,0.11680955,0.8626927,0.14038087,0.9094556,0.18796468,0.9328412,0.19234224,0.9304708,0.23694636,0.9210572,0.33253777,0.9337046,0.4526049,0.06918667,0.64846075,0.1477781,0.3304975,0.11758165,0.21568888,0.06517966,0.15940702,0.024783935,0.06399959,0.022717228,0.062015295,0.85049397,0.13513921,0.9302535,0.30283427,0.93956906,0.57021624,0.9532609,0.6219051,0.9878628,0.67414516,0.009285603,0.6562987,0.1595816,0.5208753,0.1703323,0.49536115,0.17023937,0.43694377,0.0917953,0.20290676,0.037925575,0.1406532,0.02408451,0.15310602,0.041587517,0.08715959,0.89762306,0.05502879,0.84465134,0.07873442,0.8398113,0.106518894,0.9545424,0.18966609,0.94229674,0.27479863,0.9411439,0.39736885,0.07982181,0.48698,0.12326829,0.2905175,0.05319361,0.20305538,0.029864682,0.1829566,0.02099512,0.06611339,0.8797976,0.14915228,0.9701077,0.2126197,0.9579313,0.24911647,0.93548506,0.5114485,0.9432408,0.56901294,0.95797443,0.5893675,0.028216114,0.5279245,0.16657166,0.4380747,0.16054389,0.381997,1.0247798,0.15661404,1.0298647,0.1829566,0.9966049,0.19159634,0.98930275,0.17481327,1.0083582,0.16438743,0.01768047,0.09513326,0.020187318,0.07552176,0.8776393,0.03989821,0.84095573,0.053258877,0.85897744,0.03842187,0.98452926,0.05211184,0.8333796,0.123133555,0.9062468,0.16944145,0.9705882,0.1843482,0.9551114,0.34648752,0.1286795,0.47774857,0.09003194,0.26410693,0.014737048,0.11929629,0.79521275,0.08756951,0.93098885,0.16544151,0.93716276,0.45458943,0.93913555,0.5117389,0.99783933,0.640623,0.15202224,0.41760615,0.15690833,0.38467845,0.14421701,0.3340978,0.800063,0.10358047,0.895252,0.14458385,0.99614376,0.23219824,0.9772991,0.30260828,0.98118126,0.52992237,0.050173834,0.2562365,0.00814436,0.22405156,0.0029977264,0.20809662,0.008653378,0.16413386,0.9909069,0.1349066,1.0072939,0.124720424,0.9821185,0.108832315,1.0086749,0.089490056,0.9722822,0.08089945,1.0013709,0.06843192,0.9312191,0.047337655,0.9835572,0.054165266,0.7704978,0.04829276,0.77006364,0.07060939,0.9456291,0.40174264,0.9407612,0.45627543,0.949846,0.4861468,0.14078286,0.33831108,0.120153844,0.29564327,0.96196365,0.15118504,0.92791,0.059126325,0.7059092,0.0602891,0.79371023,0.1124961,1.0095878,0.27026922,0.006635111,0.5502757,0.010118984,0.27173066,0.9548465,0.1254378,0.94234973,0.10155833,0.9148942,0.07291348,0.9290308,0.14041883,0.9581758,0.35108936,0.122613296,0.33127278,0.11721027,0.30114627,0.08795343,0.2705322,0.7206092,0.05729463,0.84774965,0.12397552,0.90906703,0.123698026,0.8884691,0.09684041,0.7337785,0.061232284,0.9797741,0.3084783,0.9614298,0.35555312,0.96210706,0.3876406,0.108620495,0.36098602,0.08619282,0.27736655,0.04972796,0.2633428,0.74697006,0.068518676,0.6851326,0.0792802,0.6635486,0.087631434,0.7127924,0.09624627,0.71703374,0.10972002,0.72064126,0.11600459,0.8664504,0.114961214,0.7584554,0.084766865,1.0020937,0.28290224,0.9824674,0.31430203,0.97984743,0.4072153,0.065994516,0.29359323,0.049602073,0.27068478,0.010874764,0.2771328,0.6832024,0.07649769,0.7022272,0.11630611,0.773759,0.11052422,0.76089746,0.09917171,0.67210484,0.095783524,0.6872533,0.10680348,1.0043076,0.2893865,0.9997717,0.31875882,0.012433548,0.28406644,0.65457666,0.09493222,0.6728004,0.08640602,0.7005047,0.082337916,1.0057929,0.46996826,0.04141562,0.35654837,0.7152771,0.09342489,0.013314394,0.30861285,0.7224884,0.104023114,0.685135,0.090783246,0.6554768,0.10039595,0.66094816,0.09457934,0.67023504,0.09762179,0.69851214,0.099748686,0.7310855,0.11061789,1.008975,0.3731629,0.7068112,0.1115801,0.66103554,0.10672435,0.67454684,0.114199296,0.6775614,0.1002444,0.68844455,0.107599385,0.68508065,0.12022652,0.6887903,0.121841475,0.002489133,0.40105778,0.6950637,0.11515421,0.68191314,0.10423266,0.6951387,0.120165974,0.6667152,0.111996174,0.67839,0.11883555,0.6591545,0.096556745,0.6551869,0.1005799,0.68892753,0.110719785,0.6754353,0.10084474,0.69209236,0.11888718,0.6695055,0.11244151,0.65978134,0.10301311,0.6838405,0.10652727,0.66625226,0.10904685,0.67627454,0.115739666,0.66736096,0.0986426,0.6610199,0.099692166,0.68947494,0.1137353,0.6882302,0.117041595,0.68340147,0.11822277,0.6628245,0.10603843,0.69022506,0.1092011,0.67939335,0.10008923,0.6674889,0.09749396,0.6669351,0.10325063,0.68748736,0.11503552,0.6773752,0.11130737]),
+ vertexCount: 823
});
diff --git a/src/meshes/torus.ts b/src/meshes/torus.ts
index b979476..5cf41f7 100644
--- a/src/meshes/torus.ts
+++ b/src/meshes/torus.ts
@@ -1,28 +1,12 @@
-
import { Mesh } from "../renderer/mesh";
// prettier-ignore
-const positions = new Float32Array([1.2393061,0.16315772,0,1.2165064,0,0.125,1.25,0,0,1.1153755,0.14684194,0.21650635,1.125,0,0.21650635,1,0,0.25,0.9914449,0.13052617,0.25,0.875,0,0.21650635,0.86751425,0.1142104,0.21650635,0.78349364,0,0.125,0.7435837,0.097894624,3.061617e-17,0.75,0,3.061617e-17,0.7435837,0.097894624,3.061617e-17,0.78349364,0,-0.125,0.75,0,3.061617e-17,0.77679074,0.10226642,-0.125,0.875,0,-0.21650635,0.86751425,0.1142104,-0.21650635,1,0,-0.25,0.9914449,0.13052617,-0.25,1.125,0,-0.21650635,1.1153755,0.14684194,-0.21650635,1.2165064,0,-0.125,1.206099,0.15878591,-0.125,1.2074072,0.32352373,0,1.206099,0.15878591,0.125,1.1750549,0.31485495,0.125,1.0866666,0.29117137,0.21650635,0.9659258,0.25881898,0.25,0.7567967,0.20278303,0.125,0.77679074,0.10226642,0.125,0.7244444,0.19411424,3.061617e-17,0.7567967,0.20278303,-0.125,0.9659258,0.25881898,-0.25,1.0866666,0.29117137,-0.21650635,1.1750549,0.31485495,-0.125,1.1239054,0.46553674,0.125,1.0393645,0.43051878,0.21650635,0.8083946,0.33484796,0.21650635,0.8451851,0.22646661,0.21650635,0.72385377,0.29983,0.125,0.69290966,0.28701252,3.061617e-17,0.7244444,0.19411424,3.061617e-17,0.69290966,0.28701252,3.061617e-17,0.72385377,0.29983,-0.125,0.8451851,0.22646661,-0.21650635,0.92387956,0.38268337,-0.25,1.0393645,0.43051878,-0.21650635,1.1239054,0.46553674,-0.125,1.1548494,0.47835422,0,1.0535253,0.6082533,0.125,0.9742785,0.5625001,0.21650635,0.8660253,0.5000001,0.25,0.92387956,0.38268337,0.25,0.6785253,0.3917469,0.125,0.64951897,0.3750001,3.061617e-17,0.6785253,0.3917469,-0.125,0.8083946,0.33484796,-0.21650635,0.8660253,0.5000001,-0.25,0.9742785,0.5625001,-0.21650635,1.0535253,0.6082533,-0.125,0.9916918,0.76095164,0,1.0825317,0.6250001,0,0.89252263,0.6848565,0.21650635,0.79335344,0.6087613,0.25,0.75777215,0.43750012,0.21650635,0.6215874,0.4769606,0.125,0.64951897,0.3750001,3.061617e-17,0.59501505,0.45657098,3.061617e-17,0.6215874,0.4769606,-0.125,0.75777215,0.43750012,-0.21650635,0.69418424,0.53266615,-0.21650635,0.79335344,0.6087613,-0.25,0.89252263,0.6848565,-0.21650635,0.88388336,0.88388354,0,0.9651195,0.740562,0.125,0.8601998,0.8601999,0.125,0.79549503,0.79549515,0.21650635,0.7071067,0.7071068,0.25,0.69418424,0.53266615,0.21650635,0.6187184,0.6187185,0.21650635,0.5540136,0.5540137,0.125,0.59501505,0.45657098,3.061617e-17,0.5540136,0.5540137,-0.125,0.6187184,0.6187185,-0.21650635,0.7071067,0.7071068,-0.25,0.8601998,0.8601999,-0.125,0.9651195,0.740562,-0.125,0.76095194,0.99169147,0,0.6848568,0.89252234,0.21650635,0.60876155,0.7933532,0.25,0.4769608,0.62158716,0.125,0.53033006,0.5303301,3.061617e-17,0.45657116,0.5950149,3.061617e-17,0.53033006,0.5303301,3.061617e-17,0.4769608,0.62158716,-0.125,0.60876155,0.7933532,-0.25,0.6848568,0.89252234,-0.21650635,0.79549503,0.79549515,-0.21650635,0.7405623,0.96511924,-0.125,0.62499994,1.0825318,0,0.7405623,0.96511924,0.125,0.56249994,0.9742786,0.21650635,0.49999997,0.86602545,0.25,0.5326663,0.69418406,0.21650635,0.3917468,0.67852545,0.125,0.45657116,0.5950149,3.061617e-17,0.37499997,0.6495191,3.061617e-17,0.3917468,0.67852545,-0.125,0.5326663,0.69418406,-0.21650635,0.43749997,0.75777227,-0.21650635,0.49999997,0.86602545,-0.25,0.56249994,0.9742786,-0.21650635,0.6082531,1.0535254,-0.125,0.4655371,1.1239052,0.125,0.6082531,1.0535254,0.125,0.43051913,1.0393643,0.21650635,0.38268366,0.92387944,0.25,0.43749997,0.75777227,0.21650635,0.3348482,0.8083945,0.21650635,0.29983023,0.72385365,0.125,0.37499997,0.6495191,3.061617e-17,0.28701276,0.6929096,3.061617e-17,0.29983023,0.72385365,-0.125,0.38268366,0.92387944,-0.25,0.43051913,1.0393643,-0.21650635,0.4655371,1.1239052,-0.125,0.32352385,1.2074072,0,0.47835457,1.1548493,0,0.31485504,1.1750549,0.125,0.29117146,1.0866666,0.21650635,0.25881907,0.9659258,0.25,0.2027831,0.7567967,0.125,0.28701276,0.6929096,3.061617e-17,0.1941143,0.7244444,3.061617e-17,0.2027831,0.7567967,-0.125,0.3348482,0.8083945,-0.21650635,0.22646669,0.8451851,-0.21650635,0.25881907,0.9659258,-0.25,0.29117146,1.0866666,-0.21650635,0.31485504,1.1750549,-0.125,0.16315751,1.2393061,0,0.15878572,1.206099,0.125,0.130526,0.9914449,0.25,0.22646669,0.8451851,0.21650635,0.114210255,0.86751425,0.21650635,0.1022663,0.77679074,0.125,0.1941143,0.7244444,3.061617e-17,0.1022663,0.77679074,-0.125,0.130526,0.9914449,-0.25,0.14684176,1.1153755,-0.21650635,0.15878572,1.206099,-0.125,9.4372375e-8,1.25,0,9.1843674e-8,1.2165064,0.125,0.14684176,1.1153755,0.21650635,8.493514e-8,1.125,0.21650635,6.6060664e-8,0.875,0.21650635,5.9152125e-8,0.78349364,0.125,0.097894505,0.7435837,3.061617e-17,5.6623428e-8,0.75,3.061617e-17,0.097894505,0.7435837,3.061617e-17,5.9152125e-8,0.78349364,-0.125,0.114210255,0.86751425,-0.21650635,6.6060664e-8,0.875,-0.21650635,7.54979e-8,1,-0.25,8.493514e-8,1.125,-0.21650635,-0.16315791,1.239306,0,-0.15878612,1.2060989,0.125,-0.14684212,1.1153754,0.21650635,7.54979e-8,1,0.25,-0.13052633,0.9914448,0.25,-0.114210546,0.86751425,0.21650635,-0.10226655,0.77679074,0.125,5.6623428e-8,0.75,3.061617e-17,-0.10226655,0.77679074,-0.125,-0.13052633,0.9914448,-0.25,-0.14684212,1.1153754,-0.21650635,-0.15878612,1.2060989,-0.125,9.1843674e-8,1.2165064,-0.125,-0.32352364,1.2074074,0,-0.29117128,1.0866666,0.21650635,-0.25881892,0.9659259,0.25,-0.22646657,0.84518516,0.21650635,-0.20278297,0.7567968,0.125,-0.09789475,0.7435836,3.061617e-17,-0.1941142,0.7244444,3.061617e-17,-0.09789475,0.7435836,3.061617e-17,-0.20278297,0.7567968,-0.125,-0.114210546,0.86751425,-0.21650635,-0.22646657,0.84518516,-0.21650635,-0.25881892,0.9659259,-0.25,-0.29117128,1.0866666,-0.21650635,-0.31485486,1.175055,-0.125,-0.4783544,1.1548494,0,-0.31485486,1.175055,0.125,-0.46553692,1.1239053,0.125,-0.43051895,1.0393645,0.21650635,-0.33484808,0.80839455,0.21650635,-0.2998301,0.7238537,0.125,-0.1941142,0.7244444,3.061617e-17,-0.28701264,0.6929096,3.061617e-17,-0.2998301,0.7238537,-0.125,-0.38268352,0.9238795,-0.25,-0.46553692,1.1239053,-0.125,-0.6249998,1.0825319,0,-0.5624998,0.9742787,0.21650635,-0.38268352,0.9238795,0.25,-0.49999985,0.8660255,0.25,-0.43749988,0.7577723,0.21650635,-0.3917467,0.67852545,0.125,-0.28701264,0.6929096,3.061617e-17,-0.37499988,0.64951915,3.061617e-17,-0.3917467,0.67852545,-0.125,-0.33484808,0.80839455,-0.21650635,-0.43749988,0.7577723,-0.21650635,-0.49999985,0.8660255,-0.25,-0.43051895,1.0393645,-0.21650635,-0.5624998,0.9742787,-0.21650635,-0.608253,1.0535256,-0.125,-0.76095176,0.99169165,0,-0.608253,1.0535256,0.125,-0.74056214,0.96511936,0.125,-0.6848566,0.89252245,0.21650635,-0.6087614,0.7933533,0.25,-0.53266627,0.6941842,0.21650635,-0.45657107,0.595015,3.061617e-17,-0.37499988,0.64951915,3.061617e-17,-0.45657107,0.595015,3.061617e-17,-0.53266627,0.6941842,-0.21650635,-0.6087614,0.7933533,-0.25,-0.6848566,0.89252245,-0.21650635,-0.74056214,0.96511936,-0.125,-0.8838837,0.88388324,0,-0.8602001,0.8601997,0.125,-0.70710695,0.7071066,0.25,-0.61871856,0.61871827,0.21650635,-0.47696072,0.6215873,0.125,-0.5540138,0.5540135,0.125,-0.5303302,0.53032994,3.061617e-17,-0.47696072,0.6215873,-0.125,-0.61871856,0.61871827,-0.21650635,-0.70710695,0.7071066,-0.25,-0.79549533,0.7954949,-0.21650635,-0.8602001,0.8601997,-0.125,-0.99169165,0.76095176,0,-0.96511936,0.74056214,0.125,-0.79549533,0.7954949,0.21650635,-0.89252245,0.6848566,0.21650635,-0.6941842,0.53266627,0.21650635,-0.6215873,0.47696072,0.125,-0.5303302,0.53032994,3.061617e-17,-0.595015,0.45657107,3.061617e-17,-0.5540138,0.5540135,-0.125,-0.6941842,0.53266627,-0.21650635,-0.7933533,0.6087614,-0.25,-0.96511936,0.74056214,-0.125,-1.0535252,0.6082535,0.125,-0.86602527,0.50000024,0.25,-0.7933533,0.6087614,0.25,-0.7577721,0.4375002,0.21650635,-0.67852527,0.391747,0.125,-0.595015,0.45657107,3.061617e-17,-0.64951897,0.37500018,3.061617e-17,-0.6215873,0.47696072,-0.125,-0.67852527,0.391747,-0.125,-0.86602527,0.50000024,-0.25,-0.89252245,0.6848566,-0.21650635,-0.97427845,0.56250024,-0.21650635,-1.0535252,0.6082535,-0.125,-1.1548494,0.47835436,0,-1.0825316,0.6250003,0,-1.1239053,0.4655369,0.125,-0.97427845,0.56250024,0.21650635,-1.0393645,0.43051893,0.21650635,-0.80839455,0.33484805,0.21650635,-0.7238537,0.29983008,0.125,-0.64951897,0.37500018,3.061617e-17,-0.7238537,0.29983008,-0.125,-0.7577721,0.4375002,-0.21650635,-0.80839455,0.33484805,-0.21650635,-0.9238795,0.3826835,-0.25,-1.1239053,0.4655369,-0.125,-1.175055,0.31485486,0.125,-1.0866666,0.29117128,0.21650635,-0.9238795,0.3826835,0.25,-0.84518516,0.22646657,0.21650635,-0.7567968,0.20278297,0.125,-0.6929096,0.2870126,3.061617e-17,-0.7244444,0.1941142,3.061617e-17,-0.6929096,0.2870126,3.061617e-17,-0.7567968,0.20278297,-0.125,-0.84518516,0.22646657,-0.21650635,-1.0866666,0.29117128,-0.21650635,-1.0393645,0.43051893,-0.21650635,-1.175055,0.31485486,-0.125,-1.239306,0.1631579,0,-1.2074074,0.32352364,0,-1.2060989,0.1587861,0.125,-1.1153754,0.1468421,0.21650635,-0.9659259,0.25881892,0.25,-0.9914448,0.13052632,0.25,-0.86751425,0.11421053,0.21650635,-0.77679074,0.10226654,0.125,-0.7244444,0.1941142,3.061617e-17,-0.7435836,0.09789474,3.061617e-17,-0.86751425,0.11421053,-0.21650635,-0.9914448,0.13052632,-0.25,-0.9659259,0.25881892,-0.25,-1.1153754,0.1468421,-0.21650635,-1.2060989,0.1587861,-0.125,-1.2165064,1.0635036e-7,0.125,-1.125,9.8350625e-8,0.21650635,-1,8.742278e-8,0.25,-0.875,7.649493e-8,0.21650635,-0.78349364,6.849519e-8,0.125,-0.7435836,0.09789474,3.061617e-17,-0.75,6.556708e-8,3.061617e-17,-0.77679074,0.10226654,-0.125,-0.875,7.649493e-8,-0.21650635,-1,8.742278e-8,-0.25,-1.125,9.8350625e-8,-0.21650635,-1.2165064,1.0635036e-7,-0.125,-1.239306,-0.1631579,0,-1.2165064,1.0635036e-7,0.125,-1.25,1.09278474e-7,0,-1.2060989,-0.1587861,0.125,-1.125,9.8350625e-8,0.21650635,-1.1153754,-0.1468421,0.21650635,-1,8.742278e-8,0.25,-0.9914448,-0.13052632,0.25,-0.875,7.649493e-8,0.21650635,-0.86751425,-0.11421053,0.21650635,-0.78349364,6.849519e-8,0.125,-0.77679074,-0.10226654,0.125,-0.75,6.556708e-8,3.061617e-17,-0.75,6.556708e-8,3.061617e-17,-0.77679074,-0.10226654,-0.125,-0.78349364,6.849519e-8,-0.125,-0.875,7.649493e-8,-0.21650635,-0.9914448,-0.13052632,-0.25,-1,8.742278e-8,-0.25,-1.1153754,-0.1468421,-0.21650635,-1.125,9.8350625e-8,-0.21650635,-1.2060989,-0.1587861,-0.125,-1.2165064,1.0635036e-7,-0.125,-1.175055,-0.31485486,0.125,-1.0866666,-0.29117128,0.21650635,-0.9659259,-0.25881892,0.25,-0.84518516,-0.22646657,0.21650635,-0.7567968,-0.20278297,0.125,-0.7435836,-0.09789474,3.061617e-17,-0.7244444,-0.1941142,3.061617e-17,-0.7435836,-0.09789474,3.061617e-17,-0.7567968,-0.20278297,-0.125,-0.86751425,-0.11421053,-0.21650635,-0.84518516,-0.22646657,-0.21650635,-0.9659259,-0.25881892,-0.25,-1.0866666,-0.29117128,-0.21650635,-1.2074074,-0.32352364,0,-1.1548496,-0.47835383,0,-1.1239055,-0.4655364,0.125,-0.9238797,-0.38268307,0.25,-0.80839473,-0.3348477,0.21650635,-0.7238538,-0.29982975,0.125,-0.7244444,-0.1941142,3.061617e-17,-0.6929098,-0.2870123,3.061617e-17,-0.80839473,-0.3348477,-0.21650635,-0.9238797,-0.38268307,-0.25,-1.1239055,-0.4655364,-0.125,-1.175055,-0.31485486,-0.125,-1.0825319,-0.62499976,0,-1.0535256,-0.60825294,0.125,-1.0393647,-0.43051845,0.21650635,-0.9742787,-0.5624998,0.21650635,-0.8660255,-0.49999982,0.25,-0.7577723,-0.43749985,0.21650635,-0.64951915,-0.37499988,3.061617e-17,-0.6929098,-0.2870123,3.061617e-17,-0.64951915,-0.37499988,3.061617e-17,-0.7238538,-0.29982975,-0.125,-0.67852545,-0.39174667,-0.125,-0.7577723,-0.43749985,-0.21650635,-0.9742787,-0.5624998,-0.21650635,-1.0393647,-0.43051845,-0.21650635,-1.0535256,-0.60825294,-0.125,-0.99169165,-0.76095176,0,-0.96511936,-0.74056214,0.125,-0.89252245,-0.6848566,0.21650635,-0.6941842,-0.53266627,0.21650635,-0.67852545,-0.39174667,0.125,-0.6215873,-0.47696072,0.125,-0.595015,-0.45657107,3.061617e-17,-0.6941842,-0.53266627,-0.21650635,-0.8660255,-0.49999982,-0.25,-0.7933533,-0.6087614,-0.25,-0.96511936,-0.74056214,-0.125,-0.8838837,-0.88388324,0,-0.79549533,-0.7954949,0.21650635,-0.7933533,-0.6087614,0.25,-0.70710695,-0.7071066,0.25,-0.61871856,-0.61871827,0.21650635,-0.5540138,-0.5540135,0.125,-0.595015,-0.45657107,3.061617e-17,-0.5303302,-0.53032994,3.061617e-17,-0.6215873,-0.47696072,-0.125,-0.5540138,-0.5540135,-0.125,-0.70710695,-0.7071066,-0.25,-0.89252245,-0.6848566,-0.21650635,-0.79549533,-0.7954949,-0.21650635,-0.8602001,-0.8601997,-0.125,-0.7405627,-0.965119,0.125,-0.8602001,-0.8601997,0.125,-0.6848571,-0.89252216,0.21650635,-0.5326666,-0.6941839,0.21650635,-0.47696105,-0.62158704,0.125,-0.5303302,-0.53032994,3.061617e-17,-0.4565714,-0.59501475,3.061617e-17,-0.47696105,-0.62158704,-0.125,-0.61871856,-0.61871827,-0.21650635,-0.5326666,-0.6941839,-0.21650635,-0.60876185,-0.793353,-0.25,-0.6848571,-0.89252216,-0.21650635,-0.7405627,-0.965119,-0.125,-0.7609523,-0.9916913,0,-0.608253,-1.0535256,0.125,-0.5624998,-0.9742787,0.21650635,-0.60876185,-0.793353,0.25,-0.49999985,-0.8660255,0.25,-0.3917467,-0.67852545,0.125,-0.4565714,-0.59501475,3.061617e-17,-0.37499988,-0.64951915,3.061617e-17,-0.3917467,-0.67852545,-0.125,-0.43749988,-0.7577723,-0.21650635,-0.5624998,-0.9742787,-0.21650635,-0.608253,-1.0535256,-0.125,-0.4783544,-1.1548494,0,-0.6249998,-1.0825319,0,-0.46553692,-1.1239053,0.125,-0.43051895,-1.0393645,0.21650635,-0.38268352,-0.9238795,0.25,-0.43749988,-0.7577723,0.21650635,-0.33484808,-0.80839455,0.21650635,-0.2998301,-0.7238537,0.125,-0.37499988,-0.64951915,3.061617e-17,-0.28701264,-0.6929096,3.061617e-17,-0.2998301,-0.7238537,-0.125,-0.38268352,-0.9238795,-0.25,-0.49999985,-0.8660255,-0.25,-0.46553692,-1.1239053,-0.125,-0.3235242,-1.2074072,0,-0.31485543,-1.1750548,0.125,-0.2911718,-1.0866665,0.21650635,-0.25881937,-0.96592575,0.25,-0.20278333,-0.75679666,0.125,-0.28701264,-0.6929096,3.061617e-17,-0.19411454,-0.7244443,3.061617e-17,-0.20278333,-0.75679666,-0.125,-0.33484808,-0.80839455,-0.21650635,-0.22646695,-0.84518504,-0.21650635,-0.25881937,-0.96592575,-0.25,-0.43051895,-1.0393645,-0.21650635,-0.31485543,-1.1750548,-0.125,-0.16315849,-1.239306,0,-0.14684264,-1.1153754,0.21650635,-0.1305268,-0.99144477,0.25,-0.22646695,-0.84518504,0.21650635,-0.102266915,-0.7767907,0.125,-0.19411454,-0.7244443,3.061617e-17,-0.0978951,-0.74358356,3.061617e-17,-0.102266915,-0.7767907,-0.125,-0.1305268,-0.99144477,-0.25,-0.2911718,-1.0866665,-0.21650635,-0.14684264,-1.1153754,-0.21650635,-0.15878668,-1.2060989,-0.125,9.4372375e-8,-1.25,0,-0.15878668,-1.2060989,0.125,9.1843674e-8,-1.2165064,0.125,7.54979e-8,-1,0.25,6.6060664e-8,-0.875,0.21650635,-0.11421095,-0.8675142,0.21650635,5.6623428e-8,-0.75,3.061617e-17,-0.0978951,-0.74358356,3.061617e-17,5.6623428e-8,-0.75,3.061617e-17,5.9152125e-8,-0.78349364,-0.125,-0.11421095,-0.8675142,-0.21650635,6.6060664e-8,-0.875,-0.21650635,7.54979e-8,-1,-0.25,8.493514e-8,-1.125,-0.21650635,9.1843674e-8,-1.2165064,-0.125,0.15878572,-1.206099,0.125,8.493514e-8,-1.125,0.21650635,0.14684176,-1.1153755,0.21650635,0.130526,-0.9914449,0.25,0.114210255,-0.86751425,0.21650635,5.9152125e-8,-0.78349364,0.125,0.1022663,-0.77679074,0.125,0.097894505,-0.7435837,3.061617e-17,0.114210255,-0.86751425,-0.21650635,0.130526,-0.9914449,-0.25,0.14684176,-1.1153755,-0.21650635,0.15878572,-1.206099,-0.125,0.32352325,-1.2074075,0,0.16315751,-1.2393061,0,0.31485447,-1.175055,0.125,0.29117092,-1.0866667,0.21650635,0.2588186,-0.96592593,0.25,0.22646627,-0.84518516,0.21650635,0.19411394,-0.72444445,3.061617e-17,0.097894505,-0.7435837,3.061617e-17,0.19411394,-0.72444445,3.061617e-17,0.1022663,-0.77679074,-0.125,0.20278272,-0.75679684,-0.125,0.2588186,-0.96592593,-0.25,0.29117092,-1.0866667,-0.21650635,0.31485447,-1.175055,-0.125,0.47835457,-1.1548493,0,0.4655371,-1.1239052,0.125,0.43051913,-1.0393643,0.21650635,0.38268366,-0.92387944,0.25,0.3348482,-0.8083945,0.21650635,0.20278272,-0.75679684,0.125,0.29983023,-0.72385365,0.125,0.28701276,-0.6929096,3.061617e-17,0.29983023,-0.72385365,-0.125,0.22646627,-0.84518516,-0.21650635,0.3348482,-0.8083945,-0.21650635,0.43051913,-1.0393643,-0.21650635,0.4655371,-1.1239052,-0.125,0.62499994,-1.0825318,0,0.6082531,-1.0535254,0.125,0.49999997,-0.86602545,0.25,0.43749997,-0.75777227,0.21650635,0.3917468,-0.67852545,0.125,0.28701276,-0.6929096,3.061617e-17,0.37499997,-0.6495191,3.061617e-17,0.3917468,-0.67852545,-0.125,0.43749997,-0.75777227,-0.21650635,0.38268366,-0.92387944,-0.25,0.49999997,-0.86602545,-0.25,0.56249994,-0.9742786,-0.21650635,0.74056184,-0.9651196,0.125,0.56249994,-0.9742786,0.21650635,0.68485636,-0.8925227,0.21650635,0.6087612,-0.7933535,0.25,0.532666,-0.6941843,0.21650635,0.4769605,-0.6215874,0.125,0.37499997,-0.6495191,3.061617e-17,0.4565709,-0.5950151,3.061617e-17,0.4769605,-0.6215874,-0.125,0.532666,-0.6941843,-0.21650635,0.6087612,-0.7933535,-0.25,0.74056184,-0.9651196,-0.125,0.6082531,-1.0535254,-0.125,0.7609515,-0.9916919,0,0.86019945,-0.8602004,0.125,0.7071064,-0.7071072,0.25,0.6187181,-0.6187188,0.21650635,0.5540134,-0.55401397,0.125,0.4565709,-0.5950151,3.061617e-17,0.5303298,-0.5303304,3.061617e-17,0.5540134,-0.55401397,-0.125,0.6187181,-0.6187188,-0.21650635,0.7071064,-0.7071072,-0.25,0.68485636,-0.8925227,-0.21650635,0.86019945,-0.8602004,-0.125,0.883883,-0.88388395,0,0.9651195,-0.740562,0.125,0.79549474,-0.79549557,0.21650635,0.79335344,-0.6087613,0.25,0.69418424,-0.53266615,0.21650635,0.6215874,-0.4769606,0.125,0.5303298,-0.5303304,3.061617e-17,0.59501505,-0.45657098,3.061617e-17,0.69418424,-0.53266615,-0.21650635,0.79335344,-0.6087613,-0.25,0.79549474,-0.79549557,-0.21650635,0.89252263,-0.6848565,-0.21650635,0.9651195,-0.740562,-0.125,1.0825317,-0.6250001,0,0.9916918,-0.76095164,0,1.0535253,-0.6082533,0.125,0.89252263,-0.6848565,0.21650635,0.9742785,-0.5625001,0.21650635,0.8660253,-0.5000001,0.25,0.75777215,-0.43750012,0.21650635,0.6785253,-0.3917469,0.125,0.59501505,-0.45657098,3.061617e-17,0.64951897,-0.3750001,3.061617e-17,0.6215874,-0.4769606,-0.125,0.75777215,-0.43750012,-0.21650635,0.8660253,-0.5000001,-0.25,1.0535253,-0.6082533,-0.125,1.1548493,-0.47835475,0,1.1239052,-0.46553728,0.125,0.9238794,-0.3826838,0.25,0.80839443,-0.33484834,0.21650635,0.72385365,-0.29983035,0.125,0.64951897,-0.3750001,3.061617e-17,0.69290954,-0.28701288,3.061617e-17,0.6785253,-0.3917469,-0.125,0.72385365,-0.29983035,-0.125,0.80839443,-0.33484834,-0.21650635,0.9238794,-0.3826838,-0.25,0.9742785,-0.5625001,-0.21650635,1.0393643,-0.43051928,-0.21650635,1.1239052,-0.46553728,-0.125,1.2074074,-0.32352346,0,1.175055,-0.31485468,0.125,1.0393643,-0.43051928,0.21650635,1.0866666,-0.29117113,0.21650635,0.9659259,-0.25881878,0.25,0.84518516,-0.22646643,0.21650635,0.7567968,-0.20278287,0.125,0.69290954,-0.28701288,3.061617e-17,0.7244444,-0.19411409,3.061617e-17,0.84518516,-0.22646643,-0.21650635,0.9659259,-0.25881878,-0.25,1.0866666,-0.29117113,-0.21650635,1.175055,-0.31485468,-0.125,1.206099,-0.15878591,0.125,1.1153755,-0.14684194,0.21650635,0.9914449,-0.13052617,0.25,0.86751425,-0.1142104,0.21650635,0.7435837,-0.097894624,3.061617e-17,0.7244444,-0.19411409,3.061617e-17,0.7435837,-0.097894624,3.061617e-17,0.7567968,-0.20278287,-0.125,0.77679074,-0.10226642,-0.125,0.9914449,-0.13052617,-0.25,1.1153755,-0.14684194,-0.21650635,1.206099,-0.15878591,-0.125,1.2393061,-0.16315772,0,0.77679074,-0.10226642,0.125,0.86751425,-0.1142104,-0.21650635,-1.25,1.09278474e-7,0,-0.75,6.556708e-8,3.061617e-17,-0.78349364,6.849519e-8,-0.125]);
-
-// prettier-ignore
-const colors = new Uint8Array([0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255]);
-
-// prettier-ignore
-const uvs = new Float32Array([0.5208333,0.5,0.5,0.5833333,0.5,0.5,0.5208333,0.6666667,0.5,0.6666667,0.5,0.75,0.5208333,0.75,0.5,0.8333333,0.5208333,0.8333333,0.5,0.9166667,0.5208333,1,0.5,1,0.5208333,2.220446e-16,0.5,0.083333336,0.5,2.220446e-16,0.5208333,0.083333336,0.5,0.16666667,0.5208333,0.16666667,0.5,0.25,0.5208333,0.25,0.5,0.33333334,0.5208333,0.33333334,0.5,0.41666666,0.5208333,0.41666666,0.5416667,0.5,0.5208333,0.5833333,0.5416667,0.5833333,0.5416667,0.6666667,0.5416667,0.75,0.5416667,0.9166667,0.5208333,0.9166667,0.5416667,2.220446e-16,0.5416667,0.083333336,0.5416667,0.25,0.5416667,0.33333334,0.5416667,0.41666666,0.5625,0.5833333,0.5625,0.6666667,0.5625,0.8333333,0.5416667,0.8333333,0.5625,0.9166667,0.5625,1,0.5416667,1,0.5625,2.220446e-16,0.5625,0.083333336,0.5416667,0.16666667,0.5625,0.25,0.5625,0.33333334,0.5625,0.41666666,0.5625,0.5,0.5833333,0.5833333,0.5833333,0.6666667,0.5833333,0.75,0.5625,0.75,0.5833333,0.9166667,0.5833333,2.220446e-16,0.5833333,0.083333336,0.5625,0.16666667,0.5833333,0.25,0.5833333,0.33333334,0.5833333,0.41666666,0.6041667,0.5,0.5833333,0.5,0.6041667,0.6666667,0.6041667,0.75,0.5833333,0.8333333,0.6041667,0.9166667,0.5833333,1,0.6041667,2.220446e-16,0.6041667,0.083333336,0.5833333,0.16666667,0.6041667,0.16666667,0.6041667,0.25,0.6041667,0.33333334,0.625,0.5,0.6041667,0.5833333,0.625,0.5833333,0.625,0.6666667,0.625,0.75,0.6041667,0.8333333,0.625,0.8333333,0.625,0.9166667,0.6041667,1,0.625,0.083333336,0.625,0.16666667,0.625,0.25,0.625,0.41666666,0.6041667,0.41666666,0.6458333,0.5,0.6458333,0.6666667,0.6458333,0.75,0.6458333,0.9166667,0.625,1,0.6458333,2.220446e-16,0.625,2.220446e-16,0.6458333,0.083333336,0.6458333,0.25,0.6458333,0.33333334,0.625,0.33333334,0.6458333,0.41666666,0.6666667,0.5,0.6458333,0.5833333,0.6666667,0.6666667,0.6666667,0.75,0.6458333,0.8333333,0.6666667,0.9166667,0.6458333,1,0.6666667,2.220446e-16,0.6666667,0.083333336,0.6458333,0.16666667,0.6666667,0.16666667,0.6666667,0.25,0.6666667,0.33333334,0.6666667,0.41666666,0.6875,0.5833333,0.6666667,0.5833333,0.6875,0.6666667,0.6875,0.75,0.6666667,0.8333333,0.6875,0.8333333,0.6875,0.9166667,0.6666667,1,0.6875,2.220446e-16,0.6875,0.083333336,0.6875,0.25,0.6875,0.33333334,0.6875,0.41666666,0.7083333,0.5,0.6875,0.5,0.7083333,0.5833333,0.7083333,0.6666667,0.7083333,0.75,0.7083333,0.9166667,0.6875,1,0.7083333,2.220446e-16,0.7083333,0.083333336,0.6875,0.16666667,0.7083333,0.16666667,0.7083333,0.25,0.7083333,0.33333334,0.7083333,0.41666666,0.7291667,0.5,0.7291667,0.5833333,0.7291667,0.75,0.7083333,0.8333333,0.7291667,0.8333333,0.7291667,0.9166667,0.7083333,1,0.7291667,0.083333336,0.7291667,0.25,0.7291667,0.33333334,0.7291667,0.41666666,0.75,0.5,0.75,0.5833333,0.7291667,0.6666667,0.75,0.6666667,0.75,0.8333333,0.75,0.9166667,0.7291667,1,0.75,2.220446e-16,0.7291667,2.220446e-16,0.75,0.083333336,0.7291667,0.16666667,0.75,0.16666667,0.75,0.25,0.75,0.33333334,0.7708333,0.5,0.7708333,0.5833333,0.7708333,0.6666667,0.75,0.75,0.7708333,0.75,0.7708333,0.8333333,0.7708333,0.9166667,0.75,1,0.7708333,0.083333336,0.7708333,0.25,0.7708333,0.33333334,0.7708333,0.41666666,0.75,0.41666666,0.7916667,0.5,0.7916667,0.6666667,0.7916667,0.75,0.7916667,0.8333333,0.7916667,0.9166667,0.7708333,1,0.7916667,2.220446e-16,0.7708333,2.220446e-16,0.7916667,0.083333336,0.7708333,0.16666667,0.7916667,0.16666667,0.7916667,0.25,0.7916667,0.33333334,0.7916667,0.41666666,0.8125,0.5,0.7916667,0.5833333,0.8125,0.5833333,0.8125,0.6666667,0.8125,0.8333333,0.8125,0.9166667,0.7916667,1,0.8125,2.220446e-16,0.8125,0.083333336,0.8125,0.25,0.8125,0.41666666,0.8333333,0.5,0.8333333,0.6666667,0.8125,0.75,0.8333333,0.75,0.8333333,0.8333333,0.8333333,0.9166667,0.8125,1,0.8333333,2.220446e-16,0.8333333,0.083333336,0.8125,0.16666667,0.8333333,0.16666667,0.8333333,0.25,0.8125,0.33333334,0.8333333,0.33333334,0.8333333,0.41666666,0.8541667,0.5,0.8333333,0.5833333,0.8541667,0.5833333,0.8541667,0.6666667,0.8541667,0.75,0.8541667,0.8333333,0.8541667,1,0.8333333,1,0.8541667,2.220446e-16,0.8541667,0.16666667,0.8541667,0.25,0.8541667,0.33333334,0.8541667,0.41666666,0.875,0.5,0.875,0.5833333,0.875,0.75,0.875,0.8333333,0.8541667,0.9166667,0.875,0.9166667,0.875,2.220446e-16,0.8541667,0.083333336,0.875,0.16666667,0.875,0.25,0.875,0.33333334,0.875,0.41666666,0.8958333,0.5,0.8958333,0.5833333,0.875,0.6666667,0.8958333,0.6666667,0.8958333,0.8333333,0.8958333,0.9166667,0.875,1,0.8958333,2.220446e-16,0.875,0.083333336,0.8958333,0.16666667,0.8958333,0.25,0.8958333,0.41666666,0.9166667,0.5833333,0.9166667,0.75,0.8958333,0.75,0.9166667,0.8333333,0.9166667,0.9166667,0.8958333,1,0.9166667,2.220446e-16,0.8958333,0.083333336,0.9166667,0.083333336,0.9166667,0.25,0.8958333,0.33333334,0.9166667,0.33333334,0.9166667,0.41666666,0.9375,0.5,0.9166667,0.5,0.9375,0.5833333,0.9166667,0.6666667,0.9375,0.6666667,0.9375,0.8333333,0.9375,0.9166667,0.9166667,1,0.9375,0.083333336,0.9166667,0.16666667,0.9375,0.16666667,0.9375,0.25,0.9375,0.41666666,0.9583333,0.5833333,0.9583333,0.6666667,0.9375,0.75,0.9583333,0.8333333,0.9583333,0.9166667,0.9375,1,0.9583333,2.220446e-16,0.9375,2.220446e-16,0.9583333,0.083333336,0.9583333,0.16666667,0.9583333,0.33333334,0.9375,0.33333334,0.9583333,0.41666666,0.9791667,0.5,0.9583333,0.5,0.9791667,0.5833333,0.9791667,0.6666667,0.9583333,0.75,0.9791667,0.75,0.9791667,0.8333333,0.9791667,0.9166667,0.9583333,1,0.9791667,2.220446e-16,0.9791667,0.16666667,0.9791667,0.25,0.9583333,0.25,0.9791667,0.33333334,0.9791667,0.41666666,1,0.5833333,1,0.6666667,1,0.75,1,0.8333333,1,0.9166667,0.9791667,1,1,2.220446e-16,0.9791667,0.083333336,1,0.16666667,1,0.25,1,0.33333334,1,0.41666666,0.020833334,0.5,8.881784e-16,0.5833333,8.881784e-16,0.5,0.020833334,0.5833333,8.881784e-16,0.6666667,0.020833334,0.6666667,8.881784e-16,0.75,0.020833334,0.75,8.881784e-16,0.8333333,0.020833334,0.8333333,8.881784e-16,0.9166667,0.020833334,0.9166667,8.881784e-16,1,8.881784e-16,2.220446e-16,0.020833334,0.083333336,8.881784e-16,0.083333336,8.881784e-16,0.16666667,0.020833334,0.25,8.881784e-16,0.25,0.020833334,0.33333334,8.881784e-16,0.33333334,0.020833334,0.41666666,8.881784e-16,0.41666666,0.041666668,0.5833333,0.041666668,0.6666667,0.041666668,0.75,0.041666668,0.8333333,0.041666668,0.9166667,0.020833334,1,0.041666668,2.220446e-16,0.020833334,2.220446e-16,0.041666668,0.083333336,0.020833334,0.16666667,0.041666668,0.16666667,0.041666668,0.25,0.041666668,0.33333334,0.041666668,0.5,0.0625,0.5,0.0625,0.5833333,0.0625,0.75,0.0625,0.8333333,0.0625,0.9166667,0.041666668,1,0.0625,2.220446e-16,0.0625,0.16666667,0.0625,0.25,0.0625,0.41666666,0.041666668,0.41666666,0.083333336,0.5,0.083333336,0.5833333,0.0625,0.6666667,0.083333336,0.6666667,0.083333336,0.75,0.083333336,0.8333333,0.083333336,1,0.0625,1,0.083333336,2.220446e-16,0.0625,0.083333336,0.083333336,0.083333336,0.083333336,0.16666667,0.083333336,0.33333334,0.0625,0.33333334,0.083333336,0.41666666,0.104166664,0.5,0.104166664,0.5833333,0.104166664,0.6666667,0.104166664,0.8333333,0.083333336,0.9166667,0.104166664,0.9166667,0.104166664,2.220446e-16,0.104166664,0.16666667,0.083333336,0.25,0.104166664,0.25,0.104166664,0.41666666,0.125,0.5,0.125,0.6666667,0.104166664,0.75,0.125,0.75,0.125,0.8333333,0.125,0.9166667,0.104166664,1,0.125,2.220446e-16,0.104166664,0.083333336,0.125,0.083333336,0.125,0.25,0.104166664,0.33333334,0.125,0.33333334,0.125,0.41666666,0.14583333,0.5833333,0.125,0.5833333,0.14583333,0.6666667,0.14583333,0.8333333,0.14583333,0.9166667,0.125,1,0.14583333,2.220446e-16,0.14583333,0.083333336,0.125,0.16666667,0.14583333,0.16666667,0.14583333,0.25,0.14583333,0.33333334,0.14583333,0.41666666,0.14583333,0.5,0.16666667,0.5833333,0.16666667,0.6666667,0.14583333,0.75,0.16666667,0.75,0.16666667,0.9166667,0.14583333,1,0.16666667,2.220446e-16,0.16666667,0.083333336,0.16666667,0.16666667,0.16666667,0.33333334,0.16666667,0.41666666,0.1875,0.5,0.16666667,0.5,0.1875,0.5833333,0.1875,0.6666667,0.1875,0.75,0.16666667,0.8333333,0.1875,0.8333333,0.1875,0.9166667,0.16666667,1,0.1875,2.220446e-16,0.1875,0.083333336,0.1875,0.25,0.16666667,0.25,0.1875,0.41666666,0.20833333,0.5,0.20833333,0.5833333,0.20833333,0.6666667,0.20833333,0.75,0.20833333,0.9166667,0.1875,1,0.20833333,2.220446e-16,0.20833333,0.083333336,0.1875,0.16666667,0.20833333,0.16666667,0.20833333,0.25,0.1875,0.33333334,0.20833333,0.41666666,0.22916667,0.5,0.22916667,0.6666667,0.22916667,0.75,0.20833333,0.8333333,0.22916667,0.9166667,0.20833333,1,0.22916667,2.220446e-16,0.22916667,0.083333336,0.22916667,0.25,0.20833333,0.33333334,0.22916667,0.33333334,0.22916667,0.41666666,0.25,0.5,0.22916667,0.5833333,0.25,0.5833333,0.25,0.75,0.25,0.8333333,0.22916667,0.8333333,0.25,1,0.22916667,1,0.25,2.220446e-16,0.25,0.083333336,0.22916667,0.16666667,0.25,0.16666667,0.25,0.25,0.25,0.33333334,0.25,0.41666666,0.27083334,0.5833333,0.25,0.6666667,0.27083334,0.6666667,0.27083334,0.75,0.27083334,0.8333333,0.25,0.9166667,0.27083334,0.9166667,0.27083334,2.220446e-16,0.27083334,0.16666667,0.27083334,0.25,0.27083334,0.33333334,0.27083334,0.41666666,0.29166666,0.5,0.27083334,0.5,0.29166666,0.5833333,0.29166666,0.6666667,0.29166666,0.75,0.29166666,0.8333333,0.29166666,1,0.27083334,1,0.29166666,2.220446e-16,0.27083334,0.083333336,0.29166666,0.083333336,0.29166666,0.25,0.29166666,0.33333334,0.29166666,0.41666666,0.3125,0.5,0.3125,0.5833333,0.3125,0.6666667,0.3125,0.75,0.3125,0.8333333,0.29166666,0.9166667,0.3125,0.9166667,0.3125,2.220446e-16,0.3125,0.083333336,0.29166666,0.16666667,0.3125,0.16666667,0.3125,0.33333334,0.3125,0.41666666,0.33333334,0.5,0.33333334,0.5833333,0.33333334,0.75,0.33333334,0.8333333,0.33333334,0.9166667,0.3125,1,0.33333334,2.220446e-16,0.33333334,0.083333336,0.33333334,0.16666667,0.3125,0.25,0.33333334,0.25,0.33333334,0.33333334,0.35416666,0.5833333,0.33333334,0.6666667,0.35416666,0.6666667,0.35416666,0.75,0.35416666,0.8333333,0.35416666,0.9166667,0.33333334,1,0.35416666,2.220446e-16,0.35416666,0.083333336,0.35416666,0.16666667,0.35416666,0.25,0.35416666,0.41666666,0.33333334,0.41666666,0.35416666,0.5,0.375,0.5833333,0.375,0.75,0.375,0.8333333,0.375,0.9166667,0.35416666,1,0.375,2.220446e-16,0.375,0.083333336,0.375,0.16666667,0.375,0.25,0.35416666,0.33333334,0.375,0.41666666,0.375,0.5,0.39583334,0.5833333,0.375,0.6666667,0.39583334,0.75,0.39583334,0.8333333,0.39583334,0.9166667,0.375,1,0.39583334,2.220446e-16,0.39583334,0.16666667,0.39583334,0.25,0.375,0.33333334,0.39583334,0.33333334,0.39583334,0.41666666,0.41666666,0.5,0.39583334,0.5,0.41666666,0.5833333,0.39583334,0.6666667,0.41666666,0.6666667,0.41666666,0.75,0.41666666,0.8333333,0.41666666,0.9166667,0.39583334,1,0.41666666,2.220446e-16,0.39583334,0.083333336,0.41666666,0.16666667,0.41666666,0.25,0.41666666,0.41666666,0.4375,0.5,0.4375,0.5833333,0.4375,0.75,0.4375,0.8333333,0.4375,0.9166667,0.41666666,1,0.4375,2.220446e-16,0.41666666,0.083333336,0.4375,0.083333336,0.4375,0.16666667,0.4375,0.25,0.41666666,0.33333334,0.4375,0.33333334,0.4375,0.41666666,0.45833334,0.5,0.45833334,0.5833333,0.4375,0.6666667,0.45833334,0.6666667,0.45833334,0.75,0.45833334,0.8333333,0.45833334,0.9166667,0.4375,1,0.45833334,2.220446e-16,0.45833334,0.16666667,0.45833334,0.25,0.45833334,0.33333334,0.45833334,0.41666666,0.47916666,0.5833333,0.47916666,0.6666667,0.47916666,0.75,0.47916666,0.8333333,0.47916666,1,0.45833334,1,0.47916666,2.220446e-16,0.45833334,0.083333336,0.47916666,0.083333336,0.47916666,0.25,0.47916666,0.33333334,0.47916666,0.41666666,0.47916666,0.5,0.47916666,0.9166667,0.47916666,0.16666667,1,0.5,1,1,1,0.083333336]);
-
-
-// prettier-ignore
-const normals = null;
-
-// prettier-ignore
-const faces = new Uint32Array([0,1,2,1,3,4,3,5,4,6,7,5,8,9,7,9,10,11,12,13,14,15,16,13,17,18,16,19,20,18,21,22,20,23,2,22,24,25,0,26,3,25,27,6,3,28,8,6,8,29,30,29,10,30,31,15,12,32,17,15,17,33,19,19,34,21,21,35,23,35,0,23,24,36,26,36,27,26,37,28,27,28,38,39,39,40,29,29,41,42,43,32,31,44,45,32,45,46,33,33,47,34,34,48,35,48,24,35,49,50,36,36,51,37,37,52,53,52,38,53,38,54,40,54,41,40,55,44,43,56,57,44,57,58,46,58,47,46,59,48,47,60,49,48,61,50,62,50,63,51,63,52,51,64,65,52,65,66,54,66,67,54,68,56,55,69,70,56,71,58,70,72,59,58,73,60,59,60,61,62,74,75,61,76,63,75,77,64,63,78,79,64,80,66,79,81,82,66,68,83,69,83,71,69,84,72,71,85,73,72,73,86,87,86,61,87,88,76,74,76,89,77,89,78,77,90,80,78,80,91,81,91,92,81,93,83,94,95,84,83,84,96,85,85,97,98,97,86,98,99,74,86,100,101,88,101,102,89,89,103,90,103,104,90,104,105,91,105,106,91,107,95,93,108,109,95,110,96,109,111,97,96,112,99,97,113,88,99,100,114,115,114,102,115,116,103,102,117,118,103,119,105,118,120,121,105,122,108,107,123,110,108,110,124,111,111,125,112,125,113,112,126,100,113,127,114,128,129,116,114,130,117,116,131,119,117,119,132,120,132,133,120,134,123,122,135,136,123,137,124,136,138,125,124,139,126,125,140,128,126,141,129,127,142,130,129,130,143,131,143,144,131,145,132,144,146,147,132,134,148,135,148,137,135,137,149,138,149,139,138,150,140,139,151,127,140,152,142,141,153,154,142,155,143,154,143,156,145,145,157,146,157,158,146,159,148,160,161,162,148,163,149,162,164,150,149,165,151,150,151,152,141,166,153,152,167,155,153,168,169,155,170,156,169,171,157,156,172,173,157,159,174,161,174,163,161,163,175,164,164,176,165,165,177,178,178,166,152,179,167,166,167,180,168,168,181,170,181,171,170,182,172,171,183,184,172,185,174,186,187,188,174,189,175,188,190,176,175,191,177,176,192,166,177,193,194,179,195,180,194,196,181,180,181,197,182,197,183,182,198,199,183,200,187,185,201,189,187,189,202,190,202,191,190,191,203,192,203,179,192,204,195,193,195,205,196,205,206,196,207,197,206,208,198,197,209,210,198,211,201,200,212,213,201,214,202,213,215,216,202,217,203,216,218,193,203,219,220,204,221,205,220,222,207,205,223,208,207,224,209,208,209,225,226,227,212,211,212,228,214,214,229,215,215,230,217,217,231,218,231,204,218,232,221,219,233,222,221,222,234,223,234,224,223,235,236,224,237,225,236,238,239,227,239,240,228,240,229,228,241,230,229,242,231,230,243,219,231,244,233,232,245,246,233,247,234,246,234,248,235,248,237,235,249,250,237,251,252,238,252,253,240,253,241,240,254,242,241,242,255,243,255,232,243,244,256,245,256,247,245,247,257,258,257,248,258,259,249,248,260,261,249,262,263,251,264,253,263,253,265,254,265,266,254,267,255,266,268,244,255,269,256,270,271,272,256,273,257,272,257,274,259,274,260,259,275,276,260,262,277,264,277,278,264,279,265,278,280,267,265,267,281,268,281,270,268,269,282,271,282,273,271,283,284,273,284,285,274,285,275,274,286,287,275,288,277,289,290,279,277,291,280,279,280,292,293,292,281,293,294,269,281,295,282,296,297,283,282,298,299,283,300,285,299,301,286,285,302,303,286,304,290,288,290,305,291,291,306,307,307,308,292,292,309,294,294,295,296,295,310,297,310,298,297,311,300,298,312,301,300,313,302,301,314,315,302,316,317,304,317,318,305,318,306,305,319,308,306,320,309,308,321,295,309,322,323,324,325,326,323,327,328,326,329,330,328,331,332,330,333,334,332,335,336,337,336,338,337,338,339,340,340,341,342,342,343,344,344,322,324,322,345,325,325,346,327,327,347,329,329,348,331,331,349,333,349,350,333,351,336,352,353,354,336,355,339,354,356,341,339,357,343,341,343,358,322,359,345,358,360,346,345,346,361,347,361,348,347,362,349,348,363,364,349,365,353,351,353,366,355,366,356,355,367,357,356,357,368,369,369,359,358,370,360,359,371,372,360,373,361,372,374,362,361,375,363,362,363,376,377,378,379,365,380,366,379,381,367,366,367,382,383,383,384,368,384,359,368,385,371,370,386,373,371,387,374,373,374,388,375,388,389,375,390,376,389,391,380,378,380,392,381,392,393,381,394,382,393,382,395,384,395,370,384,396,386,385,386,397,387,397,398,387,399,388,398,400,390,388,401,402,390,403,404,391,405,392,404,392,406,394,406,407,394,408,395,407,409,385,395,396,410,411,411,412,397,412,399,397,399,413,400,413,401,400,414,415,401,416,405,403,417,418,405,419,406,418,420,408,406,421,409,408,422,396,409,423,424,410,424,412,410,425,426,412,427,413,426,413,428,414,428,429,414,430,417,416,431,419,417,432,420,419,420,433,421,421,434,422,434,423,422,435,424,436,437,425,424,438,427,425,439,440,427,441,428,440,442,443,428,444,431,430,445,432,431,432,446,447,446,433,447,433,448,434,448,436,434,449,437,435,450,438,437,451,439,438,452,441,439,441,453,442,453,454,442,455,445,444,456,457,445,458,446,457,459,460,446,460,461,448,461,435,448,462,450,449,450,463,451,463,452,451,464,465,452,465,466,453,466,467,453,468,456,455,469,458,456,458,470,459,470,471,459,472,461,471,473,449,461,474,475,462,476,463,475,463,477,464,464,478,479,478,466,479,466,480,481,482,469,468,483,484,469,485,470,484,486,472,470,487,473,472,488,462,473,474,489,476,489,490,476,491,477,490,492,478,477,493,494,478,495,480,494,496,483,482,483,497,485,485,498,486,498,487,486,499,488,487,500,474,488,501,489,502,503,491,489,504,492,491,505,493,492,506,495,493,495,507,508,509,510,496,511,497,510,497,512,498,498,513,499,513,500,499,514,502,500,515,503,501,516,504,503,517,505,504,518,506,505,519,520,506,521,507,520,522,511,509,523,524,511,525,512,524,512,526,513,513,527,514,527,501,514,528,516,515,529,517,516,517,530,518,518,531,519,531,521,519,532,533,521,534,523,522,535,525,523,536,537,525,538,526,537,539,527,526,527,528,515,528,540,529,540,541,529,542,530,541,543,531,530,544,532,531,545,546,532,547,535,534,548,536,535,549,538,536,550,539,538,539,551,552,551,528,552,553,554,540,554,542,540,542,555,543,543,556,544,544,557,545,557,558,545,559,548,547,560,549,548,561,550,549,562,563,550,563,564,551,564,553,551,565,566,554,566,567,554,567,568,555,568,556,555,569,557,556,570,571,557,572,560,559,560,573,561,561,574,562,574,575,562,576,564,575,577,565,564,578,566,579,580,581,566,582,568,581,583,569,568,584,570,569,585,586,570,587,588,572,588,589,573,589,574,573,590,576,574,576,591,577,591,579,577,592,580,578,593,582,580,582,594,583,594,584,583,595,585,584,596,597,585,598,599,587,600,589,599,601,590,589,602,603,590,604,591,603,605,578,591,606,593,592,607,608,593,609,594,608,610,595,594,611,596,595,612,613,596,614,600,598,600,615,601,615,602,601,616,604,602,617,605,604,618,592,605,606,619,607,607,620,609,609,621,610,621,611,610,622,612,611,612,623,624,625,626,614,627,615,626,615,628,616,628,617,616,629,618,617,630,606,618,2,619,631,1,620,619,4,621,620,5,622,621,7,632,622,9,623,632,625,13,627,13,633,627,16,628,633,18,629,628,629,22,630,630,2,631,0,25,1,1,25,3,3,6,5,6,8,7,8,30,9,9,30,10,12,15,13,15,17,16,17,19,18,19,21,20,21,23,22,23,0,2,24,26,25,26,27,3,27,28,6,28,39,8,8,39,29,29,42,10,31,32,15,32,45,17,17,45,33,19,33,34,21,34,35,35,24,0,24,49,36,36,37,27,37,53,28,28,53,38,39,38,40,29,40,41,43,44,32,44,57,45,45,57,46,33,46,47,34,47,48,48,49,24,49,62,50,36,50,51,37,51,52,52,65,38,38,65,54,54,67,41,55,56,44,56,70,57,57,70,58,58,59,47,59,60,48,60,62,49,61,75,50,50,75,63,63,64,52,64,79,65,65,79,66,66,82,67,68,69,56,69,71,70,71,72,58,72,73,59,73,87,60,60,87,61,74,76,75,76,77,63,77,78,64,78,80,79,80,81,66,81,92,82,68,94,83,83,84,71,84,85,72,85,98,73,73,98,86,86,74,61,88,101,76,76,101,89,89,90,78,90,104,80,80,104,91,91,106,92,93,95,83,95,109,84,84,109,96,85,96,97,97,99,86,99,88,74,100,115,101,101,115,102,89,102,103,103,118,104,104,118,105,105,121,106,107,108,95,108,110,109,110,111,96,111,112,97,112,113,99,113,100,88,100,128,114,114,116,102,116,117,103,117,119,118,119,120,105,120,133,121,122,123,108,123,136,110,110,136,124,111,124,125,125,126,113,126,128,100,127,129,114,129,130,116,130,131,117,131,144,119,119,144,132,132,147,133,134,135,123,135,137,136,137,138,124,138,139,125,139,140,126,140,127,128,141,142,129,142,154,130,130,154,143,143,145,144,145,146,132,146,158,147,134,160,148,148,162,137,137,162,149,149,150,139,150,151,140,151,141,127,152,153,142,153,155,154,155,169,143,143,169,156,145,156,157,157,173,158,159,161,148,161,163,162,163,164,149,164,165,150,165,178,151,151,178,152,166,167,153,167,168,155,168,170,169,170,171,156,171,172,157,172,184,173,159,186,174,174,188,163,163,188,175,164,175,176,165,176,177,178,177,166,179,194,167,167,194,180,168,180,181,181,182,171,182,183,172,183,199,184,185,187,174,187,189,188,189,190,175,190,191,176,191,192,177,192,179,166,193,195,194,195,196,180,196,206,181,181,206,197,197,198,183,198,210,199,200,201,187,201,213,189,189,213,202,202,216,191,191,216,203,203,193,179,204,220,195,195,220,205,205,207,206,207,208,197,208,209,198,209,226,210,211,212,201,212,214,213,214,215,202,215,217,216,217,218,203,218,204,193,219,221,220,221,222,205,222,223,207,223,224,208,224,236,209,209,236,225,227,239,212,212,239,228,214,228,229,215,229,230,217,230,231,231,219,204,232,233,221,233,246,222,222,246,234,234,235,224,235,237,236,237,250,225,238,252,239,239,252,240,240,241,229,241,242,230,242,243,231,243,232,219,244,245,233,245,247,246,247,258,234,234,258,248,248,249,237,249,261,250,251,263,252,252,263,253,253,254,241,254,266,242,242,266,255,255,244,232,244,270,256,256,272,247,247,272,257,257,259,248,259,260,249,260,276,261,262,264,263,264,278,253,253,278,265,265,267,266,267,268,255,268,270,244,269,271,256,271,273,272,273,284,257,257,284,274,274,275,260,275,287,276,262,289,277,277,279,278,279,280,265,280,293,267,267,293,281,281,269,270,269,296,282,282,283,273,283,299,284,284,299,285,285,286,275,286,303,287,288,290,277,290,291,279,291,307,280,280,307,292,292,294,281,294,296,269,295,297,282,297,298,283,298,300,299,300,301,285,301,302,286,302,315,303,304,317,290,290,317,305,291,305,306,307,306,308,292,308,309,294,309,295,295,634,310,310,311,298,311,312,300,312,313,301,313,314,302,314,635,315,316,636,317,317,636,318,318,319,306,319,320,308,320,321,309,321,634,295,322,325,323,325,327,326,327,329,328,329,331,330,331,333,332,333,350,334,335,352,336,336,354,338,338,354,339,340,339,341,342,341,343,344,343,322,322,358,345,325,345,346,327,346,347,329,347,348,331,348,349,349,364,350,351,353,336,353,355,354,355,356,339,356,357,341,357,369,343,343,369,358,359,360,345,360,372,346,346,372,361,361,362,348,362,363,349,363,377,364,365,379,353,353,379,366,366,367,356,367,383,357,357,383,368,369,368,359,370,371,360,371,373,372,373,374,361,374,375,362,375,389,363,363,389,376,378,380,379,380,381,366,381,393,367,367,393,382,383,382,384,384,370,359,385,386,371,386,387,373,387,398,374,374,398,388,388,390,389,390,402,376,391,404,380,380,404,392,392,394,393,394,407,382,382,407,395,395,385,370,396,411,386,386,411,397,397,399,398,399,400,388,400,401,390,401,415,402,403,405,404,405,418,392,392,418,406,406,408,407,408,409,395,409,396,385,396,423,410,411,410,412,412,426,399,399,426,413,413,414,401,414,429,415,416,417,405,417,419,418,419,420,406,420,421,408,421,422,409,422,423,396,423,436,424,424,425,412,425,427,426,427,440,413,413,440,428,428,443,429,430,431,417,431,432,419,432,447,420,420,447,433,421,433,434,434,436,423,435,437,424,437,438,425,438,439,427,439,441,440,441,442,428,442,454,443,444,445,431,445,457,432,432,457,446,446,460,433,433,460,448,448,435,436,449,450,437,450,451,438,451,452,439,452,465,441,441,465,453,453,467,454,455,456,445,456,458,457,458,459,446,459,471,460,460,471,461,461,449,435,462,475,450,450,475,463,463,464,452,464,479,465,465,479,466,466,481,467,468,469,456,469,484,458,458,484,470,470,472,471,472,473,461,473,462,449,474,476,475,476,490,463,463,490,477,464,477,478,478,494,466,466,494,480,482,483,469,483,485,484,485,486,470,486,487,472,487,488,473,488,474,462,474,502,489,489,491,490,491,492,477,492,493,478,493,495,494,495,508,480,496,510,483,483,510,497,485,497,498,498,499,487,499,500,488,500,502,474,501,503,489,503,504,491,504,505,492,505,506,493,506,520,495,495,520,507,509,511,510,511,524,497,497,524,512,498,512,513,513,514,500,514,501,502,515,516,503,516,517,504,517,518,505,518,519,506,519,521,520,521,533,507,522,523,511,523,525,524,525,537,512,512,537,526,513,526,527,527,515,501,528,529,516,529,541,517,517,541,530,518,530,531,531,532,521,532,546,533,534,535,523,535,536,525,536,538,537,538,539,526,539,552,527,527,552,528,528,553,540,540,542,541,542,543,530,543,544,531,544,545,532,545,558,546,547,548,535,548,549,536,549,550,538,550,563,539,539,563,551,551,553,528,553,565,554,554,567,542,542,567,555,543,555,556,544,556,557,557,571,558,559,560,548,560,561,549,561,562,550,562,575,563,563,575,564,564,565,553,565,579,566,566,581,567,567,581,568,568,569,556,569,570,557,570,586,571,572,588,560,560,588,573,561,573,574,574,576,575,576,577,564,577,579,565,578,580,566,580,582,581,582,583,568,583,584,569,584,585,570,585,597,586,587,599,588,588,599,589,589,590,574,590,603,576,576,603,591,591,578,579,592,593,580,593,608,582,582,608,594,594,595,584,595,596,585,596,613,597,598,600,599,600,601,589,601,602,590,602,604,603,604,605,591,605,592,578,606,607,593,607,609,608,609,610,594,610,611,595,611,612,596,612,624,613,614,626,600,600,626,615,615,616,602,616,617,604,617,618,605,618,606,592,606,631,619,607,619,620,609,620,621,621,622,611,622,632,612,612,632,623,625,627,626,627,633,615,615,633,628,628,629,617,629,630,618,630,631,606,2,1,619,1,4,620,4,5,621,5,7,622,7,9,632,9,11,623,625,14,13,13,16,633,16,18,628,18,20,629,629,20,22,630,22,2]);
-
export default new Mesh({
- colors,
- faces,
+ colors: new Uint8Array([0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255,0,0,0,255]),
+ faces: new Uint16Array([0,1,2,1,3,4,3,5,4,6,7,5,8,9,7,9,10,11,12,13,14,15,16,13,17,18,16,19,20,18,21,22,20,23,2,22,24,25,0,26,3,25,27,6,3,28,8,6,8,29,30,29,10,30,31,15,12,32,17,15,17,33,19,19,34,21,21,35,23,35,0,23,24,36,26,36,27,26,37,28,27,28,38,39,39,40,29,29,41,42,43,32,31,44,45,32,45,46,33,33,47,34,34,48,35,48,24,35,49,50,36,36,51,37,37,52,53,52,38,53,38,54,40,54,41,40,55,44,43,56,57,44,57,58,46,58,47,46,59,48,47,60,49,48,61,50,62,50,63,51,63,52,51,64,65,52,65,66,54,66,67,54,68,56,55,69,70,56,71,58,70,72,59,58,73,60,59,60,61,62,74,75,61,76,63,75,77,64,63,78,79,64,80,66,79,81,82,66,68,83,69,83,71,69,84,72,71,85,73,72,73,86,87,86,61,87,88,76,74,76,89,77,89,78,77,90,80,78,80,91,81,91,92,81,93,83,94,95,84,83,84,96,85,85,97,98,97,86,98,99,74,86,100,101,88,101,102,89,89,103,90,103,104,90,104,105,91,105,106,91,107,95,93,108,109,95,110,96,109,111,97,96,112,99,97,113,88,99,100,114,115,114,102,115,116,103,102,117,118,103,119,105,118,120,121,105,122,108,107,123,110,108,110,124,111,111,125,112,125,113,112,126,100,113,127,114,128,129,116,114,130,117,116,131,119,117,119,132,120,132,133,120,134,123,122,135,136,123,137,124,136,138,125,124,139,126,125,140,128,126,141,129,127,142,130,129,130,143,131,143,144,131,145,132,144,146,147,132,134,148,135,148,137,135,137,149,138,149,139,138,150,140,139,151,127,140,152,142,141,153,154,142,155,143,154,143,156,145,145,157,146,157,158,146,159,148,160,161,162,148,163,149,162,164,150,149,165,151,150,151,152,141,166,153,152,167,155,153,168,169,155,170,156,169,171,157,156,172,173,157,159,174,161,174,163,161,163,175,164,164,176,165,165,177,178,178,166,152,179,167,166,167,180,168,168,181,170,181,171,170,182,172,171,183,184,172,185,174,186,187,188,174,189,175,188,190,176,175,191,177,176,192,166,177,193,194,179,195,180,194,196,181,180,181,197,182,197,183,182,198,199,183,200,187,185,201,189,187,189,202,190,202,191,190,191,203,192,203,179,192,204,195,193,195,205,196,205,206,196,207,197,206,208,198,197,209,210,198,211,201,200,212,213,201,214,202,213,215,216,202,217,203,216,218,193,203,219,220,204,221,205,220,222,207,205,223,208,207,224,209,208,209,225,226,227,212,211,212,228,214,214,229,215,215,230,217,217,231,218,231,204,218,232,221,219,233,222,221,222,234,223,234,224,223,235,236,224,237,225,236,238,239,227,239,240,228,240,229,228,241,230,229,242,231,230,243,219,231,244,233,232,245,246,233,247,234,246,234,248,235,248,237,235,249,250,237,251,252,238,252,253,240,253,241,240,254,242,241,242,255,243,255,232,243,244,256,245,256,247,245,247,257,258,257,248,258,259,249,248,260,261,249,262,263,251,264,253,263,253,265,254,265,266,254,267,255,266,268,244,255,269,256,270,271,272,256,273,257,272,257,274,259,274,260,259,275,276,260,262,277,264,277,278,264,279,265,278,280,267,265,267,281,268,281,270,268,269,282,271,282,273,271,283,284,273,284,285,274,285,275,274,286,287,275,288,277,289,290,279,277,291,280,279,280,292,293,292,281,293,294,269,281,295,282,296,297,283,282,298,299,283,300,285,299,301,286,285,302,303,286,304,290,288,290,305,291,291,306,307,307,308,292,292,309,294,294,295,296,295,310,297,310,298,297,311,300,298,312,301,300,313,302,301,314,315,302,316,317,304,317,318,305,318,306,305,319,308,306,320,309,308,321,295,309,322,323,324,325,326,323,327,328,326,329,330,328,331,332,330,333,334,332,335,336,337,336,338,337,338,339,340,340,341,342,342,343,344,344,322,324,322,345,325,325,346,327,327,347,329,329,348,331,331,349,333,349,350,333,351,336,352,353,354,336,355,339,354,356,341,339,357,343,341,343,358,322,359,345,358,360,346,345,346,361,347,361,348,347,362,349,348,363,364,349,365,353,351,353,366,355,366,356,355,367,357,356,357,368,369,369,359,358,370,360,359,371,372,360,373,361,372,374,362,361,375,363,362,363,376,377,378,379,365,380,366,379,381,367,366,367,382,383,383,384,368,384,359,368,385,371,370,386,373,371,387,374,373,374,388,375,388,389,375,390,376,389,391,380,378,380,392,381,392,393,381,394,382,393,382,395,384,395,370,384,396,386,385,386,397,387,397,398,387,399,388,398,400,390,388,401,402,390,403,404,391,405,392,404,392,406,394,406,407,394,408,395,407,409,385,395,396,410,411,411,412,397,412,399,397,399,413,400,413,401,400,414,415,401,416,405,403,417,418,405,419,406,418,420,408,406,421,409,408,422,396,409,423,424,410,424,412,410,425,426,412,427,413,426,413,428,414,428,429,414,430,417,416,431,419,417,432,420,419,420,433,421,421,434,422,434,423,422,435,424,436,437,425,424,438,427,425,439,440,427,441,428,440,442,443,428,444,431,430,445,432,431,432,446,447,446,433,447,433,448,434,448,436,434,449,437,435,450,438,437,451,439,438,452,441,439,441,453,442,453,454,442,455,445,444,456,457,445,458,446,457,459,460,446,460,461,448,461,435,448,462,450,449,450,463,451,463,452,451,464,465,452,465,466,453,466,467,453,468,456,455,469,458,456,458,470,459,470,471,459,472,461,471,473,449,461,474,475,462,476,463,475,463,477,464,464,478,479,478,466,479,466,480,481,482,469,468,483,484,469,485,470,484,486,472,470,487,473,472,488,462,473,474,489,476,489,490,476,491,477,490,492,478,477,493,494,478,495,480,494,496,483,482,483,497,485,485,498,486,498,487,486,499,488,487,500,474,488,501,489,502,503,491,489,504,492,491,505,493,492,506,495,493,495,507,508,509,510,496,511,497,510,497,512,498,498,513,499,513,500,499,514,502,500,515,503,501,516,504,503,517,505,504,518,506,505,519,520,506,521,507,520,522,511,509,523,524,511,525,512,524,512,526,513,513,527,514,527,501,514,528,516,515,529,517,516,517,530,518,518,531,519,531,521,519,532,533,521,534,523,522,535,525,523,536,537,525,538,526,537,539,527,526,527,528,515,528,540,529,540,541,529,542,530,541,543,531,530,544,532,531,545,546,532,547,535,534,548,536,535,549,538,536,550,539,538,539,551,552,551,528,552,553,554,540,554,542,540,542,555,543,543,556,544,544,557,545,557,558,545,559,548,547,560,549,548,561,550,549,562,563,550,563,564,551,564,553,551,565,566,554,566,567,554,567,568,555,568,556,555,569,557,556,570,571,557,572,560,559,560,573,561,561,574,562,574,575,562,576,564,575,577,565,564,578,566,579,580,581,566,582,568,581,583,569,568,584,570,569,585,586,570,587,588,572,588,589,573,589,574,573,590,576,574,576,591,577,591,579,577,592,580,578,593,582,580,582,594,583,594,584,583,595,585,584,596,597,585,598,599,587,600,589,599,601,590,589,602,603,590,604,591,603,605,578,591,606,593,592,607,608,593,609,594,608,610,595,594,611,596,595,612,613,596,614,600,598,600,615,601,615,602,601,616,604,602,617,605,604,618,592,605,606,619,607,607,620,609,609,621,610,621,611,610,622,612,611,612,623,624,625,626,614,627,615,626,615,628,616,628,617,616,629,618,617,630,606,618,2,619,631,1,620,619,4,621,620,5,622,621,7,632,622,9,623,632,625,13,627,13,633,627,16,628,633,18,629,628,629,22,630,630,2,631,0,25,1,1,25,3,3,6,5,6,8,7,8,30,9,9,30,10,12,15,13,15,17,16,17,19,18,19,21,20,21,23,22,23,0,2,24,26,25,26,27,3,27,28,6,28,39,8,8,39,29,29,42,10,31,32,15,32,45,17,17,45,33,19,33,34,21,34,35,35,24,0,24,49,36,36,37,27,37,53,28,28,53,38,39,38,40,29,40,41,43,44,32,44,57,45,45,57,46,33,46,47,34,47,48,48,49,24,49,62,50,36,50,51,37,51,52,52,65,38,38,65,54,54,67,41,55,56,44,56,70,57,57,70,58,58,59,47,59,60,48,60,62,49,61,75,50,50,75,63,63,64,52,64,79,65,65,79,66,66,82,67,68,69,56,69,71,70,71,72,58,72,73,59,73,87,60,60,87,61,74,76,75,76,77,63,77,78,64,78,80,79,80,81,66,81,92,82,68,94,83,83,84,71,84,85,72,85,98,73,73,98,86,86,74,61,88,101,76,76,101,89,89,90,78,90,104,80,80,104,91,91,106,92,93,95,83,95,109,84,84,109,96,85,96,97,97,99,86,99,88,74,100,115,101,101,115,102,89,102,103,103,118,104,104,118,105,105,121,106,107,108,95,108,110,109,110,111,96,111,112,97,112,113,99,113,100,88,100,128,114,114,116,102,116,117,103,117,119,118,119,120,105,120,133,121,122,123,108,123,136,110,110,136,124,111,124,125,125,126,113,126,128,100,127,129,114,129,130,116,130,131,117,131,144,119,119,144,132,132,147,133,134,135,123,135,137,136,137,138,124,138,139,125,139,140,126,140,127,128,141,142,129,142,154,130,130,154,143,143,145,144,145,146,132,146,158,147,134,160,148,148,162,137,137,162,149,149,150,139,150,151,140,151,141,127,152,153,142,153,155,154,155,169,143,143,169,156,145,156,157,157,173,158,159,161,148,161,163,162,163,164,149,164,165,150,165,178,151,151,178,152,166,167,153,167,168,155,168,170,169,170,171,156,171,172,157,172,184,173,159,186,174,174,188,163,163,188,175,164,175,176,165,176,177,178,177,166,179,194,167,167,194,180,168,180,181,181,182,171,182,183,172,183,199,184,185,187,174,187,189,188,189,190,175,190,191,176,191,192,177,192,179,166,193,195,194,195,196,180,196,206,181,181,206,197,197,198,183,198,210,199,200,201,187,201,213,189,189,213,202,202,216,191,191,216,203,203,193,179,204,220,195,195,220,205,205,207,206,207,208,197,208,209,198,209,226,210,211,212,201,212,214,213,214,215,202,215,217,216,217,218,203,218,204,193,219,221,220,221,222,205,222,223,207,223,224,208,224,236,209,209,236,225,227,239,212,212,239,228,214,228,229,215,229,230,217,230,231,231,219,204,232,233,221,233,246,222,222,246,234,234,235,224,235,237,236,237,250,225,238,252,239,239,252,240,240,241,229,241,242,230,242,243,231,243,232,219,244,245,233,245,247,246,247,258,234,234,258,248,248,249,237,249,261,250,251,263,252,252,263,253,253,254,241,254,266,242,242,266,255,255,244,232,244,270,256,256,272,247,247,272,257,257,259,248,259,260,249,260,276,261,262,264,263,264,278,253,253,278,265,265,267,266,267,268,255,268,270,244,269,271,256,271,273,272,273,284,257,257,284,274,274,275,260,275,287,276,262,289,277,277,279,278,279,280,265,280,293,267,267,293,281,281,269,270,269,296,282,282,283,273,283,299,284,284,299,285,285,286,275,286,303,287,288,290,277,290,291,279,291,307,280,280,307,292,292,294,281,294,296,269,295,297,282,297,298,283,298,300,299,300,301,285,301,302,286,302,315,303,304,317,290,290,317,305,291,305,306,307,306,308,292,308,309,294,309,295,295,634,310,310,311,298,311,312,300,312,313,301,313,314,302,314,635,315,316,636,317,317,636,318,318,319,306,319,320,308,320,321,309,321,634,295,322,325,323,325,327,326,327,329,328,329,331,330,331,333,332,333,350,334,335,352,336,336,354,338,338,354,339,340,339,341,342,341,343,344,343,322,322,358,345,325,345,346,327,346,347,329,347,348,331,348,349,349,364,350,351,353,336,353,355,354,355,356,339,356,357,341,357,369,343,343,369,358,359,360,345,360,372,346,346,372,361,361,362,348,362,363,349,363,377,364,365,379,353,353,379,366,366,367,356,367,383,357,357,383,368,369,368,359,370,371,360,371,373,372,373,374,361,374,375,362,375,389,363,363,389,376,378,380,379,380,381,366,381,393,367,367,393,382,383,382,384,384,370,359,385,386,371,386,387,373,387,398,374,374,398,388,388,390,389,390,402,376,391,404,380,380,404,392,392,394,393,394,407,382,382,407,395,395,385,370,396,411,386,386,411,397,397,399,398,399,400,388,400,401,390,401,415,402,403,405,404,405,418,392,392,418,406,406,408,407,408,409,395,409,396,385,396,423,410,411,410,412,412,426,399,399,426,413,413,414,401,414,429,415,416,417,405,417,419,418,419,420,406,420,421,408,421,422,409,422,423,396,423,436,424,424,425,412,425,427,426,427,440,413,413,440,428,428,443,429,430,431,417,431,432,419,432,447,420,420,447,433,421,433,434,434,436,423,435,437,424,437,438,425,438,439,427,439,441,440,441,442,428,442,454,443,444,445,431,445,457,432,432,457,446,446,460,433,433,460,448,448,435,436,449,450,437,450,451,438,451,452,439,452,465,441,441,465,453,453,467,454,455,456,445,456,458,457,458,459,446,459,471,460,460,471,461,461,449,435,462,475,450,450,475,463,463,464,452,464,479,465,465,479,466,466,481,467,468,469,456,469,484,458,458,484,470,470,472,471,472,473,461,473,462,449,474,476,475,476,490,463,463,490,477,464,477,478,478,494,466,466,494,480,482,483,469,483,485,484,485,486,470,486,487,472,487,488,473,488,474,462,474,502,489,489,491,490,491,492,477,492,493,478,493,495,494,495,508,480,496,510,483,483,510,497,485,497,498,498,499,487,499,500,488,500,502,474,501,503,489,503,504,491,504,505,492,505,506,493,506,520,495,495,520,507,509,511,510,511,524,497,497,524,512,498,512,513,513,514,500,514,501,502,515,516,503,516,517,504,517,518,505,518,519,506,519,521,520,521,533,507,522,523,511,523,525,524,525,537,512,512,537,526,513,526,527,527,515,501,528,529,516,529,541,517,517,541,530,518,530,531,531,532,521,532,546,533,534,535,523,535,536,525,536,538,537,538,539,526,539,552,527,527,552,528,528,553,540,540,542,541,542,543,530,543,544,531,544,545,532,545,558,546,547,548,535,548,549,536,549,550,538,550,563,539,539,563,551,551,553,528,553,565,554,554,567,542,542,567,555,543,555,556,544,556,557,557,571,558,559,560,548,560,561,549,561,562,550,562,575,563,563,575,564,564,565,553,565,579,566,566,581,567,567,581,568,568,569,556,569,570,557,570,586,571,572,588,560,560,588,573,561,573,574,574,576,575,576,577,564,577,579,565,578,580,566,580,582,581,582,583,568,583,584,569,584,585,570,585,597,586,587,599,588,588,599,589,589,590,574,590,603,576,576,603,591,591,578,579,592,593,580,593,608,582,582,608,594,594,595,584,595,596,585,596,613,597,598,600,599,600,601,589,601,602,590,602,604,603,604,605,591,605,592,578,606,607,593,607,609,608,609,610,594,610,611,595,611,612,596,612,624,613,614,626,600,600,626,615,615,616,602,616,617,604,617,618,605,618,606,592,606,631,619,607,619,620,609,620,621,621,622,611,622,632,612,612,632,623,625,627,626,627,633,615,615,633,628,628,629,617,629,630,618,630,631,606,2,1,619,1,4,620,4,5,621,5,7,622,7,9,632,9,11,623,625,14,13,13,16,633,16,18,628,18,20,629,629,20,22,630,22,2]),
name: "src/meshes/torus.ply",
- normals,
- positions,
- uvs,
+ normals: null,
+ positions: new Float32Array([1.2393061,0.16315772,0,1.2165064,0,0.125,1.25,0,0,1.1153755,0.14684194,0.21650635,1.125,0,0.21650635,1,0,0.25,0.9914449,0.13052617,0.25,0.875,0,0.21650635,0.86751425,0.1142104,0.21650635,0.78349364,0,0.125,0.7435837,0.097894624,3.061617e-17,0.75,0,3.061617e-17,0.7435837,0.097894624,3.061617e-17,0.78349364,0,-0.125,0.75,0,3.061617e-17,0.77679074,0.10226642,-0.125,0.875,0,-0.21650635,0.86751425,0.1142104,-0.21650635,1,0,-0.25,0.9914449,0.13052617,-0.25,1.125,0,-0.21650635,1.1153755,0.14684194,-0.21650635,1.2165064,0,-0.125,1.206099,0.15878591,-0.125,1.2074072,0.32352373,0,1.206099,0.15878591,0.125,1.1750549,0.31485495,0.125,1.0866666,0.29117137,0.21650635,0.9659258,0.25881898,0.25,0.7567967,0.20278303,0.125,0.77679074,0.10226642,0.125,0.7244444,0.19411424,3.061617e-17,0.7567967,0.20278303,-0.125,0.9659258,0.25881898,-0.25,1.0866666,0.29117137,-0.21650635,1.1750549,0.31485495,-0.125,1.1239054,0.46553674,0.125,1.0393645,0.43051878,0.21650635,0.8083946,0.33484796,0.21650635,0.8451851,0.22646661,0.21650635,0.72385377,0.29983,0.125,0.69290966,0.28701252,3.061617e-17,0.7244444,0.19411424,3.061617e-17,0.69290966,0.28701252,3.061617e-17,0.72385377,0.29983,-0.125,0.8451851,0.22646661,-0.21650635,0.92387956,0.38268337,-0.25,1.0393645,0.43051878,-0.21650635,1.1239054,0.46553674,-0.125,1.1548494,0.47835422,0,1.0535253,0.6082533,0.125,0.9742785,0.5625001,0.21650635,0.8660253,0.5000001,0.25,0.92387956,0.38268337,0.25,0.6785253,0.3917469,0.125,0.64951897,0.3750001,3.061617e-17,0.6785253,0.3917469,-0.125,0.8083946,0.33484796,-0.21650635,0.8660253,0.5000001,-0.25,0.9742785,0.5625001,-0.21650635,1.0535253,0.6082533,-0.125,0.9916918,0.76095164,0,1.0825317,0.6250001,0,0.89252263,0.6848565,0.21650635,0.79335344,0.6087613,0.25,0.75777215,0.43750012,0.21650635,0.6215874,0.4769606,0.125,0.64951897,0.3750001,3.061617e-17,0.59501505,0.45657098,3.061617e-17,0.6215874,0.4769606,-0.125,0.75777215,0.43750012,-0.21650635,0.69418424,0.53266615,-0.21650635,0.79335344,0.6087613,-0.25,0.89252263,0.6848565,-0.21650635,0.88388336,0.88388354,0,0.9651195,0.740562,0.125,0.8601998,0.8601999,0.125,0.79549503,0.79549515,0.21650635,0.7071067,0.7071068,0.25,0.69418424,0.53266615,0.21650635,0.6187184,0.6187185,0.21650635,0.5540136,0.5540137,0.125,0.59501505,0.45657098,3.061617e-17,0.5540136,0.5540137,-0.125,0.6187184,0.6187185,-0.21650635,0.7071067,0.7071068,-0.25,0.8601998,0.8601999,-0.125,0.9651195,0.740562,-0.125,0.76095194,0.99169147,0,0.6848568,0.89252234,0.21650635,0.60876155,0.7933532,0.25,0.4769608,0.62158716,0.125,0.53033006,0.5303301,3.061617e-17,0.45657116,0.5950149,3.061617e-17,0.53033006,0.5303301,3.061617e-17,0.4769608,0.62158716,-0.125,0.60876155,0.7933532,-0.25,0.6848568,0.89252234,-0.21650635,0.79549503,0.79549515,-0.21650635,0.7405623,0.96511924,-0.125,0.62499994,1.0825318,0,0.7405623,0.96511924,0.125,0.56249994,0.9742786,0.21650635,0.49999997,0.86602545,0.25,0.5326663,0.69418406,0.21650635,0.3917468,0.67852545,0.125,0.45657116,0.5950149,3.061617e-17,0.37499997,0.6495191,3.061617e-17,0.3917468,0.67852545,-0.125,0.5326663,0.69418406,-0.21650635,0.43749997,0.75777227,-0.21650635,0.49999997,0.86602545,-0.25,0.56249994,0.9742786,-0.21650635,0.6082531,1.0535254,-0.125,0.4655371,1.1239052,0.125,0.6082531,1.0535254,0.125,0.43051913,1.0393643,0.21650635,0.38268366,0.92387944,0.25,0.43749997,0.75777227,0.21650635,0.3348482,0.8083945,0.21650635,0.29983023,0.72385365,0.125,0.37499997,0.6495191,3.061617e-17,0.28701276,0.6929096,3.061617e-17,0.29983023,0.72385365,-0.125,0.38268366,0.92387944,-0.25,0.43051913,1.0393643,-0.21650635,0.4655371,1.1239052,-0.125,0.32352385,1.2074072,0,0.47835457,1.1548493,0,0.31485504,1.1750549,0.125,0.29117146,1.0866666,0.21650635,0.25881907,0.9659258,0.25,0.2027831,0.7567967,0.125,0.28701276,0.6929096,3.061617e-17,0.1941143,0.7244444,3.061617e-17,0.2027831,0.7567967,-0.125,0.3348482,0.8083945,-0.21650635,0.22646669,0.8451851,-0.21650635,0.25881907,0.9659258,-0.25,0.29117146,1.0866666,-0.21650635,0.31485504,1.1750549,-0.125,0.16315751,1.2393061,0,0.15878572,1.206099,0.125,0.130526,0.9914449,0.25,0.22646669,0.8451851,0.21650635,0.114210255,0.86751425,0.21650635,0.1022663,0.77679074,0.125,0.1941143,0.7244444,3.061617e-17,0.1022663,0.77679074,-0.125,0.130526,0.9914449,-0.25,0.14684176,1.1153755,-0.21650635,0.15878572,1.206099,-0.125,9.4372375e-8,1.25,0,9.1843674e-8,1.2165064,0.125,0.14684176,1.1153755,0.21650635,8.493514e-8,1.125,0.21650635,6.6060664e-8,0.875,0.21650635,5.9152125e-8,0.78349364,0.125,0.097894505,0.7435837,3.061617e-17,5.6623428e-8,0.75,3.061617e-17,0.097894505,0.7435837,3.061617e-17,5.9152125e-8,0.78349364,-0.125,0.114210255,0.86751425,-0.21650635,6.6060664e-8,0.875,-0.21650635,7.54979e-8,1,-0.25,8.493514e-8,1.125,-0.21650635,-0.16315791,1.239306,0,-0.15878612,1.2060989,0.125,-0.14684212,1.1153754,0.21650635,7.54979e-8,1,0.25,-0.13052633,0.9914448,0.25,-0.114210546,0.86751425,0.21650635,-0.10226655,0.77679074,0.125,5.6623428e-8,0.75,3.061617e-17,-0.10226655,0.77679074,-0.125,-0.13052633,0.9914448,-0.25,-0.14684212,1.1153754,-0.21650635,-0.15878612,1.2060989,-0.125,9.1843674e-8,1.2165064,-0.125,-0.32352364,1.2074074,0,-0.29117128,1.0866666,0.21650635,-0.25881892,0.9659259,0.25,-0.22646657,0.84518516,0.21650635,-0.20278297,0.7567968,0.125,-0.09789475,0.7435836,3.061617e-17,-0.1941142,0.7244444,3.061617e-17,-0.09789475,0.7435836,3.061617e-17,-0.20278297,0.7567968,-0.125,-0.114210546,0.86751425,-0.21650635,-0.22646657,0.84518516,-0.21650635,-0.25881892,0.9659259,-0.25,-0.29117128,1.0866666,-0.21650635,-0.31485486,1.175055,-0.125,-0.4783544,1.1548494,0,-0.31485486,1.175055,0.125,-0.46553692,1.1239053,0.125,-0.43051895,1.0393645,0.21650635,-0.33484808,0.80839455,0.21650635,-0.2998301,0.7238537,0.125,-0.1941142,0.7244444,3.061617e-17,-0.28701264,0.6929096,3.061617e-17,-0.2998301,0.7238537,-0.125,-0.38268352,0.9238795,-0.25,-0.46553692,1.1239053,-0.125,-0.6249998,1.0825319,0,-0.5624998,0.9742787,0.21650635,-0.38268352,0.9238795,0.25,-0.49999985,0.8660255,0.25,-0.43749988,0.7577723,0.21650635,-0.3917467,0.67852545,0.125,-0.28701264,0.6929096,3.061617e-17,-0.37499988,0.64951915,3.061617e-17,-0.3917467,0.67852545,-0.125,-0.33484808,0.80839455,-0.21650635,-0.43749988,0.7577723,-0.21650635,-0.49999985,0.8660255,-0.25,-0.43051895,1.0393645,-0.21650635,-0.5624998,0.9742787,-0.21650635,-0.608253,1.0535256,-0.125,-0.76095176,0.99169165,0,-0.608253,1.0535256,0.125,-0.74056214,0.96511936,0.125,-0.6848566,0.89252245,0.21650635,-0.6087614,0.7933533,0.25,-0.53266627,0.6941842,0.21650635,-0.45657107,0.595015,3.061617e-17,-0.37499988,0.64951915,3.061617e-17,-0.45657107,0.595015,3.061617e-17,-0.53266627,0.6941842,-0.21650635,-0.6087614,0.7933533,-0.25,-0.6848566,0.89252245,-0.21650635,-0.74056214,0.96511936,-0.125,-0.8838837,0.88388324,0,-0.8602001,0.8601997,0.125,-0.70710695,0.7071066,0.25,-0.61871856,0.61871827,0.21650635,-0.47696072,0.6215873,0.125,-0.5540138,0.5540135,0.125,-0.5303302,0.53032994,3.061617e-17,-0.47696072,0.6215873,-0.125,-0.61871856,0.61871827,-0.21650635,-0.70710695,0.7071066,-0.25,-0.79549533,0.7954949,-0.21650635,-0.8602001,0.8601997,-0.125,-0.99169165,0.76095176,0,-0.96511936,0.74056214,0.125,-0.79549533,0.7954949,0.21650635,-0.89252245,0.6848566,0.21650635,-0.6941842,0.53266627,0.21650635,-0.6215873,0.47696072,0.125,-0.5303302,0.53032994,3.061617e-17,-0.595015,0.45657107,3.061617e-17,-0.5540138,0.5540135,-0.125,-0.6941842,0.53266627,-0.21650635,-0.7933533,0.6087614,-0.25,-0.96511936,0.74056214,-0.125,-1.0535252,0.6082535,0.125,-0.86602527,0.50000024,0.25,-0.7933533,0.6087614,0.25,-0.7577721,0.4375002,0.21650635,-0.67852527,0.391747,0.125,-0.595015,0.45657107,3.061617e-17,-0.64951897,0.37500018,3.061617e-17,-0.6215873,0.47696072,-0.125,-0.67852527,0.391747,-0.125,-0.86602527,0.50000024,-0.25,-0.89252245,0.6848566,-0.21650635,-0.97427845,0.56250024,-0.21650635,-1.0535252,0.6082535,-0.125,-1.1548494,0.47835436,0,-1.0825316,0.6250003,0,-1.1239053,0.4655369,0.125,-0.97427845,0.56250024,0.21650635,-1.0393645,0.43051893,0.21650635,-0.80839455,0.33484805,0.21650635,-0.7238537,0.29983008,0.125,-0.64951897,0.37500018,3.061617e-17,-0.7238537,0.29983008,-0.125,-0.7577721,0.4375002,-0.21650635,-0.80839455,0.33484805,-0.21650635,-0.9238795,0.3826835,-0.25,-1.1239053,0.4655369,-0.125,-1.175055,0.31485486,0.125,-1.0866666,0.29117128,0.21650635,-0.9238795,0.3826835,0.25,-0.84518516,0.22646657,0.21650635,-0.7567968,0.20278297,0.125,-0.6929096,0.2870126,3.061617e-17,-0.7244444,0.1941142,3.061617e-17,-0.6929096,0.2870126,3.061617e-17,-0.7567968,0.20278297,-0.125,-0.84518516,0.22646657,-0.21650635,-1.0866666,0.29117128,-0.21650635,-1.0393645,0.43051893,-0.21650635,-1.175055,0.31485486,-0.125,-1.239306,0.1631579,0,-1.2074074,0.32352364,0,-1.2060989,0.1587861,0.125,-1.1153754,0.1468421,0.21650635,-0.9659259,0.25881892,0.25,-0.9914448,0.13052632,0.25,-0.86751425,0.11421053,0.21650635,-0.77679074,0.10226654,0.125,-0.7244444,0.1941142,3.061617e-17,-0.7435836,0.09789474,3.061617e-17,-0.86751425,0.11421053,-0.21650635,-0.9914448,0.13052632,-0.25,-0.9659259,0.25881892,-0.25,-1.1153754,0.1468421,-0.21650635,-1.2060989,0.1587861,-0.125,-1.2165064,1.0635036e-7,0.125,-1.125,9.8350625e-8,0.21650635,-1,8.742278e-8,0.25,-0.875,7.649493e-8,0.21650635,-0.78349364,6.849519e-8,0.125,-0.7435836,0.09789474,3.061617e-17,-0.75,6.556708e-8,3.061617e-17,-0.77679074,0.10226654,-0.125,-0.875,7.649493e-8,-0.21650635,-1,8.742278e-8,-0.25,-1.125,9.8350625e-8,-0.21650635,-1.2165064,1.0635036e-7,-0.125,-1.239306,-0.1631579,0,-1.2165064,1.0635036e-7,0.125,-1.25,1.09278474e-7,0,-1.2060989,-0.1587861,0.125,-1.125,9.8350625e-8,0.21650635,-1.1153754,-0.1468421,0.21650635,-1,8.742278e-8,0.25,-0.9914448,-0.13052632,0.25,-0.875,7.649493e-8,0.21650635,-0.86751425,-0.11421053,0.21650635,-0.78349364,6.849519e-8,0.125,-0.77679074,-0.10226654,0.125,-0.75,6.556708e-8,3.061617e-17,-0.75,6.556708e-8,3.061617e-17,-0.77679074,-0.10226654,-0.125,-0.78349364,6.849519e-8,-0.125,-0.875,7.649493e-8,-0.21650635,-0.9914448,-0.13052632,-0.25,-1,8.742278e-8,-0.25,-1.1153754,-0.1468421,-0.21650635,-1.125,9.8350625e-8,-0.21650635,-1.2060989,-0.1587861,-0.125,-1.2165064,1.0635036e-7,-0.125,-1.175055,-0.31485486,0.125,-1.0866666,-0.29117128,0.21650635,-0.9659259,-0.25881892,0.25,-0.84518516,-0.22646657,0.21650635,-0.7567968,-0.20278297,0.125,-0.7435836,-0.09789474,3.061617e-17,-0.7244444,-0.1941142,3.061617e-17,-0.7435836,-0.09789474,3.061617e-17,-0.7567968,-0.20278297,-0.125,-0.86751425,-0.11421053,-0.21650635,-0.84518516,-0.22646657,-0.21650635,-0.9659259,-0.25881892,-0.25,-1.0866666,-0.29117128,-0.21650635,-1.2074074,-0.32352364,0,-1.1548496,-0.47835383,0,-1.1239055,-0.4655364,0.125,-0.9238797,-0.38268307,0.25,-0.80839473,-0.3348477,0.21650635,-0.7238538,-0.29982975,0.125,-0.7244444,-0.1941142,3.061617e-17,-0.6929098,-0.2870123,3.061617e-17,-0.80839473,-0.3348477,-0.21650635,-0.9238797,-0.38268307,-0.25,-1.1239055,-0.4655364,-0.125,-1.175055,-0.31485486,-0.125,-1.0825319,-0.62499976,0,-1.0535256,-0.60825294,0.125,-1.0393647,-0.43051845,0.21650635,-0.9742787,-0.5624998,0.21650635,-0.8660255,-0.49999982,0.25,-0.7577723,-0.43749985,0.21650635,-0.64951915,-0.37499988,3.061617e-17,-0.6929098,-0.2870123,3.061617e-17,-0.64951915,-0.37499988,3.061617e-17,-0.7238538,-0.29982975,-0.125,-0.67852545,-0.39174667,-0.125,-0.7577723,-0.43749985,-0.21650635,-0.9742787,-0.5624998,-0.21650635,-1.0393647,-0.43051845,-0.21650635,-1.0535256,-0.60825294,-0.125,-0.99169165,-0.76095176,0,-0.96511936,-0.74056214,0.125,-0.89252245,-0.6848566,0.21650635,-0.6941842,-0.53266627,0.21650635,-0.67852545,-0.39174667,0.125,-0.6215873,-0.47696072,0.125,-0.595015,-0.45657107,3.061617e-17,-0.6941842,-0.53266627,-0.21650635,-0.8660255,-0.49999982,-0.25,-0.7933533,-0.6087614,-0.25,-0.96511936,-0.74056214,-0.125,-0.8838837,-0.88388324,0,-0.79549533,-0.7954949,0.21650635,-0.7933533,-0.6087614,0.25,-0.70710695,-0.7071066,0.25,-0.61871856,-0.61871827,0.21650635,-0.5540138,-0.5540135,0.125,-0.595015,-0.45657107,3.061617e-17,-0.5303302,-0.53032994,3.061617e-17,-0.6215873,-0.47696072,-0.125,-0.5540138,-0.5540135,-0.125,-0.70710695,-0.7071066,-0.25,-0.89252245,-0.6848566,-0.21650635,-0.79549533,-0.7954949,-0.21650635,-0.8602001,-0.8601997,-0.125,-0.7405627,-0.965119,0.125,-0.8602001,-0.8601997,0.125,-0.6848571,-0.89252216,0.21650635,-0.5326666,-0.6941839,0.21650635,-0.47696105,-0.62158704,0.125,-0.5303302,-0.53032994,3.061617e-17,-0.4565714,-0.59501475,3.061617e-17,-0.47696105,-0.62158704,-0.125,-0.61871856,-0.61871827,-0.21650635,-0.5326666,-0.6941839,-0.21650635,-0.60876185,-0.793353,-0.25,-0.6848571,-0.89252216,-0.21650635,-0.7405627,-0.965119,-0.125,-0.7609523,-0.9916913,0,-0.608253,-1.0535256,0.125,-0.5624998,-0.9742787,0.21650635,-0.60876185,-0.793353,0.25,-0.49999985,-0.8660255,0.25,-0.3917467,-0.67852545,0.125,-0.4565714,-0.59501475,3.061617e-17,-0.37499988,-0.64951915,3.061617e-17,-0.3917467,-0.67852545,-0.125,-0.43749988,-0.7577723,-0.21650635,-0.5624998,-0.9742787,-0.21650635,-0.608253,-1.0535256,-0.125,-0.4783544,-1.1548494,0,-0.6249998,-1.0825319,0,-0.46553692,-1.1239053,0.125,-0.43051895,-1.0393645,0.21650635,-0.38268352,-0.9238795,0.25,-0.43749988,-0.7577723,0.21650635,-0.33484808,-0.80839455,0.21650635,-0.2998301,-0.7238537,0.125,-0.37499988,-0.64951915,3.061617e-17,-0.28701264,-0.6929096,3.061617e-17,-0.2998301,-0.7238537,-0.125,-0.38268352,-0.9238795,-0.25,-0.49999985,-0.8660255,-0.25,-0.46553692,-1.1239053,-0.125,-0.3235242,-1.2074072,0,-0.31485543,-1.1750548,0.125,-0.2911718,-1.0866665,0.21650635,-0.25881937,-0.96592575,0.25,-0.20278333,-0.75679666,0.125,-0.28701264,-0.6929096,3.061617e-17,-0.19411454,-0.7244443,3.061617e-17,-0.20278333,-0.75679666,-0.125,-0.33484808,-0.80839455,-0.21650635,-0.22646695,-0.84518504,-0.21650635,-0.25881937,-0.96592575,-0.25,-0.43051895,-1.0393645,-0.21650635,-0.31485543,-1.1750548,-0.125,-0.16315849,-1.239306,0,-0.14684264,-1.1153754,0.21650635,-0.1305268,-0.99144477,0.25,-0.22646695,-0.84518504,0.21650635,-0.102266915,-0.7767907,0.125,-0.19411454,-0.7244443,3.061617e-17,-0.0978951,-0.74358356,3.061617e-17,-0.102266915,-0.7767907,-0.125,-0.1305268,-0.99144477,-0.25,-0.2911718,-1.0866665,-0.21650635,-0.14684264,-1.1153754,-0.21650635,-0.15878668,-1.2060989,-0.125,9.4372375e-8,-1.25,0,-0.15878668,-1.2060989,0.125,9.1843674e-8,-1.2165064,0.125,7.54979e-8,-1,0.25,6.6060664e-8,-0.875,0.21650635,-0.11421095,-0.8675142,0.21650635,5.6623428e-8,-0.75,3.061617e-17,-0.0978951,-0.74358356,3.061617e-17,5.6623428e-8,-0.75,3.061617e-17,5.9152125e-8,-0.78349364,-0.125,-0.11421095,-0.8675142,-0.21650635,6.6060664e-8,-0.875,-0.21650635,7.54979e-8,-1,-0.25,8.493514e-8,-1.125,-0.21650635,9.1843674e-8,-1.2165064,-0.125,0.15878572,-1.206099,0.125,8.493514e-8,-1.125,0.21650635,0.14684176,-1.1153755,0.21650635,0.130526,-0.9914449,0.25,0.114210255,-0.86751425,0.21650635,5.9152125e-8,-0.78349364,0.125,0.1022663,-0.77679074,0.125,0.097894505,-0.7435837,3.061617e-17,0.114210255,-0.86751425,-0.21650635,0.130526,-0.9914449,-0.25,0.14684176,-1.1153755,-0.21650635,0.15878572,-1.206099,-0.125,0.32352325,-1.2074075,0,0.16315751,-1.2393061,0,0.31485447,-1.175055,0.125,0.29117092,-1.0866667,0.21650635,0.2588186,-0.96592593,0.25,0.22646627,-0.84518516,0.21650635,0.19411394,-0.72444445,3.061617e-17,0.097894505,-0.7435837,3.061617e-17,0.19411394,-0.72444445,3.061617e-17,0.1022663,-0.77679074,-0.125,0.20278272,-0.75679684,-0.125,0.2588186,-0.96592593,-0.25,0.29117092,-1.0866667,-0.21650635,0.31485447,-1.175055,-0.125,0.47835457,-1.1548493,0,0.4655371,-1.1239052,0.125,0.43051913,-1.0393643,0.21650635,0.38268366,-0.92387944,0.25,0.3348482,-0.8083945,0.21650635,0.20278272,-0.75679684,0.125,0.29983023,-0.72385365,0.125,0.28701276,-0.6929096,3.061617e-17,0.29983023,-0.72385365,-0.125,0.22646627,-0.84518516,-0.21650635,0.3348482,-0.8083945,-0.21650635,0.43051913,-1.0393643,-0.21650635,0.4655371,-1.1239052,-0.125,0.62499994,-1.0825318,0,0.6082531,-1.0535254,0.125,0.49999997,-0.86602545,0.25,0.43749997,-0.75777227,0.21650635,0.3917468,-0.67852545,0.125,0.28701276,-0.6929096,3.061617e-17,0.37499997,-0.6495191,3.061617e-17,0.3917468,-0.67852545,-0.125,0.43749997,-0.75777227,-0.21650635,0.38268366,-0.92387944,-0.25,0.49999997,-0.86602545,-0.25,0.56249994,-0.9742786,-0.21650635,0.74056184,-0.9651196,0.125,0.56249994,-0.9742786,0.21650635,0.68485636,-0.8925227,0.21650635,0.6087612,-0.7933535,0.25,0.532666,-0.6941843,0.21650635,0.4769605,-0.6215874,0.125,0.37499997,-0.6495191,3.061617e-17,0.4565709,-0.5950151,3.061617e-17,0.4769605,-0.6215874,-0.125,0.532666,-0.6941843,-0.21650635,0.6087612,-0.7933535,-0.25,0.74056184,-0.9651196,-0.125,0.6082531,-1.0535254,-0.125,0.7609515,-0.9916919,0,0.86019945,-0.8602004,0.125,0.7071064,-0.7071072,0.25,0.6187181,-0.6187188,0.21650635,0.5540134,-0.55401397,0.125,0.4565709,-0.5950151,3.061617e-17,0.5303298,-0.5303304,3.061617e-17,0.5540134,-0.55401397,-0.125,0.6187181,-0.6187188,-0.21650635,0.7071064,-0.7071072,-0.25,0.68485636,-0.8925227,-0.21650635,0.86019945,-0.8602004,-0.125,0.883883,-0.88388395,0,0.9651195,-0.740562,0.125,0.79549474,-0.79549557,0.21650635,0.79335344,-0.6087613,0.25,0.69418424,-0.53266615,0.21650635,0.6215874,-0.4769606,0.125,0.5303298,-0.5303304,3.061617e-17,0.59501505,-0.45657098,3.061617e-17,0.69418424,-0.53266615,-0.21650635,0.79335344,-0.6087613,-0.25,0.79549474,-0.79549557,-0.21650635,0.89252263,-0.6848565,-0.21650635,0.9651195,-0.740562,-0.125,1.0825317,-0.6250001,0,0.9916918,-0.76095164,0,1.0535253,-0.6082533,0.125,0.89252263,-0.6848565,0.21650635,0.9742785,-0.5625001,0.21650635,0.8660253,-0.5000001,0.25,0.75777215,-0.43750012,0.21650635,0.6785253,-0.3917469,0.125,0.59501505,-0.45657098,3.061617e-17,0.64951897,-0.3750001,3.061617e-17,0.6215874,-0.4769606,-0.125,0.75777215,-0.43750012,-0.21650635,0.8660253,-0.5000001,-0.25,1.0535253,-0.6082533,-0.125,1.1548493,-0.47835475,0,1.1239052,-0.46553728,0.125,0.9238794,-0.3826838,0.25,0.80839443,-0.33484834,0.21650635,0.72385365,-0.29983035,0.125,0.64951897,-0.3750001,3.061617e-17,0.69290954,-0.28701288,3.061617e-17,0.6785253,-0.3917469,-0.125,0.72385365,-0.29983035,-0.125,0.80839443,-0.33484834,-0.21650635,0.9238794,-0.3826838,-0.25,0.9742785,-0.5625001,-0.21650635,1.0393643,-0.43051928,-0.21650635,1.1239052,-0.46553728,-0.125,1.2074074,-0.32352346,0,1.175055,-0.31485468,0.125,1.0393643,-0.43051928,0.21650635,1.0866666,-0.29117113,0.21650635,0.9659259,-0.25881878,0.25,0.84518516,-0.22646643,0.21650635,0.7567968,-0.20278287,0.125,0.69290954,-0.28701288,3.061617e-17,0.7244444,-0.19411409,3.061617e-17,0.84518516,-0.22646643,-0.21650635,0.9659259,-0.25881878,-0.25,1.0866666,-0.29117113,-0.21650635,1.175055,-0.31485468,-0.125,1.206099,-0.15878591,0.125,1.1153755,-0.14684194,0.21650635,0.9914449,-0.13052617,0.25,0.86751425,-0.1142104,0.21650635,0.7435837,-0.097894624,3.061617e-17,0.7244444,-0.19411409,3.061617e-17,0.7435837,-0.097894624,3.061617e-17,0.7567968,-0.20278287,-0.125,0.77679074,-0.10226642,-0.125,0.9914449,-0.13052617,-0.25,1.1153755,-0.14684194,-0.21650635,1.206099,-0.15878591,-0.125,1.2393061,-0.16315772,0,0.77679074,-0.10226642,0.125,0.86751425,-0.1142104,-0.21650635,-1.25,1.09278474e-7,0,-0.75,6.556708e-8,3.061617e-17,-0.78349364,6.849519e-8,-0.125]),
+ uvs: new Float32Array([0.5208333,0.5,0.5,0.5833333,0.5,0.5,0.5208333,0.6666667,0.5,0.6666667,0.5,0.75,0.5208333,0.75,0.5,0.8333333,0.5208333,0.8333333,0.5,0.9166667,0.5208333,1,0.5,1,0.5208333,2.220446e-16,0.5,0.083333336,0.5,2.220446e-16,0.5208333,0.083333336,0.5,0.16666667,0.5208333,0.16666667,0.5,0.25,0.5208333,0.25,0.5,0.33333334,0.5208333,0.33333334,0.5,0.41666666,0.5208333,0.41666666,0.5416667,0.5,0.5208333,0.5833333,0.5416667,0.5833333,0.5416667,0.6666667,0.5416667,0.75,0.5416667,0.9166667,0.5208333,0.9166667,0.5416667,2.220446e-16,0.5416667,0.083333336,0.5416667,0.25,0.5416667,0.33333334,0.5416667,0.41666666,0.5625,0.5833333,0.5625,0.6666667,0.5625,0.8333333,0.5416667,0.8333333,0.5625,0.9166667,0.5625,1,0.5416667,1,0.5625,2.220446e-16,0.5625,0.083333336,0.5416667,0.16666667,0.5625,0.25,0.5625,0.33333334,0.5625,0.41666666,0.5625,0.5,0.5833333,0.5833333,0.5833333,0.6666667,0.5833333,0.75,0.5625,0.75,0.5833333,0.9166667,0.5833333,2.220446e-16,0.5833333,0.083333336,0.5625,0.16666667,0.5833333,0.25,0.5833333,0.33333334,0.5833333,0.41666666,0.6041667,0.5,0.5833333,0.5,0.6041667,0.6666667,0.6041667,0.75,0.5833333,0.8333333,0.6041667,0.9166667,0.5833333,1,0.6041667,2.220446e-16,0.6041667,0.083333336,0.5833333,0.16666667,0.6041667,0.16666667,0.6041667,0.25,0.6041667,0.33333334,0.625,0.5,0.6041667,0.5833333,0.625,0.5833333,0.625,0.6666667,0.625,0.75,0.6041667,0.8333333,0.625,0.8333333,0.625,0.9166667,0.6041667,1,0.625,0.083333336,0.625,0.16666667,0.625,0.25,0.625,0.41666666,0.6041667,0.41666666,0.6458333,0.5,0.6458333,0.6666667,0.6458333,0.75,0.6458333,0.9166667,0.625,1,0.6458333,2.220446e-16,0.625,2.220446e-16,0.6458333,0.083333336,0.6458333,0.25,0.6458333,0.33333334,0.625,0.33333334,0.6458333,0.41666666,0.6666667,0.5,0.6458333,0.5833333,0.6666667,0.6666667,0.6666667,0.75,0.6458333,0.8333333,0.6666667,0.9166667,0.6458333,1,0.6666667,2.220446e-16,0.6666667,0.083333336,0.6458333,0.16666667,0.6666667,0.16666667,0.6666667,0.25,0.6666667,0.33333334,0.6666667,0.41666666,0.6875,0.5833333,0.6666667,0.5833333,0.6875,0.6666667,0.6875,0.75,0.6666667,0.8333333,0.6875,0.8333333,0.6875,0.9166667,0.6666667,1,0.6875,2.220446e-16,0.6875,0.083333336,0.6875,0.25,0.6875,0.33333334,0.6875,0.41666666,0.7083333,0.5,0.6875,0.5,0.7083333,0.5833333,0.7083333,0.6666667,0.7083333,0.75,0.7083333,0.9166667,0.6875,1,0.7083333,2.220446e-16,0.7083333,0.083333336,0.6875,0.16666667,0.7083333,0.16666667,0.7083333,0.25,0.7083333,0.33333334,0.7083333,0.41666666,0.7291667,0.5,0.7291667,0.5833333,0.7291667,0.75,0.7083333,0.8333333,0.7291667,0.8333333,0.7291667,0.9166667,0.7083333,1,0.7291667,0.083333336,0.7291667,0.25,0.7291667,0.33333334,0.7291667,0.41666666,0.75,0.5,0.75,0.5833333,0.7291667,0.6666667,0.75,0.6666667,0.75,0.8333333,0.75,0.9166667,0.7291667,1,0.75,2.220446e-16,0.7291667,2.220446e-16,0.75,0.083333336,0.7291667,0.16666667,0.75,0.16666667,0.75,0.25,0.75,0.33333334,0.7708333,0.5,0.7708333,0.5833333,0.7708333,0.6666667,0.75,0.75,0.7708333,0.75,0.7708333,0.8333333,0.7708333,0.9166667,0.75,1,0.7708333,0.083333336,0.7708333,0.25,0.7708333,0.33333334,0.7708333,0.41666666,0.75,0.41666666,0.7916667,0.5,0.7916667,0.6666667,0.7916667,0.75,0.7916667,0.8333333,0.7916667,0.9166667,0.7708333,1,0.7916667,2.220446e-16,0.7708333,2.220446e-16,0.7916667,0.083333336,0.7708333,0.16666667,0.7916667,0.16666667,0.7916667,0.25,0.7916667,0.33333334,0.7916667,0.41666666,0.8125,0.5,0.7916667,0.5833333,0.8125,0.5833333,0.8125,0.6666667,0.8125,0.8333333,0.8125,0.9166667,0.7916667,1,0.8125,2.220446e-16,0.8125,0.083333336,0.8125,0.25,0.8125,0.41666666,0.8333333,0.5,0.8333333,0.6666667,0.8125,0.75,0.8333333,0.75,0.8333333,0.8333333,0.8333333,0.9166667,0.8125,1,0.8333333,2.220446e-16,0.8333333,0.083333336,0.8125,0.16666667,0.8333333,0.16666667,0.8333333,0.25,0.8125,0.33333334,0.8333333,0.33333334,0.8333333,0.41666666,0.8541667,0.5,0.8333333,0.5833333,0.8541667,0.5833333,0.8541667,0.6666667,0.8541667,0.75,0.8541667,0.8333333,0.8541667,1,0.8333333,1,0.8541667,2.220446e-16,0.8541667,0.16666667,0.8541667,0.25,0.8541667,0.33333334,0.8541667,0.41666666,0.875,0.5,0.875,0.5833333,0.875,0.75,0.875,0.8333333,0.8541667,0.9166667,0.875,0.9166667,0.875,2.220446e-16,0.8541667,0.083333336,0.875,0.16666667,0.875,0.25,0.875,0.33333334,0.875,0.41666666,0.8958333,0.5,0.8958333,0.5833333,0.875,0.6666667,0.8958333,0.6666667,0.8958333,0.8333333,0.8958333,0.9166667,0.875,1,0.8958333,2.220446e-16,0.875,0.083333336,0.8958333,0.16666667,0.8958333,0.25,0.8958333,0.41666666,0.9166667,0.5833333,0.9166667,0.75,0.8958333,0.75,0.9166667,0.8333333,0.9166667,0.9166667,0.8958333,1,0.9166667,2.220446e-16,0.8958333,0.083333336,0.9166667,0.083333336,0.9166667,0.25,0.8958333,0.33333334,0.9166667,0.33333334,0.9166667,0.41666666,0.9375,0.5,0.9166667,0.5,0.9375,0.5833333,0.9166667,0.6666667,0.9375,0.6666667,0.9375,0.8333333,0.9375,0.9166667,0.9166667,1,0.9375,0.083333336,0.9166667,0.16666667,0.9375,0.16666667,0.9375,0.25,0.9375,0.41666666,0.9583333,0.5833333,0.9583333,0.6666667,0.9375,0.75,0.9583333,0.8333333,0.9583333,0.9166667,0.9375,1,0.9583333,2.220446e-16,0.9375,2.220446e-16,0.9583333,0.083333336,0.9583333,0.16666667,0.9583333,0.33333334,0.9375,0.33333334,0.9583333,0.41666666,0.9791667,0.5,0.9583333,0.5,0.9791667,0.5833333,0.9791667,0.6666667,0.9583333,0.75,0.9791667,0.75,0.9791667,0.8333333,0.9791667,0.9166667,0.9583333,1,0.9791667,2.220446e-16,0.9791667,0.16666667,0.9791667,0.25,0.9583333,0.25,0.9791667,0.33333334,0.9791667,0.41666666,1,0.5833333,1,0.6666667,1,0.75,1,0.8333333,1,0.9166667,0.9791667,1,1,2.220446e-16,0.9791667,0.083333336,1,0.16666667,1,0.25,1,0.33333334,1,0.41666666,0.020833334,0.5,8.881784e-16,0.5833333,8.881784e-16,0.5,0.020833334,0.5833333,8.881784e-16,0.6666667,0.020833334,0.6666667,8.881784e-16,0.75,0.020833334,0.75,8.881784e-16,0.8333333,0.020833334,0.8333333,8.881784e-16,0.9166667,0.020833334,0.9166667,8.881784e-16,1,8.881784e-16,2.220446e-16,0.020833334,0.083333336,8.881784e-16,0.083333336,8.881784e-16,0.16666667,0.020833334,0.25,8.881784e-16,0.25,0.020833334,0.33333334,8.881784e-16,0.33333334,0.020833334,0.41666666,8.881784e-16,0.41666666,0.041666668,0.5833333,0.041666668,0.6666667,0.041666668,0.75,0.041666668,0.8333333,0.041666668,0.9166667,0.020833334,1,0.041666668,2.220446e-16,0.020833334,2.220446e-16,0.041666668,0.083333336,0.020833334,0.16666667,0.041666668,0.16666667,0.041666668,0.25,0.041666668,0.33333334,0.041666668,0.5,0.0625,0.5,0.0625,0.5833333,0.0625,0.75,0.0625,0.8333333,0.0625,0.9166667,0.041666668,1,0.0625,2.220446e-16,0.0625,0.16666667,0.0625,0.25,0.0625,0.41666666,0.041666668,0.41666666,0.083333336,0.5,0.083333336,0.5833333,0.0625,0.6666667,0.083333336,0.6666667,0.083333336,0.75,0.083333336,0.8333333,0.083333336,1,0.0625,1,0.083333336,2.220446e-16,0.0625,0.083333336,0.083333336,0.083333336,0.083333336,0.16666667,0.083333336,0.33333334,0.0625,0.33333334,0.083333336,0.41666666,0.104166664,0.5,0.104166664,0.5833333,0.104166664,0.6666667,0.104166664,0.8333333,0.083333336,0.9166667,0.104166664,0.9166667,0.104166664,2.220446e-16,0.104166664,0.16666667,0.083333336,0.25,0.104166664,0.25,0.104166664,0.41666666,0.125,0.5,0.125,0.6666667,0.104166664,0.75,0.125,0.75,0.125,0.8333333,0.125,0.9166667,0.104166664,1,0.125,2.220446e-16,0.104166664,0.083333336,0.125,0.083333336,0.125,0.25,0.104166664,0.33333334,0.125,0.33333334,0.125,0.41666666,0.14583333,0.5833333,0.125,0.5833333,0.14583333,0.6666667,0.14583333,0.8333333,0.14583333,0.9166667,0.125,1,0.14583333,2.220446e-16,0.14583333,0.083333336,0.125,0.16666667,0.14583333,0.16666667,0.14583333,0.25,0.14583333,0.33333334,0.14583333,0.41666666,0.14583333,0.5,0.16666667,0.5833333,0.16666667,0.6666667,0.14583333,0.75,0.16666667,0.75,0.16666667,0.9166667,0.14583333,1,0.16666667,2.220446e-16,0.16666667,0.083333336,0.16666667,0.16666667,0.16666667,0.33333334,0.16666667,0.41666666,0.1875,0.5,0.16666667,0.5,0.1875,0.5833333,0.1875,0.6666667,0.1875,0.75,0.16666667,0.8333333,0.1875,0.8333333,0.1875,0.9166667,0.16666667,1,0.1875,2.220446e-16,0.1875,0.083333336,0.1875,0.25,0.16666667,0.25,0.1875,0.41666666,0.20833333,0.5,0.20833333,0.5833333,0.20833333,0.6666667,0.20833333,0.75,0.20833333,0.9166667,0.1875,1,0.20833333,2.220446e-16,0.20833333,0.083333336,0.1875,0.16666667,0.20833333,0.16666667,0.20833333,0.25,0.1875,0.33333334,0.20833333,0.41666666,0.22916667,0.5,0.22916667,0.6666667,0.22916667,0.75,0.20833333,0.8333333,0.22916667,0.9166667,0.20833333,1,0.22916667,2.220446e-16,0.22916667,0.083333336,0.22916667,0.25,0.20833333,0.33333334,0.22916667,0.33333334,0.22916667,0.41666666,0.25,0.5,0.22916667,0.5833333,0.25,0.5833333,0.25,0.75,0.25,0.8333333,0.22916667,0.8333333,0.25,1,0.22916667,1,0.25,2.220446e-16,0.25,0.083333336,0.22916667,0.16666667,0.25,0.16666667,0.25,0.25,0.25,0.33333334,0.25,0.41666666,0.27083334,0.5833333,0.25,0.6666667,0.27083334,0.6666667,0.27083334,0.75,0.27083334,0.8333333,0.25,0.9166667,0.27083334,0.9166667,0.27083334,2.220446e-16,0.27083334,0.16666667,0.27083334,0.25,0.27083334,0.33333334,0.27083334,0.41666666,0.29166666,0.5,0.27083334,0.5,0.29166666,0.5833333,0.29166666,0.6666667,0.29166666,0.75,0.29166666,0.8333333,0.29166666,1,0.27083334,1,0.29166666,2.220446e-16,0.27083334,0.083333336,0.29166666,0.083333336,0.29166666,0.25,0.29166666,0.33333334,0.29166666,0.41666666,0.3125,0.5,0.3125,0.5833333,0.3125,0.6666667,0.3125,0.75,0.3125,0.8333333,0.29166666,0.9166667,0.3125,0.9166667,0.3125,2.220446e-16,0.3125,0.083333336,0.29166666,0.16666667,0.3125,0.16666667,0.3125,0.33333334,0.3125,0.41666666,0.33333334,0.5,0.33333334,0.5833333,0.33333334,0.75,0.33333334,0.8333333,0.33333334,0.9166667,0.3125,1,0.33333334,2.220446e-16,0.33333334,0.083333336,0.33333334,0.16666667,0.3125,0.25,0.33333334,0.25,0.33333334,0.33333334,0.35416666,0.5833333,0.33333334,0.6666667,0.35416666,0.6666667,0.35416666,0.75,0.35416666,0.8333333,0.35416666,0.9166667,0.33333334,1,0.35416666,2.220446e-16,0.35416666,0.083333336,0.35416666,0.16666667,0.35416666,0.25,0.35416666,0.41666666,0.33333334,0.41666666,0.35416666,0.5,0.375,0.5833333,0.375,0.75,0.375,0.8333333,0.375,0.9166667,0.35416666,1,0.375,2.220446e-16,0.375,0.083333336,0.375,0.16666667,0.375,0.25,0.35416666,0.33333334,0.375,0.41666666,0.375,0.5,0.39583334,0.5833333,0.375,0.6666667,0.39583334,0.75,0.39583334,0.8333333,0.39583334,0.9166667,0.375,1,0.39583334,2.220446e-16,0.39583334,0.16666667,0.39583334,0.25,0.375,0.33333334,0.39583334,0.33333334,0.39583334,0.41666666,0.41666666,0.5,0.39583334,0.5,0.41666666,0.5833333,0.39583334,0.6666667,0.41666666,0.6666667,0.41666666,0.75,0.41666666,0.8333333,0.41666666,0.9166667,0.39583334,1,0.41666666,2.220446e-16,0.39583334,0.083333336,0.41666666,0.16666667,0.41666666,0.25,0.41666666,0.41666666,0.4375,0.5,0.4375,0.5833333,0.4375,0.75,0.4375,0.8333333,0.4375,0.9166667,0.41666666,1,0.4375,2.220446e-16,0.41666666,0.083333336,0.4375,0.083333336,0.4375,0.16666667,0.4375,0.25,0.41666666,0.33333334,0.4375,0.33333334,0.4375,0.41666666,0.45833334,0.5,0.45833334,0.5833333,0.4375,0.6666667,0.45833334,0.6666667,0.45833334,0.75,0.45833334,0.8333333,0.45833334,0.9166667,0.4375,1,0.45833334,2.220446e-16,0.45833334,0.16666667,0.45833334,0.25,0.45833334,0.33333334,0.45833334,0.41666666,0.47916666,0.5833333,0.47916666,0.6666667,0.47916666,0.75,0.47916666,0.8333333,0.47916666,1,0.45833334,1,0.47916666,2.220446e-16,0.45833334,0.083333336,0.47916666,0.083333336,0.47916666,0.25,0.47916666,0.33333334,0.47916666,0.41666666,0.47916666,0.5,0.47916666,0.9166667,0.47916666,0.16666667,1,0.5,1,1,1,0.083333336]),
vertexCount: 637
});
diff --git a/src/meshes/trianglething.ply b/src/meshes/trianglething.ply
deleted file mode 100644
index b86126b..0000000
--- a/src/meshes/trianglething.ply
+++ /dev/null
@@ -1,76 +0,0 @@
-ply
-format ascii 1.0
-comment Created in Blender version 3.6.4
-element vertex 31
-property float x
-property float y
-property float z
-property float nx
-property float ny
-property float nz
-property uchar red
-property uchar green
-property uchar blue
-property uchar alpha
-property float s
-property float t
-element face 26
-property list uchar uint vertex_indices
-end_header
-0 2.609 0 0 -1 8.3803394e-07 0 1 255 255 0.00013659838 0.8180941
--0.368004 2.9959495 0.50652 -0.5257306 -0.44721383 0.723607 0 1 255 255 0.15755458 0.7272099
--0.595448 2.9959495 -0.19346951 -0.8506533 -0.44721213 -0.2763879 0 1 255 255 0.1575546 0.9089782
-0 2.609 0 0 -1 8.3803394e-07 0 1 255 255 0.00013659043 0.6363257
-0.368004 2.9959495 0.50652 0.5257306 -0.4472139 0.723607 0 1 255 255 0.15755458 0.54544157
-0 2.609 0 0 -1 8.3803394e-07 0 1 255 255 0.0001365666 0.09102075
--0.595448 2.9959495 -0.19346951 -0.8506533 -0.44721213 -0.2763879 0 1 255 255 0.15755455 0.00013656964
-0 2.9959495 -0.6260975 0 -0.44721153 -0.89442825 0 1 255 255 0.15755457 0.18190491
-0 2.609 0 0 -1 8.3803394e-07 0 1 255 255 0.00013657454 0.2727891
-0.595448 2.9959495 -0.19346951 0.8506533 -0.4472122 -0.27638793 0 1 255 255 0.15755457 0.36367324
-0 2.609 0 0 -1 8.3803394e-07 0 1 255 255 0.00013658249 0.45455742
-0 3.6220505 0.6260975 0 0.44721153 0.89442825 0 1 255 255 0.31497157 0.6363257
--0.595448 3.6220505 0.19346951 -0.8506533 0.44721216 0.27638793 0 1 255 255 0.31497157 0.8180941
--0.368004 3.6220505 -0.50652 -0.5257306 0.4472139 -0.72360694 0 1 255 255 0.31497154 0.09102073
-0.368004 3.6220505 -0.50652 0.5257306 0.4472139 -0.72360694 0 1 255 255 0.31497154 0.27278906
-0.595448 3.6220505 0.19346951 0.85065323 0.4472122 0.2763879 0 1 255 255 0.31497154 0.45455742
--0.368004 3.6220505 -0.50652 -0.5257306 0.4472139 -0.72360694 0 1 255 255 0.31497157 0.9998634
-0 4.0090003 0 0 1 -8.165459e-07 0 1 255 255 0.47238955 0.72720987
-0 4.0090003 0 0 1 -8.165459e-07 0 1 255 255 0.47238958 0.9089782
-0 4.0090003 0 0 1 -8.165459e-07 0 1 255 255 0.47238955 0.1819049
-0 4.0090003 0 0 1 -8.165459e-07 0 1 255 255 0.47238955 0.36367324
-0 4.0090003 0 0 1 -8.165459e-07 0 1 255 255 0.47238955 0.54544157
-1 0 0 0.8999471 -0.43599886 2.4163015e-07 0 1 255 255 0.8119813 0.33945516
-0 2.5 0 -5.150958e-08 1 0 0 1 255 255 0.642322 0.16979587
--4.3711392e-08 0 1 -3.0203772e-08 -0.4359989 0.8999472 0 1 255 255 0.8119813 0.00013659486
--1 0 -8.7422784e-08 -0.8999471 -0.4359989 -2.4291313e-07 0 1 255 255 0.47266275 0.00013660162
--4.3711392e-08 0 1 -3.0203772e-08 -0.4359989 0.8999472 0 1 255 255 0.81198126 0.6790469
-1.19248815e-08 0 -1 0 -0.43599886 -0.8999471 0 1 255 255 0.47266275 0.33972836
-1 0 0 0.8999471 -0.43599886 2.4163015e-07 0 1 255 255 0.47266272 0.6790469
-1.19248815e-08 0 -1 0 -0.43599886 -0.8999471 0 1 255 255 0.47266275 0.33945513
--1 0 -8.7422784e-08 -0.8999471 -0.4359989 -2.4291313e-07 0 1 255 255 0.81198126 0.3397284
-3 0 1 2
-3 1 3 4
-3 5 6 7
-3 8 7 9
-3 10 9 4
-3 1 4 11
-3 2 1 12
-3 7 6 13
-3 9 7 14
-3 4 9 15
-3 1 11 12
-3 2 12 16
-3 7 13 14
-3 9 14 15
-3 4 15 11
-3 12 11 17
-3 16 12 18
-3 14 13 19
-3 15 14 20
-3 11 15 21
-3 22 23 24
-3 24 23 25
-3 26 27 28
-3 25 23 29
-3 29 23 22
-3 26 30 27
diff --git a/src/meshes/trianglething.ts b/src/meshes/trianglething.ts
deleted file mode 100644
index 3d5856d..0000000
--- a/src/meshes/trianglething.ts
+++ /dev/null
@@ -1,28 +0,0 @@
-
-import { Mesh } from "../renderer/mesh";
-
-// prettier-ignore
-const positions = new Float32Array([0,2.609,0,-0.368004,2.9959495,0.50652,-0.595448,2.9959495,-0.19346951,0,2.609,0,0.368004,2.9959495,0.50652,0,2.609,0,-0.595448,2.9959495,-0.19346951,0,2.9959495,-0.6260975,0,2.609,0,0.595448,2.9959495,-0.19346951,0,2.609,0,0,3.6220505,0.6260975,-0.595448,3.6220505,0.19346951,-0.368004,3.6220505,-0.50652,0.368004,3.6220505,-0.50652,0.595448,3.6220505,0.19346951,-0.368004,3.6220505,-0.50652,0,4.0090003,0,0,4.0090003,0,0,4.0090003,0,0,4.0090003,0,0,4.0090003,0,1,0,0,0,2.5,0,-4.3711392e-8,0,1,-1,0,-8.7422784e-8,-4.3711392e-8,0,1,1.19248815e-8,0,-1,1,0,0,1.19248815e-8,0,-1,-1,0,-8.7422784e-8]);
-
-// prettier-ignore
-const colors = new Uint8Array([0,1,255,255,0,1,255,255,0,1,255,255,0,1,255,255,0,1,255,255,0,1,255,255,0,1,255,255,0,1,255,255,0,1,255,255,0,1,255,255,0,1,255,255,0,1,255,255,0,1,255,255,0,1,255,255,0,1,255,255,0,1,255,255,0,1,255,255,0,1,255,255,0,1,255,255,0,1,255,255,0,1,255,255,0,1,255,255,0,1,255,255,0,1,255,255,0,1,255,255,0,1,255,255,0,1,255,255,0,1,255,255,0,1,255,255,0,1,255,255,0,1,255,255]);
-
-// prettier-ignore
-const uvs = new Float32Array([0.00013659838,0.8180941,0.15755458,0.7272099,0.1575546,0.9089782,0.00013659043,0.6363257,0.15755458,0.54544157,0.0001365666,0.09102075,0.15755455,0.00013656964,0.15755457,0.18190491,0.00013657454,0.2727891,0.15755457,0.36367324,0.00013658249,0.45455742,0.31497157,0.6363257,0.31497157,0.8180941,0.31497154,0.09102073,0.31497154,0.27278906,0.31497154,0.45455742,0.31497157,0.9998634,0.47238955,0.72720987,0.47238958,0.9089782,0.47238955,0.1819049,0.47238955,0.36367324,0.47238955,0.54544157,0.8119813,0.33945516,0.642322,0.16979587,0.8119813,0.00013659486,0.47266275,0.00013660162,0.81198126,0.6790469,0.47266275,0.33972836,0.47266272,0.6790469,0.47266275,0.33945513,0.81198126,0.3397284]);
-
-
-// prettier-ignore
-const normals = new Float32Array([0,-1,8.3803394e-7,-0.5257306,-0.44721383,0.723607,-0.8506533,-0.44721213,-0.2763879,0,-1,8.3803394e-7,0.5257306,-0.4472139,0.723607,0,-1,8.3803394e-7,-0.8506533,-0.44721213,-0.2763879,0,-0.44721153,-0.89442825,0,-1,8.3803394e-7,0.8506533,-0.4472122,-0.27638793,0,-1,8.3803394e-7,0,0.44721153,0.89442825,-0.8506533,0.44721216,0.27638793,-0.5257306,0.4472139,-0.72360694,0.5257306,0.4472139,-0.72360694,0.85065323,0.4472122,0.2763879,-0.5257306,0.4472139,-0.72360694,0,1,-8.165459e-7,0,1,-8.165459e-7,0,1,-8.165459e-7,0,1,-8.165459e-7,0,1,-8.165459e-7,0.8999471,-0.43599886,2.4163015e-7,-5.150958e-8,1,0,-3.0203772e-8,-0.4359989,0.8999472,-0.8999471,-0.4359989,-2.4291313e-7,-3.0203772e-8,-0.4359989,0.8999472,0,-0.43599886,-0.8999471,0.8999471,-0.43599886,2.4163015e-7,0,-0.43599886,-0.8999471,-0.8999471,-0.4359989,-2.4291313e-7]);
-
-// prettier-ignore
-const faces = new Uint32Array([0,1,2,1,3,4,5,6,7,8,7,9,10,9,4,1,4,11,2,1,12,7,6,13,9,7,14,4,9,15,1,11,12,2,12,16,7,13,14,9,14,15,4,15,11,12,11,17,16,12,18,14,13,19,15,14,20,11,15,21,22,23,24,24,23,25,26,27,28,25,23,29,29,23,22,26,30,27]);
-
-export default new Mesh({
- colors,
- faces,
- name: "src/meshes/trianglething.ply",
- normals,
- positions,
- uvs,
- vertexCount: 31
-});
diff --git a/src/meshes/trianglething/index.ts b/src/meshes/trianglething/index.ts
new file mode 100644
index 0000000..f3bd934
--- /dev/null
+++ b/src/meshes/trianglething/index.ts
@@ -0,0 +1,5 @@
+import trianglething from "./trianglething";
+import texture0 from "./textures/texture0.png";
+import texture1 from "./textures/texture1.png";
+
+export { trianglething, texture0, texture1 };
diff --git a/src/meshes/trianglething/textures/texture0.png b/src/meshes/trianglething/textures/texture0.png
new file mode 100644
index 0000000..4635a2c
Binary files /dev/null and b/src/meshes/trianglething/textures/texture0.png differ
diff --git a/src/meshes/trianglething/textures/texture1.png b/src/meshes/trianglething/textures/texture1.png
new file mode 100644
index 0000000..377d94d
Binary files /dev/null and b/src/meshes/trianglething/textures/texture1.png differ
diff --git a/src/meshes/trianglething/textures/uv-normals.xcf b/src/meshes/trianglething/textures/uv-normals.xcf
new file mode 100644
index 0000000..6d70e17
Binary files /dev/null and b/src/meshes/trianglething/textures/uv-normals.xcf differ
diff --git a/src/meshes/trianglething/textures/uv.png b/src/meshes/trianglething/textures/uv.png
new file mode 100644
index 0000000..7c530d6
Binary files /dev/null and b/src/meshes/trianglething/textures/uv.png differ
diff --git a/src/meshes/trianglething/textures/uv.xcf b/src/meshes/trianglething/textures/uv.xcf
new file mode 100644
index 0000000..cc1b171
Binary files /dev/null and b/src/meshes/trianglething/textures/uv.xcf differ
diff --git a/src/meshes/trianglething/trianglething.blend b/src/meshes/trianglething/trianglething.blend
new file mode 100644
index 0000000..618f25d
Binary files /dev/null and b/src/meshes/trianglething/trianglething.blend differ
diff --git a/src/meshes/trianglething/trianglething.ply b/src/meshes/trianglething/trianglething.ply
new file mode 100644
index 0000000..38ef3a9
--- /dev/null
+++ b/src/meshes/trianglething/trianglething.ply
@@ -0,0 +1,67 @@
+ply
+format ascii 1.0
+comment Created in Blender version 3.6.4
+element vertex 26
+property float x
+property float y
+property float z
+property float nx
+property float ny
+property float nz
+property float s
+property float t
+element face 26
+property list uchar uint vertex_indices
+end_header
+0 2.6090002 0 0 -1 8.3803394e-07 0.7660872 0.5526656
+-0.36800402 2.9959497 0.50652003 -0.5257306 -0.44721383 0.723607 0.6449925 0.52286637
+-0.5954481 2.9959497 -0.19346952 -0.8506533 -0.44721213 -0.2763879 0.8418907 0.33128682
+0.36800402 2.9959497 0.50652003 0.5257306 -0.4472139 0.723607 0.60803074 0.79587877
+0 2.9959497 -0.62609756 0 -0.44721153 -0.89442825 0.96344936 0.40123126
+0.5954481 2.9959497 -0.19346952 0.8506533 -0.4472122 -0.27638793 0.8416727 0.64077806
+0 3.6220508 0.62609756 0 0.44721153 0.89442825 0.50600564 0.49428308
+-0.5954481 3.6220508 0.19346952 -0.8506533 0.44721216 0.27638793 0.704352 0.31297976
+-0.36800402 3.6220508 -0.50652003 -0.5257306 0.4472139 -0.72360694 0.79145527 0.046412975
+0.5954481 2.9959497 -0.19346952 0.8506533 -0.4472122 -0.27638793 0.35179207 0.26814616
+0 2.9959497 -0.62609756 0 -0.44721153 -0.89442825 0.47356877 0.028599411
+0.36800402 3.6220508 -0.50652003 0.5257306 0.4472139 -0.72360694 0.5382167 0.15491244
+0.36800402 2.9959497 0.50652003 0.5257306 -0.4472139 0.723607 0.118150145 0.42324704
+0.5954481 3.6220508 0.19346952 0.85065323 0.4472122 0.2763879 0.40614995 0.39580685
+0 4.0090003 0 0 1 -8.165459e-07 0.5992601 0.26365823
+1.0000001 0 0 0.8999471 -0.43599886 2.4163015e-07 0.4984935 0.5027367
+0 2.5000002 0 -5.150958e-08 1 0 0.24900003 0.7522302
+-4.3711395e-08 0 1.0000001 -3.0203772e-08 -0.4359989 0.8999472 -0.00049349666 0.50273675
+-1.0000001 0 -8.742279e-08 -0.8999471 -0.4359989 -2.4291313e-07 -0.00049346685 1.0017238
+-4.3711395e-08 0 1.0000001 -3.0203772e-08 -0.4359989 0.8999472 0.7633698 0.99398905
+1.1924882e-08 0 -1.0000001 0 -0.43599886 -0.8999471 0.99752307 0.7598357
+1.0000001 0 0 0.8999471 -0.43599886 2.4163015e-07 0.9975231 0.99398893
+1.1924882e-08 0 -1.0000001 0 -0.43599886 -0.8999471 0.49849355 1.0017238
+-4.3711395e-08 0 1.0000001 -3.0203772e-08 -0.4359989 0.8999472 0.99646366 0.7612665
+-1.0000001 0 -8.742279e-08 -0.8999471 -0.4359989 -2.4291313e-07 0.99646366 0.9954198
+1.1924882e-08 0 -1.0000001 0 -0.43599886 -0.8999471 0.7623104 0.9954198
+3 0 1 2
+3 1 0 3
+3 0 2 4
+3 0 4 5
+3 0 5 3
+3 1 3 6
+3 2 1 7
+3 4 2 8
+3 9 10 11
+3 12 9 13
+3 1 6 7
+3 2 7 8
+3 10 8 11
+3 9 11 13
+3 12 13 6
+3 7 6 14
+3 8 7 14
+3 11 8 14
+3 13 11 14
+3 6 13 14
+3 15 16 17
+3 17 16 18
+3 19 20 21
+3 18 16 22
+3 22 16 15
+3 23 24 25
diff --git a/src/meshes/trianglething/trianglething.ts b/src/meshes/trianglething/trianglething.ts
new file mode 100644
index 0000000..df2ecd3
--- /dev/null
+++ b/src/meshes/trianglething/trianglething.ts
@@ -0,0 +1,12 @@
+import { Mesh } from "../../renderer/mesh";
+
+// prettier-ignore
+export default new Mesh({
+ colors: null,
+ faces: new Uint8Array([0,1,2,1,0,3,0,2,4,0,4,5,0,5,3,1,3,6,2,1,7,4,2,8,9,10,11,12,9,13,1,6,7,2,7,8,10,8,11,9,11,13,12,13,6,7,6,14,8,7,14,11,8,14,13,11,14,6,13,14,15,16,17,17,16,18,19,20,21,18,16,22,22,16,15,23,24,25]),
+ name: "src/meshes/trianglething/trianglething.ply",
+ normals: new Float32Array([0,-1,8.3803394e-7,-0.5257306,-0.44721383,0.723607,-0.8506533,-0.44721213,-0.2763879,0.5257306,-0.4472139,0.723607,0,-0.44721153,-0.89442825,0.8506533,-0.4472122,-0.27638793,0,0.44721153,0.89442825,-0.8506533,0.44721216,0.27638793,-0.5257306,0.4472139,-0.72360694,0.8506533,-0.4472122,-0.27638793,0,-0.44721153,-0.89442825,0.5257306,0.4472139,-0.72360694,0.5257306,-0.4472139,0.723607,0.85065323,0.4472122,0.2763879,0,1,-8.165459e-7,0.8999471,-0.43599886,2.4163015e-7,-5.150958e-8,1,0,-3.0203772e-8,-0.4359989,0.8999472,-0.8999471,-0.4359989,-2.4291313e-7,-3.0203772e-8,-0.4359989,0.8999472,0,-0.43599886,-0.8999471,0.8999471,-0.43599886,2.4163015e-7,0,-0.43599886,-0.8999471,-3.0203772e-8,-0.4359989,0.8999472,-0.8999471,-0.4359989,-2.4291313e-7,0,-0.43599886,-0.8999471]),
+ positions: new Float32Array([0,2.6090002,0,-0.36800402,2.9959497,0.50652003,-0.5954481,2.9959497,-0.19346952,0.36800402,2.9959497,0.50652003,0,2.9959497,-0.62609756,0.5954481,2.9959497,-0.19346952,0,3.6220508,0.62609756,-0.5954481,3.6220508,0.19346952,-0.36800402,3.6220508,-0.50652003,0.5954481,2.9959497,-0.19346952,0,2.9959497,-0.62609756,0.36800402,3.6220508,-0.50652003,0.36800402,2.9959497,0.50652003,0.5954481,3.6220508,0.19346952,0,4.0090003,0,1.0000001,0,0,0,2.5000002,0,-4.3711395e-8,0,1.0000001,-1.0000001,0,-8.742279e-8,-4.3711395e-8,0,1.0000001,1.1924882e-8,0,-1.0000001,1.0000001,0,0,1.1924882e-8,0,-1.0000001,-4.3711395e-8,0,1.0000001,-1.0000001,0,-8.742279e-8,1.1924882e-8,0,-1.0000001]),
+ uvs: new Float32Array([0.7660872,0.5526656,0.6449925,0.52286637,0.8418907,0.33128682,0.60803074,0.79587877,0.96344936,0.40123126,0.8416727,0.64077806,0.50600564,0.49428308,0.704352,0.31297976,0.79145527,0.046412975,0.35179207,0.26814616,0.47356877,0.028599411,0.5382167,0.15491244,0.118150145,0.42324704,0.40614995,0.39580685,0.5992601,0.26365823,0.4984935,0.5027367,0.24900003,0.7522302,-0.00049349666,0.50273675,-0.00049346685,1.0017238,0.7633698,0.99398905,0.99752307,0.7598357,0.9975231,0.99398893,0.49849355,1.0017238,0.99646366,0.7612665,0.99646366,0.9954198,0.7623104,0.9954198]),
+ vertexCount: 26
+});
diff --git a/src/meshes/uvsphere-inverted.ply b/src/meshes/uvsphere-inverted.ply
new file mode 100644
index 0000000..6eda60b
--- /dev/null
+++ b/src/meshes/uvsphere-inverted.ply
@@ -0,0 +1,1474 @@
+ply
+format ascii 1.0
+comment Created in Blender version 4.1.1
+element vertex 499
+property float x
+property float y
+property float z
+property float nx
+property float ny
+property float nz
+property float s
+property float t
+element face 960
+property list uchar uint vertex_indices
+end_header
+0.10838638 0.5448951 -0.8314696 -0.10920556 -0.54901874 0.828645 0.3237962 0.18751018
+8.940697e-08 0.7071066 -0.70710677 7.36263e-07 -0.71014285 0.7040576 0.3453794 0.25000855
+2.1606684e-07 0.5555695 -0.8314696 2.4978901e-06 -0.5597739 0.82864535 0.3453772 0.18750808
+5.9604645e-08 0.923879 0.38268346 2.4244364e-06 -0.9247653 -0.38053808 0.34538132 0.6249944
+0.16221167 0.8154931 0.55557024 -0.16257648 -0.81732804 -0.5527602 0.32379758 0.6874911
+0 0.8314696 0.55557024 2.6423356e-06 -0.8333394 -0.55276155 0.34538066 0.68749243
+0.07465784 0.3753303 -0.9238795 -0.075672254 -0.38043365 0.9217071 0.32379434 0.12500846
+6.7055225e-08 0.38268322 -0.9238795 1.0410653e-06 -0.3878866 0.92170715 0.34537262 0.12500627
+0 0.98078525 0.19509032 1.119907e-06 -0.98101544 -0.19392966 0.34538168 0.562497
+0.18023995 0.9061274 0.38268346 -0.18041027 -0.9069968 -0.38053787 0.32379788 0.62499344
+0.038060233 0.19134171 -0.98078525 -0.039207004 -0.19710459 0.9795982 0.32378846 0.06250496
+1.4901161e-08 0.1950901 -0.98078525 1.166384e-07 -0.20096582 0.9795982 0.34535834 0.06250265
+0.19509032 0.98078525 0 -0.19509047 -0.98078525 1.6864028e-08 0.32379806 0.50000006
+0 1 0 1.652696e-06 -1 1.3033653e-06 0.3453818 0.50000006
+1.4901161e-08 0.1950901 0.98078525 1.7456922e-06 -0.2009661 -0.9795982 0.34535834 0.9374974
+0.038060233 0.19134171 0.98078525 -0.039206814 -0.1971043 -0.9795982 0.32378846 0.9374951
+0 0 1 1.2833326e-07 -6.8863573e-09 -1 0.30921382 1
+0 0 -1 -5.5914228e-08 -1.0179833e-08 1 0.30921382 0
+0.19134171 0.9619397 -0.19509032 -0.19138597 -0.96216536 0.19393073 0.32379803 0.43750352
+0 0.98078525 -0.19509032 2.6854111e-06 -0.9810151 0.1939313 0.34538168 0.43750307
+6.7055225e-08 0.38268322 0.9238795 8.80021e-07 -0.38788778 -0.9217066 0.34537262 0.8749938
+0.18023995 0.9061274 -0.38268346 -0.18041024 -0.9069967 0.3805379 0.32379788 0.37500662
+5.9604645e-08 0.923879 -0.38268346 2.4376714e-06 -0.9247653 0.380538 0.34538132 0.37500566
+0 0.55557024 0.8314696 2.79902e-06 -0.5597751 -0.8286445 0.34537724 0.81249183
+0.07465784 0.3753303 0.9238795 -0.07567183 -0.38043144 -0.921708 0.32379434 0.8749916
+0.16221167 0.8154931 -0.55557024 -0.16257653 -0.8173281 0.55276006 0.32379758 0.31250897
+0 0.8314696 -0.55557024 2.6411344e-06 -0.83333945 0.5527615 0.34538066 0.3125077
+8.940697e-08 0.7071066 0.70710677 1.068846e-06 -0.7101427 -0.7040579 0.3453794 0.74999154
+0.10838638 0.5448951 0.8314696 -0.10920691 -0.5490186 -0.82864493 0.3237962 0.8124899
+0.13794969 0.6935199 -0.70710677 -0.13854264 -0.69649535 0.70405966 0.3237971 0.2500102
+0.31818962 0.7681776 -0.55557024 -0.31890693 -0.7699044 0.55276185 0.30221465 0.31250915
+0.31818962 0.7681776 0.55557024 -0.3189069 -0.7699043 -0.552762 0.30221465 0.68749094
+0.13794969 0.6935199 0.70710677 -0.13854262 -0.69649535 -0.7040598 0.3237971 0.74998987
+0.27059805 0.65328145 -0.70710677 -0.2717612 -0.6560843 0.7040592 0.30221492 0.25001046
+0.35355335 0.85355335 0.38268346 -0.35389027 -0.85437256 -0.3805382 0.30221456 0.6249934
+0.21260753 0.5132799 -0.8314696 -0.21421853 -0.5171642 0.82864445 0.30221534 0.18751042
+0.19134171 0.9619397 0.19509032 -0.19138914 -0.96216476 -0.19393094 0.32379803 0.56249654
+0.07465783 0.18023995 -0.98078525 -0.076905526 -0.18566789 0.9795984 0.30221906 0.0625053
+0.38268343 0.92387944 0 -0.3826847 -0.923879 -1.0877161e-06 0.30221444 0.50000006
+0.07465783 0.18023995 0.98078525 -0.076906286 -0.18566822 -0.9795982 0.30221906 0.9374948
+0.37533027 0.9061274 -0.19509032 -0.3754176 -0.90634024 0.19393033 0.30221447 0.4375036
+0.14644662 0.3535534 0.9238795 -0.14843786 -0.35836002 -0.9217072 0.30221626 0.8749913
+0.35355335 0.85355335 -0.38268346 -0.35389027 -0.85437256 0.3805381 0.30221456 0.37500674
+0.21260753 0.5132799 0.8314696 -0.21421826 -0.5171642 -0.8286446 0.30221534 0.8124897
+0.27059805 0.65328145 0.70710677 -0.2717612 -0.65608424 -0.7040592 0.30221492 0.74998957
+0.10838637 0.16221166 0.98078525 -0.111650646 -0.16709697 -0.9795982 0.28064945 0.93749636
+0.10838637 0.16221166 -0.98078525 -0.111651115 -0.16709696 0.97959816 0.28064945 0.06250371
+0.5448951 0.8154931 -0.19509032 -0.54502237 -0.8156847 0.19393066 0.2806309 0.43750325
+0.21260753 0.31818965 0.9238795 -0.21549866 -0.32251528 -0.9217072 0.2806381 0.87499285
+0.5132799 0.7681777 -0.38268346 -0.5137702 -0.7689153 0.38053825 0.28063118 0.3750061
+0.30865827 0.4619397 0.8314696 -0.3109961 -0.46543503 -0.8286445 0.2806344 0.812491
+0.39284748 0.5879378 0.70710677 -0.39453328 -0.59045976 -0.7040602 0.28063267 0.7499907
+0.4619397 0.6913416 -0.55557024 -0.46298003 -0.69289523 0.55276185 0.28063172 0.31250823
+0.4619397 0.6913416 0.55557024 -0.46297997 -0.6928952 -0.5527619 0.28063172 0.68749183
+0.39284748 0.5879378 -0.70710677 -0.39453328 -0.59045976 0.7040602 0.28063267 0.25000933
+0.5132799 0.7681777 0.38268346 -0.51377016 -0.7689153 -0.3805384 0.28063118 0.624994
+0.14644662 0.3535534 -0.9238795 -0.148437 -0.3583585 0.92170805 0.30221626 0.12500878
+0.30865827 0.4619397 -0.8314696 -0.31099617 -0.46543497 0.8286445 0.2806344 0.18750909
+0.37533027 0.9061274 0.19509032 -0.37541893 -0.90633935 -0.19393197 0.30221447 0.5624965
+0.21260753 0.31818965 -0.9238795 -0.21549818 -0.32251525 0.92170733 0.2806381 0.12500729
+0.5448951 0.8154931 0.19509032 -0.5450224 -0.8156847 -0.19393066 0.2806309 0.56249684
+0.5 0.5 0.70710677 -0.5021453 -0.50214624 -0.7040591 0.25905016 0.7499932
+0.5 0.5 -0.70710677 -0.5021454 -0.50214624 0.70405906 0.25905016 0.25000685
+0.6532814 0.65328145 0.38268346 -0.6539061 -0.6539094 -0.38053828 0.25904757 0.6249953
+0.39284745 0.3928474 -0.8314696 -0.39582273 -0.39582145 0.8286433 0.25905314 0.18750617
+0.27059805 0.27059802 -0.9238795 -0.2742781 -0.27427816 0.92170656 0.25905946 0.12500404
+0.55557024 0.8314695 0 -0.55557257 -0.83146805 -1.9273172e-08 0.2806308 0.50000006
+0.6935199 0.69351983 0.19509032 -0.69368213 -0.69368297 -0.19393043 0.25904712 0.5624975
+0.13794968 0.13794966 0.98078525 -0.14210394 -0.14210455 -0.9795982 0.25907895 0.9374998
+0.13794968 0.13794966 -0.98078525 -0.14210466 -0.14210455 0.97959816 0.25907895 0.062500276
+0.6935199 0.69351983 -0.19509032 -0.69368213 -0.69368297 0.19393049 0.25904712 0.43750256
+0.27059805 0.27059802 0.9238795 -0.27427828 -0.27427813 -0.92170656 0.25905946 0.874996
+0.6532814 0.65328145 -0.38268346 -0.6539061 -0.6539094 0.38053828 0.25904757 0.3750048
+0.39284745 0.3928474 0.8314696 -0.39582273 -0.39582148 -0.8286433 0.25905314 0.8124939
+0.8154931 0.544895 -0.19509032 -0.81568414 -0.54502326 0.19393037 0.23746303 0.43750155
+0.70710677 0.7071066 0 -0.70710886 -0.7071047 -1.2045732e-09 0.25904697 0.50000006
+0.16221166 0.10838635 0.98078525 -0.16709556 -0.11165056 -0.9795985 0.2375069 0.937505
+0.7681776 0.51328 -0.38268346 -0.7689127 -0.51377416 0.38053814 0.2374637 0.37500277
+0.31818965 0.2126075 0.9238795 -0.32251444 -0.21549709 -0.9217079 0.23748006 0.87500083
+0.5879377 0.58793765 -0.55557024 -0.58926105 -0.58925855 0.55276203 0.25904852 0.3125063
+0.5879378 0.39284748 0.70710677 -0.59046066 -0.3945339 -0.7040591 0.23746724 0.74999696
+0.5879378 0.39284748 -0.70710677 -0.59046066 -0.39453387 0.7040591 0.23746724 0.25000313
+0.5879377 0.58793765 0.55557024 -0.58926105 -0.5892586 -0.552762 0.25904852 0.6874938
+0.7681776 0.51328 0.38268346 -0.76891273 -0.51377416 -0.38053817 0.2374637 0.6249973
+0.31818965 0.2126075 -0.9238795 -0.32251456 -0.21549709 0.9217078 0.23748006 0.1249992
+0.16221166 0.10838635 -0.98078525 -0.16709624 -0.11165055 0.9795984 0.2375069 0.06249512
+0.8154931 0.544895 0.19509032 -0.8156841 -0.54502326 -0.19393037 0.23746303 0.5624985
+0.46193972 0.3086582 -0.8314696 -0.465435 -0.31099302 0.8286456 0.23747136 0.1875018
+0.65328145 0.27059805 -0.70710677 -0.6560849 -0.27175993 0.704059 0.21588373 0.24999835
+0.8535533 0.3535534 0.38268346 -0.8543707 -0.35389465 -0.38053817 0.21587937 0.62499994
+0.69134164 0.46193963 0.55557024 -0.69289714 -0.4629771 -0.552762 0.23746498 0.68749666
+0.5132799 0.21260746 -0.8314696 -0.5171667 -0.21421678 0.82864344 0.21588881 0.18749614
+0.35355335 0.14644659 -0.9238795 -0.35836157 -0.14843808 0.9217067 0.21589956 0.124992885
+0.83146954 0.55557 0 -0.8314713 -0.5555677 -3.1318905e-08 0.23746282 0.50000006
+0.90612733 0.37533015 0.19509032 -0.9063398 -0.3754186 -0.19393027 0.2158785 0.5624999
+0.18023992 0.07465781 0.98078525 -0.18566795 -0.07690641 -0.9795983 0.21593274 0.9375117
+0.18023992 0.07465781 -0.98078525 -0.18566899 -0.076906495 0.97959805 0.21593274 0.062488437
+0.90612733 0.37533015 -0.19509032 -0.9063398 -0.3754186 0.19393028 0.2158785 0.4375002
+0.35355335 0.14644659 0.9238795 -0.35836017 -0.14843693 -0.9217074 0.21589956 0.8750072
+0.8535533 0.3535534 -0.38268346 -0.8543707 -0.35389465 0.38053817 0.21587937 0.37500015
+0.5132799 0.21260746 0.8314696 -0.5171667 -0.21421678 -0.82864344 0.21588881 0.81250393
+0.46193972 0.3086582 0.8314696 -0.46543506 -0.31099296 -0.8286456 0.23747136 0.8124983
+0.69134164 0.46193963 -0.55557024 -0.69289714 -0.4629771 0.552762 0.23746498 0.31250337
+0.65328145 0.27059805 0.70710677 -0.65608495 -0.27175993 -0.704059 0.21588373 0.7500017
+0.37533024 0.07465781 0.9238795 -0.38043335 -0.07567222 -0.92170715 0.19431776 0.87501466
+0.90612733 0.18023999 -0.38268346 -0.90699565 -0.18041514 0.3805382 0.19429448 0.37499705
+0.7681776 0.3181895 -0.55557024 -0.7699056 -0.31890342 0.552762 0.21588093 0.31249958
+0.6935199 0.1379497 0.70710677 -0.6964962 -0.1385421 -0.704059 0.19429952 0.7500075
+0.6935199 0.1379497 -0.70710677 -0.6964962 -0.13854212 0.70405906 0.19429952 0.2499926
+0.7681776 0.3181895 0.55557024 -0.7699057 -0.31890342 -0.5527619 0.21588093 0.6875005
+0.90612733 0.18023999 0.38268346 -0.90699565 -0.18041514 -0.38053817 0.19429448 0.62500304
+0.37533024 0.07465781 -0.9238795 -0.38043284 -0.07567328 0.92170733 0.19431776 0.124985404
+0.19134167 0.038060214 -0.98078525 -0.19710453 -0.039206438 0.9795982 0.19435601 0.062480476
+0.9238794 0.38268322 0 -0.9238805 -0.38268098 9.636585e-09 0.21587825 0.50000006
+0.96193963 0.19134161 0.19509032 -0.9621653 -0.19138712 -0.1939303 0.19429351 0.56250143
+0.19134167 0.038060214 0.98078525 -0.19710436 -0.039206684 -0.9795982 0.19435601 0.9375196
+0.96193963 0.19134161 -0.19509032 -0.9621653 -0.19138712 0.19393031 0.19429351 0.43749863
+0.92387944 4.4703484e-08 0.38268346 -0.92476517 -2.2006434e-06 -0.38053823 0.17270894 0.6250065
+0.815493 0.16221157 0.55557024 -0.81732714 -0.16257459 -0.5527619 0.19429629 0.687505
+0.5555701 -5.2154064e-08 -0.8314696 -0.55977696 8.609772e-07 0.8286434 0.17272086 0.1874818
+0.54489505 0.108386315 -0.8314696 -0.54901797 -0.10920579 0.8286455 0.19430536 0.1874894
+0.19509026 -1.1175871e-08 -0.98078525 -0.20096566 2.2880218e-07 0.9795983 0.17277627 0.062471557
+0.9807851 0.19509013 0 -0.9807857 -0.19508807 7.227441e-09 0.1942932 0.50000006
+0.98078513 -8.940697e-08 0.19509032 -0.9810153 -3.239351e-07 -0.19393012 0.17270787 0.5625032
+0.19509026 -1.1175871e-08 0.98078525 -0.20096612 1.19322765e-08 -0.97959816 0.17277627 0.9375285
+0.98078513 -8.940697e-08 -0.19509032 -0.9810153 -3.2152667e-07 0.19393016 0.17270787 0.43749687
+0.3826834 -2.2351742e-08 0.9238795 -0.38788792 2.9881908e-09 -0.92170656 0.17273444 0.8750231
+0.92387944 4.4703484e-08 -0.38268346 -0.9247652 -2.201245e-06 0.38053825 0.17270894 0.3749936
+0.5555701 -5.2154064e-08 0.8314696 -0.559777 8.585822e-07 -0.8286432 0.17272086 0.8125183
+0.54489505 0.108386315 0.8314696 -0.54901797 -0.109205805 -0.8286456 0.19430536 0.8125107
+0.815493 0.16221157 -0.55557024 -0.81732714 -0.16257459 0.5527619 0.19429629 0.31249508
+0.7071067 1.4901161e-08 0.70710677 -0.71014154 -5.386311e-07 -0.70405895 0.17271447 0.75001395
+0.7071067 1.4901161e-08 -0.70710677 -0.71014154 -5.377314e-07 0.704059 0.17271447 0.24998616
+0.90612733 -0.1802399 -0.38268346 -0.90699655 0.18041055 0.3805382 0.15112273 0.37498987
+0.37533024 -0.07465785 0.9238795 -0.38043147 0.07567254 -0.9217079 0.15114944 0.87503207
+0.8314694 -8.940697e-08 -0.55557024 -0.8333391 1.8276446e-06 0.55276203 0.17271093 0.31249002
+0.69351983 -0.13794966 0.70710677 -0.69649655 0.13854094 -0.704059 0.15112853 0.75002086
+0.69351983 -0.13794966 -0.70710677 -0.69649655 0.13854088 0.7040588 0.15112853 0.24997927
+0.8314694 -8.940697e-08 0.55557024 -0.83333915 1.8372576e-06 -0.55276203 0.17271093 0.68751
+0.90612733 -0.1802399 0.38268346 -0.90699655 0.18041055 -0.3805382 0.15112273 0.6250102
+0.37533024 -0.07465785 -0.9238795 -0.3804336 0.07567238 0.9217071 0.15114944 0.12496801
+0.3826834 -2.2351742e-08 -0.9238795 -0.38788632 -5.7013636e-07 0.9217072 0.17273444 0.124977
+0.19134165 -0.038060233 -0.98078525 -0.19710426 0.039206702 0.9795983 0.15119328 0.062462013
+0.9999997 -1.6391277e-07 0 -1 2.8524294e-06 0 0.17270754 0.50000006
+0.9619396 -0.19134177 0.19509032 -0.96216553 0.1913862 -0.19393006 0.15112163 0.56250507
+0.19134165 -0.038060233 0.98078525 -0.19710386 0.039206613 -0.9795983 0.15119328 0.9375381
+0.9619396 -0.19134177 -0.19509032 -0.96216553 0.1913862 0.19393009 0.15112163 0.437495
+0.5132798 -0.21260753 -0.8314696 -0.51716393 0.21421854 0.8286446 0.12954839 0.18746544
+0.544895 -0.108386405 -0.8314696 -0.5490172 0.10920745 0.82864577 0.15113525 0.18747374
+0.8535533 -0.3535533 0.38268346 -0.85437244 0.3538906 -0.3805381 0.1295358 0.62501407
+0.18023989 -0.07465782 -0.98078525 -0.18566762 0.076906264 0.9795984 0.12960683 0.062452216
+0.9807849 -0.19509043 0 -0.9807847 0.19509311 0 0.15112127 0.50000006
+0.9061272 -0.3753303 0.19509032 -0.90634024 0.37541792 -0.19393003 0.12953468 0.5625071
+0.18023989 -0.07465782 0.98078525 -0.18566796 0.07690634 -0.9795983 0.12960683 0.93754786
+0.9061272 -0.3753303 -0.19509032 -0.90634024 0.37541792 0.19393003 0.12953468 0.43749303
+0.35355335 -0.14644662 0.9238795 -0.3583604 0.14843823 -0.9217071 0.12956269 0.8750413
+0.8535533 -0.3535533 -0.38268346 -0.85437244 0.3538906 0.38053808 0.1295358 0.37498605
+0.5132798 -0.21260753 0.8314696 -0.5171642 0.21421853 -0.8286445 0.12954839 0.8125347
+0.544895 -0.108386405 0.8314696 -0.5490175 0.10920745 -0.82864565 0.15113525 0.81252635
+0.8154929 -0.16221173 -0.55557024 -0.81732637 0.1625782 0.55276203 0.15112484 0.31248462
+0.6532814 -0.270598 0.70710677 -0.65608543 0.27175856 -0.7040591 0.12954164 0.75002784
+0.6532814 -0.270598 -0.70710677 -0.6560854 0.27175856 0.7040591 0.12954164 0.24997222
+0.8154929 -0.16221173 0.55557024 -0.81732637 0.1625782 -0.5527621 0.15112484 0.6875155
+0.7681775 -0.31818965 -0.55557024 -0.7699043 0.31890666 0.55276215 0.1295379 0.31247908
+0.7681776 -0.51327986 -0.38268346 -0.76891524 0.51377034 0.38053825 0.107948124 0.37498224
+0.5879377 -0.39284742 0.70710677 -0.59046143 0.3945328 -0.7040591 0.107953764 0.7500348
+0.5879377 -0.39284742 -0.70710677 -0.5904615 0.39453274 0.7040591 0.107953764 0.24996524
+0.7681775 -0.31818965 0.55557024 -0.7699044 0.31890666 -0.55276203 0.1295379 0.68752104
+0.7681776 -0.51327986 0.38268346 -0.76891524 0.51377034 -0.38053823 0.107948124 0.6250178
+0.35355335 -0.14644662 -0.9238795 -0.3583589 0.14843713 0.9217078 0.12956269 0.12495878
+0.46193957 -0.30865824 -0.8314696 -0.46543527 0.31099603 0.8286444 0.10796031 0.1874572
+0.3181896 -0.21260752 -0.9238795 -0.32251537 0.21549866 0.9217072 0.10797416 0.124949664
+0.9238791 -0.38268346 0 -0.92387855 0.38268593 -9.636587e-09 0.12953433 0.50000006
+0.8154929 -0.54489505 0.19509032 -0.81568485 0.5450224 -0.19392999 0.10794703 0.56250894
+0.1622116 -0.10838634 0.98078525 -0.16709559 0.11165074 -0.9795985 0.108016916 0.9375575
+0.1622116 -0.10838634 -0.98078525 -0.16709599 0.111650735 0.97959846 0.108016916 0.062442537
+0.8154929 -0.54489505 -0.19509032 -0.81568485 0.5450224 0.19392999 0.10794703 0.43749112
+0.3181896 -0.21260752 0.9238795 -0.32251555 0.21549861 -0.92170715 0.10797416 0.8750504
+0.46193957 -0.30865824 0.8314696 -0.46543527 0.31099603 -0.8286444 0.10796031 0.81254286
+0.27059796 -0.27059802 -0.9238795 -0.274278 0.27427828 0.9217066 0.086383924 0.12494101
+0.8314691 -0.5555702 0 -0.83146816 0.5555724 -1.0841157e-08 0.107946694 0.50000006
+0.6935197 -0.69351983 0.19509032 -0.69368297 0.69368225 -0.19392985 0.08635873 0.56251085
+0.13794962 -0.13794963 0.98078525 -0.142104 0.14210455 -0.9795983 0.086423665 0.9375667
+0.13794962 -0.13794963 -0.98078525 -0.14210472 0.14210452 0.97959816 0.086423665 0.062433355
+0.6935197 -0.69351983 -0.19509032 -0.69368297 0.6936824 0.19392996 0.08635873 0.43748927
+0.27059796 -0.27059802 0.9238795 -0.2742778 0.2742783 -0.9217066 0.086383924 0.87505907
+0.6532814 -0.65328133 -0.38268346 -0.6539094 0.6539062 0.3805381 0.08635975 0.3749787
+0.39284727 -0.39284742 0.8314696 -0.39582157 0.39582264 -0.8286433 0.086371064 0.8125506
+0.69134146 -0.4619397 -0.55557024 -0.69289523 0.4629799 0.55276203 0.10795015 0.3124736
+0.49999994 -0.49999994 0.70710677 -0.5021461 0.50214523 -0.70405924 0.08636499 0.7500415
+0.49999994 -0.49999994 -0.70710677 -0.50214624 0.50214523 0.70405924 0.08636499 0.24995863
+0.69134146 -0.4619397 0.55557024 -0.6928952 0.46297988 -0.55276203 0.10795015 0.6875265
+0.6532814 -0.65328133 0.38268346 -0.6539094 0.65390617 -0.38053805 0.08635975 0.6250214
+0.39284727 -0.39284742 -0.8314696 -0.39582175 0.39582264 0.8286432 0.086371064 0.18744943
+0.39284742 -0.5879377 0.70710677 -0.39453408 0.59046066 -0.704059 0.06477534 0.7500475
+0.39284742 -0.5879377 -0.70710677 -0.39453405 0.59046066 0.704059 0.06477534 0.24995261
+0.58793753 -0.58793765 -0.55557024 -0.5892584 0.58926123 0.55276185 0.08636163 0.31246838
+0.58793753 -0.58793765 0.55557024 -0.58925843 0.58926123 -0.5527619 0.08636163 0.68753177
+0.5132799 -0.76817757 0.38268346 -0.51377386 0.7689129 -0.3805381 0.064770706 0.6250247
+0.21260744 -0.31818962 -0.9238795 -0.21549682 0.32251444 0.921708 0.064792104 0.12493316
+0.108386315 -0.1622116 -0.98078525 -0.11165099 0.16709673 0.9795982 0.064827286 0.06242502
+0.70710623 -0.70710665 0 -0.7071047 0.7071088 5.6614937e-08 0.086358406 0.50000006
+0.5448949 -0.815493 0.19509032 -0.5450232 0.81568426 -0.19392997 0.06476981 0.56251246
+0.108386315 -0.1622116 0.98078525 -0.11165052 0.16709673 -0.9795983 0.064827286 0.93757504
+0.5448949 -0.815493 -0.19509032 -0.5450233 0.81568426 0.19392993 0.06476981 0.43748763
+0.5132799 -0.76817757 -0.38268346 -0.51377386 0.768913 0.38053825 0.064770706 0.3749754
+0.21260744 -0.31818962 0.9238795 -0.21549696 0.32251444 -0.9217079 0.064792104 0.8750669
+0.5555697 -0.83146936 0 -0.55556786 0.83147126 -2.0477744e-08 0.064769514 0.50000006
+0.37533003 -0.9061272 0.19509032 -0.37541875 0.9063399 -0.19392972 0.043180335 0.5625139
+0.07465778 -0.18023986 0.98078525 -0.076904744 0.18566827 -0.97959834 0.043228142 0.93758225
+0.07465778 -0.18023986 -0.98078525 -0.07690577 0.18566829 0.9795983 0.043228142 0.062417842
+0.37533003 -0.9061272 -0.19509032 -0.37541875 0.9063399 0.19392978 0.043180335 0.43748617
+0.14644653 -0.35355332 0.9238795 -0.14843734 0.35836053 -0.92170715 0.04319888 0.87507373
+0.35355335 -0.8535532 -0.38268346 -0.35389432 0.85437083 0.38053814 0.043181088 0.3749726
+0.21260735 -0.5132798 0.8314696 -0.21421488 0.5171656 -0.8286446 0.04318941 0.81256384
+0.3086581 -0.46193966 0.8314696 -0.31099287 0.46543515 -0.8286456 0.06478072 0.81255776
+0.46193954 -0.6913415 -0.55557024 -0.46297687 0.6928973 0.55276185 0.064772375 0.31246367
+0.270598 -0.6532814 0.70710677 -0.27176017 0.65608484 -0.704059 0.043184936 0.75005263
+0.270598 -0.6532814 -0.70710677 -0.2717601 0.6560849 0.70405906 0.043184936 0.24994744
+0.46193954 -0.6913415 0.55557024 -0.46297693 0.6928973 -0.55276185 0.064772375 0.6875365
+0.3086581 -0.46193966 -0.8314696 -0.31099305 0.46543518 0.8286456 0.06478072 0.18744233
+0.35355335 -0.8535532 0.38268346 -0.35389432 0.85437083 -0.38053805 0.043181088 0.6250275
+0.21260735 -0.5132798 -0.8314696 -0.21421474 0.5171656 0.8286446 0.04318941 0.18743627
+0.14644653 -0.35355332 -0.9238795 -0.14843687 0.35836062 0.9217072 0.04319888 0.124926396
+0.13794966 -0.69351983 -0.70710677 -0.13854226 0.6964962 0.70405906 0.021593904 0.24994332
+0.31818944 -0.7681775 -0.55557024 -0.31890342 0.76990587 0.55276185 0.04318247 0.31245962
+0.31818944 -0.7681775 0.55557024 -0.31890345 0.76990587 -0.55276185 0.04318247 0.6875405
+0.13794966 -0.69351983 0.70710677 -0.13854235 0.6964962 -0.70405906 0.021593904 0.75005674
+0.18023995 -0.9061272 0.38268346 -0.18041486 0.9069958 -0.38053805 0.021590978 0.6250297
+0.10838623 -0.5448949 -0.8314696 -0.10920494 0.5490196 0.8286446 0.021597296 0.18743141
+0.07465776 -0.37533018 -0.9238795 -0.07567328 0.38043502 0.9217065 0.021604486 0.12492101
+0.38268295 -0.92387915 0 -0.38268074 0.92388064 8.7933834e-08 0.04318009 0.50000006
+0.19134152 -0.96193945 0.19509032 -0.19138709 0.9621653 -0.19392991 0.021590404 0.562515
+0.038060203 -0.1913416 0.98078525 -0.039206885 0.1971047 -0.97959816 0.021626705 0.9375879
+0.038060203 -0.1913416 -0.98078525 -0.039207235 0.19710474 0.9795982 0.021626705 0.06241211
+0.19134152 -0.96193945 -0.19509032 -0.1913871 0.9621653 0.19392997 0.021590404 0.43748504
+0.07465776 -0.37533018 0.9238795 -0.07567361 0.380435 -0.9217064 0.021604486 0.87507904
+0.18023995 -0.9061272 -0.38268346 -0.18041486 0.9069958 0.380538 0.021590978 0.37497038
+0.10838623 -0.5448949 0.8314696 -0.109205134 0.54901963 -0.8286445 0.021597296 0.81256866
+-7.450581e-09 -0.19509019 0.98078525 1.1604178e-07 0.2009659 -0.9795982 2.35235e-05 0.937592
+-7.450581e-09 -0.19509019 -0.98078525 1.6779822e-07 0.20096593 0.9795982 2.35235e-05 0.062408045
+-1.3411045e-07 -0.98078495 -0.19509032 -4.780752e-07 0.9810154 0.19392978 1.3248821e-07 0.43748423
+0.1950899 -0.9807848 0 -0.19508745 0.9807858 -5.0592067e-08 0.021590214 0.50000006
+2.9802322e-08 -0.92387927 -0.38268346 -2.1711646e-06 0.9247653 0.3805379 5.08429e-07 0.37496877
+-9.685755e-08 -0.55556995 0.8314696 4.1312532e-07 0.55977684 -0.8286434 4.5693455e-06 0.8125721
+0.16221152 -0.81549287 -0.55557024 -0.16257465 0.8173273 0.55276173 0.021592023 0.31245637
+-1.4901161e-08 -0.70710665 0.70710677 -6.621924e-07 0.71014136 -0.7040592 2.390848e-06 0.7500597
+-1.4901161e-08 -0.70710665 -0.70710677 -5.482282e-07 0.71014136 0.7040592 2.390848e-06 0.24994037
+0.16221152 -0.81549287 0.55557024 -0.16257472 0.81732726 -0.5527619 0.021592023 0.68754375
+2.9802322e-08 -0.92387927 0.38268346 -2.1513122e-06 0.92476535 -0.38053787 5.08429e-07 0.6250313
+-9.685755e-08 -0.55556995 -0.8314696 6.604017e-07 0.55977684 0.8286434 4.5693455e-06 0.18742795
+-1.3411045e-07 -0.98078495 0.19509032 -4.696457e-07 0.9810154 -0.19392963 1.3248821e-07 0.56251585
+-1.0430813e-07 -0.8314693 0.55557024 1.7807821e-06 0.83333933 -0.55276185 0.69078743 0.687546
+-0.13794968 -0.6935198 0.70710677 0.13854113 0.6964964 -0.70405906 0.6691969 0.7500613
+-1.4901161e-08 -0.70710665 0.70710677 -6.621924e-07 0.71014136 -0.7040592 0.6907887 0.7500597
+-9.685755e-08 -0.55556995 -0.8314696 6.604017e-07 0.55977684 0.8286434 0.69079083 0.18742795
+-0.13794968 -0.6935198 -0.70710677 0.13854112 0.6964963 0.7040591 0.6691969 0.24993876
+-1.4901161e-08 -0.70710665 -0.70710677 -5.482282e-07 0.71014136 0.7040592 0.6907887 0.24994037
+-0.18023987 -0.90612715 0.38268346 0.18041056 0.9069966 -0.38053805 0.6691961 0.6250322
+2.9802322e-08 -0.92387927 0.38268346 -2.1513122e-06 0.92476535 -0.38053787 0.6907868 0.6250313
+-0.074657865 -0.37533018 -0.9238795 0.07567245 0.38043344 0.92170715 0.6691997 0.12491507
+-5.2154064e-08 -0.38268334 -0.9238795 -5.091784e-07 0.3878863 0.9217072 0.6907954 0.12491719
+-1.3411045e-07 -0.98078495 0.19509032 -4.696457e-07 0.9810154 -0.19392963 0.69078636 0.56251585
+-0.038060214 -0.19134158 -0.98078525 0.03920625 0.19710441 0.9795982 0.66920555 0.062405802
+-7.450581e-09 -0.19509019 -0.98078525 1.6779822e-07 0.20096593 0.9795982 0.6908098 0.062408045
+-3.2782555e-07 -0.99999934 0 3.059615e-06 1 8.43201e-09 0.6907863 0.50000006
+-0.19134179 -0.9619394 0.19509032 0.19138621 0.9621656 -0.19392967 0.66919595 0.5625163
+-7.450581e-09 -0.19509019 0.98078525 1.1604178e-07 0.2009659 -0.9795982 0.6908098 0.937592
+-0.038060214 -0.19134158 0.98078525 0.03920771 0.19710438 -0.97959816 0.66920555 0.93759423
+0 0 1 1.2833326e-07 -6.8863573e-09 -1 1 1
+0 0 -1 -5.5914228e-08 -1.0179833e-08 1 1 0
+-0.19134179 -0.9619394 -0.19509032 0.1913862 0.96216553 0.19392994 0.66919595 0.4374838
+-1.3411045e-07 -0.98078495 -0.19509032 -4.780752e-07 0.9810154 0.19392978 0.69078636 0.43748423
+-5.2154064e-08 -0.38268334 0.9238795 -5.1156894e-07 0.3878863 -0.9217072 0.6907954 0.8750829
+-0.18023987 -0.90612715 -0.38268346 0.18041058 0.90699655 0.38053814 0.6691961 0.3749679
+2.9802322e-08 -0.92387927 -0.38268346 -2.1711646e-06 0.9247653 0.3805379 0.6907868 0.37496877
+-9.685755e-08 -0.55556995 0.8314696 4.1312532e-07 0.55977684 -0.8286434 0.69079083 0.8125721
+-0.074657865 -0.37533018 0.9238795 0.075672925 0.38043338 -0.92170715 0.6691997 0.87508506
+-1.0430813e-07 -0.8314693 -0.55557024 1.8288462e-06 0.8333393 0.55276185 0.69078743 0.31245407
+-0.37533027 -0.90612704 -0.19509032 0.37541795 0.9063403 0.19392976 0.64760536 0.43748373
+-0.19509052 -0.98078454 0 0.19509327 0.9807847 1.13229866e-07 0.6691959 0.50000006
+-0.07465778 -0.18023983 0.98078525 0.07690546 0.18566805 -0.9795984 0.64760077 0.9375946
+-0.35355324 -0.8535531 -0.38268346 0.35389033 0.85437256 0.3805381 0.6476053 0.37496778
+-0.2126075 -0.5132796 0.8314696 0.2142185 0.51716405 -0.8286446 0.64760447 0.8125743
+-0.10838642 -0.5448948 0.8314696 0.1092072 0.5490175 -0.8286456 0.66919774 0.81257397
+-0.16221172 -0.8154928 -0.55557024 0.16257833 0.81732655 0.5527618 0.66919637 0.31245276
+-0.270598 -0.65328133 0.70710677 0.27175888 0.65608525 -0.7040592 0.64760494 0.7500615
+-0.270598 -0.65328133 -0.70710677 0.27175882 0.65608525 0.70405906 0.64760494 0.2499385
+-0.16221172 -0.8154928 0.55557024 0.16257834 0.81732655 -0.5527618 0.66919637 0.6875473
+-0.10838642 -0.5448948 -0.8314696 0.1092072 0.54901737 0.82864565 0.66919774 0.18742606
+-0.35355324 -0.8535531 0.38268346 0.35389033 0.8543725 -0.3805381 0.6476053 0.6250323
+-0.2126075 -0.5132796 -0.8314696 0.21421832 0.517166 0.8286434 0.64760447 0.18742575
+-0.07465778 -0.18023983 -0.98078525 0.07690505 0.18566833 0.9795983 0.64760077 0.06240546
+-0.37533027 -0.90612704 0.19509032 0.3754179 0.90634024 -0.1939297 0.64760536 0.5625164
+-0.39284742 -0.58793765 -0.70710677 0.39453286 0.59046155 0.704059 0.62601304 0.24993965
+-0.51327974 -0.7681775 0.38268346 0.51377016 0.7689154 -0.3805382 0.62601453 0.6250317
+-0.31818962 -0.7681774 0.55557024 0.31890693 0.76990443 -0.5527617 0.6476052 0.6875475
+-0.2126075 -0.31818953 -0.9238795 0.21549693 0.3225143 0.921708 0.6260076 0.12491623
+-0.14644662 -0.3535533 -0.9238795 0.14843711 0.35836044 0.9217072 0.6476036 0.12491476
+-0.1083863 -0.16221155 -0.98078525 0.11165112 0.1670968 0.9795982 0.62599623 0.062407047
+-0.3826835 -0.9238787 0 0.3826862 0.9238785 -5.3001212e-08 0.64760536 0.50000006
+-0.54489505 -0.81549275 0.19509032 0.54502255 0.81568485 -0.19392972 0.6260148 0.56251603
+-0.1083863 -0.16221155 0.98078525 0.11165081 0.16709708 -0.9795982 0.62599623 0.93759304
+-0.54489505 -0.81549275 -0.19509032 0.54502255 0.81568485 0.1939296 0.6260148 0.43748406
+-0.2126075 -0.31818953 0.9238795 0.21549895 0.32251537 -0.9217071 0.6260076 0.8750838
+-0.14644662 -0.3535533 0.9238795 0.14843754 0.35835874 -0.9217078 0.6476036 0.87508535
+-0.51327974 -0.7681775 -0.38268346 0.5137702 0.7689155 0.38053817 0.62601453 0.3749684
+-0.30865818 -0.4619394 0.8314696 0.3109959 0.46543697 -0.82864344 0.62601125 0.812573
+-0.31818962 -0.7681774 -0.55557024 0.318907 0.76990443 0.55276173 0.6476052 0.31245258
+-0.39284742 -0.58793765 0.70710677 0.3945329 0.5904615 -0.704059 0.62601304 0.75006044
+-0.6532812 -0.6532813 -0.38268346 0.65390617 0.65390944 0.3805381 0.604424 0.37496972
+-0.270598 -0.27059793 0.9238795 0.2742785 0.27427828 -0.9217065 0.6044121 0.87508065
+-0.46193963 -0.69134134 -0.55557024 0.46298015 0.69289535 0.5527616 0.626014 0.31245348
+-0.4999999 -0.49999988 0.70710677 0.5021453 0.50214624 -0.70405906 0.60442144 0.75005794
+-0.4999999 -0.49999988 -0.70710677 0.5021453 0.50214624 0.70405906 0.60442144 0.24994211
+-0.46193963 -0.69134134 0.55557024 0.46298012 0.69289535 -0.5527616 0.626014 0.6875466
+-0.30865818 -0.4619394 -0.8314696 0.31099436 0.46543607 0.8286445 0.62601125 0.18742707
+-0.6532812 -0.6532813 0.38268346 0.65390617 0.6539094 -0.38053805 0.604424 0.62503034
+-0.270598 -0.27059793 -0.9238795 0.2742783 0.27427828 0.9217065 0.6044121 0.12491947
+-0.5555701 -0.83146876 0 0.5555728 0.83146787 2.4091458e-08 0.6260149 0.50000006
+-0.6935198 -0.69351953 0.19509032 0.69368243 0.6936831 -0.19392927 0.6044245 0.5625154
+-0.13794959 -0.13794957 0.98078525 0.14210409 0.14210449 -0.9795982 0.6043925 0.9375896
+-0.13794959 -0.13794957 -0.98078525 0.14210479 0.14210448 0.97959816 0.6043925 0.062410474
+-0.6935198 -0.69351953 -0.19509032 0.69368243 0.6936831 0.1939293 0.6044245 0.4374847
+-0.31818956 -0.21260741 -0.9238795 0.32251433 0.2154972 0.92170787 0.5828173 0.124924324
+-0.3928473 -0.39284712 -0.8314696 0.3958208 0.3958207 0.82864463 0.6044184 0.18743
+-0.76817745 -0.5132798 0.38268346 0.7689129 0.5137739 -0.38053814 0.5828337 0.6250284
+-0.16221155 -0.10838628 -0.98078525 0.1670963 0.11165048 0.9795984 0.58279043 0.062415645
+-0.7071065 -0.70710593 0 0.7071091 0.70710444 7.2274375e-08 0.60442454 0.50000006
+-0.8154929 -0.5448947 0.19509032 0.8156843 0.54502326 -0.19392936 0.58283436 0.5625143
+-0.16221155 -0.10838628 0.98078525 0.16709559 0.111650474 -0.97959846 0.58279043 0.93758446
+-0.8154929 -0.5448947 -0.19509032 0.8156843 0.54502326 0.19392936 0.58283436 0.43748575
+-0.76817745 -0.5132798 -0.38268346 0.7689129 0.513774 0.3805382 0.5828337 0.37497175
+-0.3928473 -0.39284712 0.8314696 0.39582086 0.39582065 -0.8286446 0.6044184 0.81257004
+-0.31818956 -0.21260741 0.9238795 0.32251465 0.2154971 -0.9217078 0.5828173 0.87507576
+-0.5879376 -0.5879374 -0.55557024 0.5892612 0.58925843 0.55276185 0.60442305 0.31245542
+-0.58793765 -0.39284736 0.70710677 0.59046054 0.3945341 -0.704059 0.5828302 0.75005424
+-0.58793765 -0.39284736 -0.70710677 0.5904605 0.39453414 0.7040591 0.5828302 0.24994583
+-0.5879376 -0.5879374 0.55557024 0.5892611 0.5892584 -0.552762 0.60442305 0.68754464
+-0.5132796 -0.21260723 0.8314696 0.5171665 0.21421644 -0.8286435 0.5612344 0.81256
+-0.4619395 -0.30865794 0.8314696 0.46543533 0.31099263 -0.82864565 0.582826 0.81256574
+-0.69134146 -0.46193942 -0.55557024 0.69289726 0.462977 0.5527619 0.5828324 0.31245837
+-0.85355306 -0.35355327 -0.38268346 0.8543708 0.3538944 0.38053814 0.56124395 0.37497437
+-0.65328133 -0.27059796 0.70710677 0.6560849 0.27176 -0.70405906 0.56123954 0.75004935
+-0.65328133 -0.27059796 -0.70710677 0.65608484 0.27176002 0.70405906 0.56123954 0.24995068
+-0.69134146 -0.46193942 0.55557024 0.69289726 0.46297696 -0.55276185 0.5828324 0.6875418
+-0.4619395 -0.30865794 -0.8314696 0.46543622 0.31099424 0.8286445 0.582826 0.18743436
+-0.85355306 -0.35355327 0.38268346 0.8543708 0.35389438 -0.38053817 0.56124395 0.62502575
+-0.35355327 -0.14644651 -0.9238795 0.35836065 0.14843746 0.9217071 0.5612237 0.12493063
+-0.8314691 -0.5555694 0 0.8314713 0.55556756 -9.636583e-09 0.58283454 0.50000006
+-0.90612715 -0.37532988 0.19509032 0.90633994 0.37541887 -0.19392924 0.5612447 0.562513
+-0.18023981 -0.07465775 0.98078525 0.18566807 0.07690627 -0.9795983 0.5611905 0.9375778
+-0.18023981 -0.07465775 -0.98078525 0.18566827 0.07690627 0.9795982 0.5611905 0.06242233
+-0.90612715 -0.37532988 -0.19509032 0.90634 0.3754188 0.1939292 0.5612447 0.4374871
+-0.35355327 -0.14644651 0.9238795 0.35836065 0.14843723 -0.9217071 0.5612237 0.8750695
+-0.9061271 -0.18023989 0.38268346 0.9069957 0.18041477 -0.38053817 0.5396547 0.6250226
+-0.37533012 -0.07465775 -0.9238795 0.3804335 0.07567256 0.92170715 0.53963137 0.12493812
+-0.92387885 -0.38268268 0 0.9238807 0.38268054 -1.32503e-08 0.56124496 0.50000006
+-0.9619394 -0.19134139 0.19509032 0.9621655 0.19138713 -0.19392915 0.53965557 0.56251144
+-0.19134155 -0.03806018 0.98078525 0.1971045 0.039206475 -0.9795982 0.53959304 0.9375698
+-0.19134155 -0.03806018 -0.98078525 0.19710441 0.03920647 0.9795982 0.53959304 0.06243029
+-0.9619394 -0.19134139 -0.19509032 0.9621655 0.19138712 0.1939291 0.53965557 0.43748865
+-0.37533012 -0.07465775 0.9238795 0.38043356 0.075672545 -0.9217071 0.53963137 0.8750619
+-0.9061271 -0.18023989 -0.38268346 0.9069957 0.18041477 0.3805381 0.5396547 0.37497747
+-0.7681774 -0.31818932 -0.55557024 0.7699059 0.3189034 0.55276173 0.5612423 0.31246212
+-0.6935198 -0.13794963 0.70710677 0.6964961 0.13854237 -0.70405906 0.5396496 0.7500437
+-0.6935198 -0.13794963 -0.70710677 0.69649607 0.13854237 0.70405906 0.5396496 0.24995641
+-0.7681774 -0.31818932 0.55557024 0.76990587 0.31890336 -0.55276173 0.5612423 0.68753797
+-0.5132796 -0.21260723 -0.8314696 0.51716477 0.21421659 0.8286446 0.5612344 0.18744004
+-0.81549275 -0.16221143 -0.55557024 0.8173273 0.16257471 0.55276185 0.53965276 0.31246665
+-0.92387915 1.4901161e-08 -0.38268346 0.92476517 2.19944e-06 0.38053817 0.51806605 0.37498096
+-0.7071066 2.9802322e-08 0.70710677 0.71014136 6.483968e-07 -0.7040592 0.5180605 0.75003725
+-0.5448947 -0.10838615 0.8314696 0.5490193 0.109206714 -0.8286446 0.53964376 0.8125533
+-0.7071066 2.9802322e-08 -0.70710677 0.7101413 6.4599755e-07 0.7040592 0.5180605 0.24996285
+-0.81549275 -0.16221143 0.55557024 0.81732726 0.16257468 -0.55276173 0.53965276 0.68753344
+-0.5448947 -0.10838615 -0.8314696 0.54901916 0.10920672 0.8286446 0.53964376 0.18744679
+-0.92387915 1.4901161e-08 0.38268346 0.92476517 2.206659e-06 -0.38053817 0.51806605 0.62501913
+-0.38268325 5.2154064e-08 -0.9238795 0.38788813 3.884644e-08 0.92170644 0.51804054 0.12494653
+-0.9807844 -0.1950897 0 0.9807859 0.1950872 4.8182907e-09 0.53965586 0.50000006
+-0.98078483 2.682209e-07 0.19509032 0.98101556 4.2629384e-07 -0.1939292 0.51806706 0.56250966
+-0.19509014 1.8626451e-08 0.98078525 0.20096633 -1.07390505e-08 -0.9795981 0.5179987 0.93756086
+-0.19509014 1.8626451e-08 -0.98078525 0.20096633 -8.9492085e-09 0.9795981 0.5179987 0.06243921
+-0.98078483 2.682209e-07 -0.19509032 0.98101556 4.2147695e-07 0.19392917 0.51806706 0.43749043
+-0.38268325 5.2154064e-08 0.9238795 0.38788825 4.0639353e-08 -0.9217064 0.51804054 0.8750535
+-0.19134153 0.038060218 -0.98078525 0.1971044 -0.039206628 0.9795982 0.4964076 0.062448755
+-0.99999905 4.4703484e-07 0 1 -2.8596558e-06 0 0.51806736 0.50000006
+-0.9619392 0.19134189 0.19509032 0.9621656 -0.19138646 -0.19392921 0.49647918 0.56250775
+-0.19134153 0.038060218 0.98078525 0.19710456 -0.039206624 -0.9795982 0.4964076 0.93755126
+-0.9619392 0.19134189 -0.19509032 0.9621656 -0.19138646 0.19392921 0.49647918 0.43749234
+-0.90612704 0.1802399 -0.38268346 0.90699655 -0.1804108 0.38053808 0.49647817 0.37498468
+-0.55556977 1.4901161e-07 0.8314696 0.5597753 -2.634371e-08 -0.8286445 0.51805407 0.8125458
+-0.3753301 0.07465785 0.9238795 0.3804335 -0.07567236 -0.92170715 0.4964514 0.8750446
+-0.8314692 1.6391277e-07 -0.55557024 0.8333393 -2.1280462e-06 0.55276173 0.518064 0.3124717
+-0.6935197 0.13794969 0.70710677 0.6964965 -0.13854116 -0.704059 0.4964723 0.75003034
+-0.6935197 0.13794969 -0.70710677 0.6964964 -0.13854116 0.70405906 0.4964723 0.24996974
+-0.8314692 1.6391277e-07 0.55557024 0.83333933 -2.1292483e-06 -0.55276173 0.518064 0.68752843
+-0.55556977 1.4901161e-07 -0.8314696 0.5597752 -2.3948829e-08 0.8286446 0.51805407 0.18745434
+-0.90612704 0.1802399 0.38268346 0.90699655 -0.1804108 -0.38053808 0.49647817 0.6250154
+-0.3753301 0.07465785 -0.9238795 0.38043338 -0.07567237 0.9217072 0.4964514 0.1249555
+-0.6532813 0.270598 0.70710677 0.65608543 -0.27175856 -0.70405906 0.47488508 0.75002325
+-0.54489464 0.108386435 0.8314696 0.54901946 -0.10920694 -0.8286444 0.49646556 0.81253767
+-0.6532813 0.270598 -0.70710677 0.65608543 -0.27175856 0.70405906 0.47488508 0.2499768
+-0.81549263 0.16221176 -0.55557024 0.8173266 -0.16257867 0.5527616 0.49647602 0.31247708
+-0.81549263 0.16221176 0.55557024 0.8173265 -0.16257867 -0.55276173 0.49647602 0.687523
+-0.54489464 0.108386435 -0.8314696 0.5490194 -0.10920695 0.8286444 0.49646556 0.18746242
+-0.853553 0.35355324 0.38268346 0.85437256 -0.35389027 -0.38053814 0.47489092 0.6250116
+-0.3535532 0.14644659 -0.9238795 0.35835853 -0.14843719 0.92170787 0.47486404 0.124964744
+-0.18023978 0.07465778 -0.98078525 0.18566844 -0.076906264 0.97959816 0.4748199 0.06245855
+-0.98078424 0.19509058 0 0.9807847 -0.195093 -4.8182915e-09 0.4964795 0.50000006
+-0.90612686 0.37533033 0.19509032 0.90634036 -0.37541804 -0.1939292 0.474892 0.56250584
+-0.18023978 0.07465778 0.98078525 0.1856682 -0.076906264 -0.9795982 0.4748199 0.93754154
+-0.90612686 0.37533033 -0.19509032 0.9063403 -0.37541804 0.19392923 0.474892 0.43749428
+-0.853553 0.35355324 -0.38268346 0.85437256 -0.35389027 0.38053814 0.47489092 0.37498847
+-0.3535532 0.14644659 0.9238795 0.35835868 -0.14843719 -0.9217079 0.47486404 0.87503535
+-0.92387843 0.3826835 0 0.9238783 -0.3826866 0 0.47489232 0.50000006
+-0.8154926 0.54489505 0.19509032 0.81568474 -0.54502285 -0.19392903 0.45330548 0.5625039
+-0.16221151 0.10838629 0.98078525 0.16709611 -0.11165074 -0.97959834 0.45323566 0.9375318
+-0.16221151 0.10838629 -0.98078525 0.1670972 -0.11165098 0.97959816 0.45323566 0.062468227
+-0.8154926 0.54489505 -0.19509032 0.8156847 -0.54502285 0.19392908 0.45330548 0.43749622
+-0.31818944 0.21260746 0.9238795 0.3225152 -0.21549872 -0.9217072 0.4532784 0.8750262
+-0.7681774 0.51327974 -0.38268346 0.7689155 -0.5137701 0.38053817 0.45330447 0.37499225
+-0.51327944 0.21260749 0.8314696 0.5171647 -0.21421689 -0.8286445 0.47487828 0.8125294
+-0.7681772 0.31818962 -0.55557024 0.7699043 -0.31890708 0.55276173 0.47488877 0.31248263
+-0.5879376 0.3928474 0.70710677 0.5904615 -0.39453274 -0.704059 0.45329884 0.7500163
+-0.5879376 0.3928474 -0.70710677 0.5904615 -0.39453274 0.70405906 0.45329884 0.24998374
+-0.7681772 0.31818962 0.55557024 0.7699043 -0.31890705 -0.5527617 0.47488877 0.68751746
+-0.51327944 0.21260749 -0.8314696 0.51716465 -0.21421689 0.8286445 0.47487828 0.18747073
+-0.7681774 0.51327974 0.38268346 0.76891553 -0.5137701 -0.38053808 0.45330447 0.6250078
+-0.31818944 0.21260746 -0.9238795 0.32251698 -0.21549924 0.92170656 0.4532784 0.12497383
+-0.49999982 0.49999988 -0.70710677 0.5021465 -0.5021454 0.7040588 0.43171343 0.24999039
+-0.69134116 0.46193963 -0.55557024 0.69289523 -0.46298027 0.5527616 0.45330235 0.3124881
+-0.69134116 0.46193963 0.55557024 0.6928953 -0.46298027 -0.5527616 0.45330235 0.68751204
+-0.49999982 0.49999988 0.70710677 0.5021464 -0.50214547 -0.7040589 0.43171343 0.7500097
+-0.46193922 0.30865815 -0.8314696 0.46543598 -0.31099445 0.8286445 0.45329225 0.18747891
+-0.65328115 0.65328115 0.38268346 0.6539094 -0.6539061 -0.3805382 0.4317187 0.62500423
+-0.27059788 0.27059793 -0.9238795 0.27427596 -0.27427596 0.92170787 0.4316945 0.1249825
+-0.13794954 0.13794957 -0.98078525 0.14210427 -0.14210424 0.9795982 0.4316548 0.06247739
+-0.83146846 0.55557007 0 0.8314676 -0.5555731 -1.9273166e-08 0.4533058 0.50000006
+-0.69351935 0.6935197 0.19509032 0.6936831 -0.6936824 -0.19392933 0.43171966 0.5625021
+-0.13794954 0.13794957 0.98078525 0.14210367 -0.14210443 -0.9795983 0.4316548 0.93752265
+-0.69351935 0.6935197 -0.19509032 0.69368297 -0.69368243 0.19392927 0.43171966 0.43749803
+-0.27059788 0.27059793 0.9238795 0.2742768 -0.27427763 -0.92170715 0.4316945 0.8750176
+-0.65328115 0.65328115 -0.38268346 0.6539093 -0.6539061 0.38053825 0.4317187 0.37499583
+-0.46193922 0.30865815 0.8314696 0.46543595 -0.31099445 -0.8286446 0.45329225 0.81252116
+-0.10838625 0.16221152 -0.98078525 0.11165132 -0.1670974 0.9795981 0.4100771 0.06248572
+-0.5448946 0.8154928 -0.19509032 0.5450234 -0.81568444 0.19392903 0.41013443 0.43749964
+-0.7071057 0.70710635 0 0.70710456 -0.707109 -6.384236e-08 0.43171996 0.50000006
+-0.21260737 0.3181895 0.9238795 0.21549943 -0.32251734 -0.9217064 0.41011217 0.8750097
+-0.5132797 0.7681774 -0.38268346 0.5137739 -0.7689129 0.38053823 0.41013357 0.3749991
+-0.39284694 0.39284724 0.8314696 0.39582077 -0.3958209 -0.8286446 0.4317073 0.8125134
+-0.58793724 0.58793753 -0.55557024 0.58925843 -0.5892615 0.5527616 0.43171677 0.3124933
+-0.3928473 0.58793765 0.70710677 0.39453423 -0.59046066 -0.70405895 0.41012895 0.7500037
+-0.3928473 0.58793765 -0.70710677 0.39453417 -0.5904608 0.7040589 0.41012895 0.24999638
+-0.58793724 0.58793753 0.55557024 0.5892584 -0.58926153 -0.5527616 0.43171677 0.68750685
+-0.39284694 0.39284724 -0.8314696 0.39582077 -0.3958209 0.8286446 0.4317073 0.1874867
+-0.5132797 0.7681774 0.38268346 0.513774 -0.7689129 -0.3805382 0.41013357 0.625001
+-0.21260737 0.3181895 -0.9238795 0.21549924 -0.32251737 0.9217064 0.41011217 0.12499032
+-0.5448946 0.8154928 0.19509032 0.5450234 -0.81568444 -0.19392903 0.41013443 0.5625004
+-0.10838625 0.16221152 0.98078525 0.111650825 -0.1670974 -0.97959816 0.4100771 0.9375144
+-0.3086578 0.46193942 -0.8314696 0.31099436 -0.465436 0.8286446 0.41012353 0.18749377
+-0.2705979 0.65328133 -0.70710677 0.27176002 -0.6560847 0.7040592 0.3885452 0.25000152
+-0.35355318 0.853553 0.38268346 0.3538943 -0.8543709 -0.38053796 0.38854906 0.6249982
+-0.46193928 0.69134134 0.55557024 0.46297687 -0.69289756 -0.55276173 0.41013193 0.6875021
+-0.14644648 0.35355324 -0.9238795 0.14843713 -0.35835886 0.92170787 0.38853127 0.12499707
+-0.07465774 0.18023977 -0.98078525 0.076905474 -0.18566805 0.9795983 0.38850203 0.062492877
+-0.55556923 0.83146894 0 0.5555676 -0.8314714 -4.8182912e-08 0.41013473 0.50000006
+-0.3753298 0.906127 0.19509032 0.37541875 -0.9063402 -0.19392857 0.3885498 0.562499
+-0.07465774 0.18023977 0.98078525 0.07690473 -0.18566808 -0.9795984 0.38850203 0.9375072
+-0.3753298 0.906127 -0.19509032 0.37541875 -0.9063402 0.19392855 0.3885498 0.4375011
+-0.35355318 0.853553 -0.38268346 0.35389426 -0.85437083 0.38053808 0.38854906 0.37500188
+-0.3086578 0.46193942 0.8314696 0.31099424 -0.46543607 -0.8286445 0.41012353 0.8125063
+-0.14644648 0.35355324 0.9238795 0.14843726 -0.35835883 -0.9217078 0.38853127 0.875003
+-0.46193928 0.69134134 -0.55557024 0.46297684 -0.69289756 0.5527616 0.41013193 0.312498
+-0.2705979 0.65328133 0.70710677 0.27176008 -0.6560848 -0.7040591 0.3885452 0.7499985
+-0.07465773 0.3753301 0.9238795 0.07567242 -0.38043368 -0.92170703 0.36695153 0.8749976
+-0.18023981 0.906127 -0.38268346 0.18041466 -0.90699565 0.3805383 0.36696503 0.3750041
+-0.2126071 0.5132795 0.8314696 0.21421622 -0.5171648 -0.8286447 0.3885407 0.8125003
+-0.3181892 0.7681773 -0.55557024 0.31890315 -0.76990587 0.5527618 0.38854766 0.31250206
+-0.13794957 0.6935198 0.70710677 0.13854337 -0.6964968 -0.7040582 0.36696208 0.74999446
+-0.13794957 0.6935198 -0.70710677 0.1385423 -0.69649607 0.7040591 0.36696208 0.25000563
+-0.3181892 0.7681773 0.55557024 0.3189031 -0.7699059 -0.55276185 0.38854766 0.68749803
+-0.2126071 0.5132795 -0.8314696 0.2142165 -0.51716477 0.82864463 0.3885407 0.18749979
+-0.18023981 0.906127 0.38268346 0.18041468 -0.90699565 -0.38053834 0.36696503 0.62499595
+-0.07465773 0.3753301 -0.9238795 0.075673796 -0.38043523 0.92170626 0.36695153 0.12500246
+-0.38268256 0.9238786 0 0.38268054 -0.92388076 -1.2166183e-07 0.38854995 0.50000006
+-0.19134133 0.9619392 0.19509032 0.19138819 -0.96216524 -0.19392951 0.36696553 0.56249785
+-0.038060177 0.1913415 0.98078525 0.039206766 -0.19710442 -0.9795982 0.36692938 0.9375015
+-0.038060177 0.1913415 -0.98078525 0.03920725 -0.19710475 0.97959816 0.36692938 0.06249859
+-0.19134133 0.9619392 -0.19509032 0.19138819 -0.96216524 0.19392942 0.36696553 0.43750224
+-0.16221133 0.8154926 0.55557024 0.16257726 -0.8173258 -0.55276334 0.36696395 0.6874948
+-0.10838604 0.5448945 -0.8314696 0.109206766 -0.5490191 0.8286446 0.36695865 0.18750465
+-0.19508962 0.9807842 0 0.19508968 -0.98078537 -6.022861e-08 0.36696568 0.50000006
+-0.10838604 0.5448945 0.8314696 0.10920856 -0.5490176 -0.82864535 0.36695865 0.81249547
+-0.16221133 0.8154926 -0.55557024 0.16257733 -0.8173258 0.5527633 0.36696395 0.3125053
+-3.2782555e-07 -0.99999934 0 3.059615e-06 1 8.43201e-09 0 0.50000006
+-5.2154064e-08 -0.38268334 0.9238795 -5.1156894e-07 0.3878863 -0.9217072 9.202369e-06 0.8750829
+-1.0430813e-07 -0.8314693 -0.55557024 1.8288462e-06 0.8333393 0.55276185 1.1756387e-06 0.31245407
+-1.0430813e-07 -0.8314693 0.55557024 1.7807821e-06 0.83333933 -0.55276185 1.1756387e-06 0.687546
+-5.2154064e-08 -0.38268334 -0.9238795 -5.091784e-07 0.3878863 0.9217072 9.202369e-06 0.12491719
+3 0 1 2
+3 3 4 5
+3 6 2 7
+3 8 9 3
+3 10 7 11
+3 12 8 13
+3 14 15 16
+3 17 10 11
+3 18 13 19
+3 20 15 14
+3 21 19 22
+3 23 24 20
+3 25 22 26
+3 27 28 23
+3 1 25 26
+3 4 27 5
+3 29 30 25
+3 31 32 4
+3 0 33 29
+3 34 4 9
+3 6 35 0
+3 36 34 9
+3 37 6 10
+3 38 36 12
+3 15 39 16
+3 17 37 10
+3 40 12 18
+3 41 15 24
+3 42 18 21
+3 43 24 28
+3 25 42 21
+3 44 28 32
+3 39 45 16
+3 17 46 37
+3 47 38 40
+3 48 39 41
+3 49 40 42
+3 50 41 43
+3 30 49 42
+3 51 43 44
+3 33 52 30
+3 53 44 31
+3 35 54 33
+3 55 31 34
+3 56 57 35
+3 58 55 34
+3 37 59 56
+3 38 60 58
+3 53 61 51
+3 57 62 54
+3 63 53 55
+3 59 64 57
+3 60 63 55
+3 46 65 59
+3 66 67 60
+3 45 68 16
+3 17 69 46
+3 70 66 47
+3 71 45 48
+3 72 47 49
+3 73 48 50
+3 52 72 49
+3 61 50 51
+3 62 52 54
+3 74 75 70
+3 71 76 68
+3 77 70 72
+3 73 78 71
+3 79 77 72
+3 80 73 61
+3 81 79 62
+3 82 80 61
+3 64 81 62
+3 83 82 63
+3 84 64 65
+3 67 83 63
+3 85 65 69
+3 75 86 67
+3 68 76 16
+3 17 85 69
+3 87 88 81
+3 89 90 83
+3 84 91 87
+3 86 89 83
+3 85 92 84
+3 93 94 86
+3 76 95 16
+3 17 96 85
+3 97 93 74
+3 98 76 78
+3 99 74 77
+3 100 78 101
+3 102 99 77
+3 103 101 80
+3 88 102 81
+3 90 103 80
+3 104 95 98
+3 105 97 99
+3 100 104 98
+3 106 105 99
+3 107 100 103
+3 108 106 88
+3 109 107 103
+3 91 108 88
+3 110 109 89
+3 111 91 92
+3 94 110 89
+3 112 92 96
+3 113 114 94
+3 95 115 16
+3 17 112 96
+3 116 113 97
+3 117 118 110
+3 111 119 120
+3 114 117 110
+3 121 111 112
+3 122 123 114
+3 115 124 16
+3 17 121 112
+3 125 122 116
+3 126 115 104
+3 127 116 105
+3 128 104 129
+3 130 127 105
+3 131 129 107
+3 132 130 108
+3 118 131 107
+3 120 132 108
+3 133 125 127
+3 128 134 126
+3 135 133 127
+3 136 128 131
+3 137 135 132
+3 138 136 131
+3 119 137 132
+3 139 138 117
+3 140 119 141
+3 123 139 117
+3 142 141 121
+3 143 144 123
+3 124 145 16
+3 17 142 121
+3 146 143 125
+3 126 145 124
+3 140 147 148
+3 144 149 139
+3 150 140 142
+3 151 152 144
+3 145 153 16
+3 17 150 142
+3 154 151 146
+3 155 145 134
+3 156 146 133
+3 157 134 158
+3 159 156 133
+3 160 158 136
+3 161 159 137
+3 162 160 136
+3 148 161 137
+3 149 162 139
+3 163 164 156
+3 165 157 160
+3 166 163 161
+3 167 165 160
+3 147 166 161
+3 168 167 149
+3 169 170 147
+3 152 168 149
+3 150 171 169
+3 172 173 152
+3 153 174 16
+3 17 175 150
+3 176 172 154
+3 177 153 155
+3 164 154 156
+3 178 155 157
+3 175 179 171
+3 180 181 173
+3 174 182 16
+3 17 183 175
+3 184 180 176
+3 185 174 177
+3 186 176 164
+3 187 177 178
+3 188 186 164
+3 189 178 165
+3 190 188 166
+3 191 189 165
+3 170 190 166
+3 192 191 168
+3 171 193 170
+3 173 192 168
+3 194 187 189
+3 195 196 190
+3 197 194 189
+3 193 195 190
+3 198 197 192
+3 199 193 179
+3 181 198 192
+3 200 179 183
+3 201 202 181
+3 182 203 16
+3 17 200 183
+3 204 201 184
+3 185 203 182
+3 205 184 186
+3 187 206 185
+3 196 205 186
+3 207 208 202
+3 203 209 16
+3 17 210 200
+3 211 207 204
+3 212 203 206
+3 213 204 205
+3 214 206 215
+3 216 213 205
+3 217 215 194
+3 218 216 195
+3 219 217 194
+3 220 218 195
+3 221 219 198
+3 199 222 220
+3 202 221 198
+3 200 223 199
+3 224 225 218
+3 226 227 217
+3 222 224 218
+3 228 226 221
+3 223 229 222
+3 208 228 221
+3 210 230 223
+3 231 232 208
+3 209 233 16
+3 17 234 210
+3 235 231 211
+3 236 209 212
+3 237 211 213
+3 238 212 214
+3 225 237 213
+3 227 214 217
+3 233 239 16
+3 17 240 234
+3 241 242 235
+3 236 239 233
+3 243 235 237
+3 244 236 238
+3 245 243 237
+3 246 238 227
+3 247 245 224
+3 248 246 227
+3 229 247 224
+3 249 248 228
+3 230 250 229
+3 232 249 228
+3 240 230 234
+3 242 251 232
+3 252 253 254
+3 255 256 257
+3 258 252 259
+3 260 255 261
+3 262 258 259
+3 263 261 264
+3 265 266 262
+3 267 268 269
+3 270 263 264
+3 271 265 272
+3 273 268 267
+3 274 272 275
+3 276 277 273
+3 278 274 275
+3 253 276 254
+3 256 278 257
+3 279 280 271
+3 277 281 268
+3 282 271 274
+3 283 277 284
+3 285 282 274
+3 286 284 253
+3 287 285 256
+3 288 286 253
+3 289 287 256
+3 290 288 258
+3 260 291 289
+3 266 290 258
+3 292 260 263
+3 280 293 266
+3 268 281 269
+3 270 292 263
+3 291 294 287
+3 295 296 290
+3 297 291 298
+3 293 295 290
+3 299 298 292
+3 300 301 293
+3 281 302 16
+3 17 299 292
+3 303 300 279
+3 304 281 305
+3 306 279 282
+3 307 305 283
+3 308 306 282
+3 309 283 286
+3 294 308 287
+3 296 309 286
+3 310 303 306
+3 307 311 304
+3 312 310 306
+3 313 307 309
+3 314 312 294
+3 315 313 309
+3 316 314 294
+3 317 315 295
+3 318 316 297
+3 301 317 295
+3 299 318 297
+3 319 320 301
+3 302 321 16
+3 17 322 299
+3 323 319 303
+3 311 302 304
+3 324 325 318
+3 320 326 317
+3 327 318 322
+3 328 329 320
+3 321 330 16
+3 17 327 322
+3 331 328 323
+3 311 330 321
+3 332 323 310
+3 333 334 311
+3 335 332 310
+3 336 333 313
+3 337 335 314
+3 338 336 313
+3 325 337 314
+3 326 338 317
+3 339 334 340
+3 341 342 332
+3 343 340 336
+3 344 341 337
+3 345 343 336
+3 346 344 337
+3 347 345 326
+3 348 346 324
+3 329 347 326
+3 327 348 324
+3 349 350 329
+3 330 351 16
+3 17 352 327
+3 353 349 331
+3 354 330 334
+3 342 331 332
+3 350 355 347
+3 352 356 348
+3 357 358 350
+3 351 359 16
+3 17 360 352
+3 361 357 353
+3 362 351 354
+3 363 353 342
+3 339 362 354
+3 364 363 342
+3 365 339 343
+3 366 364 344
+3 367 365 343
+3 368 366 344
+3 355 367 347
+3 356 368 348
+3 369 370 363
+3 371 372 365
+3 373 369 366
+3 374 371 365
+3 375 373 366
+3 376 374 355
+3 377 375 356
+3 358 376 355
+3 360 377 356
+3 378 379 358
+3 359 380 16
+3 17 381 360
+3 382 378 361
+3 383 359 362
+3 370 361 363
+3 372 383 362
+3 384 377 381
+3 385 386 379
+3 380 387 16
+3 17 384 381
+3 388 385 382
+3 383 387 380
+3 389 382 370
+3 390 391 383
+3 392 389 370
+3 393 390 371
+3 394 392 373
+3 395 393 371
+3 396 394 373
+3 397 395 376
+3 398 396 377
+3 379 397 376
+3 399 400 393
+3 401 402 394
+3 403 399 393
+3 404 401 394
+3 405 403 397
+3 406 404 398
+3 386 405 397
+3 407 398 384
+3 408 409 386
+3 387 410 16
+3 17 407 384
+3 411 408 388
+3 391 410 387
+3 412 388 389
+3 400 413 391
+3 402 412 389
+3 414 415 409
+3 410 416 16
+3 17 417 407
+3 418 414 411
+3 419 410 413
+3 420 411 412
+3 421 419 413
+3 422 420 412
+3 423 421 399
+3 424 422 401
+3 425 423 399
+3 426 424 401
+3 427 425 405
+3 428 426 406
+3 409 427 405
+3 407 428 406
+3 429 430 424
+3 431 432 423
+3 433 429 424
+3 434 431 427
+3 435 433 428
+3 415 434 427
+3 436 428 417
+3 437 438 415
+3 416 439 16
+3 17 436 417
+3 440 437 418
+3 441 416 419
+3 442 418 420
+3 443 441 419
+3 430 442 420
+3 432 443 423
+3 17 444 436
+3 445 446 440
+3 447 439 441
+3 448 440 442
+3 449 447 441
+3 450 448 442
+3 451 449 432
+3 452 450 429
+3 453 451 432
+3 454 452 429
+3 455 453 434
+3 456 454 435
+3 438 455 434
+3 436 456 435
+3 446 457 438
+3 439 458 16
+3 459 460 452
+3 461 462 455
+3 463 459 456
+3 457 461 455
+3 464 456 444
+3 465 466 457
+3 458 467 16
+3 17 464 444
+3 468 465 445
+3 447 467 458
+3 469 445 448
+3 470 471 447
+3 472 469 448
+3 473 470 451
+3 460 472 452
+3 462 473 451
+3 474 467 471
+3 475 468 469
+3 476 474 471
+3 477 475 469
+3 478 476 473
+3 479 477 460
+3 480 478 473
+3 481 479 460
+3 482 480 461
+3 483 481 463
+3 466 482 461
+3 464 483 463
+3 484 485 466
+3 467 486 16
+3 17 487 464
+3 488 484 468
+3 482 5 489
+3 7 490 483
+3 485 3 482
+3 11 483 487
+3 491 8 485
+3 486 14 16
+3 17 11 487
+3 19 491 488
+3 20 486 474
+3 22 488 475
+3 492 20 474
+3 26 475 493
+3 478 23 492
+3 1 493 479
+3 489 27 478
+3 490 1 479
+3 0 29 1
+3 3 9 4
+3 6 0 2
+3 8 36 9
+3 10 6 7
+3 12 36 8
+3 18 12 13
+3 20 24 15
+3 21 18 19
+3 23 28 24
+3 25 21 22
+3 27 32 28
+3 1 29 25
+3 4 32 27
+3 29 33 30
+3 31 44 32
+3 0 35 33
+3 34 31 4
+3 6 56 35
+3 36 58 34
+3 37 56 6
+3 38 58 36
+3 40 38 12
+3 41 39 15
+3 42 40 18
+3 43 41 24
+3 25 30 42
+3 44 43 28
+3 47 66 38
+3 48 45 39
+3 49 47 40
+3 50 48 41
+3 30 52 49
+3 51 50 43
+3 33 54 52
+3 53 51 44
+3 35 57 54
+3 55 53 31
+3 56 59 57
+3 58 60 55
+3 37 46 59
+3 38 66 60
+3 53 82 61
+3 57 64 62
+3 63 82 53
+3 59 65 64
+3 60 67 63
+3 46 69 65
+3 66 75 67
+3 70 75 66
+3 71 68 45
+3 72 70 47
+3 73 71 48
+3 52 79 72
+3 61 73 50
+3 62 79 52
+3 74 93 75
+3 71 78 76
+3 77 74 70
+3 73 101 78
+3 79 102 77
+3 80 101 73
+3 81 102 79
+3 82 90 80
+3 64 87 81
+3 83 90 82
+3 84 87 64
+3 67 86 83
+3 85 84 65
+3 75 93 86
+3 87 91 88
+3 89 109 90
+3 84 92 91
+3 86 94 89
+3 85 96 92
+3 93 113 94
+3 97 113 93
+3 98 95 76
+3 99 97 74
+3 100 98 78
+3 102 106 99
+3 103 100 101
+3 88 106 102
+3 90 109 103
+3 104 115 95
+3 105 116 97
+3 100 129 104
+3 106 130 105
+3 107 129 100
+3 108 130 106
+3 109 118 107
+3 91 120 108
+3 110 118 109
+3 111 120 91
+3 94 114 110
+3 112 111 92
+3 113 122 114
+3 116 122 113
+3 117 138 118
+3 111 141 119
+3 114 123 117
+3 121 141 111
+3 122 143 123
+3 125 143 122
+3 126 124 115
+3 127 125 116
+3 128 126 104
+3 130 135 127
+3 131 128 129
+3 132 135 130
+3 118 138 131
+3 120 119 132
+3 133 146 125
+3 128 158 134
+3 135 159 133
+3 136 158 128
+3 137 159 135
+3 138 162 136
+3 119 148 137
+3 139 162 138
+3 140 148 119
+3 123 144 139
+3 142 140 141
+3 143 151 144
+3 146 151 143
+3 126 134 145
+3 140 169 147
+3 144 152 149
+3 150 169 140
+3 151 172 152
+3 154 172 151
+3 155 153 145
+3 156 154 146
+3 157 155 134
+3 159 163 156
+3 160 157 158
+3 161 163 159
+3 162 167 160
+3 148 147 161
+3 149 167 162
+3 163 188 164
+3 165 178 157
+3 166 188 163
+3 167 191 165
+3 147 170 166
+3 168 191 167
+3 169 171 170
+3 152 173 168
+3 150 175 171
+3 172 180 173
+3 176 180 172
+3 177 174 153
+3 164 176 154
+3 178 177 155
+3 175 183 179
+3 180 201 181
+3 184 201 180
+3 185 182 174
+3 186 184 176
+3 187 185 177
+3 188 196 186
+3 189 187 178
+3 190 196 188
+3 191 197 189
+3 170 193 190
+3 192 197 191
+3 171 179 193
+3 173 181 192
+3 194 215 187
+3 195 216 196
+3 197 219 194
+3 193 220 195
+3 198 219 197
+3 199 220 193
+3 181 202 198
+3 200 199 179
+3 201 207 202
+3 204 207 201
+3 185 206 203
+3 205 204 184
+3 187 215 206
+3 196 216 205
+3 207 231 208
+3 211 231 207
+3 212 209 203
+3 213 211 204
+3 214 212 206
+3 216 225 213
+3 217 214 215
+3 218 225 216
+3 219 226 217
+3 220 222 218
+3 221 226 219
+3 199 223 222
+3 202 208 221
+3 200 210 223
+3 224 245 225
+3 226 248 227
+3 222 229 224
+3 228 248 226
+3 223 230 229
+3 208 232 228
+3 210 234 230
+3 231 242 232
+3 235 242 231
+3 236 233 209
+3 237 235 211
+3 238 236 212
+3 225 245 237
+3 227 238 214
+3 241 494 242
+3 236 495 239
+3 243 241 235
+3 244 495 236
+3 245 496 243
+3 246 244 238
+3 247 496 245
+3 248 497 246
+3 229 250 247
+3 249 497 248
+3 230 498 250
+3 232 251 249
+3 240 498 230
+3 242 494 251
+3 252 288 253
+3 255 289 256
+3 258 288 252
+3 260 289 255
+3 262 266 258
+3 263 260 261
+3 265 280 266
+3 271 280 265
+3 273 277 268
+3 274 271 272
+3 276 284 277
+3 278 285 274
+3 253 284 276
+3 256 285 278
+3 279 300 280
+3 277 305 281
+3 282 279 271
+3 283 305 277
+3 285 308 282
+3 286 283 284
+3 287 308 285
+3 288 296 286
+3 289 291 287
+3 290 296 288
+3 260 298 291
+3 266 293 290
+3 292 298 260
+3 280 300 293
+3 291 316 294
+3 295 315 296
+3 297 316 291
+3 293 301 295
+3 299 297 298
+3 300 319 301
+3 303 319 300
+3 304 302 281
+3 306 303 279
+3 307 304 305
+3 308 312 306
+3 309 307 283
+3 294 312 308
+3 296 315 309
+3 310 323 303
+3 307 333 311
+3 312 335 310
+3 313 333 307
+3 314 335 312
+3 315 338 313
+3 316 325 314
+3 317 338 315
+3 318 325 316
+3 301 320 317
+3 299 322 318
+3 319 328 320
+3 323 328 319
+3 311 321 302
+3 324 346 325
+3 320 329 326
+3 327 324 318
+3 328 349 329
+3 331 349 328
+3 311 334 330
+3 332 331 323
+3 333 340 334
+3 335 341 332
+3 336 340 333
+3 337 341 335
+3 338 345 336
+3 325 346 337
+3 326 345 338
+3 339 354 334
+3 341 364 342
+3 343 339 340
+3 344 364 341
+3 345 367 343
+3 346 368 344
+3 347 367 345
+3 348 368 346
+3 329 350 347
+3 327 352 348
+3 349 357 350
+3 353 357 349
+3 354 351 330
+3 342 353 331
+3 350 358 355
+3 352 360 356
+3 357 378 358
+3 361 378 357
+3 362 359 351
+3 363 361 353
+3 339 372 362
+3 364 369 363
+3 365 372 339
+3 366 369 364
+3 367 374 365
+3 368 375 366
+3 355 374 367
+3 356 375 368
+3 369 392 370
+3 371 390 372
+3 373 392 369
+3 374 395 371
+3 375 396 373
+3 376 395 374
+3 377 396 375
+3 358 379 376
+3 360 381 377
+3 378 385 379
+3 382 385 378
+3 383 380 359
+3 370 382 361
+3 372 390 383
+3 384 398 377
+3 385 408 386
+3 388 408 385
+3 383 391 387
+3 389 388 382
+3 390 400 391
+3 392 402 389
+3 393 400 390
+3 394 402 392
+3 395 403 393
+3 396 404 394
+3 397 403 395
+3 398 404 396
+3 379 386 397
+3 399 421 400
+3 401 422 402
+3 403 425 399
+3 404 426 401
+3 405 425 403
+3 406 426 404
+3 386 409 405
+3 407 406 398
+3 408 414 409
+3 411 414 408
+3 391 413 410
+3 412 411 388
+3 400 421 413
+3 402 422 412
+3 414 437 415
+3 418 437 414
+3 419 416 410
+3 420 418 411
+3 421 443 419
+3 422 430 420
+3 423 443 421
+3 424 430 422
+3 425 431 423
+3 426 433 424
+3 427 431 425
+3 428 433 426
+3 409 415 427
+3 407 417 428
+3 429 450 430
+3 431 453 432
+3 433 454 429
+3 434 453 431
+3 435 454 433
+3 415 438 434
+3 436 435 428
+3 437 446 438
+3 440 446 437
+3 441 439 416
+3 442 440 418
+3 443 449 441
+3 430 450 442
+3 432 449 443
+3 445 465 446
+3 447 458 439
+3 448 445 440
+3 449 470 447
+3 450 472 448
+3 451 470 449
+3 452 472 450
+3 453 462 451
+3 454 459 452
+3 455 462 453
+3 456 459 454
+3 438 457 455
+3 436 444 456
+3 446 465 457
+3 459 481 460
+3 461 480 462
+3 463 481 459
+3 457 466 461
+3 464 463 456
+3 465 484 466
+3 468 484 465
+3 447 471 467
+3 469 468 445
+3 470 476 471
+3 472 477 469
+3 473 476 470
+3 460 477 472
+3 462 480 473
+3 474 486 467
+3 475 488 468
+3 476 492 474
+3 477 493 475
+3 478 492 476
+3 479 493 477
+3 480 489 478
+3 481 490 479
+3 482 489 480
+3 483 490 481
+3 466 485 482
+3 464 487 483
+3 484 491 485
+3 488 491 484
+3 482 3 5
+3 7 2 490
+3 485 8 3
+3 11 7 483
+3 491 13 8
+3 19 13 491
+3 20 14 486
+3 22 19 488
+3 492 23 20
+3 26 22 475
+3 478 27 23
+3 1 26 493
+3 489 5 27
+3 490 2 1
diff --git a/src/meshes/uvsphere-inverted.ts b/src/meshes/uvsphere-inverted.ts
new file mode 100644
index 0000000..3f8102d
--- /dev/null
+++ b/src/meshes/uvsphere-inverted.ts
@@ -0,0 +1,12 @@
+import { Mesh } from "../renderer/mesh";
+
+// prettier-ignore
+export default new Mesh({
+ colors: null,
+ faces: new Uint16Array([0,1,2,3,4,5,6,2,7,8,9,3,10,7,11,12,8,13,14,15,16,17,10,11,18,13,19,20,15,14,21,19,22,23,24,20,25,22,26,27,28,23,1,25,26,4,27,5,29,30,25,31,32,4,0,33,29,34,4,9,6,35,0,36,34,9,37,6,10,38,36,12,15,39,16,17,37,10,40,12,18,41,15,24,42,18,21,43,24,28,25,42,21,44,28,32,39,45,16,17,46,37,47,38,40,48,39,41,49,40,42,50,41,43,30,49,42,51,43,44,33,52,30,53,44,31,35,54,33,55,31,34,56,57,35,58,55,34,37,59,56,38,60,58,53,61,51,57,62,54,63,53,55,59,64,57,60,63,55,46,65,59,66,67,60,45,68,16,17,69,46,70,66,47,71,45,48,72,47,49,73,48,50,52,72,49,61,50,51,62,52,54,74,75,70,71,76,68,77,70,72,73,78,71,79,77,72,80,73,61,81,79,62,82,80,61,64,81,62,83,82,63,84,64,65,67,83,63,85,65,69,75,86,67,68,76,16,17,85,69,87,88,81,89,90,83,84,91,87,86,89,83,85,92,84,93,94,86,76,95,16,17,96,85,97,93,74,98,76,78,99,74,77,100,78,101,102,99,77,103,101,80,88,102,81,90,103,80,104,95,98,105,97,99,100,104,98,106,105,99,107,100,103,108,106,88,109,107,103,91,108,88,110,109,89,111,91,92,94,110,89,112,92,96,113,114,94,95,115,16,17,112,96,116,113,97,117,118,110,111,119,120,114,117,110,121,111,112,122,123,114,115,124,16,17,121,112,125,122,116,126,115,104,127,116,105,128,104,129,130,127,105,131,129,107,132,130,108,118,131,107,120,132,108,133,125,127,128,134,126,135,133,127,136,128,131,137,135,132,138,136,131,119,137,132,139,138,117,140,119,141,123,139,117,142,141,121,143,144,123,124,145,16,17,142,121,146,143,125,126,145,124,140,147,148,144,149,139,150,140,142,151,152,144,145,153,16,17,150,142,154,151,146,155,145,134,156,146,133,157,134,158,159,156,133,160,158,136,161,159,137,162,160,136,148,161,137,149,162,139,163,164,156,165,157,160,166,163,161,167,165,160,147,166,161,168,167,149,169,170,147,152,168,149,150,171,169,172,173,152,153,174,16,17,175,150,176,172,154,177,153,155,164,154,156,178,155,157,175,179,171,180,181,173,174,182,16,17,183,175,184,180,176,185,174,177,186,176,164,187,177,178,188,186,164,189,178,165,190,188,166,191,189,165,170,190,166,192,191,168,171,193,170,173,192,168,194,187,189,195,196,190,197,194,189,193,195,190,198,197,192,199,193,179,181,198,192,200,179,183,201,202,181,182,203,16,17,200,183,204,201,184,185,203,182,205,184,186,187,206,185,196,205,186,207,208,202,203,209,16,17,210,200,211,207,204,212,203,206,213,204,205,214,206,215,216,213,205,217,215,194,218,216,195,219,217,194,220,218,195,221,219,198,199,222,220,202,221,198,200,223,199,224,225,218,226,227,217,222,224,218,228,226,221,223,229,222,208,228,221,210,230,223,231,232,208,209,233,16,17,234,210,235,231,211,236,209,212,237,211,213,238,212,214,225,237,213,227,214,217,233,239,16,17,240,234,241,242,235,236,239,233,243,235,237,244,236,238,245,243,237,246,238,227,247,245,224,248,246,227,229,247,224,249,248,228,230,250,229,232,249,228,240,230,234,242,251,232,252,253,254,255,256,257,258,252,259,260,255,261,262,258,259,263,261,264,265,266,262,267,268,269,270,263,264,271,265,272,273,268,267,274,272,275,276,277,273,278,274,275,253,276,254,256,278,257,279,280,271,277,281,268,282,271,274,283,277,284,285,282,274,286,284,253,287,285,256,288,286,253,289,287,256,290,288,258,260,291,289,266,290,258,292,260,263,280,293,266,268,281,269,270,292,263,291,294,287,295,296,290,297,291,298,293,295,290,299,298,292,300,301,293,281,302,16,17,299,292,303,300,279,304,281,305,306,279,282,307,305,283,308,306,282,309,283,286,294,308,287,296,309,286,310,303,306,307,311,304,312,310,306,313,307,309,314,312,294,315,313,309,316,314,294,317,315,295,318,316,297,301,317,295,299,318,297,319,320,301,302,321,16,17,322,299,323,319,303,311,302,304,324,325,318,320,326,317,327,318,322,328,329,320,321,330,16,17,327,322,331,328,323,311,330,321,332,323,310,333,334,311,335,332,310,336,333,313,337,335,314,338,336,313,325,337,314,326,338,317,339,334,340,341,342,332,343,340,336,344,341,337,345,343,336,346,344,337,347,345,326,348,346,324,329,347,326,327,348,324,349,350,329,330,351,16,17,352,327,353,349,331,354,330,334,342,331,332,350,355,347,352,356,348,357,358,350,351,359,16,17,360,352,361,357,353,362,351,354,363,353,342,339,362,354,364,363,342,365,339,343,366,364,344,367,365,343,368,366,344,355,367,347,356,368,348,369,370,363,371,372,365,373,369,366,374,371,365,375,373,366,376,374,355,377,375,356,358,376,355,360,377,356,378,379,358,359,380,16,17,381,360,382,378,361,383,359,362,370,361,363,372,383,362,384,377,381,385,386,379,380,387,16,17,384,381,388,385,382,383,387,380,389,382,370,390,391,383,392,389,370,393,390,371,394,392,373,395,393,371,396,394,373,397,395,376,398,396,377,379,397,376,399,400,393,401,402,394,403,399,393,404,401,394,405,403,397,406,404,398,386,405,397,407,398,384,408,409,386,387,410,16,17,407,384,411,408,388,391,410,387,412,388,389,400,413,391,402,412,389,414,415,409,410,416,16,17,417,407,418,414,411,419,410,413,420,411,412,421,419,413,422,420,412,423,421,399,424,422,401,425,423,399,426,424,401,427,425,405,428,426,406,409,427,405,407,428,406,429,430,424,431,432,423,433,429,424,434,431,427,435,433,428,415,434,427,436,428,417,437,438,415,416,439,16,17,436,417,440,437,418,441,416,419,442,418,420,443,441,419,430,442,420,432,443,423,17,444,436,445,446,440,447,439,441,448,440,442,449,447,441,450,448,442,451,449,432,452,450,429,453,451,432,454,452,429,455,453,434,456,454,435,438,455,434,436,456,435,446,457,438,439,458,16,459,460,452,461,462,455,463,459,456,457,461,455,464,456,444,465,466,457,458,467,16,17,464,444,468,465,445,447,467,458,469,445,448,470,471,447,472,469,448,473,470,451,460,472,452,462,473,451,474,467,471,475,468,469,476,474,471,477,475,469,478,476,473,479,477,460,480,478,473,481,479,460,482,480,461,483,481,463,466,482,461,464,483,463,484,485,466,467,486,16,17,487,464,488,484,468,482,5,489,7,490,483,485,3,482,11,483,487,491,8,485,486,14,16,17,11,487,19,491,488,20,486,474,22,488,475,492,20,474,26,475,493,478,23,492,1,493,479,489,27,478,490,1,479,0,29,1,3,9,4,6,0,2,8,36,9,10,6,7,12,36,8,18,12,13,20,24,15,21,18,19,23,28,24,25,21,22,27,32,28,1,29,25,4,32,27,29,33,30,31,44,32,0,35,33,34,31,4,6,56,35,36,58,34,37,56,6,38,58,36,40,38,12,41,39,15,42,40,18,43,41,24,25,30,42,44,43,28,47,66,38,48,45,39,49,47,40,50,48,41,30,52,49,51,50,43,33,54,52,53,51,44,35,57,54,55,53,31,56,59,57,58,60,55,37,46,59,38,66,60,53,82,61,57,64,62,63,82,53,59,65,64,60,67,63,46,69,65,66,75,67,70,75,66,71,68,45,72,70,47,73,71,48,52,79,72,61,73,50,62,79,52,74,93,75,71,78,76,77,74,70,73,101,78,79,102,77,80,101,73,81,102,79,82,90,80,64,87,81,83,90,82,84,87,64,67,86,83,85,84,65,75,93,86,87,91,88,89,109,90,84,92,91,86,94,89,85,96,92,93,113,94,97,113,93,98,95,76,99,97,74,100,98,78,102,106,99,103,100,101,88,106,102,90,109,103,104,115,95,105,116,97,100,129,104,106,130,105,107,129,100,108,130,106,109,118,107,91,120,108,110,118,109,111,120,91,94,114,110,112,111,92,113,122,114,116,122,113,117,138,118,111,141,119,114,123,117,121,141,111,122,143,123,125,143,122,126,124,115,127,125,116,128,126,104,130,135,127,131,128,129,132,135,130,118,138,131,120,119,132,133,146,125,128,158,134,135,159,133,136,158,128,137,159,135,138,162,136,119,148,137,139,162,138,140,148,119,123,144,139,142,140,141,143,151,144,146,151,143,126,134,145,140,169,147,144,152,149,150,169,140,151,172,152,154,172,151,155,153,145,156,154,146,157,155,134,159,163,156,160,157,158,161,163,159,162,167,160,148,147,161,149,167,162,163,188,164,165,178,157,166,188,163,167,191,165,147,170,166,168,191,167,169,171,170,152,173,168,150,175,171,172,180,173,176,180,172,177,174,153,164,176,154,178,177,155,175,183,179,180,201,181,184,201,180,185,182,174,186,184,176,187,185,177,188,196,186,189,187,178,190,196,188,191,197,189,170,193,190,192,197,191,171,179,193,173,181,192,194,215,187,195,216,196,197,219,194,193,220,195,198,219,197,199,220,193,181,202,198,200,199,179,201,207,202,204,207,201,185,206,203,205,204,184,187,215,206,196,216,205,207,231,208,211,231,207,212,209,203,213,211,204,214,212,206,216,225,213,217,214,215,218,225,216,219,226,217,220,222,218,221,226,219,199,223,222,202,208,221,200,210,223,224,245,225,226,248,227,222,229,224,228,248,226,223,230,229,208,232,228,210,234,230,231,242,232,235,242,231,236,233,209,237,235,211,238,236,212,225,245,237,227,238,214,241,494,242,236,495,239,243,241,235,244,495,236,245,496,243,246,244,238,247,496,245,248,497,246,229,250,247,249,497,248,230,498,250,232,251,249,240,498,230,242,494,251,252,288,253,255,289,256,258,288,252,260,289,255,262,266,258,263,260,261,265,280,266,271,280,265,273,277,268,274,271,272,276,284,277,278,285,274,253,284,276,256,285,278,279,300,280,277,305,281,282,279,271,283,305,277,285,308,282,286,283,284,287,308,285,288,296,286,289,291,287,290,296,288,260,298,291,266,293,290,292,298,260,280,300,293,291,316,294,295,315,296,297,316,291,293,301,295,299,297,298,300,319,301,303,319,300,304,302,281,306,303,279,307,304,305,308,312,306,309,307,283,294,312,308,296,315,309,310,323,303,307,333,311,312,335,310,313,333,307,314,335,312,315,338,313,316,325,314,317,338,315,318,325,316,301,320,317,299,322,318,319,328,320,323,328,319,311,321,302,324,346,325,320,329,326,327,324,318,328,349,329,331,349,328,311,334,330,332,331,323,333,340,334,335,341,332,336,340,333,337,341,335,338,345,336,325,346,337,326,345,338,339,354,334,341,364,342,343,339,340,344,364,341,345,367,343,346,368,344,347,367,345,348,368,346,329,350,347,327,352,348,349,357,350,353,357,349,354,351,330,342,353,331,350,358,355,352,360,356,357,378,358,361,378,357,362,359,351,363,361,353,339,372,362,364,369,363,365,372,339,366,369,364,367,374,365,368,375,366,355,374,367,356,375,368,369,392,370,371,390,372,373,392,369,374,395,371,375,396,373,376,395,374,377,396,375,358,379,376,360,381,377,378,385,379,382,385,378,383,380,359,370,382,361,372,390,383,384,398,377,385,408,386,388,408,385,383,391,387,389,388,382,390,400,391,392,402,389,393,400,390,394,402,392,395,403,393,396,404,394,397,403,395,398,404,396,379,386,397,399,421,400,401,422,402,403,425,399,404,426,401,405,425,403,406,426,404,386,409,405,407,406,398,408,414,409,411,414,408,391,413,410,412,411,388,400,421,413,402,422,412,414,437,415,418,437,414,419,416,410,420,418,411,421,443,419,422,430,420,423,443,421,424,430,422,425,431,423,426,433,424,427,431,425,428,433,426,409,415,427,407,417,428,429,450,430,431,453,432,433,454,429,434,453,431,435,454,433,415,438,434,436,435,428,437,446,438,440,446,437,441,439,416,442,440,418,443,449,441,430,450,442,432,449,443,445,465,446,447,458,439,448,445,440,449,470,447,450,472,448,451,470,449,452,472,450,453,462,451,454,459,452,455,462,453,456,459,454,438,457,455,436,444,456,446,465,457,459,481,460,461,480,462,463,481,459,457,466,461,464,463,456,465,484,466,468,484,465,447,471,467,469,468,445,470,476,471,472,477,469,473,476,470,460,477,472,462,480,473,474,486,467,475,488,468,476,492,474,477,493,475,478,492,476,479,493,477,480,489,478,481,490,479,482,489,480,483,490,481,466,485,482,464,487,483,484,491,485,488,491,484,482,3,5,7,2,490,485,8,3,11,7,483,491,13,8,19,13,491,20,14,486,22,19,488,492,23,20,26,22,475,478,27,23,1,26,493,489,5,27,490,2,1]),
+ name: "src/meshes/uvsphere-inverted.ply",
+ normals: new Float32Array([-0.10920556,-0.54901874,0.828645,7.36263e-7,-0.71014285,0.7040576,0.0000024978901,-0.5597739,0.82864535,0.0000024244364,-0.9247653,-0.38053808,-0.16257648,-0.81732804,-0.5527602,0.0000026423356,-0.8333394,-0.55276155,-0.075672254,-0.38043365,0.9217071,0.0000010410653,-0.3878866,0.92170715,0.000001119907,-0.98101544,-0.19392966,-0.18041027,-0.9069968,-0.38053787,-0.039207004,-0.19710459,0.9795982,1.166384e-7,-0.20096582,0.9795982,-0.19509047,-0.98078525,1.6864028e-8,0.000001652696,-1,0.0000013033653,0.0000017456922,-0.2009661,-0.9795982,-0.039206814,-0.1971043,-0.9795982,1.2833326e-7,-6.8863573e-9,-1,-5.5914228e-8,-1.0179833e-8,1,-0.19138597,-0.96216536,0.19393073,0.0000026854111,-0.9810151,0.1939313,8.80021e-7,-0.38788778,-0.9217066,-0.18041024,-0.9069967,0.3805379,0.0000024376714,-0.9247653,0.380538,0.00000279902,-0.5597751,-0.8286445,-0.07567183,-0.38043144,-0.921708,-0.16257653,-0.8173281,0.55276006,0.0000026411344,-0.83333945,0.5527615,0.000001068846,-0.7101427,-0.7040579,-0.10920691,-0.5490186,-0.82864493,-0.13854264,-0.69649535,0.70405966,-0.31890693,-0.7699044,0.55276185,-0.3189069,-0.7699043,-0.552762,-0.13854262,-0.69649535,-0.7040598,-0.2717612,-0.6560843,0.7040592,-0.35389027,-0.85437256,-0.3805382,-0.21421853,-0.5171642,0.82864445,-0.19138914,-0.96216476,-0.19393094,-0.076905526,-0.18566789,0.9795984,-0.3826847,-0.923879,-0.0000010877161,-0.076906286,-0.18566822,-0.9795982,-0.3754176,-0.90634024,0.19393033,-0.14843786,-0.35836002,-0.9217072,-0.35389027,-0.85437256,0.3805381,-0.21421826,-0.5171642,-0.8286446,-0.2717612,-0.65608424,-0.7040592,-0.111650646,-0.16709697,-0.9795982,-0.111651115,-0.16709696,0.97959816,-0.54502237,-0.8156847,0.19393066,-0.21549866,-0.32251528,-0.9217072,-0.5137702,-0.7689153,0.38053825,-0.3109961,-0.46543503,-0.8286445,-0.39453328,-0.59045976,-0.7040602,-0.46298003,-0.69289523,0.55276185,-0.46297997,-0.6928952,-0.5527619,-0.39453328,-0.59045976,0.7040602,-0.51377016,-0.7689153,-0.3805384,-0.148437,-0.3583585,0.92170805,-0.31099617,-0.46543497,0.8286445,-0.37541893,-0.90633935,-0.19393197,-0.21549818,-0.32251525,0.92170733,-0.5450224,-0.8156847,-0.19393066,-0.5021453,-0.50214624,-0.7040591,-0.5021454,-0.50214624,0.70405906,-0.6539061,-0.6539094,-0.38053828,-0.39582273,-0.39582145,0.8286433,-0.2742781,-0.27427816,0.92170656,-0.55557257,-0.83146805,-1.9273172e-8,-0.69368213,-0.69368297,-0.19393043,-0.14210394,-0.14210455,-0.9795982,-0.14210466,-0.14210455,0.97959816,-0.69368213,-0.69368297,0.19393049,-0.27427828,-0.27427813,-0.92170656,-0.6539061,-0.6539094,0.38053828,-0.39582273,-0.39582148,-0.8286433,-0.81568414,-0.54502326,0.19393037,-0.70710886,-0.7071047,-1.2045732e-9,-0.16709556,-0.11165056,-0.9795985,-0.7689127,-0.51377416,0.38053814,-0.32251444,-0.21549709,-0.9217079,-0.58926105,-0.58925855,0.55276203,-0.59046066,-0.3945339,-0.7040591,-0.59046066,-0.39453387,0.7040591,-0.58926105,-0.5892586,-0.552762,-0.76891273,-0.51377416,-0.38053817,-0.32251456,-0.21549709,0.9217078,-0.16709624,-0.11165055,0.9795984,-0.8156841,-0.54502326,-0.19393037,-0.465435,-0.31099302,0.8286456,-0.6560849,-0.27175993,0.704059,-0.8543707,-0.35389465,-0.38053817,-0.69289714,-0.4629771,-0.552762,-0.5171667,-0.21421678,0.82864344,-0.35836157,-0.14843808,0.9217067,-0.8314713,-0.5555677,-3.1318905e-8,-0.9063398,-0.3754186,-0.19393027,-0.18566795,-0.07690641,-0.9795983,-0.18566899,-0.076906495,0.97959805,-0.9063398,-0.3754186,0.19393028,-0.35836017,-0.14843693,-0.9217074,-0.8543707,-0.35389465,0.38053817,-0.5171667,-0.21421678,-0.82864344,-0.46543506,-0.31099296,-0.8286456,-0.69289714,-0.4629771,0.552762,-0.65608495,-0.27175993,-0.704059,-0.38043335,-0.07567222,-0.92170715,-0.90699565,-0.18041514,0.3805382,-0.7699056,-0.31890342,0.552762,-0.6964962,-0.1385421,-0.704059,-0.6964962,-0.13854212,0.70405906,-0.7699057,-0.31890342,-0.5527619,-0.90699565,-0.18041514,-0.38053817,-0.38043284,-0.07567328,0.92170733,-0.19710453,-0.039206438,0.9795982,-0.9238805,-0.38268098,9.636585e-9,-0.9621653,-0.19138712,-0.1939303,-0.19710436,-0.039206684,-0.9795982,-0.9621653,-0.19138712,0.19393031,-0.92476517,-0.0000022006434,-0.38053823,-0.81732714,-0.16257459,-0.5527619,-0.55977696,8.609772e-7,0.8286434,-0.54901797,-0.10920579,0.8286455,-0.20096566,2.2880218e-7,0.9795983,-0.9807857,-0.19508807,7.227441e-9,-0.9810153,-3.239351e-7,-0.19393012,-0.20096612,1.19322765e-8,-0.97959816,-0.9810153,-3.2152667e-7,0.19393016,-0.38788792,2.9881908e-9,-0.92170656,-0.9247652,-0.000002201245,0.38053825,-0.559777,8.585822e-7,-0.8286432,-0.54901797,-0.109205805,-0.8286456,-0.81732714,-0.16257459,0.5527619,-0.71014154,-5.386311e-7,-0.70405895,-0.71014154,-5.377314e-7,0.704059,-0.90699655,0.18041055,0.3805382,-0.38043147,0.07567254,-0.9217079,-0.8333391,0.0000018276446,0.55276203,-0.69649655,0.13854094,-0.704059,-0.69649655,0.13854088,0.7040588,-0.83333915,0.0000018372576,-0.55276203,-0.90699655,0.18041055,-0.3805382,-0.3804336,0.07567238,0.9217071,-0.38788632,-5.7013636e-7,0.9217072,-0.19710426,0.039206702,0.9795983,-1,0.0000028524294,0,-0.96216553,0.1913862,-0.19393006,-0.19710386,0.039206613,-0.9795983,-0.96216553,0.1913862,0.19393009,-0.51716393,0.21421854,0.8286446,-0.5490172,0.10920745,0.82864577,-0.85437244,0.3538906,-0.3805381,-0.18566762,0.076906264,0.9795984,-0.9807847,0.19509311,0,-0.90634024,0.37541792,-0.19393003,-0.18566796,0.07690634,-0.9795983,-0.90634024,0.37541792,0.19393003,-0.3583604,0.14843823,-0.9217071,-0.85437244,0.3538906,0.38053808,-0.5171642,0.21421853,-0.8286445,-0.5490175,0.10920745,-0.82864565,-0.81732637,0.1625782,0.55276203,-0.65608543,0.27175856,-0.7040591,-0.6560854,0.27175856,0.7040591,-0.81732637,0.1625782,-0.5527621,-0.7699043,0.31890666,0.55276215,-0.76891524,0.51377034,0.38053825,-0.59046143,0.3945328,-0.7040591,-0.5904615,0.39453274,0.7040591,-0.7699044,0.31890666,-0.55276203,-0.76891524,0.51377034,-0.38053823,-0.3583589,0.14843713,0.9217078,-0.46543527,0.31099603,0.8286444,-0.32251537,0.21549866,0.9217072,-0.92387855,0.38268593,-9.636587e-9,-0.81568485,0.5450224,-0.19392999,-0.16709559,0.11165074,-0.9795985,-0.16709599,0.111650735,0.97959846,-0.81568485,0.5450224,0.19392999,-0.32251555,0.21549861,-0.92170715,-0.46543527,0.31099603,-0.8286444,-0.274278,0.27427828,0.9217066,-0.83146816,0.5555724,-1.0841157e-8,-0.69368297,0.69368225,-0.19392985,-0.142104,0.14210455,-0.9795983,-0.14210472,0.14210452,0.97959816,-0.69368297,0.6936824,0.19392996,-0.2742778,0.2742783,-0.9217066,-0.6539094,0.6539062,0.3805381,-0.39582157,0.39582264,-0.8286433,-0.69289523,0.4629799,0.55276203,-0.5021461,0.50214523,-0.70405924,-0.50214624,0.50214523,0.70405924,-0.6928952,0.46297988,-0.55276203,-0.6539094,0.65390617,-0.38053805,-0.39582175,0.39582264,0.8286432,-0.39453408,0.59046066,-0.704059,-0.39453405,0.59046066,0.704059,-0.5892584,0.58926123,0.55276185,-0.58925843,0.58926123,-0.5527619,-0.51377386,0.7689129,-0.3805381,-0.21549682,0.32251444,0.921708,-0.11165099,0.16709673,0.9795982,-0.7071047,0.7071088,5.6614937e-8,-0.5450232,0.81568426,-0.19392997,-0.11165052,0.16709673,-0.9795983,-0.5450233,0.81568426,0.19392993,-0.51377386,0.768913,0.38053825,-0.21549696,0.32251444,-0.9217079,-0.55556786,0.83147126,-2.0477744e-8,-0.37541875,0.9063399,-0.19392972,-0.076904744,0.18566827,-0.97959834,-0.07690577,0.18566829,0.9795983,-0.37541875,0.9063399,0.19392978,-0.14843734,0.35836053,-0.92170715,-0.35389432,0.85437083,0.38053814,-0.21421488,0.5171656,-0.8286446,-0.31099287,0.46543515,-0.8286456,-0.46297687,0.6928973,0.55276185,-0.27176017,0.65608484,-0.704059,-0.2717601,0.6560849,0.70405906,-0.46297693,0.6928973,-0.55276185,-0.31099305,0.46543518,0.8286456,-0.35389432,0.85437083,-0.38053805,-0.21421474,0.5171656,0.8286446,-0.14843687,0.35836062,0.9217072,-0.13854226,0.6964962,0.70405906,-0.31890342,0.76990587,0.55276185,-0.31890345,0.76990587,-0.55276185,-0.13854235,0.6964962,-0.70405906,-0.18041486,0.9069958,-0.38053805,-0.10920494,0.5490196,0.8286446,-0.07567328,0.38043502,0.9217065,-0.38268074,0.92388064,8.7933834e-8,-0.19138709,0.9621653,-0.19392991,-0.039206885,0.1971047,-0.97959816,-0.039207235,0.19710474,0.9795982,-0.1913871,0.9621653,0.19392997,-0.07567361,0.380435,-0.9217064,-0.18041486,0.9069958,0.380538,-0.109205134,0.54901963,-0.8286445,1.1604178e-7,0.2009659,-0.9795982,1.6779822e-7,0.20096593,0.9795982,-4.780752e-7,0.9810154,0.19392978,-0.19508745,0.9807858,-5.0592067e-8,-0.0000021711646,0.9247653,0.3805379,4.1312532e-7,0.55977684,-0.8286434,-0.16257465,0.8173273,0.55276173,-6.621924e-7,0.71014136,-0.7040592,-5.482282e-7,0.71014136,0.7040592,-0.16257472,0.81732726,-0.5527619,-0.0000021513122,0.92476535,-0.38053787,6.604017e-7,0.55977684,0.8286434,-4.696457e-7,0.9810154,-0.19392963,0.0000017807821,0.83333933,-0.55276185,0.13854113,0.6964964,-0.70405906,-6.621924e-7,0.71014136,-0.7040592,6.604017e-7,0.55977684,0.8286434,0.13854112,0.6964963,0.7040591,-5.482282e-7,0.71014136,0.7040592,0.18041056,0.9069966,-0.38053805,-0.0000021513122,0.92476535,-0.38053787,0.07567245,0.38043344,0.92170715,-5.091784e-7,0.3878863,0.9217072,-4.696457e-7,0.9810154,-0.19392963,0.03920625,0.19710441,0.9795982,1.6779822e-7,0.20096593,0.9795982,0.000003059615,1,8.43201e-9,0.19138621,0.9621656,-0.19392967,1.1604178e-7,0.2009659,-0.9795982,0.03920771,0.19710438,-0.97959816,1.2833326e-7,-6.8863573e-9,-1,-5.5914228e-8,-1.0179833e-8,1,0.1913862,0.96216553,0.19392994,-4.780752e-7,0.9810154,0.19392978,-5.1156894e-7,0.3878863,-0.9217072,0.18041058,0.90699655,0.38053814,-0.0000021711646,0.9247653,0.3805379,4.1312532e-7,0.55977684,-0.8286434,0.075672925,0.38043338,-0.92170715,0.0000018288462,0.8333393,0.55276185,0.37541795,0.9063403,0.19392976,0.19509327,0.9807847,1.13229866e-7,0.07690546,0.18566805,-0.9795984,0.35389033,0.85437256,0.3805381,0.2142185,0.51716405,-0.8286446,0.1092072,0.5490175,-0.8286456,0.16257833,0.81732655,0.5527618,0.27175888,0.65608525,-0.7040592,0.27175882,0.65608525,0.70405906,0.16257834,0.81732655,-0.5527618,0.1092072,0.54901737,0.82864565,0.35389033,0.8543725,-0.3805381,0.21421832,0.517166,0.8286434,0.07690505,0.18566833,0.9795983,0.3754179,0.90634024,-0.1939297,0.39453286,0.59046155,0.704059,0.51377016,0.7689154,-0.3805382,0.31890693,0.76990443,-0.5527617,0.21549693,0.3225143,0.921708,0.14843711,0.35836044,0.9217072,0.11165112,0.1670968,0.9795982,0.3826862,0.9238785,-5.3001212e-8,0.54502255,0.81568485,-0.19392972,0.11165081,0.16709708,-0.9795982,0.54502255,0.81568485,0.1939296,0.21549895,0.32251537,-0.9217071,0.14843754,0.35835874,-0.9217078,0.5137702,0.7689155,0.38053817,0.3109959,0.46543697,-0.82864344,0.318907,0.76990443,0.55276173,0.3945329,0.5904615,-0.704059,0.65390617,0.65390944,0.3805381,0.2742785,0.27427828,-0.9217065,0.46298015,0.69289535,0.5527616,0.5021453,0.50214624,-0.70405906,0.5021453,0.50214624,0.70405906,0.46298012,0.69289535,-0.5527616,0.31099436,0.46543607,0.8286445,0.65390617,0.6539094,-0.38053805,0.2742783,0.27427828,0.9217065,0.5555728,0.83146787,2.4091458e-8,0.69368243,0.6936831,-0.19392927,0.14210409,0.14210449,-0.9795982,0.14210479,0.14210448,0.97959816,0.69368243,0.6936831,0.1939293,0.32251433,0.2154972,0.92170787,0.3958208,0.3958207,0.82864463,0.7689129,0.5137739,-0.38053814,0.1670963,0.11165048,0.9795984,0.7071091,0.70710444,7.2274375e-8,0.8156843,0.54502326,-0.19392936,0.16709559,0.111650474,-0.97959846,0.8156843,0.54502326,0.19392936,0.7689129,0.513774,0.3805382,0.39582086,0.39582065,-0.8286446,0.32251465,0.2154971,-0.9217078,0.5892612,0.58925843,0.55276185,0.59046054,0.3945341,-0.704059,0.5904605,0.39453414,0.7040591,0.5892611,0.5892584,-0.552762,0.5171665,0.21421644,-0.8286435,0.46543533,0.31099263,-0.82864565,0.69289726,0.462977,0.5527619,0.8543708,0.3538944,0.38053814,0.6560849,0.27176,-0.70405906,0.65608484,0.27176002,0.70405906,0.69289726,0.46297696,-0.55276185,0.46543622,0.31099424,0.8286445,0.8543708,0.35389438,-0.38053817,0.35836065,0.14843746,0.9217071,0.8314713,0.55556756,-9.636583e-9,0.90633994,0.37541887,-0.19392924,0.18566807,0.07690627,-0.9795983,0.18566827,0.07690627,0.9795982,0.90634,0.3754188,0.1939292,0.35836065,0.14843723,-0.9217071,0.9069957,0.18041477,-0.38053817,0.3804335,0.07567256,0.92170715,0.9238807,0.38268054,-1.32503e-8,0.9621655,0.19138713,-0.19392915,0.1971045,0.039206475,-0.9795982,0.19710441,0.03920647,0.9795982,0.9621655,0.19138712,0.1939291,0.38043356,0.075672545,-0.9217071,0.9069957,0.18041477,0.3805381,0.7699059,0.3189034,0.55276173,0.6964961,0.13854237,-0.70405906,0.69649607,0.13854237,0.70405906,0.76990587,0.31890336,-0.55276173,0.51716477,0.21421659,0.8286446,0.8173273,0.16257471,0.55276185,0.92476517,0.00000219944,0.38053817,0.71014136,6.483968e-7,-0.7040592,0.5490193,0.109206714,-0.8286446,0.7101413,6.4599755e-7,0.7040592,0.81732726,0.16257468,-0.55276173,0.54901916,0.10920672,0.8286446,0.92476517,0.000002206659,-0.38053817,0.38788813,3.884644e-8,0.92170644,0.9807859,0.1950872,4.8182907e-9,0.98101556,4.2629384e-7,-0.1939292,0.20096633,-1.07390505e-8,-0.9795981,0.20096633,-8.9492085e-9,0.9795981,0.98101556,4.2147695e-7,0.19392917,0.38788825,4.0639353e-8,-0.9217064,0.1971044,-0.039206628,0.9795982,1,-0.0000028596558,0,0.9621656,-0.19138646,-0.19392921,0.19710456,-0.039206624,-0.9795982,0.9621656,-0.19138646,0.19392921,0.90699655,-0.1804108,0.38053808,0.5597753,-2.634371e-8,-0.8286445,0.3804335,-0.07567236,-0.92170715,0.8333393,-0.0000021280462,0.55276173,0.6964965,-0.13854116,-0.704059,0.6964964,-0.13854116,0.70405906,0.83333933,-0.0000021292483,-0.55276173,0.5597752,-2.3948829e-8,0.8286446,0.90699655,-0.1804108,-0.38053808,0.38043338,-0.07567237,0.9217072,0.65608543,-0.27175856,-0.70405906,0.54901946,-0.10920694,-0.8286444,0.65608543,-0.27175856,0.70405906,0.8173266,-0.16257867,0.5527616,0.8173265,-0.16257867,-0.55276173,0.5490194,-0.10920695,0.8286444,0.85437256,-0.35389027,-0.38053814,0.35835853,-0.14843719,0.92170787,0.18566844,-0.076906264,0.97959816,0.9807847,-0.195093,-4.8182915e-9,0.90634036,-0.37541804,-0.1939292,0.1856682,-0.076906264,-0.9795982,0.9063403,-0.37541804,0.19392923,0.85437256,-0.35389027,0.38053814,0.35835868,-0.14843719,-0.9217079,0.9238783,-0.3826866,0,0.81568474,-0.54502285,-0.19392903,0.16709611,-0.11165074,-0.97959834,0.1670972,-0.11165098,0.97959816,0.8156847,-0.54502285,0.19392908,0.3225152,-0.21549872,-0.9217072,0.7689155,-0.5137701,0.38053817,0.5171647,-0.21421689,-0.8286445,0.7699043,-0.31890708,0.55276173,0.5904615,-0.39453274,-0.704059,0.5904615,-0.39453274,0.70405906,0.7699043,-0.31890705,-0.5527617,0.51716465,-0.21421689,0.8286445,0.76891553,-0.5137701,-0.38053808,0.32251698,-0.21549924,0.92170656,0.5021465,-0.5021454,0.7040588,0.69289523,-0.46298027,0.5527616,0.6928953,-0.46298027,-0.5527616,0.5021464,-0.50214547,-0.7040589,0.46543598,-0.31099445,0.8286445,0.6539094,-0.6539061,-0.3805382,0.27427596,-0.27427596,0.92170787,0.14210427,-0.14210424,0.9795982,0.8314676,-0.5555731,-1.9273166e-8,0.6936831,-0.6936824,-0.19392933,0.14210367,-0.14210443,-0.9795983,0.69368297,-0.69368243,0.19392927,0.2742768,-0.27427763,-0.92170715,0.6539093,-0.6539061,0.38053825,0.46543595,-0.31099445,-0.8286446,0.11165132,-0.1670974,0.9795981,0.5450234,-0.81568444,0.19392903,0.70710456,-0.707109,-6.384236e-8,0.21549943,-0.32251734,-0.9217064,0.5137739,-0.7689129,0.38053823,0.39582077,-0.3958209,-0.8286446,0.58925843,-0.5892615,0.5527616,0.39453423,-0.59046066,-0.70405895,0.39453417,-0.5904608,0.7040589,0.5892584,-0.58926153,-0.5527616,0.39582077,-0.3958209,0.8286446,0.513774,-0.7689129,-0.3805382,0.21549924,-0.32251737,0.9217064,0.5450234,-0.81568444,-0.19392903,0.111650825,-0.1670974,-0.97959816,0.31099436,-0.465436,0.8286446,0.27176002,-0.6560847,0.7040592,0.3538943,-0.8543709,-0.38053796,0.46297687,-0.69289756,-0.55276173,0.14843713,-0.35835886,0.92170787,0.076905474,-0.18566805,0.9795983,0.5555676,-0.8314714,-4.8182912e-8,0.37541875,-0.9063402,-0.19392857,0.07690473,-0.18566808,-0.9795984,0.37541875,-0.9063402,0.19392855,0.35389426,-0.85437083,0.38053808,0.31099424,-0.46543607,-0.8286445,0.14843726,-0.35835883,-0.9217078,0.46297684,-0.69289756,0.5527616,0.27176008,-0.6560848,-0.7040591,0.07567242,-0.38043368,-0.92170703,0.18041466,-0.90699565,0.3805383,0.21421622,-0.5171648,-0.8286447,0.31890315,-0.76990587,0.5527618,0.13854337,-0.6964968,-0.7040582,0.1385423,-0.69649607,0.7040591,0.3189031,-0.7699059,-0.55276185,0.2142165,-0.51716477,0.82864463,0.18041468,-0.90699565,-0.38053834,0.075673796,-0.38043523,0.92170626,0.38268054,-0.92388076,-1.2166183e-7,0.19138819,-0.96216524,-0.19392951,0.039206766,-0.19710442,-0.9795982,0.03920725,-0.19710475,0.97959816,0.19138819,-0.96216524,0.19392942,0.16257726,-0.8173258,-0.55276334,0.109206766,-0.5490191,0.8286446,0.19508968,-0.98078537,-6.022861e-8,0.10920856,-0.5490176,-0.82864535,0.16257733,-0.8173258,0.5527633,0.000003059615,1,8.43201e-9,-5.1156894e-7,0.3878863,-0.9217072,0.0000018288462,0.8333393,0.55276185,0.0000017807821,0.83333933,-0.55276185,-5.091784e-7,0.3878863,0.9217072]),
+ positions: new Float32Array([0.10838638,0.5448951,-0.8314696,8.940697e-8,0.7071066,-0.70710677,2.1606684e-7,0.5555695,-0.8314696,5.9604645e-8,0.923879,0.38268346,0.16221167,0.8154931,0.55557024,0,0.8314696,0.55557024,0.07465784,0.3753303,-0.9238795,6.7055225e-8,0.38268322,-0.9238795,0,0.98078525,0.19509032,0.18023995,0.9061274,0.38268346,0.038060233,0.19134171,-0.98078525,1.4901161e-8,0.1950901,-0.98078525,0.19509032,0.98078525,0,0,1,0,1.4901161e-8,0.1950901,0.98078525,0.038060233,0.19134171,0.98078525,0,0,1,0,0,-1,0.19134171,0.9619397,-0.19509032,0,0.98078525,-0.19509032,6.7055225e-8,0.38268322,0.9238795,0.18023995,0.9061274,-0.38268346,5.9604645e-8,0.923879,-0.38268346,0,0.55557024,0.8314696,0.07465784,0.3753303,0.9238795,0.16221167,0.8154931,-0.55557024,0,0.8314696,-0.55557024,8.940697e-8,0.7071066,0.70710677,0.10838638,0.5448951,0.8314696,0.13794969,0.6935199,-0.70710677,0.31818962,0.7681776,-0.55557024,0.31818962,0.7681776,0.55557024,0.13794969,0.6935199,0.70710677,0.27059805,0.65328145,-0.70710677,0.35355335,0.85355335,0.38268346,0.21260753,0.5132799,-0.8314696,0.19134171,0.9619397,0.19509032,0.07465783,0.18023995,-0.98078525,0.38268343,0.92387944,0,0.07465783,0.18023995,0.98078525,0.37533027,0.9061274,-0.19509032,0.14644662,0.3535534,0.9238795,0.35355335,0.85355335,-0.38268346,0.21260753,0.5132799,0.8314696,0.27059805,0.65328145,0.70710677,0.10838637,0.16221166,0.98078525,0.10838637,0.16221166,-0.98078525,0.5448951,0.8154931,-0.19509032,0.21260753,0.31818965,0.9238795,0.5132799,0.7681777,-0.38268346,0.30865827,0.4619397,0.8314696,0.39284748,0.5879378,0.70710677,0.4619397,0.6913416,-0.55557024,0.4619397,0.6913416,0.55557024,0.39284748,0.5879378,-0.70710677,0.5132799,0.7681777,0.38268346,0.14644662,0.3535534,-0.9238795,0.30865827,0.4619397,-0.8314696,0.37533027,0.9061274,0.19509032,0.21260753,0.31818965,-0.9238795,0.5448951,0.8154931,0.19509032,0.5,0.5,0.70710677,0.5,0.5,-0.70710677,0.6532814,0.65328145,0.38268346,0.39284745,0.3928474,-0.8314696,0.27059805,0.27059802,-0.9238795,0.55557024,0.8314695,0,0.6935199,0.69351983,0.19509032,0.13794968,0.13794966,0.98078525,0.13794968,0.13794966,-0.98078525,0.6935199,0.69351983,-0.19509032,0.27059805,0.27059802,0.9238795,0.6532814,0.65328145,-0.38268346,0.39284745,0.3928474,0.8314696,0.8154931,0.544895,-0.19509032,0.70710677,0.7071066,0,0.16221166,0.10838635,0.98078525,0.7681776,0.51328,-0.38268346,0.31818965,0.2126075,0.9238795,0.5879377,0.58793765,-0.55557024,0.5879378,0.39284748,0.70710677,0.5879378,0.39284748,-0.70710677,0.5879377,0.58793765,0.55557024,0.7681776,0.51328,0.38268346,0.31818965,0.2126075,-0.9238795,0.16221166,0.10838635,-0.98078525,0.8154931,0.544895,0.19509032,0.46193972,0.3086582,-0.8314696,0.65328145,0.27059805,-0.70710677,0.8535533,0.3535534,0.38268346,0.69134164,0.46193963,0.55557024,0.5132799,0.21260746,-0.8314696,0.35355335,0.14644659,-0.9238795,0.83146954,0.55557,0,0.90612733,0.37533015,0.19509032,0.18023992,0.07465781,0.98078525,0.18023992,0.07465781,-0.98078525,0.90612733,0.37533015,-0.19509032,0.35355335,0.14644659,0.9238795,0.8535533,0.3535534,-0.38268346,0.5132799,0.21260746,0.8314696,0.46193972,0.3086582,0.8314696,0.69134164,0.46193963,-0.55557024,0.65328145,0.27059805,0.70710677,0.37533024,0.07465781,0.9238795,0.90612733,0.18023999,-0.38268346,0.7681776,0.3181895,-0.55557024,0.6935199,0.1379497,0.70710677,0.6935199,0.1379497,-0.70710677,0.7681776,0.3181895,0.55557024,0.90612733,0.18023999,0.38268346,0.37533024,0.07465781,-0.9238795,0.19134167,0.038060214,-0.98078525,0.9238794,0.38268322,0,0.96193963,0.19134161,0.19509032,0.19134167,0.038060214,0.98078525,0.96193963,0.19134161,-0.19509032,0.92387944,4.4703484e-8,0.38268346,0.815493,0.16221157,0.55557024,0.5555701,-5.2154064e-8,-0.8314696,0.54489505,0.108386315,-0.8314696,0.19509026,-1.1175871e-8,-0.98078525,0.9807851,0.19509013,0,0.98078513,-8.940697e-8,0.19509032,0.19509026,-1.1175871e-8,0.98078525,0.98078513,-8.940697e-8,-0.19509032,0.3826834,-2.2351742e-8,0.9238795,0.92387944,4.4703484e-8,-0.38268346,0.5555701,-5.2154064e-8,0.8314696,0.54489505,0.108386315,0.8314696,0.815493,0.16221157,-0.55557024,0.7071067,1.4901161e-8,0.70710677,0.7071067,1.4901161e-8,-0.70710677,0.90612733,-0.1802399,-0.38268346,0.37533024,-0.07465785,0.9238795,0.8314694,-8.940697e-8,-0.55557024,0.69351983,-0.13794966,0.70710677,0.69351983,-0.13794966,-0.70710677,0.8314694,-8.940697e-8,0.55557024,0.90612733,-0.1802399,0.38268346,0.37533024,-0.07465785,-0.9238795,0.3826834,-2.2351742e-8,-0.9238795,0.19134165,-0.038060233,-0.98078525,0.9999997,-1.6391277e-7,0,0.9619396,-0.19134177,0.19509032,0.19134165,-0.038060233,0.98078525,0.9619396,-0.19134177,-0.19509032,0.5132798,-0.21260753,-0.8314696,0.544895,-0.108386405,-0.8314696,0.8535533,-0.3535533,0.38268346,0.18023989,-0.07465782,-0.98078525,0.9807849,-0.19509043,0,0.9061272,-0.3753303,0.19509032,0.18023989,-0.07465782,0.98078525,0.9061272,-0.3753303,-0.19509032,0.35355335,-0.14644662,0.9238795,0.8535533,-0.3535533,-0.38268346,0.5132798,-0.21260753,0.8314696,0.544895,-0.108386405,0.8314696,0.8154929,-0.16221173,-0.55557024,0.6532814,-0.270598,0.70710677,0.6532814,-0.270598,-0.70710677,0.8154929,-0.16221173,0.55557024,0.7681775,-0.31818965,-0.55557024,0.7681776,-0.51327986,-0.38268346,0.5879377,-0.39284742,0.70710677,0.5879377,-0.39284742,-0.70710677,0.7681775,-0.31818965,0.55557024,0.7681776,-0.51327986,0.38268346,0.35355335,-0.14644662,-0.9238795,0.46193957,-0.30865824,-0.8314696,0.3181896,-0.21260752,-0.9238795,0.9238791,-0.38268346,0,0.8154929,-0.54489505,0.19509032,0.1622116,-0.10838634,0.98078525,0.1622116,-0.10838634,-0.98078525,0.8154929,-0.54489505,-0.19509032,0.3181896,-0.21260752,0.9238795,0.46193957,-0.30865824,0.8314696,0.27059796,-0.27059802,-0.9238795,0.8314691,-0.5555702,0,0.6935197,-0.69351983,0.19509032,0.13794962,-0.13794963,0.98078525,0.13794962,-0.13794963,-0.98078525,0.6935197,-0.69351983,-0.19509032,0.27059796,-0.27059802,0.9238795,0.6532814,-0.65328133,-0.38268346,0.39284727,-0.39284742,0.8314696,0.69134146,-0.4619397,-0.55557024,0.49999994,-0.49999994,0.70710677,0.49999994,-0.49999994,-0.70710677,0.69134146,-0.4619397,0.55557024,0.6532814,-0.65328133,0.38268346,0.39284727,-0.39284742,-0.8314696,0.39284742,-0.5879377,0.70710677,0.39284742,-0.5879377,-0.70710677,0.58793753,-0.58793765,-0.55557024,0.58793753,-0.58793765,0.55557024,0.5132799,-0.76817757,0.38268346,0.21260744,-0.31818962,-0.9238795,0.108386315,-0.1622116,-0.98078525,0.70710623,-0.70710665,0,0.5448949,-0.815493,0.19509032,0.108386315,-0.1622116,0.98078525,0.5448949,-0.815493,-0.19509032,0.5132799,-0.76817757,-0.38268346,0.21260744,-0.31818962,0.9238795,0.5555697,-0.83146936,0,0.37533003,-0.9061272,0.19509032,0.07465778,-0.18023986,0.98078525,0.07465778,-0.18023986,-0.98078525,0.37533003,-0.9061272,-0.19509032,0.14644653,-0.35355332,0.9238795,0.35355335,-0.8535532,-0.38268346,0.21260735,-0.5132798,0.8314696,0.3086581,-0.46193966,0.8314696,0.46193954,-0.6913415,-0.55557024,0.270598,-0.6532814,0.70710677,0.270598,-0.6532814,-0.70710677,0.46193954,-0.6913415,0.55557024,0.3086581,-0.46193966,-0.8314696,0.35355335,-0.8535532,0.38268346,0.21260735,-0.5132798,-0.8314696,0.14644653,-0.35355332,-0.9238795,0.13794966,-0.69351983,-0.70710677,0.31818944,-0.7681775,-0.55557024,0.31818944,-0.7681775,0.55557024,0.13794966,-0.69351983,0.70710677,0.18023995,-0.9061272,0.38268346,0.10838623,-0.5448949,-0.8314696,0.07465776,-0.37533018,-0.9238795,0.38268295,-0.92387915,0,0.19134152,-0.96193945,0.19509032,0.038060203,-0.1913416,0.98078525,0.038060203,-0.1913416,-0.98078525,0.19134152,-0.96193945,-0.19509032,0.07465776,-0.37533018,0.9238795,0.18023995,-0.9061272,-0.38268346,0.10838623,-0.5448949,0.8314696,-7.450581e-9,-0.19509019,0.98078525,-7.450581e-9,-0.19509019,-0.98078525,-1.3411045e-7,-0.98078495,-0.19509032,0.1950899,-0.9807848,0,2.9802322e-8,-0.92387927,-0.38268346,-9.685755e-8,-0.55556995,0.8314696,0.16221152,-0.81549287,-0.55557024,-1.4901161e-8,-0.70710665,0.70710677,-1.4901161e-8,-0.70710665,-0.70710677,0.16221152,-0.81549287,0.55557024,2.9802322e-8,-0.92387927,0.38268346,-9.685755e-8,-0.55556995,-0.8314696,-1.3411045e-7,-0.98078495,0.19509032,-1.0430813e-7,-0.8314693,0.55557024,-0.13794968,-0.6935198,0.70710677,-1.4901161e-8,-0.70710665,0.70710677,-9.685755e-8,-0.55556995,-0.8314696,-0.13794968,-0.6935198,-0.70710677,-1.4901161e-8,-0.70710665,-0.70710677,-0.18023987,-0.90612715,0.38268346,2.9802322e-8,-0.92387927,0.38268346,-0.074657865,-0.37533018,-0.9238795,-5.2154064e-8,-0.38268334,-0.9238795,-1.3411045e-7,-0.98078495,0.19509032,-0.038060214,-0.19134158,-0.98078525,-7.450581e-9,-0.19509019,-0.98078525,-3.2782555e-7,-0.99999934,0,-0.19134179,-0.9619394,0.19509032,-7.450581e-9,-0.19509019,0.98078525,-0.038060214,-0.19134158,0.98078525,0,0,1,0,0,-1,-0.19134179,-0.9619394,-0.19509032,-1.3411045e-7,-0.98078495,-0.19509032,-5.2154064e-8,-0.38268334,0.9238795,-0.18023987,-0.90612715,-0.38268346,2.9802322e-8,-0.92387927,-0.38268346,-9.685755e-8,-0.55556995,0.8314696,-0.074657865,-0.37533018,0.9238795,-1.0430813e-7,-0.8314693,-0.55557024,-0.37533027,-0.90612704,-0.19509032,-0.19509052,-0.98078454,0,-0.07465778,-0.18023983,0.98078525,-0.35355324,-0.8535531,-0.38268346,-0.2126075,-0.5132796,0.8314696,-0.10838642,-0.5448948,0.8314696,-0.16221172,-0.8154928,-0.55557024,-0.270598,-0.65328133,0.70710677,-0.270598,-0.65328133,-0.70710677,-0.16221172,-0.8154928,0.55557024,-0.10838642,-0.5448948,-0.8314696,-0.35355324,-0.8535531,0.38268346,-0.2126075,-0.5132796,-0.8314696,-0.07465778,-0.18023983,-0.98078525,-0.37533027,-0.90612704,0.19509032,-0.39284742,-0.58793765,-0.70710677,-0.51327974,-0.7681775,0.38268346,-0.31818962,-0.7681774,0.55557024,-0.2126075,-0.31818953,-0.9238795,-0.14644662,-0.3535533,-0.9238795,-0.1083863,-0.16221155,-0.98078525,-0.3826835,-0.9238787,0,-0.54489505,-0.81549275,0.19509032,-0.1083863,-0.16221155,0.98078525,-0.54489505,-0.81549275,-0.19509032,-0.2126075,-0.31818953,0.9238795,-0.14644662,-0.3535533,0.9238795,-0.51327974,-0.7681775,-0.38268346,-0.30865818,-0.4619394,0.8314696,-0.31818962,-0.7681774,-0.55557024,-0.39284742,-0.58793765,0.70710677,-0.6532812,-0.6532813,-0.38268346,-0.270598,-0.27059793,0.9238795,-0.46193963,-0.69134134,-0.55557024,-0.4999999,-0.49999988,0.70710677,-0.4999999,-0.49999988,-0.70710677,-0.46193963,-0.69134134,0.55557024,-0.30865818,-0.4619394,-0.8314696,-0.6532812,-0.6532813,0.38268346,-0.270598,-0.27059793,-0.9238795,-0.5555701,-0.83146876,0,-0.6935198,-0.69351953,0.19509032,-0.13794959,-0.13794957,0.98078525,-0.13794959,-0.13794957,-0.98078525,-0.6935198,-0.69351953,-0.19509032,-0.31818956,-0.21260741,-0.9238795,-0.3928473,-0.39284712,-0.8314696,-0.76817745,-0.5132798,0.38268346,-0.16221155,-0.10838628,-0.98078525,-0.7071065,-0.70710593,0,-0.8154929,-0.5448947,0.19509032,-0.16221155,-0.10838628,0.98078525,-0.8154929,-0.5448947,-0.19509032,-0.76817745,-0.5132798,-0.38268346,-0.3928473,-0.39284712,0.8314696,-0.31818956,-0.21260741,0.9238795,-0.5879376,-0.5879374,-0.55557024,-0.58793765,-0.39284736,0.70710677,-0.58793765,-0.39284736,-0.70710677,-0.5879376,-0.5879374,0.55557024,-0.5132796,-0.21260723,0.8314696,-0.4619395,-0.30865794,0.8314696,-0.69134146,-0.46193942,-0.55557024,-0.85355306,-0.35355327,-0.38268346,-0.65328133,-0.27059796,0.70710677,-0.65328133,-0.27059796,-0.70710677,-0.69134146,-0.46193942,0.55557024,-0.4619395,-0.30865794,-0.8314696,-0.85355306,-0.35355327,0.38268346,-0.35355327,-0.14644651,-0.9238795,-0.8314691,-0.5555694,0,-0.90612715,-0.37532988,0.19509032,-0.18023981,-0.07465775,0.98078525,-0.18023981,-0.07465775,-0.98078525,-0.90612715,-0.37532988,-0.19509032,-0.35355327,-0.14644651,0.9238795,-0.9061271,-0.18023989,0.38268346,-0.37533012,-0.07465775,-0.9238795,-0.92387885,-0.38268268,0,-0.9619394,-0.19134139,0.19509032,-0.19134155,-0.03806018,0.98078525,-0.19134155,-0.03806018,-0.98078525,-0.9619394,-0.19134139,-0.19509032,-0.37533012,-0.07465775,0.9238795,-0.9061271,-0.18023989,-0.38268346,-0.7681774,-0.31818932,-0.55557024,-0.6935198,-0.13794963,0.70710677,-0.6935198,-0.13794963,-0.70710677,-0.7681774,-0.31818932,0.55557024,-0.5132796,-0.21260723,-0.8314696,-0.81549275,-0.16221143,-0.55557024,-0.92387915,1.4901161e-8,-0.38268346,-0.7071066,2.9802322e-8,0.70710677,-0.5448947,-0.10838615,0.8314696,-0.7071066,2.9802322e-8,-0.70710677,-0.81549275,-0.16221143,0.55557024,-0.5448947,-0.10838615,-0.8314696,-0.92387915,1.4901161e-8,0.38268346,-0.38268325,5.2154064e-8,-0.9238795,-0.9807844,-0.1950897,0,-0.98078483,2.682209e-7,0.19509032,-0.19509014,1.8626451e-8,0.98078525,-0.19509014,1.8626451e-8,-0.98078525,-0.98078483,2.682209e-7,-0.19509032,-0.38268325,5.2154064e-8,0.9238795,-0.19134153,0.038060218,-0.98078525,-0.99999905,4.4703484e-7,0,-0.9619392,0.19134189,0.19509032,-0.19134153,0.038060218,0.98078525,-0.9619392,0.19134189,-0.19509032,-0.90612704,0.1802399,-0.38268346,-0.55556977,1.4901161e-7,0.8314696,-0.3753301,0.07465785,0.9238795,-0.8314692,1.6391277e-7,-0.55557024,-0.6935197,0.13794969,0.70710677,-0.6935197,0.13794969,-0.70710677,-0.8314692,1.6391277e-7,0.55557024,-0.55556977,1.4901161e-7,-0.8314696,-0.90612704,0.1802399,0.38268346,-0.3753301,0.07465785,-0.9238795,-0.6532813,0.270598,0.70710677,-0.54489464,0.108386435,0.8314696,-0.6532813,0.270598,-0.70710677,-0.81549263,0.16221176,-0.55557024,-0.81549263,0.16221176,0.55557024,-0.54489464,0.108386435,-0.8314696,-0.853553,0.35355324,0.38268346,-0.3535532,0.14644659,-0.9238795,-0.18023978,0.07465778,-0.98078525,-0.98078424,0.19509058,0,-0.90612686,0.37533033,0.19509032,-0.18023978,0.07465778,0.98078525,-0.90612686,0.37533033,-0.19509032,-0.853553,0.35355324,-0.38268346,-0.3535532,0.14644659,0.9238795,-0.92387843,0.3826835,0,-0.8154926,0.54489505,0.19509032,-0.16221151,0.10838629,0.98078525,-0.16221151,0.10838629,-0.98078525,-0.8154926,0.54489505,-0.19509032,-0.31818944,0.21260746,0.9238795,-0.7681774,0.51327974,-0.38268346,-0.51327944,0.21260749,0.8314696,-0.7681772,0.31818962,-0.55557024,-0.5879376,0.3928474,0.70710677,-0.5879376,0.3928474,-0.70710677,-0.7681772,0.31818962,0.55557024,-0.51327944,0.21260749,-0.8314696,-0.7681774,0.51327974,0.38268346,-0.31818944,0.21260746,-0.9238795,-0.49999982,0.49999988,-0.70710677,-0.69134116,0.46193963,-0.55557024,-0.69134116,0.46193963,0.55557024,-0.49999982,0.49999988,0.70710677,-0.46193922,0.30865815,-0.8314696,-0.65328115,0.65328115,0.38268346,-0.27059788,0.27059793,-0.9238795,-0.13794954,0.13794957,-0.98078525,-0.83146846,0.55557007,0,-0.69351935,0.6935197,0.19509032,-0.13794954,0.13794957,0.98078525,-0.69351935,0.6935197,-0.19509032,-0.27059788,0.27059793,0.9238795,-0.65328115,0.65328115,-0.38268346,-0.46193922,0.30865815,0.8314696,-0.10838625,0.16221152,-0.98078525,-0.5448946,0.8154928,-0.19509032,-0.7071057,0.70710635,0,-0.21260737,0.3181895,0.9238795,-0.5132797,0.7681774,-0.38268346,-0.39284694,0.39284724,0.8314696,-0.58793724,0.58793753,-0.55557024,-0.3928473,0.58793765,0.70710677,-0.3928473,0.58793765,-0.70710677,-0.58793724,0.58793753,0.55557024,-0.39284694,0.39284724,-0.8314696,-0.5132797,0.7681774,0.38268346,-0.21260737,0.3181895,-0.9238795,-0.5448946,0.8154928,0.19509032,-0.10838625,0.16221152,0.98078525,-0.3086578,0.46193942,-0.8314696,-0.2705979,0.65328133,-0.70710677,-0.35355318,0.853553,0.38268346,-0.46193928,0.69134134,0.55557024,-0.14644648,0.35355324,-0.9238795,-0.07465774,0.18023977,-0.98078525,-0.55556923,0.83146894,0,-0.3753298,0.906127,0.19509032,-0.07465774,0.18023977,0.98078525,-0.3753298,0.906127,-0.19509032,-0.35355318,0.853553,-0.38268346,-0.3086578,0.46193942,0.8314696,-0.14644648,0.35355324,0.9238795,-0.46193928,0.69134134,-0.55557024,-0.2705979,0.65328133,0.70710677,-0.07465773,0.3753301,0.9238795,-0.18023981,0.906127,-0.38268346,-0.2126071,0.5132795,0.8314696,-0.3181892,0.7681773,-0.55557024,-0.13794957,0.6935198,0.70710677,-0.13794957,0.6935198,-0.70710677,-0.3181892,0.7681773,0.55557024,-0.2126071,0.5132795,-0.8314696,-0.18023981,0.906127,0.38268346,-0.07465773,0.3753301,-0.9238795,-0.38268256,0.9238786,0,-0.19134133,0.9619392,0.19509032,-0.038060177,0.1913415,0.98078525,-0.038060177,0.1913415,-0.98078525,-0.19134133,0.9619392,-0.19509032,-0.16221133,0.8154926,0.55557024,-0.10838604,0.5448945,-0.8314696,-0.19508962,0.9807842,0,-0.10838604,0.5448945,0.8314696,-0.16221133,0.8154926,-0.55557024,-3.2782555e-7,-0.99999934,0,-5.2154064e-8,-0.38268334,0.9238795,-1.0430813e-7,-0.8314693,-0.55557024,-1.0430813e-7,-0.8314693,0.55557024,-5.2154064e-8,-0.38268334,-0.9238795]),
+ uvs: new Float32Array([0.3237962,0.18751018,0.3453794,0.25000855,0.3453772,0.18750808,0.34538132,0.6249944,0.32379758,0.6874911,0.34538066,0.68749243,0.32379434,0.12500846,0.34537262,0.12500627,0.34538168,0.562497,0.32379788,0.62499344,0.32378846,0.06250496,0.34535834,0.06250265,0.32379806,0.50000006,0.3453818,0.50000006,0.34535834,0.9374974,0.32378846,0.9374951,0.30921382,1,0.30921382,0,0.32379803,0.43750352,0.34538168,0.43750307,0.34537262,0.8749938,0.32379788,0.37500662,0.34538132,0.37500566,0.34537724,0.81249183,0.32379434,0.8749916,0.32379758,0.31250897,0.34538066,0.3125077,0.3453794,0.74999154,0.3237962,0.8124899,0.3237971,0.2500102,0.30221465,0.31250915,0.30221465,0.68749094,0.3237971,0.74998987,0.30221492,0.25001046,0.30221456,0.6249934,0.30221534,0.18751042,0.32379803,0.56249654,0.30221906,0.0625053,0.30221444,0.50000006,0.30221906,0.9374948,0.30221447,0.4375036,0.30221626,0.8749913,0.30221456,0.37500674,0.30221534,0.8124897,0.30221492,0.74998957,0.28064945,0.93749636,0.28064945,0.06250371,0.2806309,0.43750325,0.2806381,0.87499285,0.28063118,0.3750061,0.2806344,0.812491,0.28063267,0.7499907,0.28063172,0.31250823,0.28063172,0.68749183,0.28063267,0.25000933,0.28063118,0.624994,0.30221626,0.12500878,0.2806344,0.18750909,0.30221447,0.5624965,0.2806381,0.12500729,0.2806309,0.56249684,0.25905016,0.7499932,0.25905016,0.25000685,0.25904757,0.6249953,0.25905314,0.18750617,0.25905946,0.12500404,0.2806308,0.50000006,0.25904712,0.5624975,0.25907895,0.9374998,0.25907895,0.062500276,0.25904712,0.43750256,0.25905946,0.874996,0.25904757,0.3750048,0.25905314,0.8124939,0.23746303,0.43750155,0.25904697,0.50000006,0.2375069,0.937505,0.2374637,0.37500277,0.23748006,0.87500083,0.25904852,0.3125063,0.23746724,0.74999696,0.23746724,0.25000313,0.25904852,0.6874938,0.2374637,0.6249973,0.23748006,0.1249992,0.2375069,0.06249512,0.23746303,0.5624985,0.23747136,0.1875018,0.21588373,0.24999835,0.21587937,0.62499994,0.23746498,0.68749666,0.21588881,0.18749614,0.21589956,0.124992885,0.23746282,0.50000006,0.2158785,0.5624999,0.21593274,0.9375117,0.21593274,0.062488437,0.2158785,0.4375002,0.21589956,0.8750072,0.21587937,0.37500015,0.21588881,0.81250393,0.23747136,0.8124983,0.23746498,0.31250337,0.21588373,0.7500017,0.19431776,0.87501466,0.19429448,0.37499705,0.21588093,0.31249958,0.19429952,0.7500075,0.19429952,0.2499926,0.21588093,0.6875005,0.19429448,0.62500304,0.19431776,0.124985404,0.19435601,0.062480476,0.21587825,0.50000006,0.19429351,0.56250143,0.19435601,0.9375196,0.19429351,0.43749863,0.17270894,0.6250065,0.19429629,0.687505,0.17272086,0.1874818,0.19430536,0.1874894,0.17277627,0.062471557,0.1942932,0.50000006,0.17270787,0.5625032,0.17277627,0.9375285,0.17270787,0.43749687,0.17273444,0.8750231,0.17270894,0.3749936,0.17272086,0.8125183,0.19430536,0.8125107,0.19429629,0.31249508,0.17271447,0.75001395,0.17271447,0.24998616,0.15112273,0.37498987,0.15114944,0.87503207,0.17271093,0.31249002,0.15112853,0.75002086,0.15112853,0.24997927,0.17271093,0.68751,0.15112273,0.6250102,0.15114944,0.12496801,0.17273444,0.124977,0.15119328,0.062462013,0.17270754,0.50000006,0.15112163,0.56250507,0.15119328,0.9375381,0.15112163,0.437495,0.12954839,0.18746544,0.15113525,0.18747374,0.1295358,0.62501407,0.12960683,0.062452216,0.15112127,0.50000006,0.12953468,0.5625071,0.12960683,0.93754786,0.12953468,0.43749303,0.12956269,0.8750413,0.1295358,0.37498605,0.12954839,0.8125347,0.15113525,0.81252635,0.15112484,0.31248462,0.12954164,0.75002784,0.12954164,0.24997222,0.15112484,0.6875155,0.1295379,0.31247908,0.107948124,0.37498224,0.107953764,0.7500348,0.107953764,0.24996524,0.1295379,0.68752104,0.107948124,0.6250178,0.12956269,0.12495878,0.10796031,0.1874572,0.10797416,0.124949664,0.12953433,0.50000006,0.10794703,0.56250894,0.108016916,0.9375575,0.108016916,0.062442537,0.10794703,0.43749112,0.10797416,0.8750504,0.10796031,0.81254286,0.086383924,0.12494101,0.107946694,0.50000006,0.08635873,0.56251085,0.086423665,0.9375667,0.086423665,0.062433355,0.08635873,0.43748927,0.086383924,0.87505907,0.08635975,0.3749787,0.086371064,0.8125506,0.10795015,0.3124736,0.08636499,0.7500415,0.08636499,0.24995863,0.10795015,0.6875265,0.08635975,0.6250214,0.086371064,0.18744943,0.06477534,0.7500475,0.06477534,0.24995261,0.08636163,0.31246838,0.08636163,0.68753177,0.064770706,0.6250247,0.064792104,0.12493316,0.064827286,0.06242502,0.086358406,0.50000006,0.06476981,0.56251246,0.064827286,0.93757504,0.06476981,0.43748763,0.064770706,0.3749754,0.064792104,0.8750669,0.064769514,0.50000006,0.043180335,0.5625139,0.043228142,0.93758225,0.043228142,0.062417842,0.043180335,0.43748617,0.04319888,0.87507373,0.043181088,0.3749726,0.04318941,0.81256384,0.06478072,0.81255776,0.064772375,0.31246367,0.043184936,0.75005263,0.043184936,0.24994744,0.064772375,0.6875365,0.06478072,0.18744233,0.043181088,0.6250275,0.04318941,0.18743627,0.04319888,0.124926396,0.021593904,0.24994332,0.04318247,0.31245962,0.04318247,0.6875405,0.021593904,0.75005674,0.021590978,0.6250297,0.021597296,0.18743141,0.021604486,0.12492101,0.04318009,0.50000006,0.021590404,0.562515,0.021626705,0.9375879,0.021626705,0.06241211,0.021590404,0.43748504,0.021604486,0.87507904,0.021590978,0.37497038,0.021597296,0.81256866,0.0000235235,0.937592,0.0000235235,0.062408045,1.3248821e-7,0.43748423,0.021590214,0.50000006,5.08429e-7,0.37496877,0.0000045693455,0.8125721,0.021592023,0.31245637,0.000002390848,0.7500597,0.000002390848,0.24994037,0.021592023,0.68754375,5.08429e-7,0.6250313,0.0000045693455,0.18742795,1.3248821e-7,0.56251585,0.69078743,0.687546,0.6691969,0.7500613,0.6907887,0.7500597,0.69079083,0.18742795,0.6691969,0.24993876,0.6907887,0.24994037,0.6691961,0.6250322,0.6907868,0.6250313,0.6691997,0.12491507,0.6907954,0.12491719,0.69078636,0.56251585,0.66920555,0.062405802,0.6908098,0.062408045,0.6907863,0.50000006,0.66919595,0.5625163,0.6908098,0.937592,0.66920555,0.93759423,1,1,1,0,0.66919595,0.4374838,0.69078636,0.43748423,0.6907954,0.8750829,0.6691961,0.3749679,0.6907868,0.37496877,0.69079083,0.8125721,0.6691997,0.87508506,0.69078743,0.31245407,0.64760536,0.43748373,0.6691959,0.50000006,0.64760077,0.9375946,0.6476053,0.37496778,0.64760447,0.8125743,0.66919774,0.81257397,0.66919637,0.31245276,0.64760494,0.7500615,0.64760494,0.2499385,0.66919637,0.6875473,0.66919774,0.18742606,0.6476053,0.6250323,0.64760447,0.18742575,0.64760077,0.06240546,0.64760536,0.5625164,0.62601304,0.24993965,0.62601453,0.6250317,0.6476052,0.6875475,0.6260076,0.12491623,0.6476036,0.12491476,0.62599623,0.062407047,0.64760536,0.50000006,0.6260148,0.56251603,0.62599623,0.93759304,0.6260148,0.43748406,0.6260076,0.8750838,0.6476036,0.87508535,0.62601453,0.3749684,0.62601125,0.812573,0.6476052,0.31245258,0.62601304,0.75006044,0.604424,0.37496972,0.6044121,0.87508065,0.626014,0.31245348,0.60442144,0.75005794,0.60442144,0.24994211,0.626014,0.6875466,0.62601125,0.18742707,0.604424,0.62503034,0.6044121,0.12491947,0.6260149,0.50000006,0.6044245,0.5625154,0.6043925,0.9375896,0.6043925,0.062410474,0.6044245,0.4374847,0.5828173,0.124924324,0.6044184,0.18743,0.5828337,0.6250284,0.58279043,0.062415645,0.60442454,0.50000006,0.58283436,0.5625143,0.58279043,0.93758446,0.58283436,0.43748575,0.5828337,0.37497175,0.6044184,0.81257004,0.5828173,0.87507576,0.60442305,0.31245542,0.5828302,0.75005424,0.5828302,0.24994583,0.60442305,0.68754464,0.5612344,0.81256,0.582826,0.81256574,0.5828324,0.31245837,0.56124395,0.37497437,0.56123954,0.75004935,0.56123954,0.24995068,0.5828324,0.6875418,0.582826,0.18743436,0.56124395,0.62502575,0.5612237,0.12493063,0.58283454,0.50000006,0.5612447,0.562513,0.5611905,0.9375778,0.5611905,0.06242233,0.5612447,0.4374871,0.5612237,0.8750695,0.5396547,0.6250226,0.53963137,0.12493812,0.56124496,0.50000006,0.53965557,0.56251144,0.53959304,0.9375698,0.53959304,0.06243029,0.53965557,0.43748865,0.53963137,0.8750619,0.5396547,0.37497747,0.5612423,0.31246212,0.5396496,0.7500437,0.5396496,0.24995641,0.5612423,0.68753797,0.5612344,0.18744004,0.53965276,0.31246665,0.51806605,0.37498096,0.5180605,0.75003725,0.53964376,0.8125533,0.5180605,0.24996285,0.53965276,0.68753344,0.53964376,0.18744679,0.51806605,0.62501913,0.51804054,0.12494653,0.53965586,0.50000006,0.51806706,0.56250966,0.5179987,0.93756086,0.5179987,0.06243921,0.51806706,0.43749043,0.51804054,0.8750535,0.4964076,0.062448755,0.51806736,0.50000006,0.49647918,0.56250775,0.4964076,0.93755126,0.49647918,0.43749234,0.49647817,0.37498468,0.51805407,0.8125458,0.4964514,0.8750446,0.518064,0.3124717,0.4964723,0.75003034,0.4964723,0.24996974,0.518064,0.68752843,0.51805407,0.18745434,0.49647817,0.6250154,0.4964514,0.1249555,0.47488508,0.75002325,0.49646556,0.81253767,0.47488508,0.2499768,0.49647602,0.31247708,0.49647602,0.687523,0.49646556,0.18746242,0.47489092,0.6250116,0.47486404,0.124964744,0.4748199,0.06245855,0.4964795,0.50000006,0.474892,0.56250584,0.4748199,0.93754154,0.474892,0.43749428,0.47489092,0.37498847,0.47486404,0.87503535,0.47489232,0.50000006,0.45330548,0.5625039,0.45323566,0.9375318,0.45323566,0.062468227,0.45330548,0.43749622,0.4532784,0.8750262,0.45330447,0.37499225,0.47487828,0.8125294,0.47488877,0.31248263,0.45329884,0.7500163,0.45329884,0.24998374,0.47488877,0.68751746,0.47487828,0.18747073,0.45330447,0.6250078,0.4532784,0.12497383,0.43171343,0.24999039,0.45330235,0.3124881,0.45330235,0.68751204,0.43171343,0.7500097,0.45329225,0.18747891,0.4317187,0.62500423,0.4316945,0.1249825,0.4316548,0.06247739,0.4533058,0.50000006,0.43171966,0.5625021,0.4316548,0.93752265,0.43171966,0.43749803,0.4316945,0.8750176,0.4317187,0.37499583,0.45329225,0.81252116,0.4100771,0.06248572,0.41013443,0.43749964,0.43171996,0.50000006,0.41011217,0.8750097,0.41013357,0.3749991,0.4317073,0.8125134,0.43171677,0.3124933,0.41012895,0.7500037,0.41012895,0.24999638,0.43171677,0.68750685,0.4317073,0.1874867,0.41013357,0.625001,0.41011217,0.12499032,0.41013443,0.5625004,0.4100771,0.9375144,0.41012353,0.18749377,0.3885452,0.25000152,0.38854906,0.6249982,0.41013193,0.6875021,0.38853127,0.12499707,0.38850203,0.062492877,0.41013473,0.50000006,0.3885498,0.562499,0.38850203,0.9375072,0.3885498,0.4375011,0.38854906,0.37500188,0.41012353,0.8125063,0.38853127,0.875003,0.41013193,0.312498,0.3885452,0.7499985,0.36695153,0.8749976,0.36696503,0.3750041,0.3885407,0.8125003,0.38854766,0.31250206,0.36696208,0.74999446,0.36696208,0.25000563,0.38854766,0.68749803,0.3885407,0.18749979,0.36696503,0.62499595,0.36695153,0.12500246,0.38854995,0.50000006,0.36696553,0.56249785,0.36692938,0.9375015,0.36692938,0.06249859,0.36696553,0.43750224,0.36696395,0.6874948,0.36695865,0.18750465,0.36696568,0.50000006,0.36695865,0.81249547,0.36696395,0.3125053,0,0.50000006,0.000009202369,0.8750829,0.0000011756387,0.31245407,0.0000011756387,0.687546,0.000009202369,0.12491719]),
+ vertexCount: 499
+});
diff --git a/src/meshes/uvsphere.ply b/src/meshes/uvsphere.ply
index fbc354f..1905698 100644
--- a/src/meshes/uvsphere.ply
+++ b/src/meshes/uvsphere.ply
@@ -1,14234 +1,1083 @@
ply
format ascii 1.0
-comment Created in Blender version 3.6.4
-element vertex 4784
+comment Created in Blender version 4.1.1
+element vertex 559
property float x
property float y
property float z
property float s
property float t
-element face 9438
+element face 512
property list uchar uint vertex_indices
end_header
-0.486688 0.030432953 8.555168 0.538753 0.8966757
-0.490792 0.09375695 8.555167 0.5410814 0.9016967
-0.031389 0.09375695 8.5715275 0.47802687 0.90303487
-0.474708 -0.030000048 8.555167 0.53575194 0.89199424
-0.785939 -0.011186037 8.508925 0.5726751 0.8857005
-0.79274 0.09375697 8.508925 0.5787226 0.8933394
-0.486688 0.15708098 8.555167 0.54251814 0.9068531
-0.45535 -0.08704305 8.555168 0.5322007 0.8876587
-0.766084 -0.111338034 8.508925 0.5662328 0.87868494
-0.953581 -0.03449902 8.437075 0.5896163 0.8772773
-0.961895 0.09375698 8.437074 0.5979485 0.8861135
-0.785939 0.19870096 8.508925 0.58405554 0.9013297
-0.474708 0.21751398 8.555167 0.542866 0.91192275
-0.429113 -0.14019802 8.555167 0.52819157 0.883675
-0.734002 -0.20587404 8.508925 0.55946636 0.8722694
-0.929314 -0.15690103 8.437074 0.581192 0.86919105
-1.014057 -0.042903997 8.34388 0.59656286 0.8730563
-1.022916 0.093757 8.34388 0.60589224 0.88237023
-0.953581 0.22201398 8.437074 0.605883 0.89539725
-0.766084 0.29885298 8.508925 0.5883007 0.9093758
-0.45535 0.2745569 8.555167 0.54199016 0.9168606
-0.396495 -0.18896602 8.555167 0.52379453 0.88004935
-0.69052 -0.293965 8.508925 0.55242467 0.86643726
-0.890104 -0.27243906 8.437074 0.5726643 0.86181945
-0.988198 -0.17332898 8.34388 0.5872861 0.8645376
-0.991809 -0.03979997 8.233616 0.5969099 0.8727884
-1.000468 0.09375702 8.233616 0.6063205 0.8821567
-1.014057 0.23041902 8.34388 0.6149852 0.89216197
-0.929314 0.34441593 8.437074 0.61303914 0.9048072
-0.734002 0.39338797 8.508925 0.59122276 0.91745657
-0.429113 0.3277119 8.555168 0.5397339 0.92160696
-0.357996 -0.23285003 8.555167 0.5190624 0.8767894
-0.636464 -0.37478703 8.508925 0.5451408 0.8611773
-0.83696 -0.38010207 8.437074 0.56402487 0.8551361
-0.946414 -0.296442 8.34388 0.57800925 0.8567761
-0.966532 -0.16726495 8.233616 0.5875629 0.864219
-0.911276 -0.02858394 8.110544 0.592293 0.87558705
-0.919211 0.093757056 8.110543 0.6010927 0.88469815
-0.991809 0.22731405 8.233616 0.6155072 0.89200455
-0.988198 0.36084402 8.34388 0.6234728 0.9020992
-0.890104 0.45995295 8.437074 0.61926925 0.91434866
-0.69052 0.48147997 8.508925 0.5924684 0.92553115
-0.396495 0.3764809 8.555167 0.5359251 0.9260856
-0.314112 -0.27134907 8.555167 0.51403373 0.8739047
-0.57266 -0.44751403 8.508925 0.53763556 0.85648507
-0.770893 -0.47888106 8.437074 0.55526567 0.8491228
-0.889783 -0.411165 8.34388 0.56869626 0.84974277
-0.925691 -0.28758696 8.233616 0.5782239 0.8564101
-0.888115 -0.14535092 8.110542 0.5834651 0.86724824
-0.796901 -0.012655909 7.978935 0.58376145 0.88026017
-0.803807 0.09375709 7.978935 0.5914231 0.8888499
-0.911276 0.21609908 8.110543 0.60956526 0.8942713
-0.966532 0.35478002 8.233616 0.624102 0.9019987
-0.946414 0.483956 8.34388 0.6312737 0.91219664
-0.83696 0.567616 8.437074 0.6243227 0.9240144
-0.636464 0.562302 8.508925 0.5915024 0.93353105
-0.357996 0.4203639 8.555167 0.53039277 0.93020123
-0.265344 -0.3039671 8.555168 0.508736 0.87140614
-0.499933 -0.511318 8.508925 0.5299195 0.85236144
-0.692912 -0.567766 8.437074 0.54637665 0.8437699
-0.819381 -0.5164221 8.34388 0.559319 0.8434177
-0.870338 -0.39971095 8.233616 0.56885433 0.84933263
-0.850693 -0.25557694 8.110544 0.5745797 0.85964495
-0.776744 -0.114227906 7.978935 0.5759058 0.87238747
-0.673125 0.004587122 7.8430576 0.57264817 0.88544136
-0.678917 0.09375712 7.8430576 0.5788754 0.8933075
-0.796901 0.20017011 7.978935 0.598575 0.8978617
-0.888115 0.33286506 8.110543 0.61733365 0.90397924
-0.925691 0.47510102 8.233616 0.63202894 0.9121541
-0.889783 0.5986789 8.34388 0.63823503 0.92245924
-0.770893 0.66639495 8.437074 0.6277677 0.93378127
-0.57266 0.63502795 8.508925 0.5875127 0.9413451
-0.314113 0.4588639 8.555167 0.5229982 0.9338393
-0.212189 -0.3302041 8.555167 0.5031863 0.86930686
-0.419111 -0.565374 8.508925 0.52199423 0.8488124
-0.604027 -0.645747 8.437074 0.53734446 0.8390749
-0.736284 -0.6111381 8.34388 0.5498533 0.8377895
-0.801526 -0.50258696 8.233616 0.5594251 0.8429662
-0.799974 -0.35829794 8.110542 0.5656162 0.8527492
-0.744178 -0.2101169 7.978935 0.56787384 0.86519927
-0.656218 -0.08053788 7.8430576 0.5660329 0.87821114
-0.564388 0.019746155 7.7071815 0.561373 0.88978446
-0.569204 0.09375715 7.7071805 0.5662423 0.8968831
-0.673125 0.18292812 7.8430576 0.5843899 0.90153337
-0.776744 0.3017421 7.978935 0.60482967 0.90698
-0.850693 0.44309205 8.110543 0.6242769 0.91383165
-0.870338 0.58722603 8.233616 0.63914263 0.9224765
-0.819381 0.70393693 8.34388 0.64407206 0.9328821
-0.692912 0.755281 8.437074 0.6288324 0.9436027
-0.499933 0.698832 8.508925 0.5792771 0.9487916
-0.265344 0.49148092 8.555167 0.51368535 0.93686664
-0.155146 -0.34956208 8.555167 0.49739242 0.8676213
-0.33102 -0.608856 8.508925 0.51385176 0.84584796
-0.505248 -0.71181405 8.437074 0.5281507 0.8350418
-0.641568 -0.6942351 8.34388 0.54027474 0.8328549
-0.720306 -0.59515995 8.233616 0.5499104 0.83729994
-0.736926 -0.45254895 8.110543 0.55655813 0.84654206
-0.700042 -0.2994829 7.978935 0.5596769 0.858671
-0.628904 -0.16090988 7.8430576 0.5590998 0.8715925
-0.550334 -0.050922845 7.7071795 0.55595666 0.88323253
-0.495134 0.029422186 7.5755734 0.55393124 0.8921887
-0.499329 0.09375719 7.5755725 0.55798495 0.89878625
-0.564388 0.16776915 7.7071805 0.5702479 0.90427125
-0.656218 0.26805213 7.8430576 0.58880943 0.9098181
-0.744178 0.39763108 7.978935 0.6099961 0.91620153
-0.799974 0.54581296 8.110544 0.63018113 0.9238267
-0.801526 0.690101 8.233616 0.6451697 0.9329622
-0.736284 0.79865193 8.34388 0.6482411 0.9434485
-0.604027 0.83326197 8.437074 0.6260611 0.95338595
-0.419111 0.752889 8.508925 0.5650497 0.95557
-0.212189 0.51771796 8.555168 0.50254846 0.93913877
-0.094713 -0.36154208 8.555167 0.49135333 0.8663654
-0.236485 -0.64093804 8.508925 0.50547457 0.8434816
-0.397585 -0.764958 8.437074 0.5187702 0.83167976
-0.536311 -0.7646371 8.34388 0.5305557 0.82861763
-0.627733 -0.67638 8.233616 0.54028547 0.8323301
-0.662511 -0.537365 8.110543 0.54738903 0.84101284
-0.645178 -0.3814849 7.978935 0.55132097 0.8527867
-0.59189 -0.23582287 7.8430576 0.55189717 0.86556745
-0.527631 -0.117658846 7.7071805 0.5501027 0.8772135
-0.482891 -0.032024816 7.5755725 0.5492492 0.8860783
-0.489802 0.030218216 7.4525037 0.55547273 0.8916363
-0.493954 0.093757205 7.452502 0.5597404 0.898414
-0.495134 0.15809219 7.5755725 0.5611088 0.9056264
-0.550334 0.23843715 7.7071805 0.5730393 0.91166556
-0.628904 0.34842414 7.8430576 0.59188914 0.91814154
-0.700042 0.48699808 7.978935 0.61376137 0.92550874
-0.736925 0.640064 8.110542 0.6346668 0.93395
-0.720306 0.782675 8.233616 0.6495848 0.94359624
-0.641568 0.8817489 8.34388 0.6496351 0.95411915
-0.505248 0.89932895 8.437074 0.6165066 0.96293324
-0.33102 0.796371 8.508925 0.54273236 0.96118903
-0.155146 0.537076 8.555167 0.48989454 0.9405119
-0.031389 -0.3656461 8.555167 0.48505896 0.8655557
-0.136332 -0.660793 8.508925 0.49683508 0.84172857
-0.282047 -0.80416805 8.437074 0.5091697 0.8290017
-0.421588 -0.8212681 8.34388 0.52066374 0.8250866
-0.524857 -0.745192 8.233616 0.53052187 0.82806057
-0.577695 -0.61177903 8.110542 0.5380908 0.836159
-0.580428 -0.4552819 7.978935 0.54280686 0.8475378
-0.545883 -0.3045689 7.8430576 0.5444573 0.86012477
-0.496869 -0.17987385 7.7071795 0.543888 0.87171674
-0.463117 -0.09006881 7.5755725 0.54406583 0.8804476
-0.477686 -0.030485785 7.452502 0.5505872 0.88536125
-0.489802 0.15729621 7.452502 0.5630816 0.90544724
-0.482891 0.21954018 7.5755725 0.5629849 0.91244006
-0.527631 0.30517414 7.7071805 0.5743636 0.9190303
-0.591891 0.42333713 7.8430576 0.59325576 0.9264628
-0.645178 0.5689991 7.978935 0.61560357 0.9348623
-0.662511 0.72487897 8.110543 0.6370312 0.9441682
-0.627733 0.86389405 8.233616 0.65130883 0.95434266
-0.536311 0.9521519 8.34388 0.6457325 0.96479946
-0.397585 0.952473 8.437074 0.593819 0.9717689
-0.236485 0.828452 8.508925 0.51110244 0.9649202
-0.094713 0.54905695 8.555168 0.47626916 0.94086164
--0.031935 -0.36154208 8.555168 0.4787284 0.8652245
-0.031389 -0.667594 8.5089245 0.4878943 0.840605
-0.159645 -0.828435 8.437074 0.49930596 0.8270225
-0.298476 -0.86305207 8.34388 0.5105586 0.8222746
-0.412733 -0.800545 8.233616 0.5205867 0.8245
-0.483445 -0.67482805 8.110544 0.52864134 0.83198434
-0.506631 -0.5200319 7.978935 0.53412896 0.842923
-0.491589 -0.3664429 7.8430576 0.53680056 0.85525936
-0.458638 -0.23697685 7.7071805 0.5373666 0.86673707
-0.436328 -0.14419381 7.5755725 0.5384722 0.8752917
-0.45812 -0.0878438 7.452502 0.5452099 0.8795796
-0.558517 -0.05294776 7.3422346 0.5638484 0.8788067
-0.572834 0.018735241 7.3422356 0.57039833 0.88611716
-0.577741 0.09375724 7.3422356 0.5765238 0.8940554
-0.496869 0.36738816 7.7071815 0.57386136 0.92630666
-0.545883 0.49208412 7.8430576 0.5923338 0.9347127
-0.580428 0.6427961 7.978935 0.61462486 0.9441905
-0.577695 0.799294 8.110543 0.6358918 0.9544121
-0.524857 0.93270606 8.233616 0.6478545 0.96511406
-0.421588 1.008783 8.34388 0.6297366 0.9752138
-0.282047 0.99168295 8.437074 0.5454627 0.97863704
-0.136332 0.84830695 8.508925 0.47261962 0.96594584
-0.031389 0.55316097 8.555167 0.46240413 0.94010377
--0.092368 -0.34956208 8.555167 0.47257918 0.86537933
--0.073555 -0.660793 8.508925 0.4789371 0.8401489
-0.031389 -0.836748 8.437074 0.48912415 0.8257565
-0.168051 -0.88891107 8.34388 0.50019056 0.8201964
-0.292412 -0.84138596 8.233616 0.51043916 0.8216618
-0.380723 -0.725547 8.110543 0.51901186 0.8284978
-0.424629 -0.5748959 7.978935 0.52527523 0.8389467
-0.429715 -0.42073688 7.8430576 0.528937 0.8509721
-0.413526 -0.28837985 7.7071815 0.53057563 0.8622734
-0.40304 -0.19388382 7.5755725 0.53253317 0.870609
-0.431617 -0.14134079 7.452502 0.53943086 0.8742853
-0.535398 -0.120685756 7.3422356 0.55695605 0.87209994
-0.726295 -0.09964274 7.2478566 0.5861511 0.86413234
-0.745169 -0.005143736 7.2478576 0.5957132 0.8730054
-0.751638 0.093757264 7.2478566 0.6053453 0.88268226
-0.572834 0.16877924 7.3422356 0.58189535 0.90234995
-0.477686 0.21800122 7.452502 0.56516695 0.9124635
-0.463117 0.2775842 7.5755725 0.5633749 0.91918314
-0.458638 0.42449215 7.7071795 0.5710285 0.9334047
-0.491589 0.55395705 7.8430576 0.5882315 0.9427763
-0.506631 0.70754707 7.978935 0.60921454 0.9533583
-0.483444 0.86234295 8.110542 0.62825596 0.9645239
-0.412733 0.98805904 8.233616 0.6323787 0.9756492
-0.298475 1.050566 8.34388 0.5795516 0.9842991
-0.159645 1.01595 8.437075 0.46512753 0.9808067
-0.031389 0.855109 8.5089245 0.43451804 0.96382946
--0.031935 0.549056 8.555167 0.4495551 0.9382834
--0.149411 -0.3302041 8.555168 0.4665982 0.86600184
--0.173707 -0.64093804 8.508925 0.4702443 0.840374
--0.096868 -0.828435 8.437075 0.47893813 0.825244
-0.031389 -0.8977701 8.34388 0.48949775 0.8188657
-0.164946 -0.866663 8.233616 0.50002897 0.8195602
-0.270497 -0.762969 8.110543 0.50916624 0.8257127
-0.335263 -0.6190319 7.978935 0.5162263 0.8356187
-0.360969 -0.4667439 7.8430576 0.52086735 0.84726936
-0.362123 -0.33349186 7.7071795 0.52353877 0.85832965
-0.363769 -0.23862281 7.5755725 0.5262953 0.8664017
-0.398689 -0.1904648 7.452502 0.53331405 0.869476
-0.504084 -0.18387076 7.3422337 0.549778 0.8659798
-0.695818 -0.18893975 7.2478566 0.57660353 0.85602313
-0.956304 -0.1636567 7.1677046 0.609518 0.84154123
-0.981424 -0.03787872 7.1677065 0.62228835 0.8518199
-0.990034 0.09375729 7.1677055 0.63570243 0.86300355
-0.745169 0.19265826 7.2478566 0.6147664 0.89284724
-0.558517 0.24046324 7.3422356 0.58612996 0.91070294
-0.436328 0.33170918 7.5755725 0.5619576 0.9257893
-0.40304 0.38139918 7.5755725 0.5583092 0.93216264
-0.413526 0.47589415 7.7071815 0.5651695 0.9401893
-0.429715 0.60825104 7.8430576 0.5795709 0.950462
-0.424629 0.7624101 7.978935 0.59637654 0.962095
-0.380723 0.91306096 8.110544 0.6068593 0.97408545
-0.292411 1.0288999 8.233616 0.58156955 0.9848981
-0.16805 1.076426 8.34388 0.45377472 0.98760957
-0.031389 1.024263 8.437074 0.39153588 0.9764995
--0.073555 0.84830695 8.508925 0.40473074 0.95904857
--0.092368 0.537076 8.555167 0.43867913 0.93559784
--0.202566 -0.3039671 8.555167 0.46077955 0.8670755
--0.268242 -0.608856 8.508925 0.4617707 0.8412583
--0.219269 -0.80416805 8.437074 0.4690565 0.8255021
--0.105273 -0.88891107 8.34388 0.47880632 0.81832343
-0.031389 -0.875322 8.233614 0.48929402 0.81820905
-0.15373 -0.78613 8.110543 0.49905828 0.8236435
-0.239374 -0.6515979 7.978935 0.5069536 0.83295214
-0.286056 -0.50375795 7.8430576 0.5125829 0.84416157
-0.30502 -0.37172285 7.7071815 0.5162684 0.8549141
-0.31903 -0.2778938 7.5755725 0.5197896 0.86267585
-0.359849 -0.23470278 7.4525037 0.5269047 0.8651533
-0.465182 -0.24189475 7.3422356 0.54235256 0.860436
-0.654537 -0.27223572 7.2478566 0.5670327 0.8486475
-0.915739 -0.28251076 7.1677055 0.5971689 0.83213776
-1.2339 -0.24091469 7.0989366 0.6296438 0.8128003
-1.26656 -0.0773867 7.0989375 0.6449724 0.82406855
-1.277754 0.0937573 7.0989375 0.6613201 0.836242
-0.981424 0.22539431 7.1677055 0.6495608 0.87470555
-0.726295 0.28715727 7.2478566 0.62362087 0.90316725
-0.535398 0.30820024 7.3422356 0.58896697 0.91909003
-0.45812 0.2753582 7.452502 0.5657482 0.9194194
-0.363769 0.42613718 7.5755725 0.5518934 0.9381667
-0.362123 0.52100617 7.7071805 0.5553795 0.94645905
-0.360969 0.654259 7.8430576 0.56432 0.9574434
-0.335263 0.8065461 7.978935 0.57062745 0.9698188
-0.270497 0.95048296 8.110542 0.5536988 0.98177683
-0.164946 1.0541768 8.233616 0.44876194 0.9881522
-0.031389 1.085284 8.34388 0.35259622 0.98111063
--0.096868 1.01595 8.437074 0.35256588 0.9682235
--0.173707 0.828452 8.508925 0.38514403 0.9526589
--0.149411 0.51771796 8.555167 0.4299224 0.9322273
--0.251335 -0.27134907 8.555167 0.4551239 0.86858654
--0.356334 -0.565374 8.508925 0.45348296 0.8427822
--0.334807 -0.764958 8.437074 0.4594172 0.82650834
--0.235698 -0.86305207 8.34388 0.4684358 0.81858873
--0.102168 -0.866663 8.233616 0.47856098 0.81764996
-0.031389 -0.794065 8.110543 0.48863003 0.82230467
-0.137802 -0.6717549 7.978935 0.49741864 0.8309623
-0.205684 -0.53107196 7.8430576 0.5040655 0.84166235
-0.242806 -0.40248483 7.7071805 0.5087659 0.8520383
-0.269341 -0.3111818 7.5755725 0.5130352 0.8594411
-0.315611 -0.2735428 7.452502 0.5202334 0.86132294
-0.419299 -0.29415277 7.3422356 0.5347047 0.8554644
-0.603253 -0.34872872 7.2478566 0.5574111 0.84198546
-0.860794 -0.39337677 7.1677046 0.585092 0.82358277
-1.181161 -0.3954407 7.0989375 0.6150147 0.80244386
-1.544442 -0.32734174 7.0387053 0.6453079 0.7812125
-1.585536 -0.121583685 7.0387053 0.66236556 0.7930898
-1.599621 0.09375732 7.0387053 0.6805928 0.8058208
-1.26656 0.2649023 7.0989375 0.67849374 0.8488489
-0.956304 0.35117126 7.1677055 0.6635945 0.88653827
-0.695818 0.37645528 7.2478566 0.6318438 0.91365546
-0.504084 0.37138525 7.3422356 0.5900083 0.92746496
-0.431617 0.32885522 7.4525037 0.5644848 0.9262487
-0.398689 0.37797922 7.452502 0.56091857 0.9328542
-0.359849 0.4222182 7.4525037 0.5544556 0.9390954
-0.31903 0.46540818 7.5755725 0.54209006 0.9436115
-0.30502 0.55923814 7.7071795 0.54062545 0.95191807
-0.286056 0.69127303 7.8430576 0.53997064 0.96317077
-0.239374 0.8391121 7.978935 0.52440584 0.9752798
-0.15373 0.97364396 8.110544 0.45375976 0.9839688
-0.031389 1.0628358 8.233614 0.34682912 0.9812537
--0.105273 1.076426 8.34388 0.31872448 0.970699
--0.21927 0.99168295 8.437074 0.33564895 0.95865893
--0.268242 0.796371 8.508925 0.37336507 0.94539523
--0.202566 0.49148092 8.555168 0.4232281 0.9283365
--0.295218 -0.23285003 8.555167 0.44963858 0.8705239
--0.437156 -0.511318 8.508925 0.44535682 0.84492946
--0.44247 -0.71181405 8.437074 0.44997185 0.828242
--0.35881 -0.8212681 8.34388 0.45831728 0.8196391
--0.229634 -0.84138596 8.233616 0.46815 0.81790245
--0.090953 -0.78613 8.110544 0.47820044 0.821738
-0.031389 -0.6786599 7.978935 0.48757133 0.8296642
-0.120559 -0.54797894 7.8430576 0.49528635 0.8397876
-0.176069 -0.42518786 7.7071805 0.5010225 0.8497167
-0.215216 -0.33797082 7.5755725 0.5060395 0.8567101
-0.266487 -0.30647078 7.4525037 0.51331764 0.85799485
-0.367041 -0.34003577 7.3422346 0.5268482 0.8510674
-0.542766 -0.41761974 7.2478566 0.5477146 0.8360266
-0.792535 -0.49518776 7.1677055 0.5731813 0.8158577
-1.109725 -0.53958076 7.0989366 0.6008636 0.79299414
-1.478083 -0.5217737 7.0387053 0.6290739 0.7702371
-1.873288 -0.41886365 6.9841657 0.65699553 0.75008374
-1.923313 -0.16838565 6.9841676 0.67514515 0.7623136
-1.940459 0.09375732 6.9841657 0.69448584 0.7753374
-1.585536 0.30909926 7.0387053 0.69974214 0.8188618
-1.2339 0.4284293 7.0989375 0.69621605 0.8614379
-0.915739 0.47002524 7.1677055 0.67805815 0.89851487
-0.654537 0.45975026 7.2478566 0.63930106 0.9243153
-0.465182 0.42941025 7.3422346 0.5886395 0.93575037
-0.419299 0.48166725 7.3422356 0.58390653 0.9438194
-0.315611 0.46105722 7.452502 0.5443866 0.94477284
-0.26934 0.49869618 7.5755725 0.52831626 0.9482405
-0.242805 0.59000015 7.7071805 0.5201137 0.9561555
-0.205684 0.718586 7.8430576 0.50513893 0.9668114
-0.137802 0.8592691 7.978935 0.45964086 0.9764989
-0.031389 0.98157895 8.110543 0.37073758 0.978404
--0.102168 1.0541768 8.233616 0.31479585 0.97062045
--0.235698 1.050566 8.34388 0.30876678 0.9597075
--0.334807 0.952473 8.437074 0.32924446 0.9487602
--0.356334 0.752889 8.508925 0.36701375 0.9376983
--0.251335 0.4588639 8.555167 0.41842625 0.9240664
--0.333718 -0.18896602 8.555167 0.44433662 0.8728799
--0.509882 -0.44751403 8.508925 0.4373754 0.8476887
--0.541249 -0.645747 8.437074 0.44068205 0.8306856
--0.473533 -0.7646371 8.34388 0.4483959 0.82145303
--0.349955 -0.800545 8.233616 0.45799163 0.81894374
--0.207719 -0.762969 8.110542 0.4680824 0.8219624
--0.075024 -0.6717549 7.978935 0.4777164 0.8290997
-0.031389 -0.55377096 7.8430576 0.48620522 0.83855355
-0.1054 -0.43924186 7.7071805 0.49301916 0.847966
-0.157171 -0.3577448 7.5755725 0.4987996 0.85449815
-0.21299 -0.33297378 7.452502 0.5061642 0.8551819
-0.309017 -0.37893775 7.3422356 0.51878655 0.8472528
-0.473875 -0.47810674 7.2478566 0.5379192 0.8307694
-0.712027 -0.58688074 7.1677055 0.5613563 0.8089529
-1.02098 -0.6719498 7.0989375 0.5870317 0.784446
-1.3882 -0.7031367 7.0387053 0.6134156 0.7601855
-1.792506 -0.6555527 6.9841657 0.6396982 0.7387299
-2.205793 -0.51140267 6.9324718 0.66562784 0.72169304
-2.264849 -0.21570864 6.9324718 0.6844603 0.7341221
-2.28509 0.09375734 6.9324718 0.7044523 0.74729544
-1.923313 0.35590133 6.9841657 0.71470594 0.7885627
-1.544442 0.51485735 7.0387053 0.7194631 0.8317145
-1.181161 0.5829562 7.0989375 0.7148559 0.87398577
-0.860794 0.58089125 7.1677055 0.693317 0.9106295
-0.603253 0.53624326 7.2478566 0.6457298 0.935141
-0.542766 0.60513425 7.2478566 0.650602 0.94611686
-0.367041 0.52755016 7.3422356 0.57434237 0.9514612
-0.266487 0.4939852 7.452502 0.5300106 0.9496119
-0.176069 0.61270314 7.7071795 0.49412426 0.9586737
-0.120559 0.735493 7.8430576 0.46327955 0.96745604
-0.031389 0.8661751 7.978935 0.40097475 0.97257453
--0.090953 0.97364396 8.110543 0.3346848 0.96899384
--0.229634 1.0288999 8.233616 0.30588755 0.95950663
--0.35881 1.008783 8.34388 0.30748725 0.9487745
--0.44247 0.89932895 8.437074 0.3282505 0.93886554
--0.437156 0.698832 8.508925 0.36438695 0.9298218
--0.295218 0.4203639 8.555167 0.4153035 0.9195332
--0.366335 -0.14019802 8.555168 0.43923807 0.8756498
--0.573686 -0.37478703 8.508925 0.4295278 0.8510539
--0.630135 -0.567766 8.437074 0.43151665 0.833827
--0.578791 -0.6942351 8.34388 0.4386273 0.82401246
--0.46208 -0.745192 8.233616 0.44803047 0.8207521
--0.317946 -0.725547 8.110544 0.45821047 0.8229551
--0.176596 -0.6515979 7.978935 0.46815273 0.8292868
--0.057781 -0.54797894 7.8430576 0.4771079 0.8380018
-0.031389 -0.44405785 7.7071815 0.4847255 0.8468032
-0.095724 -0.36998782 7.5755725 0.49130246 0.8528224
-0.155632 -0.35253978 7.452502 0.4987688 0.8528998
-0.245832 -0.41025177 7.3422356 0.5105132 0.84403247
-0.397382 -0.52939075 7.2478566 0.5279983 0.8262193
-0.620334 -0.66738874 7.1677046 0.5495507 0.80286855
-0.916308 -0.7911618 7.0989375 0.5733989 0.77680004
-1.276536 -0.8696887 7.0387053 0.59815055 0.7510711
-1.683088 -0.87633264 6.9841657 0.6230029 0.7282968
-2.110429 -0.79082066 6.9324718 0.64763296 0.710112
-2.527317 -0.60088664 6.8807764 0.6720321 0.6971119
-2.595105 -0.26146963 6.8807774 0.69129926 0.70965433
-2.61834 0.09375735 6.8807764 0.71168005 0.72290295
-2.264849 0.4032243 6.9324718 0.72524035 0.76059073
-1.873288 0.6063783 6.9841657 0.73538435 0.80146515
-1.478083 0.7092893 7.0387053 0.7400919 0.844328
-1.109725 0.7270952 7.0989375 0.7349049 0.8864266
-0.792535 0.68270326 7.1677046 0.70993495 0.9228546
-0.712027 0.7743953 7.1677055 0.7288637 0.93513197
-0.473875 0.6656213 7.2478566 0.6527757 0.957208
-0.309017 0.56645316 7.3422337 0.5578228 0.9583185
-0.215215 0.5254852 7.5755725 0.51031506 0.95173067
-0.1054 0.62675714 7.7071815 0.46493608 0.9590213
-0.031389 0.741285 7.8430576 0.42342603 0.96472865
--0.075024 0.8592691 7.978935 0.36542183 0.96520424
--0.207719 0.95048296 8.110543 0.3213748 0.95867395
--0.349955 0.98805904 8.233616 0.3052213 0.9484905
--0.473533 0.9521519 8.34388 0.31017613 0.9380611
--0.541249 0.83326197 8.437074 0.3303414 0.9291108
--0.509882 0.63502795 8.508925 0.36436737 0.9219147
--0.333718 0.3764809 8.555167 0.41364497 0.91483027
--0.392572 -0.08704305 8.555167 0.43436974 0.8788323
--0.627743 -0.293965 8.508925 0.4218075 0.85502505
--0.708116 -0.47888106 8.437074 0.4224496 0.83766073
--0.673506 -0.6111381 8.34388 0.4289743 0.82730496
--0.564955 -0.67638 8.233616 0.43822163 0.8233095
--0.420667 -0.67482805 8.110542 0.44853315 0.82469416
--0.272485 -0.6190319 7.978935 0.4588231 0.83020186
--0.142906 -0.53107196 7.8430576 0.46827486 0.8381483
--0.042623 -0.43924186 7.7071815 0.4764065 0.84626955
-0.031389 -0.37418282 7.5755734 0.4835235 0.8517009
-0.094928 -0.3646558 7.452502 0.49111712 0.8511663
-0.178095 -0.43337077 7.3422356 0.5020118 0.84142226
-0.314087 -0.57067174 7.2478566 0.5179194 0.82238823
-0.518523 -0.73564774 7.1677055 0.5377039 0.7976123
-0.797096 -0.8958338 7.0989366 0.5598676 0.77006376
-1.144834 -1.0196877 7.038705 0.58313894 0.74290806
-1.547155 -1.0790837 6.984166 0.606721 0.718815
-1.981258 -1.0514567 6.9324713 0.6302314 0.69944125
-2.417851 -0.92162067 6.8807764 0.65357244 0.6853935
-2.823217 -0.6832386 6.826236 0.6768278 0.67653203
-2.899041 -0.30358264 6.826236 0.6963806 0.6891405
-2.92503 0.09375735 6.826236 0.71700144 0.7024271
-2.595105 0.44898435 6.8807764 0.7327726 0.7362192
-2.205793 0.69891834 6.9324718 0.74635375 0.77346975
-1.792506 0.84306735 6.9841657 0.7568046 0.8139815
-1.3882 0.89065236 7.0387053 0.76203257 0.8565984
-1.02098 0.8594642 7.0989366 0.7570383 0.89863974
-0.916308 0.9786772 7.0989375 0.7821998 0.91042745
-0.620334 0.8549043 7.1677055 0.7518862 0.9473431
-0.397382 0.71690625 7.2478566 0.64942044 0.96832895
-0.245832 0.5977672 7.3422356 0.53187966 0.96379757
-0.21299 0.5204882 7.452502 0.51097 0.95325834
-0.157171 0.54525924 7.5755725 0.48861533 0.95372736
-0.031389 0.6315721 7.7071815 0.43649408 0.9570019
--0.057782 0.735493 7.8430576 0.39381966 0.95931244
--0.176596 0.8391121 7.978935 0.34762254 0.9564426
--0.317946 0.91306096 8.110543 0.3176204 0.9482356
--0.46208 0.93270606 8.233616 0.3083054 0.93771315
--0.578791 0.8817489 8.34388 0.3150042 0.92761713
--0.630135 0.755281 8.437074 0.33435932 0.91955805
--0.573686 0.562302 8.508925 0.366235 0.9140683
--0.366335 0.3277119 8.555167 0.413257 0.9100321
--0.41193 -0.030000048 8.555167 0.4297672 0.8824295
--0.671225 -0.20587404 8.508925 0.41421187 0.85960895
--0.774183 -0.38010207 8.437074 0.41345692 0.8421881
--0.756603 -0.5164221 8.34388 0.41940403 0.83132446
--0.657529 -0.59515995 8.233616 0.42852736 0.82660306
--0.514918 -0.61177903 8.110543 0.43900913 0.82716185
--0.361852 -0.5748959 7.978935 0.44968295 0.8318238
--0.223278 -0.50375795 7.8430576 0.4596594 0.83896965
--0.113291 -0.42518786 7.7071795 0.4683237 0.8463788
--0.032946 -0.36998782 7.5755734 0.4757134 0.8511743
-0.031389 -0.3688078 7.4525037 0.4831829 0.84999996
-0.106411 -0.44768775 7.3422356 0.49325472 0.8394399
-0.224789 -0.6011487 7.2478566 0.50764215 0.81929207
-0.407657 -0.79059273 7.1677055 0.52575505 0.7931989
-0.664727 -0.9845788 7.0989375 0.5463524 0.7642528
-0.994835 -1.1513897 7.038704 0.568267 0.7357153
-1.386829 -1.2616826 6.984165 0.590706 0.7103119
-1.820786 -1.2908087 6.9324713 0.61323595 0.6897246
-2.26958 -1.2207967 6.880776 0.63568413 0.6745727
-2.700773 -1.0419967 6.8262353 0.6580503 0.6647276
-3.07885 -0.75438464 6.7660046 0.6804497 0.65967685
-3.161617 -0.3399646 6.7660055 0.70019746 0.67232615
-3.189986 0.093757376 6.7660046 0.72097325 0.6856326
-2.899041 0.49109736 6.826236 0.7382616 0.71574455
-2.527317 0.7884023 6.8807764 0.754075 0.7490565
-2.110429 0.9783353 6.9324718 0.7680385 0.7858653
-1.683088 1.0638484 6.984166 0.77927953 0.82599664
-1.276536 1.0572044 7.038705 0.7857661 0.86836106
-1.144834 1.2072023 7.038706 0.81185126 0.87937903
-0.797096 1.0833483 7.098938 0.81170315 0.9214713
-0.518523 0.9231633 7.1677046 0.78274024 0.9592223
-0.314086 0.7581873 7.2478566 0.63169616 0.97919995
-0.178094 0.62088615 7.3422346 0.495655 0.9670339
-0.155632 0.5400542 7.452502 0.48781925 0.95531774
-0.095724 0.5575022 7.5755734 0.4648751 0.95393074
-0.031389 0.5616972 7.5755734 0.4415768 0.95220417
--0.042623 0.62675714 7.7071805 0.41313156 0.95293576
--0.142906 0.718586 7.8430576 0.37526613 0.9523919
--0.272485 0.8065461 7.978935 0.33963144 0.9471956
--0.420667 0.86234295 8.110544 0.31852487 0.9379217
--0.564955 0.86389405 8.233616 0.31340915 0.92721665
--0.673506 0.79865193 8.34388 0.3211369 0.91746026
--0.708116 0.66639495 8.437074 0.33968282 0.91023946
--0.627743 0.48147997 8.508925 0.3695232 0.9063408
--0.392572 0.2745569 8.555168 0.41397473 0.90519774
--0.42391 0.030432953 8.555167 0.42547652 0.8864463
--0.703306 -0.11133903 8.508925 0.40674058 0.8648194
--0.827327 -0.27243906 8.437074 0.40451434 0.84741867
--0.827006 -0.411165 8.34388 0.40988487 0.8360728
--0.738748 -0.50258696 8.233616 0.41891447 0.8306267
--0.599733 -0.537365 8.110543 0.42960453 0.8303452
--0.443853 -0.5200319 7.978935 0.44069803 0.83413476
--0.298191 -0.4667439 7.8430576 0.4512263 0.84044474
--0.180028 -0.40248483 7.7071805 0.4604405 0.84710807
--0.094394 -0.3577448 7.5755725 0.46811923 0.8512554
--0.03215 -0.3646558 7.4525037 0.4752181 0.84944254
-0.031389 -0.45259476 7.3422356 0.48420295 0.83810383
-0.13029 -0.6200227 7.2478566 0.49711648 0.81694853
-0.288803 -0.83115774 7.1677055 0.5136391 0.78964645
-0.520587 -1.0560147 7.098937 0.5327712 0.7593871
-0.828283 -1.2630537 7.038705 0.5534351 0.72951776
-1.20423 -1.4220086 6.984165 0.5748373 0.70281774
-1.631517 -1.5063707 6.93247 0.59649915 0.68100053
-2.08538 -1.4955406 6.880776 0.6181834 0.6647032
-2.534924 -1.3766407 6.8262353 0.639819 0.65380853
-2.945194 -1.1459917 6.766004 0.6614481 0.6478156
-3.279573 -0.8102476 6.6972356 0.6831955 0.64610535
-3.367792 -0.3685326 6.6972365 0.70308155 0.6587825
-3.398029 0.0937574 6.6972356 0.72396314 0.6721012
-3.161617 0.52748036 6.7660046 0.7423296 0.69894475
-2.823217 0.87075436 6.826236 0.7596397 0.728541
-2.417851 1.1091363 6.880777 0.7758105 0.7613474
-1.981258 1.2389714 6.932471 0.7905497 0.79766285
-1.547155 1.2665983 6.984166 0.8031432 0.83734065
-1.386829 1.4491973 6.984166 0.82873577 0.8477863
-0.994835 1.3389053 7.038706 0.8408941 0.8893255
-0.664727 1.1720943 7.098937 0.8472583 0.93126136
-0.407657 0.9781073 7.1677055 0.8300804 0.9700722
-0.224789 0.7886643 7.2478566 0.5622555 0.9883986
-0.106411 0.63520217 7.3422356 0.45364377 0.9671686
-0.094928 0.5521702 7.4525037 0.46247616 0.9554582
--0.223278 0.69127303 7.8430576 0.36463428 0.9447074
--0.361852 0.7624101 7.978935 0.33715042 0.9378432
--0.514918 0.799294 8.110542 0.3220201 0.92782086
--0.657529 0.782675 8.233616 0.3197461 0.9170146
--0.756603 0.70393693 8.34388 0.32815287 0.90759724
--0.774183 0.567616 8.437074 0.34596038 0.9011733
--0.671225 0.39338797 8.508925 0.37392756 0.8987711
--0.41193 0.21751398 8.555167 0.41566387 0.90037364
--0.428015 0.09375695 8.555167 0.42155725 0.8908907
--0.723161 -0.011186037 8.508925 0.3993947 0.87067735
--0.866537 -0.15690103 8.437074 0.39559403 0.85337055
--0.883637 -0.296442 8.34388 0.40038309 0.8415603
--0.80756 -0.39971095 8.233616 0.40935048 0.8353825
--0.674148 -0.45254895 8.110542 0.42028978 0.8342385
--0.51765 -0.4552819 7.978935 0.43184114 0.8371224
--0.366938 -0.42073688 7.8430576 0.44294998 0.84255666
--0.242242 -0.37172285 7.7071795 0.45273125 0.8484367
--0.152438 -0.33797082 7.5755725 0.46071154 0.8519212
--0.092855 -0.35253978 7.452502 0.46747088 0.8495073
--0.043633 -0.44768775 7.3422356 0.4751325 0.8374594
-0.031389 -0.6264907 7.2478576 0.48627993 0.81537473
-0.163025 -0.8562777 7.1677055 0.5012817 0.7869741
-0.366061 -1.1087537 7.098937 0.51903933 0.7554906
-0.64692 -1.3529366 7.038705 0.5385487 0.7243439
-1.001479 -1.5579417 6.984165 0.55900896 0.69636685
-1.415955 -1.6956396 6.93247 0.57989836 0.6733091
-1.868124 -1.7429776 6.880775 0.6009238 0.65583247
-2.328886 -1.6839566 6.8262353 0.62195396 0.64383554
-2.764159 -1.5112777 6.766004 0.64296925 0.6368285
-3.137114 -1.2276485 6.697235 0.6640307 0.6342031
-3.410745 -0.84675467 6.6170845 0.6852634 0.63538516
-3.502526 -0.3872006 6.6170855 0.70525265 0.6480848
-3.533985 0.09375741 6.6170845 0.72621167 0.6614141
-3.367792 0.5560474 6.6972356 0.74537885 0.6854078
-3.07885 0.9418994 6.7660046 0.76373285 0.711707
-2.700773 1.2295123 6.8262362 0.7813455 0.740749
-2.26958 1.4083123 6.880776 0.7982007 0.7729805
-1.820786 1.4783233 6.932471 0.8141408 0.80869985
-1.631517 1.6938853 6.932471 0.8390485 0.81876814
-1.20423 1.6095233 6.984167 0.8563691 0.8570472
-0.828283 1.4505683 7.038706 0.87344575 0.8977688
-0.520587 1.2435293 7.098938 0.8906005 0.93900806
-0.288803 1.0186723 7.167705 0.91166055 0.97784233
-0.13029 0.80753726 7.2478576 0.39218953 0.9887889
-0.031389 0.6401092 7.3422356 0.41513118 0.9639717
-0.031389 0.5563222 7.4525037 0.43782797 0.9535426
--0.032946 0.5575022 7.5755725 0.42170912 0.9487616
--0.113291 0.61270314 7.7071805 0.39644063 0.9475143
--0.180028 0.59000015 7.7071805 0.38541633 0.94125473
--0.298191 0.654259 7.8430576 0.35929933 0.93667597
--0.443853 0.70754707 7.978935 0.3379774 0.92855734
--0.599733 0.72487897 8.110543 0.32711762 0.91797066
--0.738748 0.690101 8.233616 0.32692078 0.90711176
--0.827006 0.5986789 8.34388 0.3358282 0.89803106
--0.827327 0.45995295 8.437074 0.3529887 0.89237005
--0.703306 0.29885298 8.508925 0.37924898 0.89138454
--0.423911 0.15708098 8.555168 0.41821846 0.8955956
--0.729963 0.09375697 8.5089245 0.39217645 0.8772111
--0.890803 -0.03449902 8.437074 0.38666058 0.86007035
--0.92542 -0.17332998 8.34388 0.39085844 0.8478061
--0.862913 -0.28758696 8.233616 0.399801 0.84088033
--0.737197 -0.35829794 8.110544 0.4110375 0.8388431
--0.582401 -0.3814849 7.978935 0.42309025 0.8407806
--0.428811 -0.3664429 7.8430576 0.43481216 0.845293
--0.299346 -0.33349186 7.7071805 0.44517878 0.850348
--0.206563 -0.3111818 7.5755725 0.45347035 0.85315126
--0.150212 -0.33297378 7.452502 0.45991012 0.8501702
--0.115317 -0.43337077 7.3422346 0.46631438 0.8375226
--0.067512 -0.6200227 7.2478576 0.47544777 0.81461984
-0.031389 -0.8648877 7.1677065 0.48859665 0.7851973
-0.202533 -1.1414137 7.098937 0.50506395 0.7525851
-0.452488 -1.4192957 7.038705 0.5235109 0.72022414
-0.780699 -1.6673597 6.984165 0.5431198 0.6909966
-1.176603 -1.8561116 6.93247 0.56332517 0.6666934
-1.620687 -1.9602337 6.880775 0.5837831 0.6480083
-2.085874 -1.9607277 6.8262353 0.6043106 0.6348628
-2.539256 -1.8467326 6.766005 0.6248363 0.62678146
-2.944156 -1.6169945 6.697235 0.6453684 0.6231655
-3.262534 -1.2810116 6.617084 0.6659757 0.62345016
-3.5336442 -0.39151224 6.556223 0.7062868 0.6428124
-3.4410398 -0.8551856 6.556223 0.6862445 0.63009834
-3.4998405 -0.560768 6.556223 0.6988822 0.638392
-3.5448945 -0.21950768 6.556223 0.7136214 0.64779013
-3.5653846 0.09375743 6.556223 0.7272867 0.6561503
-3.502527 0.5747163 6.6170845 0.7476692 0.674718
-3.279573 0.9977634 6.6972356 0.76678735 0.69814354
-2.945194 1.3335063 6.766005 0.78538483 0.72385126
-2.534924 1.5641563 6.8262362 0.8035814 0.7522607
-2.08538 1.6830553 6.880776 0.82145596 0.7838025
-1.868124 1.9304923 6.880776 0.84576315 0.7936225
-1.415955 1.8831543 6.932472 0.8654698 0.8276179
-1.001479 1.7454563 6.984166 0.8862665 0.86477834
-0.64692 1.5404513 7.038706 0.90978247 0.90417236
-0.366061 1.2962693 7.098937 0.94210213 0.9436338
-0.163025 1.0437933 7.167707 1.0264338 0.97827274
-0.13029 0.80753726 7.2478576 1.3921895 0.9887889
-0.031389 0.81400627 7.2478576 0.31493366 0.9793565
--0.043633 0.63520217 7.3422356 0.38727874 0.9582309
--0.03215 0.5521702 7.452502 0.41715363 0.9498284
--0.094394 0.54525924 7.5755725 0.40671846 0.9441058
--0.242242 0.55923814 7.7071815 0.37875545 0.93451345
--0.366938 0.60825104 7.8430576 0.35751817 0.92852855
--0.51765 0.6427961 7.978935 0.34093523 0.91942304
--0.674148 0.640064 8.110543 0.33330008 0.9083894
--0.80756 0.58722603 8.233616 0.3347238 0.89751035
--0.883637 0.483956 8.34388 0.34404323 0.8887624
--0.866537 0.34441495 8.437074 0.3606514 0.88383436
--0.723161 0.19870096 8.508925 0.3853587 0.88419586
--0.899117 0.09375698 8.437074 0.37766474 0.867553
--0.95128 -0.042904995 8.34388 0.38125846 0.8548381
--0.903754 -0.16726595 8.233616 0.39022455 0.8471396
--0.787915 -0.25557694 8.110543 0.40181875 0.84416896
--0.637264 -0.2994829 7.978935 0.41442657 0.84511036
--0.483105 -0.3045689 7.8430576 0.42680007 0.8486474
--0.350748 -0.28837985 7.7071815 0.43777335 0.85282993
--0.256253 -0.2778938 7.5755725 0.4463841 0.854929
--0.203709 -0.30647078 7.452502 0.45251447 0.8514101
--0.183054 -0.41025177 7.3422356 0.45770302 0.83826727
--0.162011 -0.6011487 7.2478566 0.46492797 0.8147051
--0.100247 -0.8562777 7.1677065 0.47594076 0.7843675
-0.031389 -1.1526077 7.098937 0.49074027 0.75068635
-0.246731 -1.4603896 7.038705 0.5082169 0.7171854
-0.54401 -1.7481416 6.984165 0.52706647 0.68674487
-0.915967 -1.9852827 6.9324713 0.54667574 0.6611988
-1.345943 -2.1444337 6.880775 0.5666521 0.64128107
-1.809103 -2.2037396 6.8262353 0.5867671 0.6269445
-2.273993 -2.1488457 6.766004 0.60690635 0.61773384
-2.704439 -1.9745445 6.697236 0.6270344 0.6130624
-3.061783 -1.6860795 6.617084 0.64717436 0.6123721
-3.2914999 -1.2933358 6.5562224 0.6668945 0.6181439
-3.3944824 -0.9915977 6.556223 0.68015194 0.6265532
-3.5336444 0.579028 6.556223 0.7487682 0.6694561
-3.556951 0.2226985 6.556223 0.7328934 0.6599232
-3.410745 1.0342695 6.617085 0.7690787 0.68743527
-3.137114 1.4151645 6.697236 0.7883855 0.71023977
-2.764159 1.6987923 6.766005 0.8074765 0.73527294
-2.328886 1.8714713 6.8262362 0.82653385 0.76293087
-2.085874 2.1482434 6.8262362 0.85036373 0.7725821
-1.620687 2.1477482 6.880777 0.87127036 0.80221736
-1.176603 2.0436263 6.932472 0.89352906 0.834962
-0.780699 1.8548744 6.984166 0.9184716 0.8705879
-0.452488 1.6068113 7.038706 0.94956636 0.907939
-0.202533 1.3289284 7.098938 0.9985589 0.94407314
-0.163025 1.0437933 7.167707 0.026433773 0.97827274
-0.031389 1.0524024 7.167707 0.11491622 0.97053033
--0.067512 0.80753726 7.2478566 0.2958619 0.9678474
--0.115317 0.62088615 7.3422356 0.37010702 0.9511139
--0.092855 0.5400542 7.452502 0.40186787 0.94487584
--0.152438 0.5254852 7.5755725 0.39617965 0.9386358
--0.299346 0.52100617 7.7071795 0.37534764 0.9275224
--0.428811 0.55395705 7.8430576 0.35819343 0.92039794
--0.582401 0.5689991 7.978935 0.34536076 0.91048735
--0.737197 0.54581296 8.110542 0.34028298 0.8990871
--0.862913 0.47510102 8.233616 0.34304512 0.88821
--0.92542 0.36084402 8.34388 0.3527389 0.879789
--0.890804 0.22201398 8.437075 0.3688858 0.8755649
--0.960138 0.093757 8.34388 0.37151074 0.86269295
--0.929031 -0.03979997 8.233616 0.3805675 0.85418844
--0.825337 -0.14535092 8.110543 0.3925998 0.8502346
--0.6814 -0.2101169 7.978935 0.4058316 0.8501205
--0.529113 -0.23582287 7.8430576 0.41890544 0.8526197
--0.39586 -0.23697685 7.7071795 0.430511 0.85587525
--0.300991 -0.23862281 7.5755725 0.4394482 0.85724205
--0.252833 -0.2735428 7.452502 0.4452711 0.85320973
--0.246239 -0.37893775 7.3422337 0.44926432 0.8396696
--0.251309 -0.57067174 7.2478566 0.45465004 0.8156015
--0.226025 -0.83115774 7.1677046 0.4636613 0.784511
--0.139756 -1.1414137 7.098937 0.47646487 0.74984556
-0.031389 -1.4744747 7.038705 0.49254972 0.7152457
-0.293533 -1.7981666 6.984165 0.5107373 0.68364495
-0.63655 -2.0806468 6.9324713 0.52984345 0.6568706
-1.046767 -2.2927046 6.880776 0.54942596 0.6357035
-1.501788 -2.4097776 6.8262353 0.5692148 0.6201373
-1.971879 -2.4141097 6.766004 0.58905864 0.609745
-2.421704 -2.2965577 6.697235 0.6088872 0.60395694
-2.812385 -2.0580697 6.617085 0.6286869 0.60222363
-3.0889497 -1.7020357 6.556222 0.64802295 0.6070425
-3.44104 1.0427012 6.556223 0.7701822 0.6821668
-3.262534 1.4685274 6.617085 0.790634 0.69949627
-2.944156 1.8045094 6.697236 0.8103573 0.721594
-2.539256 2.0342474 6.766005 0.83018035 0.74583316
-2.273993 2.3363614 6.766005 0.85364264 0.75536454
-1.809103 2.3912544 6.8262362 0.8751962 0.7810101
-1.345943 2.3319483 6.880777 0.8980683 0.8093376
-0.915967 2.1727974 6.932472 0.92323625 0.8404869
-0.54401 1.9356563 6.984166 0.952746 0.8740634
-0.24673 1.6479043 7.038706 0.9915726 0.90852255
-0.031389 1.3401223 7.098938 1.05346 0.93989
-0.031389 1.0524024 7.167707 1.1149162 0.97053033
--0.100248 1.0437924 7.167706 0.16513234 0.9590151
--0.162011 0.7886643 7.2478566 0.29240876 0.9563091
--0.183054 0.5977672 7.3422356 0.36043158 0.9433111
--0.150212 0.5204882 7.452502 0.39136127 0.9391151
--0.206563 0.49869618 7.5755725 0.3893161 0.93265224
--0.256253 0.46540818 7.5755725 0.38535893 0.92636824
--0.350748 0.47589415 7.7071815 0.374367 0.9204331
--0.483105 0.49208412 7.8430576 0.36063474 0.9123644
--0.637264 0.48699808 7.978935 0.35086533 0.90177846
--0.787915 0.44309205 8.110544 0.34790677 0.89006907
--0.903754 0.35478002 8.233616 0.35183167 0.8792081
--0.95128 0.23041902 8.34388 0.36189374 0.87110364
--0.93769 0.09375702 8.233614 0.37075537 0.86206335
--0.848498 -0.02858394 8.110543 0.38333675 0.8570676
--0.713966 -0.114227906 7.978935 0.39728522 0.85582817
--0.566127 -0.16090988 7.8430576 0.4111228 0.8572171
--0.434092 -0.17987385 7.7071815 0.42339352 0.85948277
--0.340262 -0.19388382 7.5755725 0.43266425 0.860083
--0.297072 -0.23470278 7.4525037 0.43817407 0.85555625
--0.304264 -0.34003577 7.3422356 0.44097412 0.84171045
--0.334604 -0.52939075 7.2478566 0.44455874 0.81728226
--0.344879 -0.79059273 7.1677055 0.4516632 0.7855976
--0.303283 -1.1087537 7.098936 0.4626237 0.75009304
--0.183953 -1.4603896 7.038705 0.47694254 0.71445584
-0.031389 -1.8153126 6.984167 0.49400836 0.68171954
-0.340856 -2.1397026 6.9324713 0.51271296 0.65374905
-0.726033 -2.4021707 6.880776 0.53199667 0.6313277
-1.167143 -2.5756266 6.8262353 0.55154836 0.6144996
-1.636424 -2.6390126 6.766004 0.57118464 0.6028767
-2.099691 -2.5792928 6.697235 0.59080684 0.59591264
-2.518232 -2.3930857 6.617084 0.610373 0.59307116
-2.837316 -2.07736 6.556222 0.6294585 0.5968684
-3.2915 1.4808518 6.556223 0.7917212 0.6942122
-3.061783 1.8735955 6.617085 0.81251436 0.7108003
-2.704439 2.1620593 6.697236 0.83286643 0.73207265
-2.421704 2.4840724 6.697236 0.8560507 0.7415155
-1.971879 2.6016243 6.766006 0.87797695 0.76367676
-1.501787 2.5972934 6.8262362 0.9011099 0.7879904
-1.046767 2.4802203 6.880777 0.92616934 0.8147148
-0.636549 2.2681623 6.932472 0.9544468 0.84386605
-0.293532 1.9856813 6.984168 0.9885062 0.87481695
-0.031389 1.6619893 7.038706 1.0338374 0.9055768
-0.031389 1.3401223 7.098938 0.05346004 0.93989
--0.139756 1.3289284 7.098938 0.100034334 0.93190485
--0.226025 1.0186723 7.167706 0.19627929 0.94661635
--0.251309 0.7581873 7.2478566 0.29458693 0.9450191
--0.246239 0.56645316 7.3422356 0.35574204 0.93520683
--0.203709 0.4939852 7.4525037 0.3847032 0.93286055
--0.300991 0.42613718 7.5755725 0.38367328 0.9199327
--0.39586 0.42449215 7.7071805 0.37522697 0.91334563
--0.529113 0.42333713 7.8430576 0.36440298 0.9044793
--0.6814 0.39763108 7.978935 0.357216 0.8933134
--0.825337 0.33286506 8.110542 0.35608485 0.8813364
--0.929031 0.22731405 8.233616 0.3610665 0.8704971
--0.856433 0.093757056 8.110543 0.37396955 0.8647038
--0.734123 -0.012655909 7.978935 0.38876194 0.8622587
--0.59344 -0.08053788 7.8430576 0.4034485 0.86245394
--0.464854 -0.117658846 7.7071805 0.41642702 0.8636571
--0.37355 -0.14419481 7.5755725 0.4260396 0.8634492
--0.335911 -0.1904648 7.452502 0.4312241 0.85844177
--0.356521 -0.29415277 7.3422356 0.43281558 0.8443762
--0.411097 -0.47810674 7.2478566 0.4346095 0.819725
--0.455745 -0.73564774 7.1677046 0.43986857 0.78759646
--0.45781 -1.0560147 7.098937 0.4491019 0.7513969
--0.389711 -1.4192957 7.038705 0.46181664 0.7148463
--0.230755 -1.7981666 6.984167 0.47734475 0.6810195
-0.031389 -2.1599436 6.9324713 0.49515685 0.6518635
-0.386616 -2.4699588 6.880776 0.51424724 0.6282011
-0.808385 -2.6980708 6.8262353 0.5336594 0.6100901
-1.271138 -2.8200476 6.766004 0.55317956 0.5971923
-1.742141 -2.8190098 6.697235 0.57268536 0.58899516
-2.183216 -2.6872387 6.617084 0.59211355 0.58498126
-2.5405264 -2.41538 6.556222 0.6110613 0.5876897
-3.08895 1.8895512 6.556223 0.81356263 0.7054922
-2.812385 2.2455842 6.617085 0.8348782 0.7212171
-2.518232 2.5806003 6.617085 0.8578576 0.7305921
-2.099691 2.7668073 6.697237 0.8800171 0.74974215
-1.636424 2.8265283 6.766005 0.9032569 0.7705618
-1.167143 2.7631414 6.8262362 0.9281244 0.79328305
-0.726033 2.5896864 6.880777 0.9554879 0.81806964
-0.340855 2.3272173 6.932472 0.98683864 0.84478027
-0.031388 2.0028274 6.984168 1.0248688 0.87253857
-0.031389 1.6619893 7.038706 0.033837393 0.9055768
--0.183953 1.6479043 7.038706 0.07300999 0.8993634
--0.303283 1.2962693 7.098938 0.13690197 0.9217466
--0.344879 0.9781073 7.1677055 0.21894269 0.93413955
--0.334604 0.71690625 7.2478566 0.29938918 0.9340378
--0.304263 0.52755016 7.3422346 0.35440096 0.9270148
--0.252833 0.46105722 7.452502 0.38102838 0.9263291
--0.297072 0.4222182 7.4525037 0.37964952 0.9196688
--0.340262 0.38139918 7.5755725 0.38377303 0.9134499
--0.434092 0.36738816 7.7071795 0.3775202 0.90632856
--0.566127 0.34842414 7.8430576 0.36921534 0.896777
--0.713966 0.3017421 7.978935 0.36427325 0.8851025
--0.848498 0.21609908 8.110544 0.36477625 0.8728849
--0.741029 0.09375709 7.978935 0.38022694 0.86944634
--0.610347 0.004587122 7.8430576 0.3958788 0.8683523
--0.487557 -0.050922845 7.7071805 0.40962246 0.8684095
--0.400339 -0.09006981 7.5755725 0.4195873 0.86734414
--0.368839 -0.14134079 7.4525037 0.42442712 0.86186403
--0.402404 -0.24189475 7.3422346 0.4247773 0.847659
--0.479988 -0.41761974 7.2478566 0.42476547 0.8229133
--0.557557 -0.66738874 7.1677055 0.42821237 0.79048055
--0.601949 -0.9845788 7.0989366 0.4358042 0.75372213
--0.584142 -1.3529366 7.038705 0.44704452 0.7163828
--0.481232 -1.7481416 6.984165 0.46119925 0.68157226
--0.278078 -2.1397026 6.9324713 0.4776672 0.6512666
-0.031389 -2.4931936 6.880777 0.49604854 0.6263607
-0.428729 -2.7738948 6.8262353 0.51543033 0.60696286
-0.879531 -2.9537027 6.766004 0.53493464 0.5927556
-1.352795 -3.0119677 6.6972346 0.5544181 0.58327216
-1.811226 -2.9366367 6.617084 0.5738008 0.5780228
-2.2025063 -2.71217 6.556222 0.5927124 0.5795744
-2.837316 2.2648747 6.556223 0.83586216 0.71587825
-2.5405262 2.6028945 6.556223 0.8587496 0.72521824
-2.640171 2.4894073 6.556223 0.8509574 0.7224513
-2.183216 2.8747532 6.617086 0.8815555 0.73875195
-1.742141 3.0065243 6.6972365 0.90483725 0.7565568
-1.271138 3.0075634 6.7660055 0.9295098 0.7757992
-0.808385 2.8855853 6.8262362 0.95619196 0.7966372
-0.386616 2.6574733 6.880778 0.9858302 0.8191196
-0.031388 2.3474593 6.932472 1.0199265 0.84293956
-0.031388 2.0028274 6.984168 0.02486888 0.87253857
--0.230755 1.9856813 6.984166 0.059622433 0.8673206
--0.389711 1.6068113 7.038706 0.10715737 0.89087033
--0.45781 1.2435293 7.098938 0.16661823 0.9104626
--0.455745 0.9231633 7.1677055 0.2373172 0.9218404
--0.411097 0.6656213 7.2478566 0.3056345 0.9233786
--0.356521 0.48166725 7.3422356 0.35538062 0.91885895
--0.335911 0.37797922 7.452502 0.38005525 0.9129822
--0.37355 0.33170918 7.5755725 0.3852998 0.9069942
--0.464854 0.30517414 7.7071805 0.3809645 0.89943004
--0.59344 0.26805213 7.8430576 0.37488973 0.88927937
--0.734123 0.20017011 7.978935 0.3719572 0.8771483
--0.616139 0.09375712 7.8430576 0.38840914 0.87494206
--0.501611 0.019746155 7.7071805 0.40299523 0.8737579
--0.420113 -0.032024816 7.5755725 0.41332626 0.87177664
--0.395342 -0.0878438 7.452502 0.41779447 0.86582685
--0.441307 -0.18387076 7.3422356 0.4168526 0.8515581
--0.540475 -0.34872872 7.2478566 0.41499436 0.82683915
--0.649249 -0.58688074 7.1677055 0.41663688 0.7942294
--0.734318 -0.8958338 7.0989375 0.42264852 0.75703585
--0.765505 -1.2630537 7.038705 0.43251872 0.7190251
--0.717921 -1.6673597 6.984165 0.44543692 0.6833395
--0.573772 -2.0806468 6.9324713 0.46072403 0.65198004
--0.323838 -2.4699588 6.880777 0.47791523 0.62586206
-0.031389 -2.7998846 6.8262362 0.4967314 0.6051624
-0.465111 -3.0364707 6.7660036 0.51633227 0.5896268
-0.935395 -3.1544266 6.6972346 0.53589654 0.5788117
-1.406158 -3.1373878 6.6170835 0.55533046 0.57226664
-1.8271822 -2.9638035 6.5562224 0.57430446 0.572593
-1.957992 -2.876103 6.556222 0.5806862 0.5751324
-2.2025063 2.8996842 6.5562234 0.8823259 0.7333421
-1.811226 3.1241512 6.6170855 0.90604275 0.7455097
-1.352795 3.1994834 6.6972365 0.93054414 0.76175183
-0.879531 3.1412184 6.7660055 0.9567114 0.7791567
-0.428729 2.9614093 6.8262362 0.9851895 0.79779315
-0.031388 2.6807084 6.880778 1.0168972 0.8175882
-0.031388 2.3474593 6.932472 0.019926544 0.84293956
--0.278078 2.3272173 6.932472 0.051995054 0.8383633
--0.481232 1.9356563 6.984166 0.091144696 0.85988915
--0.584143 1.5404513 7.038706 0.13684571 0.88088614
--0.601949 1.1720943 7.098938 0.1914251 0.8986503
--0.557557 0.8549043 7.1677046 0.25328317 0.90981245
--0.479988 0.60513425 7.2478566 0.31277946 0.9130437
--0.402404 0.42941025 7.3422356 0.35803553 0.9108157
--0.368839 0.32885522 7.452502 0.38187522 0.9063418
--0.487557 0.23843715 7.7071795 0.3853666 0.8926833
--0.610347 0.18292712 7.8430576 0.3813109 0.8819996
--0.506426 0.09375715 7.7071815 0.3965664 0.87972665
--0.432356 0.029422186 7.5755725 0.4072824 0.87676144
--0.414908 -0.030485785 7.452502 0.41134304 0.8703399
--0.472621 -0.120685756 7.3422356 0.4090374 0.8560802
--0.59176 -0.27223572 7.2478566 0.40526468 0.83150244
--0.729758 -0.49518776 7.1677046 0.40508693 0.7988312
--0.853531 -0.7911618 7.0989375 0.40956053 0.76131135
--0.932058 -1.1513897 7.038705 0.4181458 0.7227336
--0.938701 -1.5579417 6.984165 0.42994305 0.68627465
--0.853189 -1.9852827 6.9324713 0.44418857 0.65395904
--0.663255 -2.4021707 6.880776 0.4603501 0.6267194
--0.365951 -2.7738948 6.8262353 0.47809577 0.60474795
-0.031389 -3.0648396 6.7660046 0.49724278 0.5878577
-0.493679 -3.2426457 6.6972346 0.5170032 0.57567924
-0.971901 -3.2855988 6.6170835 0.5365943 0.5677846
-1.4184822 -3.1663535 6.556222 0.5557335 0.56681806
-1.8271822 3.151318 6.5562234 0.9066614 0.740067
-1.406158 3.3249023 6.6170855 0.93135613 0.75066704
-0.935394 3.3419423 6.6972365 0.95712936 0.7651085
-0.465111 3.2239854 6.7660065 0.984782 0.7803902
-0.031388 2.9873993 6.826237 1.0149192 0.7964852
-0.031388 2.6807084 6.880778 0.016897207 0.8175882
--0.323838 2.6574733 6.880777 0.047232747 0.8134569
--0.573772 2.2681623 6.932472 0.08165236 0.8316454
--0.717921 1.8548744 6.984166 0.119614705 0.8508656
--0.765506 1.4505683 7.038706 0.162927 0.86996955
--0.734318 1.0833483 7.098937 0.2128937 0.886643
--0.649249 0.7743953 7.1677055 0.2677995 0.89809495
--0.540475 0.53624326 7.2478566 0.32055247 0.9030342
--0.441307 0.37138525 7.3422337 0.3619541 0.902935
--0.400339 0.2775842 7.5755725 0.38799378 0.9006196
--0.501611 0.16776915 7.7071815 0.39059573 0.8861113
--0.436551 0.09375719 7.5755734 0.40149003 0.88231957
--0.427024 0.030218216 7.452502 0.405096 0.87541884
--0.49574 -0.052948758 7.3422356 0.40132946 0.86123973
--0.633041 -0.18894075 7.2478566 0.39554268 0.83691293
--0.798017 -0.39337677 7.1677055 0.39350528 0.8042842
--0.958202 -0.6719498 7.0989366 0.3964675 0.7665311
--1.082056 -1.0196877 7.038705 0.4038403 0.7274749
--1.141452 -1.4220086 6.984166 0.41461718 0.6903317
--1.113825 -1.8561116 6.9324713 0.427942 0.6571514
--0.983989 -2.2927046 6.880776 0.4432129 0.6288817
--0.745607 -2.6980708 6.8262353 0.46004528 0.6057267
--0.402333 -3.0364707 6.7660046 0.47821447 0.58751154
-0.03139 -3.2728827 6.6972356 0.49760878 0.57393295
-0.512348 -3.3773806 6.6170835 0.5174751 0.5646463
-0.98033273 -3.3158937 6.556222 0.53689134 0.562323
-1.4184823 3.3538692 6.5562234 0.9317945 0.74519926
-0.971901 3.4731133 6.6170855 0.957498 0.75401497
-0.493679 3.4301603 6.6972375 0.9845407 0.766394
-0.031388 3.2523544 6.7660065 1.013584 0.7792426
-0.031388 2.9873993 6.826237 0.014919193 0.7964852
--0.365951 2.9614093 6.8262362 0.044077605 0.7926729
--0.663256 2.5896864 6.880777 0.0755923 0.8072423
--0.853189 2.1727974 6.932472 0.10899066 0.82331103
--0.938702 1.7454563 6.984166 0.14542976 0.84072816
--0.932058 1.3389053 7.038705 0.18621483 0.8584995
--0.853531 0.9786772 7.0989375 0.23207133 0.874634
--0.729758 0.68270326 7.1677055 0.28141317 0.8867072
--0.59176 0.45975026 7.2478566 0.32881305 0.89335155
--0.472621 0.30820024 7.3422356 0.36687225 0.8952512
--0.395342 0.2753582 7.452502 0.38484624 0.8997997
--0.420113 0.21954018 7.5755725 0.39166975 0.89436543
--0.432356 0.15809219 7.5755734 0.39619797 0.88825935
--0.431176 0.093757205 7.4525037 0.3990839 0.88108635
--0.510056 0.018735241 7.3422356 0.39372665 0.86705947
--0.663518 -0.09964274 7.2478566 0.38578755 0.84309053
--0.852961 -0.28251076 7.1677055 0.3818256 0.81059724
--1.046948 -0.53958076 7.0989375 0.3832911 0.7726876
--1.213758 -0.8696887 7.0387044 0.38951737 0.7332237
--1.324051 -1.2616826 6.984165 0.39936692 0.69546926
--1.353177 -1.6956396 6.9324713 0.4118799 0.6615041
--1.283165 -2.1444337 6.880776 0.42638278 0.6322902
--1.104365 -2.5756266 6.8262353 0.44243932 0.6080407
--0.816753 -2.9537027 6.766004 0.4597846 0.5885885
--0.430901 -3.2426457 6.6972356 0.47827378 0.57363963
-0.03139 -3.4088387 6.6170855 0.49784428 0.5629152
-0.5166596 -3.4084976 6.556222 0.517661 0.5591796
-0.9803321 3.5034082 6.5562234 0.95773196 0.7485343
-0.512347 3.5648944 6.6170864 0.98443437 0.7553292
-0.031388 3.4603984 6.6972375 1.0126793 0.76535827
-0.031388 3.2523544 6.7660065 0.013583962 0.7792426
--0.402334 3.2239854 6.7660055 0.041911528 0.77566093
--0.745608 2.8855853 6.8262362 0.07151661 0.7868226
--0.98399 2.4802203 6.880777 0.10204855 0.7994094
--1.113825 2.0436263 6.932471 0.1342486 0.81377685
--1.141452 1.6095233 6.984166 0.16904315 0.82983214
--1.082056 1.2072023 7.038706 0.20738511 0.8467329
--0.958202 0.8594642 7.0989375 0.24966499 0.8627413
--0.798017 0.58089125 7.1677046 0.29447073 0.8756609
--0.633041 0.37645528 7.2478566 0.33749363 0.8839969
--0.49574 0.24046324 7.3422346 0.37262014 0.88778764
--0.414908 0.21800122 7.452502 0.3887829 0.89339364
--0.427024 0.15729621 7.4525037 0.3935574 0.88715017
--0.514963 0.09375724 7.3422356 0.3862258 0.87357
--0.682391 -0.005143736 7.2478566 0.37594557 0.85006446
--0.893526 -0.1636567 7.1677055 0.36996502 0.81778944
--1.118383 -0.3954407 7.0989375 0.3699401 0.7797839
--1.325422 -0.7031367 7.0387053 0.37508556 0.7399648
--1.484377 -1.0790837 6.984165 0.38410035 0.701655
--1.568739 -1.5063707 6.93247 0.39590597 0.6669692
--1.557909 -1.9602337 6.880776 0.4097533 0.6368858
--1.43901 -2.4097776 6.8262353 0.42515612 0.6116251
--1.20836 -2.8200476 6.766004 0.44181302 0.59102404
--0.872616 -3.1544266 6.6972346 0.4595481 0.5747935
--0.44957 -3.3773797 6.6170845 0.47827193 0.56266135
-0.03139 -3.440239 6.556222 0.49791428 0.5574539
-0.51665866 3.5960126 6.5562234 0.9844475 0.7498523
-0.031388 3.5963533 6.6170874 1.0120913 0.754366
-0.031388 3.4603984 6.6972375 0.012679288 0.76535827
--0.430901 3.4301603 6.6972365 0.04040461 0.7619415
--0.816753 3.1412184 6.7660055 0.068682 0.7700768
--1.104366 2.7631414 6.8262362 0.09730675 0.7793591
--1.283165 2.3319483 6.880776 0.12677671 0.79033196
--1.353177 1.8831543 6.932471 0.157722 0.80336666
--1.324051 1.4491973 6.984166 0.19088633 0.81844
--1.213758 1.0572044 7.038706 0.22697358 0.83484685
--1.046948 0.7270952 7.0989366 0.2661691 0.8510408
--0.852961 0.47002524 7.1677055 0.3072128 0.864963
--0.663518 0.28715727 7.2478566 0.34657004 0.8749697
--0.510056 0.16877924 7.3422356 0.37909222 0.8805585
--0.68886 0.093757264 7.2478576 0.36594155 0.85787374
--0.918646 -0.03787872 7.1677055 0.35781342 0.82588905
--1.171123 -0.24091469 7.0989375 0.35629985 0.7878324
--1.415305 -0.5217737 7.0387053 0.36043766 0.7476926
--1.62031 -0.87633264 6.9841657 0.36871812 0.70886517
--1.758008 -1.2908087 6.93247 0.37992433 0.67350674
--1.805346 -1.7429776 6.880775 0.39322582 0.64261484
--1.746325 -2.2037396 6.8262353 0.40808836 0.61641574
--1.573646 -2.6390126 6.766004 0.42417774 0.59474844
--1.290017 -3.0119677 6.6972346 0.44129202 0.5773245
--0.909123 -3.2855988 6.6170835 0.45931786 0.5638739
--0.45388168 -3.4084978 6.556222 0.47822618 0.5572177
-0.031388 3.627754 6.556224 1.0118781 0.74891305
-0.031388 3.5963533 6.6170874 0.012091312 0.754366
--0.44957 3.5648954 6.6170855 0.039374005 0.7510617
--0.872617 3.3419423 6.6972365 0.066680394 0.75655043
--1.208361 3.0075634 6.7660055 0.09396876 0.7628867
--1.43901 2.5972934 6.8262362 0.12159474 0.7706259
--1.557909 2.1477482 6.880776 0.1499984 0.78030735
--1.568739 1.6938853 6.932471 0.17971405 0.7923323
--1.484377 1.2665983 6.984167 0.21134238 0.80674815
--1.325422 0.89065135 7.0387053 0.24540478 0.82296616
--1.118383 0.5829562 7.0989375 0.28194672 0.83958226
--0.893526 0.35117126 7.1677046 0.31982148 0.8546145
--0.682391 0.19265826 7.2478576 0.35604528 0.8662657
--0.927256 0.09375729 7.1677065 0.3452177 0.83493066
--1.203782 -0.0773867 7.0989375 0.34221873 0.79685146
--1.481665 -0.32734174 7.0387053 0.34543976 0.7564095
--1.729728 -0.6555527 6.9841657 0.35310435 0.71708536
--1.91848 -1.0514567 6.93247 0.36383125 0.6810857
--2.022602 -1.4955406 6.880775 0.37670234 0.6494307
--2.023097 -1.9607277 6.8262353 0.39113623 0.62235343
--1.909101 -2.4141097 6.766005 0.40677088 0.5996927
--1.679363 -2.8190098 6.697235 0.42338383 0.58115804
--1.34338 -3.1373878 6.6170835 0.44084308 0.56647766
--0.91755474 -3.3158937 6.556222 0.45916143 0.5584576
--0.4538816 3.596013 6.556224 0.038949825 0.74565303
-0.031388 3.627754 6.556224 0.011878163 0.74891305
--0.909123 3.4731133 6.6170855 0.065279506 0.7458066
--1.290018 3.1994834 6.6972365 0.091583654 0.7495613
--1.573646 2.8265283 6.766005 0.117904484 0.75441223
--1.746325 2.3912554 6.8262362 0.14456408 0.7609001
--1.805346 1.9304923 6.880776 0.17194904 0.7695738
--1.758008 1.4783233 6.932472 0.20051385 0.7808706
--1.62031 1.0638473 6.984166 0.23074467 0.79490334
--1.415305 0.70928836 7.0387053 0.26302075 0.81117857
--1.171123 0.4284293 7.0989366 0.297279 0.8283949
--0.918646 0.2253933 7.1677065 0.33244658 0.8446093
--1.214976 0.0937573 7.0989375 0.3274891 0.80685806
--1.522758 -0.12158468 7.0387053 0.3299171 0.76611924
--1.81051 -0.41886365 6.9841657 0.3371149 0.7263069
--2.047651 -0.79082066 6.9324718 0.34750617 0.6896833
--2.206802 -1.2207967 6.880775 0.36007702 0.6572958
--2.266109 -1.6839566 6.8262353 0.37420067 0.62938637
--2.211215 -2.1488457 6.766004 0.38949227 0.6057932
--2.036913 -2.5792928 6.697236 0.40571544 0.58622134
--1.748449 -2.9366367 6.617084 0.42272595 0.5703943
--1.3557043 -3.1663537 6.5562215 0.44058126 0.56109554
--0.91755474 3.5034082 6.556224 0.06467549 0.7404542
--1.34338 3.3249023 6.6170855 0.08988872 0.7389613
--1.679363 3.0065243 6.6972365 0.11524006 0.74127966
--1.909101 2.6016243 6.766005 0.14065154 0.7449149
--2.023097 2.1482434 6.8262362 0.16641219 0.75040734
--2.022602 1.6830553 6.880777 0.19286257 0.7583235
--1.91848 1.2389714 6.932472 0.22038995 0.7691361
--1.729728 0.84306735 6.9841657 0.24938446 0.783015
--1.481665 0.51485735 7.0387053 0.280106 0.79954195
--1.203782 0.2649023 7.0989375 0.31239474 0.81749
--1.536843 0.09375732 7.0387053 0.3136345 0.7768167
--1.860535 -0.16838665 6.9841657 0.32056415 0.73651916
--2.143016 -0.5114037 6.9324718 0.33080024 0.6992809
--2.355073 -0.92162067 6.8807764 0.3432268 0.6661801
--2.472147 -1.3766407 6.8262353 0.35717458 0.6374714
--2.476478 -1.8467326 6.766004 0.37224227 0.6129938
--2.358926 -2.2965577 6.697235 0.3881865 0.59244704
--2.120438 -2.6872387 6.617085 0.40485847 0.57554764
--1.7644045 -2.9638035 6.5562215 0.4223642 0.5650509
--1.3557049 3.353869 6.556224 0.08913848 0.73367083
--1.1925894 3.4095397 6.556224 0.08017004 0.7366258
--1.748449 3.1241512 6.6170855 0.11332389 0.7308196
--2.036913 2.7668073 6.697236 0.1377995 0.73195505
--2.211215 2.3363614 6.766005 0.16238475 0.7346108
--2.266108 1.8714713 6.8262362 0.1873399 0.7393344
--2.206802 1.4083114 6.880777 0.21296592 0.7467115
--2.047651 0.9783353 6.9324718 0.23959143 0.75724775
--1.81051 0.6063783 6.9841657 0.267521 0.77115947
--1.522758 0.30909926 7.0387053 0.29690525 0.788087
--1.877681 0.09375732 6.9841676 0.30320722 0.74769664
--2.202071 -0.21570964 6.9324718 0.3135238 0.7098559
--2.46454 -0.60088664 6.8807764 0.3260008 0.67605686
--2.637995 -1.0419967 6.8262353 0.3399338 0.6465724
--2.701382 -1.5112777 6.766004 0.35491312 0.6212466
--2.641661 -1.9745445 6.697235 0.37069708 0.5997754
--2.455455 -2.3930857 6.617084 0.38714027 0.58186734
--2.1397285 -2.71217 6.5562215 0.4044022 0.57024604
--2.0308425 -2.785172 6.5562215 0.40961248 0.5688294
--1.7644039 3.151317 6.5562263 0.11246015 0.72559136
--1.5204691 3.272212 6.556224 0.098680764 0.7308176
--2.120438 2.8747544 6.617085 0.13572738 0.72162265
--2.358926 2.4840724 6.697236 0.15942307 0.72179586
--2.476478 2.0342474 6.766006 0.18328445 0.72368056
--2.472147 1.5641563 6.8262362 0.20754774 0.72783405
--2.355073 1.1091354 6.880777 0.23247899 0.73486066
--2.143016 0.69891834 6.9324718 0.25835213 0.7452922
--1.860535 0.35590133 6.9841676 0.2853895 0.75938225
--2.222313 0.09375734 6.9324718 0.29543024 0.7213663
--2.532327 -0.26146963 6.8807764 0.30820847 0.6868943
--2.760439 -0.6832386 6.826236 0.32232687 0.65665656
--2.882417 -1.1459917 6.766004 0.33738023 0.6305108
--2.881378 -1.6169945 6.697235 0.35313922 0.60815483
--2.749608 -2.0580697 6.617084 0.36947125 0.5892908
--2.4777489 -2.41538 6.5562215 0.38659492 0.5766092
--2.3610582 -2.517837 6.5562215 0.3927493 0.57451755
--2.1397278 2.899684 6.5562253 0.13478012 0.7164521
--2.455455 2.5806003 6.617085 0.15725167 0.71157235
--2.641661 2.1620593 6.697237 0.18027772 0.7109777
--2.701382 1.6987923 6.766005 0.20353399 0.7122745
--2.637995 1.2295114 6.8262362 0.22723591 0.71603036
--2.46454 0.7884013 6.8807764 0.2516163 0.7228629
--2.202071 0.4032243 6.9324718 0.27689412 0.73332447
--2.555562 0.09375735 6.8807774 0.28960526 0.6986381
--2.836263 -0.30358264 6.826236 0.3041635 0.6676845
--3.016072 -0.75438464 6.7660046 0.3194921 0.6407485
--3.074337 -1.2276485 6.697235 0.33538812 0.6175407
--2.999005 -1.6860795 6.617084 0.3517433 0.59776354
--2.7745385 -2.0773602 6.556222 0.36884215 0.58407605
--2.7271106 -2.1313767 6.556222 0.37168598 0.582951
--2.4777482 2.6028943 6.556224 0.1562472 0.7064521
--2.749607 2.2455842 6.617086 0.1780549 0.70084
--2.881378 1.8045094 6.697236 0.20053542 0.69964814
--2.882417 1.3335063 6.766005 0.22332026 0.70051616
--2.760439 0.8707534 6.826236 0.24660541 0.70401764
--2.532327 0.44898435 6.8807774 0.27058896 0.7107793
--2.862253 0.09375735 6.8262367 0.2852023 0.6795939
--3.098839 -0.3399646 6.7660046 0.3010594 0.65191513
--3.216795 -0.8102486 6.6972356 0.31729254 0.62789124
--3.199756 -1.2810116 6.617084 0.3338318 0.60723776
--3.026172 -1.7020358 6.556222 0.3510358 0.5925907
--2.774538 2.2648747 6.556223 0.17701605 0.69576037
--2.999005 1.8735955 6.617085 0.19830155 0.689571
--3.074337 1.4151634 6.697236 0.22037406 0.6879299
--3.016072 0.9418994 6.7660046 0.24283487 0.6885014
--2.836263 0.49109736 6.826236 0.26585928 0.691861
--3.127208 0.093757376 6.7660055 0.28184387 0.66394293
--3.305014 -0.3685326 6.6972356 0.29866412 0.63915807
--3.347967 -0.84675467 6.6170845 0.31558552 0.617669
--3.228722 -1.2933358 6.5562224 0.33305123 0.60210407
--3.0261722 1.8895512 6.556222 0.19724774 0.6845213
--3.199756 1.4685265 6.617085 0.21816325 0.67788684
--3.216795 0.9977634 6.6972356 0.23997873 0.6759193
--3.098839 0.5274794 6.7660055 0.26227534 0.67629755
--3.335252 0.0937564 6.6972365 0.27926758 0.65126973
--3.439749 -0.38720158 6.6170845 0.2968174 0.6290062
--3.3782623 -0.8551864 6.5562224 0.31473756 0.6125701
--3.2287228 1.480851 6.5562215 0.21711113 0.6728552
--3.347967 1.0342695 6.617085 0.23782064 0.6658836
--3.305014 0.5560474 6.6972365 0.259543 0.6636854
--3.471207 0.093756415 6.6170864 0.2772944 0.64117557
--3.4708667 -0.39151323 6.5562224 0.29590812 0.6239368
--3.378263 1.0427015 6.5562205 0.23678486 0.6608582
--3.439749 0.5747163 6.6170855 0.25746438 0.6536318
--3.5026093 0.09375643 6.55622 0.27633125 0.6361291
--3.4901178 -0.09719476 6.5562224 0.28411052 0.63154346
--3.4708683 0.57902825 6.55622 0.25645843 0.648601
--4.526477 -0.5377773 5.483793 0.28084067 0.5308361
--4.3738403 -0.51662844 5.819989 0.28442207 0.5540372
--4.400848 -0.5038144 5.7628655 0.2832643 0.5503845
--4.545858 0.09375668 5.5316544 0.26102975 0.5466217
--4.567784 0.09375669 5.483794 0.2605154 0.5433772
--4.5280294 -0.09405032 5.543756 0.26725322 0.5437695
--4.437114 -0.45259437 5.691017 0.28068075 0.54653955
--4.5026593 -0.24771233 5.5771956 0.27262822 0.54297394
--4.4717026 -0.36722633 5.627705 0.27711838 0.5439829
--4.794363 -0.24771233 5.576961 0.27146593 0.54011965
--4.79869 -0.09405032 5.543545 0.26646346 0.5410662
--5.227801 -0.09405032 5.541005 0.26535395 0.5372009
--5.225984 0.09375768 5.528968 0.25996348 0.53986305
--4.800253 0.09375768 5.531458 0.26060438 0.5439303
--4.787829 -0.36722633 5.627441 0.27557966 0.5408443
--5.232822 -0.24771233 5.574286 0.26993284 0.53626305
--5.620458 -0.09405032 5.534114 0.2644454 0.53391933
--5.61567 0.09375768 5.522209 0.25942308 0.53642374
--5.2278 0.28156665 5.541005 0.2547644 0.54378134
--4.798688 0.28156665 5.543544 0.25496125 0.54821455
--4.779637 -0.45259437 5.690717 0.27877527 0.5429876
--5.240409 -0.36722633 5.624561 0.27366364 0.5368265
--4.52803 0.28156665 5.5437555 0.25509 0.5513293
--4.794363 0.43522766 5.57696 0.25056225 0.5531041
--4.50266 0.43522766 5.5771947 0.25042632 0.55676526
--5.620457 0.28156665 5.534114 0.25457257 0.54005384
--5.232823 0.43522766 5.574285 0.2507185 0.5481977
--4.723896 0.09375678 5.129637 0.25684804 0.5200089
--4.681186 -0.55921423 5.129636 0.2772783 0.50741625
--4.770342 -0.5038144 5.762527 0.28102255 0.54629743
--5.249918 -0.45259437 5.687582 0.27652007 0.53865725
--5.633692 -0.24771233 5.567028 0.26869363 0.53298557
--4.787829 0.55474263 5.627441 0.24736984 0.55835706
--4.4717026 0.55474263 5.627705 0.24700399 0.5626772
--5.975729 -0.09405032 5.520694 0.26366824 0.5309537
--5.968364 0.09375769 5.509048 0.25893906 0.53333664
--5.975729 0.28156668 5.520694 0.25436485 0.536734
--5.633693 0.43522766 5.567027 0.25080138 0.54409856
--4.681186 0.7467288 5.129637 0.23638749 0.5327342
--4.526477 0.7252927 5.483794 0.24010435 0.55607563
--4.870523 0.09375686 4.778326 0.2534229 0.4979729
--4.826497 -0.57934815 4.778326 0.2739317 0.48533878
--4.55658 -1.1831242 5.1296353 0.2971678 0.4955116
--4.405962 -1.1412063 5.4837937 0.3005778 0.5190105
--4.3641276 -0.5208884 5.838982 0.28481424 0.55526423
--4.760494 -0.5208884 5.838603 0.28228816 0.5505249
--5.260711 -0.5038144 5.7591 0.27848148 0.5415204
--5.653685 -0.36722633 5.616748 0.27212945 0.5334191
--5.240409 0.55474263 5.624561 0.2477972 0.55288523
--4.779637 0.64010966 5.690718 0.2453433 0.5637329
--4.437114 0.64010966 5.691018 0.24479371 0.5688057
--5.996094 0.43522766 5.552891 0.25080884 0.5404745
--5.653685 0.55474263 5.616748 0.24808721 0.5483457
--4.55658 1.3706398 5.1296363 0.21641162 0.5450399
--4.405962 1.3287207 5.4837933 0.220123 0.56838953
--4.826497 0.76686287 4.778326 0.23293674 0.5107171
--5.005292 0.093756944 4.430573 0.25021002 0.47731718
--4.960056 -0.5978541 4.430572 0.2707748 0.46464998
--4.698048 -1.2224962 4.7783256 0.2939466 0.47336644
--4.355361 -1.7726912 5.1296353 0.31672168 0.48437032
--4.211348 -1.7114183 5.4837937 0.3199365 0.5079783
--4.363663 -0.5206416 5.840084 0.28482038 0.5553451
--4.248478 -1.0973765 5.8400836 0.30419612 0.54371434
--5.272145 -0.5208884 5.834867 0.27952895 0.54518557
--5.678747 -0.45259437 5.679071 0.2747296 0.53500307
--5.996093 -0.24771231 5.552891 0.26765367 0.5300123
--5.249919 0.64010966 5.687582 0.2459609 0.55762225
--4.770342 0.6913306 5.762527 0.24444257 0.56899136
--4.4008484 0.6913306 5.7628655 0.2437728 0.5748808
--6.292689 -0.09405031 5.49857 0.26297298 0.5281055
--6.283118 0.09375769 5.487351 0.25847903 0.5303978
--6.292689 0.28156668 5.498569 0.2541245 0.53360265
--6.31915 0.43522766 5.529586 0.25073662 0.5370832
--6.026855 0.55474263 5.601529 0.24825338 0.5443606
--4.355361 1.9602078 5.1296363 0.19671574 0.5568478
--4.211348 1.8989336 5.4837947 0.2003697 0.5802475
--4.698048 1.4100118 4.7783265 0.21298614 0.52301
--4.373841 0.70414376 5.8199887 0.2438864 0.57918316
--4.363663 0.7081569 5.840084 0.24394189 0.5807047
--4.248478 1.2848916 5.8400846 0.2241585 0.59290445
--4.3641276 0.70840365 5.838982 0.24392302 0.5806315
--4.960056 0.7853689 4.430573 0.22971812 0.4900734
--5.125834 0.093757026 4.087087 0.24717858 0.45800728
--5.079515 -0.61440593 4.087087 0.26778007 0.4453143
--4.828075 -1.2586851 4.4305716 0.29089165 0.45261943
--4.490625 -1.8302432 4.7783256 0.3136689 0.46212807
--4.082813 -2.3226311 5.1296353 0.33611384 0.47406134
--3.947747 -2.2433035 5.4837937 0.33909285 0.49780664
--4.060772 -1.6473525 5.8400836 0.32332954 0.5328048
--5.283578 -0.50381446 5.910635 0.27964172 0.5494289
--4.750646 -0.50381446 5.914679 0.28253302 0.55542386
--5.737319 -0.5208884 5.82473 0.27737302 0.5407532
--5.707189 -0.5038144 5.7498 0.2764804 0.537519
--6.026855 -0.36722633 5.601529 0.27085674 0.53032714
--5.678747 0.64010966 5.679073 0.24639173 0.55259097
--5.260711 0.6913306 5.7591 0.24516483 0.5621931
--4.760494 0.70840365 5.838603 0.24463055 0.5738898
--6.359123 0.5547427 5.576442 0.24830164 0.5406574
--6.065419 0.64010966 5.662498 0.24666178 0.5482047
--4.082812 2.5101469 5.1296353 0.17712007 0.56807894
--3.947747 2.4308186 5.4837933 0.18066505 0.5915712
--4.490625 2.0177588 4.7783265 0.19336268 0.5347674
--4.060772 1.8348676 5.8400846 0.20436756 0.6048109
--4.828075 1.4461999 4.4305725 0.2098086 0.5023494
--5.079516 0.80192107 4.087087 0.22669761 0.47076944
--5.229777 0.09375711 3.748582 0.24429739 0.4399497
--5.182525 -0.6286789 3.7485807 0.26491874 0.42723694
--4.944377 -1.2910529 4.0870867 0.2879784 0.43323353
--4.61495 -1.8831401 4.4305716 0.3107587 0.44129434
--4.209672 -2.3971393 4.7783256 0.33327094 0.45169398
--3.744219 -2.82766 5.1296353 0.3554902 0.46465743
--3.620269 -2.7317533 5.4837937 0.3581934 0.48856354
--3.806527 -2.1603603 5.8400836 0.34222123 0.5227837
--3.905822 -1.5814245 6.1977973 0.32691288 0.55858445
--4.086421 -1.0522745 6.1977973 0.30803847 0.5693563
--4.3302493 -0.50381446 5.9150963 0.28525224 0.560892
--4.3493547 -0.5132358 5.8730965 0.28500697 0.55777645
--4.741351 -0.45259443 5.986487 0.28171116 0.5607481
--5.294371 -0.45259443 5.982152 0.27879477 0.5540322
--5.767449 -0.50381446 5.899661 0.27739894 0.544501
--6.065417 -0.45259437 5.662498 0.27325696 0.5316978
--6.319149 -0.24771231 5.529587 0.2667468 0.52713996
--5.707189 0.6913306 5.7498 0.24566789 0.5566398
--5.272145 0.70840365 5.834867 0.24536334 0.5663869
--6.570404 -0.0940503 5.465565 0.26232243 0.52521646
--6.558981 0.0937577 5.454983 0.25801757 0.52744573
--6.570403 0.28156668 5.465564 0.25383693 0.5304878
--6.601981 0.4352277 5.49482 0.25057864 0.53373635
--6.649684 0.5547427 5.539016 0.24823241 0.53702587
--6.409231 0.64010966 5.635176 0.24678467 0.5441542
--3.744219 3.0151758 5.129637 0.15746802 0.578646
--3.620269 2.9192686 5.4837933 0.16085085 0.6022709
--4.209672 2.5846548 4.7783265 0.17388543 0.5459095
--3.806526 2.3478756 5.8400846 0.18456773 0.61623037
--4.61495 2.070656 4.4305725 0.190269 0.5140558
--4.086421 1.2397896 6.1977983 0.22855544 0.6183106
--3.905822 1.7689396 6.1977983 0.20875308 0.63026315
--4.944376 1.4785681 4.0870867 0.20684215 0.4830249
--5.182525 0.8161941 3.7485821 0.22384167 0.45271245
--5.31475 0.09375719 3.415766 0.24153483 0.42301178
--5.266734 -0.6403468 3.4157658 0.2621612 0.41028455
--5.044662 -1.3189629 3.7485807 0.28518066 0.4151127
--4.72615 -1.930453 4.0870867 0.30796948 0.42183053
--4.326273 -2.465622 4.4305716 0.33054745 0.4307461
--3.860637 -2.9177413 4.7783256 0.35289836 0.44214126
--3.344864 -3.2824943 5.129635 0.37497395 0.45623967
--3.234024 -3.1716554 5.4837933 0.37736148 0.48032382
--3.49067 -2.6314745 5.8400836 0.36101893 0.5137139
--3.661203 -2.0750074 6.1977973 0.3455085 0.54872787
--4.198257 -0.4922995 6.197798 0.28870344 0.5809824
--3.748683 -1.5145665 6.5562224 0.33069336 0.58493364
--3.922074 -1.0065346 6.5562224 0.3121147 0.59555167
--4.2998652 -0.45259443 5.986939 0.2845097 0.5670024
--6.15554 -0.5208884 5.804988 0.27562252 0.53680044
--6.109179 -0.5038144 5.731688 0.27484608 0.5339214
--6.359123 -0.36722633 5.576442 0.2697624 0.52733344
--6.109179 0.69132966 5.731688 0.24598628 0.5518315
--5.737319 0.70840365 5.82473 0.2458655 0.5603067
--5.283578 0.69133055 5.910635 0.24651198 0.5699947
--4.750646 0.69133055 5.914678 0.24587287 0.57817966
--6.709481 0.64010966 5.594416 0.2467656 0.54020303
--6.466094 0.6913306 5.70183 0.2461383 0.5474165
--3.344864 3.4700098 5.129637 0.13762237 0.5884497
--3.234024 3.3591707 5.483795 0.14078718 0.6122429
--3.860638 3.1052568 4.778327 0.15439835 0.5563518
--3.490671 2.8189895 5.8400846 0.16459802 0.62707055
--4.326272 2.653139 4.4305725 0.1709165 0.5251127
--3.661203 2.2625237 6.1977983 0.18887796 0.6417802
--4.72615 2.117968 4.0870876 0.18739532 0.49468008
--4.198258 0.6798145 6.197798 0.24846719 0.60599756
--4.3493543 0.7007508 5.8730984 0.24450842 0.58290595
--3.922074 1.1940495 6.5562224 0.23334797 0.6442155
--3.748683 1.7020814 6.5562234 0.21356831 0.65620965
--5.044662 1.506479 3.7485814 0.20405121 0.46494386
--4.3302503 0.69133055 5.9150953 0.24523284 0.58573097
--5.266734 0.82786214 3.4157672 0.22111706 0.43577006
--5.37838 0.093757264 3.089355 0.23885874 0.4070374
--5.329792 -0.64908373 3.0893538 0.25947642 0.39430043
--5.126645 -1.3417798 3.4157658 0.28247073 0.39812246
--4.822037 -1.9712499 3.7485805 0.3052774 0.40363914
--4.430564 -2.526876 4.0870867 0.32792428 0.4111775
--3.967643 -3.000537 4.430571 0.35040364 0.42105567
--3.448969 -3.3865993 4.778325 0.3726747 0.43355712
--2.890029 -3.6818502 5.129635 0.39467233 0.4488989
--2.794122 -3.5579004 5.483792 0.3967043 0.47317094
--3.118134 -3.0557644 5.840083 0.37984616 0.5056637
--3.357307 -2.5282834 6.1977973 0.36397415 0.53984386
--3.513828 -1.9884505 6.5562224 0.3489589 0.57525575
--4.029447 -0.4689096 6.556222 0.29303798 0.607053
--3.70765 -1.4970995 6.6383886 0.33160812 0.5911554
--3.879148 -0.99458563 6.638389 0.3131053 0.6017346
--4.275723 -0.36722645 6.050245 0.28249726 0.5732831
--4.73316 -0.36722645 6.049765 0.27976942 0.56624717
--5.303881 -0.36722645 6.045174 0.27695668 0.5587811
--5.795891 -0.45259443 5.970388 0.2765465 0.5485669
--6.201901 -0.50381446 5.878288 0.27558616 0.5401475
--6.409229 -0.45259434 5.635175 0.27200213 0.52850217
--6.60198 -0.2477123 5.494821 0.2659241 0.52420634
--6.15554 0.70840365 5.804988 0.24617442 0.5550767
--5.767449 0.69133055 5.89966 0.24693468 0.5634127
--5.294371 0.6401096 5.982152 0.24856842 0.57280666
--4.74135 0.6401096 5.986486 0.24813667 0.5816037
--6.807943 -0.09405029 5.419502 0.26168665 0.52215177
--6.795006 0.09375771 5.409809 0.2575332 0.5243434
--6.807942 0.28156668 5.419501 0.25348815 0.52724445
--6.843709 0.4352277 5.4463 0.2503267 0.53027636
--6.897739 0.5547427 5.486784 0.24804185 0.5332919
--6.965466 0.6401097 5.537531 0.24660368 0.5361572
--6.77734 0.6913306 5.657285 0.24613205 0.5431288
--2.890029 3.8693657 5.129637 0.11745992 0.59737873
--2.794122 3.7454157 5.483795 0.12034744 0.6213684
--3.448969 3.5741148 4.778327 0.13476606 0.56599957
--3.118134 3.2432806 5.840085 0.14431398 0.63722235
--3.967643 3.1880531 4.430573 0.15159522 0.5354377
--3.357307 2.7157986 6.1977983 0.16876456 0.65276706
--4.430564 2.714392 4.0870867 0.16817215 0.5056548
--3.513827 2.1759653 6.5562224 0.19364603 0.66782385
--4.822037 2.158766 3.7485814 0.18470447 0.47654706
--4.029448 0.65642446 6.556223 0.2531708 0.6319149
--3.879138 1.1821004 6.6383896 0.23453523 0.65032053
--3.70763 1.6846144 6.6383896 0.21476747 0.6623233
--5.126645 1.5292952 3.4157665 0.20140132 0.44797403
--5.329792 0.8366003 3.0893552 0.21849065 0.41978645
--5.418297 0.09375734 2.770056 0.2362358 0.39185742
--5.369351 -0.6545647 2.7700567 0.25683174 0.3791152
--5.188036 -1.3588657 3.0893548 0.27981913 0.3821052
--4.900424 -2.0046017 3.4157655 0.30265677 0.3865845
--4.520494 -2.579694 3.7485802 0.32538012 0.39288944
--4.063351 -3.0745919 4.087086 0.34798947 0.40135935
--3.544655 -3.482286 4.430571 0.37045163 0.41231623
--2.980109 -3.7982693 4.778325 0.39270738 0.42603946
--2.385 -4.0204434 5.129634 0.41468355 0.44273582
--2.305672 -3.8853774 5.483792 0.4163205 0.4671979
--2.693844 -3.4283025 5.840083 0.39881054 0.49870917
--2.998876 -2.9365075 6.1977973 0.38243398 0.5319937
--3.222061 -2.4236348 6.5562224 0.3670617 0.56656915
--3.475357 -1.9658365 6.6383886 0.34979033 0.5815218
--4.23659 0.09375653 6.197799 0.26868653 0.59338224
--4.06625 0.09375644 6.556223 0.27323523 0.6193589
--3.985348 -0.46279857 6.638389 0.294096 0.6132039
--3.66455 -1.4787016 6.7056155 0.33240685 0.59656125
--3.833994 -0.9819986 6.705616 0.31397384 0.6071064
--4.2598276 -0.24771245 6.1007447 0.2791308 0.57940376
--4.726625 -0.24771245 6.100245 0.2766484 0.57165974
--6.526335 -0.5208884 5.772443 0.27414623 0.533023
--6.466094 -0.5038144 5.70183 0.27346212 0.5304592
--6.649684 -0.36722633 5.539016 0.26878604 0.5242654
--6.526335 0.70840365 5.772443 0.24630974 0.5502993
--6.201901 0.69133055 5.878288 0.24717401 0.55778533
--5.79589 0.6401096 5.970388 0.2488286 0.5657821
--7.042324 0.6913306 5.595119 0.24596801 0.5387523
--6.84923 0.70840365 5.72389 0.24627966 0.5456769
--2.385 4.2079597 5.129637 0.096865796 0.60530823
--2.305672 4.0728936 5.483795 0.09941318 0.62951463
--2.98011 3.9857838 4.778327 0.114867635 0.57474774
--2.693844 3.6158175 5.840085 0.12358401 0.64656025
--3.544655 3.669802 4.430573 0.13217063 0.5449412
--2.998876 3.1240225 6.1977987 0.14826205 0.66310966
--4.063351 3.262108 4.087088 0.14901634 0.51586974
--3.222061 2.6111493 6.5562224 0.1734087 0.6789615
--4.520494 2.76721 3.7485816 0.16561422 0.4874424
--3.475325 2.1533513 6.6383896 0.19483986 0.6739598
--4.900424 2.1921172 3.4157665 0.18216124 0.4595243
--3.985346 0.6503134 6.638389 0.25433013 0.63802445
--3.833915 1.1695135 6.7056165 0.23558848 0.6556203
--3.66439 1.6662165 6.7056165 0.2158342 0.6676299
--5.188035 1.5463812 3.0893545 0.19885871 0.43195936
--5.369352 0.84208137 2.7700572 0.21592884 0.40459266
--5.226549 -1.3695837 2.7700558 0.27719393 0.36689085
--4.959123 -2.0295758 3.0893545 0.3000797 0.37050796
--4.594011 -2.6228716 3.4157653 0.32289118 0.37574476
--4.145879 -3.13845 3.7485802 0.3456367 0.382952
--3.63024 -3.5678709 4.087086 0.3682904 0.39247465
--3.062906 -3.905274 4.430571 0.3907993 0.40463254
--2.459508 -4.147303 4.778325 0.41309428 0.41969675
--1.83506 -4.2929926 5.129635 0.43510398 0.43786138
--1.773787 -4.1489797 5.4837933 0.43630776 0.46250686
--2.222729 -3.7441573 5.840083 0.41801113 0.49293524
--2.590652 -3.2949383 6.197797 0.4009957 0.525246
--2.877935 -2.8155668 6.5562224 0.38512635 0.5589279
--3.18677 -2.3962946 6.6383886 0.36780256 0.5728833
--3.435024 -1.9420185 6.7056155 0.35051233 0.5869665
--4.2541842 -0.09405146 6.1341677 0.2743351 0.5850015
--4.2607965 0.09375654 6.1462474 0.26805872 0.589679
--4.021749 0.093756415 6.63839 0.27435085 0.6254848
--3.938915 -0.4563626 6.705616 0.29502687 0.61854696
--4.722299 -0.09405146 6.133661 0.27228573 0.5767082
--5.311468 -0.24771245 6.095449 0.27408886 0.5634598
--5.820952 -0.36722645 6.032713 0.2747981 0.5527632
--6.245661 -0.45259443 5.947477 0.27473456 0.54378605
--6.586578 -0.50381446 5.843055 0.27406055 0.53602225
--6.709479 -0.45259434 5.594415 0.27089337 0.5252274
--6.843708 -0.2477123 5.446301 0.2651475 0.52107257
--6.586578 0.69133055 5.843055 0.247246 0.5526679
--6.245661 0.6401096 5.947477 0.24893618 0.5598079
--4.299866 0.6401096 5.986938 0.24768347 0.58987945
--5.303881 0.5547426 6.045174 0.25149238 0.57460934
--4.73316 0.5547426 6.049765 0.25138766 0.5838934
--5.820952 0.5547426 6.032713 0.25150448 0.5672394
--7.004379 -0.09405028 5.358206 0.2610402 0.51878744
--6.990245 0.093757726 5.349695 0.25700653 0.52096593
--7.004379 0.2815667 5.358206 0.25306404 0.5237418
--7.043456 0.43522772 5.381734 0.2499705 0.526562
--7.102487 0.5547427 5.417278 0.24772243 0.5293007
--7.176484 0.6401097 5.461833 0.24629298 0.5318455
--7.260458 0.6913307 5.512394 0.24564065 0.53409773
--7.12375 0.70840365 5.65613 0.24608429 0.5409702
--1.835061 4.4805074 5.129637 0.07572738 0.61209863
--1.773787 4.3364944 5.483795 0.07786923 0.6365315
--2.459509 4.334819 4.778327 0.0945903 0.5824793
--2.222729 3.9316735 5.840085 0.10228454 0.6549422
--3.062906 4.09279 4.430573 0.11252327 0.5535236
--2.590652 3.4824536 6.1977987 0.12723115 0.67267513
--3.63024 3.755387 4.087088 0.12979372 0.5252393
--2.877935 3.0030813 6.556224 0.15269615 0.68950385
--4.14588 3.3259661 3.7485816 0.14662321 0.49755302
--3.186727 2.5838103 6.6383896 0.17457792 0.6851333
--4.594011 2.8103883 3.4157667 0.16320711 0.47034195
--3.434771 2.1295333 6.7056165 0.19590488 0.67928565
--4.959123 2.2170932 3.0893555 0.1797317 0.4434553
--3.938894 0.6438774 6.705616 0.25535572 0.64332926
--3.788233 1.1568004 6.7579045 0.23649254 0.66008055
--3.620712 1.6476324 6.7579045 0.21675241 0.6720953
--5.226549 1.5571003 2.7700565 0.19638988 0.41673073
--5.38306 -0.6564646 2.4585838 0.25419182 0.3645532
--5.239895 -1.3732986 2.4585829 0.27456015 0.35230336
--4.995946 -2.0452437 2.7700565 0.2975155 0.35523832
--4.649063 -2.6552057 3.0893543 0.3204315 0.3595835
--4.213346 -3.1906517 3.4157653 0.34332377 0.36569497
--3.704039 -3.64167 3.74858 0.36617425 0.3739307
--3.136961 -4.000981 4.087086 0.38893613 0.38463497
--2.527992 -4.263903 4.430571 0.41154456 0.3981207
--1.892612 -4.428256 4.778325 0.43393055 0.4146486
--1.245493 -4.494211 5.129635 0.45603433 0.43439853
--1.203574 -4.3435926 5.483792 0.45676905 0.45921034
--1.709721 -3.9984035 5.840083 0.4375466 0.48843533
--2.137377 -3.5988333 6.197797 0.41975898 0.5196778
--2.486004 -3.1596928 6.556221 0.40326077 0.55239296
--2.846392 -2.7839706 6.6383886 0.38576958 0.5652924
--3.149857 -2.3674986 6.7056155 0.36844134 0.5783705
--3.974876 0.0937564 6.705616 0.27533507 0.6308052
--3.7885 -0.9692856 6.757904 0.3147099 0.6116287
--3.892044 -0.4498606 6.757904 0.29581925 0.6230461
--3.394661 -1.9179586 6.7579036 0.35111356 0.59154844
--3.621252 -1.4601177 6.7579036 0.33307895 0.60111123
--5.31649 -0.09405146 6.12873 0.27014577 0.56784683
--6.84923 -0.5208884 5.72389 0.27285215 0.5291854
--6.77734 -0.5038144 5.657285 0.27224597 0.52692246
--6.897739 -0.3672263 5.486784 0.26788136 0.52097523
--6.921121 0.6913306 5.790494 0.24715596 0.5477315
--6.643441 0.6401096 5.909708 0.24889793 0.55439466
--6.284224 0.55474156 6.008447 0.25141773 0.5609969
--4.2757235 0.5547426 6.050245 0.2512503 0.59271616
--7.34942 0.7084037 5.56596 0.24571733 0.53597057
--7.205174 0.6913306 5.717139 0.24690154 0.5427134
--1.245494 4.6817265 5.129637 0.053929713 0.6175908
--1.203575 4.5311074 5.483795 0.05559948 0.6422465
--1.892612 4.6157722 4.778327 0.07382319 0.5890638
--1.709721 4.1859183 5.840085 0.08029626 0.66220623
--2.527992 4.45142 4.430573 0.09254195 0.56107485
--2.137377 3.7863495 6.1977987 0.10554082 0.68131095
--3.136961 4.188498 4.087088 0.11038585 0.5336695
--2.486004 3.3472073 6.556224 0.13135824 0.6993099
--3.704039 3.829186 3.748582 0.12759754 0.5067977
--2.846339 2.9714854 6.6383896 0.15381883 0.69572353
--4.213346 3.3781683 3.4157667 0.1443807 0.480353
--3.149511 2.5550134 6.7056165 0.17562419 0.6904902
--4.649063 2.8427222 3.0893548 0.16091731 0.45419607
--3.393807 2.1054733 6.7579036 0.19682422 0.6837668
--4.995946 2.2327602 2.7700565 0.17738278 0.42816988
--3.891972 0.6373754 6.757904 0.2562338 0.64779454
--3.743924 1.1444683 6.7952514 0.23722996 0.66365343
--3.578347 1.6296073 6.7952514 0.21750337 0.6756718
--5.239894 1.5608144 2.4585836 0.19396052 0.402112
--5.38306 0.84398043 2.4585843 0.21339664 0.3900131
--5.356426 -0.6527745 2.1639469 0.25153956 0.3505564
--5.213966 -1.3660815 2.1639469 0.27189958 0.338285
--5.008708 -2.0506725 2.4585836 0.29492962 0.3405989
--4.683599 -2.6754897 2.7700553 0.31797156 0.34423313
--4.263867 -3.2297437 3.0893533 0.34102663 0.34942675
--3.76437 -3.7020006 3.415765 0.36408395 0.35654423
--3.200819 -4.08351 3.74858 0.3871033 0.36594373
--2.589245 -4.368195 4.0870852 0.41002464 0.3779639
--1.945509 -4.55258 4.430571 0.43278143 0.39290914
--1.284865 -4.635678 4.778325 0.45531452 0.41102841
--0.621582 -4.6188173 5.129636 0.4775839 0.43248555
--0.600146 -4.4641085 5.4837933 0.4778173 0.4574335
--1.159745 -4.1861095 5.840083 0.4575219 0.4853121
--1.643793 -3.8434534 6.197797 0.43882337 0.51537395
--2.050819 -3.4514587 6.556221 0.42156497 0.5470337
--2.458724 -3.1243587 6.638388 0.4037994 0.55880845
--2.813486 -2.7506907 6.7056155 0.38631916 0.57082415
--3.113085 -2.3384106 6.7579036 0.36896574 0.58298796
--3.927528 0.09375639 6.757904 0.27617553 0.63528466
--5.318307 0.09375753 6.140768 0.26507655 0.5717088
--4.720735 0.09375753 6.145748 0.26662222 0.5810919
--5.854181 -0.09405146 6.115346 0.26850057 0.56081384
--5.840946 -0.24771245 6.082433 0.27212787 0.5569067
--6.284223 -0.36722642 6.008447 0.273059 0.5475498
--6.643441 -0.45259443 5.909709 0.273209 0.53929764
--6.921121 -0.5038144 5.790494 0.27272278 0.5318612
--6.965465 -0.45259434 5.53753 0.26987633 0.5217127
--7.043455 -0.24771228 5.381734 0.26438552 0.51761067
--6.988979 0.6401096 5.853363 0.24871258 0.54918385
--6.693548 0.5547426 5.968443 0.25122288 0.5553541
--4.726625 0.43522754 6.100245 0.25558668 0.58476746
--4.259828 0.43522754 6.1007447 0.25588894 0.59387547
--5.311468 0.43522754 6.095449 0.25524482 0.5751819
--5.840946 0.43522754 6.082433 0.25492454 0.5676046
--6.314986 0.43522754 6.057086 0.2545825 0.56120193
--7.158782 -0.09405026 5.279501 0.26035994 0.51500195
--7.143749 0.09375774 5.272509 0.25641868 0.5171917
--7.158782 0.2815667 5.2795 0.25254932 0.51985306
--7.200344 0.43522772 5.298831 0.24949726 0.522458
--7.26313 0.55474275 5.328031 0.2472628 0.5249047
--7.341833 0.6401097 5.364635 0.24582277 0.5271057
--7.431146 0.6913307 5.406174 0.24513909 0.5289862
--7.525768 0.7084037 5.45018 0.24516669 0.5304822
--7.438383 0.6913306 5.619526 0.2464742 0.5373861
--0.621583 4.8063326 5.129637 0.031353828 0.621599
--0.600146 4.6516237 5.4837937 0.032486368 0.6464563
--1.284866 4.823195 4.778327 0.052452013 0.594354
--1.159746 4.373625 5.840085 0.057500817 0.66816515
--1.945509 4.740097 4.430573 0.07211672 0.5674729
--1.643793 4.0309687 6.1977987 0.08306495 0.6888426
--2.589245 4.5557113 4.087088 0.09068237 0.54105645
--2.050819 3.6389744 6.556224 0.10925244 0.70821667
--3.200819 4.271027 3.748582 0.10841916 0.51508737
--2.458664 3.3118734 6.63839 0.13240923 0.705588
--3.76437 3.8895173 3.415767 0.12554795 0.48948023
--2.813059 2.9382052 6.7056165 0.15482672 0.7011225
--4.263868 3.4172602 3.0893548 0.14225616 0.4641109
--3.111918 2.5259254 6.7579045 0.17653003 0.69499767
--4.683599 2.8630064 2.7700567 0.15871255 0.43883377
--3.354073 2.0821373 6.7952514 0.19757828 0.6873558
--5.008708 2.2381895 2.4585836 0.1750812 0.41349146
--4.722299 0.28156653 6.133661 0.2606854 0.5839333
--4.2541847 0.28156653 6.1341677 0.26152748 0.592984
--3.84646 0.63106936 6.795251 0.25694802 0.6513724
--3.702818 1.1330284 6.8176613 0.2377812 0.6662804
--3.539044 1.6128843 6.8176613 0.2180666 0.6783009
--5.213966 1.5535985 2.1639476 0.19155702 0.388043
--5.356427 0.8402905 2.1639473 0.21087924 0.37598848
--5.282792 -0.64257145 1.8942099 0.248857 0.33706278
--5.142279 -1.3461305 1.8942096 0.26919326 0.32477367
--4.983916 -2.0401244 2.1639466 0.29230285 0.3265316
--4.695567 -2.6825185 2.4585824 0.315478 0.32951587
--4.295561 -3.2542667 2.7700553 0.3387175 0.33397344
--3.809547 -3.7471776 3.089354 0.36199743 0.3401519
--3.253021 -4.150977 3.415765 0.38528413 0.34841704
--2.642063 -4.458125 3.74858 0.4085224 0.35912243
--1.992821 -4.6637797 4.087086 0.43164885 0.3725989
--1.321053 -4.765706 4.430571 0.45460528 0.38914144
--0.641716 -4.764127 4.778325 0.47735095 0.40898734
-0.03139 -4.661526 5.129636 0.49987075 0.4322783
-0.03139 -4.5054154 5.4837933 0.49957675 0.45731413
--0.577733 -4.3023486 5.840083 0.47805303 0.48367715
--1.114643 -4.0240517 6.197797 0.45829514 0.51242715
--1.576935 -3.6863146 6.556222 0.4401389 0.54292685
--2.028269 -3.4129567 6.638388 0.4219921 0.5534987
--2.430351 -3.0871427 6.705615 0.4042543 0.5643853
--2.780883 -2.7170737 6.7579036 0.3867616 0.5754797
--3.846633 -0.44355464 6.795251 0.29645962 0.6266514
--3.881604 0.09375638 6.795253 0.27685726 0.63887495
--3.744556 -0.9569536 6.795251 0.3153005 0.6152502
--3.579627 -1.4420927 6.7952504 0.33361155 0.60475177
--3.356097 -1.8946227 6.7952504 0.3515808 0.5952121
--3.078221 -2.3101966 6.7952504 0.36936137 0.5866788
--5.31649 0.28156653 6.12873 0.25978646 0.57429487
--5.858968 0.09375754 6.127251 0.26387084 0.5642959
--7.12375 -0.5208884 5.65613 0.271672 0.5250905
--7.042324 -0.5038144 5.595119 0.27113584 0.5231336
--7.102487 -0.3672263 5.417278 0.26701087 0.51732665
--7.282033 0.64010966 5.774727 0.24837291 0.5438911
--7.048777 0.5547426 5.908763 0.25090814 0.54992753
--6.733522 0.43522757 6.015298 0.25418675 0.5554187
--7.620388 0.6913307 5.494187 0.24585961 0.5315369
--7.522356 0.64010966 5.670087 0.24786653 0.5382717
-0.031388 4.8490415 5.1296377 0.0078799045 0.62390226
-0.031388 4.6929307 5.483795 0.00841594 0.64891654
--0.641717 4.951643 4.778327 0.03035637 0.5981799
--0.577733 4.4898624 5.840085 0.0337821 0.67259604
--1.321054 4.953223 4.430573 0.05113362 0.572581
--1.114643 4.2115664 6.1977987 0.059681498 0.6950657
--1.992822 4.851296 4.087088 0.070574135 0.54728574
--1.576935 3.8738294 6.556224 0.08624256 0.71603495
--2.642063 4.645641 3.7485821 0.08897837 0.5223242
--2.028205 3.6004713 6.63839 0.11020322 0.7145611
--3.253022 4.338493 3.415767 0.10659112 0.49763936
--2.429867 3.2746572 6.705617 0.13335608 0.7110389
--3.809547 3.9346943 3.089356 0.123613864 0.47312647
--2.779442 2.9045882 6.7579045 0.15570211 0.70566607
--4.295561 3.4417832 2.7700577 0.14021859 0.44865438
--3.075454 2.4977114 6.7952514 0.17727531 0.6986078
--4.695567 2.8700354 2.4585838 0.15656093 0.42407703
--3.317213 2.0604873 6.8176603 0.19814578 0.68999374
--4.983916 2.2276416 2.1639476 0.17281443 0.39935857
--3.804238 0.6252194 6.817661 0.2574802 0.6540035
--3.666746 1.1229883 6.8251305 0.23812568 0.667892
--3.504553 1.5982103 6.8251305 0.21842037 0.6799133
--5.142278 1.5336475 1.8942103 0.18916433 0.37445992
--5.282793 0.83008754 1.8942102 0.20836078 0.36245582
--5.411894 -0.24771157 2.397877 0.24238424 0.36848104
--5.426756 -0.09404958 2.442459 0.23858717 0.37331423
--5.754557 -0.094049625 2.609571 0.24072623 0.3869164
--5.748669 -0.24771161 2.56874 0.24436378 0.38261136
--5.3903747 -0.36691707 2.331147 0.24506342 0.36310458
--5.391698 -0.35524186 2.3372848 0.24479522 0.36359382
--5.3424807 -0.51898134 2.0815513 0.24707226 0.3484877
--5.366109 -0.5047365 2.1639469 0.24741484 0.35291237
--5.29476 -0.45958912 1.8942099 0.24369937 0.34001645
--5.3134613 -0.5038135 1.9726006 0.2456605 0.34322515
--5.294873 -0.45985115 1.894682 0.2437111 0.34003577
--5.3392644 -0.5208875 2.0703275 0.24702439 0.34788725
--5.3167324 -0.5059444 1.9849821 0.24583311 0.34381428
--5.171558 -0.6271584 1.6486598 0.24611628 0.32396424
--5.033986 -1.3159914 1.6486596 0.26641288 0.31166115
--4.915372 -2.0109615 1.8942095 0.2896152 0.31297433
--4.672315 -2.6688626 2.1639464 0.3129304 0.31537315
--4.306544 -3.2627645 2.4585834 0.33636442 0.31915554
--3.837889 -3.7755187 2.770056 0.3598892 0.32457814
--3.292113 -4.201499 3.089353 0.383459 0.3318898
--2.685241 -4.531642 3.4157648 0.40702388 0.34145242
--2.033619 -4.759668 3.7485797 0.43052354 0.3536124
--1.353421 -4.882007 4.0870852 0.45390135 0.36869323
--0.660222 -4.897687 4.430572 0.47711614 0.38698173
-0.03139 -4.808154 4.778325 0.5001509 0.4086993
-0.684361 -4.6188173 5.129635 0.52220345 0.43386734
-0.662924 -4.4641085 5.483792 0.52138436 0.4589253
-0.03139 -4.3421893 5.840083 0.49926952 0.48365054
--0.554668 -4.1358895 6.197797 0.4782929 0.51093626
--1.068903 -3.8597057 6.556221 0.45908988 0.540155
--1.559528 -3.6452618 6.638388 0.44044784 0.54943776
--2.004893 -3.3724027 6.705615 0.4223473 0.55911946
--2.402413 -3.0495496 6.757903 0.40461105 0.56908
--2.750251 -2.6844666 6.7952504 0.38708153 0.57920134
--5.854181 0.28156653 6.115346 0.25905597 0.5666899
--6.342716 0.09375755 6.100928 0.2628585 0.558015
--6.335351 -0.09405045 6.089283 0.2671558 0.55482066
--6.314986 -0.24771243 6.057086 0.27054223 0.55127984
--6.693549 -0.36722642 5.968443 0.2715894 0.54270095
--6.988979 -0.4525944 5.853364 0.2718667 0.53480667
--7.205174 -0.5038144 5.717139 0.27149978 0.5274453
--7.176483 -0.4525943 5.461832 0.26890767 0.5178099
--7.200344 -0.24771225 5.298831 0.26361054 0.5136945
--7.349761 0.55474263 5.825475 0.25045884 0.5444148
--7.09648 0.43522757 5.952959 0.25371072 0.5498542
--6.335351 0.28156653 6.089283 0.2584025 0.5602648
--6.759983 0.28156653 6.046315 0.25776532 0.5544535
--7.270219 -0.094050236 5.18121 0.25962332 0.5106684
--7.254568 0.09375776 5.176115 0.25575018 0.51289463
--7.270219 0.28156674 5.18121 0.25192684 0.5154484
--7.313493 0.43522775 5.195296 0.24889112 0.51782584
--7.378864 0.55474275 5.216576 0.24664767 0.51995385
--7.460809 0.6401098 5.24325 0.24517758 0.52177346
--7.5538 0.69133073 5.27352 0.2444469 0.52323765
--7.652318 0.70840377 5.305589 0.2444144 0.5243083
--7.750833 0.69133073 5.337658 0.24503765 0.52495253
--7.709702 0.6401097 5.535725 0.24717589 0.5320973
-0.68436 4.8063326 5.1296377 0.98425883 0.62426865
-0.031388 4.8490415 5.1296377 1.0078799 0.62390226
-0.031388 4.6929307 5.483795 1.0084159 0.64891654
-0.662924 4.6516247 5.483795 0.98417413 0.6493688
-0.031388 4.99567 4.778327 0.0074118683 0.6003418
-0.031388 4.5297046 5.840085 0.009033367 0.675228
--0.660223 5.085203 4.4305735 0.02947106 0.5762432
--0.554669 4.323405 6.1977987 0.035275325 0.6997354
--1.353422 5.069524 4.0870886 0.049947146 0.55223
--1.068904 4.0472207 6.556224 0.06219959 0.7225414
--2.033619 4.947184 3.7485821 0.06916643 0.5284003
--1.559468 3.8327763 6.63839 0.08706139 0.7224498
--2.685242 4.719158 3.4157672 0.087400824 0.50473785
--2.004387 3.5599174 6.705617 0.11106316 0.720071
--3.292113 4.3890142 3.089355 0.10487278 0.48116288
--2.400779 3.2370644 6.757905 0.13418137 0.7156269
--3.837889 3.9630363 2.770058 0.12176611 0.45756224
--2.746836 2.8719823 6.7952514 0.15642478 0.70930547
--4.306544 3.4502816 2.4585848 0.13823786 0.43380386
--3.041627 2.4715374 6.8176613 0.17783816 0.7012614
--4.672315 2.8563795 2.1639478 0.15445113 0.40986323
--3.284865 2.0414894 6.8251305 0.19850412 0.6916115
--4.915372 2.1984775 1.8942105 0.17056847 0.3857067
--3.838999 0.09375638 6.817662 0.27736357 0.64151615
--3.767185 0.6200854 6.82513 0.257811 0.6556186
--3.637538 1.1148603 6.8176613 0.23824276 0.6684114
--3.476626 1.5863273 6.8176613 0.21854328 0.6804322
--5.033985 1.5035076 1.6486603 0.18675657 0.36125454
--5.171558 0.81467557 1.6486602 0.20581447 0.34930706
--5.364897 0.69295657 2.1597104 0.21475169 0.37312943
--5.366111 0.69223756 2.1639473 0.21481389 0.37332895
--5.2947536 0.64722157 1.8942102 0.21326186 0.35913163
--5.3108454 0.68526447 1.9616624 0.21293348 0.36313796
--5.3392653 0.70840454 2.0703285 0.21342844 0.36894155
--5.313462 0.6913315 1.9726013 0.2128832 0.36378744
--5.336534 0.7066266 2.0599916 0.21337025 0.36839536
--5.3903394 0.55474347 2.3309827 0.21998663 0.37879434
--5.411895 0.43522844 2.397877 0.2238447 0.38008788
--5.3917003 0.5427399 2.337296 0.22036582 0.37888786
--5.739777 0.5547434 2.5070612 0.22329144 0.39268056
--5.74867 0.43522838 2.56874 0.22683536 0.3935647
--5.756685 0.093758374 2.624339 0.23601411 0.39058957
--6.04804 0.09375833 2.811436 0.23823626 0.4033742
--6.048925 -0.09404967 2.797765 0.2427469 0.39994267
--5.739778 -0.3672256 2.50706 0.24695916 0.37789303
--5.3903394 -0.36722556 2.3309815 0.24507049 0.36309147
--5.3783364 -0.44875216 2.2578552 0.24668393 0.35825655
--5.3777647 -0.45259354 2.254341 0.2467596 0.35802677
--5.72863 -0.4525936 2.429744 0.24854745 0.37298694
--5.288801 -0.45259345 1.8801725 0.24336842 0.33936894
--5.25853 -0.3774528 1.8031969 0.24050498 0.33645353
--5.2543335 -0.36722544 1.7925526 0.24011156 0.3360513
--5.233816 -0.26113963 1.7324878 0.23652075 0.33464506
--5.231163 -0.24771139 1.724762 0.23606405 0.3344656
--5.223196 -0.11242966 1.6879749 0.23189057 0.33492056
--5.222074 -0.0940504 1.6828905 0.23132378 0.33498496
--5.22877 0.06708919 1.6744813 0.22676668 0.3375469
--5.229861 0.0937576 1.6730523 0.2260172 0.33797893
--5.218711 0.09375761 1.64866 0.22574833 0.3366819
--5.032123 -0.60783833 1.4265848 0.2433049 0.31124017
--4.898237 -1.2782114 1.4265846 0.26354527 0.29892683
--4.811828 -1.9669063 1.6486595 0.2868381 0.29981846
--4.60803 -2.6311054 1.8942094 0.31030783 0.3017424
--4.285206 -3.2462544 2.1639464 0.33394605 0.30491367
--3.84771 -3.7853396 2.458583 0.3577293 0.30964148
--3.316636 -4.2331915 2.770056 0.38160512 0.31618446
--2.717575 -4.586693 3.0893528 0.40551245 0.32478705
--2.066971 -4.838054 3.4157648 0.42939454 0.33580473
--1.381332 -4.982293 3.7485797 0.4531964 0.3495777
--0.676774 -5.017147 4.0870857 0.47687674 0.36642405
-0.03139 -4.942923 4.430572 0.5004171 0.3866209
-0.704495 -4.764127 4.778325 0.52299404 0.41027147
-1.308272 -4.494211 5.129635 0.54388225 0.4371247
-1.266353 -4.3435926 5.4837933 0.5425683 0.46215233
-0.640511 -4.3023477 5.840083 0.5205359 0.4852878
-0.03139 -4.1742215 6.1977983 0.49895003 0.51100403
--0.531278 -3.9670796 6.556222 0.47853804 0.5388054
--1.057003 -3.8167696 6.638388 0.4592741 0.54670674
--1.54155 -3.6020217 6.705615 0.44069898 0.5550997
--1.982035 -3.3314388 6.757902 0.42261595 0.56385297
--2.376439 -3.0130856 6.79525 0.4048534 0.5728348
--3.804577 -0.43770465 6.817661 0.29693267 0.6293022
--3.704054 -0.9455136 6.817661 0.31573114 0.6179079
--3.541545 -1.4253696 6.8176603 0.33399028 0.60741794
--3.321165 -1.8729727 6.8176603 0.35189897 0.5978907
--3.04703 -2.2840226 6.8176603 0.36961251 0.58937484
--2.723255 -2.6542177 6.8176603 0.38726223 0.5819199
--7.34942 -0.5208883 5.56596 0.27055213 0.520559
--7.260458 -0.50381434 5.512394 0.2700828 0.51892996
--7.26313 -0.36722627 5.328031 0.26614237 0.5131851
--7.596354 0.55474263 5.714642 0.24985704 0.5385564
--7.403791 0.4352276 5.865957 0.25312966 0.5441932
--7.128059 0.28156656 5.982215 0.25709933 0.5488481
--7.843826 0.6401097 5.367928 0.24627794 0.52513933
--7.788406 0.5547427 5.57233 0.24908094 0.53211087
-1.308271 4.6817265 5.129637 0.9612714 0.62275404
-1.266352 4.5311074 5.4837937 0.9605829 0.6478753
-0.704494 4.951643 4.778327 0.9843396 0.60063183
-0.031388 4.99567 4.778327 1.0074118 0.6003418
-0.031388 4.5297046 5.840085 1.0090333 0.675228
-0.64051 4.4898643 5.840085 0.98408276 0.67577493
-0.031388 5.13044 4.4305744 0.0070009674 0.57827926
-0.031388 4.361737 6.1978 0.009748753 0.7025531
--0.676775 5.204662 4.0870886 0.02867885 0.5557458
--0.531278 4.1545935 6.556223 0.037008405 0.7274667
--1.381332 5.16981 3.7485821 0.048869386 0.53319687
--1.056954 4.0042844 6.63839 0.06285254 0.7290262
--2.066971 5.02557 3.4157672 0.06786866 0.51067406
--1.54107 3.7895362 6.705617 0.0878054 0.7280229
--2.717576 4.77421 3.0893562 0.08592383 0.48813275
--1.980327 3.5189543 6.757905 0.11181563 0.72471005
--3.316636 4.4207087 2.770057 0.10323747 0.46548182
--2.372565 3.2006004 6.795252 0.13486521 0.71930283
--3.84771 3.9728575 2.458585 0.11997677 0.4426062
--2.716586 2.8417323 6.8176613 0.15697269 0.7119812
--4.285206 3.4337716 2.1639478 0.136304 0.41949537
--3.011942 2.4485683 6.8251305 0.17819567 0.70288885
--4.60803 2.8186226 1.8942107 0.1523702 0.39612684
--3.258673 2.0261064 6.8176613 0.19863127 0.69213176
--4.811828 2.1544225 1.6486604 0.16831832 0.37242705
--3.801611 0.09375638 6.82513 0.27767655 0.64313835
--3.737183 0.6159284 6.817661 0.25792104 0.65614027
--3.617023 1.1091503 6.7952514 0.23811339 0.6677559
--3.45701 1.5779814 6.7952514 0.21841542 0.679775
--4.898237 1.4657277 1.4265853 0.18432252 0.3484062
--5.032123 0.7953556 1.4265852 0.20322882 0.33652157
--5.426755 0.2815674 2.442458 0.22840483 0.3796899
--5.754556 0.28156736 2.60957 0.23108542 0.39294198
--6.051366 -0.24771166 2.759969 0.24624754 0.39604023
--6.055057 -0.36722565 2.702874 0.24876243 0.39185864
--5.3676934 -0.4988975 2.1771317 0.24736811 0.3536262
--5.715981 -0.5038136 2.3420017 0.24916418 0.36812392
--5.702579 -0.52088755 2.2490478 0.24884494 0.36353904
--5.078012 0.09375766 1.426585 0.22303322 0.3239392
--4.873888 -0.5859133 1.2272758 0.24042776 0.29894683
--4.744187 -1.2353374 1.2272757 0.26059496 0.2866271
--4.682034 -1.9116814 1.4265845 0.28395766 0.28704333
--4.51092 -2.5740705 1.6486584 0.3075818 0.2885143
--4.226212 -3.2006075 1.8942093 0.3314407 0.2911845
--3.828629 -3.7662585 2.1639462 0.3554956 0.29528138
--3.325134 -4.2441745 2.458583 0.3796952 0.3011174
--2.737859 -4.6212296 2.7700548 0.40396863 0.30894667
--2.091946 -4.896754 3.0893538 0.42824894 0.3190069
--1.404148 -5.064275 3.4157648 0.45248294 0.33164793
--0.691047 -5.120156 3.7485807 0.4766297 0.3472073
-0.03139 -5.063465 4.0870857 0.5006694 0.36599833
-0.723001 -4.897687 4.430571 0.52375805 0.3881818
-1.347643 -4.635678 4.778325 0.5451517 0.41356263
-1.897838 -4.2929926 5.129635 0.56501603 0.44190377
-1.836565 -4.1489797 5.4837933 0.56324357 0.46686676
-1.222523 -4.1861095 5.840083 0.5412077 0.48848665
-0.617446 -4.1358886 6.197797 0.5196582 0.51266855
-0.03139 -4.0038815 6.556222 0.49861997 0.53896457
--0.525197 -3.9229767 6.638388 0.47859144 0.54538965
--1.044762 -3.7715456 6.705615 0.4594175 0.55240494
--1.524107 -3.5583436 6.757903 0.44087872 0.55987006
--1.961038 -3.2917047 6.79525 0.4227819 0.56764185
--2.353956 -2.9792588 6.8176603 0.4049642 0.57558
--6.769554 0.093757555 6.057534 0.26194558 0.55231047
--6.759983 -0.094050445 6.046315 0.2659883 0.5493406
--6.733522 -0.24771243 6.015298 0.2691903 0.54609317
--7.048777 -0.36722642 5.908763 0.2702864 0.5378901
--7.282033 -0.45259437 5.774728 0.27063185 0.5300712
--7.438383 -0.5038144 5.619526 0.27033415 0.52257746
--7.341831 -0.45259428 5.364635 0.2679505 0.5133731
--7.313493 -0.24771224 5.195297 0.26279667 0.5091918
--7.655385 0.43522763 5.750185 0.25241864 0.53816605
--7.439559 0.2815666 5.892756 0.25636747 0.54312825
--7.13948 0.09375757 5.992797 0.2610657 0.5467804
--7.337765 -0.094050206 5.061158 0.258807 0.5056479
--7.321756 0.09375779 5.058379 0.25497973 0.5079375
--7.337765 0.28156677 5.061158 0.25117663 0.51038665
--7.382028 0.43522778 5.068839 0.2481325 0.51251644
--7.448892 0.5547428 5.080444 0.24585703 0.51428705
--7.532709 0.6401098 5.094989 0.24433647 0.5156731
--7.627826 0.69133073 5.111497 0.24354173 0.51666003
--7.728595 0.70840377 5.128985 0.24343613 0.5172397
--7.829362 0.69133073 5.146473 0.24398153 0.5174068
--7.924479 0.6401098 5.16298 0.24514315 0.5171558
--7.925769 0.5547427 5.394602 0.24810395 0.52483666
-1.897838 4.4805074 5.129637 0.9388444 0.61952144
-1.836564 4.3364944 5.483795 0.9375846 0.64461535
-1.347643 4.823195 4.778327 0.96188617 0.59909934
-1.222523 4.373625 5.840085 0.95980203 0.674304
-0.723 5.085204 4.4305744 0.9844189 0.5785026
-0.031388 5.13044 4.4305744 1.0070009 0.57827926
-0.031388 4.361737 6.1978 1.0097487 0.7025531
-0.617446 4.323405 6.1977987 0.98398113 0.7032011
-0.031388 5.250981 4.0870886 0.006638316 0.5576702
-0.031388 4.1913967 6.556224 0.010582722 0.7304812
--0.691048 5.307672 3.7485821 0.027963873 0.5365816
--0.525168 4.1104918 6.63839 0.037461236 0.7340147
--1.404149 5.251792 3.4157672 0.047880616 0.5153367
--1.044368 3.9590614 6.705617 0.06344944 0.7346622
--2.091946 5.08427 3.0893562 0.06665874 0.49393997
--1.522487 3.7458584 6.757905 0.088459656 0.73271686
--2.737859 4.8087463 2.7700572 0.08452376 0.47233036
--1.956991 3.4792204 6.795252 0.11244189 0.72842824
--3.325135 4.4316916 2.458585 0.10165996 0.45041293
--2.346391 3.1667733 6.817662 0.13538599 0.7220062
--3.828629 3.9537766 2.163948 0.118237324 0.4281931
--2.690041 2.8151872 6.8251305 0.1573229 0.7136226
--4.226212 3.3881235 1.8942108 0.13440518 0.40566227
--2.987906 2.4299693 6.8176613 0.1783254 0.70341235
--4.51092 2.7615876 1.6486607 0.15029417 0.38275856
--3.240276 2.0153003 6.7952504 0.19850698 0.69147164
--4.682034 2.0991988 1.4265854 0.16605301 0.35949895
--3.767771 -0.43257064 6.82513 0.29722175 0.6309272
--3.771338 0.09375638 6.817661 0.27777812 0.6436639
--3.716111 0.6130084 6.795251 0.25779194 0.6554858
--3.607033 1.1063703 6.7579036 0.23772131 0.66584176
--3.447459 1.5739174 6.7579045 0.21802033 0.6778576
--4.744186 1.4228536 1.2272763 0.18186635 0.3359716
--4.873889 0.7734307 1.2272762 0.20060855 0.32415575
--5.689178 0.69133145 2.1560943 0.21682276 0.37874755
--5.70258 0.7084045 2.2490482 0.21720861 0.3833209
--5.377765 0.6401105 2.2543411 0.21701288 0.3766496
--5.72863 0.64011043 2.4297442 0.22048312 0.3905217
--5.3903074 0.55496025 2.3307843 0.21997902 0.3787887
--5.3772573 0.642414 2.2504256 0.21691632 0.3765054
--5.715981 0.6913314 2.3420022 0.21844307 0.38732356
--5.3666105 0.69133145 2.1687756 0.21488108 0.37353823
--6.048924 0.2815673 2.797765 0.23354653 0.40568447
--6.307148 0.09375828 3.015606 0.24032292 0.41569725
--6.310802 -0.094049715 3.002852 0.24466662 0.41245514
--6.320901 -0.2477117 2.967587 0.24804987 0.40885925
--6.05968 -0.45259362 2.631303 0.2503234 0.38759243
--5.3666096 -0.50381356 2.1687746 0.2474315 0.35315388
--5.689178 -0.50381356 2.1560938 0.24762578 0.3594717
--6.064929 -0.5038136 2.5500827 0.25096643 0.38343716
--6.070489 -0.5208876 2.4640377 0.25072935 0.37958857
--4.918344 0.09375771 1.227276 0.22026874 0.3116222
--4.706254 -0.56268626 1.0500199 0.23751098 0.28721005
--4.580984 -1.1899152 1.0500197 0.25758824 0.2748881
--4.53474 -1.8490113 1.2272755 0.28097746 0.27470562
--4.38919 -2.5025742 1.4265844 0.30473757 0.27566808
--4.137093 -3.1316504 1.6486592 0.32882017 0.27785766
--3.775874 -3.7135046 1.8942091 0.35316607 0.28143334
--3.308624 -4.2228365 2.1639462 0.37770703 0.28662646
--2.744888 -4.6331964 2.458582 0.40236863 0.29374534
--2.107613 -4.9335766 2.7700548 0.42707098 0.303037
--1.421234 -5.125666 3.0893528 0.451752 0.3147334
--0.702715 -5.204365 3.4157658 0.47637138 0.32918343
-0.03139 -5.167408 3.7485807 0.5009082 0.346724
-0.739553 -5.017146 4.0870857 0.52449846 0.36755365
-1.383832 -4.765706 4.430571 0.5463811 0.39151037
-1.95539 -4.428256 4.778325 0.5667265 0.41840804
-2.447778 -4.0204434 5.129635 0.58570945 0.44807196
-2.36845 -3.8853784 5.4837933 0.58351827 0.4729498
-1.772498 -3.9984035 5.840083 0.561405 0.4931371
-1.177421 -4.0240517 6.197797 0.5397998 0.51583993
-0.594056 -3.9670787 6.556221 0.5187533 0.54065454
-0.03139 -3.9593797 6.638389 0.498537 0.54556954
--0.51897 -3.8765247 6.705615 0.47862402 0.5511169
--1.032987 -3.7258646 6.757903 0.45950913 0.557208
--1.508302 -3.5159776 6.79525 0.44097233 0.563692
--1.943246 -3.2548447 6.817659 0.42282805 0.57041615
--3.66888 -0.93547463 6.82513 0.31598616 0.6195288
--3.508875 -1.4106957 6.8251295 0.33419964 0.6090344
--3.291695 -1.8539747 6.8251295 0.3520522 0.5995068
--3.021279 -2.2610536 6.8251295 0.3697023 0.5909972
--2.701566 -2.6276727 6.8251295 0.3872858 0.5835555
--2.336494 -2.9495738 6.8251295 0.404925 0.57723534
--7.525767 -0.5208883 5.45018 0.26944748 0.5154155
--7.431146 -0.50381434 5.406174 0.2690457 0.51415163
--7.378864 -0.36722624 5.216576 0.2652463 0.5084092
--7.851192 0.43522766 5.60153 0.25155047 0.5315214
--7.694463 0.28156662 5.773714 0.2555363 0.5370194
--7.452494 0.09375759 5.90245 0.26016796 0.5411086
--8.008296 0.55474275 5.177526 0.24689344 0.51647806
--7.991141 0.4352277 5.415882 0.25049454 0.52400804
-2.447778 4.2079587 5.129636 0.91690445 0.61471564
-2.36845 4.0728936 5.4837937 0.91511756 0.63974684
-1.955389 4.6157722 4.778327 0.939966 0.5958922
-1.772498 4.1859183 5.840085 0.9361542 0.67101175
-1.383831 4.953223 4.430573 0.9624424 0.5769561
-1.17742 4.2115664 6.1977987 0.95890594 0.70175153
-0.739552 5.2046633 4.0870886 0.98449886 0.55783594
-0.031388 5.250981 4.0870886 1.0066383 0.5576702
-0.031388 4.1913967 6.556224 1.0105827 0.7304812
-0.594055 4.1545944 6.556224 0.9838649 0.73123455
-0.031388 5.354924 3.748583 0.006316605 0.5384072
-0.031388 4.1468945 6.638391 0.010804051 0.7370777
--0.702716 5.391881 3.4157672 0.027312692 0.5186037
--0.518731 4.0640397 6.705617 0.03787929 0.7397079
--1.421235 5.313183 3.0893562 0.046963573 0.49848023
--1.031654 3.9133794 6.757905 0.063977666 0.73941135
--2.107613 5.1210947 2.7700582 0.06551691 0.4780173
--1.504461 3.7034924 6.795252 0.089006975 0.73648083
--2.744889 4.8207135 2.4585843 0.08317865 0.45714554
--1.935341 3.4423594 6.817662 0.112921305 0.731164
--3.308624 4.4103537 2.163948 0.10013338 0.4358892
--2.323422 3.1370883 6.825131 0.13572133 0.7236656
--3.775874 3.9010215 1.8942109 0.116537206 0.41425478
--2.668547 2.7936933 6.8176613 0.15745305 0.7141515
--4.137094 3.3191676 1.6486608 0.13251865 0.39219436
--2.971022 2.4169064 6.7952514 0.17820685 0.7027487
--4.389189 2.6900918 1.4265856 0.1482124 0.36973733
--3.231318 2.0100393 6.7579036 0.19811453 0.68954694
--4.53474 2.0365298 1.2272764 0.16377613 0.34697956
--3.738115 -0.42841363 6.817661 0.29731017 0.6314475
--3.750075 0.09375638 6.795252 0.2776511 0.6430095
--3.70585 0.6115864 6.757904 0.2574082 0.65357107
--3.609396 1.1070274 6.7056155 0.23705527 0.6625881
--3.449719 1.5748794 6.7056155 0.21734665 0.674599
--4.580984 1.3774327 1.0500203 0.17940983 0.32407838
--4.706254 0.7502038 1.0500202 0.1979772 0.3123363
--5.2517314 0.541581 1.7849762 0.21486084 0.3514731
--5.656489 0.43522853 1.9293561 0.22128615 0.363961
--5.665382 0.5547435 1.9910363 0.21880206 0.36882696
--5.254334 0.5547436 1.792553 0.21458957 0.35210684
--5.2844048 0.6294049 1.8690217 0.2134505 0.3574804
--5.676528 0.64011055 2.0683522 0.21733512 0.37383726
--6.076049 0.6913314 2.3779933 0.22065741 0.3943474
--6.070489 0.7084044 2.4640381 0.22086659 0.39822525
--6.051366 0.43522835 2.759969 0.22954038 0.40646455
--6.055057 0.55474335 2.7028742 0.22624554 0.40590516
--6.336159 -0.3672257 2.914316 0.2504908 0.4050821
--6.355284 -0.45259368 2.847539 0.25201926 0.4012954
--6.076049 -0.5038136 2.3779917 0.24965079 0.37624294
--5.676528 -0.4525935 2.068352 0.24554501 0.35616672
--5.665382 -0.36722547 1.991036 0.24264508 0.3538754
--5.656489 -0.24771145 1.929356 0.23897536 0.35285664
--4.74919 0.09375775 1.05002 0.21747996 0.29985693
--4.538619 -0.5394592 0.89410585 0.23460673 0.27621922
--4.417782 -1.1444943 0.8941057 0.25457925 0.2638993
--4.378695 -1.7826183 1.0500195 0.27792343 0.26293215
--4.251047 -2.4214392 1.2272754 0.30177745 0.26326096
--4.025381 -3.0452123 1.4265842 0.32606912 0.26491237
--3.696182 -3.6338124 1.6486591 0.35071358 0.26798588
--3.262976 -4.1638427 1.894209 0.3756187 0.27264553
--2.731232 -4.6099453 2.163946 0.40069094 0.27911898
--2.113042 -4.9463377 2.458582 0.42584163 0.287707
--1.431953 -5.1641784 2.7700548 0.4509927 0.29865012
--0.711453 -5.267423 3.0893538 0.4760973 0.31218004
-0.03139 -5.252381 3.4157648 0.5011339 0.3286486
-0.753826 -5.120155 3.7485797 0.5252191 0.34827858
-1.4162 -4.882008 4.087086 0.54757595 0.3709233
-2.008287 -4.55258 4.430571 0.5683814 0.39642432
-2.522286 -4.147303 4.778325 0.5878186 0.4246614
-2.952807 -3.6818502 5.129635 0.6060617 0.4555073
-2.8569 -3.5579004 5.4837933 0.6034943 0.48029035
-2.285507 -3.7441585 5.840083 0.58123934 0.49913383
-1.706571 -3.8434534 6.197797 0.55949897 0.52042544
-1.131681 -3.8597057 6.556222 0.5383466 0.5437966
-0.587945 -3.9229767 6.638388 0.518533 0.547265
-0.03139 -3.9125078 6.705615 0.49845666 0.5513152
--0.513036 -3.8296027 6.757903 0.47863004 0.55594647
--1.022484 -3.6815557 6.79525 0.45953754 0.5610602
--1.495241 -3.4766757 6.81766 0.44096416 0.56649643
--1.930002 -3.2224967 6.825129 0.42273635 0.5720962
--7.128058 -0.09405143 5.982215 0.26491302 0.54399085
--7.09648 -0.24771242 5.952959 0.26797503 0.5409899
--7.349762 -0.3672264 5.825475 0.26907468 0.53285265
--7.522357 -0.45259437 5.670087 0.26944512 0.52487564
--7.620388 -0.50381434 5.494188 0.2691779 0.51706576
--7.460807 -0.45259425 5.243249 0.26697162 0.50824857
--7.382028 -0.24771221 5.068839 0.26191798 0.5039573
--7.892755 0.28156665 5.62086 0.2545725 0.53026533
--7.708596 0.09375762 5.782224 0.2592092 0.5350226
--7.439557 -0.094051406 5.892756 0.26386663 0.5384676
--7.360487 -0.09405017 4.917167 0.2578855 0.4997822
--7.344362 0.09375783 4.917167 0.2540831 0.5021645
--7.360487 0.2815668 4.917167 0.25027472 0.5045087
--7.405067 0.4352278 4.917167 0.24719693 0.5063621
--7.472413 0.5547428 4.917167 0.24486534 0.5077239
--7.556832 0.64010984 4.917166 0.24327217 0.5086087
--7.652633 0.6913308 4.917167 0.24239415 0.50903976
--7.754126 0.7084038 4.917167 0.24220003 0.50904423
--7.855618 0.6913308 4.917167 0.24265671 0.5086493
--7.951418 0.64010984 4.917167 0.24373414 0.50787914
--8.035838 0.5547428 4.917167 0.24540913 0.5067526
--8.075161 0.43522775 5.189131 0.24921495 0.51535964
-2.952806 3.8693657 5.129637 0.89538 0.60846865
-2.8569 3.7454157 5.4837937 0.8931184 0.63341385
-2.522286 4.334819 4.778327 0.91849697 0.591143
-2.285507 3.9316726 5.840085 0.9130928 0.6660713
-2.008286 4.740097 4.430573 0.9409763 0.5737738
-1.706571 4.0309687 6.1977987 0.9345135 0.6984183
-1.416199 5.069523 4.0870876 0.9629528 0.5562796
-1.131681 4.0472207 6.556223 0.957866 0.72980094
-0.753825 5.307672 3.748583 0.9845813 0.5385235
-0.031388 5.354924 3.748583 1.0063167 0.5384072
-0.031388 4.1468945 6.638391 1.010804 0.7370777
-0.587945 4.1104927 6.63839 0.98384035 0.737857
-0.031388 5.439897 3.4157672 0.006029789 0.5203415
-0.031388 4.100023 6.705617 0.011014185 0.7428153
--0.711453 5.454939 3.0893552 0.02671377 0.50164044
--0.51223 4.0171175 6.757905 0.038253285 0.7445074
--1.431954 5.3516965 2.7700572 0.04610298 0.4824444
--1.019323 3.8690703 6.795252 0.0644229 0.7432214
--2.113043 5.1338544 2.4585853 0.064424925 0.46271852
--1.487739 3.6641903 6.817662 0.08942887 0.7392517
--2.731232 4.7974625 2.1639483 0.08188344 0.44250974
--1.916343 3.4100122 6.825131 0.11323279 0.7328445
--3.262977 4.3513594 1.894211 0.09864856 0.4218414
--2.304823 3.1130524 6.817662 0.13584933 0.7242016
--3.696182 3.8213296 1.6486609 0.11485517 0.40068027
--2.65345 2.7785964 6.7952514 0.15734293 0.7134835
--4.025381 3.2327297 1.4265857 0.13063411 0.37907043
--2.962801 2.4105453 6.7579036 0.17782359 0.700813
--4.251047 2.6089568 1.2272766 0.1461277 0.35712084
--3.233438 2.0112844 6.7056155 0.19744295 0.68627644
--4.378695 1.9701368 1.0500205 0.16150731 0.33499753
--3.640926 -0.92734563 6.817661 0.31604952 0.62003213
--3.717502 -0.42549363 6.795251 0.29718184 0.63077897
--3.73972 0.09375639 6.757904 0.27728075 0.6410906
--3.708278 0.6119234 6.705615 0.25675848 0.65031517
--3.625946 1.1116334 6.6383896 0.23611036 0.65792495
--3.465542 1.5816114 6.6383896 0.21639024 0.6699292
--4.417782 1.3320118 0.89410627 0.17699516 0.3129198
--4.53862 0.72697574 0.89410615 0.19538082 0.30125463
--5.231163 0.4352286 1.7247621 0.21708308 0.34642306
--6.089612 0.43522847 2.168106 0.22523122 0.38157687
--6.085923 0.55474347 2.2252011 0.22279932 0.38582206
--5.288802 0.6401106 1.8801734 0.2132908 0.35826173
--6.081297 0.6401105 2.2967722 0.22128925 0.39014643
--6.064929 0.6913314 2.5500832 0.22188516 0.40157974
--6.05968 0.6401104 2.6313033 0.22368614 0.40420815
--6.310801 0.28156728 3.002851 0.23582664 0.41796526
--6.534952 0.093758225 3.232582 0.24229048 0.42757332
--6.541123 -0.09404977 3.220638 0.2464959 0.4244804
--6.558184 -0.24771176 3.187615 0.2497792 0.4211196
--6.583959 -0.36722574 3.137729 0.2521541 0.41764924
--6.37699 -0.5038137 2.7717588 0.25267172 0.3976683
--6.081298 -0.45259356 2.296772 0.24776997 0.37359866
--6.399984 -0.5208877 2.6914768 0.25248796 0.39436713
--6.422978 -0.5038137 2.6111948 0.25150874 0.39155626
--5.650603 -0.09405045 1.888525 0.23459457 0.35337836
--6.085923 -0.36722553 2.225201 0.24512704 0.37185773
--6.089612 -0.24771151 2.168106 0.24176417 0.37122828
--4.580037 0.093757786 0.894106 0.21471635 0.28883356
--4.380384 -0.5175342 0.7588219 0.2317983 0.26621908
--4.263732 -1.1016202 0.7588218 0.25165555 0.25390515
--4.222651 -1.7162262 0.89410555 0.2748505 0.25191316
--4.104697 -2.3354833 1.0500194 0.29872608 0.2514207
--3.898607 -2.9471192 1.2272753 0.32318807 0.2524063
--3.596287 -3.5339162 1.4265841 0.34812206 0.25491777
--3.19402 -4.0747232 1.648659 0.37340477 0.25906178
--2.693475 -4.5456605 1.8942089 0.39891446 0.26499945
--2.102494 -4.9215465 2.163946 0.42454082 0.2729503
--1.435667 -5.1775246 2.458582 0.4501918 0.28320783
--0.716934 -5.3069825 2.7700558 0.4758023 0.29601154
-0.03139 -5.316011 3.0893538 0.5013473 0.3115987
-0.765494 -5.204365 3.4157648 0.5259248 0.3302068
-1.44411 -4.982293 3.7485797 0.5487436 0.3516925
-2.0556 -4.6637797 4.087086 0.56998914 0.37590787
-2.59077 -4.263904 4.430571 0.5898548 0.40276355
-3.042887 -3.798268 4.778325 0.6085249 0.43218988
-3.407641 -3.2824943 5.129635 0.6261701 0.46409562
-3.296802 -3.1716554 5.4837933 0.6232705 0.48878327
-2.756621 -3.4283013 5.840083 0.6008149 0.5063764
-2.200155 -3.5988345 6.197797 0.57887006 0.5263328
-1.639713 -3.6863146 6.556222 0.5575273 0.548314
-1.119732 -3.8167696 6.638388 0.537995 0.5503997
-0.581509 -3.8765247 6.705615 0.51833236 0.55301565
-0.03139 -3.8651597 6.757903 0.49838078 0.556162
--0.507836 -3.7840908 6.79525 0.47860336 0.55982363
--1.014057 -3.6404498 6.81766 0.45949057 0.5638933
--1.486029 -3.4421847 6.825129 0.44083798 0.56820375
--3.483489 -1.3988127 6.8176603 0.33422378 0.60951877
--3.269518 -1.8385906 6.8176603 0.35202438 0.59997654
--3.002732 -2.2424548 6.8176603 0.36961377 0.5914605
--2.686847 -2.6061776 6.8176603 0.3871346 0.5840219
--2.325581 -2.9255366 6.8176603 0.4047175 0.5777139
--1.922649 -3.1963046 6.81766 0.4224888 0.57259446
--7.652317 -0.52088827 5.305589 0.26831776 0.5094769
--7.5538 -0.5038143 5.27352 0.26798758 0.508631
--7.448892 -0.3672262 5.080443 0.26429376 0.5028433
--8.034416 0.28156668 5.429968 0.25344107 0.52260935
--7.907787 0.09375766 5.627851 0.2581497 0.52826726
--7.694462 -0.094051376 5.773714 0.2627977 0.53250736
--8.103184 0.4352278 4.917167 0.24766852 0.5052821
--8.119426 0.28156674 5.196813 0.25210273 0.5137788
-3.407641 3.4700098 5.129637 0.8741975 0.60090405
-3.296802 3.3591707 5.483795 0.8715189 0.6257509
-3.042887 3.9857848 4.778327 0.89740074 0.58497345
-2.756621 3.6158175 5.840085 0.8905646 0.65964025
-2.590769 4.45142 4.430573 0.9199314 0.5690774
-2.200154 3.7863495 6.1977987 0.9107774 0.69339174
-2.055599 4.851296 4.087088 0.94189763 0.55312246
-1.639712 3.8738294 6.556224 0.9326136 0.7264131
-1.444109 5.169809 3.7485821 0.96342826 0.5369612
-1.119731 4.0042844 6.63839 0.9576024 0.7364267
-0.765493 5.391881 3.4157681 0.984668 0.5204154
-0.031388 5.439897 3.4157672 1.0060298 0.5203415
-0.031388 4.100023 6.705617 1.0110142 0.7428153
-0.581508 4.0640407 6.705617 0.98382884 0.7436191
-0.031388 5.503527 3.0893564 0.0057728295 0.50329995
-0.031388 4.052675 6.757905 0.011207784 0.74765456
--0.716935 5.4944987 2.7700582 0.026157055 0.48550707
--0.505924 3.9716043 6.795252 0.03857247 0.74836004
--1.435668 5.3650427 2.4585843 0.045284875 0.46703956
--1.007882 3.8279643 6.817662 0.064769395 0.74602824
--2.102495 5.1090636 2.1639483 0.063379824 0.44797367
--1.473064 3.6296992 6.825131 0.08970615 0.74095577
--2.693475 4.7331786 1.894211 0.08063064 0.42835212
--1.90096 3.3838193 6.817662 0.11335573 0.73338944
--3.19402 4.2622404 1.648661 0.09718601 0.40815714
--2.29176 3.0961683 6.795252 0.13575065 0.7235291
--3.596287 3.7214339 1.4265858 0.11318132 0.38744792
--2.646098 2.7712443 6.7579045 0.15697645 0.71153337
--3.898608 3.1346369 1.2272767 0.12875354 0.36634865
--2.964747 2.4120502 6.7056155 0.17716499 0.6975235
--4.104697 2.5230007 1.0500206 0.14405747 0.34503907
--3.248278 2.0200002 6.6383896 0.1964886 0.68158954
--4.222651 1.9037428 0.89410645 0.15928483 0.3237481
--3.622082 -0.9216356 6.795251 0.315906 0.6193325
--3.70783 -0.4240716 6.757903 0.2968229 0.6288366
--3.74217 0.0937564 6.705616 0.276656 0.63782626
--3.725277 0.6142784 6.638389 0.25583762 0.64564836
--3.65851 1.1206964 6.5562224 0.2348898 0.65180093
--3.496678 1.5948595 6.5562234 0.2151553 0.6637968
--4.263731 1.2891377 0.7588223 0.1746879 0.30274698
--4.380384 0.7050508 0.7588222 0.1928912 0.2911591
--5.2220736 0.28156757 1.6828902 0.2208661 0.34157965
--5.650604 0.28156754 1.8885261 0.22485407 0.35949793
--5.230149 0.4186179 1.7201666 0.21748859 0.34589186
--5.2230053 0.25880638 1.6816711 0.22148736 0.3411339
--5.648474 0.09375855 1.873757 0.22957289 0.35571674
--6.422978 0.6913313 2.6111953 0.2239749 0.40872124
--6.399985 0.70840436 2.6914773 0.22406033 0.41208166
--6.37699 0.6913313 2.7717593 0.22492155 0.41495636
--6.320901 0.4352283 2.967587 0.23201397 0.41885245
--6.336159 0.5547433 2.9143162 0.22891296 0.4185259
--6.616267 -0.45259374 3.075196 0.2536491 0.41422406
--6.652931 -0.50381374 3.0042326 0.25430128 0.4109937
--6.444684 -0.45259362 2.535415 0.24977434 0.3893994
--6.092054 -0.094050504 2.13031 0.23772632 0.3719265
--4.420368 0.09375782 0.758822 0.21205577 0.27879804
--4.240949 -0.49821416 0.6434569 0.22920312 0.25749856
--4.127984 -1.0638402 0.64345676 0.248942 0.24519347
--4.075356 -1.6535562 0.7588216 0.27184907 0.24189386
--3.958347 -2.2495282 0.89410543 0.2956379 0.24033904
--3.764302 -2.8431993 1.0500193 0.3201998 0.2404686
--3.482922 -3.4205523 1.2272751 0.34539056 0.2422873
--3.107582 -3.9630113 1.426584 0.37104943 0.24585348
--2.63644 -4.4485493 1.6486589 0.39701688 0.2512724
--2.073331 -4.8530025 1.8942088 0.42314953 0.25869665
--1.428451 -5.1515965 2.163946 0.44933173 0.26833728
--0.718833 -5.3206906 2.4585829 0.47547966 0.28048572
-0.03139 -5.3559275 2.7700548 0.501549 0.29538706
-0.774231 -5.267423 3.0893528 0.52662116 0.31316385
-1.466927 -5.0642757 3.4157648 0.5498928 0.3336678
-2.096397 -4.759668 3.7485797 0.5715601 0.3567497
-2.652023 -4.368195 4.087086 0.5918289 0.38233393
-3.125684 -3.905274 4.430571 0.6108954 0.41038454
-3.511746 -3.3865993 4.778325 0.6289413 0.44087029
-3.806997 -2.8276591 5.1296353 0.64613587 0.47372848
-3.683047 -2.7317533 5.4837923 0.6429492 0.498328
-3.180912 -3.0557644 5.840083 0.6202321 0.5147686
-2.65343 -3.2949383 6.197797 0.5980192 0.5334719
-2.113597 -3.4514587 6.556222 0.5764118 0.5541265
-1.622246 -3.6452618 6.638388 0.55705106 0.5549004
-1.107146 -3.7715456 6.705615 0.53767955 0.55614406
-0.575007 -3.8296027 6.757903 0.51815456 0.55786663
-0.03139 -3.8192356 6.795252 0.49831155 0.5600556
--0.503809 -3.7418697 6.81766 0.47853777 0.5626811
--1.008513 -3.6043777 6.825129 0.45935556 0.5656282
--1.481769 -3.4142578 6.81766 0.44057736 0.5687267
--7.403791 -0.24771239 5.865957 0.26682493 0.53568417
--7.596354 -0.36722636 5.714642 0.2678948 0.52735496
--7.709702 -0.45259434 5.535726 0.2682566 0.51901186
--7.750833 -0.5038143 5.337658 0.2679879 0.510711
--7.532708 -0.45259422 5.094989 0.26593882 0.5022678
--7.405067 -0.24771217 4.917167 0.26094702 0.49782503
--8.050067 0.093757704 5.435063 0.25694978 0.5205856
--7.892754 -0.09405134 5.62086 0.2616609 0.5258617
--7.655385 -0.24771237 5.750185 0.26568332 0.529926
--7.34878 -0.09405013 4.74867 0.2568336 0.49295223
--7.332822 0.09375787 4.751412 0.25303796 0.4954342
--7.34878 0.28156686 4.748669 0.24920745 0.49768832
--7.392902 0.43522787 4.741088 0.24608321 0.4992849
--7.459552 0.5547429 4.729635 0.2436863 0.5002608
--7.543099 0.6401099 4.715278 0.24201468 0.5006683
--7.637911 0.69133085 4.698986 0.24105078 0.5005671
--7.738358 0.7084039 4.681725 0.2407688 0.50001824
--7.838801 0.69133085 4.664464 0.24114063 0.49908012
--7.933614 0.6401099 4.648172 0.24214098 0.4978055
--8.017161 0.5547429 4.633815 0.24375106 0.4962399
--8.083812 0.4352279 4.622362 0.24596201 0.49442133
--8.147766 0.2815668 4.917167 0.25051177 0.50347227
-3.806997 3.0151758 5.129637 0.853276 0.59213984
-3.683047 2.9192686 5.4837947 0.85024107 0.61688596
-3.511746 3.5741148 4.778327 0.8765994 0.57749796
-3.180912 3.2432806 5.840085 0.86850756 0.65186566
-3.125683 4.092791 4.430573 0.8992243 0.5629796
-2.65343 3.4824536 6.1977987 0.8876572 0.68684524
-2.652022 4.5557113 4.087087 0.9212384 0.54847646
-2.113597 3.6389732 6.556223 0.90810746 0.72128004
-2.096397 4.947184 3.7485821 0.94274896 0.53382975
-1.622245 3.8327763 6.63839 0.9321282 0.733024
-1.466926 5.251791 3.4157672 0.96387815 0.5188503
-1.107145 3.9590614 6.705617 0.95737493 0.742193
-0.77423 5.454939 3.0893562 0.9847608 0.503337
-0.031388 5.503527 3.0893564 1.0057728 0.50329995
-0.031388 4.052675 6.757905 1.0112078 0.74765456
-0.575007 4.0171185 6.757905 0.9838294 0.7484808
-0.031388 5.5434446 2.7700574 0.005541487 0.4870955
-0.031388 4.0067506 6.7952538 0.01137872 0.7515414
--0.718834 5.5082073 2.4585855 0.025633477 0.47001156
--0.500073 3.9293833 6.817662 0.03882511 0.75120044
--1.428452 5.3391147 2.1639483 0.04450878 0.4521942
--0.997843 3.7918923 6.825131 0.06500107 0.74775654
--2.073331 5.0405197 1.8942112 0.06237606 0.43371034
--1.461182 3.6017723 6.817662 0.089820266 0.741511
--2.63644 4.6360674 1.6486601 0.07940279 0.414559
--1.890154 3.3654234 6.795252 0.113271646 0.7327123
--3.107582 4.1505284 1.4265859 0.09573633 0.39481455
--2.285399 3.0879483 6.757905 0.13540967 0.72156155
--3.482922 3.6080697 1.2272768 0.111516744 0.37461644
--2.647838 2.7729843 6.7056155 0.15634349 0.70821834
--3.764302 3.0307167 1.0500207 0.12689206 0.35416016
--2.978366 2.4225883 6.6383896 0.17622815 0.69280916
--3.958347 2.4370458 0.89410657 0.1420358 0.33368936
--3.27748 2.0371513 6.5562224 0.19525684 0.6754345
--4.075356 1.8410728 0.75882244 0.15716775 0.3134857
--3.467255 -1.3904667 6.7952504 0.3340477 0.608784
--3.614235 -0.9188556 6.757904 0.31554228 0.61734426
--3.710995 -0.4244086 6.705615 0.29622287 0.6255392
--3.759323 0.093756415 6.63839 0.27577132 0.6331467
--3.758725 0.6189135 6.556223 0.2546477 0.63951945
--4.127984 1.2513579 0.6434573 0.17257829 0.2938586
--4.24095 0.6857308 0.6434572 0.1906079 0.28234434
--6.355285 0.6401103 2.8475392 0.22654371 0.41716567
--6.691775 -0.52088773 2.9290528 0.25415236 0.40810224
--6.46381 -0.3672256 2.468638 0.24732351 0.38806212
--6.092939 0.09375849 2.11664 0.23306248 0.37417847
--4.279669 0.093757845 0.643457 0.20960702 0.27004156
--4.129715 -0.48280114 0.5473009 0.2269708 0.2503759
--4.019691 -1.0337011 0.54730076 0.24659936 0.23808098
--3.945562 -1.5983311 0.64345664 0.2690501 0.23316258
--3.820204 -2.1683931 0.7588215 0.2926047 0.23026302
--3.629997 -2.7392793 0.8941053 0.3171566 0.22929305
--3.362822 -3.3004522 1.0500191 0.34253865 0.230225
--3.009489 -3.8362372 1.227275 0.36854997 0.23307939
--2.564944 -4.3268194 1.4265839 0.39498344 0.23791549
--2.029276 -4.7494583 1.6486589 0.42165 0.24483006
--1.4085 -5.0799084 1.8942088 0.44839677 0.25396597
--0.715143 -5.2940564 2.163946 0.4751156 0.26553065
-0.03139 -5.3697605 2.458582 0.50174004 0.27982032
-0.779712 -5.3069816 2.7700558 0.52731514 0.29696205
-1.484013 -5.125667 3.0893538 0.55103385 0.3166744
-2.129749 -4.838054 3.4157648 0.57310677 0.3387997
-2.704841 -4.458125 3.74858 0.5937544 0.363264
-3.199739 -4.000981 4.087086 0.61318696 0.3900475
-3.607433 -3.482286 4.430571 0.631598 0.41915512
-3.923416 -2.91774 4.7783256 0.649168 0.4505863
-4.14559 -2.3226311 5.1296344 0.6660708 0.48430222
-4.010524 -2.2433035 5.4837923 0.6626432 0.50882846
-3.553448 -2.6314745 5.8400836 0.63959455 0.5242182
-3.061654 -2.9365075 6.1977973 0.61704844 0.5417555
-2.548781 -3.1596928 6.556222 0.5951077 0.561154
-2.090983 -3.4129567 6.638388 0.57581794 0.5606898
-1.603848 -3.6020217 6.705615 0.55662656 0.56063044
-1.094432 -3.7258646 6.757903 0.5374043 0.56099004
-0.568701 -3.7840896 6.79525 0.518003 0.5617639
-0.03139 -3.7766297 6.817661 0.49825123 0.56292933
--0.501395 -3.7048166 6.825129 0.47842667 0.5644404
--1.006659 -3.5751686 6.81766 0.45911968 0.5661779
--8.135433 0.09375776 5.199591 0.255567 0.51170385
--8.034413 -0.094051294 5.429968 0.26041278 0.5182789
--7.851192 -0.24771233 5.60153 0.26450133 0.5234776
--8.127935 0.2815669 4.61478 0.24877758 0.49237978
-4.145591 2.5101469 5.1296363 0.8325211 0.5822884
-4.010525 2.4308186 5.4837947 0.82919127 0.60694075
-3.923415 3.1052568 4.778327 0.8560093 0.5688258
-3.553448 2.8189905 5.8400846 0.84684646 0.64288765
-3.607433 3.669802 4.430573 0.8787729 0.55558664
-3.061654 3.1240225 6.1977987 0.86509794 0.67894113
-3.199739 4.188498 4.087088 0.90088737 0.5424464
-2.548781 3.3472073 6.556223 0.88432366 0.71459454
-2.70484 4.645641 3.7485821 0.92244405 0.5292327
-2.090983 3.6004713 6.63839 0.907425 0.727863
-2.129748 5.02557 3.4157672 0.94354683 0.5157454
-1.603848 3.7895362 6.705617 0.9317004 0.73877805
-1.484012 5.313183 3.0893552 0.96431094 0.5017719
-1.094431 3.9133794 6.757905 0.9571871 0.7470598
-0.779712 5.4944997 2.7700582 0.9848616 0.48710063
-0.031388 5.5434446 2.7700574 1.0055414 0.4870955
-0.031388 4.0067506 6.7952538 1.0113788 0.7515414
-0.568701 3.9716063 6.795252 0.983841 0.75238776
-0.031388 5.5572777 2.4585845 0.0053321803 0.471535
-0.031388 3.9641454 6.8176627 0.011520252 0.7544093
--0.715144 5.4815745 2.1639483 0.02514516 0.45508114
--0.494939 3.8923314 6.825131 0.03899915 0.75295204
--1.4085 5.2674265 1.8942113 0.043771185 0.43783447
--0.989714 3.7626843 6.817662 0.06510218 0.7483231
--2.029276 4.9369755 1.6486611 0.06139839 0.41981363
--1.452836 3.5821564 6.795252 0.08975463 0.74082977
--2.564944 4.5143375 1.426586 0.07819108 0.40110832
--1.884893 3.3564644 6.757905 0.11296642 0.7307256
--3.00949 4.0237556 1.2272769 0.09429981 0.38187268
--2.286904 3.0898933 6.705616 0.13481715 0.71821576
--3.362822 3.4879699 1.0500208 0.1098742 0.36231807
--2.660017 2.7851634 6.6383896 0.15544194 0.7034672
--3.629997 2.9267957 0.8941067 0.12507959 0.3427046
--3.005164 2.4433234 6.5562224 0.1750194 0.68661803
--3.820204 2.3559108 0.75882256 0.14011547 0.32332945
--3.945562 1.7858489 0.6434574 0.15523721 0.30451337
--3.256465 -1.8277856 6.7952504 0.35179988 0.5992117
--3.462044 -1.3864027 6.7579036 0.33365816 0.60674405
--3.619277 -0.9195136 6.705615 0.31494823 0.6139863
--3.728893 -0.4267636 6.638389 0.29537606 0.62081736
--3.793075 0.09375644 6.556223 0.27462792 0.6270008
--4.019691 1.2212188 0.5473013 0.17077926 0.28658623
--4.129715 0.6703189 0.5473012 0.18865594 0.27513653
--6.092055 0.28156748 2.130311 0.22863428 0.37762114
--6.479067 0.4352284 2.415366 0.22858521 0.3974639
--6.463809 0.5547434 2.4686382 0.22621033 0.40124086
--6.444683 0.64011043 2.5354142 0.22468367 0.4050503
--6.730618 0.69133127 2.8538742 0.22689374 0.42209664
--6.691776 0.7084043 2.9290533 0.22689101 0.4250701
--6.652931 0.69133127 3.0042331 0.22763574 0.4275879
--6.616268 0.6401103 3.0751972 0.22912225 0.42948744
--6.558184 0.43522823 3.187615 0.23429331 0.43076044
--6.541122 0.28156722 3.220637 0.23795146 0.42980108
--6.583959 0.55474323 3.1377292 0.2313446 0.4306012
--6.843454 -0.4525938 3.311022 0.2552219 0.4264662
--6.893527 -0.5038138 3.2447088 0.2558699 0.42354223
--6.732404 0.09375817 3.458095 0.24414884 0.43899313
--6.740831 -0.09404982 3.446934 0.24824034 0.43601933
--6.764131 -0.24771181 3.416074 0.2514398 0.43284267
--6.799332 -0.3672258 3.369457 0.25375783 0.42961112
--6.946572 -0.5208878 3.1744547 0.25574484 0.42096618
--6.730617 -0.50381374 2.8538737 0.25324476 0.40568987
--6.767283 -0.45259368 2.78291 0.25161964 0.4038944
--6.799591 -0.36722565 2.720377 0.2493151 0.40285426
--6.489168 -0.094050564 2.380102 0.2404205 0.3885354
--6.492822 0.093758434 2.367347 0.23603855 0.390713
--6.479067 -0.24771157 2.415366 0.24419366 0.38771474
--4.167427 0.09375787 0.547301 0.20750763 0.2628858
--4.056081 -0.4725981 0.46963984 0.22527339 0.24518113
--3.948004 -1.0137501 0.46963972 0.24481355 0.2328952
--3.842019 -1.5542761 0.54730064 0.2666239 0.22603606
--3.698474 -2.0968971 0.6434565 0.2897613 0.22148292
--3.503223 -2.6411862 0.75882137 0.3141495 0.21912943
--3.242723 -3.1803532 0.8941052 0.3396153 0.21892731
--2.905569 -3.7019322 1.0500191 0.36592248 0.22087158
--2.483809 -4.1886764 1.227275 0.39281008 0.2249877
--1.974051 -4.6196647 1.4265839 0.42002988 0.2313275
--1.37836 -4.9716153 1.6486588 0.4473755 0.23997653
--0.70494 -5.2204223 1.8942088 0.47469908 0.2510717
-0.03139 -5.3428855 2.163946 0.50191116 0.26482412
-0.781612 -5.3206906 2.4585829 0.52801496 0.28140718
-1.494731 -5.1641793 2.7700548 0.5521793 0.30052426
-2.154723 -4.896754 3.0893538 0.5746437 0.32188293
-2.748019 -4.531642 3.4157648 0.5956473 0.3454033
-3.263597 -4.08351 3.74858 0.61541605 0.37107033
-3.693018 -3.5678709 4.087086 0.6341572 0.39890724
-4.030421 -3.000536 4.430571 0.6520628 0.4289511
-4.272449 -2.3971393 4.7783256 0.66931665 0.46122736
-4.418139 -1.7726912 5.1296353 0.68610483 0.49571803
-4.274126 -1.7114173 5.4837937 0.68248343 0.52019155
-3.869304 -2.1603603 5.8400836 0.65901655 0.53463644
-3.420085 -2.5282834 6.1977973 0.636063 0.55109966
-2.940713 -2.8155668 6.5562224 0.6137187 0.56931806
-2.521441 -3.1243587 6.638388 0.59440374 0.5676899
-2.067165 -3.3724027 6.705615 0.57529056 0.5663998
-1.585264 -3.5583436 6.757903 0.5562588 0.5654646
-1.0821 -3.6815557 6.79525 0.53717417 0.56488353
-0.562851 -3.7418678 6.81766 0.51788163 0.5646407
-0.03139 -3.7392426 6.825129 0.49820238 0.5647052
--0.501034 -3.6748147 6.81766 0.47826353 0.565015
--1.009298 -3.5546536 6.79525 0.45877078 0.56545067
--1.483568 -3.3946416 6.79525 0.44016653 0.5679739
--2.993155 -2.2293916 6.7952504 0.3693308 0.5906757
--2.680767 -2.5910807 6.7952504 0.38679156 0.58322936
--2.322745 -2.9086537 6.7952504 0.40432414 0.5769254
--1.922531 -3.1779077 6.795249 0.4220681 0.57182
--7.788406 -0.36722633 5.57233 0.26669663 0.52117306
--7.843826 -0.45259428 5.367929 0.26702124 0.5122647
--7.829362 -0.5038143 5.146473 0.26672265 0.5032961
--7.728594 -0.52088827 5.128985 0.26712424 0.50254273
--7.627826 -0.5038143 5.111497 0.26687294 0.5021841
--7.556831 -0.4525942 4.917167 0.26481906 0.49523816
--7.472413 -0.36722618 4.917167 0.26325473 0.49630988
--8.16389 0.09375783 4.917167 0.25395364 0.50131863
--8.119425 -0.094051234 5.196813 0.25900877 0.50948966
--7.991141 -0.24771228 5.415882 0.26323357 0.516097
--7.392902 -0.24771212 4.741088 0.25986198 0.49072993
--7.313033 -0.09405009 4.559341 0.25565493 0.4852257
--7.297567 0.09375791 4.564315 0.25185052 0.4877935
--7.313033 0.2815669 4.559341 0.2479891 0.48998684
--7.35579 0.4352279 4.54559 0.24481712 0.49139214
--7.420383 0.55474293 4.524817 0.24235946 0.49207497
--7.501349 0.64010996 4.498778 0.24061857 0.4921163
--7.593231 0.6913309 4.469228 0.2395815 0.49160364
--7.690575 0.70840394 4.437923 0.23922707 0.49062413
--7.787916 0.6913309 4.406618 0.23953152 0.48926017
--7.879799 0.64010996 4.377068 0.2404737 0.48758674
--7.960765 0.55474293 4.351029 0.24203877 0.48567066
--8.025357 0.43522796 4.330256 0.24422155 0.48357013
--8.068116 0.28156695 4.316506 0.2470293 0.48133588
--8.143893 0.0937579 4.612038 0.25221694 0.4901377
-4.418139 1.9602078 5.1296363 0.81181824 0.57145506
-4.274126 1.8989336 5.4837947 0.80825543 0.59602827
-4.27245 2.5846558 4.7783265 0.83553433 0.55906105
-3.869305 2.3478765 5.8400846 0.825488 0.63283855
-4.030421 3.1880531 4.430573 0.8584914 0.5470002
-3.420085 2.7157986 6.1977983 0.84302646 0.66983354
-3.693018 3.755387 4.087088 0.8807597 0.53513134
-2.940713 3.0030813 6.556224 0.8612144 0.7065371
-3.263596 4.271027 3.748582 0.90242225 0.52326745
-2.521441 3.3118734 6.63839 0.88347334 0.7211412
-2.748019 4.719158 3.4157672 0.923571 0.5111962
-2.067164 3.5599174 6.705617 0.9068197 0.7335928
-2.154723 5.08427 3.0893562 0.94430584 0.49869433
-1.585264 3.7458584 6.757905 0.93133783 0.7436355
-1.494731 5.3516965 2.7700572 0.96473444 0.4855377
-1.0821 3.8690703 6.795252 0.9570429 0.75097245
-0.781611 5.5082073 2.4585855 0.9849725 0.47151166
-0.031388 5.5572777 2.4585845 1.0053322 0.471535
-0.031388 3.9641454 6.8176627 1.0115203 0.7544093
-0.56285 3.9293842 6.817662 0.98386246 0.75527304
-0.031388 5.5304036 2.1639485 0.0051498 0.45654434
-0.031388 3.9267573 6.825131 0.011625254 0.7561808
--0.704941 5.4079385 1.8942113 0.024690986 0.44064057
--0.490782 3.8623292 6.817662 0.039082706 0.75353026
--1.378361 5.1591334 1.6486611 0.0430595 0.4238442
--0.984004 3.7421694 6.795252 0.065058686 0.7476387
--1.974052 4.8071814 1.4265862 0.06043884 0.40626094
--1.448771 3.5726054 6.757905 0.089496344 0.7388231
--2.483809 4.3761945 1.227277 0.07699501 0.38805917
--1.886138 3.3585854 6.705616 0.11243136 0.727345
--2.905569 3.8894508 1.0500209 0.09288667 0.36946502
--2.297442 3.1035123 6.63839 0.13397163 0.7134197
--3.242723 3.3678708 0.89410675 0.10827931 0.3507547
--2.68398 2.8091264 6.5562234 0.15427895 0.69722754
--3.503223 2.8287039 0.7588227 0.12336231 0.3322429
--3.698474 2.2844148 0.64345753 0.13836849 0.31426677
--1.469713 3.6218243 6.556224 0.08752646 0.7240665
--3.842019 1.7417939 0.5473014 0.15359432 0.29716828
--3.254368 -1.8225247 6.7579036 0.3513654 0.59712565
--3.469727 -1.3873645 6.7056146 0.3330451 0.6033182
--3.639097 -0.9241196 6.638389 0.31411842 0.6091907
--3.76342 -0.43139857 6.556222 0.29428318 0.61462164
--3.531252 -1.4073446 6.5562224 0.3311324 0.59206885
--3.948004 1.2012678 0.46964025 0.16941881 0.28127575
--4.056081 0.6601159 0.46964014 0.18717776 0.26987538
--6.489169 0.28156742 2.380103 0.23184614 0.39389384
--6.825365 0.43522835 2.670492 0.23150066 0.4119814
--6.799591 0.55474335 2.7203772 0.22918117 0.41540307
--6.767282 0.6401104 2.7829092 0.22765255 0.41882396
--6.740831 0.28156716 3.446933 0.2399378 0.44118524
--6.90045 0.09375812 3.687876 0.24590297 0.44992864
--6.910866 -0.09404988 3.677546 0.24990173 0.44705227
--6.939656 -0.24771187 3.648986 0.25303292 0.44402725
--6.98315 -0.36722586 3.605842 0.25530452 0.44099247
--7.03767 -0.45259386 3.55176 0.25674325 0.43807852
--7.099543 -0.50381386 3.4903889 0.25738758 0.43540683
--6.99962 -0.5038138 3.1042018 0.2548908 0.41885948
--6.825365 -0.24771163 2.670492 0.2463652 0.40271175
--7.049691 -0.45259374 3.037888 0.2533496 0.41734004
--7.093814 -0.3672257 2.979453 0.2511588 0.41652548
--6.842426 -0.09405062 2.637469 0.24279925 0.40361655
--6.848598 0.093758374 2.625525 0.23864152 0.40572977
--4.093125 0.09375789 0.46963996 0.2059148 0.2576649
--4.029447 -0.46890813 0.40976387 0.22428517 0.24223612
--3.922074 -1.0065331 0.40976375 0.24377364 0.22995532
--3.773476 -1.5251131 0.4696396 0.26476914 0.22084114
--3.601364 -2.0398612 0.5473005 0.28728563 0.21431714
--3.391511 -2.5547473 0.6434564 0.31131464 0.21027143
--3.129358 -3.0669882 0.7588213 0.33670795 0.20864764
--2.801648 -3.5676272 0.89410514 0.3632107 0.20942926
--2.397854 -4.0423265 1.050019 0.39050928 0.21262264
--1.911382 -4.4723706 1.2272749 0.41828474 0.21824817
--1.34058 -4.8358665 1.4265838 0.44625938 0.22634521
--0.689528 -5.1091886 1.6486588 0.47422636 0.23699048
-0.03139 -5.2685833 1.8942087 0.50205684 0.2503217
-0.777922 -5.2940564 2.163946 0.52871656 0.26642284
-1.498446 -5.1775255 2.458582 0.5533442 0.2850235
-2.170391 -4.9335766 2.7700558 0.57618845 0.3058117
-2.780353 -4.586693 3.0893538 0.59752584 0.32857755
-3.315799 -4.150977 3.415765 0.6176015 0.35330328
-3.766817 -3.64167 3.74858 0.63663816 0.3800188
-4.126129 -3.0745919 4.087086 0.65484 0.40878147
-4.38905 -2.465622 4.4305716 0.6724013 0.43965563
-4.553403 -1.8302422 4.7783256 0.6895164 0.47268915
-4.619358 -1.1831242 5.1296353 0.7063922 0.50787854
-4.468739 -1.1412053 5.4837923 0.7026269 0.53232336
-4.12355 -1.6473514 5.8400836 0.67863107 0.5459365
-3.72398 -2.0750074 6.1977973 0.65517867 0.5614232
-3.284838 -2.4236348 6.5562215 0.6323513 0.57854277
-2.909117 -2.7839706 6.6383886 0.6129123 0.5758242
-2.492645 -3.0871427 6.705615 0.5937797 0.57337606
-2.043105 -3.3314388 6.757903 0.57483554 0.57121724
-1.567239 -3.5159776 6.79525 0.55595416 0.56934893
-1.07066 -3.6404498 6.81766 0.5369947 0.5677581
-0.557717 -3.7048166 6.825129 0.51779497 0.5664192
-0.03139 -3.7089696 6.81766 0.49816757 0.5652971
--0.503165 -3.6537426 6.79525 0.47804213 0.56431293
--2.994314 -2.2230306 6.7579036 0.36883911 0.58855575
--2.684993 -2.5837297 6.7579036 0.38624173 0.58109015
--2.329516 -2.9004326 6.7579026 0.40372935 0.5747815
--1.930991 -3.1689496 6.757902 0.42145854 0.56968397
--1.492529 -3.3850896 6.757903 0.43959108 0.5658552
--1.017238 -3.5446637 6.757902 0.4582974 0.5633551
--7.754125 -0.5208882 4.917167 0.26582727 0.49438542
--7.652633 -0.5038142 4.917167 0.26566544 0.4946013
--7.459552 -0.36722612 4.729635 0.26211584 0.4888216
--8.147765 -0.09405117 4.917167 0.25739995 0.49919444
--8.075161 -0.24771224 5.189131 0.26183456 0.50752366
--7.92577 -0.36722627 5.394602 0.26543427 0.5140774
--7.35579 -0.24771208 4.54559 0.25866973 0.4827907
--7.252307 -0.094050035 4.353373 0.2543628 0.4766961
--7.237653 0.09375796 4.360145 0.25053412 0.4793409
--7.252307 0.28156695 4.353373 0.2466315 0.48149857
--7.292825 0.43522796 4.334652 0.24340783 0.482766
--7.517826 0.69133097 4.230694 0.23798308 0.4821641
--7.610069 0.708404 4.188076 0.23756686 0.4808493
--7.70231 0.69133097 4.145456 0.23781686 0.47914976
--7.789378 0.64011 4.105228 0.23871577 0.4771582
--8.08358 0.09375797 4.311532 0.25048482 0.47901192
--8.127934 -0.0940511 4.61478 0.25568697 0.48808852
-4.619358 1.3706408 5.1296363 0.7910285 0.5597368
-4.468739 1.3287216 5.4837947 0.78729457 0.5842508
-4.553403 2.0177588 4.7783265 0.8150593 0.5483022
-4.12355 1.8348676 5.8400846 0.80431694 0.62184024
-4.389051 2.653139 4.4305725 0.83828205 0.53731734
-3.723981 2.2625237 6.1977983 0.82134825 0.65966696
-4.126129 3.262109 4.087088 0.860767 0.5266264
-3.284838 2.6111493 6.5562234 0.83870727 0.6972784
-3.766817 3.829186 3.748582 0.8825961 0.5160271
-2.909117 2.9714854 6.6383896 0.86022717 0.7130439
-3.315799 4.338493 3.415767 0.9038567 0.5052939
-2.492645 3.2746572 6.705617 0.8827171 0.72683907
-2.780353 4.77421 3.0893552 0.9246395 0.49419233
-2.043105 3.5189533 6.757904 0.9063022 0.73842996
-2.170391 5.1210947 2.7700572 0.9450394 0.48248786
-1.567238 3.7034934 6.795252 0.9310488 0.7475417
-1.498445 5.3650427 2.4585843 0.96515626 0.4699527
-1.07066 3.8279643 6.817662 0.95694625 0.753864
-0.777921 5.4815745 2.1639483 0.98510104 0.45649514
-0.031388 5.5304036 2.1639485 1.0051498 0.45654434
-0.031388 3.9267573 6.825131 1.0116253 0.7561808
-0.557717 3.8923314 6.825131 0.9838921 0.7570581
-0.031388 5.4561005 1.8942113 0.0049958387 0.44204682
-0.031388 3.8964844 6.817662 0.011686603 0.7567701
--0.689529 5.2967057 1.6486613 0.024261296 0.4265725
--0.487863 3.8412573 6.795252 0.039065056 0.7528444
--1.340581 5.0233846 1.4265862 0.042366732 0.4102001
--0.981224 3.7321784 6.757905 0.06485976 0.74561316
--1.911382 4.6598873 1.227277 0.059496112 0.39311165
--1.449733 3.5748653 6.705616 0.08903805 0.7354059
--2.397854 4.2298446 1.0500209 0.07582236 0.37554637
--1.894854 3.3734243 6.63839 0.11166572 0.722498
--2.801649 3.7551448 0.89410686 0.09151832 0.35779542
--2.318177 3.1303103 6.556224 0.13288076 0.70712066
--3.129358 3.2545059 0.7588228 0.10677181 0.34019038
--3.391511 2.7422647 0.64345765 0.12180339 0.3230869
--3.601363 2.2273788 0.54730153 0.1368844 0.30684417
--1.912005 3.4026263 6.556224 0.1106771 0.71613145
--2.422753 -2.9427958 6.5562215 0.40063486 0.55952054
--3.773476 1.7126309 0.46964037 0.15235335 0.29180273
--3.265056 -1.8237696 6.7056146 0.35071036 0.5936385
--3.492173 -1.3940976 6.6383886 0.33220318 0.59844077
--3.675583 -0.9331815 6.556223 0.31305322 0.60291094
--3.922074 1.1940509 0.4097643 0.1686259 0.27826542
--4.029448 0.6564259 0.40976414 0.18631682 0.26689288
--6.99962 0.6913312 3.1042023 0.22949891 0.43465358
--6.946573 0.70840424 3.1744552 0.2294313 0.4373291
--6.893527 0.6913312 3.2447093 0.2300876 0.43957293
--6.843455 0.64011025 3.3110232 0.23146912 0.4412356
--6.799332 0.5547432 3.3694572 0.23357615 0.44216222
--6.764132 0.43522817 3.416074 0.23640388 0.442196
--7.16509 -0.52088785 3.4253697 0.25728166 0.43308982
--7.230637 -0.50381386 3.3603518 0.25647047 0.43123364
--7.129014 -0.24771169 2.932836 0.2483501 0.41653675
--6.842426 0.28156736 2.637469 0.23464082 0.4087064
--4.06625 0.093757905 0.40976402 0.20498742 0.2547051
--4.02322 -0.4680451 0.3586619 0.22363147 0.2403171
--3.916012 -1.0048461 0.35866177 0.24308634 0.22803944
--3.748683 -1.5145651 0.40976363 0.26368865 0.21789618
--3.53708 -2.0021052 0.46963948 0.285387 0.20909424
--3.302393 -2.4857912 0.5473004 0.30883428 0.20304124
--3.029463 -2.9670923 0.6434563 0.3339505 0.19968465
--2.703556 -3.4408534 0.7588212 0.3604955 0.19901046
--2.311898 -3.8959773 0.894105 0.38811797 0.20102249
--1.844988 -4.3163257 1.0500189 0.4164237 0.20572683
--1.297706 -4.6818166 1.2272749 0.4450454 0.21313131
--0.670208 -4.9697533 1.4265838 0.47369465 0.22326271
-0.03139 -5.1563416 1.6486588 0.5021825 0.2361945
-0.767719 -5.2204213 1.8942088 0.5294204 0.251931
-1.491229 -5.1515965 2.163946 0.554529 0.2700942
-2.17582 -4.9463377 2.4585829 0.57776165 0.29039237
-2.800637 -4.6212296 2.7700548 0.59941155 0.31259927
-3.354891 -4.201498 3.089353 0.61976516 0.33657208
-3.827148 -3.7020006 3.415765 0.63906264 0.36234063
-4.208658 -3.138449 3.7485802 0.657522 0.38997024
-4.493342 -2.526875 4.0870857 0.6753478 0.41954678
-4.677728 -1.883139 4.4305716 0.6927427 0.45115894
-4.760826 -1.2224962 4.7783256 0.70992005 0.48487112
-4.743964 -0.5592133 5.129637 0.72711706 0.5206818
-4.589255 -0.5377763 5.483794 0.7232619 0.545122
-4.311256 -1.0973765 5.8400836 0.6985978 0.5580291
-3.9686 -1.5814245 6.1977973 0.6745306 0.57264614
-3.576605 -1.9884505 6.5562215 0.6511231 0.58875513
-3.249505 -2.3962946 6.6383886 0.63145036 0.58501893
-2.875837 -2.7506907 6.7056155 0.6121981 0.58148444
-2.463557 -3.0495496 6.757903 0.5932426 0.57817346
-2.019769 -3.2917047 6.79525 0.5744604 0.5750885
-1.550516 -3.4766757 6.81766 0.5557195 0.57221717
-1.060621 -3.6043777 6.825129 0.53687215 0.5695358
-0.55356 -3.6748147 6.81766 0.5177475 0.56701297
-0.03139 -3.6877067 6.795251 0.4981497 0.5646132
--0.508229 -3.6434817 6.757903 0.47775668 0.56224173
--7.924479 -0.45259425 5.16298 0.26569536 0.5044009
--7.855618 -0.5038142 4.917167 0.26533934 0.49457535
--7.543098 -0.45259413 4.715278 0.26361117 0.48726663
--8.103184 -0.24771217 4.917167 0.26025558 0.49746677
--8.008296 -0.36722624 5.177527 0.26406258 0.50582004
--7.354032 0.554743 4.306373 0.24089049 0.48323014
--7.430757 0.64011 4.270923 0.23908524 0.48299336
--7.866103 0.55474305 4.069778 0.2402523 0.47495803
--7.92731 0.43522802 4.041498 0.24242468 0.47262412
--7.96783 0.28156704 4.022778 0.24524331 0.47022408
--7.982484 0.09375804 4.016006 0.24873382 0.46782014
--8.068116 -0.094051026 4.316506 0.25399214 0.4770107
--8.083812 -0.24771209 4.622362 0.25858712 0.4865819
-4.743964 0.74672973 5.129636 0.7699852 0.54722387
-4.589255 0.7252937 5.483793 0.7661434 0.57169974
-4.760826 1.4100128 4.7783265 0.79444426 0.5366415
-4.311256 1.2848926 5.8400846 0.78319305 0.6100007
-4.677728 2.070656 4.4305725 0.8180283 0.5266301
-3.9686 1.7689406 6.1977983 0.7999449 0.64857334
-4.493342 2.714392 4.0870876 0.8408098 0.5170221
-3.576605 2.1759653 6.5562234 0.81670374 0.68697697
-4.208657 3.3259661 3.7485816 0.8628752 0.50760055
-3.249505 2.5838103 6.6383896 0.8376138 0.70374626
-3.827148 3.8895173 3.415767 0.8843142 0.49812603
-2.875837 2.9382052 6.7056165 0.85934836 0.7187065
-3.354891 4.389015 3.089355 0.90521574 0.48835173
-2.463557 3.2370644 6.757905 0.8820683 0.73164934
-2.800637 4.8087463 2.7700572 0.9256681 0.47803286
-2.019768 3.4792194 6.795252 0.9058848 0.74232095
-2.17582 5.1338544 2.4585843 0.9457603 0.46693122
-1.550516 3.6641903 6.817662 0.9308423 0.7504302
-1.491229 5.3391147 2.1639483 0.96558666 0.4549412
-1.06062 3.7918923 6.825131 0.9569013 0.7556556
-0.767718 5.4079394 1.8942113 0.98525155 0.4419736
-0.031388 5.4561005 1.8942113 1.0049958 0.44204682
-0.031388 3.8964844 6.817662 1.0116866 0.7567701
-0.55356 3.8623292 6.817662 0.98392814 0.7576564
-0.031388 5.3438597 1.6486613 0.0048639253 0.42792428
-0.031388 3.8752213 6.795253 0.011697646 0.75608516
--0.670208 5.1572695 1.4265862 0.023850216 0.4128531
--0.486441 3.8309953 6.757904 0.038937673 0.75080305
--1.297707 4.8693347 1.2272772 0.041690823 0.39696202
--0.981882 3.7345433 6.705616 0.064498894 0.7421602
--1.844989 4.5038424 1.050021 0.058575526 0.3805015
--1.456466 3.5906882 6.63839 0.08837906 0.73050475
--2.311898 4.083496 0.8941069 0.07468999 0.36377552
--2.703556 3.6283708 0.7588229 0.09022784 0.34713084
--3.029463 3.1546109 0.6434578 0.105405904 0.33094126
--3.302393 2.6733088 0.54730165 0.12048106 0.31558502
--3.537079 2.1896229 0.4696405 0.13576435 0.30142042
-2.380955 3.1303103 6.556223 0.8834404 0.72311866
-0.556544 3.8838713 6.556224 0.9841219 0.7397023
--1.469713 3.6218243 6.556224 1.0875264 0.7240665
--3.332115 -1.8496366 6.5562224 0.3487217 0.58223075
--3.079861 -2.2558086 6.5562224 0.36602634 0.57348716
--3.748683 1.7020829 0.4097644 0.1516293 0.28876153
--3.007974 -2.2245357 6.7056146 0.36812773 0.58502126
--3.290361 -1.8324856 6.6383886 0.34982914 0.5886865
--3.916012 1.1923639 0.3586623 0.1680995 0.2763053
--4.023221 0.6555629 0.35866216 0.18574604 0.26495028
--7.129014 0.4352283 2.932836 0.23408517 0.4254216
--7.093813 0.5547433 2.9794533 0.23181549 0.4285677
--7.04969 0.6401103 3.0378883 0.23029149 0.43168816
--6.910865 0.2815671 3.677545 0.24179587 0.45209268
--7.040043 0.09375807 3.917656 0.24755384 0.4603371
--7.052163 -0.09404993 3.908284 0.25147885 0.45754376
--7.08567 -0.24771193 3.882372 0.25455707 0.45465416
--7.136291 -0.36722592 3.843229 0.25679415 0.45179796
--7.199743 -0.45259392 3.794161 0.25821605 0.4490946
--7.271751 -0.5038139 3.7384777 0.2588613 0.44665304
--7.348035 -0.5208879 3.6794868 0.2587747 0.4445725
--7.292509 -0.4525938 3.298979 0.2549964 0.4299399
--7.152315 -0.09405069 2.901977 0.24494813 0.417502
--7.34703 -0.36722577 3.244898 0.25289646 0.42930964
--7.390523 -0.24771176 3.201755 0.25020048 0.4294466
--7.160743 0.09375831 2.890815 0.24096972 0.41956118
--7.152315 0.2815673 2.901978 0.2371246 0.4223767
--4.059967 0.09375791 0.35866204 0.20437337 0.25277692
--3.996546 -0.4643491 0.30827087 0.2227349 0.23773701
--3.890043 -0.99761903 0.30827075 0.24214017 0.22546488
--3.742886 -1.5120981 0.35866165 0.262975 0.21597688
--3.513828 -1.9884491 0.40976351 0.28428033 0.20613354
--3.243399 -2.4401443 0.46963936 0.30692545 0.19777106
--2.949771 -2.8874002 0.5473003 0.33152512 0.19236605
--2.617118 -3.3291411 0.6434562 0.35790387 0.18991962
--2.230762 -3.7578342 0.7588211 0.38570717 0.19044992
--1.778595 -4.160281 0.89410496 0.41447556 0.19396852
--1.252285 -4.5186143 1.0500189 0.44373953 0.20047067
--0.648283 -4.8115196 1.2272748 0.47310355 0.20994802
-0.03139 -5.0156426 1.4265838 0.502292 0.22241834
-0.752306 -5.1091886 1.6486588 0.5301404 0.23781365
-1.471278 -5.0799093 1.8942088 0.55573964 0.2556573
-2.165272 -4.9215465 2.163946 0.579368 0.27554607
-2.807666 -4.6331964 2.458582 0.60133016 0.2972757
-3.379414 -4.2331915 2.770055 0.6219319 0.32069027
-3.872325 -3.7471776 3.089354 0.6414554 0.345699
-4.276124 -3.1906517 3.4157653 0.66013336 0.37236878
-4.583272 -2.579694 3.7485802 0.6781814 0.40079504
-4.788927 -1.930452 4.0870867 0.6958103 0.4310889
-4.890853 -1.258684 4.4305716 0.7132391 0.46335787
-4.889274 -0.57934713 4.778326 0.7307081 0.497672
-4.786674 0.09375778 5.129636 0.7484951 0.5340066
-4.630562 0.09375769 5.483794 0.74461174 0.5584603
-4.427495 -0.5153634 5.840084 0.71911085 0.570813
-4.149198 -1.0522734 6.1977973 0.69428277 0.5846847
-3.811461 -1.5145656 6.5562224 0.670172 0.5998827
-3.538103 -1.9658365 6.6383886 0.650136 0.5952027
-3.212289 -2.3674986 6.7056155 0.6306529 0.59065276
-2.84222 -2.7170737 6.7579036 0.6115844 0.58626014
-2.435343 -3.0130856 6.79525 0.5928012 0.58202904
-1.998119 -3.2548447 6.81766 0.5741738 0.57794756
-1.535842 -3.4421847 6.825129 0.5555631 0.57399166
-1.052492 -3.5751686 6.81766 0.536813 0.5701302
-0.55064 -3.6537426 6.79525 0.5177443 0.5663298
-0.03139 -3.6773517 6.757903 0.49815145 0.56256026
--2.701192 -2.5854697 6.7056146 0.38547313 0.57752526
--2.347422 -2.9023786 6.7056146 0.40292054 0.5712027
--1.949373 -3.1710696 6.705614 0.42064744 0.56610525
--1.509757 -3.3873506 6.705614 0.438839 0.5622874
--1.031284 -3.5470276 6.705614 0.45768997 0.5598058
--0.516665 -3.6459098 6.705614 0.47740236 0.5587139
--7.738357 -0.52088815 4.681725 0.2644568 0.4853213
--7.637911 -0.50381416 4.698986 0.26437876 0.4860931
--7.420383 -0.36722606 4.524817 0.26089206 0.4805709
--8.035838 -0.36722618 4.917167 0.262534 0.49612245
--7.292825 -0.24771203 4.334653 0.2573821 0.47408777
--7.165664 -0.09404998 4.134956 0.25296792 0.4674451
--7.152126 0.09375801 4.143168 0.24909928 0.4701632
--7.165664 0.281567 4.134956 0.24514347 0.47230658
--7.203088 0.43522802 4.112253 0.24186125 0.47347757
--7.259626 0.55474305 4.077957 0.23928145 0.47377908
--7.410922 0.6913301 3.9861772 0.23624854 0.47225308
--7.496126 0.70840406 3.9344923 0.23577645 0.47067162
--7.581329 0.691331 3.8828063 0.23598045 0.46870056
--7.661754 0.64011014 3.8340182 0.23684694 0.46644652
--7.732624 0.5547421 3.7910273 0.23836829 0.46400687
--7.967828 -0.09405096 4.022778 0.25229374 0.46584317
--8.025357 -0.24771203 4.330256 0.2569426 0.4756698
--8.017162 -0.3672261 4.633815 0.26092625 0.48557803
-4.889274 0.7668639 4.778326 0.77352047 0.5241682
-4.427494 0.7028796 5.840084 0.76195085 0.59741277
-4.890853 1.446201 4.4305725 0.7975887 0.5150265
-4.149198 1.2397896 6.1977983 0.77867264 0.63666725
-4.788927 2.117969 4.0870876 0.8207704 0.5064049
-3.811461 1.7020814 6.5562234 0.7950789 0.67577606
-4.583272 2.76721 3.7485816 0.8431586 0.49807268
-3.538103 2.1533513 6.6383896 0.8155333 0.6934104
-4.276124 3.3781693 3.4157667 0.8648513 0.4897759
-3.212289 2.5550134 6.7056165 0.8366405 0.7093742
-3.872325 3.9346943 3.089356 0.88594294 0.4812547
-2.84222 2.9045882 6.7579045 0.85859317 0.72348684
-3.379414 4.4207087 2.770058 0.9065225 0.47225314
-2.435343 3.2006004 6.795252 0.8815421 0.73551905
-2.807666 4.8207135 2.4585843 0.9266744 0.46252316
-1.998119 3.4423594 6.817661 0.9055806 0.74519926
-2.165272 5.1090636 2.1639483 0.94648135 0.45194826
-1.535841 3.6296992 6.825131 0.93072724 0.7522225
-1.471277 5.2674255 1.8942113 0.96603256 0.44042492
-1.052491 3.7626843 6.817662 0.9569113 0.75626045
-0.752305 5.2967057 1.6486613 0.9854211 0.42782792
-0.031388 5.3438597 1.6486613 1.004864 0.42792428
-0.031388 3.8752213 6.795253 1.0116976 0.75608516
-0.55064 3.8412573 6.795252 0.98396844 0.7569753
-0.031388 5.2031603 1.4265862 0.004749545 0.41415244
-0.031388 3.8648663 6.757905 0.011652791 0.75403357
--0.648284 4.9990354 1.2272772 0.023455145 0.3995423
--0.486777 3.8334243 6.705616 0.038695313 0.7473188
--1.252286 4.7061315 1.050021 0.041034613 0.3842662
--0.986488 3.7510924 6.63839 0.06397551 0.73720574
--1.778596 4.347799 0.894107 0.057689458 0.36863774
--2.230763 3.9453518 0.758823 0.07362456 0.35301626
--2.617118 3.5166588 0.64345783 0.0890606 0.33779144
--2.949771 3.0749187 0.5473017 0.104248755 0.32336065
--3.243399 2.6276617 0.4696406 0.11948357 0.31010196
--3.513827 2.175967 0.4097645 0.13510989 0.2983466
-3.559456 1.5948595 6.5562234 0.7935849 0.68416077
-3.821503 -0.4313976 6.556223 0.708233 0.63285714
-1.974783 3.4026263 6.556223 0.9074688 0.7298217
-1.532491 3.6218243 6.556224 0.9322521 0.73495466
-0.031388 3.9182212 6.556224 1.0111547 0.73886675
--0.493767 3.8838713 6.556223 1.0378665 0.73574334
--0.995551 3.7836564 6.556224 0.06329544 0.7306963
--3.035901 -2.2350736 6.6383886 0.3671903 0.5800103
--2.776177 -2.6216116 6.5562224 0.38325742 0.5659008
--3.742886 1.6996158 0.35866243 0.1511478 0.28678176
--3.890043 1.1851369 0.30827126 0.16738509 0.2736638
--3.996547 0.6518669 0.30827114 0.18496874 0.26233456
--7.230638 0.69133115 3.3603523 0.23185262 0.4465346
--7.16509 0.7084042 3.4253702 0.23173438 0.44896495
--7.099543 0.69133115 3.4903893 0.2323206 0.45098224
--7.037672 0.6401102 3.5517612 0.23361823 0.45244834
--6.98315 0.5547431 3.6058433 0.23563254 0.45321894
--6.939656 0.43522814 3.648985 0.2383626 0.4531474
--7.424324 -0.5038139 3.6204958 0.25800166 0.4429449
--7.496332 -0.45259386 3.564812 0.2565847 0.44185755
--7.419315 -0.09405076 3.173195 0.24692951 0.4304619
--4.033052 0.09375793 0.30827102 0.20353417 0.2501826
--3.937444 -0.45616007 0.25930387 0.22143431 0.2340913
--3.832504 -0.98160505 0.25930375 0.24076262 0.221829
--3.718057 -1.5015341 0.30827063 0.26198885 0.21339859
--3.508391 -1.9852561 0.35866153 0.28354993 0.20420402
--3.222061 -2.423633 0.40976343 0.3058121 0.1947838
--2.897016 -2.8346462 0.4696393 0.32965147 0.18703015
--2.548161 -3.2400231 0.5473002 0.3556117 0.182492
--2.159267 -3.6361032 0.6434561 0.38339108 0.1812163
--1.715925 -4.012986 0.75882107 0.41249806 0.18324067
--1.206864 -4.355412 0.89410496 0.442362 0.18857071
--0.625055 -4.6438847 1.0500189 0.47245696 0.19718297
-0.03139 -4.8559747 1.2272748 0.5023885 0.20905301
-0.732986 -4.9697523 1.4265838 0.53088737 0.22404702
-1.441139 -4.9716163 1.6486588 0.5569976 0.24159591
-2.136109 -4.8530025 1.8942088 0.58101773 0.26119342
-2.79401 -4.6099453 2.163946 0.6032895 0.2825272
-3.387913 -4.2441745 2.458583 0.6241313 0.3054656
-3.900666 -3.7755187 2.770056 0.64384425 0.3299078
-4.326646 -3.2297437 3.0893533 0.66270125 0.35580406
-4.656789 -2.6228716 3.4157653 0.6809294 0.3832523
-4.884815 -1.9712499 3.7485805 0.6987475 0.41237426
-5.007154 -1.291052 4.0870857 0.71637964 0.44330192
-5.022834 -0.59785306 4.430573 0.7340685 0.47615206
-4.9333 0.09375786 4.778326 0.75209033 0.5109775
-4.467336 0.09375761 5.840084 0.7404026 0.5841562
-4.261036 -0.4922995 6.197798 0.7146354 0.59743965
-3.984852 -1.0065346 6.5562215 0.68966585 0.6118475
-3.770408 -1.4970986 6.6383886 0.6691077 0.606305
-3.497549 -1.9420176 6.7056155 0.6492624 0.60081154
-3.174696 -2.3384106 6.7579036 0.6299683 0.59540635
-2.809613 -2.6844666 6.7952504 0.61108124 0.59009856
-2.409169 -2.9792588 6.8176603 0.5924659 0.58487713
-1.979121 -3.2224967 6.825129 0.57398546 0.5797171
-1.523959 -3.4142578 6.81766 0.5554931 0.5745861
-1.046782 -3.5546536 6.79525 0.5368241 0.5694493
-0.549218 -3.6434808 6.757902 0.51778984 0.5642765
-0.03139 -3.6798017 6.705615 0.49817562 0.55904996
--7.951419 -0.4525942 4.917166 0.2642334 0.49515748
--7.838801 -0.50381416 4.664464 0.26388466 0.4849676
--7.690573 -0.5208881 4.437923 0.2630695 0.47582978
--7.593231 -0.5038141 4.469228 0.26305392 0.47703865
--7.501348 -0.45259407 4.498778 0.26234198 0.47863474
--7.330497 0.6401101 4.034966 0.2374124 0.4733296
--7.789162 0.4352281 3.756731 0.24054596 0.46147048
--7.826589 0.2815671 3.734028 0.24339335 0.45891967
--7.840125 0.09375811 3.725816 0.24693856 0.45643258
--7.826587 -0.09404989 3.734028 0.2505685 0.45445937
--7.927311 -0.24771196 4.041498 0.25530303 0.46462387
--7.960766 -0.36722603 4.351029 0.259341 0.47492826
-5.022834 0.78536993 4.430572 0.77679205 0.5025947
-4.261035 0.67981553 6.197798 0.75736415 0.62404317
-5.007154 1.478569 4.0870876 0.8005056 0.49485865
-3.984852 1.1940504 6.5562234 0.77368253 0.6637977
-4.884815 2.158766 3.7485814 0.8233271 0.48752466
-3.770408 1.6846144 6.6383896 0.7938585 0.68218243
-4.656789 2.8103893 3.4157667 0.84536576 0.48032314
-3.497549 2.1295333 6.7056165 0.81449187 0.69900775
-4.326645 3.4172602 3.0893548 0.8667275 0.47297966
-3.174696 2.5259254 6.7579045 0.8358035 0.7141249
-3.900666 3.9630363 2.770058 0.88750935 0.46522617
-2.809613 2.8719823 6.7952514 0.857979 0.7273327
-3.387912 4.4316916 2.458585 0.9077988 0.45680413
-2.409169 3.1667733 6.817662 0.88115495 0.73838264
-2.79401 4.7974625 2.1639483 0.9276732 0.4475868
-1.97912 3.4100113 6.825131 0.9054029 0.7469873
-2.136108 5.0405197 1.8942112 0.9472117 0.43746012
-1.523959 3.6017723 6.817662 0.9307119 0.75283134
-1.441138 5.1591325 1.6486611 0.9664944 0.42628455
-1.046782 3.7421694 6.795252 0.9569786 0.7555853
-0.732985 5.1572704 1.4265862 0.9856066 0.4140337
-0.031388 5.2031603 1.4265862 1.0047495 0.41415244
-0.031388 3.8648663 6.757905 1.0116528 0.75403357
-0.549218 3.8309963 6.757905 0.9840105 0.75492126
-0.031388 5.0434914 1.2272772 0.0046494487 0.40079123
-0.031388 3.8673162 6.705617 0.011548078 0.7505269
--0.625056 4.8314004 1.0500212 0.02307624 0.38677713
--0.489133 3.8504233 6.63839 0.038337037 0.74231684
--1.206865 4.54293 0.89410704 0.04040588 0.37232155
--1.715926 4.200504 0.75882304 0.056857795 0.35779238
--2.159267 3.8236217 0.6434579 0.07266236 0.34359214
--2.548161 3.4275408 0.5473018 0.088072695 0.3301351
--2.897016 3.0221639 0.46964067 0.10337598 0.31781912
--3.222061 2.611151 0.40976462 0.11889957 0.3069951
--3.508391 2.172774 0.35866252 0.13467371 0.29634628
-3.821503 0.6189135 6.556222 0.7507463 0.65946925
-3.721287 1.1206975 6.5562234 0.7721224 0.67215204
-3.340257 2.0371513 6.5562234 0.81530845 0.69539726
-3.067942 2.4433243 6.5562234 0.8374456 0.70573646
-2.36022 3.1035123 6.63839 0.88254243 0.7296827
-1.957632 3.3734243 6.63839 0.9067452 0.7364248
-1.519243 3.5906882 6.63839 0.9317347 0.7415883
-1.058328 3.7836564 6.556223 0.95780694 0.73831946
-0.55191 3.8504233 6.63839 0.98408985 0.7463504
-0.031388 3.8844693 6.638391 1.0113817 0.7454894
-0.031388 3.8844693 6.638391 0.011381749 0.7454894
--0.493767 3.8838713 6.556223 0.037866436 0.73574334
-0.031388 3.9182212 6.556224 0.011154608 0.73886675
--2.731031 -2.5976477 6.6383886 0.38447878 0.57247347
--2.377992 -2.9159977 6.6383886 0.40188977 0.56612706
-1.532491 -3.4343097 6.556222 0.55671644 0.55672747
--0.545414 -3.6963568 6.556222 0.4764744 0.54701513
--3.718057 1.6890519 0.3082714 0.15049669 0.28411183
--3.832504 1.1691229 0.25930426 0.16635945 0.26992264
--3.937445 0.64367795 0.25930414 0.18384907 0.258633
--7.390523 0.43522823 3.201754 0.23641714 0.4380234
--7.347029 0.55474323 3.2448983 0.23418906 0.44094568
--7.292509 0.64011025 3.2989793 0.23267058 0.44382098
--7.052163 0.28156704 3.908284 0.24353075 0.4624838
--7.203088 -0.24771197 4.112254 0.25600868 0.46468973
--7.259626 -0.36722597 4.077957 0.2582248 0.46201536
--7.330495 -0.45259398 4.034966 0.25964105 0.4595287
--7.410922 -0.503814 3.986179 0.2602955 0.45732498
--7.496126 -0.520888 3.9344919 0.2602328 0.45548898
--7.581329 -0.503814 3.8828058 0.25949833 0.4540983
--7.559784 -0.36722583 3.515745 0.25456014 0.44139683
--7.429729 0.09375825 3.162865 0.24309464 0.43247855
--7.610404 -0.24771182 3.476602 0.25195608 0.44165185
--7.643913 -0.09404982 3.45069 0.24879058 0.4427189
--7.419315 0.28156722 3.173196 0.23937471 0.43516454
--3.973413 0.09375794 0.25930402 0.20232114 0.2465141
--3.833925 -0.44181705 0.21246989 0.2195298 0.22894183
--3.731722 -0.95355606 0.21246977 0.23873776 0.21669662
--3.663041 -1.4781262 0.25930363 0.26054737 0.20975879
--3.485104 -1.9715791 0.3082705 0.28253636 0.20161226
--3.217072 -2.419773 0.35866144 0.30507788 0.19283715
--2.877935 -2.815565 0.4097633 0.3285582 0.18400583
--2.502514 -3.1810281 0.46963918 0.353834 0.17707434
--2.102231 -3.5389931 0.54730016 0.3813312 0.17366569
--1.660701 -3.8831923 0.64345604 0.4105864 0.17386147
--1.16399 -4.201361 0.758821 0.44095418 0.17770295
--0.601828 -4.476249 0.8941049 0.47176608 0.18517695
-0.03139 -4.6868205 1.0500189 0.50247455 0.19623616
-0.711061 -4.8115187 1.2272748 0.53166795 0.21069194
-1.403359 -4.8358665 1.4265838 0.55831903 0.22788751
-2.092054 -4.7494583 1.6486589 0.5827382 0.24721886
-2.756253 -4.5456605 1.8942089 0.60530317 0.2682742
-3.371402 -4.2228365 2.1639462 0.62637377 0.29081804
-3.910487 -3.7853396 2.458583 0.64626163 0.3147758
-4.358339 -3.2542667 2.7700562 0.665256 0.3400905
-4.711841 -2.6552057 3.0893533 0.6836213 0.366746
-4.963201 -2.0046008 3.4157655 0.7015841 0.39486772
-5.10744 -1.3189629 3.7485807 0.719373 0.42459992
-5.142293 -0.614405 4.087087 0.73723245 0.4560868
-5.06807 0.09375794 4.430572 0.755436 0.48943412
-4.299368 0.093757525 6.197798 0.7358317 0.6107761
-4.092226 -0.46890858 6.556223 0.7098126 0.6245547
-3.941916 -0.9945846 6.638389 0.68853444 0.6182497
-3.727168 -1.4787016 6.7056155 0.6681657 0.61189157
-3.456585 -1.9179586 6.7579026 0.6485128 0.6055439
-3.138232 -2.3101966 6.7952504 0.6294078 0.59922725
-2.779364 -2.6542177 6.8176603 0.61070037 0.5929345
-2.3862 -2.9495738 6.8251295 0.5922478 0.58664054
-1.963737 -3.1963046 6.81766 0.5739056 0.58031106
-1.515613 -3.3946416 6.79525 0.55551827 0.5739085
-1.044002 -3.5446637 6.757903 0.5369119 0.5673998
-0.549555 -3.6459098 6.705614 0.5178884 0.5607643
--1.97902 -3.1859097 6.638388 0.4196262 0.56102014
--1.536358 -3.4031737 6.638388 0.4379018 0.55720395
--1.052242 -3.5635777 6.638388 0.45694146 0.5547323
--0.528914 -3.6629076 6.638388 0.47697556 0.55365556
-0.03139 -3.6969547 6.638389 0.49822462 0.5540062
--7.933614 -0.4525941 4.648171 0.2626983 0.4850473
--7.787916 -0.5038141 4.406618 0.26243117 0.47504935
--7.354032 -0.36722603 4.306373 0.25959262 0.47161904
--7.085672 0.43522808 3.882372 0.24017991 0.46358788
--7.136291 0.55474305 3.8432293 0.23753074 0.46376467
--7.199745 0.64011014 3.7941613 0.23559375 0.46314502
--7.271751 0.6913311 3.7384772 0.23436654 0.461865
--7.348038 0.7084041 3.6794872 0.23383965 0.4600587
--7.424324 0.6913311 3.6204963 0.23400138 0.4578533
--7.49633 0.6401102 3.5648122 0.23484233 0.45536733
--7.559783 0.5547432 3.5157452 0.23635873 0.45271048
--7.610404 0.43522817 3.476602 0.23855557 0.44998443
--7.789162 -0.2477119 3.756731 0.25364828 0.45332783
--7.866104 -0.36722597 4.069778 0.25776282 0.46408352
--7.879799 -0.45259404 4.377068 0.2611778 0.47473577
-5.142293 0.801922 4.087087 0.7798412 0.48247033
-4.092225 0.65642446 6.556222 0.75234205 0.6511383
-5.10744 1.506479 3.7485814 0.8032357 0.47603655
-3.941916 1.1821004 6.6383896 0.7724371 0.67018586
-4.963201 2.1921182 3.4157665 0.8257369 0.46984413
-3.727168 1.6662165 6.7056165 0.7927735 0.6877554
-4.711841 2.8427234 3.0893557 0.8474657 0.46360153
-3.456585 2.1054733 6.7579045 0.81359637 0.70373213
-4.358339 3.4417832 2.7700567 0.86853385 0.45702577
-3.138232 2.4977114 6.7952514 0.83512175 0.7179469
-3.910487 3.9728575 2.458585 0.88903916 0.4498471
-2.779364 2.8417323 6.8176613 0.8575246 0.73017925
-3.371402 4.4103537 2.163948 0.90906143 0.4419279
-2.3862 3.1370883 6.825131 0.8809237 0.74016297
-2.756253 4.7331786 1.894211 0.92867607 0.43314466
-1.963737 3.3838193 6.817662 0.90536416 0.74759805
-2.092053 4.9369755 1.6486611 0.94795537 0.42334753
-1.515613 3.5821564 6.795252 0.93080294 0.7521639
-1.403358 5.0233846 1.4265862 0.9669706 0.4124956
-1.044001 3.7321784 6.757904 0.9571041 0.7535364
-0.711061 4.9990363 1.2272772 0.9858044 0.40065098
-0.031388 5.0434914 1.2272772 1.0046494 0.40079123
-0.031388 3.8673162 6.705617 1.011548 0.7505269
-0.549554 3.8334243 6.705616 0.9840519 0.7514051
-0.031388 4.8743377 1.0500212 0.004561293 0.3879783
--0.601829 4.663767 0.8941071 0.0227167 0.37476742
--1.163991 4.38888 0.7588231 0.03981767 0.3614018
--1.660702 4.07071 0.64345795 0.056107912 0.3482919
--2.102232 3.7265117 0.5473019 0.07184861 0.33586532
--2.502514 3.3685467 0.46964073 0.08732737 0.3245377
--2.877935 3.003083 0.4097647 0.102863565 0.31467977
--3.217072 2.607291 0.35866264 0.11850931 0.3049739
--3.485104 2.159097 0.3082715 0.1340862 0.29364654
-3.855852 0.093757436 6.556223 0.7292659 0.64618295
-3.788054 0.6142794 6.638389 0.7494575 0.6658599
-3.688724 1.1116345 6.6383896 0.77083087 0.6785503
-3.52832 1.5816125 6.6383896 0.7923148 0.6905772
-3.311056 2.0200002 6.6383896 0.81408596 0.7018417
-3.041144 2.4225883 6.6383896 0.83629936 0.712217
-2.746758 2.8091264 6.5562234 0.86012304 0.71503156
-2.722794 2.7851634 6.6383896 0.8590845 0.72155315
-2.349682 3.0898933 6.705616 0.88182867 0.73466235
-1.948916 3.3585844 6.705616 0.906166 0.7414369
-1.512511 3.5748653 6.705616 0.93131596 0.7466265
-1.049265 3.7510924 6.63839 0.95752275 0.7449698
--2.021275 -3.2151108 6.556221 0.41839162 0.5543922
--1.573434 -3.4343097 6.556222 0.43677554 0.55056417
-0.03139 -3.7307067 6.556222 0.4983005 0.54737484
-0.556545 -3.6963568 6.556221 0.51825905 0.5490799
-3.067942 -2.2558086 6.5562215 0.63104844 0.58687353
--3.663041 1.6656439 0.25930437 0.149565 0.28032732
--3.731722 1.141074 0.21247026 0.16487227 0.26462546
--3.833925 0.6293339 0.21247014 0.18222061 0.25339615
--7.661755 -0.45259392 3.834018 0.25813404 0.45322594
--7.732625 -0.36722592 3.791028 0.25617522 0.45294416
--7.656032 0.09375818 3.441317 0.24507022 0.44470614
--3.868956 0.09375795 0.21247002 0.20055112 0.24132864
--3.674007 -0.41965806 0.1684819 0.21674576 0.2217894
--3.576032 -0.91022605 0.16848178 0.23576503 0.20957361
--3.566679 -1.437127 0.21246965 0.25841993 0.20462316
--3.433506 -1.9412742 0.2593035 0.2810485 0.19795398
--3.195702 -2.403238 0.30827042 0.30405426 0.19022194
--2.873474 -2.811104 0.35866135 0.32783794 0.18203536
--2.486004 -3.159691 0.40976325 0.35279667 0.1740039
--2.064475 -3.4747093 0.46963912 0.37972778 0.16815512
--1.616646 -3.7796483 0.5473001 0.40887734 0.16618453
--1.12621 -4.065614 0.64345604 0.43958545 0.16819212
--0.579903 -4.318014 0.758821 0.47105357 0.17420463
-0.03139 -4.517666 0.8941049 0.5025524 0.18417832
-0.687834 -4.6438837 1.0500189 0.5324832 0.19788651
-1.360485 -4.6818175 1.2272749 0.5597128 0.21459365
-2.036829 -4.6196647 1.4265839 0.5845491 0.23360117
-2.699218 -4.4485493 1.6486579 0.6074027 0.25440258
-3.325755 -4.1638412 1.894209 0.6286756 0.27666792
-3.891406 -3.7662585 2.1639462 0.64872015 0.3002227
-4.369322 -3.2627645 2.4585834 0.66783226 0.32503757
-4.746377 -2.6754897 2.7700553 0.6862894 0.3510913
-5.021901 -2.0295758 3.0893545 0.7043517 0.3783974
-5.189422 -1.3417789 3.4157658 0.7222516 0.40710515
-5.188613 0.093758024 4.087087 0.75856984 0.4693427
-4.129028 0.093757436 6.556223 0.7308676 0.63786906
-4.048123 -0.46279857 6.638389 0.70862585 0.6309427
-3.896692 -0.9819986 6.705616 0.6875326 0.6238184
-3.68349 -1.4601177 6.7579036 0.66735744 0.6166053
-3.416851 -1.8946227 6.7952504 0.6478998 0.60934824
-3.104405 -2.2840226 6.8176603 0.6289848 0.6020509
-2.752819 -2.6276727 6.8251295 0.61045456 0.5946913
-2.367601 -2.9255366 6.8176603 0.59215885 0.58723384
-1.952932 -3.1779087 6.79525 0.57394445 0.5796377
-1.511549 -3.3850896 6.757903 0.5556467 0.5718657
-1.04466 -3.5470276 6.705614 0.5370823 0.56389254
-0.55191 -3.6629076 6.638388 0.518044 0.555717
--7.610067 -0.52088803 4.188076 0.26166278 0.4658948
--7.517826 -0.50381404 4.230694 0.26169273 0.46744934
--7.430756 -0.452594 4.270923 0.2610172 0.46938014
--7.643913 0.28156716 3.45069 0.24144925 0.44728515
--7.789379 -0.45259398 4.105228 0.25966048 0.46415484
-4.048123 0.6503144 6.638389 0.75109476 0.6575183
-5.189423 1.5292962 3.4157665 0.8058176 0.45841518
-3.896692 1.1695144 6.7056165 0.7713308 0.6757427
-5.021901 2.2170932 3.0893555 0.8280355 0.45319203
-3.68349 1.6476333 6.7579045 0.7918408 0.6924588
-4.746377 2.8630064 2.7700567 0.849491 0.44772235
-3.416852 2.0821373 6.7952514 0.81286633 0.70753264
-4.369321 3.4502826 2.4585848 0.87029946 0.44172177
-3.104405 2.4715374 6.8176613 0.8346157 0.7207761
-3.891406 3.9537766 2.163948 0.89055055 0.43504053
-2.752819 2.8151872 6.8251305 0.8572495 0.73195
-3.325754 4.3513594 1.894211 0.9103238 0.4275453
-2.367601 3.1130524 6.817662 0.88086414 0.7407739
-2.699217 4.6360674 1.648661 0.9296902 0.41907766
-1.952932 3.3654222 6.795251 0.90547466 0.7469388
-2.036829 4.8071814 1.4265862 0.9487122 0.409586
-1.511549 3.5726054 6.757905 0.9310041 0.75012565
-1.360484 4.8693347 1.2272772 0.9674571 0.39911804
-1.044659 3.7345433 6.705616 0.9572866 0.7500236
-0.687833 4.8314013 1.0500212 0.9860095 0.38781753
-0.031388 4.8743377 1.0500212 1.0045613 0.3879783
-0.031388 4.705184 0.8941071 0.004483403 0.37592405
--0.579904 4.505532 0.7588231 0.022382522 0.36378846
--1.126211 4.253132 0.643458 0.03928822 0.3518359
--1.616647 3.9671667 0.54730195 0.05547385 0.34050187
--2.064475 3.6622279 0.46964085 0.07123399 0.3302161
--2.486004 3.347209 0.4097648 0.08688807 0.3213674
--2.873474 2.998622 0.35866272 0.10251998 0.31263813
--3.195702 2.590756 0.30827162 0.1179859 0.3022441
--3.433506 2.128792 0.2593045 0.13324846 0.28981698
-3.788054 -0.4267636 6.638389 0.7070154 0.6392592
-3.8221 0.09375741 6.638389 0.72800267 0.65257555
-3.771056 0.6119234 6.705615 0.74845797 0.6707026
-3.672174 1.1070285 6.7056155 0.7698258 0.6833982
-3.512497 1.5748794 6.7056155 0.79132295 0.6954389
-3.296216 2.0112844 6.7056155 0.81312764 0.7067253
-3.027525 2.4120502 6.7056155 0.83539724 0.7171292
-2.710616 2.7729843 6.7056155 0.8582632 0.72649837
-2.348177 3.0879483 6.757904 0.88131005 0.7381161
-1.947671 3.3564644 6.757904 0.9057413 0.74491537
--1.080918 -3.5961416 6.556221 0.456048 0.54808843
-1.058329 -3.5961416 6.556222 0.5376884 0.55222136
-1.974783 -3.2151108 6.556222 0.57545996 0.5625221
-2.380955 -2.9427958 6.5562224 0.5940267 0.56952816
-3.340257 -1.8496366 6.5562215 0.6497284 0.5970688
-3.559456 -1.4073446 6.5562224 0.6686994 0.60818505
--3.566679 1.624645 0.21247038 0.14821807 0.27496463
--3.576032 1.097744 0.16848227 0.16272144 0.2572461
--3.674007 0.60717595 0.16848215 0.17985791 0.2461081
--3.707588 0.093757965 0.16848204 0.1979739 0.23411927
--3.445702 -0.38802502 0.12805091 0.21266188 0.21203868
--3.353764 -0.8483661 0.12805079 0.23138016 0.19987462
--3.417817 -1.37379 0.16848168 0.2552815 0.19750002
--3.343131 -1.888194 0.21246955 0.2788426 0.19279341
--3.14835 -2.366599 0.25930342 0.30254444 0.18653005
--2.854364 -2.791994 0.30827034 0.32682842 0.17938691
--2.482143 -3.154702 0.35866126 0.3521145 0.17200378
--2.050819 -3.451457 0.40976316 0.3787931 0.16503215
--1.587483 -3.7111053 0.46963906 0.4075433 0.16057795
--1.096071 -3.9573202 0.54730004 0.43835694 0.16040029
--0.560583 -4.178579 0.643456 0.47035694 0.16459554
-0.03139 -4.357997 0.758821 0.5026238 0.17315598
-0.664607 -4.476249 0.8941049 0.53332615 0.18584195
-1.315063 -4.5186143 1.0500189 0.56117785 0.20185299
-1.974159 -4.4723706 1.2272749 0.58646035 0.22040263
-2.627722 -4.3268194 1.4265839 0.6096096 0.2408924
-3.256798 -4.0747232 1.648659 0.6310705 0.26290262
-3.838652 -3.7135046 1.8942091 0.6512376 0.28616884
-4.347984 -3.2462544 2.1639464 0.67044425 0.31056485
-4.758344 -2.6825185 2.4585824 0.68896997 0.33609793
-5.058724 -2.0452437 2.7700555 0.7070843 0.36277857
-5.250813 -1.3588647 3.0893538 0.7250487 0.3906461
-4.084526 0.09375741 6.638389 0.7296406 0.6442496
-4.001671 -0.45636162 6.705616 0.7075745 0.6364988
-3.851011 -0.9692846 6.757904 0.68667316 0.628517
-3.641124 -1.4420917 6.7952504 0.6666972 0.6203948
-3.379991 -1.8729727 6.8176594 0.6474382 0.6121601
-3.07472 -2.2610536 6.8251295 0.6287136 0.603801
-2.731324 -2.6061776 6.8176603 0.6103575 0.5952839
-2.354538 -2.9086537 6.7952504 0.59221107 0.58656543
-1.947671 -3.1689496 6.757903 0.5741119 0.577604
-1.512511 -3.3873506 6.705614 0.5558858 0.56836855
-1.049266 -3.5635777 6.638388 0.53734004 0.5588513
-4.001671 0.6438774 6.705616 0.7499878 0.66306746
-5.250814 1.5463823 3.0893555 0.808288 0.44182366
-3.851011 1.1568004 6.7579045 0.77038014 0.6804319
-5.058724 2.2327602 2.7700574 0.83025753 0.43738326
-3.641124 1.6296073 6.7952514 0.79108 0.6962423
-4.758344 2.8700366 2.4585838 0.8514736 0.43249384
-3.379991 2.0604873 6.8176613 0.81232303 0.71034604
-4.347984 3.4337716 2.1639478 0.8720435 0.42699018
-3.07472 2.4485683 6.8251305 0.8343065 0.7225368
-3.838652 3.9010215 1.8942109 0.8920586 0.4207272
-2.731324 2.7936933 6.8176613 0.8571722 0.7325597
-3.256798 4.2622404 1.648661 0.9115963 0.41353777
-2.354538 3.0961683 6.795252 0.8809898 0.740123
-2.627722 4.5143366 1.426586 0.93071693 0.40536153
-1.974159 4.6598873 1.227277 0.9494778 0.3962355
-1.315063 4.7061315 1.050021 0.9679466 0.3862896
-0.664606 4.663767 0.8941071 0.9862154 0.37574416
-0.031388 4.705184 0.8941071 1.0044835 0.37592405
-0.031388 4.545516 0.7588231 0.004414613 0.36490488
--0.560584 4.366097 0.643458 0.022082591 0.35417095
--1.096071 4.144839 0.547302 0.038840305 0.3439923
--1.587483 3.8986237 0.4696409 0.054993927 0.33480665
--2.050819 3.638976 0.40976486 0.07086961 0.32701737
--2.482143 3.34222 0.3586628 0.08659211 0.31930637
--2.854364 2.979512 0.3082717 0.1020615 0.30987895
--3.14835 2.554117 0.25930458 0.11724248 0.29836923
--3.343131 2.075712 0.21247049 0.13204102 0.28438652
-3.688724 -0.92411864 6.638389 0.6869737 0.6265647
-3.721287 -0.9331815 6.556222 0.6881308 0.620146
-3.771056 -0.4244076 6.705615 0.70607734 0.64411384
-3.804947 0.0937574 6.705615 0.7270262 0.657421
-3.768627 0.6115874 6.757903 0.7477523 0.6740576
-3.66981 1.1063703 6.7579045 0.7691136 0.68675625
-3.510237 1.5739183 6.7579045 0.7906172 0.69880635
-3.294096 2.0100393 6.7579045 0.81244296 0.71010816
-3.025579 2.4105453 6.7579045 0.8347496 0.7205327
-2.708876 2.7712443 6.7579045 0.8576705 0.7299263
-1.519244 -3.4031737 6.638388 0.55624115 0.56334084
-1.957632 -3.1859097 6.638388 0.5748645 0.56911194
-2.36022 -2.9159977 6.6383886 0.593318 0.5760898
-2.746758 -2.6216116 6.5562224 0.6125206 0.57766974
-3.041144 -2.2350736 6.6383886 0.6301355 0.59337276
-3.311056 -1.8324856 6.6383886 0.64872515 0.6035376
-3.52832 -1.3940965 6.6383886 0.66761434 0.6146264
--3.417817 1.561308 0.16848238 0.14627574 0.2674873
--3.353764 1.035884 0.12805125 0.15960662 0.24714498
--3.445703 0.5755419 0.12805113 0.17642373 0.23614515
--7.70231 -0.50381404 4.145456 0.26097172 0.46477747
--3.477215 0.09375797 0.12805103 0.19421187 0.22427782
--3.137027 -0.34525502 0.09188892 0.20657316 0.19896877
--3.05325 -0.76473004 0.09188883 0.2247939 0.18689956
--3.205298 -1.283368 0.12805068 0.2506231 0.18781014
--3.203519 -1.806195 0.16848157 0.27557072 0.18563813
--3.065413 -2.302425 0.21246944 0.3002946 0.18132165
--2.812021 -2.74965 0.25930333 0.32533115 0.17564635
--2.465608 -3.133331 0.30827025 0.351152 0.16931342
--2.047626 -3.446021 0.35866117 0.37818035 0.16299869
--1.576935 -3.686313 0.40976313 0.4067686 0.15740108
--1.07612 -3.8856332 0.469639 0.43739775 0.15470651
--0.545171 -4.067345 0.54730004 0.46973127 0.15671849
-0.03139 -4.217299 0.643456 0.50269055 0.16350117
-0.642682 -4.318014 0.758821 0.5341778 0.17483489
-1.269642 -4.355412 0.89410496 0.562698 0.18987657
-1.907766 -4.3163257 1.0500189 0.5884674 0.20776217
-2.546587 -4.1886764 1.227275 0.6119331 0.22780648
-3.170359 -3.9630113 1.426584 0.63358057 0.24950297
-3.75896 -3.6338124 1.6486591 0.6538492 0.2725027
-4.28899 -3.2006066 1.8942093 0.6731113 0.2965927
-4.735093 -2.6688626 2.1639464 0.6916788 0.32168582
-5.071485 -2.0506725 2.4585826 0.7098192 0.34782165
-5.289327 -1.3695837 2.7700558 0.7277996 0.3750386
-5.27202 -1.2063657 3.135946 0.729102 0.39549634
-5.279933 -1.21306 3.089354 0.7293651 0.39312252
-5.244328 -1.0668643 3.4157662 0.7304712 0.411931
-5.269118 -1.1951839 3.1618118 0.72917694 0.39695224
-5.2446866 -1.078011 3.4027472 0.7302681 0.41106522
-5.2454395 -1.0948226 3.3820415 0.72997284 0.4097088
-5.2281394 -0.9088949 3.5993586 0.7333287 0.42419308
-5.233718 -0.6866852 3.7485816 0.73849654 0.43625847
-5.2284408 -0.890293 3.6124887 0.73375356 0.42522255
-5.246446 -0.6482929 3.7751307 0.739416 0.43857193
-5.2333937 -0.64850277 3.7740035 0.7393863 0.43833676
-5.270532 -0.9080119 3.6038637 0.7334715 0.4250971
-5.234014 -0.64113325 3.7767262 0.73958004 0.43862316
-5.2352676 -0.6272874 3.7815595 0.73994684 0.4391468
-5.2232275 -0.30902106 3.8885617 0.7483684 0.45066217
-5.228295 -0.15809727 3.9042075 0.75271726 0.45432487
-5.235834 0.08383063 3.9311876 0.7596555 0.46038198
-5.2361546 0.09375806 3.9322596 0.7599398 0.4606303
-5.223056 -0.31443766 3.887968 0.7482126 0.4505298
-4.037653 0.0937574 6.705616 0.7285527 0.6497991
-3.954749 -0.4498606 6.757904 0.70667225 0.6411869
-3.806702 -0.9569536 6.795251 0.68597126 0.63229454
-3.601822 -1.4253696 6.8176603 0.6662009 0.6231964
-3.347643 -1.8539736 6.8251295 0.6471439 0.6139041
-3.050683 -2.2424548 6.8176603 0.62860936 0.604393
-2.716228 -2.5910807 6.7952504 0.61042273 0.59462094
-2.348177 -2.9004326 6.7579036 0.5924157 0.5845426
-1.948916 -3.1710696 6.705614 0.5744164 0.5741209
-5.223254 0.5063674 3.8863807 0.77258635 0.46556872
-5.2353024 0.81480956 3.7814417 0.7824351 0.4654667
-5.228295 0.345612 3.9042072 0.76767206 0.46361744
-5.2230554 0.5019548 3.8879673 0.7724431 0.46557587
-5.2333927 0.83602 3.774004 0.783121 0.46543086
-5.233512 0.84197325 3.7698197 0.783328 0.465306
-5.233796 0.8738067 3.7485812 0.7844251 0.46470284
-3.954749 0.63737637 6.757904 0.7490371 0.66774994
-5.229673 1.109273 3.5835838 0.792547 0.45986468
-5.244499 1.2535269 3.4157665 0.7978399 0.45349637
-5.2281394 1.0964111 3.599359 0.79206336 0.46048784
-5.276186 1.39713 3.1117008 0.80392796 0.44029856
-5.2799807 1.4003431 3.0893552 0.804158 0.43922943
-5.24544 1.2823399 3.382042 0.7989 0.45222294
-5.2479057 1.2917998 3.360108 0.7993185 0.4512356
-5.272021 1.3938832 3.1359465 0.8036845 0.4414677
-5.289327 1.5571012 2.7700565 0.81068265 0.42607737
-3.806702 1.1444694 6.7952514 0.7696046 0.68420357
-5.071485 2.2381904 2.4585845 0.8324371 0.4222268
-3.601822 1.6128854 6.8176613 0.7905128 0.69904274
-4.735093 2.8563795 2.1639478 0.85343343 0.41783854
-3.347643 2.0414894 6.8251305 0.81198883 0.7120973
-4.28899 3.3881245 1.8942108 0.8737827 0.41275188
-3.050683 2.4299693 6.8176613 0.83421445 0.72314435
-3.75896 3.8213296 1.6486609 0.89357686 0.40678918
-2.716228 2.7785964 6.7952514 0.8573086 0.73191637
-3.170359 4.1505284 1.4265859 0.91288185 0.39988115
-2.546587 4.3761945 1.227277 0.9317516 0.3920562
-1.907766 4.5038424 1.050021 0.95024246 0.38343382
-1.269642 4.54293 0.89410704 0.968428 0.37422153
-0.642681 4.505533 0.7588231 0.98641396 0.36470804
-0.031388 4.545516 0.7588231 1.0044146 0.36490488
-0.031388 4.404817 0.64345807 0.004354135 0.35525274
--0.545171 4.254863 0.547302 0.021828208 0.3462855
--1.07612 4.073152 0.4696409 0.038499728 0.33825827
--1.576935 3.873831 0.40976492 0.054706745 0.33158275
--2.047626 3.633539 0.35866287 0.07062256 0.32493857
--2.465608 3.32085 0.3082718 0.08619974 0.3165193
--2.812021 2.937169 0.25930467 0.10141326 0.30595994
--3.065413 2.489944 0.21247059 0.1161744 0.29287112
--3.203519 1.993713 0.16848248 0.13030475 0.27680862
-3.672174 -0.9195126 6.705615 0.68608487 0.6314337
-3.768628 -0.4240716 6.757904 0.7054198 0.6474796
-3.802498 0.09375739 6.757904 0.72633934 0.66077906
-3.778889 0.6130094 6.795251 0.74733615 0.67600447
-3.679801 1.1091503 6.7952514 0.76869106 0.68870395
-3.519788 1.5779823 6.7952514 0.7901961 0.70075923
-3.303055 2.0153003 6.7952514 0.8120316 0.7120703
-3.0338 2.4169064 6.7952514 0.83435774 0.72250754
-2.349682 -2.9023786 6.7056146 0.59278226 0.58107615
-2.722794 -2.5976477 6.6383886 0.61170596 0.5842006
-3.027525 -2.2245357 6.7056146 0.6294404 0.59830874
-3.296216 -1.8237696 6.7056146 0.64795893 0.6084486
-3.512497 -1.3873645 6.7056146 0.66678333 0.6195146
--3.205298 1.470886 0.12805136 0.14347214 0.2572398
--3.05325 0.9522479 0.09188923 0.15503946 0.23352005
--3.137027 0.53277296 0.09188914 0.1713648 0.22273324
--3.165742 0.09375898 0.09188904 0.18863927 0.21105796
--2.735996 -0.28968802 0.060705934 0.19718042 0.18174382
--2.662823 -0.65607 0.060705844 0.21452771 0.16986221
--2.917965 -1.161115 0.091888726 0.24356546 0.1748693
--3.004203 -1.689131 0.1280506 0.27067935 0.17591065
--2.93729 -2.203289 0.16848148 0.29693705 0.17410001
--2.737856 -2.675486 0.21246935 0.32308725 0.17036708
--2.428969 -3.085979 0.25930324 0.3497155 0.16551055
--2.033949 -3.422734 0.3082702 0.3773087 0.16026017
--1.574468 -3.680516 0.35866114 0.40626398 0.15533356
--1.068903 -3.859704 0.40976307 0.43684697 0.15148132
--0.534968 -3.9937112 0.469639 0.4692472 0.1509606
-0.03139 -4.105056 0.54730004 0.50275415 0.15558583
-0.623362 -4.178579 0.643456 0.53500414 0.16519716
-1.226768 -4.201362 0.758821 0.56423527 0.17893992
-1.841373 -4.160281 0.89410496 0.5905452 0.19589
-2.460631 -4.0423265 1.050019 0.6143649 0.21528365
-3.072267 -3.8362372 1.227275 0.6362134 0.23653235
-3.659064 -3.5339162 1.4265841 0.6565763 0.25920567
-4.199871 -3.1316504 1.6486592 0.6758682 0.28301033
-4.670808 -2.6311054 1.8942094 0.6944357 0.30777514
-5.046694 -2.0401244 2.1639466 0.7125733 0.3334464
-5.302672 -1.3732976 2.4585829 0.7305423 0.36009285
-5.2982097 -1.239726 2.903983 0.73034716 0.38359252
-5.3175216 -1.2284118 2.770056 0.7319507 0.37739897
-5.301103 -1.2436014 2.8751807 0.730507 0.38214126
-5.300723 -1.0935239 3.3891768 0.73018515 0.41106635
-5.230503 -0.31436992 3.888506 0.7482163 0.45064214
-3.990306 0.09375739 6.757904 0.72761875 0.6544816
-3.909237 -0.44355464 6.795251 0.70593584 0.64495623
-3.765596 -0.9455136 6.817661 0.68544453 0.635088
-3.567331 -1.4106957 6.8251295 0.6658858 0.62493503
-3.321451 -1.8385906 6.8176603 0.64703345 0.61449575
-3.0338 -2.2293916 6.7952504 0.628687 0.6037359
-2.708876 -2.5837297 6.7579036 0.6106626 0.59261006
-5.230503 0.501887 3.8885052 0.7724079 0.46566403
-5.246446 0.8358101 3.7751312 0.7830296 0.46559134
-5.270532 1.0955281 3.6038642 0.7916898 0.46107554
-3.909236 0.6310704 6.795251 0.74826133 0.6715158
-5.3011036 1.431118 2.8751812 0.80647767 0.4290029
-5.3175087 1.4159937 2.7700567 0.8067562 0.4235819
-5.3051248 1.4274516 2.849349 0.80654776 0.42766345
-5.302673 1.5608155 2.4585836 0.8130374 0.4109858
-3.765596 1.1330284 6.8176613 0.76902556 0.686995
-5.046694 2.2276425 2.1639476 0.83459467 0.40764487
-3.567331 1.5982103 6.8251305 0.79016197 0.7007859
-4.670808 2.8186235 1.8942107 0.8553885 0.40367708
-3.321451 2.0261064 6.8176613 0.81188536 0.7127023
-4.199871 3.3191676 1.6486608 0.87553346 0.39888972
-3.659064 3.7214339 1.4265858 0.8951096 0.39320275
-3.072267 4.0237556 1.2272769 0.91417533 0.3866355
-2.460631 4.2298446 1.0500209 0.9327823 0.37929913
-1.841373 4.347799 0.894107 0.9509908 0.3713917
-1.226768 4.388879 0.7588231 0.96888596 0.3631907
-0.623361 4.366098 0.643458 0.9865946 0.35504153
-0.031388 4.404817 0.64345807 1.0043541 0.35525274
-0.031388 4.292575 0.547302 0.0043014702 0.34733954
--0.534969 4.181229 0.46964097 0.021632314 0.34052154
--1.068904 4.047222 0.40976495 0.038292374 0.33501345
--1.574469 3.868034 0.35866293 0.054510072 0.3294884
--2.033949 3.610252 0.30827186 0.07029778 0.32212585
--2.428969 3.273498 0.25930476 0.085648045 0.31255853
--2.737856 2.863004 0.21247068 0.100485265 0.300396
--2.93729 2.390807 0.16848257 0.114642836 0.2851933
--3.004203 1.876649 0.12805144 0.12780596 0.26641244
-3.66981 -0.9188546 6.757903 0.685464 0.6348112
-3.778889 -0.42549363 6.795251 0.7050363 0.64943534
-3.812852 0.093757376 6.795251 0.72593653 0.66272885
-3.799961 0.6159284 6.817661 0.7471975 0.6766331
-3.700315 1.1148603 6.8176613 0.76854736 0.6893318
-3.539404 1.5863284 6.8176613 0.7900497 0.7013882
-2.710616 -2.5854697 6.7056146 0.6110878 0.5891621
-3.025579 -2.2230306 6.7579026 0.6289602 0.60173744
-3.294096 -1.8225247 6.7579026 0.64742756 0.6118585
-3.510237 -1.3864027 6.7579036 0.66620487 0.62290716
--2.917965 1.348633 0.09188934 0.13937768 0.24339318
--2.662823 0.843588 0.060706202 0.14814945 0.21537109
--2.735996 0.47720596 0.060706113 0.1636864 0.20492594
--2.761077 0.093758985 0.060706023 0.1801186 0.1935695
--2.230624 -0.219664 0.03521395 0.18182679 0.15960115
--2.170814 -0.519138 0.035213877 0.19750275 0.14813298
--2.544661 -1.002284 0.060705762 0.23242891 0.15793416
--2.734721 -1.530857 0.09188865 0.26319382 0.16293575
--2.754377 -2.061758 0.1280505 0.29187584 0.16428398
--2.623285 -2.560915 0.1684814 0.31971484 0.16304399
--2.364795 -3.003042 0.21246928 0.34754825 0.1601389
--2.003644 -3.371136 0.25930318 0.37599742 0.15638478
--1.563904 -3.655687 0.30827013 0.4055375 0.15254517
--1.067216 -3.853641 0.3586611 0.4364935 0.14938387
--0.531278 -3.967078 0.40976304 0.46898094 0.1477013
-0.03139 -4.030755 0.469639 0.50281584 0.14980105
-0.607949 -4.067345 0.54730004 0.5357529 0.1572999
-1.188988 -4.065614 0.64345604 0.56572366 0.16937211
-1.778704 -4.012986 0.75882107 0.59263915 0.18505928
-2.374676 -3.8959773 0.894105 0.6168715 0.20353271
-2.968347 -3.7019322 1.0500191 0.63895655 0.22412895
-3.5457 -3.4205523 1.2272751 0.65942436 0.24634117
-4.088159 -3.0452123 1.4265842 0.6787356 0.26979953
-4.573698 -2.5740695 1.6486593 0.6972752 0.29425547
-4.97815 -2.0109606 1.8942095 0.7153672 0.31957316
-5.276744 -1.3660815 2.1639469 0.73329484 0.34572914
-5.350142 -1.1356137 2.458583 0.7375035 0.3640802
-5.3267307 -1.2107536 2.6444106 0.7336156 0.37160358
-5.3289433 -1.2065574 2.6140223 0.7340156 0.3702173
-5.334985 -1.2048317 3.1455429 0.72934055 0.39722943
-5.733778 -0.8737399 3.7382057 0.7348396 0.43893898
-5.692623 -0.622907 3.8933187 0.7401676 0.45049202
-5.665379 -0.30040795 3.996 0.7480393 0.46095502
-3.944381 0.093757376 6.795251 0.7268566 0.658247
-3.867016 -0.43770364 6.817661 0.7053839 0.6477443
-3.729524 -0.9354736 6.82513 0.6851117 0.6368227
-3.539404 -1.3988127 6.8176603 0.6657702 0.6255268
-3.303054 -1.8277856 6.7952495 0.6471231 0.61384463
-5.655525 0.09375804 4.033139 0.7585397 0.46952018
-5.665379 0.48792505 3.995999 0.7696035 0.47434372
-3.867014 0.6252194 6.817661 0.74768144 0.67430234
-5.300724 1.2810411 3.3891773 0.7983408 0.45311016
-5.692623 0.81042403 3.8933191 0.77902025 0.47456965
-5.733778 1.061256 3.7382061 0.7866417 0.4709774
-5.334986 1.3923492 3.1455433 0.8029936 0.44263494
-5.3324594 1.3824368 2.5876777 0.8071747 0.41403893
-5.3500648 1.32352 2.4585838 0.80649424 0.40681925
-5.3289433 1.3940752 2.614023 0.8073033 0.41552144
-5.276744 1.5535995 2.1639476 0.8153728 0.39647073
-3.729524 1.1229893 6.8251305 0.76866573 0.6887322
-4.97815 2.1984785 1.8942105 0.8367491 0.39355803
-4.573698 2.7615876 1.6486597 0.85735774 0.38989317
-4.088159 3.2327297 1.4265857 0.87730134 0.38538045
-3.5457 3.6080697 1.2272768 0.8966514 0.38002792
-2.968347 3.8894508 1.0500209 0.91546273 0.37393793
-2.374676 4.083496 0.8941069 0.9337892 0.36730066
-1.778703 4.200504 0.75882304 0.95170057 0.36038575
-1.188988 4.253132 0.643458 0.96930075 0.35352963
-0.607948 4.254863 0.547302 0.986745 0.34711722
-0.031388 4.292575 0.547302 1.0043014 0.34733954
-0.031388 4.218273 0.46964097 0.0042562895 0.34155613
--0.531278 4.154595 0.40976498 0.021507874 0.33726096
--1.067216 4.04116 0.35866296 0.0381478 0.3329064
--1.563904 3.843205 0.3082719 0.054254703 0.3266533
--2.003644 3.558654 0.25930482 0.06984457 0.31812686
--2.364795 3.190561 0.21247075 0.08486167 0.30693248
--2.623285 2.748433 0.16848266 0.09915854 0.29262173
--2.754377 2.249276 0.12805153 0.112444945 0.27465072
--2.734721 1.718375 0.09188941 0.124169566 0.2523438
-3.679801 -0.9216356 6.795251 0.685104 0.6367753
-3.799961 -0.42841363 6.817661 0.70491415 0.65007037
-3.834115 0.093757376 6.817661 0.7258053 0.66335994
-3.829962 0.6200854 6.82513 0.74731946 0.6760357
-3.519788 -1.3904667 6.7952504 0.66587126 0.62488157
--2.544661 1.189802 0.060706284 0.13323238 0.22489697
--2.170814 0.706656 0.035214175 0.13721748 0.19155629
--2.230624 0.40718198 0.0352141 0.15140636 0.18169875
--2.251125 0.09375899 0.035214026 0.166357 0.17091629
--1.608927 -0.133522 0.016124964 0.1544498 0.13271463
--1.565554 -0.350688 0.016124915 0.16659865 0.122301154
--2.07423 -0.802128 0.03521381 0.21363452 0.13650586
--2.384611 -1.325227 0.060705688 0.25120777 0.14600381
--2.507074 -1.870404 0.09188856 0.2840383 0.15119867
--2.45972 -2.397349 0.12805043 0.3145828 0.1530856
--2.265659 -2.874919 0.16848132 0.34426498 0.15268077
--1.950564 -3.280761 0.21246922 0.37400377 0.15090398
--1.540496 -3.600671 0.25930312 0.404433 0.1485933
--1.059989 -3.827673 0.30827007 0.43597355 0.14655034
--0.530415 -3.96085 0.35866106 0.46881944 0.1455838
-0.03139 -4.00388 0.40976304 0.5028763 0.14653014
-0.597746 -3.9937112 0.469639 0.53635615 0.15153244
-1.158849 -3.9573202 0.54730004 0.5670649 0.16153963
-1.72348 -3.8831923 0.64345604 0.5946571 0.17559463
-2.293541 -3.7578342 0.7588211 0.61938465 0.19282375
-2.864426 -3.5676272 0.89410514 0.6417693 0.21249975
-3.4256 -3.3004522 1.0500191 0.6623769 0.23404665
-3.961385 -2.9471192 1.2272753 0.68171644 0.2570234
-4.451967 -2.5025742 1.4265844 0.7002163 0.28110865
-4.874606 -1.9669054 1.6486595 0.71823406 0.30609146
-5.205056 -1.3461294 1.8942096 0.7360779 0.33186767
-5.3641276 -0.93512934 2.1780992 0.7457912 0.3538325
-5.3651395 -0.9234798 2.1639469 0.74625367 0.35336074
-5.34961 -1.0952916 2.3661602 0.7394836 0.36018175
-5.3498516 -1.1088116 2.3978314 0.7388134 0.3615165
-5.371284 -1.2419347 2.8874369 0.7307378 0.3842547
-5.843914 -1.1604059 3.3231149 0.73109764 0.41537517
-5.785367 -1.0529058 3.5437686 0.7318829 0.4270217
-3.901777 0.093757376 6.817661 0.7262862 0.6610327
-3.829963 -0.43257064 6.82513 0.7050365 0.64947677
-3.700315 -0.9273446 6.817661 0.68499196 0.6374152
-5.785367 1.2404232 3.5437691 0.7924215 0.464408
-5.843914 1.3479232 3.3231163 0.79637223 0.45566285
-5.371284 1.4294512 2.8874373 0.8056744 0.4304848
-5.3515334 1.2606437 2.3392138 0.8057893 0.39983892
-5.3650455 1.1114675 2.1639473 0.8031688 0.38879916
-5.34961 1.2828093 2.36616 0.8061698 0.40154397
-5.205057 1.5336475 1.8942103 0.8177086 0.38245264
-4.874606 2.1544235 1.6486604 0.83892196 0.37985104
-4.451967 2.6900918 1.4265856 0.8593482 0.3764643
-3.961385 3.1346378 1.2272767 0.8790808 0.37228405
-3.4256 3.4879699 1.0500208 0.89818627 0.36740124
-2.864426 3.7551448 0.89410686 0.9167201 0.36199775
-2.29354 3.9453518 0.758823 0.9347435 0.3563363
-1.723479 4.07071 0.64345795 0.9523429 0.35074762
-1.158849 4.144839 0.547302 0.9696485 0.3456107
-0.597746 4.18123 0.46964097 0.9868516 0.34132662
-0.031388 4.218273 0.46964097 1.0042562 0.34155613
-0.031388 4.191398 0.409765 0.0042183367 0.33828583
--0.530416 4.148368 0.358663 0.02141755 0.33514452
--1.059989 4.015192 0.30827194 0.037964188 0.3300527
--1.540496 3.788189 0.25930488 0.053902432 0.3226205
--1.950564 3.468279 0.21247081 0.06920222 0.31244403
--2.265659 3.062438 0.16848274 0.08374128 0.29906756
--2.45972 2.584868 0.12805161 0.09725995 0.28193885
--2.507074 2.057922 0.0918895 0.10925667 0.260366
--2.384611 1.512745 0.06070636 0.11873592 0.23350628
-3.864389 0.093757376 6.82513 0.72592854 0.66276467
--2.07423 0.989646 0.03521424 0.12354619 0.20050403
--1.565554 0.538206 0.016125124 0.11840434 0.16123056
--1.608927 0.32104 0.016125076 0.13007613 0.15250203
--1.623793 0.09375899 0.01612502 0.14217329 0.14289029
--0.858918 -0.029601002 0.004149992 0.10078672 0.10556469
--0.835377 -0.147471 0.004149966 0.10571773 0.098236024
--1.495516 -0.5559 0.016124863 0.17874846 0.11162947
--1.943408 -1.066096 0.03521375 0.23053789 0.12473951
--2.185777 -1.621797 0.060705613 0.27126476 0.13415356
--2.238574 -2.176204 0.09188849 0.30652454 0.13980567
--2.124128 -2.692007 0.12805036 0.3392142 0.14252667
--1.868565 -3.141148 0.16848126 0.37095633 0.14328332
--1.499496 -3.504309 0.21246916 0.40273786 0.14299579
--1.043975 -3.770133 0.2593031 0.43516934 0.1425278
--0.526719 -3.934177 0.30827007 0.4685652 0.14271818
-0.03139 -3.997597 0.35866106 0.50293463 0.14440802
-0.594056 -3.967077 0.40976304 0.53673923 0.14827628
-1.138898 -3.8856332 0.469639 0.56813246 0.15582594
-1.679425 -3.7796483 0.5473001 0.596465 0.16785601
-2.222045 -3.6361043 0.6434561 0.6217928 0.1834761
-2.766334 -3.4408534 0.7588212 0.6445731 0.20191173
-3.305501 -3.1803532 0.8941052 0.6653876 0.22252735
-3.82708 -2.8431993 1.0500193 0.68479097 0.24481861
-4.313825 -2.4214392 1.2272754 0.70325977 0.26839745
-4.744812 -1.9116814 1.4265845 0.7211915 0.29298294
-5.096763 -1.3159903 1.6486596 0.73892355 0.31839758
-5.365061 -0.6497597 1.9688038 0.75586843 0.34828737
-5.3649654 -0.69177747 1.9983763 0.7543962 0.34901035
-5.3629646 -0.9097087 2.1463916 0.74680376 0.35268334
-5.34557 -0.6425705 1.8942099 0.7567549 0.34456566
-5.365541 -0.64533776 1.9673668 0.75600815 0.34829903
-5.441844 -1.0935236 2.3856966 0.7395892 0.36331052
-5.407581 -1.2048316 2.6293297 0.73420393 0.37275386
-5.905936 -1.1962388 3.0893538 0.7322897 0.4045573
-6.08581 -0.82196796 3.9325728 0.73566025 0.45312184
-6.033197 -0.58455795 4.069894 0.74046135 0.46312156
-6.151762 -0.99154687 3.7604368 0.7329741 0.442884
-5.998369 -0.279316 4.160798 0.7475266 0.47225967
-5.98577 0.093758 4.193677 0.7569251 0.4798392
-5.998369 0.46683198 4.160798 0.7668083 0.48422995
-6.033197 0.77207404 4.069894 0.7751981 0.48465344
-6.08581 1.009485 3.9325733 0.7819575 0.48177218
-5.407581 1.3923494 2.6293302 0.8063925 0.4173817
-5.365525 0.8328536 1.9673115 0.7973914 0.37418607
-5.345569 0.8300885 1.8942102 0.7980721 0.370432
-5.3629646 1.0972257 2.1463912 0.80295455 0.38765705
-5.3650603 0.83727676 1.968804 0.7975009 0.37433207
-5.363046 1.0612531 2.1210728 0.80221367 0.3857564
-5.096764 1.5035087 1.6486603 0.8200688 0.36881727
-4.744812 2.0991998 1.4265854 0.8411216 0.36650187
-4.313825 2.6089568 1.2272766 0.86135405 0.36345038
-3.82708 3.0307167 1.0500207 0.8808537 0.35973665
-3.305501 3.3678708 0.89410675 0.8996861 0.35553122
-2.766334 3.6283708 0.7588229 0.91791207 0.35108927
-2.222045 3.8236217 0.6434579 0.9356074 0.34673643
-1.679424 3.9671667 0.54730195 0.95288265 0.34284863
-1.138897 4.073152 0.4696409 0.96990263 0.33982494
-0.594055 4.154596 0.40976498 0.9869008 0.33805344
-0.031388 4.191398 0.409765 1.0042183 0.33828583
-0.031388 4.185115 0.358663 0.0041845688 0.33616397
--0.52672 4.121694 0.30827197 0.021308335 0.3322768
--1.043975 3.957652 0.25930494 0.037715904 0.32599184
--1.499497 3.691827 0.21247087 0.053407367 0.31688777
--1.868566 3.328667 0.1684828 0.06829088 0.3044965
--2.124128 2.879525 0.12805168 0.08214262 0.2882536
--2.238574 2.363722 0.091889575 0.09451403 0.26744896
--2.185777 1.809315 0.060706433 0.10451104 0.24120133
--1.943408 1.253614 0.0352143 0.11021924 0.20855916
--1.495516 0.743418 0.016125176 0.107004225 0.1691137
--0.835377 0.33499 0.0041500777 0.081943125 0.12574933
--0.858918 0.217119 0.0041500516 0.08860241 0.11956181
--0.866986 0.093759 0.004150022 0.09497729 0.112757504
-0.031389 0.093759 2.2351742e-08 0.0044622794 0.095903985
--0.797362 -0.258853 0.004149936 0.10963 0.090786666
--1.400649 -0.747318 0.016124818 0.19105685 0.100689515
--1.780884 -1.308507 0.03521369 0.24863087 0.112881236
--1.951262 -1.888891 0.060705554 0.2931065 0.12251209
--1.932774 -2.444703 0.09188843 0.33115435 0.12896453
--1.751501 -2.941832 0.1280503 0.36621106 0.1328875
--1.43616 -3.355447 0.1684812 0.40012026 0.13519832
--1.015926 -3.669351 0.21246912 0.4339184 0.13682057
--0.51853 -3.875074 0.25930306 0.46815237 0.13864315
-0.03139 -3.970681 0.30827004 0.50298715 0.14153115
-0.593193 -3.96085 0.35866106 0.5370133 0.14616716
-1.131681 -3.859704 0.40976307 0.5687893 0.15260568
-1.650261 -3.7111053 0.46963906 0.5978931 0.16221789
-2.165009 -3.5389943 0.54730016 0.623937 0.17584227
-2.679895 -3.3291411 0.6434562 0.6472434 0.19267872
-3.192136 -3.0669882 0.7588213 0.668371 0.21204686
-3.692775 -2.7392783 0.8941053 0.68790877 0.23338862
-4.167474 -2.3354833 1.0500194 0.7063831 0.2562575
-4.597517 -1.8490113 1.2272755 0.7242383 0.28030977
-4.961015 -1.2782104 1.4265846 0.74184746 0.30530018
-5.234336 -0.6271574 1.6486598 0.7595348 0.33108157
-6.226608 -1.0932949 3.5650928 0.7322235 0.43295115
-6.305898 -1.1272098 3.3581429 0.73322976 0.42379624
-6.151763 1.1790631 3.7604373 0.7870415 0.47630098
-5.905936 1.3837563 3.0893543 0.7985271 0.44545877
-6.226608 1.2808112 3.5650933 0.79046047 0.46892568
-5.441843 1.2810414 2.3856962 0.8051178 0.40395233
-5.472035 1.0955285 2.1710093 0.80176544 0.39076093
-5.234335 0.8146766 1.6486602 0.8006003 0.35685968
-4.961015 1.4657286 1.4265853 0.82246286 0.35554326
-4.597517 2.0365298 1.2272764 0.84334224 0.35357055
-4.167474 2.5230017 1.0500206 0.86335564 0.35098696
-3.692775 2.9267967 0.8941067 0.88258815 0.3479454
-3.192136 3.2545059 0.7588228 0.9011091 0.34469023
-2.679895 3.5166588 0.64345783 0.9189918 0.34154084
-2.165009 3.7265108 0.5473019 0.9363344 0.3388705
-1.650261 3.8986237 0.4696409 0.9532806 0.3370787
-1.131681 4.047222 0.40976495 0.97003675 0.3365558
-0.593193 4.148368 0.358663 0.9869241 0.33593062
-0.031388 4.185115 0.358663 1.0041846 0.33616397
-0.031388 4.1582 0.30827197 0.0041528577 0.33328766
--0.51853 4.062593 0.25930497 0.021167671 0.32819456
--1.015927 3.856869 0.21247092 0.037372213 0.32021737
--1.43616 3.542965 0.16848285 0.05270915 0.30886775
--1.751502 3.129351 0.12805174 0.066994935 0.2935639
--1.932774 2.632222 0.091889635 0.079837166 0.27357402
--1.951262 2.07641 0.060706493 0.09044103 0.24797803
--1.780884 1.496025 0.03521436 0.09710862 0.21573408
--1.400649 0.934836 0.01612522 0.09576835 0.1761815
--0.797362 0.446371 0.0041501075 0.075041264 0.13134547
--0.745872 -0.362749 0.004149914 0.11231123 0.083245195
--1.282794 -0.923104 0.016124777 0.20373258 0.089479215
--1.589196 -1.526825 0.035213638 0.2684933 0.10101351
--1.684167 -2.123406 0.060705494 0.3173816 0.111270554
--1.593227 -2.672351 0.09188837 0.35849872 0.11896195
--1.345738 -3.142928 0.12805025 0.39599073 0.12453342
--0.972596 -3.513662 0.16848117 0.4319634 0.12885417
--0.504186 -3.771555 0.2124691 0.46749023 0.13285229
-0.03139 -3.911043 0.25930306 0.5030304 0.13743418
-0.589498 -3.934176 0.30827007 0.53736866 0.14330384
-1.129994 -3.853641 0.3586611 0.569245 0.15052335
-1.639713 -3.686313 0.40976313 0.5987594 0.15904571
-2.127253 -3.4747093 0.46963912 0.62561953 0.17028728
-2.610939 -3.2400231 0.5473002 0.6496063 0.18514612
-3.09224 -2.9670923 0.6434563 0.67119503 0.20291455
-3.566001 -2.6411862 0.75882137 0.6909803 0.22299422
-4.021125 -2.2495282 0.89410543 0.7095337 0.24489103
-4.441473 -1.7826183 1.0500195 0.7273501 0.26820707
-4.806964 -1.2353363 1.2272757 0.7448469 0.29263708
-5.094901 -0.6078374 1.4265848 0.7623805 0.3179688
-5.3514423 0.012153961 1.8133727 0.7761904 0.35157433
-5.281489 0.093758605 1.64866 0.78026783 0.3440802
-5.352945 0.09375857 1.8049828 0.7785559 0.3526718
-5.3521404 -0.37995145 1.8710058 0.7645098 0.34765828
-5.358717 -0.44156677 1.8942099 0.7625226 0.34789917
-5.3448434 -0.31537974 1.8458022 0.7666025 0.34737822
-5.472035 -0.90801156 2.1710098 0.7467563 0.3565075
-6.026505 -1.0529056 2.6349387 0.7399345 0.38738745
-5.967959 -1.1604058 2.8555918 0.73528546 0.39507085
-6.38519 -1.0932947 3.1511939 0.73582983 0.4158411
-6.347317 -0.757071 4.175892 0.7361019 0.46788254
-6.287454 -0.536486 4.29437 0.740427 0.4765373
-6.422355 -0.91463196 4.027377 0.7336556 0.45908204
-6.507514 -1.009169 3.8588378 0.7329307 0.45059937
-6.247827 -0.25287604 4.3728 0.7467587 0.4845125
-6.233493 0.09375795 4.401168 0.7551544 0.4912106
-6.247827 0.44039297 4.3728 0.763967 0.4951951
-6.287455 0.724002 4.29437 0.7714343 0.49576178
-6.347317 0.944587 4.175892 0.7774326 0.49347243
-5.967959 1.3479233 2.8555923 0.7989115 0.4344191
-5.3448424 0.5028968 1.8458023 0.7896237 0.36183357
-5.3585806 0.6311578 1.8942101 0.7926213 0.366776
-5.3463483 0.4210525 1.8373849 0.7874341 0.3599369
-5.0949 0.7953556 1.4265852 0.80317134 0.3436526
-4.806964 1.4228547 1.2272763 0.82488525 0.34269077
-4.441473 1.9701368 1.0500205 0.84556234 0.34119216
-4.021125 2.4370458 0.89410657 0.8653167 0.33927986
-3.566001 2.8287039 0.7588227 0.8842358 0.33718067
-3.09224 3.1546109 0.6434578 0.90239954 0.3352041
-2.610939 3.4275408 0.5473018 0.9199018 0.33371925
-2.127253 3.6622267 0.46964085 0.93687284 0.3331262
-1.639712 3.873831 0.40976492 0.9534977 0.3338199
-1.129994 4.04116 0.35866296 0.97011584 0.33443654
-0.589497 4.121696 0.30827197 0.9869705 0.33305186
-0.031388 4.1582 0.30827197 1.0041529 0.33328766
-0.031388 4.098561 0.25930497 0.0041241273 0.3291916
--0.504187 3.959073 0.21247093 0.020980367 0.32238814
--0.972596 3.70118 0.16848288 0.036892567 0.31213707
--1.345738 3.330446 0.12805179 0.05172074 0.2978317
--1.593227 2.859869 0.091889694 0.0651317 0.2787139
--1.684167 2.310925 0.060706552 0.07642849 0.2538232
--1.589196 1.714344 0.035214413 0.08411457 0.22203253
--1.282794 1.110623 0.016125262 0.08461784 0.18245469
--0.745872 0.550267 0.00415013 0.0679265 0.13636872
--0.681904 -0.458159 0.0041498914 0.11344239 0.07565706
--1.14379 -1.08142 0.01612474 0.21707863 0.07800243
--1.370878 -1.718514 0.035213593 0.29096636 0.08927099
--1.387597 -2.322241 0.06070545 0.34490913 0.10071097
--1.223485 -2.855594 0.09188832 0.38914424 0.110187955
--0.910736 -3.291394 0.12805021 0.4288361 0.11792677
--0.482028 -3.611637 0.16848114 0.46643335 0.12475487
-0.03139 -3.806586 0.21246909 0.5030612 0.13160531
-0.581308 -3.875074 0.25930306 0.53786445 0.1392216
-1.122767 -3.827673 0.30827007 0.5698558 0.14769325
-1.637246 -3.680516 0.35866114 0.599352 0.15699773
-2.113597 -3.451457 0.40976316 0.6266302 0.16716662
-2.565292 -3.1810281 0.46963918 0.65144885 0.17967033
-3.012548 -2.8874002 0.5473003 0.6736789 0.19546953
-3.454289 -2.5547473 0.6434564 0.6938709 0.21394119
-3.882982 -2.1683922 0.7588215 0.7126206 0.23455666
-4.285429 -1.7162253 0.89410555 0.7304732 0.25687566
-4.643762 -1.1899152 1.0500197 0.74789655 0.2805428
-4.936666 -0.5859133 1.2272758 0.765288 0.30528843
-5.14079 0.09375866 1.426585 0.78299344 0.33092856
-5.49612 -0.6482935 1.9997417 0.75556535 0.3529566
-6.078094 -0.8737396 2.4405017 0.74610615 0.38197187
-6.460035 -0.9915467 2.9558487 0.7398826 0.4094768
-6.597729 -1.0406809 3.6802866 0.7337678 0.4428365
-6.687944 -1.0091689 3.5017347 0.7360194 0.4361491
-6.432116 -0.2228721 4.621907 0.7457882 0.49759218
-6.416719 0.09375789 4.645651 0.7532488 0.503476
-6.432116 0.4103879 4.621907 0.7610647 0.507076
-6.422357 1.102148 4.0273776 0.7819185 0.48893225
-6.305898 1.3147272 3.3581433 0.7922481 0.4602639
-6.507514 1.1966851 3.8588383 0.7848992 0.4827248
-6.026504 1.2404234 2.6349392 0.7975227 0.42308575
-6.078094 1.0612564 2.4405022 0.7943171 0.4119434
-4.936666 0.7734317 1.2272762 0.80578 0.33087128
-4.643762 1.3774338 1.0500203 0.8273128 0.3303944
-4.285429 1.9037437 0.89410645 0.8477419 0.32957104
-3.882982 2.3559108 0.75882256 0.86718285 0.32859713
-3.454289 2.7422657 0.64345765 0.88573205 0.32776517
-3.012548 3.0749187 0.5473017 0.90348876 0.32743624
-2.565292 3.3685467 0.46964073 0.92057794 0.32800913
-2.113597 3.638975 0.40976486 0.93717104 0.3298834
-1.637246 3.868034 0.35866293 0.9536312 0.33170825
-1.122766 4.015192 0.30827194 0.97023827 0.33156127
-0.581308 4.062593 0.25930497 0.98705435 0.32895082
-0.031388 4.098561 0.25930497 1.0041242 0.3291916
-0.031388 3.994104 0.21247095 0.0040991586 0.3233643
--0.482029 3.799155 0.16848291 0.020726208 0.31426167
--0.910737 3.478912 0.12805183 0.036218718 0.3010155
--1.223485 3.043113 0.09188974 0.050304834 0.28283468
--1.387597 2.509759 0.060706597 0.06238526 0.2587151
--1.370878 1.906032 0.035214458 0.071153596 0.22744814
--1.14379 1.268938 0.016125299 0.07349045 0.18794325
--0.681904 0.645678 0.004150152 0.06061935 0.14083028
--0.606457 -0.544087 0.004149869 0.112546735 0.068091385
--0.985475 -1.220424 0.016124707 0.23158579 0.06626924
--1.128466 -1.881038 0.035213556 0.3173099 0.0778776
--1.064654 -2.482291 0.060705412 0.376655 0.09124852
--0.8271 -2.99088 0.09188829 0.42354658 0.10315824
--0.450394 -3.383332 0.1280502 0.46471283 0.11362056
-0.03139 -3.645218 0.16848114 0.5030745 0.123445936
-0.566965 -3.771555 0.2124691 0.5385846 0.1334103
-1.106753 -3.770133 0.2593031 0.57073367 0.14365555
-1.626682 -3.655687 0.30827013 0.6001562 0.15421201
-2.110404 -3.446021 0.35866117 0.6273155 0.16515473
-2.548781 -3.159691 0.40976325 0.6525471 0.1765979
-2.959794 -2.8346462 0.4696393 0.6756047 0.1900613
-3.365171 -2.4857912 0.5473004 0.6963991 0.20656404
-3.761251 -2.0968971 0.6434565 0.7155096 0.22555754
-4.138134 -1.6535553 0.7588216 0.7335175 0.24657309
-4.48056 -1.1444943 0.8941057 0.7509428 0.26921755
-4.769032 -0.56268525 1.0500199 0.7682318 0.29317474
-4.981122 0.09375871 1.227276 0.785768 0.31820664
-6.11925 -0.62290657 2.2853887 0.7536836 0.37930763
-6.525987 -0.82196766 2.7837138 0.74526894 0.40508473
-6.773101 -0.9146318 3.3331947 0.7395576 0.43086433
-6.53899 -0.68342406 4.457094 0.7362603 0.48324886
-6.474683 -0.4819321 4.556261 0.74014133 0.4906811
-6.619598 -0.827346 4.332786 0.73403704 0.47574672
-6.711076 -0.9137 4.191718 0.7333365 0.46856594
-6.807985 -0.942485 4.042269 0.73401916 0.46204472
-6.474684 0.6694489 4.556261 0.7676766 0.50775784
-6.53899 0.8709399 4.457094 0.77297497 0.50599265
-6.38519 1.2808113 3.1511943 0.7924356 0.45085615
-6.460035 1.1790633 2.9558492 0.7910347 0.44117337
-5.49612 0.83581054 1.9997422 0.7961869 0.3783545
-5.512064 0.5018875 1.8863682 0.78816915 0.36732134
-5.363674 0.78273904 1.9486927 0.79621893 0.3723108
-4.769031 0.7502038 1.0500202 0.8084018 0.3186497
-4.48056 1.3320128 0.89410627 0.8297021 0.3188571
-4.138134 1.8410738 0.75882244 0.8498203 0.31897268
-3.761252 2.2844148 0.64345753 0.8688804 0.3192581
-3.365171 2.6733088 0.54730165 0.8869971 0.32005858
-2.959794 3.0221639 0.46964067 0.9043001 0.3217675
-2.548781 3.347209 0.4097648 0.9209559 0.32478732
-2.110404 3.633539 0.35866287 0.9373581 0.3277831
-1.626682 3.843205 0.3082719 0.9538279 0.32884222
-1.106752 3.957652 0.25930494 0.97043157 0.32746407
-0.566964 3.959073 0.21247093 0.9871925 0.32311508
-0.031388 3.994104 0.21247095 1.0040991 0.3233643
-0.031388 3.832736 0.16848291 0.004078716 0.3152074
--0.450395 3.57085 0.12805185 0.020376071 0.30307487
--0.8271 3.178398 0.09188977 0.0352587 0.285898
--1.064654 2.669809 0.060706634 0.04822458 0.2626244
--1.128466 2.068556 0.035214495 0.058149498 0.23196559
--0.985475 1.407942 0.016125333 0.062332295 0.19264722
--0.606457 0.731605 0.0041501746 0.05313266 0.14473441
--0.52053 -0.619534 0.0041498505 0.10891115 0.060654208
--0.809688 -1.338279 0.016124677 0.24815989 0.05430144
--0.864498 -2.01186 0.035213526 0.34941164 0.06722001
--0.71844 -2.600453 0.060705382 0.41354772 0.083481684
--0.407625 -3.074657 0.09188828 0.4617453 0.09851096
-0.03139 -3.414844 0.12805018 0.5030621 0.11221294
-0.544806 -3.611636 0.16848114 0.53966486 0.12527496
-1.078704 -3.669351 0.21246912 0.572034 0.13790746
-1.603274 -3.600671 0.25930312 0.6013223 0.15023603
-2.096727 -3.422734 0.3082702 0.6282507 0.1624163
-2.544921 -3.154702 0.35866126 0.6532868 0.17461923
-2.940713 -2.815565 0.4097633 0.6767452 0.18702932
-3.306176 -2.4401443 0.46963936 0.6983488 0.20120719
-3.664141 -2.0398612 0.5473005 0.71802336 0.21822552
-4.00834 -1.5983311 0.64345664 0.73635244 0.2376013
-4.326509 -1.1016202 0.7588218 0.7538984 0.25891855
-4.601397 -0.5394582 0.89410585 0.7711595 0.28182787
-4.811968 0.09375875 1.05002 0.78856605 0.3060483
-5.51783 0.09375856 1.845361 0.77744824 0.35836312
-5.512064 -0.31437045 1.8863679 0.76585865 0.35332602
-6.146493 -0.30040753 2.182709 0.7625566 0.37992164
-6.5786 -0.58455765 2.6463919 0.7518905 0.4030583
-6.84814 -0.7570708 3.1846807 0.74427676 0.4272985
-6.904897 -0.9136999 3.8928196 0.735955 0.4564806
-6.996375 -0.8273459 3.7517517 0.7390309 0.45214516
-6.765934 -0.73487616 4.664858 0.73418576 0.4927665
-6.681516 -0.6054021 4.765106 0.7361957 0.4990623
-6.56959 -0.19108516 4.898019 0.7446582 0.5112751
-6.553464 0.09375783 4.917167 0.7512397 0.51639694
-6.61417 -0.42413816 4.845079 0.73965645 0.5053566
-6.56959 0.37860084 4.898019 0.7581189 0.51963335
-6.619598 1.0148629 4.3327866 0.7769192 0.5022869
-6.597729 1.2281972 3.6802871 0.7864051 0.47537982
-6.711076 1.1012161 4.1917186 0.7795134 0.49713144
-6.119249 0.81042343 2.2853892 0.78920186 0.40145314
-6.525987 1.0094852 2.7837143 0.7880251 0.4316352
-4.601397 0.72697675 0.89410615 0.81098986 0.30718982
-4.326509 1.2891388 0.7588223 0.83198607 0.3083419
-4.00834 1.7858499 0.6434574 0.8517149 0.3097129
-3.664141 2.2273798 0.54730153 0.8703184 0.31161797
-3.306176 2.6276617 0.4696406 0.8879416 0.3144371
-2.940713 3.003083 0.4097647 0.90475655 0.31857094
-2.544921 3.34222 0.3586628 0.92119557 0.32270166
-2.096727 3.610252 0.30827186 0.93762755 0.3249314
-1.603274 3.788189 0.25930488 0.95412815 0.3247569
-1.078704 3.856869 0.21247092 0.9707283 0.32163253
-0.544806 3.799155 0.16848291 0.9874067 0.3149454
-0.031388 3.832736 0.16848291 1.0040787 0.3152074
-0.031388 3.602362 0.12805186 0.0040637385 0.3039778
--0.407625 3.262175 0.091889784 0.01988412 0.28786677
--0.71844 2.787971 0.060706664 0.03385437 0.26551738
--0.864498 2.199378 0.035214525 0.045026626 0.23556149
--0.809689 1.525797 0.016125362 0.051092096 0.19655748
--0.52053 0.807052 0.004150193 0.04547197 0.1480793
--0.425119 -0.683502 0.0041498356 0.10148223 0.053511932
--0.61827 -1.433146 0.016124655 0.26874885 0.04215478
--0.581508 -2.108444 0.035213504 0.38987228 0.05797961
--0.352058 -2.673626 0.06070536 0.4559586 0.07821249
-0.031389 -3.103372 0.091888264 0.50300515 0.09694155
-0.513173 -3.383332 0.1280502 0.5413578 0.114080176
-1.035374 -3.513662 0.16848117 0.5740051 0.12986644
-1.562275 -3.504309 0.21246916 0.603057 0.14457734
-2.066422 -3.371136 0.25930318 0.6296118 0.15850686
-2.528386 -3.133331 0.30827025 0.6542996 0.17192477
-2.936251 -2.811104 0.35866135 0.67750907 0.18507816
-3.284838 -2.423633 0.40976343 0.69949704 0.19820552
-3.599857 -2.0021052 0.46963948 0.7199527 0.21290219
-3.904796 -1.5542761 0.54730064 0.7388074 0.23029083
-4.190762 -1.0638402 0.64345676 0.7566378 0.24994762
-4.443162 -0.5175332 0.7588219 0.77398765 0.2715053
-4.642814 0.093758784 0.894106 0.79133785 0.29465437
-6.156348 0.093758486 2.14557 0.77261484 0.38440737
-6.613429 -0.27931562 2.555489 0.75966597 0.40382472
-6.908002 -0.53648573 3.0662029 0.75009346 0.42577505
-7.076982 -0.6834239 3.6274438 0.7431545 0.4492987
-6.861736 -0.8125601 4.551095 0.7335123 0.48679298
-6.963228 -0.8384551 4.430573 0.7340554 0.48142022
-7.064721 -0.81256 4.31005 0.7357023 0.47689155
-6.61417 0.6116538 4.845079 0.76392686 0.5204144
-6.681516 0.79291785 4.765106 0.7685685 0.51912826
-6.765935 0.9223919 4.664858 0.77200717 0.5161916
-6.687944 1.1966852 3.5017352 0.78646874 0.46736363
-6.7731 1.1021482 3.3331952 0.7851084 0.4590839
-6.146494 0.48792446 2.182709 0.78203183 0.39209294
-4.443162 0.70505184 0.7588222 0.81347126 0.29675213
-4.190762 1.2513589 0.6434573 0.83407307 0.2991608
-3.904796 1.7417948 0.5473014 0.8533231 0.30214205
-3.599857 2.1896229 0.4696405 0.8713943 0.30604795
-3.284838 2.611151 0.40976462 0.8884757 0.31126913
-2.936251 2.998622 0.35866272 0.90504825 0.31650278
-2.528386 3.32085 0.3082718 0.9215366 0.31986874
-2.066421 3.558654 0.25930482 0.93803245 0.32086524
-1.562274 3.691827 0.21247087 0.9545796 0.31894135
-1.035374 3.70118 0.16848288 0.9711706 0.31346816
-0.513172 3.570851 0.12805185 0.98772806 0.30369788
-0.031388 3.602362 0.12805186 1.0040637 0.3039778
-0.031388 3.29089 0.0918898 0.004055621 0.2887112
--0.352059 2.861144 0.060706686 0.019171545 0.26736045
--0.581509 2.295962 0.035214547 0.03170353 0.23820758
--0.61827 1.620664 0.016125385 0.039716024 0.19965714
--0.425119 0.87102 0.004150208 0.037635386 0.15085693
--0.321223 -0.734992 0.0041498244 0.08877551 0.046932235
--0.413058 -1.503184 0.01612464 0.29848444 0.030005231
--0.282034 -2.168254 0.03521349 0.44116998 0.0513024
-0.031389 -2.698706 0.06070536 0.5028526 0.076350406
-0.470403 -3.074657 0.09188828 0.5442108 0.09888028
-0.973514 -3.291394 0.12805021 0.5770998 0.11882063
-1.498938 -3.355447 0.1684812 0.60568357 0.1366699
-2.013342 -3.280761 0.21246922 0.63163614 0.15294485
-2.491747 -3.085979 0.25930324 0.6557754 0.16807738
-2.917142 -2.791994 0.30827034 0.67855704 0.18242025
-3.27985 -2.419773 0.35866144 0.7002624 0.19627477
-3.576605 -1.9884491 0.40976351 0.7210832 0.20991963
-3.836253 -1.5251131 0.4696396 0.7406835 0.2249825
-4.082469 -1.0337001 0.54730076 0.75899994 0.24263573
-4.303728 -0.49821314 0.6434569 0.776598 0.2625101
-4.483145 0.09375882 0.758822 0.7940047 0.28428358
-6.626027 0.0937584 2.522609 0.76852834 0.40786558
-6.947629 -0.25287572 2.987774 0.7569465 0.42664355
-7.141288 -0.48193184 3.528277 0.7482559 0.44820577
-7.160522 -0.73487604 4.196286 0.73835456 0.47342733
-7.24494 -0.605402 4.096038 0.74193275 0.47123697
-6.883815 -0.6424052 5.011791 0.7341479 0.5098049
-6.795586 -0.5273792 5.088857 0.7359519 0.51498157
-6.983941 -0.7114202 4.924334 0.7335073 0.504951
-6.678608 -0.15929824 5.191035 0.74341214 0.52521753
-6.661755 0.093757756 5.205756 0.7491729 0.5296307
-6.7252 -0.3663442 5.150337 0.7390153 0.5202202
-6.678608 0.34681374 5.191036 0.75517744 0.5325256
-6.807985 1.1300011 4.0422707 0.78078437 0.4909748
-6.861736 1.0000759 4.5510955 0.7742455 0.5120102
-6.5786 0.77207434 2.6463923 0.783347 0.42263433
-6.84814 0.94458723 3.1846812 0.78231794 0.45090306
-4.303727 0.6857318 0.6434572 0.8157451 0.28764513
-4.082469 1.2212188 0.5473013 0.83584875 0.2916592
-3.836253 1.7126309 0.46964037 0.854529 0.29662582
-3.576605 2.175967 0.4097645 0.8720053 0.3029112
-3.27985 2.607291 0.35866264 0.88881886 0.30922082
-2.917142 2.979512 0.3082717 0.9054599 0.3136925
-2.491747 3.273498 0.25930476 0.9220443 0.31582832
-2.013342 3.468279 0.21247081 0.9386354 0.31507638
-1.498937 3.542965 0.16848285 0.95524454 0.31079903
-0.973514 3.478912 0.12805183 0.971819 0.30222806
-0.470402 3.262175 0.091889784 0.9882053 0.28840742
-0.031388 3.29089 0.0918898 1.0040556 0.2887112
-0.031388 2.886225 0.060706686 0.0040567755 0.26812628
--0.282034 2.355772 0.035214562 0.018087903 0.23987432
--0.413058 1.690702 0.0161254 0.028143734 0.20192377
--0.321223 0.92251 0.0041502193 0.029613478 0.15305421
--0.209842 -0.773006 0.004149817 0.06898507 0.041343745
--0.195892 -1.546556 0.016124628 0.3551406 0.018591305
-0.031389 -2.188754 0.03521348 0.502391 0.048753105
-0.414836 -2.673626 0.06070536 0.5497012 0.078450054
-0.889878 -2.99088 0.09188829 0.5822767 0.10387651
-1.408516 -3.142928 0.12805025 0.60977864 0.12583219
-1.931343 -3.141148 0.16848126 0.6346885 0.14518106
-2.427573 -3.003042 0.21246928 0.65796685 0.16260532
-2.874799 -2.74965 0.25930333 0.6800847 0.1786246
-3.258479 -2.403238 0.30827042 0.701314 0.19364387
-3.571169 -1.9852551 0.35866153 0.72183377 0.20800139
-3.811461 -1.5145642 0.40976363 0.7417778 0.22200797
-4.010782 -1.0137491 0.46963972 0.760798 0.23732467
-4.192493 -0.48280016 0.5473009 0.77883995 0.25517502
-4.342447 0.093758844 0.643457 0.79645675 0.2752411
-6.61343 0.46683237 2.555489 0.776897 0.4145666
-6.961964 0.09375829 2.959406 0.76479495 0.43029714
-7.183856 -0.22287183 3.462632 0.754288 0.44915026
-7.312286 -0.42413795 4.016066 0.7463783 0.47053194
-7.090015 -0.7344251 4.831681 0.73392797 0.50064224
-7.102135 -0.61595124 5.2988 0.73336124 0.52246636
-6.995688 -0.55511934 5.36178 0.73396075 0.52631795
-7.196088 -0.7114201 4.739028 0.735313 0.49707106
-7.296215 -0.64240515 4.651571 0.73757774 0.49440968
-6.725201 0.5538598 5.150337 0.76023304 0.5333909
-6.795585 0.7148958 5.088857 0.7642585 0.53253925
-6.883816 0.8299208 5.011791 0.7672224 0.5303067
-6.904897 1.1012161 3.8928201 0.7807632 0.48421425
-6.996375 1.014863 3.7517521 0.77947146 0.4771984
-4.192493 0.6703189 0.5473012 0.81768495 0.28020933
-4.010782 1.2012678 0.46964025 0.8371836 0.28619704
-3.811461 1.7020829 0.4097644 0.85521656 0.29352173
-3.571169 2.172774 0.35866252 0.8723997 0.30088434
-3.258479 2.590756 0.30827162 0.88930047 0.3064363
-2.874799 2.937169 0.25930467 0.90606904 0.3096834
-2.427573 3.190561 0.21247075 0.92279637 0.31007558
-1.931343 3.328667 0.1684828 0.9395187 0.3069717
-1.408516 3.330446 0.12805179 0.9562125 0.29959068
-0.889878 3.178398 0.09188977 0.9727686 0.28695
-0.414836 2.861144 0.060706686 0.98892224 0.26779372
-0.031388 2.886225 0.060706686 1.0040568 0.26812628
-0.031388 2.376273 0.03521457 0.004071895 0.24053638
--0.195892 1.734075 0.01612541 0.01630411 0.20333238
--0.209842 0.960525 0.0041502267 0.021388238 0.15465388
--0.091971 -0.796547 0.0041498095 0.04081967 0.03738569
-0.031389 -1.561422 0.016124625 0.4983209 0.012071457
-0.344812 -2.168254 0.03521349 0.5636592 0.051334843
-0.781218 -2.600453 0.060705382 0.5920085 0.08394659
-1.286263 -2.855594 0.09188832 0.61652315 0.11123268
-1.814279 -2.941833 0.1280503 0.6394032 0.13456266
-2.328437 -2.874919 0.16848132 0.6612545 0.15497372
-2.800634 -2.675486 0.21246935 0.68234843 0.17322706
-3.211128 -2.366599 0.25930342 0.7028469 0.1898865
-3.547882 -1.9715791 0.3082705 0.722866 0.20538735
-3.805664 -1.5120981 0.35866165 0.7425015 0.22009456
-3.984852 -1.0065331 0.40976375 0.76184225 0.23434745
-4.118859 -0.4725981 0.46963984 0.7805404 0.24984467
-4.230205 0.093758866 0.547301 0.7985552 0.26786318
-6.94763 0.4403923 2.987775 0.77225596 0.43617085
-7.199254 0.09375818 3.438887 0.76122737 0.4524506
-7.384444 -0.5273791 4.574504 0.74065423 0.49282017
-7.214904 -0.6362293 5.232078 0.733681 0.51910836
-6.983941 0.8989358 4.924334 0.7691277 0.527022
-4.118859 0.66011685 0.46964014 0.8191471 0.27479887
-3.984852 1.1940519 0.4097643 0.83794737 0.28312588
-3.805664 1.6996169 0.35866243 0.855662 0.29151744
-3.547882 2.159097 0.3082715 0.8729507 0.298128
-3.211128 2.554117 0.25930458 0.8900101 0.30246308
-2.800634 2.863004 0.21247068 0.9069683 0.30397496
-2.328437 3.062438 0.16848274 0.92389476 0.30202222
-1.814279 3.12935 0.12805174 0.9408008 0.29581717
-1.286263 3.043113 0.09188974 0.9576247 0.28435984
-0.781218 2.787971 0.060706664 0.97418314 0.26635993
-0.344812 2.355772 0.035214562 0.990039 0.24017496
-0.031388 2.376273 0.03521457 1.004072 0.24053638
-0.031389 1.74894 0.016125415 0.004111371 0.20385857
--0.091972 0.984066 0.004150234 0.01293153 0.15563528
-0.031389 -0.804616 0.0041498095 0.005600465 0.03582915
-0.25867 -1.546556 0.016124628 0.6467737 0.01808156
-0.644286 -2.108444 0.035213504 0.61506075 0.05806753
-1.127432 -2.482291 0.060705412 0.6287953 0.09193243
-1.656005 -2.672351 0.09188837 0.6470343 0.1203132
-2.186906 -2.692007 0.12805036 0.66628397 0.14455268
-2.686063 -2.560915 0.1684814 0.6857274 0.16570336
-3.128191 -2.302425 0.21246944 0.7051138 0.18454367
-3.496284 -1.9412731 0.2593035 0.72437084 0.20165369
-3.780835 -1.5015341 0.30827063 0.7434981 0.2174872
-3.978789 -1.0048451 0.35866177 0.76253057 0.2324317
-4.092226 -0.46890712 0.40976387 0.7815242 0.24685498
-4.155903 0.09375889 0.46963996 0.8001416 0.26249844
-7.183858 0.41038817 3.462632 0.7678617 0.45758727
-7.356866 -0.19108494 3.963126 0.7516556 0.47153765
-7.372993 0.09375806 3.943978 0.7577529 0.474507
-7.454829 -0.36634406 4.513024 0.74449384 0.49246514
-7.501422 -0.15929806 4.472326 0.74907005 0.49351782
-7.327673 -0.61595124 5.165356 0.7348367 0.5163897
-6.90189 -0.4537323 5.417278 0.73556674 0.5304915
-7.240761 -0.53182536 5.661857 0.7331116 0.5385781
-7.124003 -0.47820437 5.703021 0.73365974 0.5415982
-7.364456 -0.54969937 5.618248 0.733358 0.5360042
-7.43412 -0.5551193 5.102376 0.7367553 0.51443887
-7.527918 -0.45373222 5.046878 0.7393787 0.51337516
-6.759611 0.09375769 5.50146 0.7471117 0.5427227
-6.777528 -0.1292933 5.490859 0.7421007 0.53895134
-6.827062 -0.31179032 5.461551 0.7382599 0.5347827
-6.777528 0.31680968 5.49086 0.7523179 0.545301
-6.827062 0.49930668 5.461551 0.7566852 0.5462274
-6.90189 0.6412477 5.417278 0.7601447 0.5457485
-6.995689 0.7426347 5.36178 0.76267105 0.5441307
-6.963228 1.0259709 4.4305735 0.77530724 0.506957
-7.102135 0.80346775 5.2988 0.76426935 0.54163593
-7.090015 0.92194086 4.831681 0.7699968 0.5229886
-7.064721 1.0000759 4.3100505 0.7752218 0.5013638
-7.160522 0.922392 4.196286 0.7740124 0.49552223
-6.908003 0.7240023 3.0662034 0.7780589 0.44315565
-7.076982 0.8709401 3.6274443 0.7769116 0.47023574
-4.092225 0.6564259 0.40976414 0.8199866 0.2717593
-3.978789 1.1923639 0.3586623 0.8384439 0.28114426
-3.780835 1.6890519 0.3082714 0.85628235 0.2887907
-3.496284 2.128792 0.2593045 0.8737602 0.2941941
-3.128191 2.489944 0.21247059 0.8910553 0.29680574
-2.686063 2.748433 0.16848266 0.90827954 0.29598498
-2.186906 2.879525 0.12805168 0.92548704 0.29094183
-1.656005 2.859869 0.091889694 0.9426687 0.28066608
-1.127432 2.669809 0.060706634 0.9597241 0.26384452
-0.644286 2.295962 0.035214547 0.97637546 0.2387914
-0.25867 1.734075 0.01612541 0.9919062 0.20348524
-0.031389 1.74894 0.016125415 1.0041114 0.20385857
-0.031389 0.992134 0.004150234 0.0042037703 0.15597595
-0.031389 -0.804616 0.0041498095 1.0056005 0.03582915
-0.154749 -0.796547 0.0041498095 0.97005683 0.03714447
-0.475836 -1.503184 0.01612464 0.70595217 0.029425893
-0.927276 -2.01186 0.035213526 0.65563864 0.0673934
-1.450375 -2.322241 0.06070545 0.6604699 0.101609856
-1.995552 -2.444703 0.09188843 0.67428946 0.13060617
-2.522497 -2.397349 0.12805043 0.6908504 0.15543954
-3.000067 -2.203289 0.16848148 0.70848155 0.17709771
-3.405909 -1.888194 0.21246955 0.7265917 0.19634432
-3.725819 -1.4781262 0.25930363 0.74495083 0.21376292
-3.952821 -0.9976181 0.30827075 0.7634795 0.2298214
-4.085998 -0.4680451 0.3586619 0.7821703 0.2449301
-4.129028 0.0937589 0.40976402 0.80105585 0.25948712
-7.141288 0.66944915 3.5282772 0.77306 0.46360832
-7.356868 0.37860104 3.963127 0.7636123 0.4789643
-7.518275 0.093757935 4.457606 0.7543795 0.496173
-7.602746 -0.3117902 5.002604 0.74266684 0.513318
-7.65228 -0.12929417 4.973297 0.7465999 0.5143951
-7.021118 -0.38883537 5.739296 0.73507833 0.5449355
-7.488149 -0.5318263 5.574637 0.7343259 0.5339829
-6.884708 -0.10285438 5.787389 0.74078465 0.5519005
-6.865056 0.09375762 5.794318 0.74513763 0.55511963
-6.939041 -0.26371837 5.768233 0.73743665 0.5484327
-6.884708 0.2903696 5.787389 0.74964577 0.55741084
-7.24494 0.79291797 4.096038 0.7716874 0.48968938
-4.085998 0.6555639 0.35866216 0.8205343 0.26979968
-3.952821 1.1851369 0.30827126 0.8391335 0.27844748
-3.725819 1.6656439 0.25930437 0.85719156 0.28489825
-3.405909 2.075712 0.21247049 0.87495077 0.28859288
-3.000067 2.390807 0.16848257 0.8925782 0.2888891
-2.522497 2.584868 0.12805161 0.9101799 0.28499642
-1.995552 2.632222 0.091889635 0.9278069 0.27590024
-1.450375 2.509759 0.060706597 0.9454459 0.26027423
-0.927275 2.199378 0.035214525 0.9629765 0.23640493
-0.475836 1.690702 0.0161254 0.9800311 0.20221947
-0.154749 0.984066 0.004150234 0.99547046 0.1556601
-0.031389 0.992134 0.004150234 1.0042038 0.15597595
-0.031389 0.093759 2.2351742e-08 1.0044622 0.095903985
-0.272619 -0.773006 0.004149817 0.94118667 0.040924538
-0.681048 -1.433146 0.016124655 0.7364956 0.041612256
-1.191244 -1.881038 0.035213556 0.68786013 0.078163765
-1.746945 -2.123406 0.060705494 0.6879736 0.112383604
-2.301352 -2.176204 0.09188849 0.6988834 0.1417241
-2.817155 -2.061758 0.1280505 0.7135466 0.16694376
-3.266296 -1.806195 0.16848157 0.7298776 0.18894465
-3.629457 -1.437126 0.21246965 0.74709153 0.20846619
-3.895281 -0.98160404 0.25930375 0.764863 0.22609288
-4.059325 -0.4643491 0.30827087 0.78306234 0.242308
-4.122745 0.09375891 0.35866204 0.8016542 0.25754723
-7.312286 0.61165404 4.016066 0.7682338 0.4840974
-7.501424 0.34681392 4.472327 0.7595067 0.49999878
-7.670198 0.093757816 4.962696 0.7511812 0.516752
-7.604908 -0.47820434 5.533473 0.7359511 0.53260595
-7.424265 -0.46471444 6.000871 0.7327976 0.55243444
-7.291207 -0.41684544 6.023712 0.73328257 0.554854
-7.565227 -0.48067042 5.976672 0.7330048 0.5504193
-7.706189 -0.46471444 5.952474 0.73383707 0.5488866
-7.707793 -0.3888353 5.497199 0.7381834 0.5319573
-7.789871 -0.2637183 5.468262 0.74098897 0.53212094
-6.939041 0.45123464 5.768233 0.75341064 0.5583621
-7.021118 0.5763506 5.739296 0.7563735 0.5581662
-7.124004 0.6657196 5.703022 0.75851494 0.5570341
-7.240761 0.71934164 5.661857 0.75984323 0.5551743
-7.214904 0.8237448 5.232078 0.7649622 0.5385067
-7.196088 0.89893585 4.739028 0.7698581 0.51847726
-7.296213 0.8299209 4.65157 0.7687363 0.51372546
-4.059324 0.6518679 0.30827114 0.82129323 0.2671317
-3.895281 1.1691229 0.25930426 0.8401425 0.27459702
-3.629457 1.624645 0.21247038 0.8585275 0.27935654
-3.266296 1.993714 0.16848248 0.87668514 0.28075746
-2.817155 2.249276 0.12805153 0.894786 0.2780073
-2.301352 2.363722 0.091889575 0.9129508 0.27009076
-1.746945 2.310925 0.060706552 0.93125993 0.25567687
-1.191244 2.068556 0.035214495 0.9497528 0.23303953
-0.681047 1.620664 0.016125385 0.9684027 0.20008145
-0.272619 0.960525 0.0041502267 0.9869978 0.1547005
-0.384001 -0.734992 0.0041498244 0.92068756 0.046408914
-0.872466 -1.338279 0.016124677 0.75745535 0.05383502
-1.433655 -1.718514 0.035213593 0.71432865 0.089691974
-2.014039 -1.888891 0.060705554 0.7122727 0.12383938
-2.569851 -1.870404 0.09188856 0.72138643 0.15338048
-3.06698 -1.689131 0.1280506 0.7347847 0.17885236
-3.480595 -1.373789 0.16848168 0.7502472 0.20108232
-3.794499 -0.95355606 0.21246977 0.7668989 0.22078927
-4.000223 -0.45616007 0.25930387 0.7843635 0.2385628
-4.095829 0.093758926 0.30827102 0.8024819 0.25490516
-7.454829 0.55385995 4.513024 0.76357675 0.5043091
-7.652282 0.3168098 4.973298 0.7556257 0.5200008
-7.844203 -0.1028543 5.449106 0.74435353 0.5331883
-7.863856 0.093757704 5.442177 0.7482848 0.53526634
-7.173959 -0.33706346 6.04384 0.7345288 0.55757976
-7.839246 -0.41684544 5.929632 0.73523605 0.547901
-7.018507 -0.08176245 6.070526 0.73953485 0.5634244
-6.99611 0.093757555 6.07437 0.743348 0.5662081
-7.080424 -0.22536942 6.059897 0.7365984 0.56048775
-7.018507 0.26927754 6.070526 0.7472878 0.56824905
-7.384444 0.7148959 4.574504 0.7666441 0.5089411
-4.000222 0.64367795 0.25930414 0.822402 0.26332194
-3.794499 1.141075 0.21247026 0.8416243 0.26911592
-3.480595 1.561308 0.16848238 0.86047417 0.27160743
-3.066981 1.87665 0.12805144 0.8792019 0.26999438
-2.569851 2.057922 0.0918895 0.89801013 0.26326048
-2.014039 2.07641 0.060706493 0.91708285 0.25007692
-1.433655 1.906032 0.035214458 0.93662584 0.22871879
-0.872466 1.525797 0.016125362 0.9569518 0.19709246
-0.384001 0.92251 0.0041502193 0.9787474 0.15311794
-0.487897 -0.683502 0.0041498356 0.9074271 0.05294332
-1.048252 -1.220424 0.016124707 0.77425957 0.065902114
-1.651973 -1.526825 0.035213638 0.7369358 0.101585865
-2.248554 -1.621797 0.060705613 0.7341818 0.13569365
-2.797499 -1.530857 0.09188865 0.74229634 0.16536547
-3.268076 -1.283368 0.12805068 0.7549312 0.19100642
-3.63881 -0.91022605 0.16848178 0.7698907 0.21339294
-3.896703 -0.44181606 0.21246989 0.7862763 0.23323445
-4.036191 0.09375894 0.25930402 0.80368984 0.25113186
-7.602747 0.4993058 5.002604 0.7591766 0.5235681
-7.844204 0.2903697 5.449106 0.7521146 0.53801084
-7.956495 -0.33706343 5.909505 0.7371565 0.547521
-7.677091 -0.42028853 6.303204 0.7324612 0.56321895
-7.519749 -0.37622753 6.312047 0.7328705 0.56531465
-7.843778 -0.43497553 6.293836 0.73266864 0.5614955
-8.010466 -0.42028853 6.284467 0.7334274 0.5602066
-8.167806 -0.3762275 6.275625 0.7346809 0.55940205
-8.050031 -0.2253694 5.893447 0.73956907 0.5478054
-8.111947 -0.0817624 5.882818 0.742463 0.54882073
-7.080424 0.41288453 6.059897 0.7505637 0.56917536
-7.173959 0.5245796 6.04384 0.7531237 0.56914294
-7.291209 0.6043606 6.023712 0.75495315 0.56832486
-7.364456 0.73721564 5.618248 0.76038265 0.55278
-7.424265 0.65222955 6.000871 0.7560638 0.5668935
-7.327673 0.80346775 5.165356 0.76477844 0.534959
-7.43412 0.7426348 5.102376 0.76374435 0.53118145
-3.896703 0.6293349 0.21247014 0.8240303 0.25789958
-3.63881 1.097744 0.16848227 0.8437851 0.2614552
-3.268076 1.470886 0.12805136 0.86330307 0.2609713
-2.797499 1.718375 0.09188941 0.88288444 0.25542518
-2.248554 1.809315 0.060706433 0.90282995 0.24349238
-1.651973 1.714344 0.035214413 0.9235223 0.22346218
-1.048252 1.407942 0.016125333 0.94562006 0.19327176
-0.487896 0.87102 0.004150208 0.97069263 0.15093133
-0.583307 -0.619534 0.0041498505 0.89960766 0.060081463
-1.206568 -1.08142 0.01612474 0.7889447 0.077750765
-1.843662 -1.308507 0.03521369 0.7569442 0.11361574
-2.447388 -1.325227 0.060705688 0.7543443 0.14775155
-2.980742 -1.161115 0.091888726 0.7620338 0.17752707
-3.416542 -0.8483661 0.12805079 0.77430844 0.20329225
-3.736785 -0.41965806 0.1684819 0.7890797 0.22579993
-3.931734 0.09375895 0.21247002 0.80546427 0.24576263
-7.527918 0.6412478 5.046878 0.76187664 0.52733713
-7.789871 0.4512347 5.468261 0.75519365 0.5409451
-8.134343 0.0937576 5.878974 0.7458492 0.5506475
-8.111949 0.2692776 5.882819 0.7491578 0.55298346
-7.381104 -0.30279252 6.319839 0.7339643 0.5677004
-8.306452 -0.3027925 6.267833 0.7363857 0.5591257
-7.19728 -0.067799516 6.33017 0.73842895 0.57288074
-7.170798 0.09375749 6.331658 0.7418479 0.57537246
-7.270498 -0.19998251 6.326055 0.73580337 0.5702682
-7.197281 0.25531548 6.330171 0.7453802 0.5772094
-3.736784 0.60717696 0.16848215 0.8264077 0.25032514
-3.416542 1.035885 0.12805125 0.8469314 0.25095013
-2.980742 1.348633 0.09188934 0.8674531 0.24659386
-2.447388 1.512745 0.06070636 0.8884072 0.23593386
-1.843662 1.496025 0.03521436 0.9103687 0.21728212
-1.206568 1.268938 0.016125299 0.9343553 0.18863359
-0.583307 0.807052 0.004150193 0.96281636 0.14815669
-0.669235 -0.544087 0.004149869 0.8957099 0.06754263
-1.345572 -0.923104 0.016124777 0.8024492 0.08935393
-2.006186 -1.066096 0.03521375 0.77519625 0.12564099
-2.607439 -1.002283 0.060705762 0.77326185 0.15987931
-3.116028 -0.76473004 0.09188883 0.78095317 0.18975984
-3.508481 -0.38802403 0.12805091 0.7932006 0.21563762
-3.770365 0.09375896 0.16848204 0.80805945 0.2382667
-7.707793 0.5763507 5.497199 0.75755644 0.54398876
-8.050031 0.4128846 5.893447 0.7518321 0.55542916
-8.417057 -0.19998349 6.261616 0.7385148 0.55942243
-8.023683 -0.40421957 6.556222 0.7321446 0.57027876
-7.832079 -0.36153558 6.556222 0.7324667 0.5723424
-8.226667 -0.41844758 6.556223 0.7323947 0.568571
-8.429652 -0.40421957 6.556223 0.73314786 0.56727904
-8.621255 -0.36153558 6.556223 0.73434484 0.5664488
-8.790092 -0.29039657 6.556223 0.7359413 0.56611955
-8.490275 -0.06779949 6.257502 0.7410594 0.5603449
-8.516758 0.09375751 6.256013 0.7440326 0.56196034
-7.270498 0.38749847 6.326055 0.74830884 0.5780533
-7.381104 0.49030748 6.319839 0.75058407 0.57804334
-7.519751 0.5637425 6.312047 0.75219417 0.57733667
-7.565227 0.66818655 5.976672 0.75648284 0.56500816
-7.488149 0.7193417 5.574637 0.7601639 0.5500225
-7.677091 0.6078035 6.303204 0.7531542 0.57609004
-7.604907 0.6657197 5.533473 0.75921524 0.5470502
-3.50848 0.5755429 0.12805113 0.8298777 0.23994918
-3.116028 0.9522479 0.09188923 0.8515617 0.23677224
-2.607439 1.189802 0.060706284 0.8737011 0.22740406
-2.006186 1.253614 0.0352143 0.897084 0.21018283
-1.345572 1.110623 0.016125262 0.92310816 0.18318503
-0.669235 0.731605 0.0041501746 0.9551103 0.14480594
-0.744682 -0.458159 0.0041498914 0.8946455 0.07515137
-1.463427 -0.747318 0.016124818 0.815278 0.100697055
-2.137007 -0.802127 0.03521381 0.79227257 0.13757303
-2.725601 -0.65607 0.060705844 0.7913308 0.17198826
-3.199805 -0.34525403 0.09188892 0.79935604 0.20199904
-3.539992 0.09375897 0.12805103 0.81185937 0.22800967
-7.956494 0.5245786 5.909505 0.753902 0.5579292
-8.490276 0.2553145 6.257502 0.7469401 0.5640037
-8.417058 0.3874985 6.261616 0.7492982 0.5661309
-7.663242 -0.29039657 6.556223 0.7334336 0.5746798
-8.924785 -0.19080055 6.556223 0.7379099 0.56633186
-7.528552 -0.19080055 6.556222 0.73511124 0.57717985
-7.439389 -0.062749565 6.556223 0.73754394 0.57969874
-7.40714 0.093757436 6.556223 0.74073887 0.582062
-7.43939 0.2502644 6.556222 0.744051 0.58375293
-3.199805 0.53277296 0.09188914 0.83500487 0.2259706
-2.725601 0.843588 0.060706202 0.85856605 0.2179005
-2.137007 0.989646 0.03521424 0.88357073 0.20215943
-1.463427 0.934837 0.01612522 0.91182625 0.17692465
-0.744682 0.645678 0.004150152 0.94757414 0.14088632
-0.80865 -0.362748 0.004149914 0.8956748 0.08279553
-1.558294 -0.5559 0.016124863 0.82774043 0.11177193
-2.233592 -0.519138 0.035213877 0.80859053 0.14935842
-2.798774 -0.28968802 0.060705934 0.8088714 0.18402755
-3.228519 0.09375898 0.09188904 0.8175018 0.21421789
-7.839246 0.6043606 5.929632 0.7553755 0.5604165
-8.306452 0.4903075 6.267833 0.75113475 0.5682999
-9.013946 -0.062749565 6.556222 0.74024296 0.56713444
-8.117544 -0.4003006 6.607957 0.73215437 0.5714672
-7.917896 -0.35795256 6.606471 0.7324544 0.5735398
-8.32905 -0.41441557 6.609533 0.73241544 0.56974584
-8.540556 -0.4003006 6.611108 0.7331679 0.5684361
-8.740203 -0.35795256 6.612595 0.73435223 0.56758386
-8.916128 -0.2873726 6.613904 0.7359239 0.5672285
-9.056473 -0.18856156 6.61495 0.7378556 0.5674104
-9.046195 0.093757436 6.556223 0.74295497 0.5685924
-9.013947 0.2502644 6.556223 0.7456017 0.5704701
-7.528551 0.37831643 6.556223 0.74679685 0.58445877
-7.663242 0.4779114 6.556223 0.7489236 0.5843254
-7.83208 0.54905045 6.556223 0.75042003 0.58351874
-7.706189 0.65222955 5.952474 0.7562432 0.56280935
-7.843778 0.6224905 6.293836 0.7534945 0.57444763
-8.023683 0.59173447 6.556223 0.75130403 0.5822032
-2.798774 0.47720698 0.060706113 0.84280586 0.20742214
-2.233592 0.706657 0.035214175 0.8697028 0.19319968
-1.558294 0.743418 0.016125176 0.9004488 0.16984145
-0.80865 0.550267 0.00415013 0.94021493 0.13639916
-0.86014 -0.258853 0.004149936 0.89830226 0.09040136
-1.628332 -0.350688 0.016124915 0.8400483 0.12257623
-2.293402 -0.219664 0.03521395 0.8244657 0.1609711
-2.823854 0.093758985 0.060706023 0.82614845 0.19598036
-8.167806 0.5637425 6.275625 0.752456 0.5704573
-8.924785 0.37831542 6.556222 0.7477493 0.57245594
-8.790092 0.4779114 6.556223 0.7494267 0.57451206
-7.741971 -0.2873726 6.605162 0.7333894 0.57588
-9.149378 -0.06151758 6.61564 0.7401397 0.568178
-7.601626 -0.18856156 6.604117 0.7350259 0.5783747
-7.508721 -0.061517578 6.603425 0.73740935 0.5808774
-7.475118 0.09375743 6.603175 0.74054706 0.58321077
-7.508722 0.24903344 6.603424 0.74380374 0.5848619
-2.293402 0.40718198 0.0352141 0.8553089 0.18328738
-1.628332 0.538206 0.016125124 0.8888983 0.16191481
-0.86014 0.446371 0.0041501075 0.9330473 0.13133983
-0.898154 -0.147471 0.004149966 0.9021962 0.09791995
-1.671704 -0.133522 0.016124964 0.85236037 0.13311578
-2.313902 0.09375899 0.035214026 0.840146 0.1724107
-8.010465 0.6078035 6.284468 0.7532507 0.57253504
-8.621254 0.54905045 6.556222 0.7506397 0.5765889
-9.182981 0.09375742 6.615892 0.7427908 0.5695966
-8.414001 -0.4032706 6.654039 0.7325721 0.5707993
-8.197822 -0.3894646 6.650955 0.7323091 0.57250726
-7.993762 -0.3480456 6.648044 0.7325897 0.5745557
-8.630181 -0.38946462 6.657123 0.7333101 0.56949246
-8.83424 -0.34804562 6.660034 0.73446476 0.5686328
-9.014054 -0.2790136 6.662599 0.7359922 0.5682594
-9.1575 -0.18236957 6.664644 0.7378657 0.56841224
-9.25246 -0.05811259 6.665999 0.74007756 0.56913966
-9.149379 0.24903244 6.61564 0.74537605 0.57143766
-9.056473 0.37607643 6.614949 0.7474729 0.57339674
-7.601626 0.37607643 6.604117 0.74650496 0.58552575
-7.741971 0.47488743 6.605162 0.7485972 0.5853509
-7.917897 0.5454674 6.606472 0.7500691 0.58450645
-8.226667 0.60596246 6.556223 0.7516096 0.5805284
-8.117544 0.5878154 6.607957 0.75093853 0.5831595
-1.671704 0.32104 0.016125076 0.8770682 0.15311524
-0.898154 0.33499 0.0041500777 0.92609394 0.12569726
-0.921695 -0.029601002 0.004149992 0.90713507 0.10531991
-1.68657 0.09375899 0.01612502 0.864805 0.14340682
-8.429652 0.59173447 6.556222 0.75137615 0.57862204
-8.916128 0.47488743 6.613904 0.74911046 0.5754358
-8.740202 0.5454674 6.612594 0.7502947 0.5775057
-7.813949 -0.27901357 6.645481 0.7334865 0.5768612
-9.286804 0.09375741 6.66649 0.74264205 0.570506
-7.670502 -0.18236957 6.643434 0.7350651 0.5793108
-7.575544 -0.058112584 6.64208 0.7373706 0.58175844
-7.541198 0.09375741 6.64159 0.74041027 0.58402824
-7.575544 0.24562742 6.642079 0.74356806 0.58562046
-0.921695 0.21712 0.0041500516 0.9193871 0.119453356
-0.929764 0.093759 0.004150022 0.9129718 0.11258351
-8.540556 0.5878154 6.611108 0.7510134 0.57954204
-9.25246 0.24562742 6.665999 0.74514085 0.5722918
-8.48117 -0.3864346 6.689476 0.7328367 0.57171893
-8.263782 -0.3730956 6.685015 0.7325792 0.573391
-8.698558 -0.3730956 6.693935 0.7335495 0.5704326
-8.058579 -0.3330796 6.680805 0.7328429 0.5753885
-8.903758 -0.3330796 6.698145 0.7346613 0.5695779
-9.084578 -0.2663866 6.701856 0.73612976 0.5691938
-9.228826 -0.1730156 6.704815 0.73792905 0.56932
-9.324316 -0.052967597 6.706774 0.7400515 0.5700041
-9.358852 0.0937574 6.707484 0.7425105 0.5713091
-9.1575 0.3698844 6.664644 0.7471663 0.57420194
-9.014054 0.4665284 6.662599 0.7487469 0.5761986
-7.670501 0.36988443 6.643434 0.7461892 0.5862412
-7.813948 0.46652943 6.645481 0.7482208 0.5860382
-7.993762 0.53556037 6.648045 0.7496514 0.58517927
-8.32905 0.6019314 6.609533 0.75124013 0.5814617
-8.197822 0.5769794 6.650955 0.7504983 0.5838304
-8.834239 0.53556037 6.660034 0.7498887 0.5782329
-8.630181 0.5769794 6.657122 0.7505801 0.5802413
-7.877761 -0.2663866 6.677096 0.73369753 0.577629
-9.324316 0.2404834 6.706774 0.7449048 0.5730257
-7.733512 -0.17301558 6.674137 0.73520637 0.5800016
-7.638024 -0.05296759 6.672177 0.73741263 0.58236367
-7.603485 0.093757406 6.671468 0.7403238 0.58454436
-7.638023 0.24048342 6.672177 0.74335 0.58606386
-8.414001 0.5907864 6.654039 0.750795 0.5821419
-9.228826 0.3605314 6.704815 0.7468438 0.57486993
-8.530196 -0.36532962 6.715575 0.73318386 0.5724912
-8.314681 -0.3525776 6.709936 0.73293746 0.5741096
-8.74571 -0.3525776 6.721214 0.73386335 0.5712396
-8.949141 -0.3143196 6.726535 0.7349228 0.5704002
-8.111251 -0.3143196 6.704613 0.73318666 0.5760352
-9.128401 -0.2505576 6.731225 0.73632205 0.57001215
-9.271405 -0.1612906 6.734966 0.73803616 0.5701146
-9.366071 -0.046519607 6.737443 0.7400576 0.5707541
-9.400311 0.09375739 6.73834 0.7423985 0.57199204
-9.366072 0.2340344 6.737443 0.7446764 0.5736299
-9.084578 0.45390138 6.701856 0.7483551 0.57680416
-8.903757 0.5205954 6.698145 0.7494447 0.5787801
-7.733512 0.3605314 6.674137 0.7458642 0.586642
-7.877761 0.45390138 6.677096 0.74781543 0.58642274
-8.05858 0.5205954 6.680805 0.7491921 0.58556944
-8.263782 0.56061137 6.685015 0.75001013 0.5842433
-8.698558 0.56061137 6.693935 0.75010157 0.58073574
-8.48117 0.5739494 6.689476 0.7503011 0.5825907
-7.93199 -0.2505576 6.699924 0.7339971 0.5781876
-9.271405 0.34880638 6.734966 0.7465192 0.57539606
-7.788986 -0.1612906 6.696182 0.73542833 0.58045924
-7.69432 -0.0465196 6.693707 0.7375212 0.5827135
-7.66008 0.093757406 6.69281 0.740283 0.584787
-7.69432 0.2340344 6.693707 0.74315536 0.5862248
-9.128401 0.4380734 6.731225 0.74795306 0.5772531
-8.560727 -0.3413796 6.732071 0.73358953 0.573101
-8.349788 -0.3292926 6.725519 0.7333584 0.5746527
-8.771667 -0.3292926 6.738623 0.7342306 0.57189476
-8.970775 -0.29303062 6.744808 0.7352319 0.57107925
-9.146229 -0.23259561 6.750258 0.73655564 0.5706931
-8.150678 -0.29303062 6.719332 0.7335954 0.57649153
-9.286197 -0.1479856 6.754607 0.7381784 0.5707751
-9.378853 -0.039201614 6.757485 0.7400925 0.5713706
-9.412367 0.09375739 6.758527 0.74230886 0.572539
-9.378853 0.22671638 6.757484 0.74446416 0.5740926
-9.286197 0.3355004 6.754607 0.74620575 0.5757731
-8.949139 0.5018354 6.726535 0.748984 0.5791537
-8.74571 0.5400924 6.721212 0.74960184 0.5810372
-7.788985 0.34880638 6.696182 0.745544 0.58676225
-7.93199 0.4380734 6.699924 0.747401 0.58653724
-8.111251 0.5018354 6.704614 0.7487148 0.58570576
-8.314681 0.5400924 6.709936 0.74949956 0.584422
-8.530196 0.5528444 6.715575 0.749784 0.58282596
-7.975225 -0.2325956 6.713883 0.7343612 0.5785397
-9.146229 0.4201104 6.750259 0.7475581 0.5775432
-7.835256 -0.14798559 6.709535 0.7357111 0.5806946
-7.742601 -0.039200597 6.706657 0.7376829 0.5828265
-7.709088 0.0937574 6.705616 0.7402837 0.58478194
-7.742601 0.2267164 6.706657 0.74298924 0.58613354
-8.970775 0.48054639 6.744808 0.7485273 0.5793567
-8.572406 -0.3160066 6.738696 0.7340313 0.5735312
-8.368363 -0.3046236 6.731559 0.73381805 0.575008
-8.776448 -0.3046236 6.745831 0.7346313 0.57237774
-8.969049 -0.2704766 6.752568 0.735572 0.57159215
-9.138766 -0.2135656 6.758504 0.7368182 0.5712128
-9.274158 -0.13388962 6.763238 0.7383479 0.5712778
-8.175762 -0.2704766 6.724823 0.7340448 0.57675135
-9.363784 -0.031448614 6.766374 0.7401536 0.5718316
-9.396201 0.09375738 6.767508 0.74224454 0.5729309
-9.363785 0.21896338 6.766374 0.74427694 0.5743991
-9.274158 0.3214044 6.763238 0.7459171 0.5759908
-9.138766 0.4010804 6.758504 0.7471879 0.57766926
-8.771667 0.5168074 6.738623 0.749104 0.58115464
-8.560727 0.52889436 6.732071 0.74926776 0.5828625
-7.835257 0.3355004 6.709535 0.74524176 0.58663315
-7.975225 0.4201104 6.713883 0.7469965 0.58641094
-8.150678 0.48054639 6.719333 0.748242 0.58561367
-8.349788 0.5168074 6.725519 0.74899054 0.58438677
-8.006045 -0.21356559 6.718887 0.7347673 0.5786865
-8.969047 0.4579924 6.752567 0.74809504 0.5793892
-7.870653 -0.13388859 6.714152 0.7360359 0.5807162
-7.781028 -0.0314476 6.711018 0.7378851 0.5827191
-7.748609 0.0937574 6.709884 0.74032205 0.5845525
-7.781027 0.2189634 6.711018 0.7428571 0.58581775
-8.776448 0.4921394 6.745831 0.7486306 0.581094
-8.760084 -0.2799556 6.742507 0.73504615 0.57266563
-8.564877 -0.29063362 6.735183 0.73448753 0.57376283
-8.36967 -0.2799556 6.727859 0.7342931 0.5751616
-8.944346 -0.24792361 6.749419 0.735927 0.5719135
-9.106715 -0.19453561 6.755511 0.73709756 0.5715445
-9.236244 -0.11979261 6.760371 0.73853725 0.57159644
-9.321991 -0.023695612 6.763587 0.74023855 0.57211196
-8.185408 -0.2479236 6.720946 0.73451173 0.57680666
-9.353004 0.09375738 6.764751 0.7422093 0.5731458
-9.321991 0.21121038 6.763587 0.7441242 0.5745315
-9.236244 0.30730838 6.760371 0.7456674 0.5760361
-9.106715 0.3820504 6.755511 0.74686027 0.5776232
-8.944345 0.4354384 6.749419 0.7477082 0.57924896
-8.572406 0.5035214 6.738696 0.74877614 0.58271223
-8.368364 0.4921394 6.731559 0.7485068 0.58415514
-7.870653 0.3214044 6.714153 0.7449702 0.58628327
-8.006045 0.4010804 6.718887 0.74662006 0.5860704
-8.175763 0.4579924 6.724823 0.7477956 0.5853159
-8.02304 -0.1945356 6.714856 0.7351938 0.578627
-8.760085 0.46747038 6.742506 0.7482044 0.5808586
-7.893508 -0.1197926 6.709995 0.7363848 0.5805308
-7.807764 -0.0236956 6.706779 0.73811615 0.58240545
-7.776749 0.0937574 6.705616 0.7403945 0.58411944
-7.807764 0.2112104 6.706779 0.74276423 0.5853022
-8.564877 0.4781484 6.735183 0.74833286 0.5823843
-8.897054 -0.2266336 6.734967 0.7362809 0.57201445
-8.722601 -0.25667062 6.728314 0.7354558 0.57273227
-8.537786 -0.2666826 6.721266 0.73493636 0.5737741
-8.352968 -0.25667062 6.714218 0.7347609 0.5750969
-9.05078 -0.17657259 6.74083 0.7373818 0.57165813
-9.173415 -0.10648761 6.745506 0.73873913 0.57170033
-9.254597 -0.01637761 6.748602 0.7403455 0.572183
-9.283958 0.09375739 6.749724 0.7422074 0.5731583
-8.178515 -0.2266336 6.707565 0.7349735 0.57664746
-9.254597 0.2038924 6.748602 0.74401593 0.57446855
-9.173415 0.29400238 6.745506 0.7454716 0.5758925
-9.05078 0.3640884 6.74083 0.74659395 0.5773942
-8.897053 0.4141494 6.734967 0.74738836 0.57893056
-8.722602 0.44418538 6.728314 0.7478491 0.58044916
-8.36967 0.46747038 6.727859 0.74807143 0.5837422
-8.185409 0.4354384 6.720947 0.7473968 0.5848323
-7.893508 0.30730838 6.709997 0.7447418 0.5857381
-8.02304 0.3820504 6.714855 0.7462896 0.5855394
-8.02479 -0.17657259 6.701703 0.73561984 0.5783581
-8.537784 0.4541984 6.721266 0.74796206 0.58188534
-7.902153 -0.106487595 6.697027 0.7367408 0.5801429
-7.820973 -0.016376596 6.693931 0.7383647 0.58189744
-7.791609 0.093757406 6.692811 0.7404978 0.5835008
-7.820973 0.20389241 6.69393 0.74271595 0.58460903
-8.352969 0.44418538 6.714218 0.7477082 0.58316016
-8.971666 -0.16074459 6.714012 0.7376586 0.571519
-8.827559 -0.2078746 6.708817 0.73661745 0.5718623
-8.664023 -0.23615259 6.702923 0.7358407 0.5725483
-8.490773 -0.24557859 6.696679 0.735356 0.5735397
-8.317523 -0.23615259 6.690434 0.73519826 0.57479435
-9.086627 -0.0947626 6.718154 0.7389462 0.57155514
-9.162727 -0.009928602 6.720897 0.7404728 0.5720115
-9.190252 0.0937574 6.721889 0.7422437 0.5729382
-9.162728 0.19744341 6.720897 0.74396354 0.57418513
-8.153986 -0.20787458 6.68454 0.7354075 0.5762607
-9.086627 0.2822774 6.718153 0.7453461 0.5755401
-8.971666 0.3482594 6.714012 0.7464095 0.57696784
-8.827559 0.39538938 6.708817 0.7471589 0.5784259
-8.664024 0.4236674 6.702922 0.74758947 0.5798638
-8.490773 0.4330934 6.696679 0.74768925 0.5812197
-8.178515 0.4141494 6.707565 0.74706733 0.5841803
-8.02479 0.3640884 6.701703 0.746023 0.5848389
-7.902153 0.29400238 6.697027 0.744569 0.58502054
-8.009881 -0.16074458 6.679348 0.736025 0.5778742
-8.317523 0.4236674 6.690434 0.7474416 0.58241916
-7.89492 -0.09476259 6.675204 0.7370873 0.5795542
-7.81882 -0.009928591 6.672461 0.7386201 0.5812038
-7.791294 0.093757406 6.671469 0.7406295 0.58271194
-7.81882 0.19744343 6.672461 0.7427181 0.5837574
-8.153986 0.39538938 6.684541 0.7468293 0.5833748
-8.870075 -0.14811657 6.674603 0.73791516 0.57108724
-8.73625 -0.19290859 6.670574 0.7369193 0.57141906
-8.976836 -0.08540859 6.677818 0.73915076 0.5711203
-8.584379 -0.21978357 6.665999 0.7361803 0.5720791
-8.423488 -0.22874159 6.661153 0.7357238 0.57303023
-8.262595 -0.21978357 6.656307 0.7355818 0.5742307
-9.047508 -0.0047835927 6.679947 0.74061906 0.57155854
-9.07307 0.093757406 6.680717 0.74232394 0.57245046
-9.047508 0.19229943 6.679947 0.7439796 0.573651
-8.976836 0.27292338 6.677818 0.74530905 0.57495475
-8.110724 -0.19290859 6.651734 0.73579097 0.57563
-8.870075 0.33563238 6.674603 0.7463291 0.5763261
-8.736248 0.3804234 6.670573 0.7470448 0.57772356
-8.58438 0.4072984 6.665999 0.74745244 0.5790977
-8.423488 0.41625738 6.661153 0.7475414 0.58038896
-8.262595 0.4072984 6.656307 0.7472976 0.58152664
-8.009881 0.3482594 6.679348 0.7458385 0.5839876
-7.89492 0.2822774 6.675205 0.7444647 0.58415073
-7.976898 -0.14811657 6.647704 0.73638856 0.5771663
-8.110724 0.38042343 6.651734 0.74670607 0.5824282
-8.746714 -0.13975857 6.622157 0.73813754 0.5703165
-8.623509 -0.18300156 6.61984 0.7371681 0.5706408
-8.623508 0.37051642 6.61984 0.74707437 0.57680845
-8.746714 0.32727343 6.622158 0.7463777 0.5754469
-7.870138 -0.08540858 6.644489 0.7374078 0.5787635
-7.799467 -0.004783584 6.64236 0.73887205 0.58033085
-7.773904 0.09375741 6.64159 0.74078727 0.58176535
-7.799467 0.19229943 6.64236 0.742777 0.5827639
-7.976898 0.3356324 6.647704 0.74575543 0.58300114
-8.845 -0.07921658 6.624006 0.73934495 0.5703491
-8.910064 -0.0013785795 6.62523 0.740783 0.5707789
-8.483692 -0.20894757 6.61721 0.7364528 0.57128495
-8.33557 -0.21759656 6.614423 0.73601574 0.5722113
-8.187449 -0.20894757 6.611637 0.7358869 0.5733779
-8.933597 0.09375742 6.625673 0.74245477 0.5716538
-8.910064 0.18889342 6.62523 0.7440784 0.57283074
-8.845 0.26673242 6.624006 0.74538076 0.5741071
-8.047631 -0.18300156 6.609007 0.73609996 0.574735
-8.483693 0.39646342 6.61721 0.74746764 0.57814294
-8.33557 0.40511143 6.614423 0.74754846 0.5793922
-8.187448 0.39646342 6.611637 0.74730456 0.58048785
-8.047631 0.37051642 6.609007 0.74672306 0.58135086
-7.870138 0.27292442 6.644489 0.7444424 0.5831461
-7.924427 -0.13975756 6.606689 0.73668945 0.57622206
-7.924427 0.32727343 6.606689 0.74579453 0.5818934
-8.602284 -0.13673455 6.556223 0.7383107 0.5691524
-8.489726 -0.17941855 6.556223 0.73734355 0.5694759
-8.692078 -0.076977566 6.556223 0.73951983 0.56918657
-8.489725 0.36693344 6.556222 0.74727905 0.5756612
-8.602284 0.32424942 6.556223 0.74658364 0.57430273
-8.361991 0.39254344 6.556222 0.74766827 0.576988
-7.82614 -0.07921657 6.604842 0.73768574 0.57776636
-7.761076 -0.0013785744 6.603617 0.7391104 0.57928145
-7.737544 0.09375743 6.603175 0.74096954 0.58067054
-7.761076 0.18889344 6.603618 0.7428998 0.5816423
-7.82614 0.26673242 6.604842 0.7445168 0.5820218
-8.75152 -0.00014656312 6.556222 0.74096346 0.5696195
-8.773019 0.093757436 6.556223 0.7426441 0.5704995
-8.361991 -0.20502855 6.556223 0.73663425 0.57011867
-8.226667 -0.21356554 6.556223 0.7362058 0.5710419
-8.091345 -0.20502855 6.556222 0.73608685 0.5722024
-8.751521 0.18766145 6.556223 0.7442764 0.57168204
-8.692078 0.26449242 6.556222 0.7455845 0.57296216
-7.963609 -0.17941855 6.556222 0.7363092 0.5735499
-8.226667 0.40108043 6.556223 0.74774355 0.57822526
-8.091344 0.39254344 6.556223 0.747494 0.57930505
-7.963609 0.36693344 6.556223 0.7469084 0.58015037
-7.85105 0.32424942 6.556223 0.7459789 0.5806756
-7.85105 -0.13673455 6.556223 0.7369052 0.57502437
-7.761256 0.26449242 6.556223 0.74470437 0.5807901
-7.761256 -0.076977566 6.556222 0.7379036 0.57655394
-7.701815 -0.00014656312 6.556223 0.7393248 0.5780551
-7.680315 0.093757436 6.556223 0.74117506 0.579434
-7.701815 0.18766145 6.556222 0.7430948 0.5804036
--5.4321294 0.09374705 2.458583 0.23363093 0.37729645
-3 0 1 2
-3 3 0 2
-3 1 0 4
-3 4 5 1
-3 1 6 2
-3 7 3 2
-3 0 3 8
-3 8 4 0
-3 9 10 5
-3 5 4 9
-3 5 11 6
-3 6 1 5
-3 6 12 2
-3 13 7 2
-3 14 8 3
-3 3 7 14
-3 15 9 4
-3 4 8 15
-3 16 17 10
-3 10 9 16
-3 10 18 11
-3 11 5 10
-3 11 19 12
-3 12 6 11
-3 12 20 2
-3 21 13 2
-3 22 14 7
-3 7 13 22
-3 23 15 8
-3 8 14 23
-3 24 16 9
-3 9 15 24
-3 25 26 17
-3 17 16 25
-3 17 27 18
-3 18 10 17
-3 18 28 19
-3 19 11 18
-3 19 29 20
-3 20 12 19
-3 20 30 2
-3 31 21 2
-3 32 22 13
-3 13 21 32
-3 33 23 14
-3 14 22 33
-3 34 24 15
-3 15 23 34
-3 35 25 16
-3 16 24 35
-3 36 37 26
-3 26 25 36
-3 26 38 27
-3 27 17 26
-3 27 39 28
-3 28 18 27
-3 28 40 29
-3 29 19 28
-3 29 41 30
-3 30 20 29
-3 30 42 2
-3 43 31 2
-3 44 32 21
-3 21 31 44
-3 45 33 22
-3 22 32 45
-3 46 34 23
-3 23 33 46
-3 47 35 24
-3 24 34 47
-3 48 36 25
-3 25 35 48
-3 49 50 37
-3 37 36 49
-3 37 51 38
-3 38 26 37
-3 38 52 39
-3 39 27 38
-3 39 53 40
-3 40 28 39
-3 40 54 41
-3 41 29 40
-3 41 55 42
-3 42 30 41
-3 42 56 2
-3 57 43 2
-3 58 44 31
-3 31 43 58
-3 59 45 32
-3 32 44 59
-3 60 46 33
-3 33 45 60
-3 61 47 34
-3 34 46 61
-3 62 48 35
-3 35 47 62
-3 63 49 36
-3 36 48 63
-3 64 65 50
-3 50 49 64
-3 50 66 51
-3 51 37 50
-3 51 67 52
-3 52 38 51
-3 52 68 53
-3 53 39 52
-3 53 69 54
-3 54 40 53
-3 54 70 55
-3 55 41 54
-3 55 71 56
-3 56 42 55
-3 56 72 2
-3 73 57 2
-3 74 58 43
-3 43 57 74
-3 75 59 44
-3 44 58 75
-3 76 60 45
-3 45 59 76
-3 77 61 46
-3 46 60 77
-3 78 62 47
-3 47 61 78
-3 79 63 48
-3 48 62 79
-3 80 64 49
-3 49 63 80
-3 81 82 65
-3 65 64 81
-3 65 83 66
-3 66 50 65
-3 66 84 67
-3 67 51 66
-3 67 85 68
-3 68 52 67
-3 68 86 69
-3 69 53 68
-3 69 87 70
-3 70 54 69
-3 70 88 71
-3 71 55 70
-3 71 89 72
-3 72 56 71
-3 72 90 2
-3 91 73 2
-3 92 74 57
-3 57 73 92
-3 93 75 58
-3 58 74 93
-3 94 76 59
-3 59 75 94
-3 95 77 60
-3 60 76 95
-3 96 78 61
-3 61 77 96
-3 97 79 62
-3 62 78 97
-3 98 80 63
-3 63 79 98
-3 80 99 81
-3 81 64 80
-3 100 101 82
-3 82 81 100
-3 82 102 83
-3 83 65 82
-3 83 103 84
-3 84 66 83
-3 84 104 85
-3 85 67 84
-3 85 105 86
-3 86 68 85
-3 86 106 87
-3 87 69 86
-3 87 107 88
-3 88 70 87
-3 88 108 89
-3 89 71 88
-3 89 109 90
-3 90 72 89
-3 90 110 2
-3 111 91 2
-3 112 92 73
-3 73 91 112
-3 113 93 74
-3 74 92 113
-3 114 94 75
-3 75 93 114
-3 115 95 76
-3 76 94 115
-3 116 96 77
-3 77 95 116
-3 117 97 78
-3 78 96 117
-3 118 98 79
-3 79 97 118
-3 98 119 99
-3 99 80 98
-3 99 120 100
-3 100 81 99
-3 100 121 122
-3 122 101 100
-3 101 123 102
-3 102 82 101
-3 83 102 124
-3 124 103 83
-3 103 125 104
-3 104 84 103
-3 104 126 105
-3 105 85 104
-3 105 127 106
-3 106 86 105
-3 106 128 107
-3 107 87 106
-3 107 129 108
-3 108 88 107
-3 108 130 109
-3 109 89 108
-3 109 131 110
-3 110 90 109
-3 110 132 2
-3 133 111 2
-3 134 112 91
-3 91 111 134
-3 135 113 92
-3 92 112 135
-3 136 114 93
-3 93 113 136
-3 137 115 94
-3 94 114 137
-3 138 116 95
-3 95 115 138
-3 139 117 96
-3 96 116 139
-3 140 118 97
-3 97 117 140
-3 118 141 119
-3 119 98 118
-3 119 142 120
-3 120 99 119
-3 120 143 121
-3 121 100 120
-3 101 122 144
-3 144 123 101
-3 102 123 145
-3 145 124 102
-3 103 124 146
-3 146 125 103
-3 125 147 126
-3 126 104 125
-3 126 148 127
-3 127 105 126
-3 127 149 128
-3 128 106 127
-3 128 150 129
-3 129 107 128
-3 129 151 130
-3 130 108 129
-3 130 152 131
-3 131 109 130
-3 131 153 132
-3 132 110 131
-3 132 154 2
-3 155 133 2
-3 156 134 111
-3 111 133 156
-3 157 135 112
-3 112 134 157
-3 158 136 113
-3 113 135 158
-3 159 137 114
-3 114 136 159
-3 160 138 115
-3 115 137 160
-3 161 139 116
-3 116 138 161
-3 162 140 117
-3 117 139 162
-3 140 163 141
-3 141 118 140
-3 141 164 142
-3 142 119 141
-3 142 165 143
-3 143 120 142
-3 166 167 121
-3 121 143 166
-3 167 168 122
-3 122 121 167
-3 125 146 169
-3 169 147 125
-3 147 170 148
-3 148 126 147
-3 148 171 149
-3 149 127 148
-3 149 172 150
-3 150 128 149
-3 150 173 151
-3 151 129 150
-3 151 174 152
-3 152 130 151
-3 152 175 153
-3 153 131 152
-3 153 176 154
-3 154 132 153
-3 154 177 2
-3 178 155 2
-3 179 156 133
-3 133 155 179
-3 180 157 134
-3 134 156 180
-3 181 158 135
-3 135 157 181
-3 182 159 136
-3 136 158 182
-3 183 160 137
-3 137 159 183
-3 184 161 138
-3 138 160 184
-3 185 162 139
-3 139 161 185
-3 186 163 140
-3 140 162 186
-3 163 187 164
-3 164 141 163
-3 164 188 165
-3 165 142 164
-3 189 166 143
-3 143 165 189
-3 190 191 167
-3 167 166 190
-3 191 192 168
-3 168 167 191
-3 168 193 144
-3 144 122 168
-3 123 144 194
-3 194 145 123
-3 124 145 195
-3 195 146 124
-3 169 196 170
-3 170 147 169
-3 170 197 171
-3 171 148 170
-3 171 198 172
-3 172 149 171
-3 172 199 173
-3 173 150 172
-3 173 200 174
-3 174 151 173
-3 174 201 175
-3 175 152 174
-3 175 202 176
-3 176 153 175
-3 176 203 177
-3 177 154 176
-3 177 204 2
-3 205 178 2
-3 206 179 155
-3 155 178 206
-3 207 180 156
-3 156 179 207
-3 208 181 157
-3 157 180 208
-3 209 182 158
-3 158 181 209
-3 210 183 159
-3 159 182 210
-3 211 184 160
-3 160 183 211
-3 212 185 161
-3 161 184 212
-3 213 186 162
-3 162 185 213
-3 214 187 163
-3 163 186 214
-3 187 215 188
-3 188 164 187
-3 216 189 165
-3 165 188 216
-3 217 190 166
-3 166 189 217
-3 218 219 191
-3 191 190 218
-3 219 220 192
-3 192 191 219
-3 192 221 193
-3 193 168 192
-3 193 222 194
-3 194 144 193
-3 146 195 223
-3 223 169 146
-3 169 223 224
-3 224 196 169
-3 196 225 197
-3 197 170 196
-3 197 226 198
-3 198 171 197
-3 198 227 199
-3 199 172 198
-3 199 228 200
-3 200 173 199
-3 200 229 201
-3 201 174 200
-3 201 230 202
-3 202 175 201
-3 202 231 203
-3 203 176 202
-3 203 232 204
-3 204 177 203
-3 204 233 2
-3 234 205 2
-3 235 206 178
-3 178 205 235
-3 236 207 179
-3 179 206 236
-3 237 208 180
-3 180 207 237
-3 238 209 181
-3 181 208 238
-3 239 210 182
-3 182 209 239
-3 240 211 183
-3 183 210 240
-3 241 212 184
-3 184 211 241
-3 242 213 185
-3 185 212 242
-3 243 214 186
-3 186 213 243
-3 244 215 187
-3 187 214 244
-3 245 216 188
-3 188 215 245
-3 246 217 189
-3 189 216 246
-3 247 218 190
-3 190 217 247
-3 248 249 219
-3 219 218 248
-3 249 250 220
-3 220 219 249
-3 220 251 221
-3 221 192 220
-3 221 252 222
-3 222 193 221
-3 222 253 254
-3 254 194 222
-3 145 194 254
-3 254 195 145
-3 224 255 225
-3 225 196 224
-3 225 256 226
-3 226 197 225
-3 226 257 227
-3 227 198 226
-3 227 258 228
-3 228 199 227
-3 228 259 229
-3 229 200 228
-3 229 260 230
-3 230 201 229
-3 230 261 231
-3 231 202 230
-3 231 262 232
-3 232 203 231
-3 232 263 233
-3 233 204 232
-3 233 264 2
-3 265 234 2
-3 266 235 205
-3 205 234 266
-3 267 236 206
-3 206 235 267
-3 268 237 207
-3 207 236 268
-3 269 238 208
-3 208 237 269
-3 270 239 209
-3 209 238 270
-3 271 240 210
-3 210 239 271
-3 272 241 211
-3 211 240 272
-3 241 273 242
-3 242 212 241
-3 242 274 243
-3 243 213 242
-3 275 244 214
-3 214 243 275
-3 276 245 215
-3 215 244 276
-3 277 246 216
-3 216 245 277
-3 278 247 217
-3 217 246 278
-3 279 248 218
-3 218 247 279
-3 280 281 249
-3 249 248 280
-3 281 282 250
-3 250 249 281
-3 250 283 251
-3 251 220 250
-3 251 284 252
-3 252 221 251
-3 252 285 253
-3 253 222 252
-3 253 286 287
-3 287 254 253
-3 195 254 287
-3 287 223 195
-3 223 287 288
-3 288 224 223
-3 288 289 255
-3 255 224 288
-3 255 290 256
-3 256 225 255
-3 226 256 291
-3 291 257 226
-3 257 292 258
-3 258 227 257
-3 258 293 259
-3 259 228 258
-3 259 294 260
-3 260 229 259
-3 260 295 261
-3 261 230 260
-3 261 296 262
-3 262 231 261
-3 262 297 263
-3 263 232 262
-3 263 298 264
-3 264 233 263
-3 264 299 2
-3 300 265 2
-3 301 266 234
-3 234 265 301
-3 302 267 235
-3 235 266 302
-3 303 268 236
-3 236 267 303
-3 304 269 237
-3 237 268 304
-3 305 270 238
-3 238 269 305
-3 306 271 239
-3 239 270 306
-3 307 272 240
-3 240 271 307
-3 272 308 273
-3 273 241 272
-3 273 309 274
-3 274 242 273
-3 274 310 275
-3 275 243 274
-3 311 276 244
-3 244 275 311
-3 312 277 245
-3 245 276 312
-3 313 278 246
-3 246 277 313
-3 314 279 247
-3 247 278 314
-3 315 280 248
-3 248 279 315
-3 316 317 281
-3 281 280 316
-3 317 318 282
-3 282 281 317
-3 282 319 283
-3 283 250 282
-3 283 320 284
-3 284 251 283
-3 284 321 285
-3 285 252 284
-3 285 322 286
-3 286 253 285
-3 286 323 288
-3 288 287 286
-3 323 324 289
-3 289 288 323
-3 289 325 290
-3 290 255 289
-3 256 290 326
-3 326 291 256
-3 257 291 327
-3 327 292 257
-3 292 328 293
-3 293 258 292
-3 293 329 294
-3 294 259 293
-3 294 330 295
-3 295 260 294
-3 295 331 296
-3 296 261 295
-3 296 332 297
-3 297 262 296
-3 297 333 298
-3 298 263 297
-3 298 334 299
-3 299 264 298
-3 299 335 2
-3 336 300 2
-3 337 301 265
-3 265 300 337
-3 338 302 266
-3 266 301 338
-3 339 303 267
-3 267 302 339
-3 340 304 268
-3 268 303 340
-3 341 305 269
-3 269 304 341
-3 342 306 270
-3 270 305 342
-3 343 307 271
-3 271 306 343
-3 307 344 308
-3 308 272 307
-3 308 345 309
-3 309 273 308
-3 309 346 310
-3 310 274 309
-3 347 311 275
-3 275 310 347
-3 348 312 276
-3 276 311 348
-3 349 313 277
-3 277 312 349
-3 350 314 278
-3 278 313 350
-3 351 315 279
-3 279 314 351
-3 352 316 280
-3 280 315 352
-3 353 354 317
-3 317 316 353
-3 354 355 318
-3 318 317 354
-3 318 356 319
-3 319 282 318
-3 319 357 320
-3 320 283 319
-3 320 358 321
-3 321 284 320
-3 321 359 322
-3 322 285 321
-3 322 360 323
-3 323 286 322
-3 360 361 324
-3 324 323 360
-3 324 362 325
-3 325 289 324
-3 290 325 363
-3 363 326 290
-3 292 327 364
-3 364 328 292
-3 328 365 329
-3 329 293 328
-3 329 366 330
-3 330 294 329
-3 330 367 331
-3 331 295 330
-3 331 368 332
-3 332 296 331
-3 332 369 333
-3 333 297 332
-3 333 370 334
-3 334 298 333
-3 334 371 335
-3 335 299 334
-3 335 372 2
-3 373 336 2
-3 374 337 300
-3 300 336 374
-3 375 338 301
-3 301 337 375
-3 376 339 302
-3 302 338 376
-3 377 340 303
-3 303 339 377
-3 378 341 304
-3 304 340 378
-3 379 342 305
-3 305 341 379
-3 380 343 306
-3 306 342 380
-3 381 344 307
-3 307 343 381
-3 344 382 345
-3 345 308 344
-3 345 383 346
-3 346 309 345
-3 384 347 310
-3 310 346 384
-3 385 348 311
-3 311 347 385
-3 386 349 312
-3 312 348 386
-3 387 350 313
-3 313 349 387
-3 388 351 314
-3 314 350 388
-3 389 352 315
-3 315 351 389
-3 390 353 316
-3 316 352 390
-3 391 392 354
-3 354 353 391
-3 392 393 355
-3 355 354 392
-3 355 394 356
-3 356 318 355
-3 356 395 357
-3 357 319 356
-3 357 396 358
-3 358 320 357
-3 358 397 359
-3 359 321 358
-3 359 398 360
-3 360 322 359
-3 398 399 361
-3 361 360 398
-3 361 400 362
-3 362 324 361
-3 362 401 363
-3 363 325 362
-3 291 326 402
-3 402 327 291
-3 328 364 403
-3 403 365 328
-3 365 404 366
-3 366 329 365
-3 366 405 367
-3 367 330 366
-3 367 406 368
-3 368 331 367
-3 368 407 369
-3 369 332 368
-3 369 408 370
-3 370 333 369
-3 370 409 371
-3 371 334 370
-3 371 410 372
-3 372 335 371
-3 372 411 2
-3 412 373 2
-3 413 374 336
-3 336 373 413
-3 414 375 337
-3 337 374 414
-3 415 376 338
-3 338 375 415
-3 416 377 339
-3 339 376 416
-3 417 378 340
-3 340 377 417
-3 418 379 341
-3 341 378 418
-3 419 380 342
-3 342 379 419
-3 420 381 343
-3 343 380 420
-3 421 382 344
-3 344 381 421
-3 382 422 383
-3 383 345 382
-3 423 384 346
-3 346 383 423
-3 424 385 347
-3 347 384 424
-3 425 386 348
-3 348 385 425
-3 426 387 349
-3 349 386 426
-3 427 388 350
-3 350 387 427
-3 428 389 351
-3 351 388 428
-3 429 390 352
-3 352 389 429
-3 430 391 353
-3 353 390 430
-3 431 432 392
-3 392 391 431
-3 432 433 393
-3 393 392 432
-3 393 434 394
-3 394 355 393
-3 394 435 395
-3 395 356 394
-3 395 436 396
-3 396 357 395
-3 396 437 397
-3 397 358 396
-3 397 438 398
-3 398 359 397
-3 438 439 399
-3 399 398 438
-3 399 440 400
-3 400 361 399
-3 400 441 401
-3 401 362 400
-3 401 442 443
-3 443 363 401
-3 326 363 443
-3 443 402 326
-3 327 402 444
-3 444 364 327
-3 403 445 404
-3 404 365 403
-3 404 446 405
-3 405 366 404
-3 405 447 406
-3 406 367 405
-3 406 448 407
-3 407 368 406
-3 407 449 408
-3 408 369 407
-3 408 450 409
-3 409 370 408
-3 409 451 410
-3 410 371 409
-3 410 452 411
-3 411 372 410
-3 411 453 2
-3 454 412 2
-3 455 413 373
-3 373 412 455
-3 456 414 374
-3 374 413 456
-3 457 415 375
-3 375 414 457
-3 458 416 376
-3 376 415 458
-3 459 417 377
-3 377 416 459
-3 460 418 378
-3 378 417 460
-3 461 419 379
-3 379 418 461
-3 419 462 420
-3 420 380 419
-3 463 421 381
-3 381 420 463
-3 421 464 422
-3 422 382 421
-3 465 423 383
-3 383 422 465
-3 466 424 384
-3 384 423 466
-3 467 425 385
-3 385 424 467
-3 468 426 386
-3 386 425 468
-3 469 427 387
-3 387 426 469
-3 470 428 388
-3 388 427 470
-3 471 429 389
-3 389 428 471
-3 472 430 390
-3 390 429 472
-3 473 431 391
-3 391 430 473
-3 474 475 432
-3 432 431 474
-3 475 476 433
-3 433 432 475
-3 433 477 434
-3 434 393 433
-3 434 478 435
-3 435 394 434
-3 435 479 436
-3 436 395 435
-3 436 480 437
-3 437 396 436
-3 437 481 438
-3 438 397 437
-3 481 482 439
-3 439 438 481
-3 439 483 440
-3 440 399 439
-3 440 484 441
-3 441 400 440
-3 441 485 442
-3 442 401 441
-3 442 486 487
-3 487 443 442
-3 364 444 488
-3 488 403 364
-3 403 488 489
-3 489 445 403
-3 445 490 446
-3 446 404 445
-3 446 491 447
-3 447 405 446
-3 447 492 448
-3 448 406 447
-3 448 493 449
-3 449 407 448
-3 449 494 450
-3 450 408 449
-3 450 495 451
-3 451 409 450
-3 451 496 452
-3 452 410 451
-3 452 497 453
-3 453 411 452
-3 453 498 2
-3 499 454 2
-3 500 455 412
-3 412 454 500
-3 501 456 413
-3 413 455 501
-3 502 457 414
-3 414 456 502
-3 503 458 415
-3 415 457 503
-3 504 459 416
-3 416 458 504
-3 505 460 417
-3 417 459 505
-3 506 461 418
-3 418 460 506
-3 461 507 462
-3 462 419 461
-3 462 508 463
-3 463 420 462
-3 463 509 464
-3 464 421 463
-3 510 465 422
-3 422 464 510
-3 511 466 423
-3 423 465 511
-3 512 467 424
-3 424 466 512
-3 513 468 425
-3 425 467 513
-3 514 469 426
-3 426 468 514
-3 515 470 427
-3 427 469 515
-3 516 471 428
-3 428 470 516
-3 517 472 429
-3 429 471 517
-3 518 473 430
-3 430 472 518
-3 519 474 431
-3 431 473 519
-3 520 521 475
-3 475 474 520
-3 521 522 476
-3 476 475 521
-3 476 523 477
-3 477 433 476
-3 477 524 478
-3 478 434 477
-3 478 525 479
-3 479 435 478
-3 479 526 480
-3 480 436 479
-3 480 527 481
-3 481 437 480
-3 527 528 482
-3 482 481 527
-3 482 529 483
-3 483 439 482
-3 483 530 484
-3 484 440 483
-3 484 531 485
-3 485 441 484
-3 485 532 486
-3 486 442 485
-3 486 533 534
-3 534 487 486
-3 487 444 402
-3 402 443 487
-3 491 535 492
-3 492 447 491
-3 492 536 493
-3 493 448 492
-3 493 537 494
-3 494 449 493
-3 494 538 495
-3 495 450 494
-3 495 539 496
-3 496 451 495
-3 496 540 497
-3 497 452 496
-3 497 541 498
-3 498 453 497
-3 498 542 2
-3 543 499 2
-3 544 500 454
-3 454 499 544
-3 545 501 455
-3 455 500 545
-3 546 502 456
-3 456 501 546
-3 547 503 457
-3 457 502 547
-3 548 504 458
-3 458 503 548
-3 549 505 459
-3 459 504 549
-3 550 506 460
-3 460 505 550
-3 506 551 507
-3 507 461 506
-3 507 552 508
-3 508 462 507
-3 508 553 509
-3 509 463 508
-3 554 510 464
-3 464 509 554
-3 555 511 465
-3 465 510 555
-3 556 512 466
-3 466 511 556
-3 557 513 467
-3 467 512 557
-3 558 514 468
-3 468 513 558
-3 559 515 469
-3 469 514 559
-3 560 516 470
-3 470 515 560
-3 561 517 471
-3 471 516 561
-3 562 518 472
-3 472 517 562
-3 563 519 473
-3 473 518 563
-3 564 520 474
-3 474 519 564
-3 565 566 521
-3 521 520 565
-3 566 567 522
-3 522 521 566
-3 522 568 523
-3 523 476 522
-3 523 569 524
-3 524 477 523
-3 524 570 525
-3 525 478 524
-3 525 571 526
-3 526 479 525
-3 526 572 527
-3 527 480 526
-3 572 573 528
-3 528 527 572
-3 528 574 529
-3 529 482 528
-3 529 575 530
-3 530 483 529
-3 530 576 531
-3 531 484 530
-3 531 577 532
-3 532 485 531
-3 532 578 533
-3 533 486 532
-3 533 579 580
-3 580 534 533
-3 534 488 444
-3 444 487 534
-3 488 534 580
-3 580 489 488
-3 581 490 445
-3 445 489 581
-3 582 491 446
-3 446 490 582
-3 491 582 583
-3 583 535 491
-3 535 584 536
-3 536 492 535
-3 536 585 537
-3 537 493 536
-3 537 586 538
-3 538 494 537
-3 538 587 539
-3 539 495 538
-3 539 588 540
-3 540 496 539
-3 540 589 541
-3 541 497 540
-3 541 590 542
-3 542 498 541
-3 542 591 2
-3 591 543 2
-3 592 544 499
-3 499 543 592
-3 593 545 500
-3 500 544 593
-3 594 546 501
-3 501 545 594
-3 595 547 502
-3 502 546 595
-3 596 548 503
-3 503 547 596
-3 597 549 504
-3 504 548 597
-3 598 550 505
-3 505 549 598
-3 550 599 551
-3 551 506 550
-3 551 600 552
-3 552 507 551
-3 552 601 553
-3 553 508 552
-3 602 554 509
-3 509 553 602
-3 603 555 510
-3 510 554 603
-3 604 556 511
-3 511 555 604
-3 605 557 512
-3 512 556 605
-3 606 558 513
-3 513 557 606
-3 607 559 514
-3 514 558 607
-3 608 560 515
-3 515 559 608
-3 609 561 516
-3 516 560 609
-3 610 562 517
-3 517 561 610
-3 611 563 518
-3 518 562 611
-3 612 564 519
-3 519 563 612
-3 613 565 520
-3 520 564 613
-3 614 615 616
-3 566 565 615
-3 614 566 615
-3 566 614 617
-3 618 567 617
-3 567 566 617
-3 567 619 568
-3 568 522 567
-3 568 620 569
-3 569 523 568
-3 569 621 570
-3 570 524 569
-3 570 622 571
-3 571 525 570
-3 571 623 572
-3 572 526 571
-3 623 624 573
-3 573 572 623
-3 573 625 574
-3 574 528 573
-3 574 626 575
-3 575 529 574
-3 575 627 576
-3 576 530 575
-3 576 628 577
-3 577 531 576
-3 577 629 630
-3 578 532 577
-3 578 631 579
-3 579 533 578
-3 579 632 633
-3 633 580 579
-3 489 580 633
-3 633 581 489
-3 490 581 634
-3 634 582 490
-3 535 583 635
-3 635 584 535
-3 584 636 585
-3 585 536 584
-3 585 637 586
-3 586 537 585
-3 586 638 587
-3 587 538 586
-3 587 639 588
-3 588 539 587
-3 588 640 589
-3 589 540 588
-3 589 641 590
-3 590 541 589
-3 590 642 591
-3 591 542 590
-3 642 592 543
-3 543 591 642
-3 643 593 544
-3 544 592 643
-3 644 594 545
-3 545 593 644
-3 645 595 546
-3 546 594 645
-3 646 596 547
-3 547 595 646
-3 647 597 548
-3 548 596 647
-3 648 598 549
-3 549 597 648
-3 649 599 550
-3 550 598 649
-3 599 650 600
-3 600 551 599
-3 600 651 601
-3 601 552 600
-3 652 602 553
-3 553 601 652
-3 653 603 554
-3 554 602 653
-3 654 604 555
-3 555 603 654
-3 655 605 556
-3 556 604 655
-3 656 606 557
-3 557 605 656
-3 657 607 558
-3 558 606 657
-3 658 608 559
-3 559 607 658
-3 659 609 560
-3 560 608 659
-3 660 610 561
-3 561 609 660
-3 661 611 562
-3 562 610 661
-3 662 612 563
-3 563 611 662
-3 663 613 564
-3 564 612 663
-3 615 664 665
-3 565 613 664
-3 615 565 664
-3 666 618 667
-3 619 567 618
-3 666 619 618
-3 619 668 620
-3 620 568 619
-3 620 669 621
-3 621 569 620
-3 621 670 622
-3 622 570 621
-3 622 671 623
-3 623 571 622
-3 671 672 624
-3 624 623 671
-3 624 673 625
-3 625 573 624
-3 625 674 626
-3 626 574 625
-3 626 675 627
-3 627 575 626
-3 627 676 628
-3 628 576 627
-3 628 677 629
-3 629 577 628
-3 678 679 631
-3 631 578 678
-3 631 680 632
-3 632 579 631
-3 632 681 682
-3 682 633 632
-3 582 634 683
-3 683 583 582
-3 635 684 636
-3 636 584 635
-3 636 685 637
-3 637 585 636
-3 637 686 638
-3 638 586 637
-3 638 687 639
-3 639 587 638
-3 639 688 640
-3 640 588 639
-3 640 689 641
-3 641 589 640
-3 641 690 642
-3 642 590 641
-3 690 643 592
-3 592 642 690
-3 691 644 593
-3 593 643 691
-3 692 645 594
-3 594 644 692
-3 693 646 595
-3 595 645 693
-3 694 647 596
-3 596 646 694
-3 695 648 597
-3 597 647 695
-3 696 649 598
-3 598 648 696
-3 697 650 599
-3 599 649 697
-3 650 698 651
-3 651 600 650
-3 699 652 601
-3 601 651 699
-3 700 653 602
-3 602 652 700
-3 701 654 603
-3 603 653 701
-3 702 655 604
-3 604 654 702
-3 703 656 605
-3 605 655 703
-3 704 657 606
-3 606 656 704
-3 705 658 607
-3 607 657 705
-3 706 659 608
-3 608 658 706
-3 707 660 609
-3 609 659 707
-3 708 661 610
-3 610 660 708
-3 709 662 611
-3 611 661 709
-3 710 663 612
-3 612 662 710
-3 664 613 663
-3 663 711 664
-3 712 668 619
-3 619 666 712
-3 668 713 669
-3 669 620 668
-3 669 714 670
-3 670 621 669
-3 670 715 671
-3 671 622 670
-3 715 716 672
-3 672 671 715
-3 672 717 673
-3 673 624 672
-3 673 718 674
-3 674 625 673
-3 674 719 675
-3 675 626 674
-3 675 720 676
-3 676 627 675
-3 676 721 677
-3 677 628 676
-3 677 722 723
-3 723 629 677
-3 679 724 680
-3 680 631 679
-3 680 725 681
-3 681 632 680
-3 681 726 727
-3 727 682 681
-3 682 634 581
-3 581 633 682
-3 583 683 728
-3 728 635 583
-3 635 728 729
-3 729 684 635
-3 684 730 685
-3 685 636 684
-3 685 731 686
-3 686 637 685
-3 686 732 687
-3 687 638 686
-3 687 733 688
-3 688 639 687
-3 688 734 689
-3 689 640 688
-3 689 735 690
-3 690 641 689
-3 735 691 643
-3 643 690 735
-3 736 692 644
-3 644 691 736
-3 737 693 645
-3 645 692 737
-3 738 694 646
-3 646 693 738
-3 739 695 647
-3 647 694 739
-3 740 696 648
-3 648 695 740
-3 741 697 649
-3 649 696 741
-3 742 698 650
-3 650 697 742
-3 743 699 651
-3 651 698 743
-3 744 700 652
-3 652 699 744
-3 745 701 653
-3 653 700 745
-3 746 702 654
-3 654 701 746
-3 747 703 655
-3 655 702 747
-3 748 704 656
-3 656 703 748
-3 749 705 657
-3 657 704 749
-3 750 706 658
-3 658 705 750
-3 751 707 659
-3 659 706 751
-3 752 708 660
-3 660 707 752
-3 753 709 661
-3 661 708 753
-3 754 710 662
-3 662 709 754
-3 711 663 710
-3 710 755 711
-3 756 713 668
-3 668 712 756
-3 713 757 714
-3 714 669 713
-3 714 758 715
-3 715 670 714
-3 758 759 716
-3 716 715 758
-3 716 760 717
-3 717 672 716
-3 717 761 718
-3 718 673 717
-3 718 762 719
-3 719 674 718
-3 719 763 720
-3 720 675 719
-3 720 764 721
-3 721 676 720
-3 721 765 722
-3 722 677 721
-3 766 767 724
-3 724 679 766
-3 724 768 725
-3 725 680 724
-3 725 769 726
-3 726 681 725
-3 726 770 771
-3 771 727 726
-3 727 683 634
-3 634 682 727
-3 729 772 730
-3 730 684 729
-3 730 773 731
-3 731 685 730
-3 731 774 732
-3 732 686 731
-3 732 775 733
-3 733 687 732
-3 733 776 734
-3 734 688 733
-3 734 777 735
-3 735 689 734
-3 777 736 691
-3 691 735 777
-3 778 737 692
-3 692 736 778
-3 779 738 693
-3 693 737 779
-3 780 739 694
-3 694 738 780
-3 739 781 740
-3 740 695 739
-3 740 782 741
-3 741 696 740
-3 783 742 697
-3 697 741 783
-3 784 743 698
-3 698 742 784
-3 785 744 699
-3 699 743 785
-3 786 745 700
-3 700 744 786
-3 787 746 701
-3 701 745 787
-3 788 747 702
-3 702 746 788
-3 789 748 703
-3 703 747 789
-3 790 749 704
-3 704 748 790
-3 791 750 705
-3 705 749 791
-3 792 751 706
-3 706 750 792
-3 793 752 707
-3 707 751 793
-3 794 753 708
-3 708 752 794
-3 795 754 709
-3 709 753 795
-3 755 710 754
-3 754 796 755
-3 797 757 713
-3 713 756 797
-3 757 798 758
-3 758 714 757
-3 798 799 759
-3 759 758 798
-3 759 800 760
-3 760 716 759
-3 760 801 761
-3 761 717 760
-3 761 802 762
-3 762 718 761
-3 762 803 763
-3 763 719 762
-3 763 804 764
-3 764 720 763
-3 764 805 765
-3 765 721 764
-3 806 807 767
-3 767 766 806
-3 767 808 768
-3 768 724 767
-3 768 809 769
-3 769 725 768
-3 769 810 770
-3 770 726 769
-3 770 811 812
-3 812 771 770
-3 771 728 683
-3 683 727 771
-3 728 771 812
-3 812 729 728
-3 812 813 772
-3 772 729 812
-3 772 814 773
-3 773 730 772
-3 731 773 815
-3 815 774 731
-3 774 816 775
-3 775 732 774
-3 775 817 776
-3 776 733 775
-3 776 818 777
-3 777 734 776
-3 818 778 736
-3 736 777 818
-3 819 779 737
-3 737 778 819
-3 820 780 738
-3 738 779 820
-3 780 821 781
-3 781 739 780
-3 781 822 782
-3 782 740 781
-3 782 823 783
-3 783 741 782
-3 824 784 742
-3 742 783 824
-3 825 785 743
-3 743 784 825
-3 826 786 744
-3 744 785 826
-3 827 787 745
-3 745 786 827
-3 828 788 746
-3 746 787 828
-3 829 789 747
-3 747 788 829
-3 830 790 748
-3 748 789 830
-3 831 791 749
-3 749 790 831
-3 832 792 750
-3 750 791 832
-3 833 793 751
-3 751 792 833
-3 834 794 752
-3 752 793 834
-3 835 795 753
-3 753 794 835
-3 796 754 795
-3 795 836 796
-3 837 798 757
-3 757 797 837
-3 838 837 839
-3 799 798 837
-3 838 799 837
-3 799 840 800
-3 800 759 799
-3 800 841 801
-3 801 760 800
-3 801 842 802
-3 802 761 801
-3 802 843 803
-3 803 762 802
-3 803 844 804
-3 804 763 803
-3 804 845 805
-3 805 764 804
-3 846 847 807
-3 807 806 846
-3 807 848 808
-3 808 767 807
-3 808 849 809
-3 809 768 808
-3 809 850 810
-3 810 769 809
-3 810 851 811
-3 811 770 810
-3 811 852 813
-3 813 812 811
-3 813 853 814
-3 814 772 813
-3 773 814 854
-3 854 815 773
-3 774 815 855
-3 855 816 774
-3 816 856 817
-3 817 775 816
-3 817 857 818
-3 818 776 817
-3 857 819 778
-3 778 818 857
-3 858 820 779
-3 779 819 858
-3 820 859 821
-3 821 780 820
-3 821 860 822
-3 822 781 821
-3 822 861 823
-3 823 782 822
-3 862 824 783
-3 783 823 862
-3 863 825 784
-3 784 824 863
-3 864 826 785
-3 785 825 864
-3 865 827 786
-3 786 826 865
-3 866 828 787
-3 787 827 866
-3 867 829 788
-3 788 828 867
-3 868 830 789
-3 789 829 868
-3 869 831 790
-3 790 830 869
-3 870 832 791
-3 791 831 870
-3 871 833 792
-3 792 832 871
-3 872 834 793
-3 793 833 872
-3 873 835 794
-3 794 834 873
-3 836 874 875
-3 795 835 874
-3 836 795 874
-3 876 840 799
-3 799 838 876
-3 840 877 841
-3 841 800 840
-3 841 878 842
-3 842 801 841
-3 842 879 843
-3 843 802 842
-3 843 880 844
-3 844 803 843
-3 844 881 845
-3 845 804 844
-3 882 883 847
-3 847 846 882
-3 847 884 848
-3 848 807 847
-3 848 885 849
-3 849 808 848
-3 849 886 850
-3 850 809 849
-3 850 887 851
-3 851 810 850
-3 851 888 852
-3 852 811 851
-3 852 889 853
-3 853 813 852
-3 814 853 890
-3 890 854 814
-3 816 855 891
-3 891 856 816
-3 856 892 857
-3 857 817 856
-3 892 858 819
-3 819 857 892
-3 893 859 820
-3 820 858 893
-3 859 894 860
-3 860 821 859
-3 860 895 861
-3 861 822 860
-3 896 862 823
-3 823 861 896
-3 897 863 824
-3 824 862 897
-3 898 864 825
-3 825 863 898
-3 899 865 826
-3 826 864 899
-3 900 866 827
-3 827 865 900
-3 901 867 828
-3 828 866 901
-3 902 868 829
-3 829 867 902
-3 903 869 830
-3 830 868 903
-3 904 870 831
-3 831 869 904
-3 905 871 832
-3 832 870 905
-3 906 872 833
-3 833 871 906
-3 907 873 834
-3 834 872 907
-3 874 835 873
-3 873 908 874
-3 909 877 840
-3 840 876 909
-3 877 910 878
-3 878 841 877
-3 878 911 879
-3 879 842 878
-3 879 912 880
-3 880 843 879
-3 880 913 881
-3 881 844 880
-3 914 915 883
-3 883 882 914
-3 883 916 884
-3 884 847 883
-3 884 917 885
-3 885 848 884
-3 885 918 886
-3 886 849 885
-3 886 919 887
-3 887 850 886
-3 887 920 888
-3 888 851 887
-3 888 921 889
-3 889 852 888
-3 889 922 890
-3 890 853 889
-3 815 854 923
-3 923 855 815
-3 856 891 924
-3 924 892 856
-3 924 893 858
-3 858 892 924
-3 925 894 859
-3 859 893 925
-3 894 926 895
-3 895 860 894
-3 927 896 861
-3 861 895 927
-3 928 897 862
-3 862 896 928
-3 929 898 863
-3 863 897 929
-3 930 899 864
-3 864 898 930
-3 931 900 865
-3 865 899 931
-3 932 901 866
-3 866 900 932
-3 933 902 867
-3 867 901 933
-3 934 903 868
-3 868 902 934
-3 935 904 869
-3 869 903 935
-3 936 905 870
-3 870 904 936
-3 937 906 871
-3 871 905 937
-3 938 907 872
-3 872 906 938
-3 908 873 907
-3 907 939 908
-3 940 910 877
-3 877 909 940
-3 910 941 911
-3 911 878 910
-3 911 942 912
-3 912 879 911
-3 912 943 913
-3 913 880 912
-3 944 945 915
-3 915 914 944
-3 915 946 916
-3 916 883 915
-3 916 947 917
-3 917 884 916
-3 917 948 918
-3 918 885 917
-3 918 949 919
-3 919 886 918
-3 919 950 920
-3 920 887 919
-3 920 951 921
-3 921 888 920
-3 921 952 922
-3 922 889 921
-3 922 953 954
-3 954 890 922
-3 854 890 954
-3 954 923 854
-3 855 923 955
-3 955 891 855
-3 924 956 925
-3 925 893 924
-3 925 957 926
-3 926 894 925
-3 958 927 895
-3 895 926 958
-3 959 928 896
-3 896 927 959
-3 960 929 897
-3 897 928 960
-3 961 930 898
-3 898 929 961
-3 962 931 899
-3 899 930 962
-3 963 932 900
-3 900 931 963
-3 964 933 901
-3 901 932 964
-3 965 934 902
-3 902 933 965
-3 966 935 903
-3 903 934 966
-3 967 936 904
-3 904 935 967
-3 968 937 905
-3 905 936 968
-3 969 938 906
-3 906 937 969
-3 939 907 938
-3 938 970 939
-3 971 941 910
-3 910 940 971
-3 941 972 942
-3 942 911 941
-3 942 973 943
-3 943 912 942
-3 974 975 945
-3 945 944 974
-3 945 976 946
-3 946 915 945
-3 946 977 947
-3 947 916 946
-3 947 978 948
-3 948 917 947
-3 948 979 949
-3 949 918 948
-3 949 980 950
-3 950 919 949
-3 950 981 951
-3 951 920 950
-3 951 982 952
-3 952 921 951
-3 952 983 953
-3 953 922 952
-3 953 984 985
-3 985 954 953
-3 891 955 956
-3 956 924 891
-3 956 986 957
-3 957 925 956
-3 987 958 926
-3 926 957 987
-3 988 959 927
-3 927 958 988
-3 989 960 928
-3 928 959 989
-3 990 961 929
-3 929 960 990
-3 991 962 930
-3 930 961 991
-3 992 963 931
-3 931 962 992
-3 993 964 932
-3 932 963 993
-3 994 965 933
-3 933 964 994
-3 995 966 934
-3 934 965 995
-3 996 967 935
-3 935 966 996
-3 997 968 936
-3 936 967 997
-3 998 969 937
-3 937 968 998
-3 970 938 969
-3 969 999 970
-3 1000 972 941
-3 941 971 1000
-3 972 1001 973
-3 973 942 972
-3 1002 1003 975
-3 975 974 1002
-3 975 1004 976
-3 976 945 975
-3 976 1005 977
-3 977 946 976
-3 977 1006 978
-3 978 947 977
-3 978 1007 979
-3 979 948 978
-3 979 1008 980
-3 980 949 979
-3 980 1009 981
-3 981 950 980
-3 981 1010 982
-3 982 951 981
-3 982 1011 983
-3 983 952 982
-3 983 1012 984
-3 984 953 983
-3 984 1013 986
-3 986 985 984
-3 985 955 923
-3 923 954 985
-3 955 985 986
-3 986 956 955
-3 1013 987 957
-3 957 986 1013
-3 1014 988 958
-3 958 987 1014
-3 1015 989 959
-3 959 988 1015
-3 1016 990 960
-3 960 989 1016
-3 1017 991 961
-3 961 990 1017
-3 1018 992 962
-3 962 991 1018
-3 1019 993 963
-3 963 992 1019
-3 1020 994 964
-3 964 993 1020
-3 1021 995 965
-3 965 994 1021
-3 1022 996 966
-3 966 995 1022
-3 1023 997 967
-3 967 996 1023
-3 1024 998 968
-3 968 997 1024
-3 999 969 998
-3 998 1025 999
-3 1026 1001 972
-3 972 1000 1026
-3 1027 1028 1003
-3 1003 1002 1027
-3 1003 1029 1004
-3 1004 975 1003
-3 1004 1030 1005
-3 1005 976 1004
-3 1005 1031 1006
-3 1006 977 1005
-3 1006 1032 1007
-3 1007 978 1006
-3 1007 1033 1008
-3 1008 979 1007
-3 1008 1034 1009
-3 1009 980 1008
-3 1009 1035 1010
-3 1010 981 1009
-3 1010 1036 1011
-3 1011 982 1010
-3 1011 1037 1012
-3 1012 983 1011
-3 1012 1038 1013
-3 1013 984 1012
-3 1038 1014 987
-3 987 1013 1038
-3 1039 1015 988
-3 988 1014 1039
-3 1040 1016 989
-3 989 1015 1040
-3 1041 1017 990
-3 990 1016 1041
-3 1042 1018 991
-3 991 1017 1042
-3 1043 1019 992
-3 992 1018 1043
-3 1044 1020 993
-3 993 1019 1044
-3 1045 1021 994
-3 994 1020 1045
-3 1046 1022 995
-3 995 1021 1046
-3 1047 1023 996
-3 996 1022 1047
-3 1048 1024 997
-3 997 1023 1048
-3 1025 998 1024
-3 1024 1049 1025
-3 1050 1028 1027
-3 1027 1051 1050
-3 1028 1052 1029
-3 1029 1003 1028
-3 1029 1053 1030
-3 1030 1004 1029
-3 1030 1054 1031
-3 1031 1005 1030
-3 1031 1055 1032
-3 1032 1006 1031
-3 1032 1056 1033
-3 1033 1007 1032
-3 1033 1057 1034
-3 1034 1008 1033
-3 1034 1058 1035
-3 1035 1009 1034
-3 1035 1059 1036
-3 1036 1010 1035
-3 1036 1060 1037
-3 1037 1011 1036
-3 1037 1061 1038
-3 1038 1012 1037
-3 1061 1039 1014
-3 1014 1038 1061
-3 1062 1040 1015
-3 1015 1039 1062
-3 1063 1041 1016
-3 1016 1040 1063
-3 1064 1042 1017
-3 1017 1041 1064
-3 1065 1043 1018
-3 1018 1042 1065
-3 1066 1044 1019
-3 1019 1043 1066
-3 1067 1045 1020
-3 1020 1044 1067
-3 1068 1046 1021
-3 1021 1045 1068
-3 1069 1047 1022
-3 1022 1046 1069
-3 1070 1048 1023
-3 1023 1047 1070
-3 1049 1024 1048
-3 1048 1071 1049
-3 1072 1052 1028
-3 1028 1050 1072
-3 1052 1073 1053
-3 1053 1029 1052
-3 1053 1074 1054
-3 1054 1030 1053
-3 1054 1075 1055
-3 1055 1031 1054
-3 1055 1076 1056
-3 1056 1032 1055
-3 1056 1077 1057
-3 1057 1033 1056
-3 1057 1078 1058
-3 1058 1034 1057
-3 1058 1079 1059
-3 1059 1035 1058
-3 1059 1080 1060
-3 1060 1036 1059
-3 1060 1081 1061
-3 1061 1037 1060
-3 1081 1062 1039
-3 1039 1061 1081
-3 1082 1063 1040
-3 1040 1062 1082
-3 1083 1064 1041
-3 1041 1063 1083
-3 1084 1065 1042
-3 1042 1064 1084
-3 1085 1066 1043
-3 1043 1065 1085
-3 1086 1067 1044
-3 1044 1066 1086
-3 1087 1068 1045
-3 1045 1067 1087
-3 1088 1069 1046
-3 1046 1068 1088
-3 1089 1070 1047
-3 1047 1069 1089
-3 1071 1048 1070
-3 1070 1090 1071
-3 1091 1072 1092
-3 1073 1052 1072
-3 1091 1073 1072
-3 1073 1093 1074
-3 1074 1053 1073
-3 1074 1094 1075
-3 1075 1054 1074
-3 1075 1095 1076
-3 1076 1055 1075
-3 1076 1096 1077
-3 1077 1056 1076
-3 1077 1097 1078
-3 1078 1057 1077
-3 1078 1098 1079
-3 1079 1058 1078
-3 1079 1099 1080
-3 1080 1059 1079
-3 1080 1100 1081
-3 1081 1060 1080
-3 1100 1082 1062
-3 1062 1081 1100
-3 1101 1083 1063
-3 1063 1082 1101
-3 1102 1084 1064
-3 1064 1083 1102
-3 1103 1085 1065
-3 1065 1084 1103
-3 1104 1086 1066
-3 1066 1085 1104
-3 1105 1087 1067
-3 1067 1086 1105
-3 1106 1088 1068
-3 1068 1087 1106
-3 1107 1089 1069
-3 1069 1088 1107
-3 1089 1108 1109
-3 1090 1070 1109
-3 1070 1089 1109
-3 1110 1091 1111
-3 1093 1073 1091
-3 1110 1093 1091
-3 1093 1112 1094
-3 1094 1074 1093
-3 1094 1113 1095
-3 1095 1075 1094
-3 1095 1114 1096
-3 1096 1076 1095
-3 1096 1115 1097
-3 1097 1077 1096
-3 1097 1116 1098
-3 1098 1078 1097
-3 1098 1117 1099
-3 1099 1079 1098
-3 1099 1118 1100
-3 1100 1080 1099
-3 1118 1101 1082
-3 1082 1100 1118
-3 1119 1102 1083
-3 1083 1101 1119
-3 1120 1103 1084
-3 1084 1102 1120
-3 1121 1104 1085
-3 1085 1103 1121
-3 1122 1105 1086
-3 1086 1104 1122
-3 1123 1106 1087
-3 1087 1105 1123
-3 1124 1107 1088
-3 1088 1106 1124
-3 1108 1125 1126
-3 1089 1107 1125
-3 1108 1089 1125
-3 1127 1112 1093
-3 1093 1110 1127
-3 1112 1128 1113
-3 1113 1094 1112
-3 1113 1129 1114
-3 1114 1095 1113
-3 1114 1130 1115
-3 1115 1096 1114
-3 1115 1131 1116
-3 1116 1097 1115
-3 1116 1132 1117
-3 1117 1098 1116
-3 1117 1133 1118
-3 1118 1099 1117
-3 1133 1119 1101
-3 1101 1118 1133
-3 1134 1120 1102
-3 1102 1119 1134
-3 1135 1121 1103
-3 1103 1120 1135
-3 1136 1122 1104
-3 1104 1121 1136
-3 1137 1123 1105
-3 1105 1122 1137
-3 1138 1124 1106
-3 1106 1123 1138
-3 1124 1139 1140
-3 1125 1107 1140
-3 1107 1124 1140
-3 1141 1128 1112
-3 1112 1127 1141
-3 1128 1142 1129
-3 1129 1113 1128
-3 1129 1143 1130
-3 1130 1114 1129
-3 1130 1144 1131
-3 1131 1115 1130
-3 1131 1145 1132
-3 1132 1116 1131
-3 1132 1146 1133
-3 1133 1117 1132
-3 1146 1134 1119
-3 1119 1133 1146
-3 1147 1135 1120
-3 1120 1134 1147
-3 1148 1136 1121
-3 1121 1135 1148
-3 1149 1137 1122
-3 1122 1136 1149
-3 1150 1138 1123
-3 1123 1137 1150
-3 1139 1124 1138
-3 1138 1151 1139
-3 1152 1142 1128
-3 1128 1141 1152
-3 1142 1153 1143
-3 1143 1129 1142
-3 1143 1154 1144
-3 1144 1130 1143
-3 1144 1155 1145
-3 1145 1131 1144
-3 1145 1156 1146
-3 1146 1132 1145
-3 1156 1147 1134
-3 1134 1146 1156
-3 1157 1148 1135
-3 1135 1147 1157
-3 1158 1149 1136
-3 1136 1148 1158
-3 1159 1150 1137
-3 1137 1149 1159
-3 1151 1138 1150
-3 1150 1160 1151
-3 1161 1153 1142
-3 1142 1152 1161
-3 1153 1162 1154
-3 1154 1143 1153
-3 1154 1163 1155
-3 1155 1144 1154
-3 1155 1164 1156
-3 1156 1145 1155
-3 1164 1157 1147
-3 1147 1156 1164
-3 1165 1158 1148
-3 1148 1157 1165
-3 1166 1159 1149
-3 1149 1158 1166
-3 1160 1150 1159
-3 1159 1167 1160
-3 1168 1162 1153
-3 1153 1161 1168
-3 1162 1169 1163
-3 1163 1154 1162
-3 1163 1170 1164
-3 1164 1155 1163
-3 1170 1165 1157
-3 1157 1164 1170
-3 1171 1166 1158
-3 1158 1165 1171
-3 1167 1159 1166
-3 1166 1172 1167
-3 1173 1169 1162
-3 1162 1168 1173
-3 1169 1174 1170
-3 1170 1163 1169
-3 1174 1171 1165
-3 1165 1170 1174
-3 1171 1175 1176
-3 1172 1166 1176
-3 1166 1171 1176
-3 1177 1174 1169
-3 1169 1173 1177
-3 1175 1171 1174
-3 1174 1177 1175
-3 1178 1179 1180
-3 1181 1182 1183
-3 1178 1180 1184
-3 1182 1185 1183
-3 1178 1184 1186
-3 1182 1178 1185
-3 1178 1186 1185
-3 1185 1187 1188
-3 1188 1183 1185
-3 1189 1190 1191
-3 1191 1188 1189
-3 1186 1192 1187
-3 1187 1185 1186
-3 1188 1187 1193
-3 1193 1189 1188
-3 1190 1189 1194
-3 1194 1195 1190
-3 1190 1196 1197
-3 1197 1191 1190
-3 1184 1198 1192
-3 1192 1186 1184
-3 1187 1192 1199
-3 1199 1193 1187
-3 1200 1197 1201
-3 1201 1202 1200
-3 1195 1203 1196
-3 1196 1190 1195
-3 1196 1204 1201
-3 1201 1197 1196
-3 1205 1206 1178
-3 1178 1182 1205
-3 1180 1207 1198
-3 1198 1184 1180
-3 1192 1198 1208
-3 1208 1199 1192
-3 1189 1193 1209
-3 1209 1194 1189
-3 1202 1201 1210
-3 1210 1211 1202
-3 1195 1194 1212
-3 1212 1213 1195
-3 1203 1195 1213
-3 1213 1214 1203
-3 1203 1215 1204
-3 1204 1196 1203
-3 1216 1205 1182
-3 1182 1217 1216
-3 1218 1219 1206
-3 1206 1205 1218
-3 1206 1220 1221
-3 1221 1178 1206
-3 1207 1222 1223
-3 1207 1180 1179
-3 1207 1179 1222
-3 1198 1207 1224
-3 1224 1208 1198
-3 1193 1199 1225
-3 1225 1209 1193
-3 1204 1226 1210
-3 1210 1201 1204
-3 1211 1210 1227
-3 1227 1228 1211
-3 1214 1229 1215
-3 1215 1203 1214
-3 1215 1230 1226
-3 1226 1204 1215
-3 1231 1216 1217
-3 1217 1232 1231
-3 1233 1218 1205
-3 1205 1216 1233
-3 1234 1235 1219
-3 1219 1218 1234
-3 1219 1236 1220
-3 1220 1206 1219
-3 1220 1237 1238
-3 1238 1221 1220
-3 1239 1221 1240
-3 1179 1178 1221
-3 1239 1222 1221
-3 1222 1179 1221
-3 1241 1224 1207
-3 1207 1223 1241
-3 1199 1208 1242
-3 1242 1225 1199
-3 1194 1209 1243
-3 1243 1212 1194
-3 1226 1244 1227
-3 1227 1210 1226
-3 1228 1227 1245
-3 1245 1246 1228
-3 1213 1212 1247
-3 1247 1248 1213
-3 1214 1213 1248
-3 1248 1249 1214
-3 1229 1214 1249
-3 1249 1250 1229
-3 1229 1251 1230
-3 1230 1215 1229
-3 1252 1231 1232
-3 1232 1253 1252
-3 1254 1233 1216
-3 1216 1231 1254
-3 1255 1232 1217
-3 1256 1257 1232
-3 1255 1258 1232
-3 1258 1256 1232
-3 1259 1234 1218
-3 1218 1233 1259
-3 1260 1261 1235
-3 1235 1234 1260
-3 1235 1262 1236
-3 1236 1219 1235
-3 1236 1263 1237
-3 1237 1220 1236
-3 1237 1264 1265
-3 1265 1238 1237
-3 1221 1238 1266
-3 1266 1240 1221
-3 1267 1241 1223
-3 1223 1268 1267
-3 1224 1241 1269
-3 1269 1270 1224
-3 1208 1224 1270
-3 1270 1242 1208
-3 1209 1225 1271
-3 1271 1243 1209
-3 1230 1272 1244
-3 1244 1226 1230
-3 1244 1273 1245
-3 1245 1227 1244
-3 1245 1255 1246
-3 1274 1258 1255
-3 1245 1274 1255
-3 1250 1275 1251
-3 1251 1229 1250
-3 1251 1276 1272
-3 1272 1230 1251
-3 1277 1252 1253
-3 1253 1278 1277
-3 1279 1254 1231
-3 1231 1252 1279
-3 1253 1232 1257
-3 1257 1280 1253
-3 1281 1259 1233
-3 1233 1254 1281
-3 1282 1260 1234
-3 1234 1259 1282
-3 1283 1284 1261
-3 1261 1260 1283
-3 1261 1285 1262
-3 1262 1235 1261
-3 1262 1286 1263
-3 1263 1236 1262
-3 1263 1287 1264
-3 1264 1237 1263
-3 1264 1288 1289
-3 1289 1265 1264
-3 1238 1265 1290
-3 1290 1266 1238
-3 1240 1266 1291
-3 1291 1292 1240
-3 1223 1293 1268
-3 1223 1222 1239
-3 1223 1294 1293
-3 1223 1239 1294
-3 1268 1295 1296
-3 1296 1267 1268
-3 1241 1267 1297
-3 1297 1269 1241
-3 1225 1242 1298
-3 1298 1271 1225
-3 1212 1243 1299
-3 1299 1247 1212
-3 1272 1300 1273
-3 1273 1244 1272
-3 1273 1301 1274
-3 1274 1245 1273
-3 1248 1247 1302
-3 1302 1303 1248
-3 1249 1248 1303
-3 1303 1304 1249
-3 1250 1249 1304
-3 1304 1305 1250
-3 1275 1250 1305
-3 1305 1306 1275
-3 1275 1307 1276
-3 1276 1251 1275
-3 1308 1277 1278
-3 1278 1309 1308
-3 1310 1279 1252
-3 1252 1277 1310
-3 1278 1253 1280
-3 1280 1311 1278
-3 1312 1281 1254
-3 1254 1279 1312
-3 1280 1257 1313
-3 1313 1314 1280
-3 1315 1282 1259
-3 1259 1281 1315
-3 1316 1283 1260
-3 1260 1282 1316
-3 1317 1318 1284
-3 1284 1283 1317
-3 1284 1319 1285
-3 1285 1261 1284
-3 1285 1320 1286
-3 1286 1262 1285
-3 1286 1321 1287
-3 1287 1263 1286
-3 1287 1322 1288
-3 1288 1264 1287
-3 1288 1323 1324
-3 1324 1289 1288
-3 1265 1289 1325
-3 1325 1290 1265
-3 1266 1290 1326
-3 1326 1291 1266
-3 1240 1294 1239
-3 1292 1327 1294
-3 1240 1292 1294
-3 1292 1291 1328
-3 1328 1329 1292
-3 1330 1295 1268
-3 1268 1293 1330
-3 1270 1269 1331
-3 1331 1332 1270
-3 1242 1270 1332
-3 1332 1298 1242
-3 1243 1271 1333
-3 1333 1299 1243
-3 1276 1334 1300
-3 1300 1272 1276
-3 1300 1335 1301
-3 1301 1273 1300
-3 1301 1336 1337
-3 1337 1274 1301
-3 1306 1338 1307
-3 1307 1275 1306
-3 1307 1339 1334
-3 1334 1276 1307
-3 1340 1308 1309
-3 1309 1341 1340
-3 1342 1310 1277
-3 1277 1308 1342
-3 1309 1278 1311
-3 1311 1343 1309
-3 1344 1312 1279
-3 1279 1310 1344
-3 1311 1280 1314
-3 1314 1345 1311
-3 1346 1315 1281
-3 1281 1312 1346
-3 1257 1347 1313
-3 1256 1348 1347
-3 1257 1256 1347
-3 1314 1313 1349
-3 1349 1350 1314
-3 1351 1316 1282
-3 1282 1315 1351
-3 1274 1256 1258
-3 1337 1352 1348
-3 1274 1348 1256
-3 1274 1337 1348
-3 1353 1317 1283
-3 1283 1316 1353
-3 1354 1355 1318
-3 1318 1317 1354
-3 1318 1356 1319
-3 1319 1284 1318
-3 1319 1357 1320
-3 1320 1285 1319
-3 1320 1358 1321
-3 1321 1286 1320
-3 1321 1359 1322
-3 1322 1287 1321
-3 1322 1360 1323
-3 1323 1288 1322
-3 1323 1361 1362
-3 1362 1324 1323
-3 1289 1324 1363
-3 1363 1325 1289
-3 1290 1325 1364
-3 1364 1326 1290
-3 1291 1326 1365
-3 1365 1328 1291
-3 1327 1292 1329
-3 1329 1366 1327
-3 1329 1328 1367
-3 1367 1368 1329
-3 1369 1370 1295
-3 1295 1330 1369
-3 1295 1370 1371
-3 1371 1296 1295
-3 1267 1296 1372
-3 1372 1297 1267
-3 1269 1297 1373
-3 1373 1331 1269
-3 1271 1298 1374
-3 1374 1333 1271
-3 1247 1299 1375
-3 1375 1302 1247
-3 1334 1376 1335
-3 1335 1300 1334
-3 1335 1377 1336
-3 1336 1301 1335
-3 1336 1378 1379
-3 1379 1337 1336
-3 1303 1302 1380
-3 1380 1381 1303
-3 1304 1303 1381
-3 1381 1382 1304
-3 1305 1304 1382
-3 1382 1383 1305
-3 1306 1305 1383
-3 1383 1384 1306
-3 1338 1306 1384
-3 1384 1385 1338
-3 1338 1386 1339
-3 1339 1307 1338
-3 1387 1340 1341
-3 1341 1388 1387
-3 1389 1342 1308
-3 1308 1340 1389
-3 1341 1309 1343
-3 1343 1390 1341
-3 1391 1344 1310
-3 1310 1342 1391
-3 1343 1311 1345
-3 1345 1392 1343
-3 1393 1346 1312
-3 1312 1344 1393
-3 1345 1314 1350
-3 1350 1394 1345
-3 1395 1351 1315
-3 1315 1346 1395
-3 1313 1347 1396
-3 1396 1349 1313
-3 1350 1349 1397
-3 1397 1398 1350
-3 1399 1353 1316
-3 1316 1351 1399
-3 1400 1354 1317
-3 1317 1353 1400
-3 1401 1402 1355
-3 1355 1354 1401
-3 1355 1403 1356
-3 1356 1318 1355
-3 1356 1404 1357
-3 1357 1319 1356
-3 1357 1405 1358
-3 1358 1320 1357
-3 1358 1406 1359
-3 1359 1321 1358
-3 1359 1407 1360
-3 1360 1322 1359
-3 1360 1408 1361
-3 1361 1323 1360
-3 1361 1409 1410
-3 1410 1362 1361
-3 1324 1362 1411
-3 1411 1363 1324
-3 1325 1363 1412
-3 1412 1364 1325
-3 1326 1364 1413
-3 1413 1365 1326
-3 1328 1365 1414
-3 1414 1367 1328
-3 1415 1327 1366
-3 1366 1416 1415
-3 1366 1329 1368
-3 1368 1417 1366
-3 1367 1418 1419
-3 1419 1368 1367
-3 1420 1421 1370
-3 1370 1369 1420
-3 1332 1331 1422
-3 1422 1423 1332
-3 1298 1332 1423
-3 1423 1374 1298
-3 1299 1333 1424
-3 1424 1375 1299
-3 1339 1425 1376
-3 1376 1334 1339
-3 1376 1426 1377
-3 1377 1335 1376
-3 1377 1427 1378
-3 1378 1336 1377
-3 1385 1428 1386
-3 1386 1338 1385
-3 1386 1429 1425
-3 1425 1339 1386
-3 1430 1387 1388
-3 1388 1431 1430
-3 1432 1389 1340
-3 1340 1387 1432
-3 1388 1341 1390
-3 1390 1433 1388
-3 1434 1391 1342
-3 1342 1389 1434
-3 1390 1343 1392
-3 1392 1435 1390
-3 1436 1393 1344
-3 1344 1391 1436
-3 1392 1345 1394
-3 1394 1437 1392
-3 1438 1395 1346
-3 1346 1393 1438
-3 1394 1350 1398
-3 1398 1439 1394
-3 1440 1399 1351
-3 1351 1395 1440
-3 1347 1415 1416
-3 1416 1396 1347
-3 1349 1396 1441
-3 1441 1397 1349
-3 1398 1397 1442
-3 1442 1443 1398
-3 1444 1400 1353
-3 1353 1399 1444
-3 1445 1401 1354
-3 1354 1400 1445
-3 1402 1446 1403
-3 1403 1355 1402
-3 1403 1447 1404
-3 1404 1356 1403
-3 1404 1448 1405
-3 1405 1357 1404
-3 1405 1449 1406
-3 1406 1358 1405
-3 1406 1450 1407
-3 1407 1359 1406
-3 1407 1451 1408
-3 1408 1360 1407
-3 1408 1452 1409
-3 1409 1361 1408
-3 1409 1453 1454
-3 1454 1410 1409
-3 1362 1410 1455
-3 1455 1411 1362
-3 1363 1411 1456
-3 1456 1412 1363
-3 1364 1412 1457
-3 1457 1413 1364
-3 1365 1413 1458
-3 1458 1414 1365
-3 1414 1459 1418
-3 1418 1367 1414
-3 1460 1415 1461
-3 1293 1294 1327
-3 1460 1327 1415
-3 1330 1293 1327
-3 1460 1420 1327
-3 1369 1330 1327
-3 1420 1369 1327
-3 1416 1366 1417
-3 1417 1462 1416
-3 1417 1368 1419
-3 1419 1463 1417
-3 1460 1464 1421
-3 1421 1420 1460
-3 1370 1421 1465
-3 1465 1371 1370
-3 1296 1371 1466
-3 1466 1372 1296
-3 1297 1372 1467
-3 1467 1373 1297
-3 1331 1373 1468
-3 1468 1422 1331
-3 1333 1374 1469
-3 1469 1424 1333
-3 1302 1375 1470
-3 1470 1380 1302
-3 1425 1471 1426
-3 1426 1376 1425
-3 1426 1472 1427
-3 1427 1377 1426
-3 1352 1337 1379
-3 1379 1473 1352
-3 1378 1474 1475
-3 1475 1379 1378
-3 1427 1476 1474
-3 1474 1378 1427
-3 1381 1380 1477
-3 1477 1478 1381
-3 1382 1381 1478
-3 1478 1479 1382
-3 1383 1382 1479
-3 1479 1480 1383
-3 1384 1383 1480
-3 1480 1481 1384
-3 1385 1384 1481
-3 1481 1482 1385
-3 1428 1385 1482
-3 1482 1483 1428
-3 1428 1484 1429
-3 1429 1386 1428
-3 1485 1430 1431
-3 1431 1486 1485
-3 1487 1432 1387
-3 1387 1430 1487
-3 1431 1388 1433
-3 1433 1488 1431
-3 1489 1434 1389
-3 1389 1432 1489
-3 1433 1390 1435
-3 1435 1490 1433
-3 1491 1436 1391
-3 1391 1434 1491
-3 1435 1392 1437
-3 1437 1492 1435
-3 1493 1438 1393
-3 1393 1436 1493
-3 1437 1394 1439
-3 1439 1494 1437
-3 1495 1440 1395
-3 1395 1438 1495
-3 1439 1398 1443
-3 1443 1496 1439
-3 1497 1444 1399
-3 1399 1440 1497
-3 1396 1416 1462
-3 1462 1441 1396
-3 1397 1441 1498
-3 1498 1442 1397
-3 1443 1442 1499
-3 1499 1500 1443
-3 1501 1445 1400
-3 1400 1444 1501
-3 1502 1503 1446
-3 1446 1402 1502
-3 1446 1504 1447
-3 1447 1403 1446
-3 1447 1505 1448
-3 1448 1404 1447
-3 1448 1506 1449
-3 1449 1405 1448
-3 1449 1507 1450
-3 1450 1406 1449
-3 1450 1508 1451
-3 1451 1407 1450
-3 1451 1509 1452
-3 1452 1408 1451
-3 1452 1510 1453
-3 1453 1409 1452
-3 1453 1511 1512
-3 1512 1454 1453
-3 1410 1454 1513
-3 1513 1455 1410
-3 1411 1455 1514
-3 1514 1456 1411
-3 1412 1456 1515
-3 1515 1457 1412
-3 1413 1457 1516
-3 1516 1458 1413
-3 1458 1517 1459
-3 1459 1414 1458
-3 1462 1417 1463
-3 1463 1518 1462
-3 1419 1519 1520
-3 1520 1463 1419
-3 1459 1521 1522
-3 1522 1418 1459
-3 1418 1522 1519
-3 1519 1419 1418
-3 1523 1465 1421
-3 1421 1464 1523
-3 1423 1422 1524
-3 1524 1525 1423
-3 1374 1423 1525
-3 1525 1469 1374
-3 1375 1424 1526
-3 1526 1470 1375
-3 1429 1527 1471
-3 1471 1425 1429
-3 1471 1528 1472
-3 1472 1426 1471
-3 1472 1529 1476
-3 1476 1427 1472
-3 1473 1379 1475
-3 1475 1530 1473
-3 1483 1531 1484
-3 1484 1428 1483
-3 1484 1532 1527
-3 1527 1429 1484
-3 1533 1485 1486
-3 1486 1534 1533
-3 1535 1487 1430
-3 1430 1485 1535
-3 1486 1431 1488
-3 1488 1536 1486
-3 1537 1489 1432
-3 1432 1487 1537
-3 1488 1433 1490
-3 1490 1538 1488
-3 1539 1491 1434
-3 1434 1489 1539
-3 1490 1435 1492
-3 1492 1540 1490
-3 1541 1493 1436
-3 1436 1491 1541
-3 1492 1437 1494
-3 1494 1542 1492
-3 1543 1495 1438
-3 1438 1493 1543
-3 1494 1439 1496
-3 1496 1544 1494
-3 1545 1497 1440
-3 1440 1495 1545
-3 1496 1443 1500
-3 1500 1546 1496
-3 1547 1501 1444
-3 1444 1497 1547
-3 1441 1462 1518
-3 1518 1498 1441
-3 1442 1498 1548
-3 1548 1499 1442
-3 1500 1499 1549
-3 1549 1550 1500
-3 1551 1552 1445
-3 1445 1501 1551
-3 1553 1554 1503
-3 1503 1502 1553
-3 1503 1555 1504
-3 1504 1446 1503
-3 1504 1556 1505
-3 1505 1447 1504
-3 1505 1557 1506
-3 1506 1448 1505
-3 1506 1558 1507
-3 1507 1449 1506
-3 1507 1559 1508
-3 1508 1450 1507
-3 1508 1560 1509
-3 1509 1451 1508
-3 1509 1561 1510
-3 1510 1452 1509
-3 1510 1562 1511
-3 1511 1453 1510
-3 1511 1563 1564
-3 1564 1512 1511
-3 1454 1512 1565
-3 1565 1513 1454
-3 1455 1513 1566
-3 1566 1514 1455
-3 1456 1514 1567
-3 1567 1515 1456
-3 1457 1515 1568
-3 1568 1516 1457
-3 1517 1458 1516
-3 1516 1569 1517
-3 1517 1570 1521
-3 1521 1459 1517
-3 1518 1463 1520
-3 1520 1571 1518
-3 1572 1523 1464
-3 1464 1573 1572
-3 1465 1523 1574
-3 1574 1575 1465
-3 1371 1465 1575
-3 1575 1466 1371
-3 1372 1466 1576
-3 1576 1467 1372
-3 1373 1467 1577
-3 1577 1468 1373
-3 1422 1468 1578
-3 1578 1524 1422
-3 1424 1469 1579
-3 1579 1526 1424
-3 1380 1470 1580
-3 1580 1477 1380
-3 1527 1581 1528
-3 1528 1471 1527
-3 1528 1582 1529
-3 1529 1472 1528
-3 1530 1475 1583
-3 1583 1584 1530
-3 1474 1585 1583
-3 1583 1475 1474
-3 1476 1586 1585
-3 1585 1474 1476
-3 1529 1587 1586
-3 1586 1476 1529
-3 1478 1477 1588
-3 1588 1589 1478
-3 1479 1478 1589
-3 1589 1590 1479
-3 1480 1479 1590
-3 1590 1591 1480
-3 1481 1480 1591
-3 1591 1592 1481
-3 1482 1481 1592
-3 1592 1593 1482
-3 1483 1482 1593
-3 1593 1594 1483
-3 1531 1483 1594
-3 1594 1595 1531
-3 1531 1596 1532
-3 1532 1484 1531
-3 1597 1533 1534
-3 1534 1598 1597
-3 1599 1535 1485
-3 1485 1533 1599
-3 1534 1486 1536
-3 1536 1600 1534
-3 1601 1537 1487
-3 1487 1535 1601
-3 1536 1488 1538
-3 1538 1602 1536
-3 1603 1539 1489
-3 1489 1537 1603
-3 1538 1490 1540
-3 1540 1604 1538
-3 1605 1541 1491
-3 1491 1539 1605
-3 1540 1492 1542
-3 1542 1606 1540
-3 1607 1543 1493
-3 1493 1541 1607
-3 1542 1494 1544
-3 1544 1608 1542
-3 1609 1545 1495
-3 1495 1543 1609
-3 1544 1496 1546
-3 1546 1610 1544
-3 1611 1547 1497
-3 1497 1545 1611
-3 1546 1500 1550
-3 1550 1612 1546
-3 1613 1551 1501
-3 1501 1547 1613
-3 1584 1583 1614
-3 1614 1615 1584
-3 1498 1518 1571
-3 1571 1548 1498
-3 1499 1548 1616
-3 1616 1549 1499
-3 1550 1549 1617
-3 1617 1618 1550
-3 1619 1620 1552
-3 1552 1551 1619
-3 1621 1622 1554
-3 1554 1553 1621
-3 1554 1623 1555
-3 1555 1503 1554
-3 1555 1624 1556
-3 1556 1504 1555
-3 1556 1625 1557
-3 1557 1505 1556
-3 1557 1626 1558
-3 1558 1506 1557
-3 1558 1627 1559
-3 1559 1507 1558
-3 1559 1628 1560
-3 1560 1508 1559
-3 1560 1629 1561
-3 1561 1509 1560
-3 1561 1630 1562
-3 1562 1510 1561
-3 1562 1631 1563
-3 1563 1511 1562
-3 1563 1632 1633
-3 1633 1564 1563
-3 1512 1564 1634
-3 1634 1565 1512
-3 1513 1565 1635
-3 1635 1566 1513
-3 1514 1566 1636
-3 1636 1567 1514
-3 1515 1567 1637
-3 1637 1568 1515
-3 1516 1568 1638
-3 1638 1569 1516
-3 1569 1639 1570
-3 1570 1517 1569
-3 1520 1640 1641
-3 1641 1571 1520
-3 1519 1642 1640
-3 1640 1520 1519
-3 1522 1643 1642
-3 1642 1519 1522
-3 1521 1644 1643
-3 1643 1522 1521
-3 1570 1645 1644
-3 1644 1521 1570
-3 1646 1572 1573
-3 1573 1614 1646
-3 1647 1574 1523
-3 1523 1572 1647
-3 1525 1524 1648
-3 1648 1649 1525
-3 1469 1525 1649
-3 1649 1579 1469
-3 1470 1526 1650
-3 1650 1580 1470
-3 1532 1651 1581
-3 1581 1527 1532
-3 1581 1652 1582
-3 1582 1528 1581
-3 1582 1653 1587
-3 1587 1529 1582
-3 1595 1654 1596
-3 1596 1531 1595
-3 1596 1655 1651
-3 1651 1532 1596
-3 1656 1597 1598
-3 1598 1657 1656
-3 1658 1599 1533
-3 1533 1597 1658
-3 1598 1534 1600
-3 1600 1659 1598
-3 1660 1601 1535
-3 1535 1599 1660
-3 1600 1536 1602
-3 1602 1661 1600
-3 1662 1603 1537
-3 1537 1601 1662
-3 1602 1538 1604
-3 1604 1663 1602
-3 1664 1605 1539
-3 1539 1603 1664
-3 1604 1540 1606
-3 1606 1665 1604
-3 1666 1607 1541
-3 1541 1605 1666
-3 1606 1542 1608
-3 1608 1667 1606
-3 1668 1609 1543
-3 1543 1607 1668
-3 1608 1544 1610
-3 1610 1669 1608
-3 1670 1611 1545
-3 1545 1609 1670
-3 1610 1546 1612
-3 1612 1671 1610
-3 1672 1613 1547
-3 1547 1611 1672
-3 1612 1550 1618
-3 1618 1673 1612
-3 1674 1619 1551
-3 1551 1613 1674
-3 1585 1646 1614
-3 1614 1583 1585
-3 1548 1571 1641
-3 1641 1616 1548
-3 1549 1616 1675
-3 1675 1617 1549
-3 1618 1617 1676
-3 1676 1677 1618
-3 1678 1679 1620
-3 1620 1619 1678
-3 1680 1681 1682
-3 1682 1683 1680
-3 1680 1683 1684
-3 1684 1685 1680
-3 1686 1553 1687
-3 1688 1621 1553
-3 1689 1690 1688
-3 1691 1692 1689
-3 1686 1691 1553
-3 1689 1688 1553
-3 1691 1689 1553
-3 1693 1694 1622
-3 1622 1621 1693
-3 1622 1695 1623
-3 1623 1554 1622
-3 1623 1696 1624
-3 1624 1555 1623
-3 1624 1697 1625
-3 1625 1556 1624
-3 1625 1698 1626
-3 1626 1557 1625
-3 1626 1699 1627
-3 1627 1558 1626
-3 1627 1700 1628
-3 1628 1559 1627
-3 1628 1701 1629
-3 1629 1560 1628
-3 1629 1702 1630
-3 1630 1561 1629
-3 1630 1703 1631
-3 1631 1562 1630
-3 1631 1704 1632
-3 1632 1563 1631
-3 1632 1705 1706
-3 1706 1633 1632
-3 1564 1633 1707
-3 1707 1634 1564
-3 1565 1634 1708
-3 1708 1635 1565
-3 1566 1635 1709
-3 1709 1636 1566
-3 1567 1636 1710
-3 1710 1637 1567
-3 1568 1637 1711
-3 1711 1638 1568
-3 1639 1569 1638
-3 1638 1712 1639
-3 1639 1713 1645
-3 1645 1570 1639
-3 1714 1647 1572
-3 1572 1646 1714
-3 1574 1647 1715
-3 1715 1716 1574
-3 1575 1574 1716
-3 1716 1717 1575
-3 1466 1575 1717
-3 1717 1576 1466
-3 1467 1576 1718
-3 1718 1577 1467
-3 1468 1577 1719
-3 1719 1578 1468
-3 1524 1578 1720
-3 1720 1648 1524
-3 1526 1579 1721
-3 1721 1650 1526
-3 1477 1580 1722
-3 1722 1588 1477
-3 1651 1723 1652
-3 1652 1581 1651
-3 1652 1724 1653
-3 1653 1582 1652
-3 1586 1714 1646
-3 1646 1585 1586
-3 1587 1725 1714
-3 1714 1586 1587
-3 1653 1726 1725
-3 1725 1587 1653
-3 1589 1588 1727
-3 1727 1728 1589
-3 1590 1589 1728
-3 1728 1729 1590
-3 1591 1590 1729
-3 1729 1730 1591
-3 1592 1591 1730
-3 1730 1731 1592
-3 1593 1592 1731
-3 1731 1732 1593
-3 1594 1593 1732
-3 1732 1733 1594
-3 1595 1594 1733
-3 1733 1734 1595
-3 1654 1595 1734
-3 1734 1735 1654
-3 1654 1736 1655
-3 1655 1596 1654
-3 1737 1738 1739
-3 1739 1740 1737
-3 1741 1658 1597
-3 1597 1656 1741
-3 1657 1598 1659
-3 1659 1742 1657
-3 1743 1660 1599
-3 1599 1658 1743
-3 1659 1600 1661
-3 1661 1744 1659
-3 1745 1662 1601
-3 1601 1660 1745
-3 1661 1602 1663
-3 1663 1746 1661
-3 1747 1664 1603
-3 1603 1662 1747
-3 1663 1604 1665
-3 1665 1748 1663
-3 1749 1666 1605
-3 1605 1664 1749
-3 1665 1606 1667
-3 1667 1750 1665
-3 1751 1668 1607
-3 1607 1666 1751
-3 1667 1608 1669
-3 1669 1752 1667
-3 1753 1670 1609
-3 1609 1668 1753
-3 1669 1610 1671
-3 1671 1754 1669
-3 1755 1672 1611
-3 1611 1670 1755
-3 1671 1612 1673
-3 1673 1756 1671
-3 1757 1674 1613
-3 1613 1672 1757
-3 1673 1618 1677
-3 1677 1758 1673
-3 1759 1678 1619
-3 1619 1674 1759
-3 1616 1641 1760
-3 1760 1675 1616
-3 1617 1675 1761
-3 1761 1676 1617
-3 1677 1676 1762
-3 1762 1763 1677
-3 1764 1765 1679
-3 1679 1678 1764
-3 1620 1766 1767
-3 1679 1768 1769
-3 1620 1770 1766
-3 1679 1769 1771
-3 1620 1772 1770
-3 1679 1771 1772
-3 1620 1679 1772
-3 1773 1774 1775
-3 1776 1777 1774
-3 1773 1776 1774
-3 1682 1778 1779
-3 1779 1780 1682
-3 1683 1781 1782
-3 1782 1684 1683
-3 1782 1781 1783
-3 1784 1783 1781
-3 1781 1785 1784
-3 1786 1787 1788
-3 1789 1790 1788
-3 1790 1791 1792
-3 1792 1793 1794
-3 1794 1795 1693
-3 1693 1621 1688
-3 1792 1794 1693
-3 1693 1688 1786
-3 1790 1792 1693
-3 1693 1786 1788
-3 1790 1693 1788
-3 1796 1797 1694
-3 1694 1693 1796
-3 1694 1798 1695
-3 1695 1622 1694
-3 1695 1799 1696
-3 1696 1623 1695
-3 1696 1800 1697
-3 1697 1624 1696
-3 1697 1801 1698
-3 1698 1625 1697
-3 1698 1802 1699
-3 1699 1626 1698
-3 1699 1803 1700
-3 1700 1627 1699
-3 1700 1804 1701
-3 1701 1628 1700
-3 1701 1805 1702
-3 1702 1629 1701
-3 1702 1806 1703
-3 1703 1630 1702
-3 1703 1807 1704
-3 1704 1631 1703
-3 1704 1808 1705
-3 1705 1632 1704
-3 1705 1809 1810
-3 1810 1706 1705
-3 1633 1706 1811
-3 1811 1707 1633
-3 1634 1707 1812
-3 1812 1708 1634
-3 1635 1708 1813
-3 1813 1709 1635
-3 1636 1709 1814
-3 1814 1710 1636
-3 1637 1710 1815
-3 1815 1711 1637
-3 1638 1711 1816
-3 1816 1712 1638
-3 1712 1817 1713
-3 1713 1639 1712
-3 1640 1818 1760
-3 1760 1641 1640
-3 1642 1819 1818
-3 1818 1640 1642
-3 1643 1820 1819
-3 1819 1642 1643
-3 1644 1821 1820
-3 1820 1643 1644
-3 1645 1822 1821
-3 1821 1644 1645
-3 1713 1823 1822
-3 1822 1645 1713
-3 1647 1714 1725
-3 1725 1715 1647
-3 1649 1648 1824
-3 1824 1825 1649
-3 1579 1649 1825
-3 1825 1721 1579
-3 1580 1650 1826
-3 1826 1722 1580
-3 1655 1827 1723
-3 1723 1651 1655
-3 1723 1828 1724
-3 1724 1652 1723
-3 1724 1829 1726
-3 1726 1653 1724
-3 1735 1830 1736
-3 1736 1654 1735
-3 1736 1831 1827
-3 1827 1655 1736
-3 1832 1737 1740
-3 1740 1833 1832
-3 1834 1835 1738
-3 1738 1737 1834
-3 1740 1739 1836
-3 1836 1837 1740
-3 1838 1743 1658
-3 1658 1741 1838
-3 1742 1659 1744
-3 1744 1839 1742
-3 1840 1745 1660
-3 1660 1743 1840
-3 1744 1661 1746
-3 1746 1841 1744
-3 1842 1747 1662
-3 1662 1745 1842
-3 1746 1663 1748
-3 1748 1843 1746
-3 1844 1749 1664
-3 1664 1747 1844
-3 1748 1665 1750
-3 1750 1845 1748
-3 1846 1751 1666
-3 1666 1749 1846
-3 1750 1667 1752
-3 1752 1847 1750
-3 1848 1753 1668
-3 1668 1751 1848
-3 1752 1669 1754
-3 1754 1849 1752
-3 1850 1755 1670
-3 1670 1753 1850
-3 1754 1671 1756
-3 1756 1851 1754
-3 1852 1757 1672
-3 1672 1755 1852
-3 1756 1673 1758
-3 1758 1853 1756
-3 1854 1759 1674
-3 1674 1757 1854
-3 1758 1677 1763
-3 1763 1855 1758
-3 1856 1764 1678
-3 1678 1759 1856
-3 1675 1760 1857
-3 1857 1761 1675
-3 1676 1761 1858
-3 1858 1762 1676
-3 1763 1762 1859
-3 1859 1860 1763
-3 1861 1862 1765
-3 1765 1764 1861
-3 1863 1774 1777
-3 1777 1864 1863
-3 1683 1682 1780
-3 1780 1865 1683
-3 1781 1683 1865
-3 1865 1866 1781
-3 1784 1785 1867
-3 1686 1868 1869
-3 1869 1691 1686
-3 1870 1796 1693
-3 1693 1795 1870
-3 1871 1872 1797
-3 1797 1796 1871
-3 1797 1873 1798
-3 1798 1694 1797
-3 1798 1874 1799
-3 1799 1695 1798
-3 1799 1875 1800
-3 1800 1696 1799
-3 1800 1876 1801
-3 1801 1697 1800
-3 1801 1877 1802
-3 1802 1698 1801
-3 1802 1878 1803
-3 1803 1699 1802
-3 1803 1879 1804
-3 1804 1700 1803
-3 1804 1880 1805
-3 1805 1701 1804
-3 1805 1881 1806
-3 1806 1702 1805
-3 1806 1882 1807
-3 1807 1703 1806
-3 1807 1883 1808
-3 1808 1704 1807
-3 1808 1884 1809
-3 1809 1705 1808
-3 1809 1885 1886
-3 1886 1810 1809
-3 1706 1810 1887
-3 1887 1811 1706
-3 1707 1811 1888
-3 1888 1812 1707
-3 1708 1812 1889
-3 1889 1813 1708
-3 1709 1813 1890
-3 1890 1814 1709
-3 1710 1814 1891
-3 1891 1815 1710
-3 1711 1815 1892
-3 1892 1816 1711
-3 1817 1712 1816
-3 1816 1893 1817
-3 1817 1894 1823
-3 1823 1713 1817
-3 1716 1715 1895
-3 1895 1896 1716
-3 1717 1716 1896
-3 1896 1897 1717
-3 1576 1717 1897
-3 1897 1718 1576
-3 1577 1718 1898
-3 1898 1719 1577
-3 1578 1719 1899
-3 1899 1720 1578
-3 1648 1720 1900
-3 1900 1824 1648
-3 1650 1721 1901
-3 1901 1826 1650
-3 1588 1722 1902
-3 1902 1727 1588
-3 1827 1903 1828
-3 1828 1723 1827
-3 1828 1904 1829
-3 1829 1724 1828
-3 1726 1895 1715
-3 1715 1725 1726
-3 1829 1905 1895
-3 1895 1726 1829
-3 1728 1727 1906
-3 1906 1907 1728
-3 1729 1728 1907
-3 1907 1908 1729
-3 1730 1729 1908
-3 1908 1909 1730
-3 1731 1730 1909
-3 1909 1910 1731
-3 1732 1731 1910
-3 1910 1911 1732
-3 1733 1732 1911
-3 1911 1912 1733
-3 1734 1733 1912
-3 1912 1913 1734
-3 1735 1734 1913
-3 1913 1914 1735
-3 1830 1735 1914
-3 1914 1915 1830
-3 1830 1916 1831
-3 1831 1736 1830
-3 1917 1832 1833
-3 1833 1918 1917
-3 1919 1834 1737
-3 1737 1832 1919
-3 1833 1740 1837
-3 1837 1920 1833
-3 1921 1922 1835
-3 1835 1834 1921
-3 1837 1836 1923
-3 1923 1924 1837
-3 1925 1840 1743
-3 1743 1838 1925
-3 1839 1744 1841
-3 1841 1926 1839
-3 1927 1842 1745
-3 1745 1840 1927
-3 1841 1746 1843
-3 1843 1928 1841
-3 1929 1844 1747
-3 1747 1842 1929
-3 1843 1748 1845
-3 1845 1930 1843
-3 1931 1846 1749
-3 1749 1844 1931
-3 1845 1750 1847
-3 1847 1932 1845
-3 1933 1848 1751
-3 1751 1846 1933
-3 1847 1752 1849
-3 1849 1934 1847
-3 1935 1850 1753
-3 1753 1848 1935
-3 1849 1754 1851
-3 1851 1936 1849
-3 1937 1852 1755
-3 1755 1850 1937
-3 1851 1756 1853
-3 1853 1938 1851
-3 1939 1854 1757
-3 1757 1852 1939
-3 1853 1758 1855
-3 1855 1940 1853
-3 1941 1856 1759
-3 1759 1854 1941
-3 1855 1763 1860
-3 1860 1942 1855
-3 1943 1861 1764
-3 1764 1856 1943
-3 1818 1944 1857
-3 1857 1760 1818
-3 1761 1857 1945
-3 1945 1858 1761
-3 1762 1858 1946
-3 1946 1859 1762
-3 1860 1859 1947
-3 1947 1948 1860
-3 1949 1950 1862
-3 1862 1861 1949
-3 1862 1870 1795
-3 1795 1765 1862
-3 1771 1951 1772
-3 1772 1951 1952
-3 1952 1770 1772
-3 1953 1954 1955
-3 1773 1955 1954
-3 1954 1776 1773
-3 1953 1956 1957
-3 1957 1954 1953
-3 1958 1957 1956
-3 1957 1958 1767
-3 1766 1952 1767
-3 1952 1957 1767
-3 1778 1864 1959
-3 1959 1779 1778
-3 1780 1779 1960
-3 1960 1961 1780
-3 1865 1780 1961
-3 1961 1962 1865
-3 1866 1963 1785
-3 1785 1781 1866
-3 1867 1785 1868
-3 1868 1964 1867
-3 1691 1869 1692
-3 1692 1869 1965
-3 1965 1689 1692
-3 1964 1868 1686
-3 1686 1687 1964
-3 1869 1868 1966
-3 1966 1967 1869
-3 1968 1871 1796
-3 1796 1870 1968
-3 1969 1970 1872
-3 1872 1871 1969
-3 1872 1971 1873
-3 1873 1797 1872
-3 1873 1972 1874
-3 1874 1798 1873
-3 1874 1973 1875
-3 1875 1799 1874
-3 1875 1974 1876
-3 1876 1800 1875
-3 1876 1975 1877
-3 1877 1801 1876
-3 1877 1976 1878
-3 1878 1802 1877
-3 1878 1977 1879
-3 1879 1803 1878
-3 1879 1978 1880
-3 1880 1804 1879
-3 1880 1979 1881
-3 1881 1805 1880
-3 1881 1980 1882
-3 1882 1806 1881
-3 1882 1981 1883
-3 1883 1807 1882
-3 1883 1982 1884
-3 1884 1808 1883
-3 1884 1983 1885
-3 1885 1809 1884
-3 1885 1984 1985
-3 1985 1886 1885
-3 1810 1886 1986
-3 1986 1887 1810
-3 1811 1887 1987
-3 1987 1888 1811
-3 1812 1888 1988
-3 1988 1889 1812
-3 1813 1889 1989
-3 1989 1890 1813
-3 1814 1890 1990
-3 1990 1891 1814
-3 1892 1815 1891
-3 1891 1991 1892
-3 1892 1992 1893
-3 1893 1816 1892
-3 1893 1993 1894
-3 1894 1817 1893
-3 1819 1994 1944
-3 1944 1818 1819
-3 1820 1995 1994
-3 1994 1819 1820
-3 1821 1996 1995
-3 1995 1820 1821
-3 1822 1997 1996
-3 1996 1821 1822
-3 1823 1998 1997
-3 1997 1822 1823
-3 1894 1999 1998
-3 1998 1823 1894
-3 1825 1824 2000
-3 2000 2001 1825
-3 1721 1825 2001
-3 2001 1901 1721
-3 1722 1826 2002
-3 2002 1902 1722
-3 1831 2003 1903
-3 1903 1827 1831
-3 1903 2004 1904
-3 1904 1828 1903
-3 1904 2005 1905
-3 1905 1829 1904
-3 1915 2006 1916
-3 1916 1830 1915
-3 1916 2007 2003
-3 2003 1831 1916
-3 2008 1917 1918
-3 1918 2009 2008
-3 2010 1919 1832
-3 1832 1917 2010
-3 1918 1833 1920
-3 1920 2011 1918
-3 2012 1921 1834
-3 1834 1919 2012
-3 1920 1837 1924
-3 1924 2013 1920
-3 2014 2015 1922
-3 1922 1921 2014
-3 1924 1923 2016
-3 2016 2017 1924
-3 2018 1927 1840
-3 1840 1925 2018
-3 1926 1841 1928
-3 1928 2019 1926
-3 2020 1929 1842
-3 1842 1927 2020
-3 1928 1843 1930
-3 1930 2021 1928
-3 2022 1931 1844
-3 1844 1929 2022
-3 1930 1845 1932
-3 1932 2023 1930
-3 2024 1933 1846
-3 1846 1931 2024
-3 1932 1847 1934
-3 1934 2025 1932
-3 2026 1935 1848
-3 1848 1933 2026
-3 1934 1849 1936
-3 1936 2027 1934
-3 2028 1937 1850
-3 1850 1935 2028
-3 1936 1851 1938
-3 1938 2029 1936
-3 2030 1939 1852
-3 1852 1937 2030
-3 1938 1853 1940
-3 1940 2031 1938
-3 2032 1941 1854
-3 1854 1939 2032
-3 1940 1855 1942
-3 1942 2033 1940
-3 2034 1943 1856
-3 1856 1941 2034
-3 1942 1860 1948
-3 1948 2035 1942
-3 2036 1949 1861
-3 1861 1943 2036
-3 1944 2037 1945
-3 1945 1857 1944
-3 1858 1945 2038
-3 2038 1946 1858
-3 1859 1946 2039
-3 2039 1947 1859
-3 1948 1947 2040
-3 2040 2041 1948
-3 2042 2043 1950
-3 1950 1949 2042
-3 1950 1968 1870
-3 1870 1862 1950
-3 2044 2045 2046
-3 2046 2047 2044
-3 2047 2046 2048
-3 1769 2049 1951
-3 1951 1771 1769
-3 1952 1951 2050
-3 2050 2051 1952
-3 1770 1952 1766
-3 1864 1777 2052
-3 2052 1959 1864
-3 1777 1776 2053
-3 2053 2052 1777
-3 1866 1865 1962
-3 1962 2054 1866
-3 1963 1866 2054
-3 2054 2055 1963
-3 1963 1966 1868
-3 1868 1785 1963
-3 1965 1869 1967
-3 1967 2056 1965
-3 1689 1965 1690
-3 1688 2057 1786
-3 1690 1965 2057
-3 1688 1690 2057
-3 1788 2058 1789
-3 1789 2058 2059
-3 2059 1790 1789
-3 1787 2057 2058
-3 2058 1788 1787
-3 1786 2057 1787
-3 2060 1969 1871
-3 1871 1968 2060
-3 2061 2062 1970
-3 1970 1969 2061
-3 1970 2063 1971
-3 1971 1872 1970
-3 1971 2064 1972
-3 1972 1873 1971
-3 1972 2065 1973
-3 1973 1874 1972
-3 1973 2066 1974
-3 1974 1875 1973
-3 1974 2067 1975
-3 1975 1876 1974
-3 1975 2068 1976
-3 1976 1877 1975
-3 1976 2069 1977
-3 1977 1878 1976
-3 1977 2070 1978
-3 1978 1879 1977
-3 1978 2071 1979
-3 1979 1880 1978
-3 1979 2072 1980
-3 1980 1881 1979
-3 1980 2073 1981
-3 1981 1882 1980
-3 1981 2074 1982
-3 1982 1883 1981
-3 1982 2075 1983
-3 1983 1884 1982
-3 1983 2076 1984
-3 1984 1885 1983
-3 1984 2077 2078
-3 2078 1985 1984
-3 1886 1985 2079
-3 2079 1986 1886
-3 1887 1986 2080
-3 2080 1987 1887
-3 1888 1987 2081
-3 2081 1988 1888
-3 1889 1988 2082
-3 2082 1989 1889
-3 1890 1989 2083
-3 2083 1990 1890
-3 1990 2084 1991
-3 1991 1891 1990
-3 1991 2085 1992
-3 1992 1892 1991
-3 1992 2086 1993
-3 1993 1893 1992
-3 1993 2087 1999
-3 1999 1894 1993
-3 1896 1895 1905
-3 1905 2088 1896
-3 1897 1896 2088
-3 2088 2089 1897
-3 1718 1897 2089
-3 2089 1898 1718
-3 1719 1898 2090
-3 2090 1899 1719
-3 1720 1899 2091
-3 2091 1900 1720
-3 1824 1900 2092
-3 2092 2000 1824
-3 1826 1901 2093
-3 2093 2002 1826
-3 1727 1902 2094
-3 2094 1906 1727
-3 2003 2095 2004
-3 2004 1903 2003
-3 2004 2096 2005
-3 2005 1904 2004
-3 2005 2097 2088
-3 2088 1905 2005
-3 1907 1906 2098
-3 2098 2099 1907
-3 1908 1907 2099
-3 2099 2100 1908
-3 1909 1908 2100
-3 2100 2101 1909
-3 1910 1909 2101
-3 2101 2102 1910
-3 1911 1910 2102
-3 2102 2103 1911
-3 1912 1911 2103
-3 2103 2104 1912
-3 1913 1912 2104
-3 2104 2105 1913
-3 1914 1913 2105
-3 2105 2106 1914
-3 1915 1914 2106
-3 2106 2107 1915
-3 2006 1915 2107
-3 2107 2108 2006
-3 2006 2109 2007
-3 2007 1916 2006
-3 2110 2008 2009
-3 2009 2111 2110
-3 2112 2010 1917
-3 1917 2008 2112
-3 2009 1918 2011
-3 2011 2113 2009
-3 2114 2012 1919
-3 1919 2010 2114
-3 2011 1920 2013
-3 2013 2115 2011
-3 2116 2014 1921
-3 1921 2012 2116
-3 2013 1924 2017
-3 2017 2117 2013
-3 2118 2119 2015
-3 2015 2014 2118
-3 2017 2016 2120
-3 2120 2121 2017
-3 2122 2020 1927
-3 1927 2018 2122
-3 2019 1928 2021
-3 2021 2123 2019
-3 2124 2022 1929
-3 1929 2020 2124
-3 2021 1930 2023
-3 2023 2125 2021
-3 2126 2024 1931
-3 1931 2022 2126
-3 2023 1932 2025
-3 2025 2127 2023
-3 2128 2026 1933
-3 1933 2024 2128
-3 2025 1934 2027
-3 2027 2129 2025
-3 2130 2028 1935
-3 1935 2026 2130
-3 2027 1936 2029
-3 2029 2131 2027
-3 2132 2030 1937
-3 1937 2028 2132
-3 2029 1938 2031
-3 2031 2133 2029
-3 2134 2032 1939
-3 1939 2030 2134
-3 2031 1940 2033
-3 2033 2135 2031
-3 2136 2034 1941
-3 1941 2032 2136
-3 2033 1942 2035
-3 2035 2137 2033
-3 2138 2036 1943
-3 1943 2034 2138
-3 2035 1948 2041
-3 2041 2139 2035
-3 2140 2042 1949
-3 1949 2036 2140
-3 1994 2141 2037
-3 2037 1944 1994
-3 2037 2142 2038
-3 2038 1945 2037
-3 1946 2038 2143
-3 2143 2039 1946
-3 1947 2039 2144
-3 2144 2040 1947
-3 2041 2040 2145
-3 2145 2146 2041
-3 2147 2148 2043
-3 2043 2042 2147
-3 2043 2060 1968
-3 1968 1950 2043
-3 2149 2045 2044
-3 2046 2045 2150
-3 2150 2151 2046
-3 2048 2046 2049
-3 2049 2152 2048
-3 2152 2049 1769
-3 1769 1768 2152
-3 1951 2049 2153
-3 2153 2050 1951
-3 2051 2154 1957
-3 1957 1952 2051
-3 1776 1954 2155
-3 2155 2053 1776
-3 1954 1957 2154
-3 2154 2155 1954
-3 1779 1959 2156
-3 2156 1960 1779
-3 1961 1960 2157
-3 2157 2158 1961
-3 1962 1961 2158
-3 2158 2159 1962
-3 2054 1962 2159
-3 2159 2160 2054
-3 2055 2161 1966
-3 1966 1963 2055
-3 2056 2162 2057
-3 2057 1965 2056
-3 1967 1966 2161
-3 2161 2163 1967
-3 2056 1967 2163
-3 2163 2164 2056
-3 1790 2059 1791
-3 1791 2059 2165
-3 2165 1792 1791
-3 2059 2058 2166
-3 2166 2167 2059
-3 2058 2057 2162
-3 2162 2166 2058
-3 2168 2061 1969
-3 1969 2060 2168
-3 1792 2165 1793
-3 2169 2170 2062
-3 2062 2061 2169
-3 2062 2171 2063
-3 2063 1970 2062
-3 2063 2172 2064
-3 2064 1971 2063
-3 2064 2173 2065
-3 2065 1972 2064
-3 2065 2174 2066
-3 2066 1973 2065
-3 2066 2175 2067
-3 2067 1974 2066
-3 2067 2176 2068
-3 2068 1975 2067
-3 2068 2177 2069
-3 2069 1976 2068
-3 2069 2178 2070
-3 2070 1977 2069
-3 2070 2179 2071
-3 2071 1978 2070
-3 2071 2180 2072
-3 2072 1979 2071
-3 2072 2181 2073
-3 2073 1980 2072
-3 2073 2182 2074
-3 2074 1981 2073
-3 2074 2183 2075
-3 2075 1982 2074
-3 2075 2184 2076
-3 2076 1983 2075
-3 2076 2185 2077
-3 2077 1984 2076
-3 2077 2186 2187
-3 2187 2078 2077
-3 1985 2078 2188
-3 2188 2079 1985
-3 1986 2079 2189
-3 2189 2080 1986
-3 1987 2080 2190
-3 2190 2081 1987
-3 1988 2081 2191
-3 2191 2082 1988
-3 1989 2082 2192
-3 2192 2083 1989
-3 1990 2083 2193
-3 2193 2084 1990
-3 2084 2194 2085
-3 2085 1991 2084
-3 2085 2195 2086
-3 2086 1992 2085
-3 2086 2196 2087
-3 2087 1993 2086
-3 1995 2197 2141
-3 2141 1994 1995
-3 1996 2198 2197
-3 2197 1995 1996
-3 1997 2199 2198
-3 2198 1996 1997
-3 1998 2200 2199
-3 2199 1997 1998
-3 1999 2201 2200
-3 2200 1998 1999
-3 2087 2202 2201
-3 2201 1999 2087
-3 2001 2000 2203
-3 2203 2204 2001
-3 1901 2001 2204
-3 2204 2093 1901
-3 1902 2002 2205
-3 2205 2094 1902
-3 2007 2206 2095
-3 2095 2003 2007
-3 2095 2207 2096
-3 2096 2004 2095
-3 2096 2208 2097
-3 2097 2005 2096
-3 2108 2209 2109
-3 2109 2006 2108
-3 2109 2210 2206
-3 2206 2007 2109
-3 2211 2110 2111
-3 2111 2212 2211
-3 2213 2112 2008
-3 2008 2110 2213
-3 2111 2009 2113
-3 2113 2214 2111
-3 2215 2114 2010
-3 2010 2112 2215
-3 2113 2011 2115
-3 2115 2216 2113
-3 2217 2116 2012
-3 2012 2114 2217
-3 2115 2013 2117
-3 2117 2218 2115
-3 2219 2118 2014
-3 2014 2116 2219
-3 2117 2017 2121
-3 2121 2220 2117
-3 2221 2222 2119
-3 2119 2118 2221
-3 2121 2120 2223
-3 2223 2224 2121
-3 2225 2124 2020
-3 2020 2122 2225
-3 2123 2021 2125
-3 2125 2226 2123
-3 2227 2126 2022
-3 2022 2124 2227
-3 2125 2023 2127
-3 2127 2228 2125
-3 2229 2128 2024
-3 2024 2126 2229
-3 2127 2025 2129
-3 2129 2230 2127
-3 2231 2130 2026
-3 2026 2128 2231
-3 2129 2027 2131
-3 2131 2232 2129
-3 2233 2132 2028
-3 2028 2130 2233
-3 2131 2029 2133
-3 2133 2234 2131
-3 2235 2134 2030
-3 2030 2132 2235
-3 2133 2031 2135
-3 2135 2236 2133
-3 2237 2136 2032
-3 2032 2134 2237
-3 2135 2033 2137
-3 2137 2238 2135
-3 2239 2138 2034
-3 2034 2136 2239
-3 2137 2035 2139
-3 2139 2240 2137
-3 2241 2140 2036
-3 2036 2138 2241
-3 2139 2041 2146
-3 2146 2242 2139
-3 2243 2147 2042
-3 2042 2140 2243
-3 2141 2244 2142
-3 2142 2037 2141
-3 2142 2245 2143
-3 2143 2038 2142
-3 2039 2143 2246
-3 2246 2144 2039
-3 2040 2144 2247
-3 2247 2145 2040
-3 2146 2145 2248
-3 2248 2249 2146
-3 2250 2251 2148
-3 2148 2147 2250
-3 2148 2168 2060
-3 2060 2043 2148
-3 2252 2253 2254
-3 2255 2256 2253
-3 2253 2252 2255
-3 2254 2253 2045
-3 2045 2149 2254
-3 2151 2153 2049
-3 2049 2046 2151
-3 2051 2050 2257
-3 2257 2258 2051
-3 2154 2051 2258
-3 2258 2259 2154
-3 1959 2052 2260
-3 2260 2156 1959
-3 2052 2053 2261
-3 2261 2260 2052
-3 2055 2054 2160
-3 2160 2262 2055
-3 2161 2055 2262
-3 2262 2263 2161
-3 2162 2056 2164
-3 2164 2264 2162
-3 2165 2059 2167
-3 2167 2265 2165
-3 2266 2169 2061
-3 2061 2168 2266
-3 2267 2268 2170
-3 2170 2169 2267
-3 2170 2269 2171
-3 2171 2062 2170
-3 2171 2270 2172
-3 2172 2063 2171
-3 2172 2271 2173
-3 2173 2064 2172
-3 2173 2272 2174
-3 2174 2065 2173
-3 2174 2273 2175
-3 2175 2066 2174
-3 2175 2274 2176
-3 2176 2067 2175
-3 2176 2275 2177
-3 2177 2068 2176
-3 2177 2276 2178
-3 2178 2069 2177
-3 2178 2277 2179
-3 2179 2070 2178
-3 2179 2278 2180
-3 2180 2071 2179
-3 2180 2279 2181
-3 2181 2072 2180
-3 2181 2280 2182
-3 2182 2073 2181
-3 2182 2281 2183
-3 2183 2074 2182
-3 2183 2282 2184
-3 2184 2075 2183
-3 2184 2283 2185
-3 2185 2076 2184
-3 2185 2284 2186
-3 2186 2077 2185
-3 2186 2285 2286
-3 2286 2187 2186
-3 2078 2187 2287
-3 2287 2188 2078
-3 2079 2188 2288
-3 2288 2189 2079
-3 2080 2189 2289
-3 2289 2190 2080
-3 2081 2190 2290
-3 2290 2191 2081
-3 2082 2191 2291
-3 2291 2192 2082
-3 2083 2192 2292
-3 2292 2193 2083
-3 2194 2084 2193
-3 2193 2293 2194
-3 2194 2294 2195
-3 2195 2085 2194
-3 2195 2295 2196
-3 2196 2086 2195
-3 2196 2296 2202
-3 2202 2087 2196
-3 2089 2088 2097
-3 2097 2297 2089
-3 1898 2089 2297
-3 2297 2090 1898
-3 1899 2090 2298
-3 2298 2091 1899
-3 1900 2091 2299
-3 2299 2092 1900
-3 2000 2092 2300
-3 2300 2203 2000
-3 2002 2093 2301
-3 2301 2205 2002
-3 1906 2094 2302
-3 2302 2098 1906
-3 2206 2303 2207
-3 2207 2095 2206
-3 2207 2304 2208
-3 2208 2096 2207
-3 2208 2305 2297
-3 2297 2097 2208
-3 2306 2307 2099
-3 2099 2098 2306
-3 2307 2308 2100
-3 2100 2099 2307
-3 2101 2100 2308
-3 2308 2309 2101
-3 2102 2101 2309
-3 2309 2310 2102
-3 2103 2102 2310
-3 2310 2311 2103
-3 2104 2103 2311
-3 2311 2312 2104
-3 2312 2313 2105
-3 2105 2104 2312
-3 2313 2314 2106
-3 2106 2105 2313
-3 2107 2106 2314
-3 2314 2315 2107
-3 2108 2107 2315
-3 2315 2316 2108
-3 2209 2108 2316
-3 2316 2317 2209
-3 2209 2318 2210
-3 2210 2109 2209
-3 2319 2211 2212
-3 2212 2320 2319
-3 2321 2213 2110
-3 2110 2211 2321
-3 2212 2111 2214
-3 2214 2322 2212
-3 2323 2215 2112
-3 2112 2213 2323
-3 2214 2113 2216
-3 2216 2324 2214
-3 2325 2217 2114
-3 2114 2215 2325
-3 2216 2115 2218
-3 2218 2326 2216
-3 2327 2219 2116
-3 2116 2217 2327
-3 2218 2117 2220
-3 2220 2328 2218
-3 2329 2221 2118
-3 2118 2219 2329
-3 2220 2121 2224
-3 2224 2330 2220
-3 2331 2332 2222
-3 2222 2221 2331
-3 2224 2223 2333
-3 2333 2334 2224
-3 2335 2227 2124
-3 2124 2225 2335
-3 2226 2125 2228
-3 2228 2336 2226
-3 2337 2229 2126
-3 2126 2227 2337
-3 2228 2127 2230
-3 2230 2338 2228
-3 2339 2231 2128
-3 2128 2229 2339
-3 2230 2129 2232
-3 2232 2340 2230
-3 2341 2233 2130
-3 2130 2231 2341
-3 2232 2131 2234
-3 2234 2342 2232
-3 2343 2235 2132
-3 2132 2233 2343
-3 2234 2133 2236
-3 2236 2344 2234
-3 2345 2237 2134
-3 2134 2235 2345
-3 2236 2135 2238
-3 2238 2346 2236
-3 2347 2239 2136
-3 2136 2237 2347
-3 2238 2137 2240
-3 2240 2348 2238
-3 2349 2241 2138
-3 2138 2239 2349
-3 2240 2139 2242
-3 2242 2350 2240
-3 2351 2243 2140
-3 2140 2241 2351
-3 2242 2146 2249
-3 2249 2352 2242
-3 2353 2250 2147
-3 2147 2243 2353
-3 2244 2141 2197
-3 2197 2354 2244
-3 2244 2355 2245
-3 2245 2142 2244
-3 2245 2356 2246
-3 2246 2143 2245
-3 2144 2246 2357
-3 2357 2247 2144
-3 2145 2247 2358
-3 2358 2248 2145
-3 2249 2248 2358
-3 2359 2360 2251
-3 2251 2250 2359
-3 2251 2266 2168
-3 2168 2148 2251
-3 2259 2361 2155
-3 2155 2154 2259
-3 2263 2362 2163
-3 2163 2161 2263
-3 2264 2363 2166
-3 2166 2162 2264
-3 2265 2364 2256
-3 2256 2165 2265
-3 2365 2267 2169
-3 2169 2266 2365
-3 2366 2367 2268
-3 2268 2267 2366
-3 2268 2368 2269
-3 2269 2170 2268
-3 2269 2369 2270
-3 2270 2171 2269
-3 2270 2370 2271
-3 2271 2172 2270
-3 2271 2371 2272
-3 2272 2173 2271
-3 2272 2372 2273
-3 2273 2174 2272
-3 2273 2373 2274
-3 2274 2175 2273
-3 2274 2374 2275
-3 2275 2176 2274
-3 2275 2375 2276
-3 2276 2177 2275
-3 2276 2376 2277
-3 2277 2178 2276
-3 2277 2377 2278
-3 2278 2179 2277
-3 2278 2378 2279
-3 2279 2180 2278
-3 2279 2379 2280
-3 2280 2181 2279
-3 2280 2380 2281
-3 2281 2182 2280
-3 2281 2381 2282
-3 2282 2183 2281
-3 2282 2382 2283
-3 2283 2184 2282
-3 2283 2383 2284
-3 2284 2185 2283
-3 2284 2384 2285
-3 2285 2186 2284
-3 2285 2385 2386
-3 2386 2286 2285
-3 2187 2286 2387
-3 2387 2287 2187
-3 2188 2287 2388
-3 2388 2288 2188
-3 2189 2288 2389
-3 2389 2289 2189
-3 2190 2289 2390
-3 2390 2290 2190
-3 2191 2290 2391
-3 2391 2291 2191
-3 2192 2291 2392
-3 2392 2292 2192
-3 2193 2292 2393
-3 2393 2293 2193
-3 2293 2394 2294
-3 2294 2194 2293
-3 2294 2395 2295
-3 2295 2195 2294
-3 2295 2396 2296
-3 2296 2196 2295
-3 2210 2397 2303
-3 2303 2206 2210
-3 2303 2398 2304
-3 2304 2207 2303
-3 2304 2399 2305
-3 2305 2208 2304
-3 2317 2400 2318
-3 2318 2209 2317
-3 2401 2319 2320
-3 2320 2402 2401
-3 2403 2321 2211
-3 2211 2319 2403
-3 2320 2212 2322
-3 2322 2404 2320
-3 2405 2323 2213
-3 2213 2321 2405
-3 2322 2214 2324
-3 2324 2406 2322
-3 2407 2325 2215
-3 2215 2323 2407
-3 2324 2216 2326
-3 2326 2408 2324
-3 2409 2327 2217
-3 2217 2325 2409
-3 2326 2218 2328
-3 2328 2410 2326
-3 2411 2329 2219
-3 2219 2327 2411
-3 2328 2220 2330
-3 2330 2412 2328
-3 2413 2331 2221
-3 2221 2329 2413
-3 2330 2224 2334
-3 2334 2414 2330
-3 2415 2416 2332
-3 2332 2331 2415
-3 2334 2333 2417
-3 2417 2418 2334
-3 2419 2337 2227
-3 2227 2335 2419
-3 2336 2228 2338
-3 2338 2420 2336
-3 2421 2339 2229
-3 2229 2337 2421
-3 2338 2230 2340
-3 2340 2422 2338
-3 2423 2341 2231
-3 2231 2339 2423
-3 2340 2232 2342
-3 2342 2424 2340
-3 2425 2343 2233
-3 2233 2341 2425
-3 2342 2234 2344
-3 2344 2426 2342
-3 2427 2345 2235
-3 2235 2343 2427
-3 2344 2236 2346
-3 2346 2428 2344
-3 2429 2347 2237
-3 2237 2345 2429
-3 2346 2238 2348
-3 2348 2430 2346
-3 2431 2349 2239
-3 2239 2347 2431
-3 2348 2240 2350
-3 2350 2432 2348
-3 2433 2351 2241
-3 2241 2349 2433
-3 2350 2242 2352
-3 2352 2434 2350
-3 2435 2353 2243
-3 2243 2351 2435
-3 2434 2352 2249
-3 2249 2358 2434
-3 2436 2359 2250
-3 2250 2353 2436
-3 2354 2197 2198
-3 2198 2437 2354
-3 2354 2438 2355
-3 2355 2244 2354
-3 2355 2439 2356
-3 2356 2245 2355
-3 2356 2440 2357
-3 2357 2246 2356
-3 2247 2357 2441
-3 2441 2358 2247
-3 2442 2443 2360
-3 2360 2359 2442
-3 2360 2365 2266
-3 2266 2251 2360
-3 2364 2444 2253
-3 2253 2256 2364
-3 2444 2150 2045
-3 2045 2253 2444
-3 2445 2446 2151
-3 2151 2150 2445
-3 2446 2447 2153
-3 2153 2151 2446
-3 2447 2257 2050
-3 2050 2153 2447
-3 2258 2257 2448
-3 2448 2449 2258
-3 2259 2258 2449
-3 2449 2450 2259
-3 2361 2259 2450
-3 2450 2451 2361
-3 2361 2261 2053
-3 2053 2155 2361
-3 2156 2260 2452
-3 2452 2453 2156
-3 2260 2261 2454
-3 2454 2452 2260
-3 2263 2262 2455
-3 2455 2456 2263
-3 2453 2157 1960
-3 1960 2156 2453
-3 2457 2458 2158
-3 2158 2157 2457
-3 2458 2459 2159
-3 2159 2158 2458
-3 2459 2460 2160
-3 2160 2159 2459
-3 2460 2455 2262
-3 2262 2160 2460
-3 2362 2263 2456
-3 2456 2461 2362
-3 2362 2462 2164
-3 2164 2163 2362
-3 2363 2264 2463
-3 2463 2464 2363
-3 2462 2463 2264
-3 2264 2164 2462
-3 2364 2265 2465
-3 2465 2466 2364
-3 2363 2467 2167
-3 2167 2166 2363
-3 2467 2465 2265
-3 2265 2167 2467
-3 2468 2366 2267
-3 2267 2365 2468
-3 2469 2470 2367
-3 2367 2366 2469
-3 2367 2471 2368
-3 2368 2268 2367
-3 2368 2472 2369
-3 2369 2269 2368
-3 2369 2473 2370
-3 2370 2270 2369
-3 2370 2474 2371
-3 2371 2271 2370
-3 2371 2475 2372
-3 2372 2272 2371
-3 2372 2476 2373
-3 2373 2273 2372
-3 2373 2477 2374
-3 2374 2274 2373
-3 2374 2478 2375
-3 2375 2275 2374
-3 2375 2479 2376
-3 2376 2276 2375
-3 2376 2480 2377
-3 2377 2277 2376
-3 2377 2481 2378
-3 2378 2278 2377
-3 2378 2482 2379
-3 2379 2279 2378
-3 2379 2483 2380
-3 2380 2280 2379
-3 2380 2484 2381
-3 2381 2281 2380
-3 2381 2485 2382
-3 2382 2282 2381
-3 2382 2486 2383
-3 2383 2283 2382
-3 2383 2487 2384
-3 2384 2284 2383
-3 2384 2488 2385
-3 2385 2285 2384
-3 2385 2489 2490
-3 2490 2386 2385
-3 2286 2386 2491
-3 2491 2387 2286
-3 2287 2387 2492
-3 2492 2388 2287
-3 2288 2388 2493
-3 2493 2389 2288
-3 2289 2389 2494
-3 2494 2390 2289
-3 2290 2390 2495
-3 2495 2391 2290
-3 2291 2391 2496
-3 2496 2392 2291
-3 2292 2392 2497
-3 2497 2393 2292
-3 2293 2393 2498
-3 2498 2394 2293
-3 2394 2499 2395
-3 2395 2294 2394
-3 2395 2500 2396
-3 2396 2295 2395
-3 2396 2501 2502
-3 2502 2296 2396
-3 2437 2198 2199
-3 2199 2503 2437
-3 2503 2199 2200
-3 2200 2504 2503
-3 2504 2200 2201
-3 2201 2505 2504
-3 2505 2201 2202
-3 2202 2506 2505
-3 2506 2202 2296
-3 2296 2502 2506
-3 2090 2297 2305
-3 2305 2298 2090
-3 2091 2298 2507
-3 2507 2299 2091
-3 2092 2299 2508
-3 2508 2300 2092
-3 2203 2300 2509
-3 2509 2510 2203
-3 2510 2511 2204
-3 2204 2203 2510
-3 2511 2301 2093
-3 2093 2204 2511
-3 2205 2301 2512
-3 2512 2513 2205
-3 2513 2302 2094
-3 2094 2205 2513
-3 2397 2210 2318
-3 2318 2514 2397
-3 2397 2515 2398
-3 2398 2303 2397
-3 2398 2516 2399
-3 2399 2304 2398
-3 2399 2507 2298
-3 2298 2305 2399
-3 2517 2306 2098
-3 2098 2302 2517
-3 2518 2519 2307
-3 2307 2306 2518
-3 2519 2520 2308
-3 2308 2307 2519
-3 2520 2521 2309
-3 2309 2308 2520
-3 2310 2309 2521
-3 2521 2522 2310
-3 2311 2310 2522
-3 2522 2523 2311
-3 2312 2311 2523
-3 2523 2524 2312
-3 2524 2525 2313
-3 2313 2312 2524
-3 2525 2526 2314
-3 2314 2313 2525
-3 2526 2527 2315
-3 2315 2314 2526
-3 2316 2315 2527
-3 2527 2528 2316
-3 2317 2316 2528
-3 2528 2529 2317
-3 2400 2317 2529
-3 2529 2530 2400
-3 2400 2531 2514
-3 2514 2318 2400
-3 2532 2401 2402
-3 2402 2533 2532
-3 2534 2403 2319
-3 2319 2401 2534
-3 2402 2320 2404
-3 2404 2535 2402
-3 2536 2405 2321
-3 2321 2403 2536
-3 2404 2322 2406
-3 2406 2537 2404
-3 2538 2407 2323
-3 2323 2405 2538
-3 2406 2324 2408
-3 2408 2539 2406
-3 2540 2409 2325
-3 2325 2407 2540
-3 2408 2326 2410
-3 2410 2541 2408
-3 2542 2411 2327
-3 2327 2409 2542
-3 2410 2328 2412
-3 2412 2543 2410
-3 2544 2413 2329
-3 2329 2411 2544
-3 2412 2330 2414
-3 2414 2545 2412
-3 2546 2415 2331
-3 2331 2413 2546
-3 2414 2334 2418
-3 2418 2547 2414
-3 2548 2549 2416
-3 2416 2415 2548
-3 2418 2417 2550
-3 2550 2551 2418
-3 2552 2421 2337
-3 2337 2419 2552
-3 2420 2338 2422
-3 2422 2553 2420
-3 2554 2423 2339
-3 2339 2421 2554
-3 2422 2340 2424
-3 2424 2555 2422
-3 2556 2425 2341
-3 2341 2423 2556
-3 2424 2342 2426
-3 2426 2557 2424
-3 2558 2427 2343
-3 2343 2425 2558
-3 2426 2344 2428
-3 2428 2559 2426
-3 2560 2429 2345
-3 2345 2427 2560
-3 2428 2346 2430
-3 2430 2561 2428
-3 2562 2431 2347
-3 2347 2429 2562
-3 2430 2348 2432
-3 2432 2563 2430
-3 2564 2433 2349
-3 2349 2431 2564
-3 2432 2350 2434
-3 2434 2565 2432
-3 2566 2435 2351
-3 2351 2433 2566
-3 2567 2436 2353
-3 2353 2435 2567
-3 2568 1110 1111
-3 2358 1176 1175
-3 2568 1127 1110
-3 2358 1175 1177
-3 2568 1141 1127
-3 2358 1177 1173
-3 2568 2434 1141
-3 2358 1173 1168
-3 2434 1152 1141
-3 2358 1168 1161
-3 2434 1161 1152
-3 2434 2358 1161
-3 2569 2442 2359
-3 2359 2436 2569
-3 2437 2570 2438
-3 2438 2354 2437
-3 2438 2571 2439
-3 2439 2355 2438
-3 2439 2572 2440
-3 2440 2356 2439
-3 2440 2573 2441
-3 2441 2357 2440
-3 2358 2441 2573
-3 2573 2574 2358
-3 2575 2576 2443
-3 2443 2442 2575
-3 2443 2468 2365
-3 2365 2360 2443
-3 2444 2364 2466
-3 2466 2577 2444
-3 2150 2444 2577
-3 2577 2445 2150
-3 2446 2445 2578
-3 2578 2579 2446
-3 2447 2446 2579
-3 2579 2580 2447
-3 2257 2447 2580
-3 2580 2448 2257
-3 2451 2454 2261
-3 2261 2361 2451
-3 2157 2453 2581
-3 2581 2457 2157
-3 2458 2457 2582
-3 2582 2583 2458
-3 2459 2458 2583
-3 2583 2584 2459
-3 2460 2459 2584
-3 2584 2585 2460
-3 2455 2460 2585
-3 2585 2586 2455
-3 2456 2455 2586
-3 2586 2587 2456
-3 2461 2588 2462
-3 2462 2362 2461
-3 2464 2589 2467
-3 2467 2363 2464
-3 2463 2462 2588
-3 2588 2590 2463
-3 2464 2463 2590
-3 2590 2591 2464
-3 2465 2467 2589
-3 2589 2592 2465
-3 2466 2465 2592
-3 2592 2593 2466
-3 2594 2469 2366
-3 2366 2468 2594
-3 2595 2596 2470
-3 2470 2469 2595
-3 2470 2597 2471
-3 2471 2367 2470
-3 2471 2598 2472
-3 2472 2368 2471
-3 2472 2599 2473
-3 2473 2369 2472
-3 2473 2600 2474
-3 2474 2370 2473
-3 2474 2601 2475
-3 2475 2371 2474
-3 2475 2602 2476
-3 2476 2372 2475
-3 2476 2603 2477
-3 2477 2373 2476
-3 2477 2604 2478
-3 2478 2374 2477
-3 2478 2605 2479
-3 2479 2375 2478
-3 2479 2606 2480
-3 2480 2376 2479
-3 2480 2607 2481
-3 2481 2377 2480
-3 2481 2608 2482
-3 2482 2378 2481
-3 2482 2609 2483
-3 2483 2379 2482
-3 2483 2610 2484
-3 2484 2380 2483
-3 2484 2611 2485
-3 2485 2381 2484
-3 2485 2612 2486
-3 2486 2382 2485
-3 2486 2613 2487
-3 2487 2383 2486
-3 2487 2614 2488
-3 2488 2384 2487
-3 2488 2615 2489
-3 2489 2385 2488
-3 2489 2616 2617
-3 2617 2490 2489
-3 2386 2490 2618
-3 2618 2491 2386
-3 2387 2491 2619
-3 2619 2492 2387
-3 2388 2492 2620
-3 2620 2493 2388
-3 2389 2493 2621
-3 2621 2494 2389
-3 2390 2494 2622
-3 2622 2495 2390
-3 2391 2495 2623
-3 2623 2496 2391
-3 2392 2496 2624
-3 2624 2497 2392
-3 2393 2497 2625
-3 2625 2498 2393
-3 2394 2498 2626
-3 2626 2499 2394
-3 2499 2627 2500
-3 2500 2395 2499
-3 2500 2628 2501
-3 2501 2396 2500
-3 2503 2629 2570
-3 2570 2437 2503
-3 2504 2630 2629
-3 2629 2503 2504
-3 2505 2631 2630
-3 2630 2504 2505
-3 2506 2632 2631
-3 2631 2505 2506
-3 2502 2633 2632
-3 2632 2506 2502
-3 2501 2634 2633
-3 2633 2502 2501
-3 2511 2510 2635
-3 2635 2636 2511
-3 2301 2511 2636
-3 2636 2512 2301
-3 2302 2513 2637
-3 2637 2517 2302
-3 2514 2638 2515
-3 2515 2397 2514
-3 2515 2639 2516
-3 2516 2398 2515
-3 2516 2640 2507
-3 2507 2399 2516
-3 2306 2517 2641
-3 2641 2518 2306
-3 2519 2518 2642
-3 2642 2643 2519
-3 2520 2519 2643
-3 2643 2644 2520
-3 2521 2520 2644
-3 2644 2645 2521
-3 2525 2524 2646
-3 2646 2647 2525
-3 2526 2525 2647
-3 2647 2648 2526
-3 2527 2526 2648
-3 2648 2649 2527
-3 2530 2650 2531
-3 2531 2400 2530
-3 2531 2651 2638
-3 2638 2514 2531
-3 2652 2532 2533
-3 2533 2653 2652
-3 2654 2534 2401
-3 2401 2532 2654
-3 2533 2402 2535
-3 2535 2655 2533
-3 2656 2536 2403
-3 2403 2534 2656
-3 2535 2404 2537
-3 2537 2657 2535
-3 2658 2538 2405
-3 2405 2536 2658
-3 2537 2406 2539
-3 2539 2659 2537
-3 2660 2540 2407
-3 2407 2538 2660
-3 2539 2408 2541
-3 2541 2661 2539
-3 2662 2542 2409
-3 2409 2540 2662
-3 2541 2410 2543
-3 2543 2663 2541
-3 2664 2544 2411
-3 2411 2542 2664
-3 2543 2412 2545
-3 2545 2665 2543
-3 2666 2546 2413
-3 2413 2544 2666
-3 2545 2414 2547
-3 2547 2667 2545
-3 2668 2548 2415
-3 2415 2546 2668
-3 2547 2418 2551
-3 2551 2669 2547
-3 2670 2671 2549
-3 2549 2548 2670
-3 2551 2550 2672
-3 2672 2673 2551
-3 2674 2554 2421
-3 2421 2552 2674
-3 2553 2422 2555
-3 2555 2675 2553
-3 2676 2556 2423
-3 2423 2554 2676
-3 2555 2424 2557
-3 2557 2677 2555
-3 2678 2558 2425
-3 2425 2556 2678
-3 2557 2426 2559
-3 2559 2679 2557
-3 2680 2560 2427
-3 2427 2558 2680
-3 2559 2428 2561
-3 2561 2681 2559
-3 2682 2562 2429
-3 2429 2560 2682
-3 2561 2430 2563
-3 2563 2683 2561
-3 2684 2564 2431
-3 2431 2562 2684
-3 2563 2432 2565
-3 2565 2685 2563
-3 2686 2566 2433
-3 2433 2564 2686
-3 2685 2565 2434
-3 2687 2567 2435
-3 2435 2566 2687
-3 2688 2569 2436
-3 2436 2567 2688
-3 2568 1111 1091
-3 1091 1092 2568
-3 2568 2689 2685
-3 2685 2434 2568
-3 2358 1172 1176
-3 2690 1140 1139
-3 2358 1167 1172
-3 2690 1139 1151
-3 2358 2574 1167
-3 2690 1151 1160
-3 2574 1160 1167
-3 2574 2690 1160
-3 2691 2575 2442
-3 2442 2569 2691
-3 2570 2692 2571
-3 2571 2438 2570
-3 2571 2693 2572
-3 2572 2439 2571
-3 2572 2694 2573
-3 2573 2440 2572
-3 2573 2694 2574
-3 2695 2696 2576
-3 2576 2575 2695
-3 2576 2594 2468
-3 2468 2443 2576
-3 2449 2448 2697
-3 2697 2698 2449
-3 2450 2449 2698
-3 2698 2699 2450
-3 2451 2450 2699
-3 2699 2700 2451
-3 2454 2451 2700
-3 2700 2701 2454
-3 2453 2452 2702
-3 2702 2581 2453
-3 2452 2454 2701
-3 2701 2702 2452
-3 2461 2456 2587
-3 2587 2703 2461
-3 2588 2461 2703
-3 2703 2704 2588
-3 2589 2464 2591
-3 2591 2705 2589
-3 2577 2466 2593
-3 2593 2706 2577
-3 2707 2595 2469
-3 2469 2594 2707
-3 2708 2709 2596
-3 2596 2595 2708
-3 2596 2710 2597
-3 2597 2470 2596
-3 2597 2711 2598
-3 2598 2471 2597
-3 2598 2712 2599
-3 2599 2472 2598
-3 2599 2713 2600
-3 2600 2473 2599
-3 2600 2714 2601
-3 2601 2474 2600
-3 2601 2715 2602
-3 2602 2475 2601
-3 2602 2716 2603
-3 2603 2476 2602
-3 2603 2717 2604
-3 2604 2477 2603
-3 2604 2718 2605
-3 2605 2478 2604
-3 2605 2719 2606
-3 2606 2479 2605
-3 2606 2720 2607
-3 2607 2480 2606
-3 2607 2721 2608
-3 2608 2481 2607
-3 2608 2722 2609
-3 2609 2482 2608
-3 2609 2723 2610
-3 2610 2483 2609
-3 2610 2724 2611
-3 2611 2484 2610
-3 2611 2725 2612
-3 2612 2485 2611
-3 2612 2726 2613
-3 2613 2486 2612
-3 2613 2727 2614
-3 2614 2487 2613
-3 2614 2728 2615
-3 2615 2488 2614
-3 2615 2729 2616
-3 2616 2489 2615
-3 2616 2730 2731
-3 2731 2617 2616
-3 2490 2617 2732
-3 2732 2618 2490
-3 2491 2618 2733
-3 2733 2619 2491
-3 2492 2619 2734
-3 2734 2620 2492
-3 2493 2620 2735
-3 2735 2621 2493
-3 2494 2621 2736
-3 2736 2622 2494
-3 2495 2622 2737
-3 2737 2623 2495
-3 2496 2623 2738
-3 2738 2624 2496
-3 2497 2624 2739
-3 2739 2625 2497
-3 2498 2625 2740
-3 2740 2626 2498
-3 2499 2626 2741
-3 2741 2627 2499
-3 2628 2500 2627
-3 2627 2742 2628
-3 2628 2743 2634
-3 2634 2501 2628
-3 2299 2507 2640
-3 2640 2508 2299
-3 2300 2508 2744
-3 2744 2509 2300
-3 2510 2509 2745
-3 2745 2635 2510
-3 2513 2512 2746
-3 2746 2637 2513
-3 2638 2747 2639
-3 2639 2515 2638
-3 2639 2748 2640
-3 2640 2516 2639
-3 2645 2749 2522
-3 2522 2521 2645
-3 2523 2522 2749
-3 2749 2750 2523
-3 2524 2523 2750
-3 2750 2646 2524
-3 2649 2751 2528
-3 2528 2527 2649
-3 2529 2528 2751
-3 2751 2752 2529
-3 2530 2529 2752
-3 2752 2753 2530
-3 2650 2530 2753
-3 2753 2754 2650
-3 2650 2755 2651
-3 2651 2531 2650
-3 2651 2756 2747
-3 2747 2638 2651
-3 2757 2652 2653
-3 2653 2758 2757
-3 2759 2654 2532
-3 2532 2652 2759
-3 2653 2533 2655
-3 2655 2760 2653
-3 2761 2656 2534
-3 2534 2654 2761
-3 2655 2535 2657
-3 2657 2762 2655
-3 2763 2658 2536
-3 2536 2656 2763
-3 2657 2537 2659
-3 2659 2764 2657
-3 2765 2660 2538
-3 2538 2658 2765
-3 2659 2539 2661
-3 2661 2766 2659
-3 2767 2662 2540
-3 2540 2660 2767
-3 2661 2541 2663
-3 2663 2768 2661
-3 2769 2664 2542
-3 2542 2662 2769
-3 2663 2543 2665
-3 2665 2770 2663
-3 2771 2666 2544
-3 2544 2664 2771
-3 2665 2545 2667
-3 2667 2772 2665
-3 2773 2668 2546
-3 2546 2666 2773
-3 2667 2547 2669
-3 2669 2774 2667
-3 2775 2670 2548
-3 2548 2668 2775
-3 2669 2551 2673
-3 2673 2776 2669
-3 2777 2778 2671
-3 2671 2670 2777
-3 2673 2672 2779
-3 2779 2780 2673
-3 2781 2676 2554
-3 2554 2674 2781
-3 2675 2555 2677
-3 2677 2782 2675
-3 2783 2678 2556
-3 2556 2676 2783
-3 2677 2557 2679
-3 2679 2784 2677
-3 2785 2680 2558
-3 2558 2678 2785
-3 2679 2559 2681
-3 2681 2786 2679
-3 2787 2682 2560
-3 2560 2680 2787
-3 2681 2561 2683
-3 2683 2788 2681
-3 2789 2684 2562
-3 2562 2682 2789
-3 2683 2563 2685
-3 2685 2689 2683
-3 2790 2686 2564
-3 2564 2684 2790
-3 2791 2687 2566
-3 2566 2686 2791
-3 2792 2688 2567
-3 2567 2687 2792
-3 2793 2691 2569
-3 2569 2688 2793
-3 2794 838 839
-3 2568 1092 1072
-3 2794 876 838
-3 2568 1072 1050
-3 2794 909 876
-3 2568 1050 1051
-3 2794 940 909
-3 2795 2796 1026
-3 2794 971 940
-3 2795 1026 1000
-3 2794 2795 971
-3 2795 1000 971
-3 2788 2683 2689
-3 2689 2568 2788
-3 2574 2797 2798
-3 2798 2690 2574
-3 1140 2690 1126
-3 1126 1125 1140
-3 2799 2695 2575
-3 2575 2691 2799
-3 2629 2800 2692
-3 2692 2570 2629
-3 2692 2801 2693
-3 2693 2571 2692
-3 2693 2574 2694
-3 2694 2572 2693
-3 2802 2803 2696
-3 2696 2695 2802
-3 2696 2707 2594
-3 2594 2576 2696
-3 2445 2577 2706
-3 2706 2578 2445
-3 2579 2578 2804
-3 2804 2805 2579
-3 2580 2579 2805
-3 2805 2806 2580
-3 2448 2580 2806
-3 2806 2697 2448
-3 2457 2581 2807
-3 2807 2582 2457
-3 2583 2582 2808
-3 2808 2809 2583
-3 2584 2583 2809
-3 2809 2810 2584
-3 2585 2584 2810
-3 2810 2811 2585
-3 2586 2585 2811
-3 2811 2812 2586
-3 2587 2586 2812
-3 2812 2813 2587
-3 2703 2587 2813
-3 2813 2814 2703
-3 2704 2815 2590
-3 2590 2588 2704
-3 2705 2816 2592
-3 2592 2589 2705
-3 2591 2590 2815
-3 2815 2817 2591
-3 2705 2591 2817
-3 2817 2818 2705
-3 2593 2592 2816
-3 2816 2819 2593
-3 2706 2593 2819
-3 2819 2820 2706
-3 2821 2708 2595
-3 2595 2707 2821
-3 2822 2823 2709
-3 2709 2708 2822
-3 2709 2824 2710
-3 2710 2596 2709
-3 2710 2825 2711
-3 2711 2597 2710
-3 2711 2826 2712
-3 2712 2598 2711
-3 2712 2827 2713
-3 2713 2599 2712
-3 2713 2828 2714
-3 2714 2600 2713
-3 2714 2829 2715
-3 2715 2601 2714
-3 2715 2830 2716
-3 2716 2602 2715
-3 2716 2831 2717
-3 2717 2603 2716
-3 2717 2832 2718
-3 2718 2604 2717
-3 2718 2833 2719
-3 2719 2605 2718
-3 2719 2834 2720
-3 2720 2606 2719
-3 2720 2835 2721
-3 2721 2607 2720
-3 2721 2836 2722
-3 2722 2608 2721
-3 2722 2837 2723
-3 2723 2609 2722
-3 2723 2838 2724
-3 2724 2610 2723
-3 2724 2839 2725
-3 2725 2611 2724
-3 2725 2840 2726
-3 2726 2612 2725
-3 2726 2841 2727
-3 2727 2613 2726
-3 2727 2842 2728
-3 2728 2614 2727
-3 2728 2843 2729
-3 2729 2615 2728
-3 2729 2844 2730
-3 2730 2616 2729
-3 2730 2845 2846
-3 2846 2731 2730
-3 2617 2731 2847
-3 2847 2732 2617
-3 2618 2732 2848
-3 2848 2733 2618
-3 2619 2733 2849
-3 2849 2734 2619
-3 2620 2734 2850
-3 2850 2735 2620
-3 2621 2735 2851
-3 2851 2736 2621
-3 2622 2736 2852
-3 2852 2737 2622
-3 2623 2737 2853
-3 2853 2738 2623
-3 2624 2738 2854
-3 2854 2739 2624
-3 2625 2739 2855
-3 2855 2740 2625
-3 2626 2740 2856
-3 2856 2741 2626
-3 2627 2741 2857
-3 2857 2742 2627
-3 2742 2858 2743
-3 2743 2628 2742
-3 2630 2859 2800
-3 2800 2629 2630
-3 2631 2860 2859
-3 2859 2630 2631
-3 2632 2861 2860
-3 2860 2631 2632
-3 2633 2862 2861
-3 2861 2632 2633
-3 2634 2863 2862
-3 2862 2633 2634
-3 2743 2864 2863
-3 2863 2634 2743
-3 2865 2866 2636
-3 2636 2635 2865
-3 2512 2636 2866
-3 2866 2746 2512
-3 2517 2637 2867
-3 2867 2641 2517
-3 2747 2868 2748
-3 2748 2639 2747
-3 2748 2744 2508
-3 2508 2640 2748
-3 2518 2641 2869
-3 2869 2642 2518
-3 2643 2642 2870
-3 2870 2871 2643
-3 2644 2643 2871
-3 2871 2872 2644
-3 2645 2644 2872
-3 2872 2873 2645
-3 2749 2645 2873
-3 2873 2874 2749
-3 2647 2646 2875
-3 2875 2876 2647
-3 2648 2647 2876
-3 2876 2877 2648
-3 2649 2648 2877
-3 2877 2878 2649
-3 2751 2649 2878
-3 2878 2879 2751
-3 2754 2880 2755
-3 2755 2650 2754
-3 2755 2881 2756
-3 2756 2651 2755
-3 2756 2882 2868
-3 2868 2747 2756
-3 2845 2757 2758
-3 2758 2846 2845
-3 2883 2759 2652
-3 2652 2757 2883
-3 2758 2653 2760
-3 2760 2884 2758
-3 2885 2761 2654
-3 2654 2759 2885
-3 2760 2655 2762
-3 2762 2886 2760
-3 2887 2763 2656
-3 2656 2761 2887
-3 2762 2657 2764
-3 2764 2888 2762
-3 2889 2765 2658
-3 2658 2763 2889
-3 2764 2659 2766
-3 2766 2890 2764
-3 2891 2767 2660
-3 2660 2765 2891
-3 2766 2661 2768
-3 2768 2892 2766
-3 2893 2769 2662
-3 2662 2767 2893
-3 2768 2663 2770
-3 2770 2894 2768
-3 2895 2771 2664
-3 2664 2769 2895
-3 2770 2665 2772
-3 2772 2896 2770
-3 2897 2773 2666
-3 2666 2771 2897
-3 2772 2667 2774
-3 2774 2898 2772
-3 2899 2775 2668
-3 2668 2773 2899
-3 2774 2669 2776
-3 2776 2900 2774
-3 2901 2777 2670
-3 2670 2775 2901
-3 2776 2673 2780
-3 2780 2902 2776
-3 2903 2904 2778
-3 2778 2777 2903
-3 2780 2779 2905
-3 2905 2906 2780
-3 2907 2783 2676
-3 2676 2781 2907
-3 2782 2677 2784
-3 2784 2908 2782
-3 2909 2785 2678
-3 2678 2783 2909
-3 2784 2679 2786
-3 2786 2910 2784
-3 2911 2787 2680
-3 2680 2785 2911
-3 2786 2681 2788
-3 2788 2912 2786
-3 2913 2789 2682
-3 2682 2787 2913
-3 2914 2790 2684
-3 2684 2789 2914
-3 2915 2791 2686
-3 2686 2790 2915
-3 2916 2792 2687
-3 2687 2791 2916
-3 2917 2793 2688
-3 2688 2792 2917
-3 2918 2799 2691
-3 2691 2793 2918
-3 2919 667 2920
-3 2794 839 837
-3 2919 666 667
-3 2794 837 797
-3 2919 712 666
-3 2919 2794 797
-3 2919 756 712
-3 2919 797 756
-3 2794 2921 2922
-3 2922 2795 2794
-3 2795 2923 2924
-3 2924 2796 2795
-3 2912 2788 2568
-3 2568 2925 2912
-3 2574 2693 2801
-3 2801 2797 2574
-3 2797 2801 2926
-3 2926 2798 2797
-3 2798 2927 2690
-3 1126 2690 1109
-3 1109 1108 1126
-3 2928 2802 2695
-3 2695 2799 2928
-3 2800 2926 2801
-3 2801 2692 2800
-3 2929 2930 2803
-3 2803 2802 2929
-3 2803 2821 2707
-3 2707 2696 2803
-3 2698 2697 2931
-3 2931 2932 2698
-3 2699 2698 2932
-3 2932 2933 2699
-3 2700 2699 2933
-3 2933 2934 2700
-3 2701 2700 2934
-3 2934 2935 2701
-3 2702 2701 2935
-3 2935 2936 2702
-3 2581 2702 2936
-3 2936 2807 2581
-3 2704 2703 2814
-3 2814 2937 2704
-3 2815 2704 2937
-3 2937 2938 2815
-3 2816 2705 2818
-3 2818 2939 2816
-3 2578 2706 2820
-3 2820 2804 2578
-3 2940 2822 2708
-3 2708 2821 2940
-3 2941 2942 2823
-3 2823 2822 2941
-3 2823 2943 2824
-3 2824 2709 2823
-3 2824 2944 2825
-3 2825 2710 2824
-3 2825 2945 2826
-3 2826 2711 2825
-3 2826 2946 2827
-3 2827 2712 2826
-3 2827 2947 2828
-3 2828 2713 2827
-3 2828 2948 2829
-3 2829 2714 2828
-3 2829 2949 2830
-3 2830 2715 2829
-3 2830 2950 2831
-3 2831 2716 2830
-3 2831 2951 2832
-3 2832 2717 2831
-3 2832 2952 2833
-3 2833 2718 2832
-3 2833 2953 2834
-3 2834 2719 2833
-3 2834 2954 2835
-3 2835 2720 2834
-3 2835 2955 2836
-3 2836 2721 2835
-3 2836 2956 2837
-3 2837 2722 2836
-3 2837 2957 2838
-3 2838 2723 2837
-3 2838 2958 2839
-3 2839 2724 2838
-3 2839 2959 2840
-3 2840 2725 2839
-3 2840 2960 2841
-3 2841 2726 2840
-3 2841 2961 2842
-3 2842 2727 2841
-3 2842 2962 2843
-3 2843 2728 2842
-3 2843 2963 2844
-3 2844 2729 2843
-3 2844 2964 2845
-3 2845 2730 2844
-3 2731 2846 2965
-3 2965 2847 2731
-3 2732 2847 2966
-3 2966 2848 2732
-3 2733 2848 2967
-3 2967 2849 2733
-3 2734 2849 2968
-3 2968 2850 2734
-3 2735 2850 2969
-3 2969 2851 2735
-3 2736 2851 2970
-3 2970 2852 2736
-3 2737 2852 2971
-3 2971 2853 2737
-3 2738 2853 2972
-3 2972 2854 2738
-3 2739 2854 2973
-3 2973 2855 2739
-3 2740 2855 2974
-3 2974 2856 2740
-3 2741 2856 2975
-3 2975 2857 2741
-3 2742 2857 2976
-3 2976 2858 2742
-3 2858 2977 2864
-3 2864 2743 2858
-3 2509 2744 2978
-3 2978 2745 2509
-3 2979 2865 2635
-3 2635 2745 2979
-3 2866 2865 2980
-3 2980 2981 2866
-3 2637 2746 2982
-3 2982 2867 2637
-3 2868 2978 2744
-3 2744 2748 2868
-3 2874 2983 2750
-3 2750 2749 2874
-3 2646 2750 2983
-3 2983 2875 2646
-3 2879 2984 2752
-3 2752 2751 2879
-3 2753 2752 2984
-3 2984 2985 2753
-3 2754 2753 2985
-3 2985 2986 2754
-3 2880 2754 2986
-3 2986 2987 2880
-3 2880 2988 2881
-3 2881 2755 2880
-3 2881 2989 2882
-3 2882 2756 2881
-3 2964 2883 2757
-3 2757 2845 2964
-3 2846 2758 2884
-3 2884 2965 2846
-3 2990 2885 2759
-3 2759 2883 2990
-3 2884 2760 2886
-3 2886 2991 2884
-3 2992 2887 2761
-3 2761 2885 2992
-3 2886 2762 2888
-3 2888 2993 2886
-3 2994 2889 2763
-3 2763 2887 2994
-3 2888 2764 2890
-3 2890 2995 2888
-3 2996 2891 2765
-3 2765 2889 2996
-3 2890 2766 2892
-3 2892 2997 2890
-3 2998 2893 2767
-3 2767 2891 2998
-3 2892 2768 2894
-3 2894 2999 2892
-3 3000 2895 2769
-3 2769 2893 3000
-3 2894 2770 2896
-3 2896 3001 2894
-3 3002 2897 2771
-3 2771 2895 3002
-3 2896 2772 2898
-3 2898 3003 2896
-3 3004 2899 2773
-3 2773 2897 3004
-3 2898 2774 2900
-3 2900 3005 2898
-3 3006 2901 2775
-3 2775 2899 3006
-3 2900 2776 2902
-3 2902 3007 2900
-3 3008 2903 2777
-3 2777 2901 3008
-3 2902 2780 2906
-3 2906 3009 2902
-3 3010 3011 2904
-3 2904 2903 3010
-3 2906 2905 3012
-3 3012 3013 2906
-3 3014 2909 2783
-3 2783 2907 3014
-3 2908 2784 2910
-3 2910 3015 2908
-3 3016 2911 2785
-3 2785 2909 3016
-3 2910 2786 2912
-3 2912 3017 2910
-3 3018 2913 2787
-3 2787 2911 3018
-3 3019 2914 2789
-3 2789 2913 3019
-3 3020 2915 2790
-3 2790 2914 3020
-3 3021 2916 2791
-3 2791 2915 3021
-3 3022 2917 2792
-3 2792 2916 3022
-3 3023 2918 2793
-3 2793 2917 3023
-3 3024 2928 2799
-3 2799 2918 3024
-3 3025 3026 2919
-3 2919 2920 3025
-3 2919 3027 3028
-3 3028 2794 2919
-3 617 2920 667
-3 667 618 617
-3 3029 3030 2921
-3 2921 2794 3029
-3 3030 3031 2922
-3 2922 2921 3030
-3 2922 3032 2795
-3 3033 3034 2923
-3 2923 2795 3033
-3 3035 3017 3036
-3 3036 3037 3035
-3 3036 2925 2568
-3 3017 2912 2925
-3 2925 3036 3017
-3 2798 2926 3038
-3 3038 2927 2798
-3 2927 3038 3039
-3 3039 2690 2927
-3 2690 1090 1109
-3 3040 875 874
-3 2690 1071 1090
-3 3040 874 908
-3 2690 1049 1071
-3 3040 908 939
-3 2690 3041 1049
-3 3040 939 970
-3 3041 1025 1049
-3 3040 970 999
-3 3041 999 1025
-3 3041 3040 999
-3 3042 2929 2802
-3 2802 2928 3042
-3 2926 2800 2859
-3 2859 3038 2926
-3 3043 3044 2930
-3 2930 2929 3043
-3 2930 2940 2821
-3 2821 2803 2930
-3 2805 2804 3045
-3 3045 3046 2805
-3 2806 2805 3046
-3 3046 3047 2806
-3 2697 2806 3047
-3 3047 2931 2697
-3 2582 2807 3048
-3 3048 2808 2582
-3 2809 2808 2871
-3 2871 2870 2809
-3 2810 2809 2870
-3 2870 3049 2810
-3 2811 2810 3049
-3 3049 3050 2811
-3 2812 2811 3050
-3 3050 3051 2812
-3 2813 2812 3051
-3 3051 3052 2813
-3 2814 2813 3052
-3 3052 3053 2814
-3 2937 2814 3053
-3 3053 3054 2937
-3 2938 3055 2817
-3 2817 2815 2938
-3 2939 3056 2819
-3 2819 2816 2939
-3 2818 2817 3055
-3 3055 3057 2818
-3 2939 2818 3057
-3 3057 3058 2939
-3 2820 2819 3056
-3 3056 3059 2820
-3 2804 2820 3059
-3 3059 3045 2804
-3 3060 2941 2822
-3 2822 2940 3060
-3 3061 3062 2942
-3 2942 2941 3061
-3 2942 3063 2943
-3 2943 2823 2942
-3 2943 3064 2944
-3 2944 2824 2943
-3 2944 3065 2945
-3 2945 2825 2944
-3 2945 3066 2946
-3 2946 2826 2945
-3 2946 3067 2947
-3 2947 2827 2946
-3 2947 3068 2948
-3 2948 2828 2947
-3 2948 3069 2949
-3 2949 2829 2948
-3 2949 3070 2950
-3 2950 2830 2949
-3 2950 3071 2951
-3 2951 2831 2950
-3 2951 3072 2952
-3 2952 2832 2951
-3 2952 3073 2953
-3 2953 2833 2952
-3 2953 3074 2954
-3 2954 2834 2953
-3 2954 3075 2955
-3 2955 2835 2954
-3 2955 3076 2956
-3 2956 2836 2955
-3 2956 3077 2957
-3 2957 2837 2956
-3 2957 3078 2958
-3 2958 2838 2957
-3 2958 3079 2959
-3 2959 2839 2958
-3 2959 3080 2960
-3 2960 2840 2959
-3 2960 3081 2961
-3 2961 2841 2960
-3 2961 3082 2962
-3 2962 2842 2961
-3 2962 3083 2963
-3 2963 2843 2962
-3 2963 3084 2964
-3 2964 2844 2963
-3 2847 2965 3085
-3 3085 2966 2847
-3 2848 2966 3086
-3 3086 2967 2848
-3 2849 2967 3087
-3 3087 2968 2849
-3 2850 2968 3088
-3 3088 2969 2850
-3 2851 2969 3089
-3 3089 2970 2851
-3 2852 2970 3090
-3 3090 2971 2852
-3 2853 2971 3091
-3 3091 2972 2853
-3 2854 2972 3092
-3 3092 2973 2854
-3 2855 2973 3093
-3 3093 2974 2855
-3 2856 2974 3094
-3 3094 2975 2856
-3 2857 2975 3095
-3 3095 2976 2857
-3 2858 2976 3096
-3 3096 2977 2858
-3 2860 3039 3038
-3 3038 2859 2860
-3 2861 3097 3039
-3 3039 2860 2861
-3 2862 3098 3097
-3 3097 2861 2862
-3 2863 3099 3098
-3 3098 2862 2863
-3 2864 3100 3099
-3 3099 2863 2864
-3 2977 3101 3100
-3 3100 2864 2977
-3 2745 2978 3102
-3 3102 2979 2745
-3 2865 2979 3103
-3 3103 2980 2865
-3 2981 2982 2746
-3 2746 2866 2981
-3 2641 2867 3104
-3 3104 2869 2641
-3 2882 3102 2978
-3 2978 2868 2882
-3 2642 2869 3049
-3 3049 2870 2642
-3 2872 2871 2808
-3 2808 3048 2872
-3 2873 2872 3048
-3 3048 3105 2873
-3 2874 2873 3105
-3 3105 3106 2874
-3 2983 2874 3106
-3 3106 3107 2983
-3 2876 2875 3108
-3 3108 3109 2876
-3 2877 2876 3109
-3 3109 3110 2877
-3 2878 2877 3110
-3 3110 3111 2878
-3 2879 2878 3111
-3 3111 3112 2879
-3 2984 2879 3112
-3 3112 3113 2984
-3 2987 3114 2988
-3 2988 2880 2987
-3 2988 3115 2989
-3 2989 2881 2988
-3 2989 3116 3102
-3 3102 2882 2989
-3 3084 2990 2883
-3 2883 2964 3084
-3 2965 2884 2991
-3 2991 3085 2965
-3 3117 2992 2885
-3 2885 2990 3117
-3 2991 2886 2993
-3 2993 3118 2991
-3 3119 2994 2887
-3 2887 2992 3119
-3 2993 2888 2995
-3 2995 3120 2993
-3 3121 2996 2889
-3 2889 2994 3121
-3 2995 2890 2997
-3 2997 3122 2995
-3 3123 2998 2891
-3 2891 2996 3123
-3 2997 2892 2999
-3 2999 3124 2997
-3 3125 3000 2893
-3 2893 2998 3125
-3 2999 2894 3001
-3 3001 3126 2999
-3 3127 3002 2895
-3 2895 3000 3127
-3 3001 2896 3003
-3 3003 3128 3001
-3 3129 3004 2897
-3 2897 3002 3129
-3 3003 2898 3005
-3 3005 3130 3003
-3 3131 3006 2899
-3 2899 3004 3131
-3 3005 2900 3007
-3 3007 3132 3005
-3 3133 3008 2901
-3 2901 3006 3133
-3 3007 2902 3009
-3 3009 3134 3007
-3 3135 3010 2903
-3 2903 3008 3135
-3 3009 2906 3013
-3 3013 3136 3009
-3 3137 3138 3011
-3 3011 3010 3137
-3 3013 3012 3139
-3 3139 3140 3013
-3 3141 3016 2909
-3 2909 3014 3141
-3 3015 2910 3017
-3 3017 3035 3015
-3 3142 3018 2911
-3 2911 3016 3142
-3 3143 3019 2913
-3 2913 3018 3143
-3 3144 3020 2914
-3 2914 3019 3144
-3 3145 3021 2915
-3 2915 3020 3145
-3 3146 3022 2916
-3 2916 3021 3146
-3 3147 3023 2917
-3 2917 3022 3147
-3 3148 3024 2918
-3 2918 3023 3148
-3 3149 3042 2928
-3 2928 3024 3149
-3 3150 3025 2920
-3 3151 3152 3026
-3 3026 3025 3151
-3 3152 3153 2919
-3 2919 3026 3152
-3 3153 3154 3027
-3 3027 2919 3153
-3 3154 3155 3028
-3 3028 3027 3154
-3 3028 3156 2794
-3 616 2920 617
-3 617 614 616
-3 3157 3029 2794
-3 2794 3156 3157
-3 3158 3159 3030
-3 3030 3029 3158
-3 3159 3160 3031
-3 3031 3030 3159
-3 3031 3161 3032
-3 3032 2922 3031
-3 3161 3033 2795
-3 2795 3032 3161
-3 3140 3139 3034
-3 3034 3033 3140
-3 2690 3162 3163
-3 3163 3041 2690
-3 3041 3164 3165
-3 3165 3040 3041
-3 3040 836 875
-3 2920 665 664
-3 3040 796 836
-3 2920 664 711
-3 3040 3166 796
-3 3166 2920 711
-3 3166 755 796
-3 3166 711 755
-3 3167 3043 2929
-3 2929 3042 3167
-3 3168 3169 3044
-3 3044 3043 3168
-3 3044 3060 2940
-3 2940 2930 3044
-3 2932 2931 3110
-3 3110 3109 2932
-3 2933 2932 3109
-3 3109 3108 2933
-3 2934 2933 3108
-3 3108 3107 2934
-3 2935 2934 3107
-3 3107 3106 2935
-3 2936 2935 3106
-3 3106 3105 2936
-3 2807 2936 3105
-3 3105 3048 2807
-3 2938 2937 3054
-3 3054 3170 2938
-3 3055 2938 3170
-3 3170 3171 3055
-3 3056 2939 3058
-3 3058 3172 3056
-3 3173 3061 2941
-3 2941 3060 3173
-3 3174 3175 3062
-3 3062 3061 3174
-3 3062 3176 3063
-3 3063 2942 3062
-3 3063 3177 3064
-3 3064 2943 3063
-3 3064 3178 3065
-3 3065 2944 3064
-3 3065 3179 3066
-3 3066 2945 3065
-3 3066 3180 3067
-3 3067 2946 3066
-3 3067 3181 3068
-3 3068 2947 3067
-3 3068 3182 3069
-3 3069 2948 3068
-3 3069 3183 3070
-3 3070 2949 3069
-3 3070 3184 3071
-3 3071 2950 3070
-3 3071 3185 3072
-3 3072 2951 3071
-3 3072 3186 3073
-3 3073 2952 3072
-3 3073 3187 3074
-3 3074 2953 3073
-3 3074 3188 3075
-3 3075 2954 3074
-3 3075 3189 3076
-3 3076 2955 3075
-3 3076 3190 3077
-3 3077 2956 3076
-3 3077 3191 3078
-3 3078 2957 3077
-3 3078 3192 3079
-3 3079 2958 3078
-3 3079 3193 3080
-3 3080 2959 3079
-3 3080 3194 3081
-3 3081 2960 3080
-3 3081 3195 3082
-3 3082 2961 3081
-3 3083 3196 3084
-3 3084 2963 3083
-3 2966 3085 3197
-3 3197 3086 2966
-3 2967 3086 3198
-3 3198 3087 2967
-3 2968 3087 3199
-3 3199 3088 2968
-3 2969 3088 3200
-3 3200 3089 2969
-3 2970 3089 3201
-3 3201 3090 2970
-3 2971 3090 3202
-3 3202 3091 2971
-3 2972 3091 3203
-3 3203 3092 2972
-3 2973 3092 3204
-3 3204 3093 2973
-3 2974 3093 3205
-3 3205 3094 2974
-3 2975 3094 3206
-3 3206 3095 2975
-3 2976 3095 3207
-3 3207 3096 2976
-3 2977 3096 3208
-3 3208 3101 2977
-3 2981 2980 3209
-3 3209 3210 2981
-3 2982 2981 3210
-3 3210 3211 2982
-3 2867 2982 3211
-3 3211 3104 2867
-3 3107 3108 2875
-3 2875 2983 3107
-3 3113 3212 2985
-3 2985 2984 3113
-3 2986 2985 3212
-3 3212 3172 2986
-3 2987 2986 3172
-3 3172 3058 2987
-3 3114 2987 3058
-3 3058 3057 3114
-3 3114 3171 3115
-3 3115 2988 3114
-3 3115 3213 3116
-3 3116 2989 3115
-3 3196 3117 2990
-3 2990 3084 3196
-3 3085 2991 3118
-3 3118 3197 3085
-3 3118 2993 3120
-3 3120 3214 3118
-3 3215 3121 2994
-3 2994 3119 3215
-3 3120 2995 3122
-3 3122 3216 3120
-3 3217 3123 2996
-3 2996 3121 3217
-3 3122 2997 3124
-3 3124 3218 3122
-3 3219 3125 2998
-3 2998 3123 3219
-3 3124 2999 3126
-3 3126 3220 3124
-3 3221 3127 3000
-3 3000 3125 3221
-3 3126 3001 3128
-3 3128 3222 3126
-3 3223 3129 3002
-3 3002 3127 3223
-3 3128 3003 3130
-3 3130 3224 3128
-3 3225 3131 3004
-3 3004 3129 3225
-3 3130 3005 3132
-3 3132 3226 3130
-3 3227 3133 3006
-3 3006 3131 3227
-3 3132 3007 3134
-3 3134 3228 3132
-3 3229 3135 3008
-3 3008 3133 3229
-3 3134 3009 3136
-3 3136 3230 3134
-3 3231 3137 3010
-3 3010 3135 3231
-3 3136 3013 3140
-3 3140 3232 3136
-3 3233 3234 3138
-3 3138 3137 3233
-3 3235 3142 3016
-3 3016 3141 3235
-3 3236 3143 3018
-3 3018 3142 3236
-3 3237 3144 3019
-3 3019 3143 3237
-3 3238 3145 3020
-3 3020 3144 3238
-3 3239 3146 3021
-3 3021 3145 3239
-3 3240 3147 3022
-3 3022 3146 3240
-3 3241 3148 3023
-3 3023 3147 3241
-3 3242 3149 3024
-3 3024 3148 3242
-3 3243 3167 3042
-3 3042 3149 3243
-3 3244 3245 3150
-3 3150 2920 3244
-3 3245 3151 3025
-3 3025 3150 3245
-3 3246 3247 3152
-3 3152 3151 3246
-3 3247 3248 3153
-3 3153 3152 3247
-3 3248 3249 3154
-3 3154 3153 3248
-3 3249 3250 3155
-3 3155 3154 3249
-3 3155 3157 3156
-3 3156 3028 3155
-3 665 2920 616
-3 616 615 665
-3 3251 3158 3029
-3 3029 3157 3251
-3 3252 3253 3159
-3 3159 3158 3252
-3 3253 3230 3160
-3 3160 3159 3253
-3 3160 3232 3161
-3 3161 3031 3160
-3 3232 3140 3033
-3 3033 3161 3232
-3 2690 3039 3097
-3 3097 3162 2690
-3 3162 3097 3098
-3 3098 3163 3162
-3 3163 3254 3041
-3 3041 3100 3101
-3 3101 3164 3041
-3 3101 3208 3165
-3 3165 3164 3101
-3 3165 3255 3040
-3 3040 3256 3257
-3 3257 3166 3040
-3 3166 3258 3259
-3 3259 2920 3166
-3 3260 3168 3043
-3 3043 3167 3260
-3 3261 3262 3169
-3 3169 3168 3261
-3 3169 3173 3060
-3 3060 3044 3169
-3 3046 3045 3113
-3 3113 3112 3046
-3 3047 3046 3112
-3 3112 3111 3047
-3 2931 3047 3111
-3 3111 3110 2931
-3 3050 3049 2869
-3 2869 3104 3050
-3 3171 3114 3057
-3 3057 3055 3171
-3 3172 3212 3059
-3 3059 3056 3172
-3 3045 3059 3212
-3 3212 3113 3045
-3 3263 3174 3061
-3 3061 3173 3263
-3 3264 3265 3175
-3 3175 3174 3264
-3 3175 3266 3176
-3 3176 3062 3175
-3 3176 3267 3177
-3 3177 3063 3176
-3 3177 3268 3178
-3 3178 3064 3177
-3 3178 3269 3179
-3 3179 3065 3178
-3 3179 3270 3180
-3 3180 3066 3179
-3 3180 3271 3181
-3 3181 3067 3180
-3 3181 3272 3182
-3 3182 3068 3181
-3 3182 3273 3183
-3 3183 3069 3182
-3 3183 3274 3184
-3 3184 3070 3183
-3 3184 3275 3185
-3 3185 3071 3184
-3 3185 3276 3186
-3 3186 3072 3185
-3 3186 3277 3187
-3 3187 3073 3186
-3 3187 3278 3188
-3 3188 3074 3187
-3 3188 3279 3189
-3 3189 3075 3188
-3 3189 3280 3190
-3 3190 3076 3189
-3 3190 3281 3191
-3 3191 3077 3190
-3 3191 3282 3192
-3 3192 3078 3191
-3 3192 3283 3193
-3 3193 3079 3192
-3 3193 3284 3194
-3 3194 3080 3193
-3 3194 3285 3195
-3 3195 3081 3194
-3 3086 3197 3286
-3 3286 3198 3086
-3 3087 3198 3287
-3 3287 3199 3087
-3 3088 3199 3288
-3 3288 3200 3088
-3 3089 3200 3289
-3 3289 3201 3089
-3 3090 3201 3290
-3 3290 3202 3090
-3 3091 3202 3291
-3 3291 3203 3091
-3 3092 3203 3292
-3 3292 3204 3092
-3 3093 3204 3293
-3 3293 3205 3093
-3 3094 3205 3294
-3 3294 3206 3094
-3 3095 3206 3295
-3 3295 3207 3095
-3 3096 3207 3296
-3 3296 3208 3096
-3 2979 3102 3116
-3 3116 3103 2979
-3 3171 3170 3213
-3 3213 3115 3171
-3 3197 3118 3214
-3 3214 3286 3197
-3 3214 3120 3216
-3 3216 3297 3214
-3 3298 3217 3121
-3 3121 3215 3298
-3 3216 3122 3218
-3 3218 3299 3216
-3 3300 3219 3123
-3 3123 3217 3300
-3 3218 3124 3220
-3 3220 3301 3218
-3 3302 3221 3125
-3 3125 3219 3302
-3 3220 3126 3222
-3 3222 3303 3220
-3 3304 3223 3127
-3 3127 3221 3304
-3 3222 3128 3224
-3 3224 3305 3222
-3 3306 3225 3129
-3 3129 3223 3306
-3 3224 3130 3226
-3 3226 3307 3224
-3 3308 3227 3131
-3 3131 3225 3308
-3 3226 3132 3228
-3 3228 3309 3226
-3 3310 3229 3133
-3 3133 3227 3310
-3 3228 3134 3230
-3 3230 3253 3228
-3 3311 3231 3135
-3 3135 3229 3311
-3 3230 3136 3232
-3 3232 3160 3230
-3 3312 3233 3137
-3 3137 3231 3312
-3 3313 3314 3234
-3 3234 3233 3313
-3 3315 3236 3142
-3 3142 3235 3315
-3 3316 3237 3143
-3 3143 3236 3316
-3 3317 3238 3144
-3 3144 3237 3317
-3 3318 3239 3145
-3 3145 3238 3318
-3 3319 3240 3146
-3 3146 3239 3319
-3 3320 3241 3147
-3 3147 3240 3320
-3 3321 3242 3148
-3 3148 3241 3321
-3 3322 3243 3149
-3 3149 3242 3322
-3 3323 3260 3167
-3 3167 3243 3323
-3 3324 3244 2920
-3 2920 3325 3324
-3 3326 3327 3245
-3 3245 3244 3326
-3 3327 3246 3151
-3 3151 3245 3327
-3 3328 3329 3247
-3 3247 3246 3328
-3 3329 3330 3248
-3 3248 3247 3329
-3 3330 3331 3249
-3 3249 3248 3330
-3 3331 3332 3250
-3 3250 3249 3331
-3 3250 3251 3157
-3 3157 3155 3250
-3 3333 3252 3158
-3 3158 3251 3333
-3 3309 3228 3253
-3 3253 3252 3309
-3 3163 3098 3099
-3 3099 3254 3163
-3 3254 3099 3100
-3 3100 3041 3254
-3 3208 3296 3255
-3 3255 3165 3208
-3 3296 3334 3040
-3 3040 3255 3296
-3 3334 3335 3256
-3 3256 3040 3334
-3 3335 3336 3257
-3 3257 3256 3335
-3 3257 3337 3166
-3 3338 3339 3258
-3 3258 3166 3338
-3 3339 3340 3259
-3 3259 3258 3339
-3 3259 3325 2920
-3 3341 3261 3168
-3 3168 3260 3341
-3 3342 3343 3262
-3 3262 3261 3342
-3 3262 3263 3173
-3 3173 3169 3262
-3 3104 3211 3051
-3 3051 3050 3104
-3 3211 3210 3052
-3 3052 3051 3211
-3 3210 3209 3053
-3 3053 3052 3210
-3 3209 3344 3054
-3 3054 3053 3209
-3 3344 3213 3170
-3 3170 3054 3344
-3 3345 3264 3174
-3 3174 3263 3345
-3 3346 3347 3265
-3 3265 3264 3346
-3 3265 3348 3266
-3 3266 3175 3265
-3 3266 3349 3267
-3 3267 3176 3266
-3 3267 3350 3268
-3 3268 3177 3267
-3 3268 3351 3269
-3 3269 3178 3268
-3 3269 3352 3270
-3 3270 3179 3269
-3 3270 3353 3271
-3 3271 3180 3270
-3 3271 3354 3272
-3 3272 3181 3271
-3 3272 3355 3273
-3 3273 3182 3272
-3 3273 3356 3274
-3 3274 3183 3273
-3 3274 3357 3275
-3 3275 3184 3274
-3 3275 3358 3276
-3 3276 3185 3275
-3 3276 3359 3277
-3 3277 3186 3276
-3 3277 3360 3278
-3 3278 3187 3277
-3 3278 3361 3279
-3 3279 3188 3278
-3 3279 3362 3280
-3 3280 3189 3279
-3 3280 3363 3281
-3 3281 3190 3280
-3 3281 3364 3282
-3 3282 3191 3281
-3 3282 3365 3283
-3 3283 3192 3282
-3 3283 3366 3284
-3 3284 3193 3283
-3 3284 3367 3285
-3 3285 3194 3284
-3 3368 3285 3369
-3 3370 3195 3285
-3 3368 3371 3285
-3 3372 3370 3285
-3 3371 3373 3285
-3 3373 3372 3285
-3 3195 3370 3374
-3 3375 3082 3376
-3 3195 3374 3376
-3 3082 3195 3376
-3 3377 3378 3375
-3 3376 3379 3375
-3 3379 3377 3375
-3 3378 3082 3375
-3 3083 2962 3082
-3 3380 3381 3083
-3 3378 3380 3082
-3 3380 3083 3082
-3 3382 3383 3384
-3 3385 3196 3384
-3 3196 3083 3381
-3 3196 3382 3384
-3 3196 3381 3386
-3 3196 3386 3382
-3 3198 3286 3387
-3 3387 3287 3198
-3 3199 3287 3388
-3 3388 3288 3199
-3 3200 3288 3389
-3 3389 3289 3200
-3 3201 3289 3390
-3 3390 3290 3201
-3 3202 3290 3391
-3 3391 3291 3202
-3 3203 3291 3392
-3 3392 3292 3203
-3 3204 3292 3393
-3 3393 3293 3204
-3 3205 3293 3394
-3 3394 3294 3205
-3 3206 3294 3395
-3 3395 3295 3206
-3 3207 3295 3334
-3 3334 3296 3207
-3 3344 3209 2980
-3 2980 3103 3344
-3 3103 3116 3213
-3 3213 3344 3103
-3 3117 3396 3397
-3 3385 3398 3399
-3 3117 3399 3396
-3 3117 3196 3385
-3 3117 3385 3399
-3 3286 3214 3297
-3 3297 3387 3286
-3 3117 3397 3400
-3 3401 3402 3400
-3 3402 3119 2992
-3 2992 3117 3400
-3 3402 2992 3400
-3 3297 3216 3299
-3 3299 3403 3297
-3 3402 3215 3119
-3 3404 3405 3215
-3 3402 3406 3215
-3 3406 3404 3215
-3 3298 3407 3408
-3 3409 3410 3411
-3 3298 3411 3407
-3 3298 3215 3405
-3 3298 3409 3411
-3 3298 3405 3409
-3 3412 3300 3217
-3 3217 3298 3412
-3 3299 3218 3301
-3 3301 3413 3299
-3 3414 3302 3219
-3 3219 3300 3414
-3 3301 3220 3303
-3 3303 3415 3301
-3 3416 3304 3221
-3 3221 3302 3416
-3 3303 3222 3305
-3 3305 3417 3303
-3 3418 3306 3223
-3 3223 3304 3418
-3 3305 3224 3307
-3 3307 3419 3305
-3 3420 3308 3225
-3 3225 3306 3420
-3 3307 3226 3309
-3 3309 3421 3307
-3 3422 3310 3227
-3 3227 3308 3422
-3 3423 3311 3229
-3 3229 3310 3423
-3 3424 3312 3231
-3 3231 3311 3424
-3 3425 3313 3233
-3 3233 3312 3425
-3 3426 3427 3314
-3 3314 3313 3426
-3 3428 3316 3236
-3 3236 3315 3428
-3 3429 3317 3237
-3 3237 3316 3429
-3 3430 3318 3238
-3 3238 3317 3430
-3 3431 3319 3239
-3 3239 3318 3431
-3 3432 3320 3240
-3 3240 3319 3432
-3 3433 3321 3241
-3 3241 3320 3433
-3 3434 3322 3242
-3 3242 3321 3434
-3 3435 3323 3243
-3 3243 3322 3435
-3 3436 3341 3260
-3 3260 3323 3436
-3 3340 3324 3325
-3 3325 3259 3340
-3 3437 3326 3244
-3 3244 3324 3437
-3 3438 3439 3327
-3 3327 3326 3438
-3 3439 3328 3246
-3 3246 3327 3439
-3 3440 3441 3329
-3 3329 3328 3440
-3 3441 3442 3330
-3 3330 3329 3441
-3 3442 3443 3331
-3 3331 3330 3442
-3 3443 3444 3332
-3 3332 3331 3443
-3 3332 3333 3251
-3 3251 3250 3332
-3 3421 3309 3252
-3 3252 3333 3421
-3 3295 3395 3335
-3 3335 3334 3295
-3 3395 3445 3336
-3 3336 3335 3395
-3 3336 3446 3337
-3 3337 3257 3336
-3 3446 3338 3166
-3 3166 3337 3446
-3 3447 3448 3339
-3 3339 3338 3447
-3 3448 3449 3340
-3 3340 3339 3448
-3 3450 3342 3261
-3 3261 3341 3450
-3 3451 3452 3343
-3 3343 3342 3451
-3 3343 3345 3263
-3 3263 3262 3343
-3 3453 3346 3264
-3 3264 3345 3453
-3 3454 3455 3347
-3 3347 3346 3454
-3 3347 3456 3348
-3 3348 3265 3347
-3 3348 3457 3349
-3 3349 3266 3348
-3 3349 3458 3350
-3 3350 3267 3349
-3 3350 3459 3351
-3 3351 3268 3350
-3 3351 3460 3352
-3 3352 3269 3351
-3 3352 3461 3353
-3 3353 3270 3352
-3 3353 3462 3354
-3 3354 3271 3353
-3 3354 3463 3355
-3 3355 3272 3354
-3 3355 3464 3356
-3 3356 3273 3355
-3 3356 3465 3357
-3 3357 3274 3356
-3 3357 3466 3358
-3 3358 3275 3357
-3 3358 3467 3359
-3 3359 3276 3358
-3 3359 3468 3360
-3 3360 3277 3359
-3 3360 3469 3361
-3 3361 3278 3360
-3 3361 3470 3362
-3 3362 3279 3361
-3 3362 3471 3363
-3 3363 3280 3362
-3 3363 3472 3364
-3 3364 3281 3363
-3 3364 3473 3365
-3 3365 3282 3364
-3 3365 3474 3366
-3 3366 3283 3365
-3 3366 3475 3367
-3 3367 3284 3366
-3 3285 3476 3369
-3 3367 3477 3478
-3 3285 3478 3476
-3 3285 3367 3478
-3 3379 3374 3370
-3 3372 3479 3370
-3 3479 3379 3370
-3 3374 3379 3376
-3 3378 3377 3380
-3 3382 3480 3383
-3 3386 3480 3382
-3 3287 3387 3481
-3 3481 3388 3287
-3 3288 3388 3482
-3 3482 3389 3288
-3 3289 3389 3483
-3 3483 3390 3289
-3 3290 3390 3484
-3 3484 3391 3290
-3 3291 3391 3485
-3 3485 3392 3291
-3 3292 3392 3486
-3 3486 3393 3292
-3 3293 3393 3487
-3 3487 3394 3293
-3 3294 3394 3445
-3 3445 3395 3294
-3 3398 3488 3399
-3 3387 3297 3403
-3 3403 3481 3387
-3 3400 3489 3401
-3 3490 3406 3402
-3 3401 3489 3402
-3 3489 3490 3402
-3 3396 3488 3489
-3 3400 3397 3489
-3 3397 3396 3489
-3 3403 3299 3413
-3 3413 3491 3403
-3 3406 3490 3404
-3 3492 3298 3408
-3 3493 3412 3298
-3 3492 3494 3298
-3 3494 3493 3298
-3 3495 3414 3300
-3 3300 3412 3495
-3 3413 3301 3415
-3 3415 3496 3413
-3 3497 3416 3302
-3 3302 3414 3497
-3 3415 3303 3417
-3 3417 3498 3415
-3 3499 3418 3304
-3 3304 3416 3499
-3 3417 3305 3419
-3 3419 3500 3417
-3 3501 3420 3306
-3 3306 3418 3501
-3 3419 3307 3421
-3 3421 3444 3419
-3 3502 3422 3308
-3 3308 3420 3502
-3 3503 3423 3310
-3 3310 3422 3503
-3 3504 3424 3311
-3 3311 3423 3504
-3 3505 3425 3312
-3 3312 3424 3505
-3 3506 3426 3313
-3 3313 3425 3506
-3 3507 3508 3427
-3 3427 3426 3507
-3 3509 3429 3316
-3 3316 3428 3509
-3 3510 3430 3317
-3 3317 3429 3510
-3 3511 3431 3318
-3 3318 3430 3511
-3 3512 3432 3319
-3 3319 3431 3512
-3 3513 3433 3320
-3 3320 3432 3513
-3 3514 3434 3321
-3 3321 3433 3514
-3 3515 3435 3322
-3 3322 3434 3515
-3 3516 3436 3323
-3 3323 3435 3516
-3 3517 3450 3341
-3 3341 3436 3517
-3 3449 3437 3324
-3 3324 3340 3449
-3 3518 3438 3326
-3 3326 3437 3518
-3 3519 3520 3439
-3 3439 3438 3519
-3 3520 3440 3328
-3 3328 3439 3520
-3 3521 3522 3441
-3 3441 3440 3521
-3 3522 3523 3442
-3 3442 3441 3522
-3 3523 3500 3443
-3 3443 3442 3523
-3 3500 3419 3444
-3 3444 3443 3500
-3 3444 3421 3333
-3 3333 3332 3444
-3 3445 3524 3446
-3 3446 3336 3445
-3 3524 3447 3338
-3 3338 3446 3524
-3 3525 3526 3448
-3 3448 3447 3525
-3 3526 3527 3449
-3 3449 3448 3526
-3 3528 3451 3342
-3 3342 3450 3528
-3 3529 3530 3452
-3 3452 3451 3529
-3 3452 3453 3345
-3 3345 3343 3452
-3 3531 3454 3346
-3 3346 3453 3531
-3 3532 3533 3455
-3 3455 3454 3532
-3 3455 3534 3456
-3 3456 3347 3455
-3 3456 3535 3457
-3 3457 3348 3456
-3 3457 3536 3458
-3 3458 3349 3457
-3 3458 3537 3459
-3 3459 3350 3458
-3 3459 3538 3460
-3 3460 3351 3459
-3 3460 3539 3461
-3 3461 3352 3460
-3 3461 3540 3462
-3 3462 3353 3461
-3 3462 3541 3463
-3 3463 3354 3462
-3 3463 3542 3464
-3 3464 3355 3463
-3 3464 3543 3465
-3 3465 3356 3464
-3 3465 3544 3466
-3 3466 3357 3465
-3 3466 3545 3467
-3 3467 3358 3466
-3 3467 3546 3468
-3 3468 3359 3467
-3 3468 3547 3469
-3 3469 3360 3468
-3 3469 3548 3470
-3 3470 3361 3469
-3 3470 3549 3471
-3 3471 3362 3470
-3 3471 3550 3472
-3 3472 3363 3471
-3 3472 3551 3473
-3 3473 3364 3472
-3 3473 3552 3474
-3 3474 3365 3473
-3 3474 3553 3475
-3 3475 3366 3474
-3 3554 3367 3475
-3 3555 3477 3367
-3 3554 3556 3367
-3 3556 3555 3367
-3 3371 3557 3479
-3 3479 3373 3371
-3 3368 3557 3371
-3 3373 3479 3372
-3 3379 3558 3559
-3 3559 3377 3379
-3 3480 3560 3384
-3 3384 3383 3480
-3 3386 3377 3480
-3 3381 3380 3377
-3 3386 3381 3377
-3 3388 3481 3561
-3 3561 3482 3388
-3 3389 3482 3562
-3 3562 3483 3389
-3 3390 3483 3563
-3 3563 3484 3390
-3 3391 3484 3564
-3 3564 3485 3391
-3 3392 3485 3565
-3 3565 3486 3392
-3 3393 3486 3525
-3 3525 3487 3393
-3 3394 3487 3524
-3 3524 3445 3394
-3 3385 3488 3398
-3 3566 3567 3488
-3 3385 3566 3488
-3 3399 3488 3396
-3 3481 3403 3491
-3 3491 3561 3481
-3 3491 3413 3496
-3 3496 3568 3491
-3 3569 3409 3405
-3 3404 3490 3405
-3 3490 3569 3405
-3 3489 3570 3571
-3 3571 3490 3489
-3 3409 3569 3410
-3 3410 3569 3572
-3 3572 3411 3410
-3 3493 3495 3412
-3 3573 3574 3495
-3 3493 3575 3495
-3 3575 3573 3495
-3 3576 3497 3414
-3 3414 3495 3576
-3 3496 3415 3498
-3 3498 3577 3496
-3 3578 3499 3416
-3 3416 3497 3578
-3 3498 3417 3500
-3 3500 3523 3498
-3 3579 3501 3418
-3 3418 3499 3579
-3 3580 3502 3420
-3 3420 3501 3580
-3 3581 3503 3422
-3 3422 3502 3581
-3 3582 3504 3423
-3 3423 3503 3582
-3 3583 3505 3424
-3 3424 3504 3583
-3 3584 3506 3425
-3 3425 3505 3584
-3 3585 3507 3426
-3 3426 3506 3585
-3 3586 3587 3508
-3 3508 3507 3586
-3 3588 3510 3429
-3 3429 3509 3588
-3 3589 3511 3430
-3 3430 3510 3589
-3 3590 3512 3431
-3 3431 3511 3590
-3 3591 3513 3432
-3 3432 3512 3591
-3 3592 3514 3433
-3 3433 3513 3592
-3 3593 3515 3434
-3 3434 3514 3593
-3 3594 3516 3435
-3 3435 3515 3594
-3 3595 3517 3436
-3 3436 3516 3595
-3 3596 3528 3450
-3 3450 3517 3596
-3 3527 3518 3437
-3 3437 3449 3527
-3 3597 3519 3438
-3 3438 3518 3597
-3 3598 3599 3520
-3 3520 3519 3598
-3 3599 3521 3440
-3 3440 3520 3599
-3 3600 3577 3522
-3 3522 3521 3600
-3 3577 3498 3523
-3 3523 3522 3577
-3 3487 3525 3447
-3 3447 3524 3487
-3 3486 3565 3526
-3 3526 3525 3486
-3 3565 3601 3527
-3 3527 3526 3565
-3 3602 3529 3451
-3 3451 3528 3602
-3 3603 3604 3530
-3 3530 3529 3603
-3 3530 3531 3453
-3 3453 3452 3530
-3 3605 3532 3454
-3 3454 3531 3605
-3 3606 3607 3533
-3 3533 3532 3606
-3 3533 3608 3534
-3 3534 3455 3533
-3 3534 3609 3535
-3 3535 3456 3534
-3 3535 3610 3536
-3 3536 3457 3535
-3 3536 3611 3537
-3 3537 3458 3536
-3 3537 3612 3538
-3 3538 3459 3537
-3 3538 3613 3539
-3 3539 3460 3538
-3 3539 3614 3540
-3 3540 3461 3539
-3 3540 3615 3541
-3 3541 3462 3540
-3 3541 3616 3542
-3 3542 3463 3541
-3 3542 3617 3543
-3 3543 3464 3542
-3 3543 3618 3544
-3 3544 3465 3543
-3 3544 3619 3545
-3 3545 3466 3544
-3 3545 3620 3546
-3 3546 3467 3545
-3 3546 3621 3547
-3 3547 3468 3546
-3 3547 3622 3548
-3 3548 3469 3547
-3 3548 3623 3549
-3 3549 3470 3548
-3 3549 3624 3550
-3 3550 3471 3549
-3 3550 3625 3551
-3 3551 3472 3550
-3 3551 3626 3552
-3 3552 3473 3551
-3 3552 3627 3553
-3 3553 3474 3552
-3 3628 3553 3629
-3 3554 3475 3553
-3 3630 3631 3554
-3 3628 3630 3553
-3 3630 3554 3553
-3 3478 3632 3476
-3 3557 3633 3634
-3 3634 3479 3557
-3 3368 3632 3557
-3 3369 3476 3632
-3 3368 3369 3632
-3 3479 3634 3558
-3 3558 3379 3479
-3 3560 3480 3377
-3 3377 3559 3560
-3 3560 3566 3385
-3 3385 3384 3560
-3 3482 3561 3635
-3 3635 3562 3482
-3 3483 3562 3636
-3 3636 3563 3483
-3 3484 3563 3637
-3 3637 3564 3484
-3 3485 3564 3601
-3 3601 3565 3485
-3 3488 3567 3570
-3 3570 3489 3488
-3 3561 3491 3568
-3 3568 3635 3561
-3 3568 3496 3577
-3 3577 3600 3568
-3 3490 3571 3638
-3 3638 3569 3490
-3 3569 3638 3639
-3 3639 3572 3569
-3 3411 3572 3407
-3 3640 3492 3408
-3 3407 3572 3408
-3 3572 3640 3408
-3 3492 3640 3494
-3 3576 3641 3642
-3 3495 3574 3643
-3 3576 3643 3641
-3 3576 3495 3643
-3 3644 3578 3497
-3 3497 3576 3644
-3 3645 3579 3499
-3 3499 3578 3645
-3 3646 3580 3501
-3 3501 3579 3646
-3 3647 3581 3502
-3 3502 3580 3647
-3 3648 3582 3503
-3 3503 3581 3648
-3 3649 3583 3504
-3 3504 3582 3649
-3 3650 3584 3505
-3 3505 3583 3650
-3 3651 3585 3506
-3 3506 3584 3651
-3 3652 3586 3507
-3 3507 3585 3652
-3 3653 3654 3587
-3 3587 3586 3653
-3 3655 3589 3510
-3 3510 3588 3655
-3 3656 3590 3511
-3 3511 3589 3656
-3 3657 3591 3512
-3 3512 3590 3657
-3 3658 3592 3513
-3 3513 3591 3658
-3 3659 3593 3514
-3 3514 3592 3659
-3 3660 3594 3515
-3 3515 3593 3660
-3 3661 3595 3516
-3 3516 3594 3661
-3 3662 3596 3517
-3 3517 3595 3662
-3 3663 3602 3528
-3 3528 3596 3663
-3 3601 3597 3518
-3 3518 3527 3601
-3 3637 3598 3519
-3 3519 3597 3637
-3 3636 3664 3599
-3 3599 3598 3636
-3 3664 3600 3521
-3 3521 3599 3664
-3 3665 3603 3529
-3 3529 3602 3665
-3 3666 3667 3604
-3 3604 3603 3666
-3 3604 3605 3531
-3 3531 3530 3604
-3 3668 3606 3532
-3 3532 3605 3668
-3 3669 3670 3607
-3 3607 3606 3669
-3 3607 3671 3608
-3 3608 3533 3607
-3 3608 3672 3609
-3 3609 3534 3608
-3 3609 3673 3610
-3 3610 3535 3609
-3 3610 3674 3611
-3 3611 3536 3610
-3 3611 3675 3612
-3 3612 3537 3611
-3 3612 3676 3613
-3 3613 3538 3612
-3 3613 3677 3614
-3 3614 3539 3613
-3 3614 3678 3615
-3 3615 3540 3614
-3 3615 3679 3616
-3 3616 3541 3615
-3 3616 3680 3617
-3 3617 3542 3616
-3 3617 3681 3618
-3 3618 3543 3617
-3 3618 3682 3619
-3 3619 3544 3618
-3 3619 3683 3620
-3 3620 3545 3619
-3 3620 3684 3621
-3 3621 3546 3620
-3 3621 3685 3622
-3 3622 3547 3621
-3 3622 3686 3623
-3 3623 3548 3622
-3 3623 3687 3624
-3 3624 3549 3623
-3 3624 3688 3625
-3 3625 3550 3624
-3 3625 3689 3626
-3 3626 3551 3625
-3 3626 3690 3627
-3 3627 3552 3626
-3 3627 3629 3553
-3 3691 3692 3693
-3 3627 3693 3629
-3 3627 3694 3695
-3 3627 3691 3693
-3 3627 3695 3691
-3 3556 3696 3697
-3 3554 3631 3696
-3 3556 3554 3696
-3 3633 3557 3632
-3 3632 3698 3633
-3 3558 3699 3700
-3 3700 3559 3558
-3 3634 3701 3699
-3 3699 3558 3634
-3 3559 3700 3702
-3 3702 3560 3559
-3 3560 3702 3703
-3 3703 3566 3560
-3 3562 3635 3664
-3 3664 3636 3562
-3 3563 3636 3598
-3 3598 3637 3563
-3 3564 3637 3597
-3 3597 3601 3564
-3 3566 3703 3704
-3 3704 3567 3566
-3 3635 3568 3600
-3 3600 3664 3635
-3 3567 3704 3705
-3 3705 3570 3567
-3 3570 3705 3706
-3 3706 3571 3570
-3 3575 3640 3707
-3 3493 3494 3640
-3 3575 3493 3640
-3 3575 3707 3573
-3 3644 3708 3709
-3 3576 3642 3710
-3 3644 3711 3708
-3 3576 3710 3712
-3 3644 3712 3711
-3 3644 3576 3712
-3 3713 3645 3578
-3 3578 3644 3713
-3 3714 3646 3579
-3 3579 3645 3714
-3 3715 3647 3580
-3 3580 3646 3715
-3 3716 3648 3581
-3 3581 3647 3716
-3 3717 3649 3582
-3 3582 3648 3717
-3 3718 3650 3583
-3 3583 3649 3718
-3 3719 3651 3584
-3 3584 3650 3719
-3 3720 3652 3585
-3 3585 3651 3720
-3 3721 3653 3586
-3 3586 3652 3721
-3 3722 3723 3654
-3 3654 3653 3722
-3 3724 3656 3589
-3 3589 3655 3724
-3 3725 3657 3590
-3 3590 3656 3725
-3 3726 3658 3591
-3 3591 3657 3726
-3 3727 3659 3592
-3 3592 3658 3727
-3 3728 3660 3593
-3 3593 3659 3728
-3 3729 3661 3594
-3 3594 3660 3729
-3 3730 3662 3595
-3 3595 3661 3730
-3 3731 3663 3596
-3 3596 3662 3731
-3 3732 3665 3602
-3 3602 3663 3732
-3 3733 3666 3603
-3 3603 3665 3733
-3 3734 3735 3667
-3 3667 3666 3734
-3 3667 3668 3605
-3 3605 3604 3667
-3 3736 3669 3606
-3 3606 3668 3736
-3 3670 3669 3737
-3 3670 3738 3671
-3 3671 3607 3670
-3 3671 3739 3672
-3 3672 3608 3671
-3 3672 3740 3673
-3 3673 3609 3672
-3 3673 3741 3674
-3 3674 3610 3673
-3 3674 3742 3675
-3 3675 3611 3674
-3 3675 3743 3676
-3 3676 3612 3675
-3 3676 3744 3677
-3 3677 3613 3676
-3 3677 3745 3678
-3 3678 3614 3677
-3 3678 3746 3679
-3 3679 3615 3678
-3 3679 3747 3680
-3 3680 3616 3679
-3 3680 3748 3681
-3 3681 3617 3680
-3 3681 3749 3682
-3 3682 3618 3681
-3 3682 3750 3683
-3 3683 3619 3682
-3 3683 3751 3684
-3 3684 3620 3683
-3 3684 3752 3685
-3 3685 3621 3684
-3 3685 3753 3686
-3 3686 3622 3685
-3 3686 3754 3687
-3 3687 3623 3686
-3 3687 3755 3688
-3 3688 3624 3687
-3 3688 3756 3689
-3 3689 3625 3688
-3 3689 3757 3690
-3 3690 3626 3689
-3 3690 3758 3694
-3 3694 3627 3690
-3 3556 3697 3555
-3 3632 3478 3477
-3 3555 3697 3477
-3 3697 3632 3477
-3 3633 3759 3701
-3 3701 3634 3633
-3 3698 3760 3759
-3 3759 3633 3698
-3 3571 3706 3761
-3 3761 3638 3571
-3 3572 3639 3762
-3 3762 3640 3572
-3 3638 3761 3763
-3 3763 3639 3638
-3 3707 3574 3573
-3 3764 3643 3574
-3 3707 3764 3574
-3 3642 3765 3710
-3 3641 3764 3765
-3 3642 3641 3765
-3 3643 3764 3641
-3 3766 3713 3644
-3 3644 3709 3766
-3 3767 3714 3645
-3 3645 3713 3767
-3 3768 3715 3646
-3 3646 3714 3768
-3 3769 3716 3647
-3 3647 3715 3769
-3 3770 3717 3648
-3 3648 3716 3770
-3 3771 3718 3649
-3 3649 3717 3771
-3 3772 3719 3650
-3 3650 3718 3772
-3 3773 3720 3651
-3 3651 3719 3773
-3 3774 3721 3652
-3 3652 3720 3774
-3 3775 3722 3653
-3 3653 3721 3775
-3 3776 3777 3723
-3 3723 3722 3776
-3 3778 3725 3656
-3 3656 3724 3778
-3 3779 3726 3657
-3 3657 3725 3779
-3 3780 3727 3658
-3 3658 3726 3780
-3 3781 3728 3659
-3 3659 3727 3781
-3 3782 3729 3660
-3 3660 3728 3782
-3 3783 3730 3661
-3 3661 3729 3783
-3 3784 3731 3662
-3 3662 3730 3784
-3 3785 3732 3663
-3 3663 3731 3785
-3 3786 3733 3665
-3 3665 3732 3786
-3 3787 3734 3666
-3 3666 3733 3787
-3 3735 3734 3737
-3 3735 3736 3668
-3 3668 3667 3735
-3 3669 3736 3737
-3 3738 3670 3737
-3 3738 3788 3739
-3 3739 3671 3738
-3 3739 3789 3740
-3 3740 3672 3739
-3 3740 3790 3741
-3 3741 3673 3740
-3 3741 3791 3742
-3 3742 3674 3741
-3 3742 3792 3743
-3 3743 3675 3742
-3 3743 3793 3744
-3 3744 3676 3743
-3 3744 3794 3745
-3 3745 3677 3744
-3 3745 3795 3746
-3 3746 3678 3745
-3 3746 3796 3747
-3 3747 3679 3746
-3 3747 3797 3748
-3 3748 3680 3747
-3 3748 3798 3749
-3 3749 3681 3748
-3 3749 3799 3750
-3 3750 3682 3749
-3 3750 3800 3751
-3 3751 3683 3750
-3 3751 3801 3752
-3 3752 3684 3751
-3 3752 3802 3753
-3 3753 3685 3752
-3 3753 3803 3754
-3 3754 3686 3753
-3 3754 3804 3755
-3 3755 3687 3754
-3 3755 3805 3756
-3 3756 3688 3755
-3 3756 3806 3757
-3 3757 3689 3756
-3 3757 3807 3758
-3 3758 3690 3757
-3 3808 3809 3810
-3 3694 3758 3809
-3 3811 3812 3694
-3 3808 3813 3809
-3 3813 3811 3694
-3 3813 3694 3809
-3 3814 3628 3629
-3 3629 3693 3814
-3 3628 3814 3696
-3 3696 3630 3628
-3 3630 3696 3631
-3 3815 3816 3697
-3 3697 3696 3815
-3 3698 3632 3697
-3 3697 3816 3698
-3 3760 3698 3816
-3 3816 3817 3760
-3 3699 3818 3819
-3 3819 3700 3699
-3 3701 3820 3818
-3 3818 3699 3701
-3 3759 3821 3820
-3 3820 3701 3759
-3 3700 3819 3822
-3 3822 3702 3700
-3 3822 3823 3703
-3 3703 3702 3822
-3 3823 3824 3704
-3 3704 3703 3823
-3 3704 3824 3825
-3 3825 3705 3704
-3 3705 3825 3826
-3 3826 3706 3705
-3 3640 3762 3827
-3 3827 3707 3640
-3 3828 3709 3829
-3 3809 3766 3709
-3 3830 3810 3809
-3 3828 3809 3709
-3 3828 3830 3809
-3 3831 3767 3713
-3 3713 3766 3831
-3 3832 3768 3714
-3 3714 3767 3832
-3 3833 3769 3715
-3 3715 3768 3833
-3 3834 3770 3716
-3 3716 3769 3834
-3 3835 3771 3717
-3 3717 3770 3835
-3 3836 3772 3718
-3 3718 3771 3836
-3 3837 3773 3719
-3 3719 3772 3837
-3 3838 3774 3720
-3 3720 3773 3838
-3 3839 3775 3721
-3 3721 3774 3839
-3 3840 3776 3722
-3 3722 3775 3840
-3 3841 3842 3777
-3 3777 3776 3841
-3 3843 3779 3725
-3 3725 3778 3843
-3 3844 3780 3726
-3 3726 3779 3844
-3 3845 3781 3727
-3 3727 3780 3845
-3 3846 3782 3728
-3 3728 3781 3846
-3 3847 3783 3729
-3 3729 3782 3847
-3 3848 3784 3730
-3 3730 3783 3848
-3 3849 3785 3731
-3 3731 3784 3849
-3 3850 3786 3732
-3 3732 3785 3850
-3 3851 3787 3733
-3 3733 3786 3851
-3 3734 3787 3737
-3 3736 3735 3737
-3 3788 3738 3737
-3 3788 3852 3789
-3 3789 3739 3788
-3 3789 3853 3790
-3 3790 3740 3789
-3 3790 3854 3791
-3 3791 3741 3790
-3 3791 3855 3792
-3 3792 3742 3791
-3 3792 3856 3793
-3 3793 3743 3792
-3 3793 3857 3794
-3 3794 3744 3793
-3 3794 3858 3795
-3 3795 3745 3794
-3 3795 3859 3796
-3 3796 3746 3795
-3 3796 3860 3797
-3 3797 3747 3796
-3 3797 3861 3798
-3 3798 3748 3797
-3 3798 3862 3799
-3 3799 3749 3798
-3 3799 3863 3800
-3 3800 3750 3799
-3 3800 3864 3801
-3 3801 3751 3800
-3 3801 3865 3802
-3 3802 3752 3801
-3 3802 3866 3803
-3 3803 3753 3802
-3 3803 3867 3804
-3 3804 3754 3803
-3 3804 3868 3805
-3 3805 3755 3804
-3 3805 3869 3806
-3 3806 3756 3805
-3 3806 3870 3807
-3 3807 3757 3806
-3 3807 3871 3809
-3 3809 3758 3807
-3 3692 3872 3814
-3 3814 3693 3692
-3 3815 3696 3814
-3 3814 3873 3815
-3 3815 3874 3817
-3 3817 3816 3815
-3 3760 3875 3821
-3 3821 3759 3760
-3 3817 3876 3875
-3 3875 3760 3817
-3 3822 3877 3878
-3 3878 3823 3822
-3 3823 3878 3879
-3 3879 3824 3823
-3 3706 3826 3880
-3 3880 3761 3706
-3 3639 3763 3881
-3 3881 3762 3639
-3 3761 3880 3882
-3 3882 3763 3761
-3 3707 3827 3883
-3 3883 3764 3707
-3 3710 3765 3712
-3 3764 3883 3884
-3 3884 3765 3764
-3 3871 3831 3766
-3 3766 3809 3871
-3 3885 3832 3767
-3 3767 3831 3885
-3 3886 3833 3768
-3 3768 3832 3886
-3 3887 3834 3769
-3 3769 3833 3887
-3 3888 3835 3770
-3 3770 3834 3888
-3 3889 3836 3771
-3 3771 3835 3889
-3 3890 3837 3772
-3 3772 3836 3890
-3 3891 3838 3773
-3 3773 3837 3891
-3 3892 3839 3774
-3 3774 3838 3892
-3 3893 3840 3775
-3 3775 3839 3893
-3 3894 3841 3776
-3 3776 3840 3894
-3 3895 3896 3842
-3 3842 3841 3895
-3 3897 3844 3779
-3 3779 3843 3897
-3 3898 3845 3780
-3 3780 3844 3898
-3 3899 3846 3781
-3 3781 3845 3899
-3 3900 3847 3782
-3 3782 3846 3900
-3 3901 3848 3783
-3 3783 3847 3901
-3 3902 3849 3784
-3 3784 3848 3902
-3 3903 3850 3785
-3 3785 3849 3903
-3 3904 3851 3786
-3 3786 3850 3904
-3 3787 3851 3737
-3 3852 3788 3737
-3 3852 3905 3853
-3 3853 3789 3852
-3 3853 3906 3854
-3 3854 3790 3853
-3 3854 3907 3855
-3 3855 3791 3854
-3 3855 3908 3856
-3 3856 3792 3855
-3 3856 3909 3857
-3 3857 3793 3856
-3 3857 3910 3858
-3 3858 3794 3857
-3 3858 3911 3859
-3 3859 3795 3858
-3 3859 3912 3860
-3 3860 3796 3859
-3 3860 3913 3861
-3 3861 3797 3860
-3 3861 3914 3862
-3 3862 3798 3861
-3 3862 3915 3863
-3 3863 3799 3862
-3 3863 3916 3864
-3 3864 3800 3863
-3 3864 3917 3865
-3 3865 3801 3864
-3 3865 3918 3866
-3 3866 3802 3865
-3 3866 3919 3867
-3 3867 3803 3866
-3 3867 3920 3868
-3 3868 3804 3867
-3 3868 3921 3869
-3 3869 3805 3868
-3 3869 3922 3870
-3 3870 3806 3869
-3 3870 3923 3871
-3 3871 3807 3870
-3 3695 3694 3812
-3 3691 3872 3692
-3 3872 3924 3873
-3 3873 3814 3872
-3 3873 3925 3874
-3 3874 3815 3873
-3 3876 3817 3874
-3 3874 3926 3876
-3 3818 3927 3928
-3 3928 3819 3818
-3 3929 3927 3818
-3 3818 3820 3929
-3 3821 3930 3929
-3 3929 3820 3821
-3 3875 3931 3930
-3 3930 3821 3875
-3 3819 3928 3877
-3 3877 3822 3819
-3 3824 3879 3932
-3 3932 3825 3824
-3 3825 3932 3933
-3 3933 3826 3825
-3 3762 3881 3934
-3 3934 3827 3762
-3 3827 3934 3935
-3 3935 3883 3827
-3 3712 3765 3936
-3 3936 3711 3712
-3 3828 3936 3937
-3 3829 3938 3936
-3 3828 3829 3936
-3 3829 3709 3708
-3 3708 3938 3829
-3 3828 3937 3830
-3 3923 3885 3831
-3 3831 3871 3923
-3 3939 3886 3832
-3 3832 3885 3939
-3 3940 3887 3833
-3 3833 3886 3940
-3 3941 3888 3834
-3 3834 3887 3941
-3 3942 3889 3835
-3 3835 3888 3942
-3 3943 3890 3836
-3 3836 3889 3943
-3 3944 3891 3837
-3 3837 3890 3944
-3 3945 3892 3838
-3 3838 3891 3945
-3 3946 3893 3839
-3 3839 3892 3946
-3 3947 3894 3840
-3 3840 3893 3947
-3 3948 3895 3841
-3 3841 3894 3948
-3 3949 3950 3896
-3 3896 3895 3949
-3 3951 3898 3844
-3 3844 3897 3951
-3 3952 3899 3845
-3 3845 3898 3952
-3 3953 3900 3846
-3 3846 3899 3953
-3 3954 3901 3847
-3 3847 3900 3954
-3 3955 3902 3848
-3 3848 3901 3955
-3 3956 3903 3849
-3 3849 3902 3956
-3 3957 3904 3850
-3 3850 3903 3957
-3 3851 3904 3737
-3 3905 3852 3737
-3 3905 3958 3906
-3 3906 3853 3905
-3 3906 3959 3907
-3 3907 3854 3906
-3 3907 3960 3908
-3 3908 3855 3907
-3 3908 3961 3909
-3 3909 3856 3908
-3 3909 3962 3910
-3 3910 3857 3909
-3 3910 3963 3911
-3 3911 3858 3910
-3 3911 3964 3912
-3 3912 3859 3911
-3 3912 3965 3913
-3 3913 3860 3912
-3 3913 3966 3914
-3 3914 3861 3913
-3 3914 3967 3915
-3 3915 3862 3914
-3 3915 3968 3916
-3 3916 3863 3915
-3 3916 3969 3917
-3 3917 3864 3916
-3 3917 3970 3918
-3 3918 3865 3917
-3 3918 3971 3919
-3 3919 3866 3918
-3 3919 3972 3920
-3 3920 3867 3919
-3 3920 3973 3921
-3 3921 3868 3920
-3 3921 3974 3922
-3 3922 3869 3921
-3 3922 3975 3923
-3 3923 3870 3922
-3 3808 3976 3977
-3 3977 3813 3808
-3 3813 3977 3811
-3 3977 3812 3811
-3 3872 3691 3695
-3 3977 3695 3812
-3 3977 3872 3695
-3 3924 3872 3977
-3 3977 3978 3924
-3 3924 3979 3925
-3 3925 3873 3924
-3 3925 3980 3926
-3 3926 3874 3925
-3 3876 3981 3931
-3 3931 3875 3876
-3 3926 3982 3981
-3 3981 3876 3926
-3 3929 3983 3984
-3 3984 3927 3929
-3 3877 3985 3986
-3 3986 3878 3877
-3 3928 3987 3985
-3 3985 3877 3928
-3 3878 3986 3988
-3 3988 3879 3878
-3 3933 3989 3880
-3 3880 3826 3933
-3 3763 3882 3990
-3 3990 3881 3763
-3 3880 3989 3991
-3 3991 3882 3880
-3 3765 3884 3992
-3 3992 3936 3765
-3 3936 3938 3708
-3 3708 3711 3936
-3 3883 3935 3993
-3 3993 3884 3883
-3 3830 3937 3976
-3 3976 3810 3830
-3 3975 3939 3885
-3 3885 3923 3975
-3 3994 3940 3886
-3 3886 3939 3994
-3 3995 3941 3887
-3 3887 3940 3995
-3 3996 3942 3888
-3 3888 3941 3996
-3 3997 3943 3889
-3 3889 3942 3997
-3 3998 3944 3890
-3 3890 3943 3998
-3 3999 3945 3891
-3 3891 3944 3999
-3 4000 3946 3892
-3 3892 3945 4000
-3 4001 3947 3893
-3 3893 3946 4001
-3 4002 3948 3894
-3 3894 3947 4002
-3 4003 3949 3895
-3 3895 3948 4003
-3 4004 4005 3950
-3 3950 3949 4004
-3 4006 3952 3898
-3 3898 3951 4006
-3 4007 3953 3899
-3 3899 3952 4007
-3 4008 3954 3900
-3 3900 3953 4008
-3 4009 3955 3901
-3 3901 3954 4009
-3 4010 3956 3902
-3 3902 3955 4010
-3 4011 3957 3903
-3 3903 3956 4011
-3 3904 3957 3737
-3 3958 3905 3737
-3 3958 4012 3959
-3 3959 3906 3958
-3 3959 4013 3960
-3 3960 3907 3959
-3 3960 4014 3961
-3 3961 3908 3960
-3 3961 4015 3962
-3 3962 3909 3961
-3 3962 4016 3963
-3 3963 3910 3962
-3 3963 4017 3964
-3 3964 3911 3963
-3 3964 4018 3965
-3 3965 3912 3964
-3 3965 4019 3966
-3 3966 3913 3965
-3 3966 4020 3967
-3 3967 3914 3966
-3 3967 4021 3968
-3 3968 3915 3967
-3 3968 4022 3969
-3 3969 3916 3968
-3 3969 4023 3970
-3 3970 3917 3969
-3 3970 4024 3971
-3 3971 3918 3970
-3 3971 4025 3972
-3 3972 3919 3971
-3 3972 4026 3973
-3 3973 3920 3972
-3 3973 4027 3974
-3 3974 3921 3973
-3 3974 4028 3975
-3 3975 3922 3974
-3 3810 3976 3808
-3 3976 4029 3978
-3 3978 3977 3976
-3 3978 4030 3979
-3 3979 3924 3978
-3 3979 4031 3980
-3 3980 3925 3979
-3 3982 3926 3980
-3 3980 4032 3982
-3 3927 3984 3987
-3 3987 3928 3927
-3 3930 4033 3983
-3 3983 3929 3930
-3 3931 4034 4033
-3 4033 3930 3931
-3 3981 4035 4034
-3 4034 3931 3981
-3 3879 3988 4036
-3 4036 3932 3879
-3 3932 4036 4037
-3 4037 3933 3932
-3 3933 4037 4038
-3 4038 3989 3933
-3 3881 3990 4039
-3 4039 3934 3881
-3 3934 4039 4040
-3 4040 3935 3934
-3 3936 3992 4041
-3 4041 3937 3936
-3 3937 4041 4029
-3 4029 3976 3937
-3 4028 3994 3939
-3 3939 3975 4028
-3 4042 3995 3940
-3 3940 3994 4042
-3 4043 3996 3941
-3 3941 3995 4043
-3 4044 3997 3942
-3 3942 3996 4044
-3 4045 3998 3943
-3 3943 3997 4045
-3 4046 3999 3944
-3 3944 3998 4046
-3 4047 4000 3945
-3 3945 3999 4047
-3 4048 4001 3946
-3 3946 4000 4048
-3 4049 4002 3947
-3 3947 4001 4049
-3 4050 4003 3948
-3 3948 4002 4050
-3 4051 4004 3949
-3 3949 4003 4051
-3 4052 4053 4005
-3 4005 4004 4052
-3 4054 4007 3952
-3 3952 4006 4054
-3 4055 4008 3953
-3 3953 4007 4055
-3 4056 4009 3954
-3 3954 4008 4056
-3 4057 4010 3955
-3 3955 4009 4057
-3 4058 4011 3956
-3 3956 4010 4058
-3 3957 4011 3737
-3 4012 3958 3737
-3 4012 4059 4013
-3 4013 3959 4012
-3 4013 4060 4014
-3 4014 3960 4013
-3 4014 4061 4015
-3 4015 3961 4014
-3 4015 4062 4016
-3 4016 3962 4015
-3 4016 4063 4017
-3 4017 3963 4016
-3 4017 4064 4018
-3 4018 3964 4017
-3 4018 4065 4019
-3 4019 3965 4018
-3 4019 4066 4020
-3 4020 3966 4019
-3 4020 4067 4021
-3 4021 3967 4020
-3 4021 4068 4022
-3 4022 3968 4021
-3 4022 4069 4023
-3 4023 3969 4022
-3 4023 4070 4024
-3 4024 3970 4023
-3 4024 4071 4025
-3 4025 3971 4024
-3 4025 4072 4026
-3 4026 3972 4025
-3 4026 4073 4027
-3 4027 3973 4026
-3 4027 4074 4028
-3 4028 3974 4027
-3 4030 3978 4029
-3 4029 4075 4030
-3 4030 4076 4031
-3 4031 3979 4030
-3 4031 4077 4032
-3 4032 3980 4031
-3 3982 4078 4035
-3 4035 3981 3982
-3 4032 4079 4078
-3 4078 3982 4032
-3 3983 4080 4081
-3 4081 3984 3983
-3 4082 4080 3983
-3 3983 4033 4082
-3 3985 4083 4084
-3 4084 3986 3985
-3 3987 4085 4083
-3 4083 3985 3987
-3 3984 4081 4085
-3 4085 3987 3984
-3 3986 4084 4086
-3 4086 3988 3986
-3 3882 3991 4087
-3 4087 3990 3882
-3 3989 4038 4088
-3 4088 3991 3989
-3 3884 3993 4089
-3 4089 3992 3884
-3 3935 4040 4090
-3 4090 3993 3935
-3 4074 4042 3994
-3 3994 4028 4074
-3 4091 4043 3995
-3 3995 4042 4091
-3 4092 4044 3996
-3 3996 4043 4092
-3 4093 4045 3997
-3 3997 4044 4093
-3 4094 4046 3998
-3 3998 4045 4094
-3 4095 4047 3999
-3 3999 4046 4095
-3 4096 4048 4000
-3 4000 4047 4096
-3 4097 4049 4001
-3 4001 4048 4097
-3 4098 4050 4002
-3 4002 4049 4098
-3 4099 4051 4003
-3 4003 4050 4099
-3 4100 4052 4004
-3 4004 4051 4100
-3 4101 4102 4053
-3 4053 4052 4101
-3 4103 4055 4007
-3 4007 4054 4103
-3 4104 4056 4008
-3 4008 4055 4104
-3 4105 4057 4009
-3 4009 4056 4105
-3 4106 4058 4010
-3 4010 4057 4106
-3 4011 4058 3737
-3 4059 4012 3737
-3 4059 4107 4060
-3 4060 4013 4059
-3 4060 4108 4061
-3 4061 4014 4060
-3 4061 4109 4062
-3 4062 4015 4061
-3 4062 4110 4063
-3 4063 4016 4062
-3 4063 4111 4064
-3 4064 4017 4063
-3 4064 4112 4065
-3 4065 4018 4064
-3 4065 4113 4066
-3 4066 4019 4065
-3 4066 4114 4067
-3 4067 4020 4066
-3 4067 4115 4068
-3 4068 4021 4067
-3 4068 4116 4069
-3 4069 4022 4068
-3 4069 4117 4070
-3 4070 4023 4069
-3 4070 4118 4071
-3 4071 4024 4070
-3 4071 4119 4072
-3 4072 4025 4071
-3 4072 4120 4073
-3 4073 4026 4072
-3 4073 4121 4074
-3 4074 4027 4073
-3 4041 4122 4075
-3 4075 4029 4041
-3 4075 4123 4076
-3 4076 4030 4075
-3 4076 4124 4077
-3 4077 4031 4076
-3 4079 4032 4077
-3 4077 4125 4079
-3 4034 4126 4082
-3 4082 4033 4034
-3 4082 4127 4128
-3 4128 4080 4082
-3 4035 4129 4126
-3 4126 4034 4035
-3 4078 4130 4129
-3 4129 4035 4078
-3 3988 4086 4131
-3 4131 4036 3988
-3 4036 4131 4132
-3 4132 4037 4036
-3 4037 4132 4133
-3 4133 4038 4037
-3 3990 4087 4134
-3 4134 4039 3990
-3 4039 4134 4135
-3 4135 4040 4039
-3 3992 4089 4122
-3 4122 4041 3992
-3 4121 4091 4042
-3 4042 4074 4121
-3 4136 4092 4043
-3 4043 4091 4136
-3 4137 4093 4044
-3 4044 4092 4137
-3 4138 4094 4045
-3 4045 4093 4138
-3 4139 4095 4046
-3 4046 4094 4139
-3 4140 4096 4047
-3 4047 4095 4140
-3 4141 4097 4048
-3 4048 4096 4141
-3 4142 4098 4049
-3 4049 4097 4142
-3 4143 4099 4050
-3 4050 4098 4143
-3 4144 4100 4051
-3 4051 4099 4144
-3 4145 4101 4052
-3 4052 4100 4145
-3 4146 4147 4102
-3 4102 4101 4146
-3 4148 4104 4055
-3 4055 4103 4148
-3 4149 4105 4056
-3 4056 4104 4149
-3 4150 4106 4057
-3 4057 4105 4150
-3 4058 4106 3737
-3 4107 4059 3737
-3 4107 4151 4108
-3 4108 4060 4107
-3 4108 4152 4109
-3 4109 4061 4108
-3 4109 4153 4110
-3 4110 4062 4109
-3 4110 4154 4111
-3 4111 4063 4110
-3 4111 4155 4112
-3 4112 4064 4111
-3 4112 4156 4113
-3 4113 4065 4112
-3 4113 4157 4114
-3 4114 4066 4113
-3 4114 4158 4115
-3 4115 4067 4114
-3 4115 4159 4116
-3 4116 4068 4115
-3 4116 4160 4117
-3 4117 4069 4116
-3 4117 4161 4118
-3 4118 4070 4117
-3 4118 4162 4119
-3 4119 4071 4118
-3 4119 4163 4120
-3 4120 4072 4119
-3 4120 4164 4121
-3 4121 4073 4120
-3 4123 4075 4122
-3 4122 4165 4123
-3 4123 4166 4124
-3 4124 4076 4123
-3 4079 4167 4130
-3 4130 4078 4079
-3 4126 4168 4127
-3 4127 4082 4126
-3 4133 4169 4088
-3 4088 4038 4133
-3 4164 4136 4091
-3 4091 4121 4164
-3 4170 4137 4092
-3 4092 4136 4170
-3 4171 4138 4093
-3 4093 4137 4171
-3 4172 4139 4094
-3 4094 4138 4172
-3 4173 4140 4095
-3 4095 4139 4173
-3 4174 4141 4096
-3 4096 4140 4174
-3 4175 4142 4097
-3 4097 4141 4175
-3 4176 4143 4098
-3 4098 4142 4176
-3 4177 4144 4099
-3 4099 4143 4177
-3 4178 4145 4100
-3 4100 4144 4178
-3 4179 4146 4101
-3 4101 4145 4179
-3 4180 4181 4147
-3 4147 4146 4180
-3 4182 4149 4104
-3 4104 4148 4182
-3 4183 4150 4105
-3 4105 4149 4183
-3 4106 4150 3737
-3 4151 4107 3737
-3 4151 4184 4152
-3 4152 4108 4151
-3 4152 4185 4153
-3 4153 4109 4152
-3 4153 4186 4154
-3 4154 4110 4153
-3 4154 4187 4155
-3 4155 4111 4154
-3 4155 4188 4156
-3 4156 4112 4155
-3 4156 4189 4157
-3 4157 4113 4156
-3 4157 4190 4158
-3 4158 4114 4157
-3 4158 4191 4159
-3 4159 4115 4158
-3 4159 4192 4160
-3 4160 4116 4159
-3 4160 4193 4161
-3 4161 4117 4160
-3 4161 4194 4162
-3 4162 4118 4161
-3 4162 4195 4163
-3 4163 4119 4162
-3 4163 4196 4164
-3 4164 4120 4163
-3 4165 4197 4166
-3 4166 4123 4165
-3 4125 4077 4124
-3 4124 4198 4125
-3 4198 4124 4166
-3 4166 4199 4198
-3 4167 4079 4125
-3 4125 4200 4167
-3 4200 4125 4198
-3 4198 4201 4200
-3 4129 4202 4168
-3 4168 4126 4129
-3 4203 4081 4080
-3 4080 4128 4203
-3 4127 4204 4205
-3 4205 4128 4127
-3 4168 4206 4204
-3 4204 4127 4168
-3 4130 4207 4202
-3 4202 4129 4130
-3 4167 4208 4207
-3 4207 4130 4167
-3 4209 4084 4083
-3 4083 4210 4209
-3 4210 4083 4085
-3 4085 4211 4210
-3 4211 4085 4081
-3 4081 4203 4211
-3 4212 4086 4084
-3 4084 4209 4212
-3 4086 4212 4213
-3 4213 4131 4086
-3 4131 4213 4214
-3 4214 4132 4131
-3 4132 4214 4215
-3 4215 4133 4132
-3 4216 4087 3991
-3 3991 4088 4216
-3 4133 4215 4217
-3 4217 4169 4133
-3 4088 4169 4218
-3 4218 4216 4088
-3 4087 4216 4219
-3 4219 4134 4087
-3 4134 4219 4220
-3 4220 4135 4134
-3 4221 4089 3993
-3 3993 4090 4221
-3 4222 4090 4040
-3 4040 4135 4222
-3 4196 4170 4136
-3 4136 4164 4196
-3 4223 4171 4137
-3 4137 4170 4223
-3 4224 4172 4138
-3 4138 4171 4224
-3 4225 4173 4139
-3 4139 4172 4225
-3 4226 4174 4140
-3 4140 4173 4226
-3 4227 4175 4141
-3 4141 4174 4227
-3 4228 4176 4142
-3 4142 4175 4228
-3 4229 4177 4143
-3 4143 4176 4229
-3 4230 4178 4144
-3 4144 4177 4230
-3 4231 4179 4145
-3 4145 4178 4231
-3 4232 4180 4146
-3 4146 4179 4232
-3 4233 4234 4181
-3 4181 4180 4233
-3 4235 4183 4149
-3 4149 4182 4235
-3 4150 4183 3737
-3 4184 4151 3737
-3 4236 4237 4185
-3 4185 4152 4236
-3 4185 4238 4186
-3 4186 4153 4185
-3 4186 4239 4187
-3 4187 4154 4186
-3 4187 4240 4188
-3 4188 4155 4187
-3 4188 4241 4189
-3 4189 4156 4188
-3 4189 4242 4190
-3 4190 4157 4189
-3 4190 4243 4191
-3 4191 4158 4190
-3 4191 4244 4192
-3 4192 4159 4191
-3 4192 4245 4193
-3 4193 4160 4192
-3 4193 4246 4194
-3 4194 4161 4193
-3 4194 4247 4195
-3 4195 4162 4194
-3 4195 4248 4196
-3 4196 4163 4195
-3 4165 4122 4089
-3 4089 4221 4165
-3 4197 4165 4221
-3 4221 4249 4197
-3 4197 4250 4199
-3 4199 4166 4197
-3 4199 4251 4201
-3 4201 4198 4199
-3 4200 4252 4208
-3 4208 4167 4200
-3 4201 4253 4252
-3 4252 4200 4201
-3 4128 4205 4254
-3 4254 4203 4128
-3 4202 4255 4206
-3 4206 4168 4202
-3 4210 4256 4257
-3 4257 4209 4210
-3 4211 4258 4256
-3 4256 4210 4211
-3 4203 4254 4258
-3 4258 4211 4203
-3 4209 4257 4259
-3 4259 4212 4209
-3 4090 4222 4249
-3 4249 4221 4090
-3 4135 4220 4260
-3 4260 4222 4135
-3 4248 4223 4170
-3 4170 4196 4248
-3 4261 4224 4171
-3 4171 4223 4261
-3 4262 4225 4172
-3 4172 4224 4262
-3 4263 4226 4173
-3 4173 4225 4263
-3 4264 4227 4174
-3 4174 4226 4264
-3 4265 4228 4175
-3 4175 4227 4265
-3 4266 4229 4176
-3 4176 4228 4266
-3 4267 4230 4177
-3 4177 4229 4267
-3 4268 4231 4178
-3 4178 4230 4268
-3 4269 4232 4179
-3 4179 4231 4269
-3 4270 4233 4180
-3 4180 4232 4270
-3 4271 4272 4234
-3 4234 4233 4271
-3 4183 4235 3737
-3 4237 4236 4273
-3 4237 4274 4238
-3 4238 4185 4237
-3 4238 4275 4239
-3 4239 4186 4238
-3 4239 4276 4240
-3 4240 4187 4239
-3 4240 4277 4241
-3 4241 4188 4240
-3 4241 4278 4242
-3 4242 4189 4241
-3 4242 4279 4243
-3 4243 4190 4242
-3 4243 4280 4244
-3 4244 4191 4243
-3 4244 4281 4245
-3 4245 4192 4244
-3 4245 4282 4246
-3 4246 4193 4245
-3 4246 4283 4247
-3 4247 4194 4246
-3 4247 4284 4248
-3 4248 4195 4247
-3 4249 4285 4250
-3 4250 4197 4249
-3 4250 4286 4251
-3 4251 4199 4250
-3 4253 4201 4251
-3 4251 4287 4253
-3 4207 4288 4255
-3 4255 4202 4207
-3 4204 4289 4290
-3 4290 4205 4204
-3 4206 4291 4289
-3 4289 4204 4206
-3 4255 4292 4291
-3 4291 4206 4255
-3 4208 4293 4288
-3 4288 4207 4208
-3 4252 4294 4293
-3 4293 4208 4252
-3 4212 4259 4295
-3 4295 4213 4212
-3 4213 4295 4296
-3 4296 4214 4213
-3 4214 4296 4297
-3 4297 4215 4214
-3 4215 4297 4298
-3 4298 4217 4215
-3 4169 4217 4299
-3 4299 4218 4169
-3 4216 4218 4300
-3 4300 4219 4216
-3 4219 4300 4301
-3 4301 4220 4219
-3 4284 4261 4223
-3 4223 4248 4284
-3 4302 4262 4224
-3 4224 4261 4302
-3 4303 4263 4225
-3 4225 4262 4303
-3 4304 4264 4226
-3 4226 4263 4304
-3 4305 4265 4227
-3 4227 4264 4305
-3 4306 4266 4228
-3 4228 4265 4306
-3 4307 4267 4229
-3 4229 4266 4307
-3 4308 4268 4230
-3 4230 4267 4308
-3 4309 4269 4231
-3 4231 4268 4309
-3 4310 4270 4232
-3 4232 4269 4310
-3 4311 4271 4233
-3 4233 4270 4311
-3 4272 4271 4273
-3 4274 4237 4273
-3 4274 4312 4275
-3 4275 4238 4274
-3 4275 4313 4276
-3 4276 4239 4275
-3 4276 4314 4277
-3 4277 4240 4276
-3 4277 4315 4278
-3 4278 4241 4277
-3 4278 4316 4279
-3 4279 4242 4278
-3 4279 4317 4280
-3 4280 4243 4279
-3 4280 4318 4281
-3 4281 4244 4280
-3 4281 4319 4282
-3 4282 4245 4281
-3 4282 4320 4283
-3 4283 4246 4282
-3 4283 4321 4284
-3 4284 4247 4283
-3 4285 4249 4222
-3 4222 4260 4285
-3 4285 4322 4286
-3 4286 4250 4285
-3 4286 4323 4287
-3 4287 4251 4286
-3 4253 4324 4294
-3 4294 4252 4253
-3 4287 4325 4324
-3 4324 4253 4287
-3 4205 4290 4326
-3 4326 4254 4205
-3 4288 4327 4292
-3 4292 4255 4288
-3 4256 4328 4329
-3 4329 4257 4256
-3 4258 4330 4328
-3 4328 4256 4258
-3 4254 4326 4330
-3 4330 4258 4254
-3 4257 4329 4331
-3 4331 4259 4257
-3 4220 4301 4332
-3 4332 4260 4220
-3 4321 4302 4261
-3 4261 4284 4321
-3 4333 4303 4262
-3 4262 4302 4333
-3 4334 4304 4263
-3 4263 4303 4334
-3 4335 4305 4264
-3 4264 4304 4335
-3 4336 4306 4265
-3 4265 4305 4336
-3 4337 4307 4266
-3 4266 4306 4337
-3 4338 4308 4267
-3 4267 4307 4338
-3 4339 4309 4268
-3 4268 4308 4339
-3 4340 4310 4269
-3 4269 4309 4340
-3 4341 4311 4270
-3 4270 4310 4341
-3 4271 4311 4273
-3 4312 4274 4273
-3 4312 4342 4313
-3 4313 4275 4312
-3 4313 4343 4314
-3 4314 4276 4313
-3 4314 4344 4315
-3 4315 4277 4314
-3 4315 4345 4316
-3 4316 4278 4315
-3 4316 4346 4317
-3 4317 4279 4316
-3 4317 4347 4318
-3 4318 4280 4317
-3 4318 4348 4319
-3 4319 4281 4318
-3 4319 4349 4320
-3 4320 4282 4319
-3 4320 4350 4321
-3 4321 4283 4320
-3 4260 4332 4322
-3 4322 4285 4260
-3 4322 4351 4323
-3 4323 4286 4322
-3 4325 4287 4323
-3 4323 4352 4325
-3 4293 4353 4327
-3 4327 4288 4293
-3 4289 4354 4355
-3 4355 4290 4289
-3 4291 4356 4354
-3 4354 4289 4291
-3 4292 4357 4356
-3 4356 4291 4292
-3 4327 4358 4357
-3 4357 4292 4327
-3 4294 4359 4353
-3 4353 4293 4294
-3 4324 4360 4359
-3 4359 4294 4324
-3 4259 4331 4361
-3 4361 4295 4259
-3 4295 4361 4362
-3 4362 4296 4295
-3 4296 4362 4363
-3 4363 4297 4296
-3 4217 4298 4364
-3 4364 4299 4217
-3 4297 4363 4365
-3 4365 4298 4297
-3 4218 4299 4366
-3 4366 4300 4218
-3 4300 4366 4367
-3 4367 4301 4300
-3 4350 4333 4302
-3 4302 4321 4350
-3 4368 4334 4303
-3 4303 4333 4368
-3 4369 4335 4304
-3 4304 4334 4369
-3 4370 4336 4305
-3 4305 4335 4370
-3 4371 4337 4306
-3 4306 4336 4371
-3 4372 4338 4307
-3 4307 4337 4372
-3 4373 4339 4308
-3 4308 4338 4373
-3 4374 4340 4309
-3 4309 4339 4374
-3 4375 4341 4310
-3 4310 4340 4375
-3 4311 4341 4273
-3 4342 4312 4273
-3 4342 4376 4343
-3 4343 4313 4342
-3 4343 4377 4344
-3 4344 4314 4343
-3 4344 4378 4345
-3 4345 4315 4344
-3 4345 4379 4346
-3 4346 4316 4345
-3 4346 4380 4347
-3 4347 4317 4346
-3 4347 4381 4348
-3 4348 4318 4347
-3 4348 4382 4349
-3 4349 4319 4348
-3 4349 4383 4350
-3 4350 4320 4349
-3 4332 4384 4351
-3 4351 4322 4332
-3 4351 4385 4352
-3 4352 4323 4351
-3 4325 4386 4360
-3 4360 4324 4325
-3 4352 4387 4386
-3 4386 4325 4352
-3 4290 4355 4388
-3 4388 4326 4290
-3 4353 4389 4358
-3 4358 4327 4353
-3 4328 4390 4391
-3 4391 4329 4328
-3 4330 4392 4390
-3 4390 4328 4330
-3 4326 4388 4392
-3 4392 4330 4326
-3 4329 4391 4393
-3 4393 4331 4329
-3 4301 4367 4384
-3 4384 4332 4301
-3 4383 4368 4333
-3 4333 4350 4383
-3 4394 4369 4334
-3 4334 4368 4394
-3 4395 4370 4335
-3 4335 4369 4395
-3 4396 4371 4336
-3 4336 4370 4396
-3 4397 4372 4337
-3 4337 4371 4397
-3 4398 4373 4338
-3 4338 4372 4398
-3 4399 4374 4339
-3 4339 4373 4399
-3 4400 4375 4340
-3 4340 4374 4400
-3 4341 4375 4273
-3 4376 4342 4273
-3 4376 4401 4377
-3 4377 4343 4376
-3 4377 4402 4378
-3 4378 4344 4377
-3 4378 4403 4379
-3 4379 4345 4378
-3 4379 4404 4380
-3 4380 4346 4379
-3 4380 4405 4381
-3 4381 4347 4380
-3 4381 4406 4382
-3 4382 4348 4381
-3 4382 4407 4383
-3 4383 4349 4382
-3 4384 4408 4385
-3 4385 4351 4384
-3 4387 4352 4385
-3 4385 4409 4387
-3 4359 4410 4389
-3 4389 4353 4359
-3 4354 4411 4412
-3 4412 4355 4354
-3 4356 4413 4411
-3 4411 4354 4356
-3 4357 4414 4413
-3 4413 4356 4357
-3 4358 4415 4414
-3 4414 4357 4358
-3 4389 4416 4415
-3 4415 4358 4389
-3 4360 4417 4410
-3 4410 4359 4360
-3 4386 4418 4417
-3 4417 4360 4386
-3 4331 4393 4419
-3 4419 4361 4331
-3 4361 4419 4420
-3 4420 4362 4361
-3 4362 4420 4421
-3 4421 4363 4362
-3 4298 4365 4422
-3 4422 4364 4298
-3 4299 4364 4423
-3 4423 4366 4299
-3 4363 4421 4424
-3 4424 4365 4363
-3 4366 4423 4425
-3 4425 4367 4366
-3 4407 4394 4368
-3 4368 4383 4407
-3 4426 4395 4369
-3 4369 4394 4426
-3 4427 4396 4370
-3 4370 4395 4427
-3 4428 4397 4371
-3 4371 4396 4428
-3 4429 4398 4372
-3 4372 4397 4429
-3 4430 4399 4373
-3 4373 4398 4430
-3 4431 4400 4374
-3 4374 4399 4431
-3 4375 4400 4273
-3 4401 4376 4273
-3 4401 4432 4402
-3 4402 4377 4401
-3 4402 4433 4403
-3 4403 4378 4402
-3 4403 4434 4404
-3 4404 4379 4403
-3 4404 4435 4405
-3 4405 4380 4404
-3 4405 4436 4406
-3 4406 4381 4405
-3 4406 4437 4407
-3 4407 4382 4406
-3 4367 4425 4408
-3 4408 4384 4367
-3 4408 4438 4409
-3 4409 4385 4408
-3 4387 4439 4418
-3 4418 4386 4387
-3 4409 4440 4439
-3 4439 4387 4409
-3 4355 4412 4441
-3 4441 4388 4355
-3 4410 4442 4416
-3 4416 4389 4410
-3 4392 4443 4444
-3 4444 4390 4392
-3 4390 4444 4445
-3 4445 4391 4390
-3 4388 4441 4443
-3 4443 4392 4388
-3 4391 4445 4446
-3 4446 4393 4391
-3 4437 4426 4394
-3 4394 4407 4437
-3 4447 4427 4395
-3 4395 4426 4447
-3 4448 4428 4396
-3 4396 4427 4448
-3 4449 4429 4397
-3 4397 4428 4449
-3 4450 4430 4398
-3 4398 4429 4450
-3 4451 4431 4399
-3 4399 4430 4451
-3 4400 4431 4273
-3 4432 4401 4273
-3 4432 4452 4433
-3 4433 4402 4432
-3 4433 4453 4434
-3 4434 4403 4433
-3 4434 4454 4435
-3 4435 4404 4434
-3 4435 4455 4436
-3 4436 4405 4435
-3 4436 4456 4437
-3 4437 4406 4436
-3 4425 4457 4438
-3 4438 4408 4425
-3 4440 4409 4438
-3 4438 4458 4440
-3 4417 4459 4442
-3 4442 4410 4417
-3 4411 4460 4461
-3 4461 4412 4411
-3 4413 4462 4460
-3 4460 4411 4413
-3 4414 4463 4462
-3 4462 4413 4414
-3 4415 4464 4463
-3 4463 4414 4415
-3 4416 4465 4464
-3 4464 4415 4416
-3 4442 4466 4465
-3 4465 4416 4442
-3 4418 4467 4459
-3 4459 4417 4418
-3 4439 4468 4467
-3 4467 4418 4439
-3 4393 4446 4469
-3 4469 4419 4393
-3 4419 4469 4470
-3 4470 4420 4419
-3 4420 4470 4471
-3 4471 4421 4420
-3 4364 4422 4472
-3 4472 4423 4364
-3 4365 4424 4473
-3 4473 4422 4365
-3 4421 4471 4474
-3 4474 4424 4421
-3 4423 4472 4457
-3 4457 4425 4423
-3 4456 4447 4426
-3 4426 4437 4456
-3 4475 4448 4427
-3 4427 4447 4475
-3 4476 4449 4428
-3 4428 4448 4476
-3 4477 4450 4429
-3 4429 4449 4477
-3 4478 4451 4430
-3 4430 4450 4478
-3 4431 4451 4273
-3 4452 4432 4273
-3 4452 4479 4453
-3 4453 4433 4452
-3 4453 4480 4454
-3 4454 4434 4453
-3 4454 4481 4455
-3 4455 4435 4454
-3 4455 4482 4456
-3 4456 4436 4455
-3 4457 4483 4458
-3 4458 4438 4457
-3 4440 4484 4468
-3 4468 4439 4440
-3 4458 4485 4484
-3 4484 4440 4458
-3 4412 4461 4486
-3 4486 4441 4412
-3 4459 4487 4466
-3 4466 4442 4459
-3 4443 4488 4489
-3 4489 4444 4443
-3 4441 4486 4488
-3 4488 4443 4441
-3 4444 4489 4490
-3 4490 4445 4444
-3 4445 4490 4491
-3 4491 4446 4445
-3 4482 4475 4447
-3 4447 4456 4482
-3 4492 4476 4448
-3 4448 4475 4492
-3 4493 4477 4449
-3 4449 4476 4493
-3 4494 4478 4450
-3 4450 4477 4494
-3 4451 4478 4273
-3 4479 4452 4273
-3 4479 4495 4480
-3 4480 4453 4479
-3 4480 4496 4481
-3 4481 4454 4480
-3 4481 4497 4482
-3 4482 4455 4481
-3 4472 4498 4483
-3 4483 4457 4472
-3 4485 4458 4483
-3 4483 4499 4485
-3 4467 4500 4487
-3 4487 4459 4467
-3 4462 4501 4502
-3 4502 4460 4462
-3 4460 4502 4503
-3 4503 4461 4460
-3 4463 4504 4501
-3 4501 4462 4463
-3 4464 4505 4504
-3 4504 4463 4464
-3 4465 4506 4505
-3 4505 4464 4465
-3 4466 4507 4506
-3 4506 4465 4466
-3 4487 4508 4507
-3 4507 4466 4487
-3 4468 4509 4500
-3 4500 4467 4468
-3 4484 4510 4509
-3 4509 4468 4484
-3 4446 4491 4511
-3 4511 4469 4446
-3 4469 4511 4512
-3 4512 4470 4469
-3 4470 4512 4513
-3 4513 4471 4470
-3 4422 4473 4498
-3 4498 4472 4422
-3 4424 4474 4514
-3 4514 4473 4424
-3 4471 4513 4515
-3 4515 4474 4471
-3 4497 4492 4475
-3 4475 4482 4497
-3 4516 4493 4476
-3 4476 4492 4516
-3 4517 4494 4477
-3 4477 4493 4517
-3 4478 4494 4273
-3 4495 4479 4273
-3 4495 4518 4496
-3 4496 4480 4495
-3 4496 4519 4497
-3 4497 4481 4496
-3 4498 4520 4499
-3 4499 4483 4498
-3 4485 4521 4510
-3 4510 4484 4485
-3 4499 4522 4521
-3 4521 4485 4499
-3 4461 4503 4523
-3 4523 4486 4461
-3 4500 4524 4508
-3 4508 4487 4500
-3 4488 4525 4526
-3 4526 4489 4488
-3 4486 4523 4525
-3 4525 4488 4486
-3 4489 4526 4527
-3 4527 4490 4489
-3 4490 4527 4528
-3 4528 4491 4490
-3 4519 4516 4492
-3 4492 4497 4519
-3 4529 4517 4493
-3 4493 4516 4529
-3 4494 4517 4273
-3 4518 4495 4273
-3 4518 4530 4519
-3 4519 4496 4518
-3 4473 4514 4520
-3 4520 4498 4473
-3 4522 4499 4520
-3 4520 4531 4522
-3 4509 4532 4524
-3 4524 4500 4509
-3 4501 4533 4534
-3 4534 4502 4501
-3 4504 4535 4533
-3 4533 4501 4504
-3 4502 4534 4536
-3 4536 4503 4502
-3 4505 4537 4535
-3 4535 4504 4505
-3 4506 4538 4537
-3 4537 4505 4506
-3 4507 4539 4538
-3 4538 4506 4507
-3 4508 4540 4539
-3 4539 4507 4508
-3 4524 4541 4540
-3 4540 4508 4524
-3 4510 4542 4532
-3 4532 4509 4510
-3 4521 4543 4542
-3 4542 4510 4521
-3 4491 4528 4544
-3 4544 4511 4491
-3 4511 4544 4545
-3 4545 4512 4511
-3 4512 4545 4546
-3 4546 4513 4512
-3 4474 4515 4547
-3 4547 4514 4474
-3 4513 4546 4548
-3 4548 4515 4513
-3 4530 4529 4516
-3 4516 4519 4530
-3 4517 4529 4273
-3 4530 4518 4273
-3 4514 4547 4531
-3 4531 4520 4514
-3 4522 4549 4543
-3 4543 4521 4522
-3 4531 4550 4549
-3 4549 4522 4531
-3 4503 4536 4551
-3 4551 4523 4503
-3 4532 4552 4541
-3 4541 4524 4532
-3 4525 4553 4554
-3 4554 4526 4525
-3 4523 4551 4553
-3 4553 4525 4523
-3 4526 4554 4555
-3 4555 4527 4526
-3 4527 4555 4556
-3 4556 4528 4527
-3 4529 4530 4273
-3 4550 4531 4547
-3 4547 4557 4550
-3 4542 4558 4552
-3 4552 4532 4542
-3 4533 4559 4560
-3 4560 4534 4533
-3 4535 4561 4559
-3 4559 4533 4535
-3 4537 4562 4561
-3 4561 4535 4537
-3 4534 4560 4563
-3 4563 4536 4534
-3 4538 4564 4562
-3 4562 4537 4538
-3 4539 4565 4564
-3 4564 4538 4539
-3 4540 4566 4565
-3 4565 4539 4540
-3 4541 4567 4566
-3 4566 4540 4541
-3 4552 4568 4567
-3 4567 4541 4552
-3 4543 4569 4558
-3 4558 4542 4543
-3 4549 4570 4569
-3 4569 4543 4549
-3 4528 4556 4571
-3 4571 4544 4528
-3 4544 4571 4572
-3 4572 4545 4544
-3 4545 4572 4573
-3 4573 4546 4545
-3 4515 4548 4557
-3 4557 4547 4515
-3 4546 4573 4574
-3 4574 4548 4546
-3 4550 4575 4570
-3 4570 4549 4550
-3 4557 4576 4575
-3 4575 4550 4557
-3 4536 4563 4577
-3 4577 4551 4536
-3 4558 4578 4568
-3 4568 4552 4558
-3 4551 4577 4579
-3 4579 4553 4551
-3 4553 4579 4580
-3 4580 4554 4553
-3 4554 4580 4581
-3 4581 4555 4554
-3 4555 4581 4582
-3 4582 4556 4555
-3 4576 4557 4548
-3 4548 4574 4576
-3 4569 4583 4578
-3 4578 4558 4569
-3 4559 4584 4585
-3 4585 4560 4559
-3 4561 4586 4584
-3 4584 4559 4561
-3 4562 4587 4586
-3 4586 4561 4562
-3 4564 4588 4587
-3 4587 4562 4564
-3 4560 4585 4589
-3 4589 4563 4560
-3 4565 4590 4588
-3 4588 4564 4565
-3 4566 4591 4590
-3 4590 4565 4566
-3 4567 4592 4591
-3 4591 4566 4567
-3 4568 4593 4592
-3 4592 4567 4568
-3 4578 4594 4593
-3 4593 4568 4578
-3 4570 4595 4583
-3 4583 4569 4570
-3 4575 4596 4595
-3 4595 4570 4575
-3 4556 4582 4597
-3 4597 4571 4556
-3 4571 4597 4598
-3 4598 4572 4571
-3 4572 4598 4599
-3 4599 4573 4572
-3 4573 4599 4600
-3 4600 4574 4573
-3 4576 4601 4596
-3 4596 4575 4576
-3 4574 4600 4601
-3 4601 4576 4574
-3 4563 4589 4602
-3 4602 4577 4563
-3 4583 4603 4594
-3 4594 4578 4583
-3 4577 4602 4604
-3 4604 4579 4577
-3 4579 4604 4605
-3 4605 4580 4579
-3 4580 4605 4606
-3 4606 4581 4580
-3 4581 4606 4607
-3 4607 4582 4581
-3 4595 4608 4603
-3 4603 4583 4595
-3 4584 4609 4610
-3 4610 4585 4584
-3 4586 4611 4609
-3 4609 4584 4586
-3 4587 4612 4611
-3 4611 4586 4587
-3 4588 4613 4612
-3 4612 4587 4588
-3 4590 4614 4613
-3 4613 4588 4590
-3 4585 4610 4615
-3 4615 4589 4585
-3 4591 4616 4614
-3 4614 4590 4591
-3 4592 4617 4616
-3 4616 4591 4592
-3 4593 4618 4617
-3 4617 4592 4593
-3 4594 4619 4618
-3 4618 4593 4594
-3 4603 4620 4619
-3 4619 4594 4603
-3 4596 4621 4608
-3 4608 4595 4596
-3 4601 4622 4621
-3 4621 4596 4601
-3 4582 4607 4623
-3 4623 4597 4582
-3 4597 4623 4624
-3 4624 4598 4597
-3 4598 4624 4625
-3 4625 4599 4598
-3 4599 4625 4626
-3 4626 4600 4599
-3 4600 4626 4622
-3 4622 4601 4600
-3 4589 4615 4627
-3 4627 4602 4589
-3 4608 4628 4620
-3 4620 4603 4608
-3 4602 4627 4629
-3 4629 4604 4602
-3 4604 4629 4630
-3 4630 4605 4604
-3 4605 4630 4631
-3 4631 4606 4605
-3 4606 4631 4632
-3 4632 4607 4606
-3 4621 4633 4628
-3 4628 4608 4621
-3 4611 4634 4635
-3 4635 4609 4611
-3 4609 4635 4636
-3 4636 4610 4609
-3 4612 4637 4634
-3 4634 4611 4612
-3 4613 4638 4637
-3 4637 4612 4613
-3 4614 4639 4638
-3 4638 4613 4614
-3 4616 4640 4639
-3 4639 4614 4616
-3 4610 4636 4641
-3 4641 4615 4610
-3 4617 4642 4640
-3 4640 4616 4617
-3 4618 4643 4642
-3 4642 4617 4618
-3 4619 4644 4643
-3 4643 4618 4619
-3 4620 4645 4644
-3 4644 4619 4620
-3 4628 4646 4645
-3 4645 4620 4628
-3 4622 4647 4633
-3 4633 4621 4622
-3 4626 4648 4647
-3 4647 4622 4626
-3 4607 4632 4649
-3 4649 4623 4607
-3 4623 4649 4650
-3 4650 4624 4623
-3 4624 4650 4651
-3 4651 4625 4624
-3 4625 4651 4648
-3 4648 4626 4625
-3 4615 4641 4652
-3 4652 4627 4615
-3 4633 4653 4646
-3 4646 4628 4633
-3 4627 4652 4654
-3 4654 4629 4627
-3 4629 4654 4655
-3 4655 4630 4629
-3 4630 4655 4656
-3 4656 4631 4630
-3 4631 4656 4657
-3 4657 4632 4631
-3 4647 4658 4653
-3 4653 4633 4647
-3 4637 4659 4660
-3 4660 4634 4637
-3 4634 4660 4661
-3 4661 4635 4634
-3 4635 4661 4662
-3 4662 4636 4635
-3 4638 4663 4659
-3 4659 4637 4638
-3 4639 4664 4663
-3 4663 4638 4639
-3 4640 4665 4664
-3 4664 4639 4640
-3 4642 4666 4665
-3 4665 4640 4642
-3 4636 4662 4667
-3 4667 4641 4636
-3 4643 4668 4666
-3 4666 4642 4643
-3 4644 4669 4668
-3 4668 4643 4644
-3 4645 4670 4669
-3 4669 4644 4645
-3 4646 4671 4670
-3 4670 4645 4646
-3 4653 4672 4671
-3 4671 4646 4653
-3 4648 4673 4658
-3 4658 4647 4648
-3 4651 4674 4673
-3 4673 4648 4651
-3 4632 4657 4675
-3 4675 4649 4632
-3 4649 4675 4676
-3 4676 4650 4649
-3 4650 4676 4674
-3 4674 4651 4650
-3 4641 4667 4677
-3 4677 4652 4641
-3 4658 4678 4672
-3 4672 4653 4658
-3 4652 4677 4679
-3 4679 4654 4652
-3 4654 4679 4680
-3 4680 4655 4654
-3 4655 4680 4681
-3 4681 4656 4655
-3 4656 4681 4682
-3 4682 4657 4656
-3 4673 4683 4678
-3 4678 4658 4673
-3 4663 4684 4685
-3 4685 4659 4663
-3 4659 4685 4686
-3 4686 4660 4659
-3 4660 4686 4687
-3 4687 4661 4660
-3 4661 4687 4688
-3 4688 4662 4661
-3 4664 4689 4684
-3 4684 4663 4664
-3 4665 4690 4689
-3 4689 4664 4665
-3 4666 4691 4690
-3 4690 4665 4666
-3 4668 4692 4691
-3 4691 4666 4668
-3 4662 4688 4693
-3 4693 4667 4662
-3 4669 4694 4692
-3 4692 4668 4669
-3 4670 4695 4694
-3 4694 4669 4670
-3 4671 4696 4695
-3 4695 4670 4671
-3 4672 4697 4696
-3 4696 4671 4672
-3 4678 4698 4697
-3 4697 4672 4678
-3 4674 4699 4683
-3 4683 4673 4674
-3 4676 4700 4699
-3 4699 4674 4676
-3 4657 4682 4701
-3 4701 4675 4657
-3 4675 4701 4700
-3 4700 4676 4675
-3 4667 4693 4702
-3 4702 4677 4667
-3 4683 4703 4698
-3 4698 4678 4683
-3 4677 4702 4704
-3 4704 4679 4677
-3 4679 4704 4705
-3 4705 4680 4679
-3 4680 4705 4706
-3 4706 4681 4680
-3 4681 4706 4707
-3 4707 4682 4681
-3 4699 4708 4703
-3 4703 4683 4699
-3 4709 4710 4685
-3 4685 4684 4709
-3 4689 4711 4709
-3 4709 4684 4689
-3 4685 4710 4712
-3 4712 4686 4685
-3 4686 4712 4713
-3 4713 4687 4686
-3 4687 4713 4714
-3 4714 4688 4687
-3 4690 4715 4711
-3 4711 4689 4690
-3 4691 4716 4715
-3 4715 4690 4691
-3 4692 4717 4716
-3 4716 4691 4692
-3 4694 4718 4717
-3 4717 4692 4694
-3 4688 4714 4719
-3 4719 4693 4688
-3 4695 4720 4718
-3 4718 4694 4695
-3 4721 4720 4695
-3 4695 4696 4721
-3 4697 4722 4721
-3 4721 4696 4697
-3 4698 4723 4722
-3 4722 4697 4698
-3 4703 4724 4723
-3 4723 4698 4703
-3 4700 4725 4708
-3 4708 4699 4700
-3 4701 4726 4725
-3 4725 4700 4701
-3 4682 4707 4726
-3 4726 4701 4682
-3 4693 4719 4727
-3 4727 4702 4693
-3 4708 4728 4724
-3 4724 4703 4708
-3 4709 4729 4730
-3 4730 4710 4709
-3 4721 4731 4732
-3 4732 4720 4721
-3 4702 4727 4733
-3 4733 4704 4702
-3 4704 4733 4734
-3 4734 4705 4704
-3 4705 4734 4735
-3 4735 4706 4705
-3 4706 4735 4736
-3 4736 4707 4706
-3 4725 4737 4728
-3 4728 4708 4725
-3 4711 4738 4729
-3 4729 4709 4711
-3 4715 4739 4738
-3 4738 4711 4715
-3 4710 4730 4740
-3 4740 4712 4710
-3 4712 4740 4741
-3 4741 4713 4712
-3 4713 4741 4742
-3 4742 4714 4713
-3 4716 4743 4739
-3 4739 4715 4716
-3 4717 4744 4743
-3 4743 4716 4717
-3 4718 4745 4744
-3 4744 4717 4718
-3 4720 4732 4745
-3 4745 4718 4720
-3 4714 4742 4746
-3 4746 4719 4714
-3 4722 4747 4731
-3 4731 4721 4722
-3 4723 4748 4747
-3 4747 4722 4723
-3 4724 4749 4748
-3 4748 4723 4724
-3 4728 4750 4749
-3 4749 4724 4728
-3 4726 4751 4737
-3 4737 4725 4726
-3 4707 4736 4751
-3 4751 4726 4707
-3 4719 4746 4752
-3 4752 4727 4719
-3 4737 4753 4750
-3 4750 4728 4737
-3 4729 4754 4755
-3 4755 4730 4729
-3 4738 4756 4754
-3 4754 4729 4738
-3 4731 4757 4758
-3 4758 4732 4731
-3 4747 4759 4757
-3 4757 4731 4747
-3 4727 4752 4760
-3 4760 4733 4727
-3 4733 4760 4761
-3 4761 4734 4733
-3 4734 4761 4762
-3 4762 4735 4734
-3 4735 4762 4763
-3 4763 4736 4735
-3 4751 4764 4753
-3 4753 4737 4751
-3 4739 4765 4756
-3 4756 4738 4739
-3 4743 4766 4765
-3 4765 4739 4743
-3 4730 4755 4767
-3 4767 4740 4730
-3 4740 4767 4768
-3 4768 4741 4740
-3 4741 4768 4769
-3 4769 4742 4741
-3 4744 4770 4766
-3 4766 4743 4744
-3 4745 4771 4770
-3 4770 4744 4745
-3 4732 4758 4771
-3 4771 4745 4732
-3 4742 4769 4772
-3 4772 4746 4742
-3 4748 4773 4759
-3 4759 4747 4748
-3 4749 4774 4773
-3 4773 4748 4749
-3 4750 4775 4774
-3 4774 4749 4750
-3 4753 4776 4775
-3 4775 4750 4753
-3 4736 4763 4764
-3 4764 4751 4736
-3 4746 4772 4777
-3 4777 4752 4746
-3 4764 4778 4776
-3 4776 4753 4764
-3 4755 4754 4756
-3 4756 4766 4755
-3 4756 4765 4766
-3 4771 4758 4757
-3 4757 4759 4773
-3 4773 4775 4757
-3 4752 4777 4779
-3 4779 4760 4752
-3 4760 4779 4780
-3 4780 4761 4760
-3 4761 4780 4781
-3 4781 4762 4761
-3 4762 4781 4782
-3 4782 4763 4762
-3 4763 4782 4778
-3 4778 4764 4763
-3 4755 4766 4757
-3 4757 4775 4755
-3 4766 4770 4771
-3 4771 4757 4766
-3 4768 4767 4755
-3 4772 4769 4768
-3 4768 4755 4772
-3 4773 4774 4775
-3 4775 4776 4778
-3 4778 4781 4775
-3 4779 4777 4772
-3 4772 4781 4779
-3 4778 4782 4781
-3 4755 4775 4781
-3 4781 4772 4755
-3 4780 4779 4781
-3 1188 1191 1181
-3 1181 1183 1188
-3 1181 1217 1182
-3 1246 1255 1217
-3 1181 1200 1217
-3 1228 1246 1217
-3 1200 1202 1217
-3 1211 1228 1217
-3 1202 1211 1217
-3 1181 1191 1197
-3 1197 1200 1181
-3 4783 1502 1402
-3 1402 1401 4783
-3 1347 1348 1352
-3 1615 1461 1415
-3 1347 1352 1473
-3 1615 1415 1584
-3 1347 1473 1530
-3 1415 1347 1584
-3 1347 1530 1584
-3 4783 1401 1445
-3 1445 1552 4783
-3 1460 1461 1573
-3 1573 1464 1460
-3 1502 4783 1685
-3 1964 1687 1553
-3 1502 1685 1684
-3 1867 1964 1553
-3 1502 1684 1782
-3 1867 1553 1784
-3 1502 1782 1783
-3 1553 1783 1784
-3 1553 1502 1783
-3 1552 1775 4783
-3 1953 1955 1773
-3 1552 1773 1775
-3 1552 1620 1767
-3 1958 1956 1953
-3 1552 1767 1958
-3 1552 1953 1773
-3 1552 1958 1953
-3 1681 1680 4783
-3 1680 1685 4783
-3 1615 1614 1573
-3 1573 1461 1615
-3 1775 1774 4783
-3 1681 4783 1778
-3 1778 1682 1681
-3 1774 1863 4783
-3 4783 1863 1864
-3 1864 1778 4783
-3 1765 1768 1679
-3 1795 1794 2255
-3 1765 2152 1768
-3 1795 2255 2252
-3 1765 2048 2152
-3 1765 1795 2252
-3 1765 2047 2048
-3 1765 2252 2254
-3 1765 2044 2047
-3 1765 2254 2149
-3 1765 2149 2044
-3 2165 2256 1794
-3 1794 1793 2165
-3 1794 2256 2255
+2.1606684e-07 0.5555695 -0.8314696 0.74999994 0.18749982
+8.940697e-08 0.7071066 -0.70710677 0.75 0.25
+0.13794969 0.6935199 -0.70710677 0.71875 0.25
+0.10838638 0.5448951 -0.8314696 0.71875 0.1875
+5.9604645e-08 0.923879 0.38268346 0.75 0.6250001
+0 0.8314696 0.55557024 0.75 0.6875
+0.16221167 0.8154931 0.55557024 0.71875 0.6875
+0.18023995 0.9061274 0.38268346 0.71875 0.625
+6.7055225e-08 0.38268322 -0.9238795 0.74999994 0.125
+0.07465784 0.3753303 -0.9238795 0.71875 0.12500006
+0 0.98078525 0.19509032 0.75 0.5625
+0.19134171 0.9619397 0.19509032 0.71875 0.5625
+1.4901161e-08 0.1950901 -0.98078525 0.75 0.06249988
+0.038060233 0.19134171 -0.98078525 0.71875 0.06249994
+0 1 0 0.75 0.5
+0.19509032 0.98078525 0 0.71875 0.5
+1.4901161e-08 0.1950901 0.98078525 0.75 0.9375001
+0 0 1 0.734375 1
+0.038060233 0.19134171 0.98078525 0.71875 0.93750006
+0 0 -1 0.734375 0
+0 0.98078525 -0.19509032 0.75 0.4375
+0.19134171 0.9619397 -0.19509032 0.71875 0.4375
+6.7055225e-08 0.38268322 0.9238795 0.74999994 0.87500006
+0.07465784 0.3753303 0.9238795 0.71875 0.875
+5.9604645e-08 0.923879 -0.38268346 0.75 0.37499994
+0.18023995 0.9061274 -0.38268346 0.71875 0.375
+0 0.55557024 0.8314696 0.75 0.8125
+0.10838638 0.5448951 0.8314696 0.71875 0.8125
+0 0.8314696 -0.55557024 0.75 0.31250006
+0.16221167 0.8154931 -0.55557024 0.71875 0.31249994
+8.940697e-08 0.7071066 0.70710677 0.75 0.75000006
+0.13794969 0.6935199 0.70710677 0.71875 0.75
+0.31818962 0.7681776 -0.55557024 0.6875 0.31249994
+0.27059805 0.65328145 -0.70710677 0.6875 0.25
+0.27059805 0.65328145 0.70710677 0.6875 0.75
+0.31818962 0.7681776 0.55557024 0.6875 0.6875
+0.21260753 0.5132799 -0.8314696 0.6875 0.1875
+0.35355335 0.85355335 0.38268346 0.6875 0.625
+0.14644662 0.3535534 -0.9238795 0.6875 0.12500006
+0.37533027 0.9061274 0.19509032 0.6875 0.5625
+0.07465783 0.18023995 -0.98078525 0.6875 0.06249994
+0.38268343 0.92387944 0 0.6875 0.5
+0 0 1 0.703125 1
+0.07465783 0.18023995 0.98078525 0.6875 0.93750006
+0 0 -1 0.703125 0
+0.37533027 0.9061274 -0.19509032 0.6875 0.4375
+0.14644662 0.3535534 0.9238795 0.6875 0.875
+0.35355335 0.85355335 -0.38268346 0.6875 0.375
+0.21260753 0.5132799 0.8314696 0.6875 0.8125
+0 0 1 0.671875 1
+0.10838637 0.16221166 0.98078525 0.65625 0.93750006
+0 0 -1 0.671875 0
+0.10838637 0.16221166 -0.98078525 0.65625 0.06249994
+0.55557024 0.8314695 0 0.65625 0.5
+0.5448951 0.8154931 -0.19509032 0.65625 0.4375
+0.21260753 0.31818965 0.9238795 0.65625 0.875
+0.5132799 0.7681777 -0.38268346 0.65625 0.375
+0.30865827 0.4619397 0.8314696 0.65625 0.8125
+0.4619397 0.6913416 -0.55557024 0.65625 0.31249994
+0.39284748 0.5879378 0.70710677 0.65625 0.75
+0.39284748 0.5879378 -0.70710677 0.65625 0.25
+0.4619397 0.6913416 0.55557024 0.65625 0.6875
+0.30865827 0.4619397 -0.8314696 0.65625 0.1875
+0.5132799 0.7681777 0.38268346 0.65625 0.625
+0.21260753 0.31818965 -0.9238795 0.65625 0.12500006
+0.5448951 0.8154931 0.19509032 0.65625 0.5625
+0.5 0.5 0.70710677 0.625 0.75
+0.5879377 0.58793765 0.55557024 0.625 0.68750006
+0.5 0.5 -0.70710677 0.625 0.25
+0.39284745 0.3928474 -0.8314696 0.625 0.1875
+0.6532814 0.65328145 0.38268346 0.625 0.625
+0.27059805 0.27059802 -0.9238795 0.625 0.125
+0.6935199 0.69351983 0.19509032 0.625 0.5625
+0.13794968 0.13794966 -0.98078525 0.625 0.06249994
+0.70710677 0.7071066 0 0.625 0.5
+0 0 1 0.640625 1
+0.13794968 0.13794966 0.98078525 0.625 0.93750006
+0 0 -1 0.640625 0
+0.6935199 0.69351983 -0.19509032 0.625 0.4375
+0.27059805 0.27059802 0.9238795 0.625 0.875
+0.6532814 0.65328145 -0.38268346 0.625 0.375
+0.39284745 0.3928474 0.8314696 0.625 0.8125
+0.5879377 0.58793765 -0.55557024 0.625 0.31249994
+0.83146954 0.55557 0 0.59375 0.5
+0.8154931 0.544895 -0.19509032 0.59375 0.4375
+0.16221166 0.10838635 0.98078525 0.59375 0.93750006
+0.31818965 0.2126075 0.9238795 0.59375 0.875
+0.7681776 0.51328 -0.38268346 0.59375 0.375
+0.46193972 0.3086582 0.8314696 0.59375 0.8125
+0.69134164 0.46193963 -0.55557024 0.59375 0.31249994
+0.5879378 0.39284748 0.70710677 0.59375 0.75
+0.5879378 0.39284748 -0.70710677 0.59375 0.25
+0.69134164 0.46193963 0.55557024 0.59375 0.6875
+0.46193972 0.3086582 -0.8314696 0.59375 0.1875
+0.7681776 0.51328 0.38268346 0.59375 0.625
+0.31818965 0.2126075 -0.9238795 0.59375 0.125
+0.8154931 0.544895 0.19509032 0.59375 0.5625
+0.16221166 0.10838635 -0.98078525 0.59375 0.06249994
+0 0 1 0.609375 1
+0 0 -1 0.609375 0
+0.65328145 0.27059805 -0.70710677 0.5625 0.25
+0.5132799 0.21260746 -0.8314696 0.5625 0.1875
+0.7681776 0.3181895 0.55557024 0.5625 0.6875
+0.8535533 0.3535534 0.38268346 0.5625 0.625
+0.35355335 0.14644659 -0.9238795 0.5625 0.125
+0.90612733 0.37533015 0.19509032 0.5625 0.5625
+0.18023992 0.07465781 -0.98078525 0.5625 0.06249994
+0.9238794 0.38268322 0 0.5625 0.5
+0 0 1 0.578125 1
+0.18023992 0.07465781 0.98078525 0.5625 0.93750006
+0 0 -1 0.578125 0
+0.90612733 0.37533015 -0.19509032 0.5625 0.4375
+0.35355335 0.14644659 0.9238795 0.5625 0.875
+0.8535533 0.3535534 -0.38268346 0.5625 0.375
+0.5132799 0.21260746 0.8314696 0.5625 0.8125
+0.7681776 0.3181895 -0.55557024 0.5625 0.31249994
+0.65328145 0.27059805 0.70710677 0.5625 0.75
+0.19134167 0.038060214 0.98078525 0.53125 0.93750006
+0.37533024 0.07465781 0.9238795 0.53125 0.875
+0.96193963 0.19134161 -0.19509032 0.53125 0.4375
+0.90612733 0.18023999 -0.38268346 0.53125 0.375
+0.54489505 0.108386315 0.8314696 0.53125 0.8125
+0.815493 0.16221157 -0.55557024 0.53125 0.31249994
+0.6935199 0.1379497 0.70710677 0.53125 0.75
+0.6935199 0.1379497 -0.70710677 0.53125 0.25
+0.815493 0.16221157 0.55557024 0.53125 0.68750006
+0.54489505 0.108386315 -0.8314696 0.53125 0.1875
+0.90612733 0.18023999 0.38268346 0.53125 0.62500006
+0.37533024 0.07465781 -0.9238795 0.53125 0.125
+0.96193963 0.19134161 0.19509032 0.53125 0.5625
+0.19134167 0.038060214 -0.98078525 0.53125 0.06249994
+0.9807851 0.19509013 0 0.53125 0.5
+0 0 1 0.546875 1
+0 0 -1 0.546875 0
+0.8314694 -8.940697e-08 0.55557024 0.49999997 0.68750006
+0.92387944 4.4703484e-08 0.38268346 0.5 0.625
+0.5555701 -5.2154064e-08 -0.8314696 0.49999997 0.1875
+0.3826834 -2.2351742e-08 -0.9238795 0.5 0.125
+0.98078513 -8.940697e-08 0.19509032 0.5 0.5625
+0.19509026 -1.1175871e-08 -0.98078525 0.5 0.06249994
+0.9999997 -1.6391277e-07 0 0.49999997 0.5
+0 0 1 0.515625 1
+0.19509026 -1.1175871e-08 0.98078525 0.5 0.93750006
+0 0 -1 0.515625 0
+0.98078513 -8.940697e-08 -0.19509032 0.5 0.4375
+0.3826834 -2.2351742e-08 0.9238795 0.5 0.875
+0.92387944 4.4703484e-08 -0.38268346 0.5 0.375
+0.5555701 -5.2154064e-08 0.8314696 0.49999997 0.8125
+0.8314694 -8.940697e-08 -0.55557024 0.49999997 0.31249994
+0.7071067 1.4901161e-08 0.70710677 0.5 0.75
+0.7071067 1.4901161e-08 -0.70710677 0.5 0.25
+0.9619396 -0.19134177 -0.19509032 0.46875 0.4375
+0.90612733 -0.1802399 -0.38268346 0.46875 0.375
+0.37533024 -0.07465785 0.9238795 0.46875 0.875
+0.544895 -0.108386405 0.8314696 0.46875 0.8125
+0.8154929 -0.16221173 -0.55557024 0.46875 0.31249994
+0.69351983 -0.13794966 0.70710677 0.46875 0.75
+0.69351983 -0.13794966 -0.70710677 0.46875 0.25
+0.8154929 -0.16221173 0.55557024 0.46875 0.68750006
+0.544895 -0.108386405 -0.8314696 0.46875 0.1875
+0.90612733 -0.1802399 0.38268346 0.46875 0.62500006
+0.37533024 -0.07465785 -0.9238795 0.46875 0.125
+0.9619396 -0.19134177 0.19509032 0.46875 0.5625
+0.19134165 -0.038060233 -0.98078525 0.46875 0.06249994
+0.9807849 -0.19509043 0 0.46874997 0.5
+0 0 1 0.484375 1
+0.19134165 -0.038060233 0.98078525 0.46875 0.93750006
+0 0 -1 0.484375 0
+0.5132798 -0.21260753 -0.8314696 0.43749997 0.1875
+0.35355335 -0.14644662 -0.9238795 0.4375 0.125
+0.8535533 -0.3535533 0.38268346 0.4375 0.62500006
+0.9061272 -0.3753303 0.19509032 0.4375 0.5625
+0.18023989 -0.07465782 -0.98078525 0.4375 0.06249994
+0.9238791 -0.38268346 0 0.43749997 0.5
+0 0 1 0.453125 1
+0.18023989 -0.07465782 0.98078525 0.4375 0.93750006
+0 0 -1 0.453125 0
+0.9061272 -0.3753303 -0.19509032 0.4375 0.4375
+0.35355335 -0.14644662 0.9238795 0.4375 0.875
+0.8535533 -0.3535533 -0.38268346 0.4375 0.375
+0.5132798 -0.21260753 0.8314696 0.43749997 0.81250006
+0.7681775 -0.31818965 -0.55557024 0.43749997 0.31249994
+0.6532814 -0.270598 0.70710677 0.4375 0.75
+0.6532814 -0.270598 -0.70710677 0.4375 0.25
+0.7681775 -0.31818965 0.55557024 0.43749997 0.68750006
+0.7681776 -0.51327986 -0.38268346 0.40625 0.375
+0.69134146 -0.4619397 -0.55557024 0.40625 0.31249994
+0.46193957 -0.30865824 0.8314696 0.40625 0.81250006
+0.5879377 -0.39284742 0.70710677 0.40625 0.75
+0.5879377 -0.39284742 -0.70710677 0.40625 0.25
+0.69134146 -0.4619397 0.55557024 0.40625 0.68750006
+0.46193957 -0.30865824 -0.8314696 0.40625 0.1875
+0.7681776 -0.51327986 0.38268346 0.40625 0.62500006
+0.3181896 -0.21260752 -0.9238795 0.40625 0.125
+0.8154929 -0.54489505 0.19509032 0.40625 0.5625
+0.1622116 -0.10838634 -0.98078525 0.40625 0.06249994
+0.8314691 -0.5555702 0 0.40624997 0.5
+0 0 1 0.421875 1
+0.1622116 -0.10838634 0.98078525 0.40625 0.93750006
+0 0 -1 0.421875 0
+0.8154929 -0.54489505 -0.19509032 0.40625 0.4375
+0.3181896 -0.21260752 0.9238795 0.40625 0.875
+0.27059796 -0.27059802 -0.9238795 0.375 0.125
+0.13794962 -0.13794963 -0.98078525 0.375 0.06249994
+0.6935197 -0.69351983 0.19509032 0.375 0.5625
+0.70710623 -0.70710665 0 0.37499994 0.5
+0 0 1 0.390625 1
+0.13794962 -0.13794963 0.98078525 0.375 0.93750006
+0 0 -1 0.390625 0
+0.6935197 -0.69351983 -0.19509032 0.375 0.4375
+0.27059796 -0.27059802 0.9238795 0.375 0.875
+0.6532814 -0.65328133 -0.38268346 0.375 0.375
+0.39284727 -0.39284742 0.8314696 0.37499997 0.81250006
+0.58793753 -0.58793765 -0.55557024 0.375 0.31249994
+0.49999994 -0.49999994 0.70710677 0.375 0.75
+0.49999994 -0.49999994 -0.70710677 0.375 0.25
+0.58793753 -0.58793765 0.55557024 0.375 0.68750006
+0.39284727 -0.39284742 -0.8314696 0.37499997 0.1875
+0.6532814 -0.65328133 0.38268346 0.375 0.62500006
+0.3086581 -0.46193966 0.8314696 0.34375 0.81250006
+0.39284742 -0.5879377 0.70710677 0.34375 0.75
+0.46193954 -0.6913415 -0.55557024 0.34375 0.31249994
+0.39284742 -0.5879377 -0.70710677 0.34375 0.25
+0.46193954 -0.6913415 0.55557024 0.34375 0.68750006
+0.3086581 -0.46193966 -0.8314696 0.34375 0.1875
+0.5132799 -0.76817757 0.38268346 0.34375 0.62500006
+0.21260744 -0.31818962 -0.9238795 0.34375 0.125
+0.5448949 -0.815493 0.19509032 0.34375 0.5625
+0.108386315 -0.1622116 -0.98078525 0.34375 0.06249994
+0.5555697 -0.83146936 0 0.34374994 0.5
+0 0 1 0.359375 1
+0.108386315 -0.1622116 0.98078525 0.34375 0.93750006
+0 0 -1 0.359375 0
+0.5448949 -0.815493 -0.19509032 0.34375 0.4375
+0.21260744 -0.31818962 0.9238795 0.34375 0.875
+0.5132799 -0.76817757 -0.38268346 0.34375 0.375
+0.37533003 -0.9061272 0.19509032 0.3125 0.5625
+0.38268295 -0.92387915 0 0.31249997 0.5
+0 0 1 0.328125 1
+0.07465778 -0.18023986 0.98078525 0.3125 0.93750006
+0 0 -1 0.328125 0
+0.07465778 -0.18023986 -0.98078525 0.3125 0.06249994
+0.37533003 -0.9061272 -0.19509032 0.3125 0.4375
+0.14644653 -0.35355332 0.9238795 0.3125 0.875
+0.35355335 -0.8535532 -0.38268346 0.3125 0.375
+0.21260735 -0.5132798 0.8314696 0.3125 0.81250006
+0.31818944 -0.7681775 -0.55557024 0.3125 0.31249994
+0.270598 -0.6532814 0.70710677 0.3125 0.75
+0.270598 -0.6532814 -0.70710677 0.3125 0.25
+0.31818944 -0.7681775 0.55557024 0.3125 0.68750006
+0.21260735 -0.5132798 -0.8314696 0.3125 0.1875
+0.35355335 -0.8535532 0.38268346 0.3125 0.62500006
+0.14644653 -0.35355332 -0.9238795 0.3125 0.125
+0.16221152 -0.81549287 -0.55557024 0.28125 0.31249994
+0.13794966 -0.69351983 -0.70710677 0.28125 0.25
+0.13794966 -0.69351983 0.70710677 0.28125 0.75
+0.16221152 -0.81549287 0.55557024 0.28125 0.68750006
+0.10838623 -0.5448949 -0.8314696 0.28124997 0.1875
+0.18023995 -0.9061272 0.38268346 0.28125 0.62500006
+0.07465776 -0.37533018 -0.9238795 0.28125 0.125
+0.19134152 -0.96193945 0.19509032 0.28125 0.5625
+0.038060203 -0.1913416 -0.98078525 0.28125 0.06249994
+0.1950899 -0.9807848 0 0.28124994 0.5
+0 0 1 0.296875 1
+0.038060203 -0.1913416 0.98078525 0.28125 0.93750006
+0 0 -1 0.296875 0
+0.19134152 -0.96193945 -0.19509032 0.28125 0.4375
+0.07465776 -0.37533018 0.9238795 0.28125 0.875
+0.18023995 -0.9061272 -0.38268346 0.28125 0.375
+0.10838623 -0.5448949 0.8314696 0.28124997 0.81250006
+0 0 1 0.265625 1
+-7.450581e-09 -0.19509019 0.98078525 0.25 0.93750006
+0 0 -1 0.265625 0
+-7.450581e-09 -0.19509019 -0.98078525 0.25 0.06249994
+-3.2782555e-07 -0.99999934 0 0.24999997 0.5
+-1.3411045e-07 -0.98078495 -0.19509032 0.24999997 0.4375
+-5.2154064e-08 -0.38268334 0.9238795 0.24999997 0.875
+2.9802322e-08 -0.92387927 -0.38268346 0.25 0.375
+-9.685755e-08 -0.55556995 0.8314696 0.24999997 0.81250006
+-1.0430813e-07 -0.8314693 -0.55557024 0.25 0.31249994
+-1.4901161e-08 -0.70710665 0.70710677 0.25 0.75
+-1.4901161e-08 -0.70710665 -0.70710677 0.25 0.25
+-1.0430813e-07 -0.8314693 0.55557024 0.25 0.68750006
+-9.685755e-08 -0.55556995 -0.8314696 0.24999997 0.1875
+2.9802322e-08 -0.92387927 0.38268346 0.25 0.62500006
+-5.2154064e-08 -0.38268334 -0.9238795 0.24999997 0.125
+-1.3411045e-07 -0.98078495 0.19509032 0.24999997 0.5625
+-0.13794968 -0.6935198 0.70710677 0.21875 0.75
+-0.16221172 -0.8154928 0.55557024 0.21875 0.68750006
+-0.13794968 -0.6935198 -0.70710677 0.21875 0.25
+-0.10838642 -0.5448948 -0.8314696 0.21875 0.1875
+-0.18023987 -0.90612715 0.38268346 0.21875003 0.62500006
+-0.074657865 -0.37533018 -0.9238795 0.21875 0.125
+-0.19134179 -0.9619394 0.19509032 0.21875 0.5625
+-0.038060214 -0.19134158 -0.98078525 0.21875 0.06249994
+-0.19509052 -0.98078454 0 0.21874994 0.5
+0 0 1 0.234375 1
+-0.038060214 -0.19134158 0.98078525 0.21875 0.93750006
+0 0 -1 0.234375 0
+-0.19134179 -0.9619394 -0.19509032 0.21875 0.4375
+-0.074657865 -0.37533018 0.9238795 0.21875 0.875
+-0.18023987 -0.90612715 -0.38268346 0.21875003 0.375
+-0.10838642 -0.5448948 0.8314696 0.21875 0.81250006
+-0.16221172 -0.8154928 -0.55557024 0.21875 0.31249994
+-0.3826835 -0.9238787 0 0.18749997 0.5
+-0.37533027 -0.90612704 -0.19509032 0.1875 0.4375
+-0.07465778 -0.18023983 0.98078525 0.1875 0.93750006
+-0.14644662 -0.3535533 0.9238795 0.1875 0.875
+-0.35355324 -0.8535531 -0.38268346 0.1875 0.375
+-0.2126075 -0.5132796 0.8314696 0.18749997 0.81250006
+-0.31818962 -0.7681774 -0.55557024 0.1875 0.31249994
+-0.270598 -0.65328133 0.70710677 0.1875 0.75
+-0.270598 -0.65328133 -0.70710677 0.1875 0.25
+-0.31818962 -0.7681774 0.55557024 0.1875 0.68750006
+-0.2126075 -0.5132796 -0.8314696 0.18749997 0.1875
+-0.35355324 -0.8535531 0.38268346 0.1875 0.62500006
+-0.14644662 -0.3535533 -0.9238795 0.1875 0.125
+-0.37533027 -0.90612704 0.19509032 0.1875 0.5625
+-0.07465778 -0.18023983 -0.98078525 0.1875 0.06249994
+0 0 1 0.203125 1
+0 0 -1 0.203125 0
+-0.39284742 -0.58793765 -0.70710677 0.15625003 0.25
+-0.30865818 -0.4619394 -0.8314696 0.15624997 0.18749994
+-0.46193963 -0.69134134 0.55557024 0.15624997 0.68750006
+-0.51327974 -0.7681775 0.38268346 0.15625003 0.62500006
+-0.2126075 -0.31818953 -0.9238795 0.15624997 0.125
+-0.54489505 -0.81549275 0.19509032 0.15624997 0.5625
+-0.1083863 -0.16221155 -0.98078525 0.15625003 0.06249994
+-0.5555701 -0.83146876 0 0.15624994 0.5
+0 0 1 0.171875 1
+-0.1083863 -0.16221155 0.98078525 0.15625003 0.93750006
+0 0 -1 0.171875 0
+-0.54489505 -0.81549275 -0.19509032 0.15624997 0.4375
+-0.2126075 -0.31818953 0.9238795 0.15624997 0.875
+-0.51327974 -0.7681775 -0.38268346 0.15625003 0.375
+-0.30865818 -0.4619394 0.8314696 0.15624997 0.8125001
+-0.46193963 -0.69134134 -0.55557024 0.15624997 0.31249994
+-0.39284742 -0.58793765 0.70710677 0.15625003 0.75
+-0.6935198 -0.69351953 -0.19509032 0.12499997 0.4375
+-0.6532812 -0.6532813 -0.38268346 0.125 0.375
+-0.270598 -0.27059793 0.9238795 0.125 0.875
+-0.3928473 -0.39284712 0.8314696 0.12499997 0.8125001
+-0.5879376 -0.5879374 -0.55557024 0.12499997 0.31249994
+-0.4999999 -0.49999988 0.70710677 0.125 0.75
+-0.4999999 -0.49999988 -0.70710677 0.125 0.25
+-0.5879376 -0.5879374 0.55557024 0.12499997 0.68750006
+-0.3928473 -0.39284712 -0.8314696 0.12499997 0.18749994
+-0.6532812 -0.6532813 0.38268346 0.125 0.62500006
+-0.270598 -0.27059793 -0.9238795 0.125 0.125
+-0.6935198 -0.69351953 0.19509032 0.12499997 0.5625
+-0.13794959 -0.13794957 -0.98078525 0.125 0.06249994
+-0.7071065 -0.70710593 0 0.12499994 0.5
+0 0 1 0.14062497 1
+-0.13794959 -0.13794957 0.98078525 0.125 0.93750006
+0 0 -1 0.14062497 0
+-0.4619395 -0.30865794 -0.8314696 0.09374997 0.18749994
+-0.31818956 -0.21260741 -0.9238795 0.09375 0.125
+-0.76817745 -0.5132798 0.38268346 0.09375 0.6250001
+-0.8154929 -0.5448947 0.19509032 0.09374997 0.5625
+-0.16221155 -0.10838628 -0.98078525 0.09375 0.06249994
+-0.8314691 -0.5555694 0 0.09374991 0.5
+0 0 1 0.109375 1
+-0.16221155 -0.10838628 0.98078525 0.09375 0.93750006
+0 0 -1 0.109375 0
+-0.8154929 -0.5448947 -0.19509032 0.09374997 0.4375
+-0.31818956 -0.21260741 0.9238795 0.09375 0.875
+-0.76817745 -0.5132798 -0.38268346 0.09375 0.37499994
+-0.4619395 -0.30865794 0.8314696 0.09374997 0.8125001
+-0.69134146 -0.46193942 -0.55557024 0.09375 0.31249994
+-0.58793765 -0.39284736 0.70710677 0.09375 0.75000006
+-0.58793765 -0.39284736 -0.70710677 0.09375 0.25
+-0.69134146 -0.46193942 0.55557024 0.09375 0.68750006
+-0.35355327 -0.14644651 0.9238795 0.0625 0.875
+-0.5132796 -0.21260723 0.8314696 0.0625 0.8125001
+-0.85355306 -0.35355327 -0.38268346 0.06250003 0.37499994
+-0.7681774 -0.31818932 -0.55557024 0.0625 0.31249988
+-0.65328133 -0.27059796 0.70710677 0.06250003 0.75
+-0.65328133 -0.27059796 -0.70710677 0.06250003 0.25
+-0.7681774 -0.31818932 0.55557024 0.0625 0.6875001
+-0.5132796 -0.21260723 -0.8314696 0.0625 0.18749994
+-0.85355306 -0.35355327 0.38268346 0.06250003 0.6250001
+-0.35355327 -0.14644651 -0.9238795 0.0625 0.125
+-0.90612715 -0.37532988 0.19509032 0.0625 0.5625
+-0.18023981 -0.07465775 -0.98078525 0.0625 0.06249994
+-0.92387885 -0.38268268 0 0.06249994 0.5
+0 0 1 0.078125 1
+-0.18023981 -0.07465775 0.98078525 0.0625 0.93750006
+0 0 -1 0.078125 0
+-0.90612715 -0.37532988 -0.19509032 0.0625 0.4375
+-0.9061271 -0.18023989 0.38268346 0.03125 0.62500006
+-0.9619394 -0.19134139 0.19509032 0.03124997 0.5625
+-0.37533012 -0.07465775 -0.9238795 0.03124997 0.125
+-0.19134155 -0.03806018 -0.98078525 0.03125 0.06249994
+-0.9807844 -0.1950897 0 0.03124994 0.5
+0 0 1 0.04687503 1
+-0.19134155 -0.03806018 0.98078525 0.03125 0.93750006
+0 0 -1 0.04687503 0
+-0.9619394 -0.19134139 -0.19509032 0.03124997 0.4375
+-0.37533012 -0.07465775 0.9238795 0.03124997 0.87500006
+-0.9061271 -0.18023989 -0.38268346 0.03125 0.375
+-0.5448947 -0.10838615 0.8314696 0.03124997 0.8125001
+-0.81549275 -0.16221143 -0.55557024 0.03124997 0.31249994
+-0.6935198 -0.13794963 0.70710677 0.03125 0.75
+-0.6935198 -0.13794963 -0.70710677 0.03125 0.25
+-0.81549275 -0.16221143 0.55557024 0.03124997 0.68750006
+-0.5448947 -0.10838615 -0.8314696 0.03124997 0.18749994
+-0.92387915 1.4901161e-08 -0.38268346 0 0.37499994
+-0.8314692 1.6391277e-07 -0.55557024 0 0.31249994
+-0.55556977 1.4901161e-07 0.8314696 0 0.8125001
+-0.7071066 2.9802322e-08 0.70710677 0 0.75000006
+-0.7071066 2.9802322e-08 -0.70710677 0 0.25
+-0.8314692 1.6391277e-07 0.55557024 0 0.68750006
+-0.55556977 1.4901161e-07 -0.8314696 0 0.18749994
+-0.92387915 1.4901161e-08 0.38268346 0 0.6250001
+-0.38268325 5.2154064e-08 -0.9238795 0 0.125
+-0.98078483 2.682209e-07 0.19509032 0 0.5625
+-0.19509014 1.8626451e-08 -0.98078525 0 0.06249994
+-0.99999905 4.4703484e-07 0 0 0.5
+0 0 1 0.015625 1
+-0.19509014 1.8626451e-08 0.98078525 0 0.93750006
+0 0 -1 0.015625 0
+-0.98078483 2.682209e-07 -0.19509032 0 0.4375
+-0.38268325 5.2154064e-08 0.9238795 0 0.87500006
+-0.19509014 1.8626451e-08 -0.98078525 1 0.06249994
+-0.38268325 5.2154064e-08 -0.9238795 1 0.125
+-0.3753301 0.07465785 -0.9238795 0.96874994 0.125
+-0.19134153 0.038060218 -0.98078525 0.96875 0.06249994
+-0.99999905 4.4703484e-07 0 1 0.5
+-0.98078483 2.682209e-07 0.19509032 1 0.5625
+-0.9619392 0.19134189 0.19509032 0.96874994 0.56250006
+-0.98078424 0.19509058 0 0.9687499 0.5
+-0.19509014 1.8626451e-08 0.98078525 1 0.93750006
+0 0 1 0.984375 1
+-0.19134153 0.038060218 0.98078525 0.96875 0.93750006
+0 0 -1 0.984375 0
+-0.98078483 2.682209e-07 -0.19509032 1 0.4375
+-0.9619392 0.19134189 -0.19509032 0.96874994 0.4375
+-0.38268325 5.2154064e-08 0.9238795 1 0.87500006
+-0.3753301 0.07465785 0.9238795 0.96874994 0.87500006
+-0.92387915 1.4901161e-08 -0.38268346 1 0.37499994
+-0.90612704 0.1802399 -0.38268346 0.96875 0.37499994
+-0.55556977 1.4901161e-07 0.8314696 1 0.8125001
+-0.54489464 0.108386435 0.8314696 0.96874994 0.8125001
+-0.8314692 1.6391277e-07 -0.55557024 1 0.31249994
+-0.81549263 0.16221176 -0.55557024 0.96874994 0.31249988
+-0.7071066 2.9802322e-08 0.70710677 1 0.75000006
+-0.6935197 0.13794969 0.70710677 0.96875 0.75000006
+-0.7071066 2.9802322e-08 -0.70710677 1 0.25
+-0.6935197 0.13794969 -0.70710677 0.96875 0.25
+-0.8314692 1.6391277e-07 0.55557024 1 0.68750006
+-0.81549263 0.16221176 0.55557024 0.96874994 0.6875001
+-0.55556977 1.4901161e-07 -0.8314696 1 0.18749994
+-0.54489464 0.108386435 -0.8314696 0.96874994 0.18749994
+-0.92387915 1.4901161e-08 0.38268346 1 0.6250001
+-0.90612704 0.1802399 0.38268346 0.96875 0.6250001
+-0.51327944 0.21260749 0.8314696 0.93749994 0.8125001
+-0.6532813 0.270598 0.70710677 0.9375 0.75000006
+-0.7681772 0.31818962 -0.55557024 0.93749994 0.31249988
+-0.6532813 0.270598 -0.70710677 0.9375 0.25
+-0.7681772 0.31818962 0.55557024 0.93749994 0.6875001
+-0.51327944 0.21260749 -0.8314696 0.93749994 0.18749994
+-0.853553 0.35355324 0.38268346 0.9375 0.6250001
+-0.3535532 0.14644659 -0.9238795 0.9375 0.125
+-0.90612686 0.37533033 0.19509032 0.93749994 0.56250006
+-0.18023978 0.07465778 -0.98078525 0.9375 0.06249994
+-0.92387843 0.3826835 0 0.9374999 0.5
+0 0 1 0.953125 1
+-0.18023978 0.07465778 0.98078525 0.9375 0.93750006
+0 0 -1 0.953125 0
+-0.90612686 0.37533033 -0.19509032 0.93749994 0.4375
+-0.3535532 0.14644659 0.9238795 0.9375 0.87500006
+-0.853553 0.35355324 -0.38268346 0.9375 0.37499994
+-0.8154926 0.54489505 0.19509032 0.90625 0.56250006
+-0.83146846 0.55557007 0 0.90624994 0.5
+0 0 1 0.921875 1
+-0.16221151 0.10838629 0.98078525 0.90625 0.93750006
+0 0 -1 0.921875 0
+-0.16221151 0.10838629 -0.98078525 0.90625 0.06249994
+-0.8154926 0.54489505 -0.19509032 0.90625 0.4375
+-0.31818944 0.21260746 0.9238795 0.90625 0.87500006
+-0.7681774 0.51327974 -0.38268346 0.90625 0.37499994
+-0.46193922 0.30865815 0.8314696 0.90624994 0.8125001
+-0.69134116 0.46193963 -0.55557024 0.90625 0.31249988
+-0.5879376 0.3928474 0.70710677 0.90625 0.75000006
+-0.5879376 0.3928474 -0.70710677 0.90625 0.25
+-0.69134116 0.46193963 0.55557024 0.90625 0.6875001
+-0.46193922 0.30865815 -0.8314696 0.90624994 0.18749994
+-0.7681774 0.51327974 0.38268346 0.90625 0.6250001
+-0.31818944 0.21260746 -0.9238795 0.90625 0.125
+-0.58793724 0.58793753 -0.55557024 0.87499994 0.31249988
+-0.49999982 0.49999988 -0.70710677 0.875 0.25
+-0.49999982 0.49999988 0.70710677 0.875 0.75000006
+-0.58793724 0.58793753 0.55557024 0.87499994 0.6875001
+-0.39284694 0.39284724 -0.8314696 0.8749999 0.18749994
+-0.65328115 0.65328115 0.38268346 0.875 0.6250001
+-0.27059788 0.27059793 -0.9238795 0.875 0.125
+-0.69351935 0.6935197 0.19509032 0.87499994 0.56250006
+-0.13794954 0.13794957 -0.98078525 0.875 0.06249994
+-0.7071057 0.70710635 0 0.8749999 0.5
+0 0 1 0.890625 1
+-0.13794954 0.13794957 0.98078525 0.875 0.93750006
+0 0 -1 0.890625 0
+-0.69351935 0.6935197 -0.19509032 0.87499994 0.4375
+-0.27059788 0.27059793 0.9238795 0.875 0.87500006
+-0.65328115 0.65328115 -0.38268346 0.875 0.37499994
+-0.39284694 0.39284724 0.8314696 0.8749999 0.8125001
+0 0 -1 0.859375 0
+-0.10838625 0.16221152 -0.98078525 0.84375 0.06249994
+-0.55556923 0.83146894 0 0.8437499 0.5
+-0.5448946 0.8154928 -0.19509032 0.84374994 0.4375
+-0.10838625 0.16221152 0.98078525 0.84375 0.93750006
+-0.21260737 0.3181895 0.9238795 0.84375 0.87500006
+-0.5132797 0.7681774 -0.38268346 0.84375 0.37499994
+-0.3086578 0.46193942 0.8314696 0.84374994 0.8125002
+-0.46193928 0.69134134 -0.55557024 0.84374994 0.31249988
+-0.3928473 0.58793765 0.70710677 0.84375 0.75000006
+-0.3928473 0.58793765 -0.70710677 0.84375 0.25
+-0.46193928 0.69134134 0.55557024 0.84374994 0.6875001
+-0.3086578 0.46193942 -0.8314696 0.84374994 0.18749982
+-0.5132797 0.7681774 0.38268346 0.84375 0.6250001
+-0.21260737 0.3181895 -0.9238795 0.84375 0.125
+-0.5448946 0.8154928 0.19509032 0.84374994 0.56250006
+0 0 1 0.859375 1
+-0.2705979 0.65328133 -0.70710677 0.8125 0.25
+-0.2126071 0.5132795 -0.8314696 0.81249994 0.18749982
+-0.3181892 0.7681773 0.55557024 0.81249994 0.6875001
+-0.35355318 0.853553 0.38268346 0.8125 0.6250001
+-0.14644648 0.35355324 -0.9238795 0.8125 0.125
+-0.3753298 0.906127 0.19509032 0.81249994 0.56250006
+-0.07465774 0.18023977 -0.98078525 0.8125 0.06249988
+-0.38268256 0.9238786 0 0.8124999 0.5
+0 0 1 0.828125 1
+-0.07465774 0.18023977 0.98078525 0.8125 0.9375001
+0 0 -1 0.828125 0
+-0.3753298 0.906127 -0.19509032 0.81249994 0.4375
+-0.14644648 0.35355324 0.9238795 0.8125 0.87500006
+-0.35355318 0.853553 -0.38268346 0.8125 0.37499994
+-0.2126071 0.5132795 0.8314696 0.81249994 0.8125002
+-0.3181892 0.7681773 -0.55557024 0.81249994 0.31249988
+-0.2705979 0.65328133 0.70710677 0.8125 0.75000006
+-0.038060177 0.1913415 0.98078525 0.78125 0.9375001
+-0.07465773 0.3753301 0.9238795 0.78124994 0.87500006
+-0.19134133 0.9619392 -0.19509032 0.78124994 0.4375
+-0.18023981 0.906127 -0.38268346 0.78125 0.37499994
+-0.10838604 0.5448945 0.8314696 0.78124994 0.8125002
+-0.16221133 0.8154926 -0.55557024 0.78124994 0.31249988
+-0.13794957 0.6935198 0.70710677 0.78125 0.75
+-0.13794957 0.6935198 -0.70710677 0.78125 0.25
+-0.16221133 0.8154926 0.55557024 0.78124994 0.6875001
+-0.10838604 0.5448945 -0.8314696 0.78124994 0.18749982
+-0.18023981 0.906127 0.38268346 0.78125 0.6250001
+-0.07465773 0.3753301 -0.9238795 0.78124994 0.125
+-0.19134133 0.9619392 0.19509032 0.78124994 0.56250006
+-0.038060177 0.1913415 -0.98078525 0.78125 0.06249988
+-0.19508962 0.9807842 0 0.7812499 0.5
+0 0 1 0.796875 1
+0 0 -1 0.796875 0
+0 0 1 0.765625 1
+0 0 -1 0.765625 0
+4 0 1 2 3
+4 4 5 6 7
+4 8 0 3 9
+4 10 4 7 11
+4 12 8 9 13
+4 14 10 11 15
+3 16 17 18
+3 19 12 13
+4 20 14 15 21
+4 22 16 18 23
+4 24 20 21 25
+4 26 22 23 27
+4 28 24 25 29
+4 30 26 27 31
+4 1 28 29 2
+4 5 30 31 6
+4 2 29 32 33
+4 6 31 34 35
+4 3 2 33 36
+4 7 6 35 37
+4 9 3 36 38
+4 11 7 37 39
+4 13 9 38 40
+4 15 11 39 41
+3 18 42 43
+3 44 13 40
+4 21 15 41 45
+4 23 18 43 46
+4 25 21 45 47
+4 27 23 46 48
+4 29 25 47 32
+4 31 27 48 34
+3 43 49 50
+3 51 40 52
+4 45 41 53 54
+4 46 43 50 55
+4 47 45 54 56
+4 48 46 55 57
+4 32 47 56 58
+4 34 48 57 59
+4 33 32 58 60
+4 35 34 59 61
+4 36 33 60 62
+4 37 35 61 63
+4 38 36 62 64
+4 39 37 63 65
+4 40 38 64 52
+4 41 39 65 53
+4 61 59 66 67
+4 62 60 68 69
+4 63 61 67 70
+4 64 62 69 71
+4 65 63 70 72
+4 52 64 71 73
+4 53 65 72 74
+3 50 75 76
+3 77 52 73
+4 54 53 74 78
+4 55 50 76 79
+4 56 54 78 80
+4 57 55 79 81
+4 58 56 80 82
+4 59 57 81 66
+4 60 58 82 68
+4 78 74 83 84
+4 79 76 85 86
+4 80 78 84 87
+4 81 79 86 88
+4 82 80 87 89
+4 66 81 88 90
+4 68 82 89 91
+4 67 66 90 92
+4 69 68 91 93
+4 70 67 92 94
+4 71 69 93 95
+4 72 70 94 96
+4 73 71 95 97
+4 74 72 96 83
+3 76 98 85
+3 99 73 97
+4 93 91 100 101
+4 94 92 102 103
+4 95 93 101 104
+4 96 94 103 105
+4 97 95 104 106
+4 83 96 105 107
+3 85 108 109
+3 110 97 106
+4 84 83 107 111
+4 86 85 109 112
+4 87 84 111 113
+4 88 86 112 114
+4 89 87 113 115
+4 90 88 114 116
+4 91 89 115 100
+4 92 90 116 102
+4 112 109 117 118
+4 113 111 119 120
+4 114 112 118 121
+4 115 113 120 122
+4 116 114 121 123
+4 100 115 122 124
+4 102 116 123 125
+4 101 100 124 126
+4 103 102 125 127
+4 104 101 126 128
+4 105 103 127 129
+4 106 104 128 130
+4 107 105 129 131
+3 109 132 117
+3 133 106 130
+4 111 107 131 119
+4 127 125 134 135
+4 128 126 136 137
+4 129 127 135 138
+4 130 128 137 139
+4 131 129 138 140
+3 117 141 142
+3 143 130 139
+4 119 131 140 144
+4 118 117 142 145
+4 120 119 144 146
+4 121 118 145 147
+4 122 120 146 148
+4 123 121 147 149
+4 124 122 148 150
+4 125 123 149 134
+4 126 124 150 136
+4 146 144 151 152
+4 147 145 153 154
+4 148 146 152 155
+4 149 147 154 156
+4 150 148 155 157
+4 134 149 156 158
+4 136 150 157 159
+4 135 134 158 160
+4 137 136 159 161
+4 138 135 160 162
+4 139 137 161 163
+4 140 138 162 164
+3 142 165 166
+3 167 139 163
+4 144 140 164 151
+4 145 142 166 153
+4 161 159 168 169
+4 162 160 170 171
+4 163 161 169 172
+4 164 162 171 173
+3 166 174 175
+3 176 163 172
+4 151 164 173 177
+4 153 166 175 178
+4 152 151 177 179
+4 154 153 178 180
+4 155 152 179 181
+4 156 154 180 182
+4 157 155 181 183
+4 158 156 182 184
+4 159 157 183 168
+4 160 158 184 170
+4 181 179 185 186
+4 182 180 187 188
+4 183 181 186 189
+4 184 182 188 190
+4 168 183 189 191
+4 170 184 190 192
+4 169 168 191 193
+4 171 170 192 194
+4 172 169 193 195
+4 173 171 194 196
+3 175 197 198
+3 199 172 195
+4 177 173 196 200
+4 178 175 198 201
+4 179 177 200 185
+4 180 178 201 187
+4 195 193 202 203
+4 196 194 204 205
+3 198 206 207
+3 208 195 203
+4 200 196 205 209
+4 201 198 207 210
+4 185 200 209 211
+4 187 201 210 212
+4 186 185 211 213
+4 188 187 212 214
+4 189 186 213 215
+4 190 188 214 216
+4 191 189 215 217
+4 192 190 216 218
+4 193 191 217 202
+4 194 192 218 204
+4 214 212 219 220
+4 215 213 221 222
+4 216 214 220 223
+4 217 215 222 224
+4 218 216 223 225
+4 202 217 224 226
+4 204 218 225 227
+4 203 202 226 228
+4 205 204 227 229
+3 207 230 231
+3 232 203 228
+4 209 205 229 233
+4 210 207 231 234
+4 211 209 233 235
+4 212 210 234 219
+4 213 211 235 221
+4 229 227 236 237
+3 231 238 239
+3 240 228 241
+4 233 229 237 242
+4 234 231 239 243
+4 235 233 242 244
+4 219 234 243 245
+4 221 235 244 246
+4 220 219 245 247
+4 222 221 246 248
+4 223 220 247 249
+4 224 222 248 250
+4 225 223 249 251
+4 226 224 250 252
+4 227 225 251 236
+4 228 226 252 241
+4 248 246 253 254
+4 249 247 255 256
+4 250 248 254 257
+4 251 249 256 258
+4 252 250 257 259
+4 236 251 258 260
+4 241 252 259 261
+4 237 236 260 262
+3 239 263 264
+3 265 241 261
+4 242 237 262 266
+4 243 239 264 267
+4 244 242 266 268
+4 245 243 267 269
+4 246 244 268 253
+4 247 245 269 255
+3 264 270 271
+3 272 261 273
+4 266 262 274 275
+4 267 264 271 276
+4 268 266 275 277
+4 269 267 276 278
+4 253 268 277 279
+4 255 269 278 280
+4 254 253 279 281
+4 256 255 280 282
+4 257 254 281 283
+4 258 256 282 284
+4 259 257 283 285
+4 260 258 284 286
+4 261 259 285 273
+4 262 260 286 274
+4 282 280 287 288
+4 283 281 289 290
+4 284 282 288 291
+4 285 283 290 292
+4 286 284 291 293
+4 273 285 292 294
+4 274 286 293 295
+3 271 296 297
+3 298 273 294
+4 275 274 295 299
+4 276 271 297 300
+4 277 275 299 301
+4 278 276 300 302
+4 279 277 301 303
+4 280 278 302 287
+4 281 279 303 289
+4 299 295 304 305
+4 300 297 306 307
+4 301 299 305 308
+4 302 300 307 309
+4 303 301 308 310
+4 287 302 309 311
+4 289 303 310 312
+4 288 287 311 313
+4 290 289 312 314
+4 291 288 313 315
+4 292 290 314 316
+4 293 291 315 317
+4 294 292 316 318
+4 295 293 317 304
+3 297 319 306
+3 320 294 318
+4 314 312 321 322
+4 315 313 323 324
+4 316 314 322 325
+4 317 315 324 326
+4 318 316 325 327
+4 304 317 326 328
+3 306 329 330
+3 331 318 327
+4 305 304 328 332
+4 307 306 330 333
+4 308 305 332 334
+4 309 307 333 335
+4 310 308 334 336
+4 311 309 335 337
+4 312 310 336 321
+4 313 311 337 323
+4 334 332 338 339
+4 335 333 340 341
+4 336 334 339 342
+4 337 335 341 343
+4 321 336 342 344
+4 323 337 343 345
+4 322 321 344 346
+4 324 323 345 347
+4 325 322 346 348
+4 326 324 347 349
+4 327 325 348 350
+4 328 326 349 351
+3 330 352 353
+3 354 327 350
+4 332 328 351 338
+4 333 330 353 340
+4 348 346 355 356
+4 349 347 357 358
+4 350 348 356 359
+4 351 349 358 360
+3 353 361 362
+3 363 350 359
+4 338 351 360 364
+4 340 353 362 365
+4 339 338 364 366
+4 341 340 365 367
+4 342 339 366 368
+4 343 341 367 369
+4 344 342 368 370
+4 345 343 369 371
+4 346 344 370 355
+4 347 345 371 357
+4 367 365 372 373
+4 368 366 374 375
+4 369 367 373 376
+4 370 368 375 377
+4 371 369 376 378
+4 355 370 377 379
+4 357 371 378 380
+4 356 355 379 381
+4 358 357 380 382
+4 359 356 381 383
+4 360 358 382 384
+3 362 385 386
+3 387 359 383
+4 364 360 384 388
+4 365 362 386 372
+4 366 364 388 374
+4 382 380 389 390
+4 383 381 391 392
+4 384 382 390 393
+3 386 394 395
+3 396 383 392
+4 388 384 393 397
+4 372 386 395 398
+4 374 388 397 399
+4 373 372 398 400
+4 375 374 399 401
+4 376 373 400 402
+4 377 375 401 403
+4 378 376 402 404
+4 379 377 403 405
+4 380 378 404 389
+4 381 379 405 391
+4 401 399 406 407
+4 402 400 408 409
+4 403 401 407 410
+4 404 402 409 411
+4 405 403 410 412
+4 389 404 411 413
+4 391 405 412 414
+4 390 389 413 415
+4 392 391 414 416
+4 393 390 415 417
+3 395 418 419
+3 420 392 416
+4 397 393 417 421
+4 398 395 419 422
+4 399 397 421 406
+4 400 398 422 408
+4 423 424 425 426
+4 427 428 429 430
+3 431 432 433
+3 434 423 426
+4 435 427 430 436
+4 437 431 433 438
+4 439 435 436 440
+4 441 437 438 442
+4 443 439 440 444
+4 445 441 442 446
+4 447 443 444 448
+4 449 445 446 450
+4 451 447 448 452
+4 453 449 450 454
+4 424 451 452 425
+4 428 453 454 429
+4 446 442 455 456
+4 448 444 457 458
+4 450 446 456 459
+4 452 448 458 460
+4 454 450 459 461
+4 425 452 460 462
+4 429 454 461 463
+4 426 425 462 464
+4 430 429 463 465
+3 433 466 467
+3 468 426 464
+4 436 430 465 469
+4 438 433 467 470
+4 440 436 469 471
+4 442 438 470 455
+4 444 440 471 457
+4 465 463 472 473
+3 467 474 475
+3 476 464 477
+4 469 465 473 478
+4 470 467 475 479
+4 471 469 478 480
+4 455 470 479 481
+4 457 471 480 482
+4 456 455 481 483
+4 458 457 482 484
+4 459 456 483 485
+4 460 458 484 486
+4 461 459 485 487
+4 462 460 486 488
+4 463 461 487 472
+4 464 462 488 477
+4 484 482 489 490
+4 485 483 491 492
+4 486 484 490 493
+4 487 485 492 494
+4 488 486 493 495
+4 472 487 494 496
+4 477 488 495 497
+4 473 472 496 498
+3 475 499 500
+3 501 477 497
+4 478 473 498 502
+4 479 475 500 503
+4 480 478 502 504
+4 481 479 503 505
+4 482 480 504 489
+4 483 481 505 491
+3 506 497 507
+4 502 498 508 509
+4 503 500 510 511
+4 504 502 509 512
+4 505 503 511 513
+4 489 504 512 514
+4 491 505 513 515
+4 490 489 514 516
+4 492 491 515 517
+4 493 490 516 518
+4 494 492 517 519
+4 495 493 518 520
+4 496 494 519 521
+4 497 495 520 507
+4 498 496 521 508
+3 500 522 510
+4 518 516 523 524
+4 519 517 525 526
+4 520 518 524 527
+4 521 519 526 528
+4 507 520 527 529
+4 508 521 528 530
+3 510 531 532
+3 533 507 529
+4 509 508 530 534
+4 511 510 532 535
+4 512 509 534 536
+4 513 511 535 537
+4 514 512 536 538
+4 515 513 537 539
+4 516 514 538 523
+4 517 515 539 525
+4 535 532 540 541
+4 536 534 542 543
+4 537 535 541 544
+4 538 536 543 545
+4 539 537 544 546
+4 523 538 545 547
+4 525 539 546 548
+4 524 523 547 549
+4 526 525 548 550
+4 527 524 549 551
+4 528 526 550 552
+4 529 527 551 553
+4 530 528 552 554
+3 532 555 540
+3 556 529 553
+4 534 530 554 542
+4 550 548 5 4
+4 551 549 0 8
+4 552 550 4 10
+4 553 551 8 12
+4 554 552 10 14
+3 540 557 16
+3 558 553 12
+4 542 554 14 20
+4 541 540 16 22
+4 543 542 20 24
+4 544 541 22 26
+4 545 543 24 28
+4 546 544 26 30
+4 547 545 28 1
+4 548 546 30 5
+4 549 547 1 0
diff --git a/src/meshes/uvsphere.ts b/src/meshes/uvsphere.ts
index f0e04c5..2cde251 100644
--- a/src/meshes/uvsphere.ts
+++ b/src/meshes/uvsphere.ts
@@ -1,28 +1,12 @@
-
import { Mesh } from "../renderer/mesh";
// prettier-ignore
-const positions = new Float32Array([0.486688,0.030432953,8.555168,0.490792,0.09375695,8.555167,0.031389,0.09375695,8.5715275,0.474708,-0.030000048,8.555167,0.785939,-0.011186037,8.508925,0.79274,0.09375697,8.508925,0.486688,0.15708098,8.555167,0.45535,-0.08704305,8.555168,0.766084,-0.111338034,8.508925,0.953581,-0.03449902,8.437075,0.961895,0.09375698,8.437074,0.785939,0.19870096,8.508925,0.474708,0.21751398,8.555167,0.429113,-0.14019802,8.555167,0.734002,-0.20587404,8.508925,0.929314,-0.15690103,8.437074,1.014057,-0.042903997,8.34388,1.022916,0.093757,8.34388,0.953581,0.22201398,8.437074,0.766084,0.29885298,8.508925,0.45535,0.2745569,8.555167,0.396495,-0.18896602,8.555167,0.69052,-0.293965,8.508925,0.890104,-0.27243906,8.437074,0.988198,-0.17332898,8.34388,0.991809,-0.03979997,8.233616,1.000468,0.09375702,8.233616,1.014057,0.23041902,8.34388,0.929314,0.34441593,8.437074,0.734002,0.39338797,8.508925,0.429113,0.3277119,8.555168,0.357996,-0.23285003,8.555167,0.636464,-0.37478703,8.508925,0.83696,-0.38010207,8.437074,0.946414,-0.296442,8.34388,0.966532,-0.16726495,8.233616,0.911276,-0.02858394,8.110544,0.919211,0.093757056,8.110543,0.991809,0.22731405,8.233616,0.988198,0.36084402,8.34388,0.890104,0.45995295,8.437074,0.69052,0.48147997,8.508925,0.396495,0.3764809,8.555167,0.314112,-0.27134907,8.555167,0.57266,-0.44751403,8.508925,0.770893,-0.47888106,8.437074,0.889783,-0.411165,8.34388,0.925691,-0.28758696,8.233616,0.888115,-0.14535092,8.110542,0.796901,-0.012655909,7.978935,0.803807,0.09375709,7.978935,0.911276,0.21609908,8.110543,0.966532,0.35478002,8.233616,0.946414,0.483956,8.34388,0.83696,0.567616,8.437074,0.636464,0.562302,8.508925,0.357996,0.4203639,8.555167,0.265344,-0.3039671,8.555168,0.499933,-0.511318,8.508925,0.692912,-0.567766,8.437074,0.819381,-0.5164221,8.34388,0.870338,-0.39971095,8.233616,0.850693,-0.25557694,8.110544,0.776744,-0.114227906,7.978935,0.673125,0.004587122,7.8430576,0.678917,0.09375712,7.8430576,0.796901,0.20017011,7.978935,0.888115,0.33286506,8.110543,0.925691,0.47510102,8.233616,0.889783,0.5986789,8.34388,0.770893,0.66639495,8.437074,0.57266,0.63502795,8.508925,0.314113,0.4588639,8.555167,0.212189,-0.3302041,8.555167,0.419111,-0.565374,8.508925,0.604027,-0.645747,8.437074,0.736284,-0.6111381,8.34388,0.801526,-0.50258696,8.233616,0.799974,-0.35829794,8.110542,0.744178,-0.2101169,7.978935,0.656218,-0.08053788,7.8430576,0.564388,0.019746155,7.7071815,0.569204,0.09375715,7.7071805,0.673125,0.18292812,7.8430576,0.776744,0.3017421,7.978935,0.850693,0.44309205,8.110543,0.870338,0.58722603,8.233616,0.819381,0.70393693,8.34388,0.692912,0.755281,8.437074,0.499933,0.698832,8.508925,0.265344,0.49148092,8.555167,0.155146,-0.34956208,8.555167,0.33102,-0.608856,8.508925,0.505248,-0.71181405,8.437074,0.641568,-0.6942351,8.34388,0.720306,-0.59515995,8.233616,0.736926,-0.45254895,8.110543,0.700042,-0.2994829,7.978935,0.628904,-0.16090988,7.8430576,0.550334,-0.050922845,7.7071795,0.495134,0.029422186,7.5755734,0.499329,0.09375719,7.5755725,0.564388,0.16776915,7.7071805,0.656218,0.26805213,7.8430576,0.744178,0.39763108,7.978935,0.799974,0.54581296,8.110544,0.801526,0.690101,8.233616,0.736284,0.79865193,8.34388,0.604027,0.83326197,8.437074,0.419111,0.752889,8.508925,0.212189,0.51771796,8.555168,0.094713,-0.36154208,8.555167,0.236485,-0.64093804,8.508925,0.397585,-0.764958,8.437074,0.536311,-0.7646371,8.34388,0.627733,-0.67638,8.233616,0.662511,-0.537365,8.110543,0.645178,-0.3814849,7.978935,0.59189,-0.23582287,7.8430576,0.527631,-0.117658846,7.7071805,0.482891,-0.032024816,7.5755725,0.489802,0.030218216,7.4525037,0.493954,0.093757205,7.452502,0.495134,0.15809219,7.5755725,0.550334,0.23843715,7.7071805,0.628904,0.34842414,7.8430576,0.700042,0.48699808,7.978935,0.736925,0.640064,8.110542,0.720306,0.782675,8.233616,0.641568,0.8817489,8.34388,0.505248,0.89932895,8.437074,0.33102,0.796371,8.508925,0.155146,0.537076,8.555167,0.031389,-0.3656461,8.555167,0.136332,-0.660793,8.508925,0.282047,-0.80416805,8.437074,0.421588,-0.8212681,8.34388,0.524857,-0.745192,8.233616,0.577695,-0.61177903,8.110542,0.580428,-0.4552819,7.978935,0.545883,-0.3045689,7.8430576,0.496869,-0.17987385,7.7071795,0.463117,-0.09006881,7.5755725,0.477686,-0.030485785,7.452502,0.489802,0.15729621,7.452502,0.482891,0.21954018,7.5755725,0.527631,0.30517414,7.7071805,0.591891,0.42333713,7.8430576,0.645178,0.5689991,7.978935,0.662511,0.72487897,8.110543,0.627733,0.86389405,8.233616,0.536311,0.9521519,8.34388,0.397585,0.952473,8.437074,0.236485,0.828452,8.508925,0.094713,0.54905695,8.555168,-0.031935,-0.36154208,8.555168,0.031389,-0.667594,8.5089245,0.159645,-0.828435,8.437074,0.298476,-0.86305207,8.34388,0.412733,-0.800545,8.233616,0.483445,-0.67482805,8.110544,0.506631,-0.5200319,7.978935,0.491589,-0.3664429,7.8430576,0.458638,-0.23697685,7.7071805,0.436328,-0.14419381,7.5755725,0.45812,-0.0878438,7.452502,0.558517,-0.05294776,7.3422346,0.572834,0.018735241,7.3422356,0.577741,0.09375724,7.3422356,0.496869,0.36738816,7.7071815,0.545883,0.49208412,7.8430576,0.580428,0.6427961,7.978935,0.577695,0.799294,8.110543,0.524857,0.93270606,8.233616,0.421588,1.008783,8.34388,0.282047,0.99168295,8.437074,0.136332,0.84830695,8.508925,0.031389,0.55316097,8.555167,-0.092368,-0.34956208,8.555167,-0.073555,-0.660793,8.508925,0.031389,-0.836748,8.437074,0.168051,-0.88891107,8.34388,0.292412,-0.84138596,8.233616,0.380723,-0.725547,8.110543,0.424629,-0.5748959,7.978935,0.429715,-0.42073688,7.8430576,0.413526,-0.28837985,7.7071815,0.40304,-0.19388382,7.5755725,0.431617,-0.14134079,7.452502,0.535398,-0.120685756,7.3422356,0.726295,-0.09964274,7.2478566,0.745169,-0.005143736,7.2478576,0.751638,0.093757264,7.2478566,0.572834,0.16877924,7.3422356,0.477686,0.21800122,7.452502,0.463117,0.2775842,7.5755725,0.458638,0.42449215,7.7071795,0.491589,0.55395705,7.8430576,0.506631,0.70754707,7.978935,0.483444,0.86234295,8.110542,0.412733,0.98805904,8.233616,0.298475,1.050566,8.34388,0.159645,1.01595,8.437075,0.031389,0.855109,8.5089245,-0.031935,0.549056,8.555167,-0.149411,-0.3302041,8.555168,-0.173707,-0.64093804,8.508925,-0.096868,-0.828435,8.437075,0.031389,-0.8977701,8.34388,0.164946,-0.866663,8.233616,0.270497,-0.762969,8.110543,0.335263,-0.6190319,7.978935,0.360969,-0.4667439,7.8430576,0.362123,-0.33349186,7.7071795,0.363769,-0.23862281,7.5755725,0.398689,-0.1904648,7.452502,0.504084,-0.18387076,7.3422337,0.695818,-0.18893975,7.2478566,0.956304,-0.1636567,7.1677046,0.981424,-0.03787872,7.1677065,0.990034,0.09375729,7.1677055,0.745169,0.19265826,7.2478566,0.558517,0.24046324,7.3422356,0.436328,0.33170918,7.5755725,0.40304,0.38139918,7.5755725,0.413526,0.47589415,7.7071815,0.429715,0.60825104,7.8430576,0.424629,0.7624101,7.978935,0.380723,0.91306096,8.110544,0.292411,1.0288999,8.233616,0.16805,1.076426,8.34388,0.031389,1.024263,8.437074,-0.073555,0.84830695,8.508925,-0.092368,0.537076,8.555167,-0.202566,-0.3039671,8.555167,-0.268242,-0.608856,8.508925,-0.219269,-0.80416805,8.437074,-0.105273,-0.88891107,8.34388,0.031389,-0.875322,8.233614,0.15373,-0.78613,8.110543,0.239374,-0.6515979,7.978935,0.286056,-0.50375795,7.8430576,0.30502,-0.37172285,7.7071815,0.31903,-0.2778938,7.5755725,0.359849,-0.23470278,7.4525037,0.465182,-0.24189475,7.3422356,0.654537,-0.27223572,7.2478566,0.915739,-0.28251076,7.1677055,1.2339,-0.24091469,7.0989366,1.26656,-0.0773867,7.0989375,1.277754,0.0937573,7.0989375,0.981424,0.22539431,7.1677055,0.726295,0.28715727,7.2478566,0.535398,0.30820024,7.3422356,0.45812,0.2753582,7.452502,0.363769,0.42613718,7.5755725,0.362123,0.52100617,7.7071805,0.360969,0.654259,7.8430576,0.335263,0.8065461,7.978935,0.270497,0.95048296,8.110542,0.164946,1.0541768,8.233616,0.031389,1.085284,8.34388,-0.096868,1.01595,8.437074,-0.173707,0.828452,8.508925,-0.149411,0.51771796,8.555167,-0.251335,-0.27134907,8.555167,-0.356334,-0.565374,8.508925,-0.334807,-0.764958,8.437074,-0.235698,-0.86305207,8.34388,-0.102168,-0.866663,8.233616,0.031389,-0.794065,8.110543,0.137802,-0.6717549,7.978935,0.205684,-0.53107196,7.8430576,0.242806,-0.40248483,7.7071805,0.269341,-0.3111818,7.5755725,0.315611,-0.2735428,7.452502,0.419299,-0.29415277,7.3422356,0.603253,-0.34872872,7.2478566,0.860794,-0.39337677,7.1677046,1.181161,-0.3954407,7.0989375,1.544442,-0.32734174,7.0387053,1.585536,-0.121583685,7.0387053,1.599621,0.09375732,7.0387053,1.26656,0.2649023,7.0989375,0.956304,0.35117126,7.1677055,0.695818,0.37645528,7.2478566,0.504084,0.37138525,7.3422356,0.431617,0.32885522,7.4525037,0.398689,0.37797922,7.452502,0.359849,0.4222182,7.4525037,0.31903,0.46540818,7.5755725,0.30502,0.55923814,7.7071795,0.286056,0.69127303,7.8430576,0.239374,0.8391121,7.978935,0.15373,0.97364396,8.110544,0.031389,1.0628358,8.233614,-0.105273,1.076426,8.34388,-0.21927,0.99168295,8.437074,-0.268242,0.796371,8.508925,-0.202566,0.49148092,8.555168,-0.295218,-0.23285003,8.555167,-0.437156,-0.511318,8.508925,-0.44247,-0.71181405,8.437074,-0.35881,-0.8212681,8.34388,-0.229634,-0.84138596,8.233616,-0.090953,-0.78613,8.110544,0.031389,-0.6786599,7.978935,0.120559,-0.54797894,7.8430576,0.176069,-0.42518786,7.7071805,0.215216,-0.33797082,7.5755725,0.266487,-0.30647078,7.4525037,0.367041,-0.34003577,7.3422346,0.542766,-0.41761974,7.2478566,0.792535,-0.49518776,7.1677055,1.109725,-0.53958076,7.0989366,1.478083,-0.5217737,7.0387053,1.873288,-0.41886365,6.9841657,1.923313,-0.16838565,6.9841676,1.940459,0.09375732,6.9841657,1.585536,0.30909926,7.0387053,1.2339,0.4284293,7.0989375,0.915739,0.47002524,7.1677055,0.654537,0.45975026,7.2478566,0.465182,0.42941025,7.3422346,0.419299,0.48166725,7.3422356,0.315611,0.46105722,7.452502,0.26934,0.49869618,7.5755725,0.242805,0.59000015,7.7071805,0.205684,0.718586,7.8430576,0.137802,0.8592691,7.978935,0.031389,0.98157895,8.110543,-0.102168,1.0541768,8.233616,-0.235698,1.050566,8.34388,-0.334807,0.952473,8.437074,-0.356334,0.752889,8.508925,-0.251335,0.4588639,8.555167,-0.333718,-0.18896602,8.555167,-0.509882,-0.44751403,8.508925,-0.541249,-0.645747,8.437074,-0.473533,-0.7646371,8.34388,-0.349955,-0.800545,8.233616,-0.207719,-0.762969,8.110542,-0.075024,-0.6717549,7.978935,0.031389,-0.55377096,7.8430576,0.1054,-0.43924186,7.7071805,0.157171,-0.3577448,7.5755725,0.21299,-0.33297378,7.452502,0.309017,-0.37893775,7.3422356,0.473875,-0.47810674,7.2478566,0.712027,-0.58688074,7.1677055,1.02098,-0.6719498,7.0989375,1.3882,-0.7031367,7.0387053,1.792506,-0.6555527,6.9841657,2.205793,-0.51140267,6.9324718,2.264849,-0.21570864,6.9324718,2.28509,0.09375734,6.9324718,1.923313,0.35590133,6.9841657,1.544442,0.51485735,7.0387053,1.181161,0.5829562,7.0989375,0.860794,0.58089125,7.1677055,0.603253,0.53624326,7.2478566,0.542766,0.60513425,7.2478566,0.367041,0.52755016,7.3422356,0.266487,0.4939852,7.452502,0.176069,0.61270314,7.7071795,0.120559,0.735493,7.8430576,0.031389,0.8661751,7.978935,-0.090953,0.97364396,8.110543,-0.229634,1.0288999,8.233616,-0.35881,1.008783,8.34388,-0.44247,0.89932895,8.437074,-0.437156,0.698832,8.508925,-0.295218,0.4203639,8.555167,-0.366335,-0.14019802,8.555168,-0.573686,-0.37478703,8.508925,-0.630135,-0.567766,8.437074,-0.578791,-0.6942351,8.34388,-0.46208,-0.745192,8.233616,-0.317946,-0.725547,8.110544,-0.176596,-0.6515979,7.978935,-0.057781,-0.54797894,7.8430576,0.031389,-0.44405785,7.7071815,0.095724,-0.36998782,7.5755725,0.155632,-0.35253978,7.452502,0.245832,-0.41025177,7.3422356,0.397382,-0.52939075,7.2478566,0.620334,-0.66738874,7.1677046,0.916308,-0.7911618,7.0989375,1.276536,-0.8696887,7.0387053,1.683088,-0.87633264,6.9841657,2.110429,-0.79082066,6.9324718,2.527317,-0.60088664,6.8807764,2.595105,-0.26146963,6.8807774,2.61834,0.09375735,6.8807764,2.264849,0.4032243,6.9324718,1.873288,0.6063783,6.9841657,1.478083,0.7092893,7.0387053,1.109725,0.7270952,7.0989375,0.792535,0.68270326,7.1677046,0.712027,0.7743953,7.1677055,0.473875,0.6656213,7.2478566,0.309017,0.56645316,7.3422337,0.215215,0.5254852,7.5755725,0.1054,0.62675714,7.7071815,0.031389,0.741285,7.8430576,-0.075024,0.8592691,7.978935,-0.207719,0.95048296,8.110543,-0.349955,0.98805904,8.233616,-0.473533,0.9521519,8.34388,-0.541249,0.83326197,8.437074,-0.509882,0.63502795,8.508925,-0.333718,0.3764809,8.555167,-0.392572,-0.08704305,8.555167,-0.627743,-0.293965,8.508925,-0.708116,-0.47888106,8.437074,-0.673506,-0.6111381,8.34388,-0.564955,-0.67638,8.233616,-0.420667,-0.67482805,8.110542,-0.272485,-0.6190319,7.978935,-0.142906,-0.53107196,7.8430576,-0.042623,-0.43924186,7.7071815,0.031389,-0.37418282,7.5755734,0.094928,-0.3646558,7.452502,0.178095,-0.43337077,7.3422356,0.314087,-0.57067174,7.2478566,0.518523,-0.73564774,7.1677055,0.797096,-0.8958338,7.0989366,1.144834,-1.0196877,7.038705,1.547155,-1.0790837,6.984166,1.981258,-1.0514567,6.9324713,2.417851,-0.92162067,6.8807764,2.823217,-0.6832386,6.826236,2.899041,-0.30358264,6.826236,2.92503,0.09375735,6.826236,2.595105,0.44898435,6.8807764,2.205793,0.69891834,6.9324718,1.792506,0.84306735,6.9841657,1.3882,0.89065236,7.0387053,1.02098,0.8594642,7.0989366,0.916308,0.9786772,7.0989375,0.620334,0.8549043,7.1677055,0.397382,0.71690625,7.2478566,0.245832,0.5977672,7.3422356,0.21299,0.5204882,7.452502,0.157171,0.54525924,7.5755725,0.031389,0.6315721,7.7071815,-0.057782,0.735493,7.8430576,-0.176596,0.8391121,7.978935,-0.317946,0.91306096,8.110543,-0.46208,0.93270606,8.233616,-0.578791,0.8817489,8.34388,-0.630135,0.755281,8.437074,-0.573686,0.562302,8.508925,-0.366335,0.3277119,8.555167,-0.41193,-0.030000048,8.555167,-0.671225,-0.20587404,8.508925,-0.774183,-0.38010207,8.437074,-0.756603,-0.5164221,8.34388,-0.657529,-0.59515995,8.233616,-0.514918,-0.61177903,8.110543,-0.361852,-0.5748959,7.978935,-0.223278,-0.50375795,7.8430576,-0.113291,-0.42518786,7.7071795,-0.032946,-0.36998782,7.5755734,0.031389,-0.3688078,7.4525037,0.106411,-0.44768775,7.3422356,0.224789,-0.6011487,7.2478566,0.407657,-0.79059273,7.1677055,0.664727,-0.9845788,7.0989375,0.994835,-1.1513897,7.038704,1.386829,-1.2616826,6.984165,1.820786,-1.2908087,6.9324713,2.26958,-1.2207967,6.880776,2.700773,-1.0419967,6.8262353,3.07885,-0.75438464,6.7660046,3.161617,-0.3399646,6.7660055,3.189986,0.093757376,6.7660046,2.899041,0.49109736,6.826236,2.527317,0.7884023,6.8807764,2.110429,0.9783353,6.9324718,1.683088,1.0638484,6.984166,1.276536,1.0572044,7.038705,1.144834,1.2072023,7.038706,0.797096,1.0833483,7.098938,0.518523,0.9231633,7.1677046,0.314086,0.7581873,7.2478566,0.178094,0.62088615,7.3422346,0.155632,0.5400542,7.452502,0.095724,0.5575022,7.5755734,0.031389,0.5616972,7.5755734,-0.042623,0.62675714,7.7071805,-0.142906,0.718586,7.8430576,-0.272485,0.8065461,7.978935,-0.420667,0.86234295,8.110544,-0.564955,0.86389405,8.233616,-0.673506,0.79865193,8.34388,-0.708116,0.66639495,8.437074,-0.627743,0.48147997,8.508925,-0.392572,0.2745569,8.555168,-0.42391,0.030432953,8.555167,-0.703306,-0.11133903,8.508925,-0.827327,-0.27243906,8.437074,-0.827006,-0.411165,8.34388,-0.738748,-0.50258696,8.233616,-0.599733,-0.537365,8.110543,-0.443853,-0.5200319,7.978935,-0.298191,-0.4667439,7.8430576,-0.180028,-0.40248483,7.7071805,-0.094394,-0.3577448,7.5755725,-0.03215,-0.3646558,7.4525037,0.031389,-0.45259476,7.3422356,0.13029,-0.6200227,7.2478566,0.288803,-0.83115774,7.1677055,0.520587,-1.0560147,7.098937,0.828283,-1.2630537,7.038705,1.20423,-1.4220086,6.984165,1.631517,-1.5063707,6.93247,2.08538,-1.4955406,6.880776,2.534924,-1.3766407,6.8262353,2.945194,-1.1459917,6.766004,3.279573,-0.8102476,6.6972356,3.367792,-0.3685326,6.6972365,3.398029,0.0937574,6.6972356,3.161617,0.52748036,6.7660046,2.823217,0.87075436,6.826236,2.417851,1.1091363,6.880777,1.981258,1.2389714,6.932471,1.547155,1.2665983,6.984166,1.386829,1.4491973,6.984166,0.994835,1.3389053,7.038706,0.664727,1.1720943,7.098937,0.407657,0.9781073,7.1677055,0.224789,0.7886643,7.2478566,0.106411,0.63520217,7.3422356,0.094928,0.5521702,7.4525037,-0.223278,0.69127303,7.8430576,-0.361852,0.7624101,7.978935,-0.514918,0.799294,8.110542,-0.657529,0.782675,8.233616,-0.756603,0.70393693,8.34388,-0.774183,0.567616,8.437074,-0.671225,0.39338797,8.508925,-0.41193,0.21751398,8.555167,-0.428015,0.09375695,8.555167,-0.723161,-0.011186037,8.508925,-0.866537,-0.15690103,8.437074,-0.883637,-0.296442,8.34388,-0.80756,-0.39971095,8.233616,-0.674148,-0.45254895,8.110542,-0.51765,-0.4552819,7.978935,-0.366938,-0.42073688,7.8430576,-0.242242,-0.37172285,7.7071795,-0.152438,-0.33797082,7.5755725,-0.092855,-0.35253978,7.452502,-0.043633,-0.44768775,7.3422356,0.031389,-0.6264907,7.2478576,0.163025,-0.8562777,7.1677055,0.366061,-1.1087537,7.098937,0.64692,-1.3529366,7.038705,1.001479,-1.5579417,6.984165,1.415955,-1.6956396,6.93247,1.868124,-1.7429776,6.880775,2.328886,-1.6839566,6.8262353,2.764159,-1.5112777,6.766004,3.137114,-1.2276485,6.697235,3.410745,-0.84675467,6.6170845,3.502526,-0.3872006,6.6170855,3.533985,0.09375741,6.6170845,3.367792,0.5560474,6.6972356,3.07885,0.9418994,6.7660046,2.700773,1.2295123,6.8262362,2.26958,1.4083123,6.880776,1.820786,1.4783233,6.932471,1.631517,1.6938853,6.932471,1.20423,1.6095233,6.984167,0.828283,1.4505683,7.038706,0.520587,1.2435293,7.098938,0.288803,1.0186723,7.167705,0.13029,0.80753726,7.2478576,0.031389,0.6401092,7.3422356,0.031389,0.5563222,7.4525037,-0.032946,0.5575022,7.5755725,-0.113291,0.61270314,7.7071805,-0.180028,0.59000015,7.7071805,-0.298191,0.654259,7.8430576,-0.443853,0.70754707,7.978935,-0.599733,0.72487897,8.110543,-0.738748,0.690101,8.233616,-0.827006,0.5986789,8.34388,-0.827327,0.45995295,8.437074,-0.703306,0.29885298,8.508925,-0.423911,0.15708098,8.555168,-0.729963,0.09375697,8.5089245,-0.890803,-0.03449902,8.437074,-0.92542,-0.17332998,8.34388,-0.862913,-0.28758696,8.233616,-0.737197,-0.35829794,8.110544,-0.582401,-0.3814849,7.978935,-0.428811,-0.3664429,7.8430576,-0.299346,-0.33349186,7.7071805,-0.206563,-0.3111818,7.5755725,-0.150212,-0.33297378,7.452502,-0.115317,-0.43337077,7.3422346,-0.067512,-0.6200227,7.2478576,0.031389,-0.8648877,7.1677065,0.202533,-1.1414137,7.098937,0.452488,-1.4192957,7.038705,0.780699,-1.6673597,6.984165,1.176603,-1.8561116,6.93247,1.620687,-1.9602337,6.880775,2.085874,-1.9607277,6.8262353,2.539256,-1.8467326,6.766005,2.944156,-1.6169945,6.697235,3.262534,-1.2810116,6.617084,3.5336442,-0.39151224,6.556223,3.4410398,-0.8551856,6.556223,3.4998405,-0.560768,6.556223,3.5448945,-0.21950768,6.556223,3.5653846,0.09375743,6.556223,3.502527,0.5747163,6.6170845,3.279573,0.9977634,6.6972356,2.945194,1.3335063,6.766005,2.534924,1.5641563,6.8262362,2.08538,1.6830553,6.880776,1.868124,1.9304923,6.880776,1.415955,1.8831543,6.932472,1.001479,1.7454563,6.984166,0.64692,1.5404513,7.038706,0.366061,1.2962693,7.098937,0.163025,1.0437933,7.167707,0.13029,0.80753726,7.2478576,0.031389,0.81400627,7.2478576,-0.043633,0.63520217,7.3422356,-0.03215,0.5521702,7.452502,-0.094394,0.54525924,7.5755725,-0.242242,0.55923814,7.7071815,-0.366938,0.60825104,7.8430576,-0.51765,0.6427961,7.978935,-0.674148,0.640064,8.110543,-0.80756,0.58722603,8.233616,-0.883637,0.483956,8.34388,-0.866537,0.34441495,8.437074,-0.723161,0.19870096,8.508925,-0.899117,0.09375698,8.437074,-0.95128,-0.042904995,8.34388,-0.903754,-0.16726595,8.233616,-0.787915,-0.25557694,8.110543,-0.637264,-0.2994829,7.978935,-0.483105,-0.3045689,7.8430576,-0.350748,-0.28837985,7.7071815,-0.256253,-0.2778938,7.5755725,-0.203709,-0.30647078,7.452502,-0.183054,-0.41025177,7.3422356,-0.162011,-0.6011487,7.2478566,-0.100247,-0.8562777,7.1677065,0.031389,-1.1526077,7.098937,0.246731,-1.4603896,7.038705,0.54401,-1.7481416,6.984165,0.915967,-1.9852827,6.9324713,1.345943,-2.1444337,6.880775,1.809103,-2.2037396,6.8262353,2.273993,-2.1488457,6.766004,2.704439,-1.9745445,6.697236,3.061783,-1.6860795,6.617084,3.2914999,-1.2933358,6.5562224,3.3944824,-0.9915977,6.556223,3.5336444,0.579028,6.556223,3.556951,0.2226985,6.556223,3.410745,1.0342695,6.617085,3.137114,1.4151645,6.697236,2.764159,1.6987923,6.766005,2.328886,1.8714713,6.8262362,2.085874,2.1482434,6.8262362,1.620687,2.1477482,6.880777,1.176603,2.0436263,6.932472,0.780699,1.8548744,6.984166,0.452488,1.6068113,7.038706,0.202533,1.3289284,7.098938,0.163025,1.0437933,7.167707,0.031389,1.0524024,7.167707,-0.067512,0.80753726,7.2478566,-0.115317,0.62088615,7.3422356,-0.092855,0.5400542,7.452502,-0.152438,0.5254852,7.5755725,-0.299346,0.52100617,7.7071795,-0.428811,0.55395705,7.8430576,-0.582401,0.5689991,7.978935,-0.737197,0.54581296,8.110542,-0.862913,0.47510102,8.233616,-0.92542,0.36084402,8.34388,-0.890804,0.22201398,8.437075,-0.960138,0.093757,8.34388,-0.929031,-0.03979997,8.233616,-0.825337,-0.14535092,8.110543,-0.6814,-0.2101169,7.978935,-0.529113,-0.23582287,7.8430576,-0.39586,-0.23697685,7.7071795,-0.300991,-0.23862281,7.5755725,-0.252833,-0.2735428,7.452502,-0.246239,-0.37893775,7.3422337,-0.251309,-0.57067174,7.2478566,-0.226025,-0.83115774,7.1677046,-0.139756,-1.1414137,7.098937,0.031389,-1.4744747,7.038705,0.293533,-1.7981666,6.984165,0.63655,-2.0806468,6.9324713,1.046767,-2.2927046,6.880776,1.501788,-2.4097776,6.8262353,1.971879,-2.4141097,6.766004,2.421704,-2.2965577,6.697235,2.812385,-2.0580697,6.617085,3.0889497,-1.7020357,6.556222,3.44104,1.0427012,6.556223,3.262534,1.4685274,6.617085,2.944156,1.8045094,6.697236,2.539256,2.0342474,6.766005,2.273993,2.3363614,6.766005,1.809103,2.3912544,6.8262362,1.345943,2.3319483,6.880777,0.915967,2.1727974,6.932472,0.54401,1.9356563,6.984166,0.24673,1.6479043,7.038706,0.031389,1.3401223,7.098938,0.031389,1.0524024,7.167707,-0.100248,1.0437924,7.167706,-0.162011,0.7886643,7.2478566,-0.183054,0.5977672,7.3422356,-0.150212,0.5204882,7.452502,-0.206563,0.49869618,7.5755725,-0.256253,0.46540818,7.5755725,-0.350748,0.47589415,7.7071815,-0.483105,0.49208412,7.8430576,-0.637264,0.48699808,7.978935,-0.787915,0.44309205,8.110544,-0.903754,0.35478002,8.233616,-0.95128,0.23041902,8.34388,-0.93769,0.09375702,8.233614,-0.848498,-0.02858394,8.110543,-0.713966,-0.114227906,7.978935,-0.566127,-0.16090988,7.8430576,-0.434092,-0.17987385,7.7071815,-0.340262,-0.19388382,7.5755725,-0.297072,-0.23470278,7.4525037,-0.304264,-0.34003577,7.3422356,-0.334604,-0.52939075,7.2478566,-0.344879,-0.79059273,7.1677055,-0.303283,-1.1087537,7.098936,-0.183953,-1.4603896,7.038705,0.031389,-1.8153126,6.984167,0.340856,-2.1397026,6.9324713,0.726033,-2.4021707,6.880776,1.167143,-2.5756266,6.8262353,1.636424,-2.6390126,6.766004,2.099691,-2.5792928,6.697235,2.518232,-2.3930857,6.617084,2.837316,-2.07736,6.556222,3.2915,1.4808518,6.556223,3.061783,1.8735955,6.617085,2.704439,2.1620593,6.697236,2.421704,2.4840724,6.697236,1.971879,2.6016243,6.766006,1.501787,2.5972934,6.8262362,1.046767,2.4802203,6.880777,0.636549,2.2681623,6.932472,0.293532,1.9856813,6.984168,0.031389,1.6619893,7.038706,0.031389,1.3401223,7.098938,-0.139756,1.3289284,7.098938,-0.226025,1.0186723,7.167706,-0.251309,0.7581873,7.2478566,-0.246239,0.56645316,7.3422356,-0.203709,0.4939852,7.4525037,-0.300991,0.42613718,7.5755725,-0.39586,0.42449215,7.7071805,-0.529113,0.42333713,7.8430576,-0.6814,0.39763108,7.978935,-0.825337,0.33286506,8.110542,-0.929031,0.22731405,8.233616,-0.856433,0.093757056,8.110543,-0.734123,-0.012655909,7.978935,-0.59344,-0.08053788,7.8430576,-0.464854,-0.117658846,7.7071805,-0.37355,-0.14419481,7.5755725,-0.335911,-0.1904648,7.452502,-0.356521,-0.29415277,7.3422356,-0.411097,-0.47810674,7.2478566,-0.455745,-0.73564774,7.1677046,-0.45781,-1.0560147,7.098937,-0.389711,-1.4192957,7.038705,-0.230755,-1.7981666,6.984167,0.031389,-2.1599436,6.9324713,0.386616,-2.4699588,6.880776,0.808385,-2.6980708,6.8262353,1.271138,-2.8200476,6.766004,1.742141,-2.8190098,6.697235,2.183216,-2.6872387,6.617084,2.5405264,-2.41538,6.556222,3.08895,1.8895512,6.556223,2.812385,2.2455842,6.617085,2.518232,2.5806003,6.617085,2.099691,2.7668073,6.697237,1.636424,2.8265283,6.766005,1.167143,2.7631414,6.8262362,0.726033,2.5896864,6.880777,0.340855,2.3272173,6.932472,0.031388,2.0028274,6.984168,0.031389,1.6619893,7.038706,-0.183953,1.6479043,7.038706,-0.303283,1.2962693,7.098938,-0.344879,0.9781073,7.1677055,-0.334604,0.71690625,7.2478566,-0.304263,0.52755016,7.3422346,-0.252833,0.46105722,7.452502,-0.297072,0.4222182,7.4525037,-0.340262,0.38139918,7.5755725,-0.434092,0.36738816,7.7071795,-0.566127,0.34842414,7.8430576,-0.713966,0.3017421,7.978935,-0.848498,0.21609908,8.110544,-0.741029,0.09375709,7.978935,-0.610347,0.004587122,7.8430576,-0.487557,-0.050922845,7.7071805,-0.400339,-0.09006981,7.5755725,-0.368839,-0.14134079,7.4525037,-0.402404,-0.24189475,7.3422346,-0.479988,-0.41761974,7.2478566,-0.557557,-0.66738874,7.1677055,-0.601949,-0.9845788,7.0989366,-0.584142,-1.3529366,7.038705,-0.481232,-1.7481416,6.984165,-0.278078,-2.1397026,6.9324713,0.031389,-2.4931936,6.880777,0.428729,-2.7738948,6.8262353,0.879531,-2.9537027,6.766004,1.352795,-3.0119677,6.6972346,1.811226,-2.9366367,6.617084,2.2025063,-2.71217,6.556222,2.837316,2.2648747,6.556223,2.5405262,2.6028945,6.556223,2.640171,2.4894073,6.556223,2.183216,2.8747532,6.617086,1.742141,3.0065243,6.6972365,1.271138,3.0075634,6.7660055,0.808385,2.8855853,6.8262362,0.386616,2.6574733,6.880778,0.031388,2.3474593,6.932472,0.031388,2.0028274,6.984168,-0.230755,1.9856813,6.984166,-0.389711,1.6068113,7.038706,-0.45781,1.2435293,7.098938,-0.455745,0.9231633,7.1677055,-0.411097,0.6656213,7.2478566,-0.356521,0.48166725,7.3422356,-0.335911,0.37797922,7.452502,-0.37355,0.33170918,7.5755725,-0.464854,0.30517414,7.7071805,-0.59344,0.26805213,7.8430576,-0.734123,0.20017011,7.978935,-0.616139,0.09375712,7.8430576,-0.501611,0.019746155,7.7071805,-0.420113,-0.032024816,7.5755725,-0.395342,-0.0878438,7.452502,-0.441307,-0.18387076,7.3422356,-0.540475,-0.34872872,7.2478566,-0.649249,-0.58688074,7.1677055,-0.734318,-0.8958338,7.0989375,-0.765505,-1.2630537,7.038705,-0.717921,-1.6673597,6.984165,-0.573772,-2.0806468,6.9324713,-0.323838,-2.4699588,6.880777,0.031389,-2.7998846,6.8262362,0.465111,-3.0364707,6.7660036,0.935395,-3.1544266,6.6972346,1.406158,-3.1373878,6.6170835,1.8271822,-2.9638035,6.5562224,1.957992,-2.876103,6.556222,2.2025063,2.8996842,6.5562234,1.811226,3.1241512,6.6170855,1.352795,3.1994834,6.6972365,0.879531,3.1412184,6.7660055,0.428729,2.9614093,6.8262362,0.031388,2.6807084,6.880778,0.031388,2.3474593,6.932472,-0.278078,2.3272173,6.932472,-0.481232,1.9356563,6.984166,-0.584143,1.5404513,7.038706,-0.601949,1.1720943,7.098938,-0.557557,0.8549043,7.1677046,-0.479988,0.60513425,7.2478566,-0.402404,0.42941025,7.3422356,-0.368839,0.32885522,7.452502,-0.487557,0.23843715,7.7071795,-0.610347,0.18292712,7.8430576,-0.506426,0.09375715,7.7071815,-0.432356,0.029422186,7.5755725,-0.414908,-0.030485785,7.452502,-0.472621,-0.120685756,7.3422356,-0.59176,-0.27223572,7.2478566,-0.729758,-0.49518776,7.1677046,-0.853531,-0.7911618,7.0989375,-0.932058,-1.1513897,7.038705,-0.938701,-1.5579417,6.984165,-0.853189,-1.9852827,6.9324713,-0.663255,-2.4021707,6.880776,-0.365951,-2.7738948,6.8262353,0.031389,-3.0648396,6.7660046,0.493679,-3.2426457,6.6972346,0.971901,-3.2855988,6.6170835,1.4184822,-3.1663535,6.556222,1.8271822,3.151318,6.5562234,1.406158,3.3249023,6.6170855,0.935394,3.3419423,6.6972365,0.465111,3.2239854,6.7660065,0.031388,2.9873993,6.826237,0.031388,2.6807084,6.880778,-0.323838,2.6574733,6.880777,-0.573772,2.2681623,6.932472,-0.717921,1.8548744,6.984166,-0.765506,1.4505683,7.038706,-0.734318,1.0833483,7.098937,-0.649249,0.7743953,7.1677055,-0.540475,0.53624326,7.2478566,-0.441307,0.37138525,7.3422337,-0.400339,0.2775842,7.5755725,-0.501611,0.16776915,7.7071815,-0.436551,0.09375719,7.5755734,-0.427024,0.030218216,7.452502,-0.49574,-0.052948758,7.3422356,-0.633041,-0.18894075,7.2478566,-0.798017,-0.39337677,7.1677055,-0.958202,-0.6719498,7.0989366,-1.082056,-1.0196877,7.038705,-1.141452,-1.4220086,6.984166,-1.113825,-1.8561116,6.9324713,-0.983989,-2.2927046,6.880776,-0.745607,-2.6980708,6.8262353,-0.402333,-3.0364707,6.7660046,0.03139,-3.2728827,6.6972356,0.512348,-3.3773806,6.6170835,0.98033273,-3.3158937,6.556222,1.4184823,3.3538692,6.5562234,0.971901,3.4731133,6.6170855,0.493679,3.4301603,6.6972375,0.031388,3.2523544,6.7660065,0.031388,2.9873993,6.826237,-0.365951,2.9614093,6.8262362,-0.663256,2.5896864,6.880777,-0.853189,2.1727974,6.932472,-0.938702,1.7454563,6.984166,-0.932058,1.3389053,7.038705,-0.853531,0.9786772,7.0989375,-0.729758,0.68270326,7.1677055,-0.59176,0.45975026,7.2478566,-0.472621,0.30820024,7.3422356,-0.395342,0.2753582,7.452502,-0.420113,0.21954018,7.5755725,-0.432356,0.15809219,7.5755734,-0.431176,0.093757205,7.4525037,-0.510056,0.018735241,7.3422356,-0.663518,-0.09964274,7.2478566,-0.852961,-0.28251076,7.1677055,-1.046948,-0.53958076,7.0989375,-1.213758,-0.8696887,7.0387044,-1.324051,-1.2616826,6.984165,-1.353177,-1.6956396,6.9324713,-1.283165,-2.1444337,6.880776,-1.104365,-2.5756266,6.8262353,-0.816753,-2.9537027,6.766004,-0.430901,-3.2426457,6.6972356,0.03139,-3.4088387,6.6170855,0.5166596,-3.4084976,6.556222,0.9803321,3.5034082,6.5562234,0.512347,3.5648944,6.6170864,0.031388,3.4603984,6.6972375,0.031388,3.2523544,6.7660065,-0.402334,3.2239854,6.7660055,-0.745608,2.8855853,6.8262362,-0.98399,2.4802203,6.880777,-1.113825,2.0436263,6.932471,-1.141452,1.6095233,6.984166,-1.082056,1.2072023,7.038706,-0.958202,0.8594642,7.0989375,-0.798017,0.58089125,7.1677046,-0.633041,0.37645528,7.2478566,-0.49574,0.24046324,7.3422346,-0.414908,0.21800122,7.452502,-0.427024,0.15729621,7.4525037,-0.514963,0.09375724,7.3422356,-0.682391,-0.005143736,7.2478566,-0.893526,-0.1636567,7.1677055,-1.118383,-0.3954407,7.0989375,-1.325422,-0.7031367,7.0387053,-1.484377,-1.0790837,6.984165,-1.568739,-1.5063707,6.93247,-1.557909,-1.9602337,6.880776,-1.43901,-2.4097776,6.8262353,-1.20836,-2.8200476,6.766004,-0.872616,-3.1544266,6.6972346,-0.44957,-3.3773797,6.6170845,0.03139,-3.440239,6.556222,0.51665866,3.5960126,6.5562234,0.031388,3.5963533,6.6170874,0.031388,3.4603984,6.6972375,-0.430901,3.4301603,6.6972365,-0.816753,3.1412184,6.7660055,-1.104366,2.7631414,6.8262362,-1.283165,2.3319483,6.880776,-1.353177,1.8831543,6.932471,-1.324051,1.4491973,6.984166,-1.213758,1.0572044,7.038706,-1.046948,0.7270952,7.0989366,-0.852961,0.47002524,7.1677055,-0.663518,0.28715727,7.2478566,-0.510056,0.16877924,7.3422356,-0.68886,0.093757264,7.2478576,-0.918646,-0.03787872,7.1677055,-1.171123,-0.24091469,7.0989375,-1.415305,-0.5217737,7.0387053,-1.62031,-0.87633264,6.9841657,-1.758008,-1.2908087,6.93247,-1.805346,-1.7429776,6.880775,-1.746325,-2.2037396,6.8262353,-1.573646,-2.6390126,6.766004,-1.290017,-3.0119677,6.6972346,-0.909123,-3.2855988,6.6170835,-0.45388168,-3.4084978,6.556222,0.031388,3.627754,6.556224,0.031388,3.5963533,6.6170874,-0.44957,3.5648954,6.6170855,-0.872617,3.3419423,6.6972365,-1.208361,3.0075634,6.7660055,-1.43901,2.5972934,6.8262362,-1.557909,2.1477482,6.880776,-1.568739,1.6938853,6.932471,-1.484377,1.2665983,6.984167,-1.325422,0.89065135,7.0387053,-1.118383,0.5829562,7.0989375,-0.893526,0.35117126,7.1677046,-0.682391,0.19265826,7.2478576,-0.927256,0.09375729,7.1677065,-1.203782,-0.0773867,7.0989375,-1.481665,-0.32734174,7.0387053,-1.729728,-0.6555527,6.9841657,-1.91848,-1.0514567,6.93247,-2.022602,-1.4955406,6.880775,-2.023097,-1.9607277,6.8262353,-1.909101,-2.4141097,6.766005,-1.679363,-2.8190098,6.697235,-1.34338,-3.1373878,6.6170835,-0.91755474,-3.3158937,6.556222,-0.4538816,3.596013,6.556224,0.031388,3.627754,6.556224,-0.909123,3.4731133,6.6170855,-1.290018,3.1994834,6.6972365,-1.573646,2.8265283,6.766005,-1.746325,2.3912554,6.8262362,-1.805346,1.9304923,6.880776,-1.758008,1.4783233,6.932472,-1.62031,1.0638473,6.984166,-1.415305,0.70928836,7.0387053,-1.171123,0.4284293,7.0989366,-0.918646,0.2253933,7.1677065,-1.214976,0.0937573,7.0989375,-1.522758,-0.12158468,7.0387053,-1.81051,-0.41886365,6.9841657,-2.047651,-0.79082066,6.9324718,-2.206802,-1.2207967,6.880775,-2.266109,-1.6839566,6.8262353,-2.211215,-2.1488457,6.766004,-2.036913,-2.5792928,6.697236,-1.748449,-2.9366367,6.617084,-1.3557043,-3.1663537,6.5562215,-0.91755474,3.5034082,6.556224,-1.34338,3.3249023,6.6170855,-1.679363,3.0065243,6.6972365,-1.909101,2.6016243,6.766005,-2.023097,2.1482434,6.8262362,-2.022602,1.6830553,6.880777,-1.91848,1.2389714,6.932472,-1.729728,0.84306735,6.9841657,-1.481665,0.51485735,7.0387053,-1.203782,0.2649023,7.0989375,-1.536843,0.09375732,7.0387053,-1.860535,-0.16838665,6.9841657,-2.143016,-0.5114037,6.9324718,-2.355073,-0.92162067,6.8807764,-2.472147,-1.3766407,6.8262353,-2.476478,-1.8467326,6.766004,-2.358926,-2.2965577,6.697235,-2.120438,-2.6872387,6.617085,-1.7644045,-2.9638035,6.5562215,-1.3557049,3.353869,6.556224,-1.1925894,3.4095397,6.556224,-1.748449,3.1241512,6.6170855,-2.036913,2.7668073,6.697236,-2.211215,2.3363614,6.766005,-2.266108,1.8714713,6.8262362,-2.206802,1.4083114,6.880777,-2.047651,0.9783353,6.9324718,-1.81051,0.6063783,6.9841657,-1.522758,0.30909926,7.0387053,-1.877681,0.09375732,6.9841676,-2.202071,-0.21570964,6.9324718,-2.46454,-0.60088664,6.8807764,-2.637995,-1.0419967,6.8262353,-2.701382,-1.5112777,6.766004,-2.641661,-1.9745445,6.697235,-2.455455,-2.3930857,6.617084,-2.1397285,-2.71217,6.5562215,-2.0308425,-2.785172,6.5562215,-1.7644039,3.151317,6.5562263,-1.5204691,3.272212,6.556224,-2.120438,2.8747544,6.617085,-2.358926,2.4840724,6.697236,-2.476478,2.0342474,6.766006,-2.472147,1.5641563,6.8262362,-2.355073,1.1091354,6.880777,-2.143016,0.69891834,6.9324718,-1.860535,0.35590133,6.9841676,-2.222313,0.09375734,6.9324718,-2.532327,-0.26146963,6.8807764,-2.760439,-0.6832386,6.826236,-2.882417,-1.1459917,6.766004,-2.881378,-1.6169945,6.697235,-2.749608,-2.0580697,6.617084,-2.4777489,-2.41538,6.5562215,-2.3610582,-2.517837,6.5562215,-2.1397278,2.899684,6.5562253,-2.455455,2.5806003,6.617085,-2.641661,2.1620593,6.697237,-2.701382,1.6987923,6.766005,-2.637995,1.2295114,6.8262362,-2.46454,0.7884013,6.8807764,-2.202071,0.4032243,6.9324718,-2.555562,0.09375735,6.8807774,-2.836263,-0.30358264,6.826236,-3.016072,-0.75438464,6.7660046,-3.074337,-1.2276485,6.697235,-2.999005,-1.6860795,6.617084,-2.7745385,-2.0773602,6.556222,-2.7271106,-2.1313767,6.556222,-2.4777482,2.6028943,6.556224,-2.749607,2.2455842,6.617086,-2.881378,1.8045094,6.697236,-2.882417,1.3335063,6.766005,-2.760439,0.8707534,6.826236,-2.532327,0.44898435,6.8807774,-2.862253,0.09375735,6.8262367,-3.098839,-0.3399646,6.7660046,-3.216795,-0.8102486,6.6972356,-3.199756,-1.2810116,6.617084,-3.026172,-1.7020358,6.556222,-2.774538,2.2648747,6.556223,-2.999005,1.8735955,6.617085,-3.074337,1.4151634,6.697236,-3.016072,0.9418994,6.7660046,-2.836263,0.49109736,6.826236,-3.127208,0.093757376,6.7660055,-3.305014,-0.3685326,6.6972356,-3.347967,-0.84675467,6.6170845,-3.228722,-1.2933358,6.5562224,-3.0261722,1.8895512,6.556222,-3.199756,1.4685265,6.617085,-3.216795,0.9977634,6.6972356,-3.098839,0.5274794,6.7660055,-3.335252,0.0937564,6.6972365,-3.439749,-0.38720158,6.6170845,-3.3782623,-0.8551864,6.5562224,-3.2287228,1.480851,6.5562215,-3.347967,1.0342695,6.617085,-3.305014,0.5560474,6.6972365,-3.471207,0.093756415,6.6170864,-3.4708667,-0.39151323,6.5562224,-3.378263,1.0427015,6.5562205,-3.439749,0.5747163,6.6170855,-3.5026093,0.09375643,6.55622,-3.4901178,-0.09719476,6.5562224,-3.4708683,0.57902825,6.55622,-4.526477,-0.5377773,5.483793,-4.3738403,-0.51662844,5.819989,-4.400848,-0.5038144,5.7628655,-4.545858,0.09375668,5.5316544,-4.567784,0.09375669,5.483794,-4.5280294,-0.09405032,5.543756,-4.437114,-0.45259437,5.691017,-4.5026593,-0.24771233,5.5771956,-4.4717026,-0.36722633,5.627705,-4.794363,-0.24771233,5.576961,-4.79869,-0.09405032,5.543545,-5.227801,-0.09405032,5.541005,-5.225984,0.09375768,5.528968,-4.800253,0.09375768,5.531458,-4.787829,-0.36722633,5.627441,-5.232822,-0.24771233,5.574286,-5.620458,-0.09405032,5.534114,-5.61567,0.09375768,5.522209,-5.2278,0.28156665,5.541005,-4.798688,0.28156665,5.543544,-4.779637,-0.45259437,5.690717,-5.240409,-0.36722633,5.624561,-4.52803,0.28156665,5.5437555,-4.794363,0.43522766,5.57696,-4.50266,0.43522766,5.5771947,-5.620457,0.28156665,5.534114,-5.232823,0.43522766,5.574285,-4.723896,0.09375678,5.129637,-4.681186,-0.55921423,5.129636,-4.770342,-0.5038144,5.762527,-5.249918,-0.45259437,5.687582,-5.633692,-0.24771233,5.567028,-4.787829,0.55474263,5.627441,-4.4717026,0.55474263,5.627705,-5.975729,-0.09405032,5.520694,-5.968364,0.09375769,5.509048,-5.975729,0.28156668,5.520694,-5.633693,0.43522766,5.567027,-4.681186,0.7467288,5.129637,-4.526477,0.7252927,5.483794,-4.870523,0.09375686,4.778326,-4.826497,-0.57934815,4.778326,-4.55658,-1.1831242,5.1296353,-4.405962,-1.1412063,5.4837937,-4.3641276,-0.5208884,5.838982,-4.760494,-0.5208884,5.838603,-5.260711,-0.5038144,5.7591,-5.653685,-0.36722633,5.616748,-5.240409,0.55474263,5.624561,-4.779637,0.64010966,5.690718,-4.437114,0.64010966,5.691018,-5.996094,0.43522766,5.552891,-5.653685,0.55474263,5.616748,-4.55658,1.3706398,5.1296363,-4.405962,1.3287207,5.4837933,-4.826497,0.76686287,4.778326,-5.005292,0.093756944,4.430573,-4.960056,-0.5978541,4.430572,-4.698048,-1.2224962,4.7783256,-4.355361,-1.7726912,5.1296353,-4.211348,-1.7114183,5.4837937,-4.363663,-0.5206416,5.840084,-4.248478,-1.0973765,5.8400836,-5.272145,-0.5208884,5.834867,-5.678747,-0.45259437,5.679071,-5.996093,-0.24771231,5.552891,-5.249919,0.64010966,5.687582,-4.770342,0.6913306,5.762527,-4.4008484,0.6913306,5.7628655,-6.292689,-0.09405031,5.49857,-6.283118,0.09375769,5.487351,-6.292689,0.28156668,5.498569,-6.31915,0.43522766,5.529586,-6.026855,0.55474263,5.601529,-4.355361,1.9602078,5.1296363,-4.211348,1.8989336,5.4837947,-4.698048,1.4100118,4.7783265,-4.373841,0.70414376,5.8199887,-4.363663,0.7081569,5.840084,-4.248478,1.2848916,5.8400846,-4.3641276,0.70840365,5.838982,-4.960056,0.7853689,4.430573,-5.125834,0.093757026,4.087087,-5.079515,-0.61440593,4.087087,-4.828075,-1.2586851,4.4305716,-4.490625,-1.8302432,4.7783256,-4.082813,-2.3226311,5.1296353,-3.947747,-2.2433035,5.4837937,-4.060772,-1.6473525,5.8400836,-5.283578,-0.50381446,5.910635,-4.750646,-0.50381446,5.914679,-5.737319,-0.5208884,5.82473,-5.707189,-0.5038144,5.7498,-6.026855,-0.36722633,5.601529,-5.678747,0.64010966,5.679073,-5.260711,0.6913306,5.7591,-4.760494,0.70840365,5.838603,-6.359123,0.5547427,5.576442,-6.065419,0.64010966,5.662498,-4.082812,2.5101469,5.1296353,-3.947747,2.4308186,5.4837933,-4.490625,2.0177588,4.7783265,-4.060772,1.8348676,5.8400846,-4.828075,1.4461999,4.4305725,-5.079516,0.80192107,4.087087,-5.229777,0.09375711,3.748582,-5.182525,-0.6286789,3.7485807,-4.944377,-1.2910529,4.0870867,-4.61495,-1.8831401,4.4305716,-4.209672,-2.3971393,4.7783256,-3.744219,-2.82766,5.1296353,-3.620269,-2.7317533,5.4837937,-3.806527,-2.1603603,5.8400836,-3.905822,-1.5814245,6.1977973,-4.086421,-1.0522745,6.1977973,-4.3302493,-0.50381446,5.9150963,-4.3493547,-0.5132358,5.8730965,-4.741351,-0.45259443,5.986487,-5.294371,-0.45259443,5.982152,-5.767449,-0.50381446,5.899661,-6.065417,-0.45259437,5.662498,-6.319149,-0.24771231,5.529587,-5.707189,0.6913306,5.7498,-5.272145,0.70840365,5.834867,-6.570404,-0.0940503,5.465565,-6.558981,0.0937577,5.454983,-6.570403,0.28156668,5.465564,-6.601981,0.4352277,5.49482,-6.649684,0.5547427,5.539016,-6.409231,0.64010966,5.635176,-3.744219,3.0151758,5.129637,-3.620269,2.9192686,5.4837933,-4.209672,2.5846548,4.7783265,-3.806526,2.3478756,5.8400846,-4.61495,2.070656,4.4305725,-4.086421,1.2397896,6.1977983,-3.905822,1.7689396,6.1977983,-4.944376,1.4785681,4.0870867,-5.182525,0.8161941,3.7485821,-5.31475,0.09375719,3.415766,-5.266734,-0.6403468,3.4157658,-5.044662,-1.3189629,3.7485807,-4.72615,-1.930453,4.0870867,-4.326273,-2.465622,4.4305716,-3.860637,-2.9177413,4.7783256,-3.344864,-3.2824943,5.129635,-3.234024,-3.1716554,5.4837933,-3.49067,-2.6314745,5.8400836,-3.661203,-2.0750074,6.1977973,-4.198257,-0.4922995,6.197798,-3.748683,-1.5145665,6.5562224,-3.922074,-1.0065346,6.5562224,-4.2998652,-0.45259443,5.986939,-6.15554,-0.5208884,5.804988,-6.109179,-0.5038144,5.731688,-6.359123,-0.36722633,5.576442,-6.109179,0.69132966,5.731688,-5.737319,0.70840365,5.82473,-5.283578,0.69133055,5.910635,-4.750646,0.69133055,5.914678,-6.709481,0.64010966,5.594416,-6.466094,0.6913306,5.70183,-3.344864,3.4700098,5.129637,-3.234024,3.3591707,5.483795,-3.860638,3.1052568,4.778327,-3.490671,2.8189895,5.8400846,-4.326272,2.653139,4.4305725,-3.661203,2.2625237,6.1977983,-4.72615,2.117968,4.0870876,-4.198258,0.6798145,6.197798,-4.3493543,0.7007508,5.8730984,-3.922074,1.1940495,6.5562224,-3.748683,1.7020814,6.5562234,-5.044662,1.506479,3.7485814,-4.3302503,0.69133055,5.9150953,-5.266734,0.82786214,3.4157672,-5.37838,0.093757264,3.089355,-5.329792,-0.64908373,3.0893538,-5.126645,-1.3417798,3.4157658,-4.822037,-1.9712499,3.7485805,-4.430564,-2.526876,4.0870867,-3.967643,-3.000537,4.430571,-3.448969,-3.3865993,4.778325,-2.890029,-3.6818502,5.129635,-2.794122,-3.5579004,5.483792,-3.118134,-3.0557644,5.840083,-3.357307,-2.5282834,6.1977973,-3.513828,-1.9884505,6.5562224,-4.029447,-0.4689096,6.556222,-3.70765,-1.4970995,6.6383886,-3.879148,-0.99458563,6.638389,-4.275723,-0.36722645,6.050245,-4.73316,-0.36722645,6.049765,-5.303881,-0.36722645,6.045174,-5.795891,-0.45259443,5.970388,-6.201901,-0.50381446,5.878288,-6.409229,-0.45259434,5.635175,-6.60198,-0.2477123,5.494821,-6.15554,0.70840365,5.804988,-5.767449,0.69133055,5.89966,-5.294371,0.6401096,5.982152,-4.74135,0.6401096,5.986486,-6.807943,-0.09405029,5.419502,-6.795006,0.09375771,5.409809,-6.807942,0.28156668,5.419501,-6.843709,0.4352277,5.4463,-6.897739,0.5547427,5.486784,-6.965466,0.6401097,5.537531,-6.77734,0.6913306,5.657285,-2.890029,3.8693657,5.129637,-2.794122,3.7454157,5.483795,-3.448969,3.5741148,4.778327,-3.118134,3.2432806,5.840085,-3.967643,3.1880531,4.430573,-3.357307,2.7157986,6.1977983,-4.430564,2.714392,4.0870867,-3.513827,2.1759653,6.5562224,-4.822037,2.158766,3.7485814,-4.029448,0.65642446,6.556223,-3.879138,1.1821004,6.6383896,-3.70763,1.6846144,6.6383896,-5.126645,1.5292952,3.4157665,-5.329792,0.8366003,3.0893552,-5.418297,0.09375734,2.770056,-5.369351,-0.6545647,2.7700567,-5.188036,-1.3588657,3.0893548,-4.900424,-2.0046017,3.4157655,-4.520494,-2.579694,3.7485802,-4.063351,-3.0745919,4.087086,-3.544655,-3.482286,4.430571,-2.980109,-3.7982693,4.778325,-2.385,-4.0204434,5.129634,-2.305672,-3.8853774,5.483792,-2.693844,-3.4283025,5.840083,-2.998876,-2.9365075,6.1977973,-3.222061,-2.4236348,6.5562224,-3.475357,-1.9658365,6.6383886,-4.23659,0.09375653,6.197799,-4.06625,0.09375644,6.556223,-3.985348,-0.46279857,6.638389,-3.66455,-1.4787016,6.7056155,-3.833994,-0.9819986,6.705616,-4.2598276,-0.24771245,6.1007447,-4.726625,-0.24771245,6.100245,-6.526335,-0.5208884,5.772443,-6.466094,-0.5038144,5.70183,-6.649684,-0.36722633,5.539016,-6.526335,0.70840365,5.772443,-6.201901,0.69133055,5.878288,-5.79589,0.6401096,5.970388,-7.042324,0.6913306,5.595119,-6.84923,0.70840365,5.72389,-2.385,4.2079597,5.129637,-2.305672,4.0728936,5.483795,-2.98011,3.9857838,4.778327,-2.693844,3.6158175,5.840085,-3.544655,3.669802,4.430573,-2.998876,3.1240225,6.1977987,-4.063351,3.262108,4.087088,-3.222061,2.6111493,6.5562224,-4.520494,2.76721,3.7485816,-3.475325,2.1533513,6.6383896,-4.900424,2.1921172,3.4157665,-3.985346,0.6503134,6.638389,-3.833915,1.1695135,6.7056165,-3.66439,1.6662165,6.7056165,-5.188035,1.5463812,3.0893545,-5.369352,0.84208137,2.7700572,-5.226549,-1.3695837,2.7700558,-4.959123,-2.0295758,3.0893545,-4.594011,-2.6228716,3.4157653,-4.145879,-3.13845,3.7485802,-3.63024,-3.5678709,4.087086,-3.062906,-3.905274,4.430571,-2.459508,-4.147303,4.778325,-1.83506,-4.2929926,5.129635,-1.773787,-4.1489797,5.4837933,-2.222729,-3.7441573,5.840083,-2.590652,-3.2949383,6.197797,-2.877935,-2.8155668,6.5562224,-3.18677,-2.3962946,6.6383886,-3.435024,-1.9420185,6.7056155,-4.2541842,-0.09405146,6.1341677,-4.2607965,0.09375654,6.1462474,-4.021749,0.093756415,6.63839,-3.938915,-0.4563626,6.705616,-4.722299,-0.09405146,6.133661,-5.311468,-0.24771245,6.095449,-5.820952,-0.36722645,6.032713,-6.245661,-0.45259443,5.947477,-6.586578,-0.50381446,5.843055,-6.709479,-0.45259434,5.594415,-6.843708,-0.2477123,5.446301,-6.586578,0.69133055,5.843055,-6.245661,0.6401096,5.947477,-4.299866,0.6401096,5.986938,-5.303881,0.5547426,6.045174,-4.73316,0.5547426,6.049765,-5.820952,0.5547426,6.032713,-7.004379,-0.09405028,5.358206,-6.990245,0.093757726,5.349695,-7.004379,0.2815667,5.358206,-7.043456,0.43522772,5.381734,-7.102487,0.5547427,5.417278,-7.176484,0.6401097,5.461833,-7.260458,0.6913307,5.512394,-7.12375,0.70840365,5.65613,-1.835061,4.4805074,5.129637,-1.773787,4.3364944,5.483795,-2.459509,4.334819,4.778327,-2.222729,3.9316735,5.840085,-3.062906,4.09279,4.430573,-2.590652,3.4824536,6.1977987,-3.63024,3.755387,4.087088,-2.877935,3.0030813,6.556224,-4.14588,3.3259661,3.7485816,-3.186727,2.5838103,6.6383896,-4.594011,2.8103883,3.4157667,-3.434771,2.1295333,6.7056165,-4.959123,2.2170932,3.0893555,-3.938894,0.6438774,6.705616,-3.788233,1.1568004,6.7579045,-3.620712,1.6476324,6.7579045,-5.226549,1.5571003,2.7700565,-5.38306,-0.6564646,2.4585838,-5.239895,-1.3732986,2.4585829,-4.995946,-2.0452437,2.7700565,-4.649063,-2.6552057,3.0893543,-4.213346,-3.1906517,3.4157653,-3.704039,-3.64167,3.74858,-3.136961,-4.000981,4.087086,-2.527992,-4.263903,4.430571,-1.892612,-4.428256,4.778325,-1.245493,-4.494211,5.129635,-1.203574,-4.3435926,5.483792,-1.709721,-3.9984035,5.840083,-2.137377,-3.5988333,6.197797,-2.486004,-3.1596928,6.556221,-2.846392,-2.7839706,6.6383886,-3.149857,-2.3674986,6.7056155,-3.974876,0.0937564,6.705616,-3.7885,-0.9692856,6.757904,-3.892044,-0.4498606,6.757904,-3.394661,-1.9179586,6.7579036,-3.621252,-1.4601177,6.7579036,-5.31649,-0.09405146,6.12873,-6.84923,-0.5208884,5.72389,-6.77734,-0.5038144,5.657285,-6.897739,-0.3672263,5.486784,-6.921121,0.6913306,5.790494,-6.643441,0.6401096,5.909708,-6.284224,0.55474156,6.008447,-4.2757235,0.5547426,6.050245,-7.34942,0.7084037,5.56596,-7.205174,0.6913306,5.717139,-1.245494,4.6817265,5.129637,-1.203575,4.5311074,5.483795,-1.892612,4.6157722,4.778327,-1.709721,4.1859183,5.840085,-2.527992,4.45142,4.430573,-2.137377,3.7863495,6.1977987,-3.136961,4.188498,4.087088,-2.486004,3.3472073,6.556224,-3.704039,3.829186,3.748582,-2.846339,2.9714854,6.6383896,-4.213346,3.3781683,3.4157667,-3.149511,2.5550134,6.7056165,-4.649063,2.8427222,3.0893548,-3.393807,2.1054733,6.7579036,-4.995946,2.2327602,2.7700565,-3.891972,0.6373754,6.757904,-3.743924,1.1444683,6.7952514,-3.578347,1.6296073,6.7952514,-5.239894,1.5608144,2.4585836,-5.38306,0.84398043,2.4585843,-5.356426,-0.6527745,2.1639469,-5.213966,-1.3660815,2.1639469,-5.008708,-2.0506725,2.4585836,-4.683599,-2.6754897,2.7700553,-4.263867,-3.2297437,3.0893533,-3.76437,-3.7020006,3.415765,-3.200819,-4.08351,3.74858,-2.589245,-4.368195,4.0870852,-1.945509,-4.55258,4.430571,-1.284865,-4.635678,4.778325,-0.621582,-4.6188173,5.129636,-0.600146,-4.4641085,5.4837933,-1.159745,-4.1861095,5.840083,-1.643793,-3.8434534,6.197797,-2.050819,-3.4514587,6.556221,-2.458724,-3.1243587,6.638388,-2.813486,-2.7506907,6.7056155,-3.113085,-2.3384106,6.7579036,-3.927528,0.09375639,6.757904,-5.318307,0.09375753,6.140768,-4.720735,0.09375753,6.145748,-5.854181,-0.09405146,6.115346,-5.840946,-0.24771245,6.082433,-6.284223,-0.36722642,6.008447,-6.643441,-0.45259443,5.909709,-6.921121,-0.5038144,5.790494,-6.965465,-0.45259434,5.53753,-7.043455,-0.24771228,5.381734,-6.988979,0.6401096,5.853363,-6.693548,0.5547426,5.968443,-4.726625,0.43522754,6.100245,-4.259828,0.43522754,6.1007447,-5.311468,0.43522754,6.095449,-5.840946,0.43522754,6.082433,-6.314986,0.43522754,6.057086,-7.158782,-0.09405026,5.279501,-7.143749,0.09375774,5.272509,-7.158782,0.2815667,5.2795,-7.200344,0.43522772,5.298831,-7.26313,0.55474275,5.328031,-7.341833,0.6401097,5.364635,-7.431146,0.6913307,5.406174,-7.525768,0.7084037,5.45018,-7.438383,0.6913306,5.619526,-0.621583,4.8063326,5.129637,-0.600146,4.6516237,5.4837937,-1.284866,4.823195,4.778327,-1.159746,4.373625,5.840085,-1.945509,4.740097,4.430573,-1.643793,4.0309687,6.1977987,-2.589245,4.5557113,4.087088,-2.050819,3.6389744,6.556224,-3.200819,4.271027,3.748582,-2.458664,3.3118734,6.63839,-3.76437,3.8895173,3.415767,-2.813059,2.9382052,6.7056165,-4.263868,3.4172602,3.0893548,-3.111918,2.5259254,6.7579045,-4.683599,2.8630064,2.7700567,-3.354073,2.0821373,6.7952514,-5.008708,2.2381895,2.4585836,-4.722299,0.28156653,6.133661,-4.2541847,0.28156653,6.1341677,-3.84646,0.63106936,6.795251,-3.702818,1.1330284,6.8176613,-3.539044,1.6128843,6.8176613,-5.213966,1.5535985,2.1639476,-5.356427,0.8402905,2.1639473,-5.282792,-0.64257145,1.8942099,-5.142279,-1.3461305,1.8942096,-4.983916,-2.0401244,2.1639466,-4.695567,-2.6825185,2.4585824,-4.295561,-3.2542667,2.7700553,-3.809547,-3.7471776,3.089354,-3.253021,-4.150977,3.415765,-2.642063,-4.458125,3.74858,-1.992821,-4.6637797,4.087086,-1.321053,-4.765706,4.430571,-0.641716,-4.764127,4.778325,0.03139,-4.661526,5.129636,0.03139,-4.5054154,5.4837933,-0.577733,-4.3023486,5.840083,-1.114643,-4.0240517,6.197797,-1.576935,-3.6863146,6.556222,-2.028269,-3.4129567,6.638388,-2.430351,-3.0871427,6.705615,-2.780883,-2.7170737,6.7579036,-3.846633,-0.44355464,6.795251,-3.881604,0.09375638,6.795253,-3.744556,-0.9569536,6.795251,-3.579627,-1.4420927,6.7952504,-3.356097,-1.8946227,6.7952504,-3.078221,-2.3101966,6.7952504,-5.31649,0.28156653,6.12873,-5.858968,0.09375754,6.127251,-7.12375,-0.5208884,5.65613,-7.042324,-0.5038144,5.595119,-7.102487,-0.3672263,5.417278,-7.282033,0.64010966,5.774727,-7.048777,0.5547426,5.908763,-6.733522,0.43522757,6.015298,-7.620388,0.6913307,5.494187,-7.522356,0.64010966,5.670087,0.031388,4.8490415,5.1296377,0.031388,4.6929307,5.483795,-0.641717,4.951643,4.778327,-0.577733,4.4898624,5.840085,-1.321054,4.953223,4.430573,-1.114643,4.2115664,6.1977987,-1.992822,4.851296,4.087088,-1.576935,3.8738294,6.556224,-2.642063,4.645641,3.7485821,-2.028205,3.6004713,6.63839,-3.253022,4.338493,3.415767,-2.429867,3.2746572,6.705617,-3.809547,3.9346943,3.089356,-2.779442,2.9045882,6.7579045,-4.295561,3.4417832,2.7700577,-3.075454,2.4977114,6.7952514,-4.695567,2.8700354,2.4585838,-3.317213,2.0604873,6.8176603,-4.983916,2.2276416,2.1639476,-3.804238,0.6252194,6.817661,-3.666746,1.1229883,6.8251305,-3.504553,1.5982103,6.8251305,-5.142278,1.5336475,1.8942103,-5.282793,0.83008754,1.8942102,-5.411894,-0.24771157,2.397877,-5.426756,-0.09404958,2.442459,-5.754557,-0.094049625,2.609571,-5.748669,-0.24771161,2.56874,-5.3903747,-0.36691707,2.331147,-5.391698,-0.35524186,2.3372848,-5.3424807,-0.51898134,2.0815513,-5.366109,-0.5047365,2.1639469,-5.29476,-0.45958912,1.8942099,-5.3134613,-0.5038135,1.9726006,-5.294873,-0.45985115,1.894682,-5.3392644,-0.5208875,2.0703275,-5.3167324,-0.5059444,1.9849821,-5.171558,-0.6271584,1.6486598,-5.033986,-1.3159914,1.6486596,-4.915372,-2.0109615,1.8942095,-4.672315,-2.6688626,2.1639464,-4.306544,-3.2627645,2.4585834,-3.837889,-3.7755187,2.770056,-3.292113,-4.201499,3.089353,-2.685241,-4.531642,3.4157648,-2.033619,-4.759668,3.7485797,-1.353421,-4.882007,4.0870852,-0.660222,-4.897687,4.430572,0.03139,-4.808154,4.778325,0.684361,-4.6188173,5.129635,0.662924,-4.4641085,5.483792,0.03139,-4.3421893,5.840083,-0.554668,-4.1358895,6.197797,-1.068903,-3.8597057,6.556221,-1.559528,-3.6452618,6.638388,-2.004893,-3.3724027,6.705615,-2.402413,-3.0495496,6.757903,-2.750251,-2.6844666,6.7952504,-5.854181,0.28156653,6.115346,-6.342716,0.09375755,6.100928,-6.335351,-0.09405045,6.089283,-6.314986,-0.24771243,6.057086,-6.693549,-0.36722642,5.968443,-6.988979,-0.4525944,5.853364,-7.205174,-0.5038144,5.717139,-7.176483,-0.4525943,5.461832,-7.200344,-0.24771225,5.298831,-7.349761,0.55474263,5.825475,-7.09648,0.43522757,5.952959,-6.335351,0.28156653,6.089283,-6.759983,0.28156653,6.046315,-7.270219,-0.094050236,5.18121,-7.254568,0.09375776,5.176115,-7.270219,0.28156674,5.18121,-7.313493,0.43522775,5.195296,-7.378864,0.55474275,5.216576,-7.460809,0.6401098,5.24325,-7.5538,0.69133073,5.27352,-7.652318,0.70840377,5.305589,-7.750833,0.69133073,5.337658,-7.709702,0.6401097,5.535725,0.68436,4.8063326,5.1296377,0.031388,4.8490415,5.1296377,0.031388,4.6929307,5.483795,0.662924,4.6516247,5.483795,0.031388,4.99567,4.778327,0.031388,4.5297046,5.840085,-0.660223,5.085203,4.4305735,-0.554669,4.323405,6.1977987,-1.353422,5.069524,4.0870886,-1.068904,4.0472207,6.556224,-2.033619,4.947184,3.7485821,-1.559468,3.8327763,6.63839,-2.685242,4.719158,3.4157672,-2.004387,3.5599174,6.705617,-3.292113,4.3890142,3.089355,-2.400779,3.2370644,6.757905,-3.837889,3.9630363,2.770058,-2.746836,2.8719823,6.7952514,-4.306544,3.4502816,2.4585848,-3.041627,2.4715374,6.8176613,-4.672315,2.8563795,2.1639478,-3.284865,2.0414894,6.8251305,-4.915372,2.1984775,1.8942105,-3.838999,0.09375638,6.817662,-3.767185,0.6200854,6.82513,-3.637538,1.1148603,6.8176613,-3.476626,1.5863273,6.8176613,-5.033985,1.5035076,1.6486603,-5.171558,0.81467557,1.6486602,-5.364897,0.69295657,2.1597104,-5.366111,0.69223756,2.1639473,-5.2947536,0.64722157,1.8942102,-5.3108454,0.68526447,1.9616624,-5.3392653,0.70840454,2.0703285,-5.313462,0.6913315,1.9726013,-5.336534,0.7066266,2.0599916,-5.3903394,0.55474347,2.3309827,-5.411895,0.43522844,2.397877,-5.3917003,0.5427399,2.337296,-5.739777,0.5547434,2.5070612,-5.74867,0.43522838,2.56874,-5.756685,0.093758374,2.624339,-6.04804,0.09375833,2.811436,-6.048925,-0.09404967,2.797765,-5.739778,-0.3672256,2.50706,-5.3903394,-0.36722556,2.3309815,-5.3783364,-0.44875216,2.2578552,-5.3777647,-0.45259354,2.254341,-5.72863,-0.4525936,2.429744,-5.288801,-0.45259345,1.8801725,-5.25853,-0.3774528,1.8031969,-5.2543335,-0.36722544,1.7925526,-5.233816,-0.26113963,1.7324878,-5.231163,-0.24771139,1.724762,-5.223196,-0.11242966,1.6879749,-5.222074,-0.0940504,1.6828905,-5.22877,0.06708919,1.6744813,-5.229861,0.0937576,1.6730523,-5.218711,0.09375761,1.64866,-5.032123,-0.60783833,1.4265848,-4.898237,-1.2782114,1.4265846,-4.811828,-1.9669063,1.6486595,-4.60803,-2.6311054,1.8942094,-4.285206,-3.2462544,2.1639464,-3.84771,-3.7853396,2.458583,-3.316636,-4.2331915,2.770056,-2.717575,-4.586693,3.0893528,-2.066971,-4.838054,3.4157648,-1.381332,-4.982293,3.7485797,-0.676774,-5.017147,4.0870857,0.03139,-4.942923,4.430572,0.704495,-4.764127,4.778325,1.308272,-4.494211,5.129635,1.266353,-4.3435926,5.4837933,0.640511,-4.3023477,5.840083,0.03139,-4.1742215,6.1977983,-0.531278,-3.9670796,6.556222,-1.057003,-3.8167696,6.638388,-1.54155,-3.6020217,6.705615,-1.982035,-3.3314388,6.757902,-2.376439,-3.0130856,6.79525,-3.804577,-0.43770465,6.817661,-3.704054,-0.9455136,6.817661,-3.541545,-1.4253696,6.8176603,-3.321165,-1.8729727,6.8176603,-3.04703,-2.2840226,6.8176603,-2.723255,-2.6542177,6.8176603,-7.34942,-0.5208883,5.56596,-7.260458,-0.50381434,5.512394,-7.26313,-0.36722627,5.328031,-7.596354,0.55474263,5.714642,-7.403791,0.4352276,5.865957,-7.128059,0.28156656,5.982215,-7.843826,0.6401097,5.367928,-7.788406,0.5547427,5.57233,1.308271,4.6817265,5.129637,1.266352,4.5311074,5.4837937,0.704494,4.951643,4.778327,0.031388,4.99567,4.778327,0.031388,4.5297046,5.840085,0.64051,4.4898643,5.840085,0.031388,5.13044,4.4305744,0.031388,4.361737,6.1978,-0.676775,5.204662,4.0870886,-0.531278,4.1545935,6.556223,-1.381332,5.16981,3.7485821,-1.056954,4.0042844,6.63839,-2.066971,5.02557,3.4157672,-1.54107,3.7895362,6.705617,-2.717576,4.77421,3.0893562,-1.980327,3.5189543,6.757905,-3.316636,4.4207087,2.770057,-2.372565,3.2006004,6.795252,-3.84771,3.9728575,2.458585,-2.716586,2.8417323,6.8176613,-4.285206,3.4337716,2.1639478,-3.011942,2.4485683,6.8251305,-4.60803,2.8186226,1.8942107,-3.258673,2.0261064,6.8176613,-4.811828,2.1544225,1.6486604,-3.801611,0.09375638,6.82513,-3.737183,0.6159284,6.817661,-3.617023,1.1091503,6.7952514,-3.45701,1.5779814,6.7952514,-4.898237,1.4657277,1.4265853,-5.032123,0.7953556,1.4265852,-5.426755,0.2815674,2.442458,-5.754556,0.28156736,2.60957,-6.051366,-0.24771166,2.759969,-6.055057,-0.36722565,2.702874,-5.3676934,-0.4988975,2.1771317,-5.715981,-0.5038136,2.3420017,-5.702579,-0.52088755,2.2490478,-5.078012,0.09375766,1.426585,-4.873888,-0.5859133,1.2272758,-4.744187,-1.2353374,1.2272757,-4.682034,-1.9116814,1.4265845,-4.51092,-2.5740705,1.6486584,-4.226212,-3.2006075,1.8942093,-3.828629,-3.7662585,2.1639462,-3.325134,-4.2441745,2.458583,-2.737859,-4.6212296,2.7700548,-2.091946,-4.896754,3.0893538,-1.404148,-5.064275,3.4157648,-0.691047,-5.120156,3.7485807,0.03139,-5.063465,4.0870857,0.723001,-4.897687,4.430571,1.347643,-4.635678,4.778325,1.897838,-4.2929926,5.129635,1.836565,-4.1489797,5.4837933,1.222523,-4.1861095,5.840083,0.617446,-4.1358886,6.197797,0.03139,-4.0038815,6.556222,-0.525197,-3.9229767,6.638388,-1.044762,-3.7715456,6.705615,-1.524107,-3.5583436,6.757903,-1.961038,-3.2917047,6.79525,-2.353956,-2.9792588,6.8176603,-6.769554,0.093757555,6.057534,-6.759983,-0.094050445,6.046315,-6.733522,-0.24771243,6.015298,-7.048777,-0.36722642,5.908763,-7.282033,-0.45259437,5.774728,-7.438383,-0.5038144,5.619526,-7.341831,-0.45259428,5.364635,-7.313493,-0.24771224,5.195297,-7.655385,0.43522763,5.750185,-7.439559,0.2815666,5.892756,-7.13948,0.09375757,5.992797,-7.337765,-0.094050206,5.061158,-7.321756,0.09375779,5.058379,-7.337765,0.28156677,5.061158,-7.382028,0.43522778,5.068839,-7.448892,0.5547428,5.080444,-7.532709,0.6401098,5.094989,-7.627826,0.69133073,5.111497,-7.728595,0.70840377,5.128985,-7.829362,0.69133073,5.146473,-7.924479,0.6401098,5.16298,-7.925769,0.5547427,5.394602,1.897838,4.4805074,5.129637,1.836564,4.3364944,5.483795,1.347643,4.823195,4.778327,1.222523,4.373625,5.840085,0.723,5.085204,4.4305744,0.031388,5.13044,4.4305744,0.031388,4.361737,6.1978,0.617446,4.323405,6.1977987,0.031388,5.250981,4.0870886,0.031388,4.1913967,6.556224,-0.691048,5.307672,3.7485821,-0.525168,4.1104918,6.63839,-1.404149,5.251792,3.4157672,-1.044368,3.9590614,6.705617,-2.091946,5.08427,3.0893562,-1.522487,3.7458584,6.757905,-2.737859,4.8087463,2.7700572,-1.956991,3.4792204,6.795252,-3.325135,4.4316916,2.458585,-2.346391,3.1667733,6.817662,-3.828629,3.9537766,2.163948,-2.690041,2.8151872,6.8251305,-4.226212,3.3881235,1.8942108,-2.987906,2.4299693,6.8176613,-4.51092,2.7615876,1.6486607,-3.240276,2.0153003,6.7952504,-4.682034,2.0991988,1.4265854,-3.767771,-0.43257064,6.82513,-3.771338,0.09375638,6.817661,-3.716111,0.6130084,6.795251,-3.607033,1.1063703,6.7579036,-3.447459,1.5739174,6.7579045,-4.744186,1.4228536,1.2272763,-4.873889,0.7734307,1.2272762,-5.689178,0.69133145,2.1560943,-5.70258,0.7084045,2.2490482,-5.377765,0.6401105,2.2543411,-5.72863,0.64011043,2.4297442,-5.3903074,0.55496025,2.3307843,-5.3772573,0.642414,2.2504256,-5.715981,0.6913314,2.3420022,-5.3666105,0.69133145,2.1687756,-6.048924,0.2815673,2.797765,-6.307148,0.09375828,3.015606,-6.310802,-0.094049715,3.002852,-6.320901,-0.2477117,2.967587,-6.05968,-0.45259362,2.631303,-5.3666096,-0.50381356,2.1687746,-5.689178,-0.50381356,2.1560938,-6.064929,-0.5038136,2.5500827,-6.070489,-0.5208876,2.4640377,-4.918344,0.09375771,1.227276,-4.706254,-0.56268626,1.0500199,-4.580984,-1.1899152,1.0500197,-4.53474,-1.8490113,1.2272755,-4.38919,-2.5025742,1.4265844,-4.137093,-3.1316504,1.6486592,-3.775874,-3.7135046,1.8942091,-3.308624,-4.2228365,2.1639462,-2.744888,-4.6331964,2.458582,-2.107613,-4.9335766,2.7700548,-1.421234,-5.125666,3.0893528,-0.702715,-5.204365,3.4157658,0.03139,-5.167408,3.7485807,0.739553,-5.017146,4.0870857,1.383832,-4.765706,4.430571,1.95539,-4.428256,4.778325,2.447778,-4.0204434,5.129635,2.36845,-3.8853784,5.4837933,1.772498,-3.9984035,5.840083,1.177421,-4.0240517,6.197797,0.594056,-3.9670787,6.556221,0.03139,-3.9593797,6.638389,-0.51897,-3.8765247,6.705615,-1.032987,-3.7258646,6.757903,-1.508302,-3.5159776,6.79525,-1.943246,-3.2548447,6.817659,-3.66888,-0.93547463,6.82513,-3.508875,-1.4106957,6.8251295,-3.291695,-1.8539747,6.8251295,-3.021279,-2.2610536,6.8251295,-2.701566,-2.6276727,6.8251295,-2.336494,-2.9495738,6.8251295,-7.525767,-0.5208883,5.45018,-7.431146,-0.50381434,5.406174,-7.378864,-0.36722624,5.216576,-7.851192,0.43522766,5.60153,-7.694463,0.28156662,5.773714,-7.452494,0.09375759,5.90245,-8.008296,0.55474275,5.177526,-7.991141,0.4352277,5.415882,2.447778,4.2079587,5.129636,2.36845,4.0728936,5.4837937,1.955389,4.6157722,4.778327,1.772498,4.1859183,5.840085,1.383831,4.953223,4.430573,1.17742,4.2115664,6.1977987,0.739552,5.2046633,4.0870886,0.031388,5.250981,4.0870886,0.031388,4.1913967,6.556224,0.594055,4.1545944,6.556224,0.031388,5.354924,3.748583,0.031388,4.1468945,6.638391,-0.702716,5.391881,3.4157672,-0.518731,4.0640397,6.705617,-1.421235,5.313183,3.0893562,-1.031654,3.9133794,6.757905,-2.107613,5.1210947,2.7700582,-1.504461,3.7034924,6.795252,-2.744889,4.8207135,2.4585843,-1.935341,3.4423594,6.817662,-3.308624,4.4103537,2.163948,-2.323422,3.1370883,6.825131,-3.775874,3.9010215,1.8942109,-2.668547,2.7936933,6.8176613,-4.137094,3.3191676,1.6486608,-2.971022,2.4169064,6.7952514,-4.389189,2.6900918,1.4265856,-3.231318,2.0100393,6.7579036,-4.53474,2.0365298,1.2272764,-3.738115,-0.42841363,6.817661,-3.750075,0.09375638,6.795252,-3.70585,0.6115864,6.757904,-3.609396,1.1070274,6.7056155,-3.449719,1.5748794,6.7056155,-4.580984,1.3774327,1.0500203,-4.706254,0.7502038,1.0500202,-5.2517314,0.541581,1.7849762,-5.656489,0.43522853,1.9293561,-5.665382,0.5547435,1.9910363,-5.254334,0.5547436,1.792553,-5.2844048,0.6294049,1.8690217,-5.676528,0.64011055,2.0683522,-6.076049,0.6913314,2.3779933,-6.070489,0.7084044,2.4640381,-6.051366,0.43522835,2.759969,-6.055057,0.55474335,2.7028742,-6.336159,-0.3672257,2.914316,-6.355284,-0.45259368,2.847539,-6.076049,-0.5038136,2.3779917,-5.676528,-0.4525935,2.068352,-5.665382,-0.36722547,1.991036,-5.656489,-0.24771145,1.929356,-4.74919,0.09375775,1.05002,-4.538619,-0.5394592,0.89410585,-4.417782,-1.1444943,0.8941057,-4.378695,-1.7826183,1.0500195,-4.251047,-2.4214392,1.2272754,-4.025381,-3.0452123,1.4265842,-3.696182,-3.6338124,1.6486591,-3.262976,-4.1638427,1.894209,-2.731232,-4.6099453,2.163946,-2.113042,-4.9463377,2.458582,-1.431953,-5.1641784,2.7700548,-0.711453,-5.267423,3.0893538,0.03139,-5.252381,3.4157648,0.753826,-5.120155,3.7485797,1.4162,-4.882008,4.087086,2.008287,-4.55258,4.430571,2.522286,-4.147303,4.778325,2.952807,-3.6818502,5.129635,2.8569,-3.5579004,5.4837933,2.285507,-3.7441585,5.840083,1.706571,-3.8434534,6.197797,1.131681,-3.8597057,6.556222,0.587945,-3.9229767,6.638388,0.03139,-3.9125078,6.705615,-0.513036,-3.8296027,6.757903,-1.022484,-3.6815557,6.79525,-1.495241,-3.4766757,6.81766,-1.930002,-3.2224967,6.825129,-7.128058,-0.09405143,5.982215,-7.09648,-0.24771242,5.952959,-7.349762,-0.3672264,5.825475,-7.522357,-0.45259437,5.670087,-7.620388,-0.50381434,5.494188,-7.460807,-0.45259425,5.243249,-7.382028,-0.24771221,5.068839,-7.892755,0.28156665,5.62086,-7.708596,0.09375762,5.782224,-7.439557,-0.094051406,5.892756,-7.360487,-0.09405017,4.917167,-7.344362,0.09375783,4.917167,-7.360487,0.2815668,4.917167,-7.405067,0.4352278,4.917167,-7.472413,0.5547428,4.917167,-7.556832,0.64010984,4.917166,-7.652633,0.6913308,4.917167,-7.754126,0.7084038,4.917167,-7.855618,0.6913308,4.917167,-7.951418,0.64010984,4.917167,-8.035838,0.5547428,4.917167,-8.075161,0.43522775,5.189131,2.952806,3.8693657,5.129637,2.8569,3.7454157,5.4837937,2.522286,4.334819,4.778327,2.285507,3.9316726,5.840085,2.008286,4.740097,4.430573,1.706571,4.0309687,6.1977987,1.416199,5.069523,4.0870876,1.131681,4.0472207,6.556223,0.753825,5.307672,3.748583,0.031388,5.354924,3.748583,0.031388,4.1468945,6.638391,0.587945,4.1104927,6.63839,0.031388,5.439897,3.4157672,0.031388,4.100023,6.705617,-0.711453,5.454939,3.0893552,-0.51223,4.0171175,6.757905,-1.431954,5.3516965,2.7700572,-1.019323,3.8690703,6.795252,-2.113043,5.1338544,2.4585853,-1.487739,3.6641903,6.817662,-2.731232,4.7974625,2.1639483,-1.916343,3.4100122,6.825131,-3.262977,4.3513594,1.894211,-2.304823,3.1130524,6.817662,-3.696182,3.8213296,1.6486609,-2.65345,2.7785964,6.7952514,-4.025381,3.2327297,1.4265857,-2.962801,2.4105453,6.7579036,-4.251047,2.6089568,1.2272766,-3.233438,2.0112844,6.7056155,-4.378695,1.9701368,1.0500205,-3.640926,-0.92734563,6.817661,-3.717502,-0.42549363,6.795251,-3.73972,0.09375639,6.757904,-3.708278,0.6119234,6.705615,-3.625946,1.1116334,6.6383896,-3.465542,1.5816114,6.6383896,-4.417782,1.3320118,0.89410627,-4.53862,0.72697574,0.89410615,-5.231163,0.4352286,1.7247621,-6.089612,0.43522847,2.168106,-6.085923,0.55474347,2.2252011,-5.288802,0.6401106,1.8801734,-6.081297,0.6401105,2.2967722,-6.064929,0.6913314,2.5500832,-6.05968,0.6401104,2.6313033,-6.310801,0.28156728,3.002851,-6.534952,0.093758225,3.232582,-6.541123,-0.09404977,3.220638,-6.558184,-0.24771176,3.187615,-6.583959,-0.36722574,3.137729,-6.37699,-0.5038137,2.7717588,-6.081298,-0.45259356,2.296772,-6.399984,-0.5208877,2.6914768,-6.422978,-0.5038137,2.6111948,-5.650603,-0.09405045,1.888525,-6.085923,-0.36722553,2.225201,-6.089612,-0.24771151,2.168106,-4.580037,0.093757786,0.894106,-4.380384,-0.5175342,0.7588219,-4.263732,-1.1016202,0.7588218,-4.222651,-1.7162262,0.89410555,-4.104697,-2.3354833,1.0500194,-3.898607,-2.9471192,1.2272753,-3.596287,-3.5339162,1.4265841,-3.19402,-4.0747232,1.648659,-2.693475,-4.5456605,1.8942089,-2.102494,-4.9215465,2.163946,-1.435667,-5.1775246,2.458582,-0.716934,-5.3069825,2.7700558,0.03139,-5.316011,3.0893538,0.765494,-5.204365,3.4157648,1.44411,-4.982293,3.7485797,2.0556,-4.6637797,4.087086,2.59077,-4.263904,4.430571,3.042887,-3.798268,4.778325,3.407641,-3.2824943,5.129635,3.296802,-3.1716554,5.4837933,2.756621,-3.4283013,5.840083,2.200155,-3.5988345,6.197797,1.639713,-3.6863146,6.556222,1.119732,-3.8167696,6.638388,0.581509,-3.8765247,6.705615,0.03139,-3.8651597,6.757903,-0.507836,-3.7840908,6.79525,-1.014057,-3.6404498,6.81766,-1.486029,-3.4421847,6.825129,-3.483489,-1.3988127,6.8176603,-3.269518,-1.8385906,6.8176603,-3.002732,-2.2424548,6.8176603,-2.686847,-2.6061776,6.8176603,-2.325581,-2.9255366,6.8176603,-1.922649,-3.1963046,6.81766,-7.652317,-0.52088827,5.305589,-7.5538,-0.5038143,5.27352,-7.448892,-0.3672262,5.080443,-8.034416,0.28156668,5.429968,-7.907787,0.09375766,5.627851,-7.694462,-0.094051376,5.773714,-8.103184,0.4352278,4.917167,-8.119426,0.28156674,5.196813,3.407641,3.4700098,5.129637,3.296802,3.3591707,5.483795,3.042887,3.9857848,4.778327,2.756621,3.6158175,5.840085,2.590769,4.45142,4.430573,2.200154,3.7863495,6.1977987,2.055599,4.851296,4.087088,1.639712,3.8738294,6.556224,1.444109,5.169809,3.7485821,1.119731,4.0042844,6.63839,0.765493,5.391881,3.4157681,0.031388,5.439897,3.4157672,0.031388,4.100023,6.705617,0.581508,4.0640407,6.705617,0.031388,5.503527,3.0893564,0.031388,4.052675,6.757905,-0.716935,5.4944987,2.7700582,-0.505924,3.9716043,6.795252,-1.435668,5.3650427,2.4585843,-1.007882,3.8279643,6.817662,-2.102495,5.1090636,2.1639483,-1.473064,3.6296992,6.825131,-2.693475,4.7331786,1.894211,-1.90096,3.3838193,6.817662,-3.19402,4.2622404,1.648661,-2.29176,3.0961683,6.795252,-3.596287,3.7214339,1.4265858,-2.646098,2.7712443,6.7579045,-3.898608,3.1346369,1.2272767,-2.964747,2.4120502,6.7056155,-4.104697,2.5230007,1.0500206,-3.248278,2.0200002,6.6383896,-4.222651,1.9037428,0.89410645,-3.622082,-0.9216356,6.795251,-3.70783,-0.4240716,6.757903,-3.74217,0.0937564,6.705616,-3.725277,0.6142784,6.638389,-3.65851,1.1206964,6.5562224,-3.496678,1.5948595,6.5562234,-4.263731,1.2891377,0.7588223,-4.380384,0.7050508,0.7588222,-5.2220736,0.28156757,1.6828902,-5.650604,0.28156754,1.8885261,-5.230149,0.4186179,1.7201666,-5.2230053,0.25880638,1.6816711,-5.648474,0.09375855,1.873757,-6.422978,0.6913313,2.6111953,-6.399985,0.70840436,2.6914773,-6.37699,0.6913313,2.7717593,-6.320901,0.4352283,2.967587,-6.336159,0.5547433,2.9143162,-6.616267,-0.45259374,3.075196,-6.652931,-0.50381374,3.0042326,-6.444684,-0.45259362,2.535415,-6.092054,-0.094050504,2.13031,-4.420368,0.09375782,0.758822,-4.240949,-0.49821416,0.6434569,-4.127984,-1.0638402,0.64345676,-4.075356,-1.6535562,0.7588216,-3.958347,-2.2495282,0.89410543,-3.764302,-2.8431993,1.0500193,-3.482922,-3.4205523,1.2272751,-3.107582,-3.9630113,1.426584,-2.63644,-4.4485493,1.6486589,-2.073331,-4.8530025,1.8942088,-1.428451,-5.1515965,2.163946,-0.718833,-5.3206906,2.4585829,0.03139,-5.3559275,2.7700548,0.774231,-5.267423,3.0893528,1.466927,-5.0642757,3.4157648,2.096397,-4.759668,3.7485797,2.652023,-4.368195,4.087086,3.125684,-3.905274,4.430571,3.511746,-3.3865993,4.778325,3.806997,-2.8276591,5.1296353,3.683047,-2.7317533,5.4837923,3.180912,-3.0557644,5.840083,2.65343,-3.2949383,6.197797,2.113597,-3.4514587,6.556222,1.622246,-3.6452618,6.638388,1.107146,-3.7715456,6.705615,0.575007,-3.8296027,6.757903,0.03139,-3.8192356,6.795252,-0.503809,-3.7418697,6.81766,-1.008513,-3.6043777,6.825129,-1.481769,-3.4142578,6.81766,-7.403791,-0.24771239,5.865957,-7.596354,-0.36722636,5.714642,-7.709702,-0.45259434,5.535726,-7.750833,-0.5038143,5.337658,-7.532708,-0.45259422,5.094989,-7.405067,-0.24771217,4.917167,-8.050067,0.093757704,5.435063,-7.892754,-0.09405134,5.62086,-7.655385,-0.24771237,5.750185,-7.34878,-0.09405013,4.74867,-7.332822,0.09375787,4.751412,-7.34878,0.28156686,4.748669,-7.392902,0.43522787,4.741088,-7.459552,0.5547429,4.729635,-7.543099,0.6401099,4.715278,-7.637911,0.69133085,4.698986,-7.738358,0.7084039,4.681725,-7.838801,0.69133085,4.664464,-7.933614,0.6401099,4.648172,-8.017161,0.5547429,4.633815,-8.083812,0.4352279,4.622362,-8.147766,0.2815668,4.917167,3.806997,3.0151758,5.129637,3.683047,2.9192686,5.4837947,3.511746,3.5741148,4.778327,3.180912,3.2432806,5.840085,3.125683,4.092791,4.430573,2.65343,3.4824536,6.1977987,2.652022,4.5557113,4.087087,2.113597,3.6389732,6.556223,2.096397,4.947184,3.7485821,1.622245,3.8327763,6.63839,1.466926,5.251791,3.4157672,1.107145,3.9590614,6.705617,0.77423,5.454939,3.0893562,0.031388,5.503527,3.0893564,0.031388,4.052675,6.757905,0.575007,4.0171185,6.757905,0.031388,5.5434446,2.7700574,0.031388,4.0067506,6.7952538,-0.718834,5.5082073,2.4585855,-0.500073,3.9293833,6.817662,-1.428452,5.3391147,2.1639483,-0.997843,3.7918923,6.825131,-2.073331,5.0405197,1.8942112,-1.461182,3.6017723,6.817662,-2.63644,4.6360674,1.6486601,-1.890154,3.3654234,6.795252,-3.107582,4.1505284,1.4265859,-2.285399,3.0879483,6.757905,-3.482922,3.6080697,1.2272768,-2.647838,2.7729843,6.7056155,-3.764302,3.0307167,1.0500207,-2.978366,2.4225883,6.6383896,-3.958347,2.4370458,0.89410657,-3.27748,2.0371513,6.5562224,-4.075356,1.8410728,0.75882244,-3.467255,-1.3904667,6.7952504,-3.614235,-0.9188556,6.757904,-3.710995,-0.4244086,6.705615,-3.759323,0.093756415,6.63839,-3.758725,0.6189135,6.556223,-4.127984,1.2513579,0.6434573,-4.24095,0.6857308,0.6434572,-6.355285,0.6401103,2.8475392,-6.691775,-0.52088773,2.9290528,-6.46381,-0.3672256,2.468638,-6.092939,0.09375849,2.11664,-4.279669,0.093757845,0.643457,-4.129715,-0.48280114,0.5473009,-4.019691,-1.0337011,0.54730076,-3.945562,-1.5983311,0.64345664,-3.820204,-2.1683931,0.7588215,-3.629997,-2.7392793,0.8941053,-3.362822,-3.3004522,1.0500191,-3.009489,-3.8362372,1.227275,-2.564944,-4.3268194,1.4265839,-2.029276,-4.7494583,1.6486589,-1.4085,-5.0799084,1.8942088,-0.715143,-5.2940564,2.163946,0.03139,-5.3697605,2.458582,0.779712,-5.3069816,2.7700558,1.484013,-5.125667,3.0893538,2.129749,-4.838054,3.4157648,2.704841,-4.458125,3.74858,3.199739,-4.000981,4.087086,3.607433,-3.482286,4.430571,3.923416,-2.91774,4.7783256,4.14559,-2.3226311,5.1296344,4.010524,-2.2433035,5.4837923,3.553448,-2.6314745,5.8400836,3.061654,-2.9365075,6.1977973,2.548781,-3.1596928,6.556222,2.090983,-3.4129567,6.638388,1.603848,-3.6020217,6.705615,1.094432,-3.7258646,6.757903,0.568701,-3.7840896,6.79525,0.03139,-3.7766297,6.817661,-0.501395,-3.7048166,6.825129,-1.006659,-3.5751686,6.81766,-8.135433,0.09375776,5.199591,-8.034413,-0.094051294,5.429968,-7.851192,-0.24771233,5.60153,-8.127935,0.2815669,4.61478,4.145591,2.5101469,5.1296363,4.010525,2.4308186,5.4837947,3.923415,3.1052568,4.778327,3.553448,2.8189905,5.8400846,3.607433,3.669802,4.430573,3.061654,3.1240225,6.1977987,3.199739,4.188498,4.087088,2.548781,3.3472073,6.556223,2.70484,4.645641,3.7485821,2.090983,3.6004713,6.63839,2.129748,5.02557,3.4157672,1.603848,3.7895362,6.705617,1.484012,5.313183,3.0893552,1.094431,3.9133794,6.757905,0.779712,5.4944997,2.7700582,0.031388,5.5434446,2.7700574,0.031388,4.0067506,6.7952538,0.568701,3.9716063,6.795252,0.031388,5.5572777,2.4585845,0.031388,3.9641454,6.8176627,-0.715144,5.4815745,2.1639483,-0.494939,3.8923314,6.825131,-1.4085,5.2674265,1.8942113,-0.989714,3.7626843,6.817662,-2.029276,4.9369755,1.6486611,-1.452836,3.5821564,6.795252,-2.564944,4.5143375,1.426586,-1.884893,3.3564644,6.757905,-3.00949,4.0237556,1.2272769,-2.286904,3.0898933,6.705616,-3.362822,3.4879699,1.0500208,-2.660017,2.7851634,6.6383896,-3.629997,2.9267957,0.8941067,-3.005164,2.4433234,6.5562224,-3.820204,2.3559108,0.75882256,-3.945562,1.7858489,0.6434574,-3.256465,-1.8277856,6.7952504,-3.462044,-1.3864027,6.7579036,-3.619277,-0.9195136,6.705615,-3.728893,-0.4267636,6.638389,-3.793075,0.09375644,6.556223,-4.019691,1.2212188,0.5473013,-4.129715,0.6703189,0.5473012,-6.092055,0.28156748,2.130311,-6.479067,0.4352284,2.415366,-6.463809,0.5547434,2.4686382,-6.444683,0.64011043,2.5354142,-6.730618,0.69133127,2.8538742,-6.691776,0.7084043,2.9290533,-6.652931,0.69133127,3.0042331,-6.616268,0.6401103,3.0751972,-6.558184,0.43522823,3.187615,-6.541122,0.28156722,3.220637,-6.583959,0.55474323,3.1377292,-6.843454,-0.4525938,3.311022,-6.893527,-0.5038138,3.2447088,-6.732404,0.09375817,3.458095,-6.740831,-0.09404982,3.446934,-6.764131,-0.24771181,3.416074,-6.799332,-0.3672258,3.369457,-6.946572,-0.5208878,3.1744547,-6.730617,-0.50381374,2.8538737,-6.767283,-0.45259368,2.78291,-6.799591,-0.36722565,2.720377,-6.489168,-0.094050564,2.380102,-6.492822,0.093758434,2.367347,-6.479067,-0.24771157,2.415366,-4.167427,0.09375787,0.547301,-4.056081,-0.4725981,0.46963984,-3.948004,-1.0137501,0.46963972,-3.842019,-1.5542761,0.54730064,-3.698474,-2.0968971,0.6434565,-3.503223,-2.6411862,0.75882137,-3.242723,-3.1803532,0.8941052,-2.905569,-3.7019322,1.0500191,-2.483809,-4.1886764,1.227275,-1.974051,-4.6196647,1.4265839,-1.37836,-4.9716153,1.6486588,-0.70494,-5.2204223,1.8942088,0.03139,-5.3428855,2.163946,0.781612,-5.3206906,2.4585829,1.494731,-5.1641793,2.7700548,2.154723,-4.896754,3.0893538,2.748019,-4.531642,3.4157648,3.263597,-4.08351,3.74858,3.693018,-3.5678709,4.087086,4.030421,-3.000536,4.430571,4.272449,-2.3971393,4.7783256,4.418139,-1.7726912,5.1296353,4.274126,-1.7114173,5.4837937,3.869304,-2.1603603,5.8400836,3.420085,-2.5282834,6.1977973,2.940713,-2.8155668,6.5562224,2.521441,-3.1243587,6.638388,2.067165,-3.3724027,6.705615,1.585264,-3.5583436,6.757903,1.0821,-3.6815557,6.79525,0.562851,-3.7418678,6.81766,0.03139,-3.7392426,6.825129,-0.501034,-3.6748147,6.81766,-1.009298,-3.5546536,6.79525,-1.483568,-3.3946416,6.79525,-2.993155,-2.2293916,6.7952504,-2.680767,-2.5910807,6.7952504,-2.322745,-2.9086537,6.7952504,-1.922531,-3.1779077,6.795249,-7.788406,-0.36722633,5.57233,-7.843826,-0.45259428,5.367929,-7.829362,-0.5038143,5.146473,-7.728594,-0.52088827,5.128985,-7.627826,-0.5038143,5.111497,-7.556831,-0.4525942,4.917167,-7.472413,-0.36722618,4.917167,-8.16389,0.09375783,4.917167,-8.119425,-0.094051234,5.196813,-7.991141,-0.24771228,5.415882,-7.392902,-0.24771212,4.741088,-7.313033,-0.09405009,4.559341,-7.297567,0.09375791,4.564315,-7.313033,0.2815669,4.559341,-7.35579,0.4352279,4.54559,-7.420383,0.55474293,4.524817,-7.501349,0.64010996,4.498778,-7.593231,0.6913309,4.469228,-7.690575,0.70840394,4.437923,-7.787916,0.6913309,4.406618,-7.879799,0.64010996,4.377068,-7.960765,0.55474293,4.351029,-8.025357,0.43522796,4.330256,-8.068116,0.28156695,4.316506,-8.143893,0.0937579,4.612038,4.418139,1.9602078,5.1296363,4.274126,1.8989336,5.4837947,4.27245,2.5846558,4.7783265,3.869305,2.3478765,5.8400846,4.030421,3.1880531,4.430573,3.420085,2.7157986,6.1977983,3.693018,3.755387,4.087088,2.940713,3.0030813,6.556224,3.263596,4.271027,3.748582,2.521441,3.3118734,6.63839,2.748019,4.719158,3.4157672,2.067164,3.5599174,6.705617,2.154723,5.08427,3.0893562,1.585264,3.7458584,6.757905,1.494731,5.3516965,2.7700572,1.0821,3.8690703,6.795252,0.781611,5.5082073,2.4585855,0.031388,5.5572777,2.4585845,0.031388,3.9641454,6.8176627,0.56285,3.9293842,6.817662,0.031388,5.5304036,2.1639485,0.031388,3.9267573,6.825131,-0.704941,5.4079385,1.8942113,-0.490782,3.8623292,6.817662,-1.378361,5.1591334,1.6486611,-0.984004,3.7421694,6.795252,-1.974052,4.8071814,1.4265862,-1.448771,3.5726054,6.757905,-2.483809,4.3761945,1.227277,-1.886138,3.3585854,6.705616,-2.905569,3.8894508,1.0500209,-2.297442,3.1035123,6.63839,-3.242723,3.3678708,0.89410675,-2.68398,2.8091264,6.5562234,-3.503223,2.8287039,0.7588227,-3.698474,2.2844148,0.64345753,-1.469713,3.6218243,6.556224,-3.842019,1.7417939,0.5473014,-3.254368,-1.8225247,6.7579036,-3.469727,-1.3873645,6.7056146,-3.639097,-0.9241196,6.638389,-3.76342,-0.43139857,6.556222,-3.531252,-1.4073446,6.5562224,-3.948004,1.2012678,0.46964025,-4.056081,0.6601159,0.46964014,-6.489169,0.28156742,2.380103,-6.825365,0.43522835,2.670492,-6.799591,0.55474335,2.7203772,-6.767282,0.6401104,2.7829092,-6.740831,0.28156716,3.446933,-6.90045,0.09375812,3.687876,-6.910866,-0.09404988,3.677546,-6.939656,-0.24771187,3.648986,-6.98315,-0.36722586,3.605842,-7.03767,-0.45259386,3.55176,-7.099543,-0.50381386,3.4903889,-6.99962,-0.5038138,3.1042018,-6.825365,-0.24771163,2.670492,-7.049691,-0.45259374,3.037888,-7.093814,-0.3672257,2.979453,-6.842426,-0.09405062,2.637469,-6.848598,0.093758374,2.625525,-4.093125,0.09375789,0.46963996,-4.029447,-0.46890813,0.40976387,-3.922074,-1.0065331,0.40976375,-3.773476,-1.5251131,0.4696396,-3.601364,-2.0398612,0.5473005,-3.391511,-2.5547473,0.6434564,-3.129358,-3.0669882,0.7588213,-2.801648,-3.5676272,0.89410514,-2.397854,-4.0423265,1.050019,-1.911382,-4.4723706,1.2272749,-1.34058,-4.8358665,1.4265838,-0.689528,-5.1091886,1.6486588,0.03139,-5.2685833,1.8942087,0.777922,-5.2940564,2.163946,1.498446,-5.1775255,2.458582,2.170391,-4.9335766,2.7700558,2.780353,-4.586693,3.0893538,3.315799,-4.150977,3.415765,3.766817,-3.64167,3.74858,4.126129,-3.0745919,4.087086,4.38905,-2.465622,4.4305716,4.553403,-1.8302422,4.7783256,4.619358,-1.1831242,5.1296353,4.468739,-1.1412053,5.4837923,4.12355,-1.6473514,5.8400836,3.72398,-2.0750074,6.1977973,3.284838,-2.4236348,6.5562215,2.909117,-2.7839706,6.6383886,2.492645,-3.0871427,6.705615,2.043105,-3.3314388,6.757903,1.567239,-3.5159776,6.79525,1.07066,-3.6404498,6.81766,0.557717,-3.7048166,6.825129,0.03139,-3.7089696,6.81766,-0.503165,-3.6537426,6.79525,-2.994314,-2.2230306,6.7579036,-2.684993,-2.5837297,6.7579036,-2.329516,-2.9004326,6.7579026,-1.930991,-3.1689496,6.757902,-1.492529,-3.3850896,6.757903,-1.017238,-3.5446637,6.757902,-7.754125,-0.5208882,4.917167,-7.652633,-0.5038142,4.917167,-7.459552,-0.36722612,4.729635,-8.147765,-0.09405117,4.917167,-8.075161,-0.24771224,5.189131,-7.92577,-0.36722627,5.394602,-7.35579,-0.24771208,4.54559,-7.252307,-0.094050035,4.353373,-7.237653,0.09375796,4.360145,-7.252307,0.28156695,4.353373,-7.292825,0.43522796,4.334652,-7.517826,0.69133097,4.230694,-7.610069,0.708404,4.188076,-7.70231,0.69133097,4.145456,-7.789378,0.64011,4.105228,-8.08358,0.09375797,4.311532,-8.127934,-0.0940511,4.61478,4.619358,1.3706408,5.1296363,4.468739,1.3287216,5.4837947,4.553403,2.0177588,4.7783265,4.12355,1.8348676,5.8400846,4.389051,2.653139,4.4305725,3.723981,2.2625237,6.1977983,4.126129,3.262109,4.087088,3.284838,2.6111493,6.5562234,3.766817,3.829186,3.748582,2.909117,2.9714854,6.6383896,3.315799,4.338493,3.415767,2.492645,3.2746572,6.705617,2.780353,4.77421,3.0893552,2.043105,3.5189533,6.757904,2.170391,5.1210947,2.7700572,1.567238,3.7034934,6.795252,1.498445,5.3650427,2.4585843,1.07066,3.8279643,6.817662,0.777921,5.4815745,2.1639483,0.031388,5.5304036,2.1639485,0.031388,3.9267573,6.825131,0.557717,3.8923314,6.825131,0.031388,5.4561005,1.8942113,0.031388,3.8964844,6.817662,-0.689529,5.2967057,1.6486613,-0.487863,3.8412573,6.795252,-1.340581,5.0233846,1.4265862,-0.981224,3.7321784,6.757905,-1.911382,4.6598873,1.227277,-1.449733,3.5748653,6.705616,-2.397854,4.2298446,1.0500209,-1.894854,3.3734243,6.63839,-2.801649,3.7551448,0.89410686,-2.318177,3.1303103,6.556224,-3.129358,3.2545059,0.7588228,-3.391511,2.7422647,0.64345765,-3.601363,2.2273788,0.54730153,-1.912005,3.4026263,6.556224,-2.422753,-2.9427958,6.5562215,-3.773476,1.7126309,0.46964037,-3.265056,-1.8237696,6.7056146,-3.492173,-1.3940976,6.6383886,-3.675583,-0.9331815,6.556223,-3.922074,1.1940509,0.4097643,-4.029448,0.6564259,0.40976414,-6.99962,0.6913312,3.1042023,-6.946573,0.70840424,3.1744552,-6.893527,0.6913312,3.2447093,-6.843455,0.64011025,3.3110232,-6.799332,0.5547432,3.3694572,-6.764132,0.43522817,3.416074,-7.16509,-0.52088785,3.4253697,-7.230637,-0.50381386,3.3603518,-7.129014,-0.24771169,2.932836,-6.842426,0.28156736,2.637469,-4.06625,0.093757905,0.40976402,-4.02322,-0.4680451,0.3586619,-3.916012,-1.0048461,0.35866177,-3.748683,-1.5145651,0.40976363,-3.53708,-2.0021052,0.46963948,-3.302393,-2.4857912,0.5473004,-3.029463,-2.9670923,0.6434563,-2.703556,-3.4408534,0.7588212,-2.311898,-3.8959773,0.894105,-1.844988,-4.3163257,1.0500189,-1.297706,-4.6818166,1.2272749,-0.670208,-4.9697533,1.4265838,0.03139,-5.1563416,1.6486588,0.767719,-5.2204213,1.8942088,1.491229,-5.1515965,2.163946,2.17582,-4.9463377,2.4585829,2.800637,-4.6212296,2.7700548,3.354891,-4.201498,3.089353,3.827148,-3.7020006,3.415765,4.208658,-3.138449,3.7485802,4.493342,-2.526875,4.0870857,4.677728,-1.883139,4.4305716,4.760826,-1.2224962,4.7783256,4.743964,-0.5592133,5.129637,4.589255,-0.5377763,5.483794,4.311256,-1.0973765,5.8400836,3.9686,-1.5814245,6.1977973,3.576605,-1.9884505,6.5562215,3.249505,-2.3962946,6.6383886,2.875837,-2.7506907,6.7056155,2.463557,-3.0495496,6.757903,2.019769,-3.2917047,6.79525,1.550516,-3.4766757,6.81766,1.060621,-3.6043777,6.825129,0.55356,-3.6748147,6.81766,0.03139,-3.6877067,6.795251,-0.508229,-3.6434817,6.757903,-7.924479,-0.45259425,5.16298,-7.855618,-0.5038142,4.917167,-7.543098,-0.45259413,4.715278,-8.103184,-0.24771217,4.917167,-8.008296,-0.36722624,5.177527,-7.354032,0.554743,4.306373,-7.430757,0.64011,4.270923,-7.866103,0.55474305,4.069778,-7.92731,0.43522802,4.041498,-7.96783,0.28156704,4.022778,-7.982484,0.09375804,4.016006,-8.068116,-0.094051026,4.316506,-8.083812,-0.24771209,4.622362,4.743964,0.74672973,5.129636,4.589255,0.7252937,5.483793,4.760826,1.4100128,4.7783265,4.311256,1.2848926,5.8400846,4.677728,2.070656,4.4305725,3.9686,1.7689406,6.1977983,4.493342,2.714392,4.0870876,3.576605,2.1759653,6.5562234,4.208657,3.3259661,3.7485816,3.249505,2.5838103,6.6383896,3.827148,3.8895173,3.415767,2.875837,2.9382052,6.7056165,3.354891,4.389015,3.089355,2.463557,3.2370644,6.757905,2.800637,4.8087463,2.7700572,2.019768,3.4792194,6.795252,2.17582,5.1338544,2.4585843,1.550516,3.6641903,6.817662,1.491229,5.3391147,2.1639483,1.06062,3.7918923,6.825131,0.767718,5.4079394,1.8942113,0.031388,5.4561005,1.8942113,0.031388,3.8964844,6.817662,0.55356,3.8623292,6.817662,0.031388,5.3438597,1.6486613,0.031388,3.8752213,6.795253,-0.670208,5.1572695,1.4265862,-0.486441,3.8309953,6.757904,-1.297707,4.8693347,1.2272772,-0.981882,3.7345433,6.705616,-1.844989,4.5038424,1.050021,-1.456466,3.5906882,6.63839,-2.311898,4.083496,0.8941069,-2.703556,3.6283708,0.7588229,-3.029463,3.1546109,0.6434578,-3.302393,2.6733088,0.54730165,-3.537079,2.1896229,0.4696405,2.380955,3.1303103,6.556223,0.556544,3.8838713,6.556224,-1.469713,3.6218243,6.556224,-3.332115,-1.8496366,6.5562224,-3.079861,-2.2558086,6.5562224,-3.748683,1.7020829,0.4097644,-3.007974,-2.2245357,6.7056146,-3.290361,-1.8324856,6.6383886,-3.916012,1.1923639,0.3586623,-4.023221,0.6555629,0.35866216,-7.129014,0.4352283,2.932836,-7.093813,0.5547433,2.9794533,-7.04969,0.6401103,3.0378883,-6.910865,0.2815671,3.677545,-7.040043,0.09375807,3.917656,-7.052163,-0.09404993,3.908284,-7.08567,-0.24771193,3.882372,-7.136291,-0.36722592,3.843229,-7.199743,-0.45259392,3.794161,-7.271751,-0.5038139,3.7384777,-7.348035,-0.5208879,3.6794868,-7.292509,-0.4525938,3.298979,-7.152315,-0.09405069,2.901977,-7.34703,-0.36722577,3.244898,-7.390523,-0.24771176,3.201755,-7.160743,0.09375831,2.890815,-7.152315,0.2815673,2.901978,-4.059967,0.09375791,0.35866204,-3.996546,-0.4643491,0.30827087,-3.890043,-0.99761903,0.30827075,-3.742886,-1.5120981,0.35866165,-3.513828,-1.9884491,0.40976351,-3.243399,-2.4401443,0.46963936,-2.949771,-2.8874002,0.5473003,-2.617118,-3.3291411,0.6434562,-2.230762,-3.7578342,0.7588211,-1.778595,-4.160281,0.89410496,-1.252285,-4.5186143,1.0500189,-0.648283,-4.8115196,1.2272748,0.03139,-5.0156426,1.4265838,0.752306,-5.1091886,1.6486588,1.471278,-5.0799093,1.8942088,2.165272,-4.9215465,2.163946,2.807666,-4.6331964,2.458582,3.379414,-4.2331915,2.770055,3.872325,-3.7471776,3.089354,4.276124,-3.1906517,3.4157653,4.583272,-2.579694,3.7485802,4.788927,-1.930452,4.0870867,4.890853,-1.258684,4.4305716,4.889274,-0.57934713,4.778326,4.786674,0.09375778,5.129636,4.630562,0.09375769,5.483794,4.427495,-0.5153634,5.840084,4.149198,-1.0522734,6.1977973,3.811461,-1.5145656,6.5562224,3.538103,-1.9658365,6.6383886,3.212289,-2.3674986,6.7056155,2.84222,-2.7170737,6.7579036,2.435343,-3.0130856,6.79525,1.998119,-3.2548447,6.81766,1.535842,-3.4421847,6.825129,1.052492,-3.5751686,6.81766,0.55064,-3.6537426,6.79525,0.03139,-3.6773517,6.757903,-2.701192,-2.5854697,6.7056146,-2.347422,-2.9023786,6.7056146,-1.949373,-3.1710696,6.705614,-1.509757,-3.3873506,6.705614,-1.031284,-3.5470276,6.705614,-0.516665,-3.6459098,6.705614,-7.738357,-0.52088815,4.681725,-7.637911,-0.50381416,4.698986,-7.420383,-0.36722606,4.524817,-8.035838,-0.36722618,4.917167,-7.292825,-0.24771203,4.334653,-7.165664,-0.09404998,4.134956,-7.152126,0.09375801,4.143168,-7.165664,0.281567,4.134956,-7.203088,0.43522802,4.112253,-7.259626,0.55474305,4.077957,-7.410922,0.6913301,3.9861772,-7.496126,0.70840406,3.9344923,-7.581329,0.691331,3.8828063,-7.661754,0.64011014,3.8340182,-7.732624,0.5547421,3.7910273,-7.967828,-0.09405096,4.022778,-8.025357,-0.24771203,4.330256,-8.017162,-0.3672261,4.633815,4.889274,0.7668639,4.778326,4.427494,0.7028796,5.840084,4.890853,1.446201,4.4305725,4.149198,1.2397896,6.1977983,4.788927,2.117969,4.0870876,3.811461,1.7020814,6.5562234,4.583272,2.76721,3.7485816,3.538103,2.1533513,6.6383896,4.276124,3.3781693,3.4157667,3.212289,2.5550134,6.7056165,3.872325,3.9346943,3.089356,2.84222,2.9045882,6.7579045,3.379414,4.4207087,2.770058,2.435343,3.2006004,6.795252,2.807666,4.8207135,2.4585843,1.998119,3.4423594,6.817661,2.165272,5.1090636,2.1639483,1.535841,3.6296992,6.825131,1.471277,5.2674255,1.8942113,1.052491,3.7626843,6.817662,0.752305,5.2967057,1.6486613,0.031388,5.3438597,1.6486613,0.031388,3.8752213,6.795253,0.55064,3.8412573,6.795252,0.031388,5.2031603,1.4265862,0.031388,3.8648663,6.757905,-0.648284,4.9990354,1.2272772,-0.486777,3.8334243,6.705616,-1.252286,4.7061315,1.050021,-0.986488,3.7510924,6.63839,-1.778596,4.347799,0.894107,-2.230763,3.9453518,0.758823,-2.617118,3.5166588,0.64345783,-2.949771,3.0749187,0.5473017,-3.243399,2.6276617,0.4696406,-3.513827,2.175967,0.4097645,3.559456,1.5948595,6.5562234,3.821503,-0.4313976,6.556223,1.974783,3.4026263,6.556223,1.532491,3.6218243,6.556224,0.031388,3.9182212,6.556224,-0.493767,3.8838713,6.556223,-0.995551,3.7836564,6.556224,-3.035901,-2.2350736,6.6383886,-2.776177,-2.6216116,6.5562224,-3.742886,1.6996158,0.35866243,-3.890043,1.1851369,0.30827126,-3.996547,0.6518669,0.30827114,-7.230638,0.69133115,3.3603523,-7.16509,0.7084042,3.4253702,-7.099543,0.69133115,3.4903893,-7.037672,0.6401102,3.5517612,-6.98315,0.5547431,3.6058433,-6.939656,0.43522814,3.648985,-7.424324,-0.5038139,3.6204958,-7.496332,-0.45259386,3.564812,-7.419315,-0.09405076,3.173195,-4.033052,0.09375793,0.30827102,-3.937444,-0.45616007,0.25930387,-3.832504,-0.98160505,0.25930375,-3.718057,-1.5015341,0.30827063,-3.508391,-1.9852561,0.35866153,-3.222061,-2.423633,0.40976343,-2.897016,-2.8346462,0.4696393,-2.548161,-3.2400231,0.5473002,-2.159267,-3.6361032,0.6434561,-1.715925,-4.012986,0.75882107,-1.206864,-4.355412,0.89410496,-0.625055,-4.6438847,1.0500189,0.03139,-4.8559747,1.2272748,0.732986,-4.9697523,1.4265838,1.441139,-4.9716163,1.6486588,2.136109,-4.8530025,1.8942088,2.79401,-4.6099453,2.163946,3.387913,-4.2441745,2.458583,3.900666,-3.7755187,2.770056,4.326646,-3.2297437,3.0893533,4.656789,-2.6228716,3.4157653,4.884815,-1.9712499,3.7485805,5.007154,-1.291052,4.0870857,5.022834,-0.59785306,4.430573,4.9333,0.09375786,4.778326,4.467336,0.09375761,5.840084,4.261036,-0.4922995,6.197798,3.984852,-1.0065346,6.5562215,3.770408,-1.4970986,6.6383886,3.497549,-1.9420176,6.7056155,3.174696,-2.3384106,6.7579036,2.809613,-2.6844666,6.7952504,2.409169,-2.9792588,6.8176603,1.979121,-3.2224967,6.825129,1.523959,-3.4142578,6.81766,1.046782,-3.5546536,6.79525,0.549218,-3.6434808,6.757902,0.03139,-3.6798017,6.705615,-7.951419,-0.4525942,4.917166,-7.838801,-0.50381416,4.664464,-7.690573,-0.5208881,4.437923,-7.593231,-0.5038141,4.469228,-7.501348,-0.45259407,4.498778,-7.330497,0.6401101,4.034966,-7.789162,0.4352281,3.756731,-7.826589,0.2815671,3.734028,-7.840125,0.09375811,3.725816,-7.826587,-0.09404989,3.734028,-7.927311,-0.24771196,4.041498,-7.960766,-0.36722603,4.351029,5.022834,0.78536993,4.430572,4.261035,0.67981553,6.197798,5.007154,1.478569,4.0870876,3.984852,1.1940504,6.5562234,4.884815,2.158766,3.7485814,3.770408,1.6846144,6.6383896,4.656789,2.8103893,3.4157667,3.497549,2.1295333,6.7056165,4.326645,3.4172602,3.0893548,3.174696,2.5259254,6.7579045,3.900666,3.9630363,2.770058,2.809613,2.8719823,6.7952514,3.387912,4.4316916,2.458585,2.409169,3.1667733,6.817662,2.79401,4.7974625,2.1639483,1.97912,3.4100113,6.825131,2.136108,5.0405197,1.8942112,1.523959,3.6017723,6.817662,1.441138,5.1591325,1.6486611,1.046782,3.7421694,6.795252,0.732985,5.1572704,1.4265862,0.031388,5.2031603,1.4265862,0.031388,3.8648663,6.757905,0.549218,3.8309963,6.757905,0.031388,5.0434914,1.2272772,0.031388,3.8673162,6.705617,-0.625056,4.8314004,1.0500212,-0.489133,3.8504233,6.63839,-1.206865,4.54293,0.89410704,-1.715926,4.200504,0.75882304,-2.159267,3.8236217,0.6434579,-2.548161,3.4275408,0.5473018,-2.897016,3.0221639,0.46964067,-3.222061,2.611151,0.40976462,-3.508391,2.172774,0.35866252,3.821503,0.6189135,6.556222,3.721287,1.1206975,6.5562234,3.340257,2.0371513,6.5562234,3.067942,2.4433243,6.5562234,2.36022,3.1035123,6.63839,1.957632,3.3734243,6.63839,1.519243,3.5906882,6.63839,1.058328,3.7836564,6.556223,0.55191,3.8504233,6.63839,0.031388,3.8844693,6.638391,0.031388,3.8844693,6.638391,-0.493767,3.8838713,6.556223,0.031388,3.9182212,6.556224,-2.731031,-2.5976477,6.6383886,-2.377992,-2.9159977,6.6383886,1.532491,-3.4343097,6.556222,-0.545414,-3.6963568,6.556222,-3.718057,1.6890519,0.3082714,-3.832504,1.1691229,0.25930426,-3.937445,0.64367795,0.25930414,-7.390523,0.43522823,3.201754,-7.347029,0.55474323,3.2448983,-7.292509,0.64011025,3.2989793,-7.052163,0.28156704,3.908284,-7.203088,-0.24771197,4.112254,-7.259626,-0.36722597,4.077957,-7.330495,-0.45259398,4.034966,-7.410922,-0.503814,3.986179,-7.496126,-0.520888,3.9344919,-7.581329,-0.503814,3.8828058,-7.559784,-0.36722583,3.515745,-7.429729,0.09375825,3.162865,-7.610404,-0.24771182,3.476602,-7.643913,-0.09404982,3.45069,-7.419315,0.28156722,3.173196,-3.973413,0.09375794,0.25930402,-3.833925,-0.44181705,0.21246989,-3.731722,-0.95355606,0.21246977,-3.663041,-1.4781262,0.25930363,-3.485104,-1.9715791,0.3082705,-3.217072,-2.419773,0.35866144,-2.877935,-2.815565,0.4097633,-2.502514,-3.1810281,0.46963918,-2.102231,-3.5389931,0.54730016,-1.660701,-3.8831923,0.64345604,-1.16399,-4.201361,0.758821,-0.601828,-4.476249,0.8941049,0.03139,-4.6868205,1.0500189,0.711061,-4.8115187,1.2272748,1.403359,-4.8358665,1.4265838,2.092054,-4.7494583,1.6486589,2.756253,-4.5456605,1.8942089,3.371402,-4.2228365,2.1639462,3.910487,-3.7853396,2.458583,4.358339,-3.2542667,2.7700562,4.711841,-2.6552057,3.0893533,4.963201,-2.0046008,3.4157655,5.10744,-1.3189629,3.7485807,5.142293,-0.614405,4.087087,5.06807,0.09375794,4.430572,4.299368,0.093757525,6.197798,4.092226,-0.46890858,6.556223,3.941916,-0.9945846,6.638389,3.727168,-1.4787016,6.7056155,3.456585,-1.9179586,6.7579026,3.138232,-2.3101966,6.7952504,2.779364,-2.6542177,6.8176603,2.3862,-2.9495738,6.8251295,1.963737,-3.1963046,6.81766,1.515613,-3.3946416,6.79525,1.044002,-3.5446637,6.757903,0.549555,-3.6459098,6.705614,-1.97902,-3.1859097,6.638388,-1.536358,-3.4031737,6.638388,-1.052242,-3.5635777,6.638388,-0.528914,-3.6629076,6.638388,0.03139,-3.6969547,6.638389,-7.933614,-0.4525941,4.648171,-7.787916,-0.5038141,4.406618,-7.354032,-0.36722603,4.306373,-7.085672,0.43522808,3.882372,-7.136291,0.55474305,3.8432293,-7.199745,0.64011014,3.7941613,-7.271751,0.6913311,3.7384772,-7.348038,0.7084041,3.6794872,-7.424324,0.6913311,3.6204963,-7.49633,0.6401102,3.5648122,-7.559783,0.5547432,3.5157452,-7.610404,0.43522817,3.476602,-7.789162,-0.2477119,3.756731,-7.866104,-0.36722597,4.069778,-7.879799,-0.45259404,4.377068,5.142293,0.801922,4.087087,4.092225,0.65642446,6.556222,5.10744,1.506479,3.7485814,3.941916,1.1821004,6.6383896,4.963201,2.1921182,3.4157665,3.727168,1.6662165,6.7056165,4.711841,2.8427234,3.0893557,3.456585,2.1054733,6.7579045,4.358339,3.4417832,2.7700567,3.138232,2.4977114,6.7952514,3.910487,3.9728575,2.458585,2.779364,2.8417323,6.8176613,3.371402,4.4103537,2.163948,2.3862,3.1370883,6.825131,2.756253,4.7331786,1.894211,1.963737,3.3838193,6.817662,2.092053,4.9369755,1.6486611,1.515613,3.5821564,6.795252,1.403358,5.0233846,1.4265862,1.044001,3.7321784,6.757904,0.711061,4.9990363,1.2272772,0.031388,5.0434914,1.2272772,0.031388,3.8673162,6.705617,0.549554,3.8334243,6.705616,0.031388,4.8743377,1.0500212,-0.601829,4.663767,0.8941071,-1.163991,4.38888,0.7588231,-1.660702,4.07071,0.64345795,-2.102232,3.7265117,0.5473019,-2.502514,3.3685467,0.46964073,-2.877935,3.003083,0.4097647,-3.217072,2.607291,0.35866264,-3.485104,2.159097,0.3082715,3.855852,0.093757436,6.556223,3.788054,0.6142794,6.638389,3.688724,1.1116345,6.6383896,3.52832,1.5816125,6.6383896,3.311056,2.0200002,6.6383896,3.041144,2.4225883,6.6383896,2.746758,2.8091264,6.5562234,2.722794,2.7851634,6.6383896,2.349682,3.0898933,6.705616,1.948916,3.3585844,6.705616,1.512511,3.5748653,6.705616,1.049265,3.7510924,6.63839,-2.021275,-3.2151108,6.556221,-1.573434,-3.4343097,6.556222,0.03139,-3.7307067,6.556222,0.556545,-3.6963568,6.556221,3.067942,-2.2558086,6.5562215,-3.663041,1.6656439,0.25930437,-3.731722,1.141074,0.21247026,-3.833925,0.6293339,0.21247014,-7.661755,-0.45259392,3.834018,-7.732625,-0.36722592,3.791028,-7.656032,0.09375818,3.441317,-3.868956,0.09375795,0.21247002,-3.674007,-0.41965806,0.1684819,-3.576032,-0.91022605,0.16848178,-3.566679,-1.437127,0.21246965,-3.433506,-1.9412742,0.2593035,-3.195702,-2.403238,0.30827042,-2.873474,-2.811104,0.35866135,-2.486004,-3.159691,0.40976325,-2.064475,-3.4747093,0.46963912,-1.616646,-3.7796483,0.5473001,-1.12621,-4.065614,0.64345604,-0.579903,-4.318014,0.758821,0.03139,-4.517666,0.8941049,0.687834,-4.6438837,1.0500189,1.360485,-4.6818175,1.2272749,2.036829,-4.6196647,1.4265839,2.699218,-4.4485493,1.6486579,3.325755,-4.1638412,1.894209,3.891406,-3.7662585,2.1639462,4.369322,-3.2627645,2.4585834,4.746377,-2.6754897,2.7700553,5.021901,-2.0295758,3.0893545,5.189422,-1.3417789,3.4157658,5.188613,0.093758024,4.087087,4.129028,0.093757436,6.556223,4.048123,-0.46279857,6.638389,3.896692,-0.9819986,6.705616,3.68349,-1.4601177,6.7579036,3.416851,-1.8946227,6.7952504,3.104405,-2.2840226,6.8176603,2.752819,-2.6276727,6.8251295,2.367601,-2.9255366,6.8176603,1.952932,-3.1779087,6.79525,1.511549,-3.3850896,6.757903,1.04466,-3.5470276,6.705614,0.55191,-3.6629076,6.638388,-7.610067,-0.52088803,4.188076,-7.517826,-0.50381404,4.230694,-7.430756,-0.452594,4.270923,-7.643913,0.28156716,3.45069,-7.789379,-0.45259398,4.105228,4.048123,0.6503144,6.638389,5.189423,1.5292962,3.4157665,3.896692,1.1695144,6.7056165,5.021901,2.2170932,3.0893555,3.68349,1.6476333,6.7579045,4.746377,2.8630064,2.7700567,3.416852,2.0821373,6.7952514,4.369321,3.4502826,2.4585848,3.104405,2.4715374,6.8176613,3.891406,3.9537766,2.163948,2.752819,2.8151872,6.8251305,3.325754,4.3513594,1.894211,2.367601,3.1130524,6.817662,2.699217,4.6360674,1.648661,1.952932,3.3654222,6.795251,2.036829,4.8071814,1.4265862,1.511549,3.5726054,6.757905,1.360484,4.8693347,1.2272772,1.044659,3.7345433,6.705616,0.687833,4.8314013,1.0500212,0.031388,4.8743377,1.0500212,0.031388,4.705184,0.8941071,-0.579904,4.505532,0.7588231,-1.126211,4.253132,0.643458,-1.616647,3.9671667,0.54730195,-2.064475,3.6622279,0.46964085,-2.486004,3.347209,0.4097648,-2.873474,2.998622,0.35866272,-3.195702,2.590756,0.30827162,-3.433506,2.128792,0.2593045,3.788054,-0.4267636,6.638389,3.8221,0.09375741,6.638389,3.771056,0.6119234,6.705615,3.672174,1.1070285,6.7056155,3.512497,1.5748794,6.7056155,3.296216,2.0112844,6.7056155,3.027525,2.4120502,6.7056155,2.710616,2.7729843,6.7056155,2.348177,3.0879483,6.757904,1.947671,3.3564644,6.757904,-1.080918,-3.5961416,6.556221,1.058329,-3.5961416,6.556222,1.974783,-3.2151108,6.556222,2.380955,-2.9427958,6.5562224,3.340257,-1.8496366,6.5562215,3.559456,-1.4073446,6.5562224,-3.566679,1.624645,0.21247038,-3.576032,1.097744,0.16848227,-3.674007,0.60717595,0.16848215,-3.707588,0.093757965,0.16848204,-3.445702,-0.38802502,0.12805091,-3.353764,-0.8483661,0.12805079,-3.417817,-1.37379,0.16848168,-3.343131,-1.888194,0.21246955,-3.14835,-2.366599,0.25930342,-2.854364,-2.791994,0.30827034,-2.482143,-3.154702,0.35866126,-2.050819,-3.451457,0.40976316,-1.587483,-3.7111053,0.46963906,-1.096071,-3.9573202,0.54730004,-0.560583,-4.178579,0.643456,0.03139,-4.357997,0.758821,0.664607,-4.476249,0.8941049,1.315063,-4.5186143,1.0500189,1.974159,-4.4723706,1.2272749,2.627722,-4.3268194,1.4265839,3.256798,-4.0747232,1.648659,3.838652,-3.7135046,1.8942091,4.347984,-3.2462544,2.1639464,4.758344,-2.6825185,2.4585824,5.058724,-2.0452437,2.7700555,5.250813,-1.3588647,3.0893538,4.084526,0.09375741,6.638389,4.001671,-0.45636162,6.705616,3.851011,-0.9692846,6.757904,3.641124,-1.4420917,6.7952504,3.379991,-1.8729727,6.8176594,3.07472,-2.2610536,6.8251295,2.731324,-2.6061776,6.8176603,2.354538,-2.9086537,6.7952504,1.947671,-3.1689496,6.757903,1.512511,-3.3873506,6.705614,1.049266,-3.5635777,6.638388,4.001671,0.6438774,6.705616,5.250814,1.5463823,3.0893555,3.851011,1.1568004,6.7579045,5.058724,2.2327602,2.7700574,3.641124,1.6296073,6.7952514,4.758344,2.8700366,2.4585838,3.379991,2.0604873,6.8176613,4.347984,3.4337716,2.1639478,3.07472,2.4485683,6.8251305,3.838652,3.9010215,1.8942109,2.731324,2.7936933,6.8176613,3.256798,4.2622404,1.648661,2.354538,3.0961683,6.795252,2.627722,4.5143366,1.426586,1.974159,4.6598873,1.227277,1.315063,4.7061315,1.050021,0.664606,4.663767,0.8941071,0.031388,4.705184,0.8941071,0.031388,4.545516,0.7588231,-0.560584,4.366097,0.643458,-1.096071,4.144839,0.547302,-1.587483,3.8986237,0.4696409,-2.050819,3.638976,0.40976486,-2.482143,3.34222,0.3586628,-2.854364,2.979512,0.3082717,-3.14835,2.554117,0.25930458,-3.343131,2.075712,0.21247049,3.688724,-0.92411864,6.638389,3.721287,-0.9331815,6.556222,3.771056,-0.4244076,6.705615,3.804947,0.0937574,6.705615,3.768627,0.6115874,6.757903,3.66981,1.1063703,6.7579045,3.510237,1.5739183,6.7579045,3.294096,2.0100393,6.7579045,3.025579,2.4105453,6.7579045,2.708876,2.7712443,6.7579045,1.519244,-3.4031737,6.638388,1.957632,-3.1859097,6.638388,2.36022,-2.9159977,6.6383886,2.746758,-2.6216116,6.5562224,3.041144,-2.2350736,6.6383886,3.311056,-1.8324856,6.6383886,3.52832,-1.3940965,6.6383886,-3.417817,1.561308,0.16848238,-3.353764,1.035884,0.12805125,-3.445703,0.5755419,0.12805113,-7.70231,-0.50381404,4.145456,-3.477215,0.09375797,0.12805103,-3.137027,-0.34525502,0.09188892,-3.05325,-0.76473004,0.09188883,-3.205298,-1.283368,0.12805068,-3.203519,-1.806195,0.16848157,-3.065413,-2.302425,0.21246944,-2.812021,-2.74965,0.25930333,-2.465608,-3.133331,0.30827025,-2.047626,-3.446021,0.35866117,-1.576935,-3.686313,0.40976313,-1.07612,-3.8856332,0.469639,-0.545171,-4.067345,0.54730004,0.03139,-4.217299,0.643456,0.642682,-4.318014,0.758821,1.269642,-4.355412,0.89410496,1.907766,-4.3163257,1.0500189,2.546587,-4.1886764,1.227275,3.170359,-3.9630113,1.426584,3.75896,-3.6338124,1.6486591,4.28899,-3.2006066,1.8942093,4.735093,-2.6688626,2.1639464,5.071485,-2.0506725,2.4585826,5.289327,-1.3695837,2.7700558,5.27202,-1.2063657,3.135946,5.279933,-1.21306,3.089354,5.244328,-1.0668643,3.4157662,5.269118,-1.1951839,3.1618118,5.2446866,-1.078011,3.4027472,5.2454395,-1.0948226,3.3820415,5.2281394,-0.9088949,3.5993586,5.233718,-0.6866852,3.7485816,5.2284408,-0.890293,3.6124887,5.246446,-0.6482929,3.7751307,5.2333937,-0.64850277,3.7740035,5.270532,-0.9080119,3.6038637,5.234014,-0.64113325,3.7767262,5.2352676,-0.6272874,3.7815595,5.2232275,-0.30902106,3.8885617,5.228295,-0.15809727,3.9042075,5.235834,0.08383063,3.9311876,5.2361546,0.09375806,3.9322596,5.223056,-0.31443766,3.887968,4.037653,0.0937574,6.705616,3.954749,-0.4498606,6.757904,3.806702,-0.9569536,6.795251,3.601822,-1.4253696,6.8176603,3.347643,-1.8539736,6.8251295,3.050683,-2.2424548,6.8176603,2.716228,-2.5910807,6.7952504,2.348177,-2.9004326,6.7579036,1.948916,-3.1710696,6.705614,5.223254,0.5063674,3.8863807,5.2353024,0.81480956,3.7814417,5.228295,0.345612,3.9042072,5.2230554,0.5019548,3.8879673,5.2333927,0.83602,3.774004,5.233512,0.84197325,3.7698197,5.233796,0.8738067,3.7485812,3.954749,0.63737637,6.757904,5.229673,1.109273,3.5835838,5.244499,1.2535269,3.4157665,5.2281394,1.0964111,3.599359,5.276186,1.39713,3.1117008,5.2799807,1.4003431,3.0893552,5.24544,1.2823399,3.382042,5.2479057,1.2917998,3.360108,5.272021,1.3938832,3.1359465,5.289327,1.5571012,2.7700565,3.806702,1.1444694,6.7952514,5.071485,2.2381904,2.4585845,3.601822,1.6128854,6.8176613,4.735093,2.8563795,2.1639478,3.347643,2.0414894,6.8251305,4.28899,3.3881245,1.8942108,3.050683,2.4299693,6.8176613,3.75896,3.8213296,1.6486609,2.716228,2.7785964,6.7952514,3.170359,4.1505284,1.4265859,2.546587,4.3761945,1.227277,1.907766,4.5038424,1.050021,1.269642,4.54293,0.89410704,0.642681,4.505533,0.7588231,0.031388,4.545516,0.7588231,0.031388,4.404817,0.64345807,-0.545171,4.254863,0.547302,-1.07612,4.073152,0.4696409,-1.576935,3.873831,0.40976492,-2.047626,3.633539,0.35866287,-2.465608,3.32085,0.3082718,-2.812021,2.937169,0.25930467,-3.065413,2.489944,0.21247059,-3.203519,1.993713,0.16848248,3.672174,-0.9195126,6.705615,3.768628,-0.4240716,6.757904,3.802498,0.09375739,6.757904,3.778889,0.6130094,6.795251,3.679801,1.1091503,6.7952514,3.519788,1.5779823,6.7952514,3.303055,2.0153003,6.7952514,3.0338,2.4169064,6.7952514,2.349682,-2.9023786,6.7056146,2.722794,-2.5976477,6.6383886,3.027525,-2.2245357,6.7056146,3.296216,-1.8237696,6.7056146,3.512497,-1.3873645,6.7056146,-3.205298,1.470886,0.12805136,-3.05325,0.9522479,0.09188923,-3.137027,0.53277296,0.09188914,-3.165742,0.09375898,0.09188904,-2.735996,-0.28968802,0.060705934,-2.662823,-0.65607,0.060705844,-2.917965,-1.161115,0.091888726,-3.004203,-1.689131,0.1280506,-2.93729,-2.203289,0.16848148,-2.737856,-2.675486,0.21246935,-2.428969,-3.085979,0.25930324,-2.033949,-3.422734,0.3082702,-1.574468,-3.680516,0.35866114,-1.068903,-3.859704,0.40976307,-0.534968,-3.9937112,0.469639,0.03139,-4.105056,0.54730004,0.623362,-4.178579,0.643456,1.226768,-4.201362,0.758821,1.841373,-4.160281,0.89410496,2.460631,-4.0423265,1.050019,3.072267,-3.8362372,1.227275,3.659064,-3.5339162,1.4265841,4.199871,-3.1316504,1.6486592,4.670808,-2.6311054,1.8942094,5.046694,-2.0401244,2.1639466,5.302672,-1.3732976,2.4585829,5.2982097,-1.239726,2.903983,5.3175216,-1.2284118,2.770056,5.301103,-1.2436014,2.8751807,5.300723,-1.0935239,3.3891768,5.230503,-0.31436992,3.888506,3.990306,0.09375739,6.757904,3.909237,-0.44355464,6.795251,3.765596,-0.9455136,6.817661,3.567331,-1.4106957,6.8251295,3.321451,-1.8385906,6.8176603,3.0338,-2.2293916,6.7952504,2.708876,-2.5837297,6.7579036,5.230503,0.501887,3.8885052,5.246446,0.8358101,3.7751312,5.270532,1.0955281,3.6038642,3.909236,0.6310704,6.795251,5.3011036,1.431118,2.8751812,5.3175087,1.4159937,2.7700567,5.3051248,1.4274516,2.849349,5.302673,1.5608155,2.4585836,3.765596,1.1330284,6.8176613,5.046694,2.2276425,2.1639476,3.567331,1.5982103,6.8251305,4.670808,2.8186235,1.8942107,3.321451,2.0261064,6.8176613,4.199871,3.3191676,1.6486608,3.659064,3.7214339,1.4265858,3.072267,4.0237556,1.2272769,2.460631,4.2298446,1.0500209,1.841373,4.347799,0.894107,1.226768,4.388879,0.7588231,0.623361,4.366098,0.643458,0.031388,4.404817,0.64345807,0.031388,4.292575,0.547302,-0.534969,4.181229,0.46964097,-1.068904,4.047222,0.40976495,-1.574469,3.868034,0.35866293,-2.033949,3.610252,0.30827186,-2.428969,3.273498,0.25930476,-2.737856,2.863004,0.21247068,-2.93729,2.390807,0.16848257,-3.004203,1.876649,0.12805144,3.66981,-0.9188546,6.757903,3.778889,-0.42549363,6.795251,3.812852,0.093757376,6.795251,3.799961,0.6159284,6.817661,3.700315,1.1148603,6.8176613,3.539404,1.5863284,6.8176613,2.710616,-2.5854697,6.7056146,3.025579,-2.2230306,6.7579026,3.294096,-1.8225247,6.7579026,3.510237,-1.3864027,6.7579036,-2.917965,1.348633,0.09188934,-2.662823,0.843588,0.060706202,-2.735996,0.47720596,0.060706113,-2.761077,0.093758985,0.060706023,-2.230624,-0.219664,0.03521395,-2.170814,-0.519138,0.035213877,-2.544661,-1.002284,0.060705762,-2.734721,-1.530857,0.09188865,-2.754377,-2.061758,0.1280505,-2.623285,-2.560915,0.1684814,-2.364795,-3.003042,0.21246928,-2.003644,-3.371136,0.25930318,-1.563904,-3.655687,0.30827013,-1.067216,-3.853641,0.3586611,-0.531278,-3.967078,0.40976304,0.03139,-4.030755,0.469639,0.607949,-4.067345,0.54730004,1.188988,-4.065614,0.64345604,1.778704,-4.012986,0.75882107,2.374676,-3.8959773,0.894105,2.968347,-3.7019322,1.0500191,3.5457,-3.4205523,1.2272751,4.088159,-3.0452123,1.4265842,4.573698,-2.5740695,1.6486593,4.97815,-2.0109606,1.8942095,5.276744,-1.3660815,2.1639469,5.350142,-1.1356137,2.458583,5.3267307,-1.2107536,2.6444106,5.3289433,-1.2065574,2.6140223,5.334985,-1.2048317,3.1455429,5.733778,-0.8737399,3.7382057,5.692623,-0.622907,3.8933187,5.665379,-0.30040795,3.996,3.944381,0.093757376,6.795251,3.867016,-0.43770364,6.817661,3.729524,-0.9354736,6.82513,3.539404,-1.3988127,6.8176603,3.303054,-1.8277856,6.7952495,5.655525,0.09375804,4.033139,5.665379,0.48792505,3.995999,3.867014,0.6252194,6.817661,5.300724,1.2810411,3.3891773,5.692623,0.81042403,3.8933191,5.733778,1.061256,3.7382061,5.334986,1.3923492,3.1455433,5.3324594,1.3824368,2.5876777,5.3500648,1.32352,2.4585838,5.3289433,1.3940752,2.614023,5.276744,1.5535995,2.1639476,3.729524,1.1229893,6.8251305,4.97815,2.1984785,1.8942105,4.573698,2.7615876,1.6486597,4.088159,3.2327297,1.4265857,3.5457,3.6080697,1.2272768,2.968347,3.8894508,1.0500209,2.374676,4.083496,0.8941069,1.778703,4.200504,0.75882304,1.188988,4.253132,0.643458,0.607948,4.254863,0.547302,0.031388,4.292575,0.547302,0.031388,4.218273,0.46964097,-0.531278,4.154595,0.40976498,-1.067216,4.04116,0.35866296,-1.563904,3.843205,0.3082719,-2.003644,3.558654,0.25930482,-2.364795,3.190561,0.21247075,-2.623285,2.748433,0.16848266,-2.754377,2.249276,0.12805153,-2.734721,1.718375,0.09188941,3.679801,-0.9216356,6.795251,3.799961,-0.42841363,6.817661,3.834115,0.093757376,6.817661,3.829962,0.6200854,6.82513,3.519788,-1.3904667,6.7952504,-2.544661,1.189802,0.060706284,-2.170814,0.706656,0.035214175,-2.230624,0.40718198,0.0352141,-2.251125,0.09375899,0.035214026,-1.608927,-0.133522,0.016124964,-1.565554,-0.350688,0.016124915,-2.07423,-0.802128,0.03521381,-2.384611,-1.325227,0.060705688,-2.507074,-1.870404,0.09188856,-2.45972,-2.397349,0.12805043,-2.265659,-2.874919,0.16848132,-1.950564,-3.280761,0.21246922,-1.540496,-3.600671,0.25930312,-1.059989,-3.827673,0.30827007,-0.530415,-3.96085,0.35866106,0.03139,-4.00388,0.40976304,0.597746,-3.9937112,0.469639,1.158849,-3.9573202,0.54730004,1.72348,-3.8831923,0.64345604,2.293541,-3.7578342,0.7588211,2.864426,-3.5676272,0.89410514,3.4256,-3.3004522,1.0500191,3.961385,-2.9471192,1.2272753,4.451967,-2.5025742,1.4265844,4.874606,-1.9669054,1.6486595,5.205056,-1.3461294,1.8942096,5.3641276,-0.93512934,2.1780992,5.3651395,-0.9234798,2.1639469,5.34961,-1.0952916,2.3661602,5.3498516,-1.1088116,2.3978314,5.371284,-1.2419347,2.8874369,5.843914,-1.1604059,3.3231149,5.785367,-1.0529058,3.5437686,3.901777,0.093757376,6.817661,3.829963,-0.43257064,6.82513,3.700315,-0.9273446,6.817661,5.785367,1.2404232,3.5437691,5.843914,1.3479232,3.3231163,5.371284,1.4294512,2.8874373,5.3515334,1.2606437,2.3392138,5.3650455,1.1114675,2.1639473,5.34961,1.2828093,2.36616,5.205057,1.5336475,1.8942103,4.874606,2.1544235,1.6486604,4.451967,2.6900918,1.4265856,3.961385,3.1346378,1.2272767,3.4256,3.4879699,1.0500208,2.864426,3.7551448,0.89410686,2.29354,3.9453518,0.758823,1.723479,4.07071,0.64345795,1.158849,4.144839,0.547302,0.597746,4.18123,0.46964097,0.031388,4.218273,0.46964097,0.031388,4.191398,0.409765,-0.530416,4.148368,0.358663,-1.059989,4.015192,0.30827194,-1.540496,3.788189,0.25930488,-1.950564,3.468279,0.21247081,-2.265659,3.062438,0.16848274,-2.45972,2.584868,0.12805161,-2.507074,2.057922,0.0918895,-2.384611,1.512745,0.06070636,3.864389,0.093757376,6.82513,-2.07423,0.989646,0.03521424,-1.565554,0.538206,0.016125124,-1.608927,0.32104,0.016125076,-1.623793,0.09375899,0.01612502,-0.858918,-0.029601002,0.004149992,-0.835377,-0.147471,0.004149966,-1.495516,-0.5559,0.016124863,-1.943408,-1.066096,0.03521375,-2.185777,-1.621797,0.060705613,-2.238574,-2.176204,0.09188849,-2.124128,-2.692007,0.12805036,-1.868565,-3.141148,0.16848126,-1.499496,-3.504309,0.21246916,-1.043975,-3.770133,0.2593031,-0.526719,-3.934177,0.30827007,0.03139,-3.997597,0.35866106,0.594056,-3.967077,0.40976304,1.138898,-3.8856332,0.469639,1.679425,-3.7796483,0.5473001,2.222045,-3.6361043,0.6434561,2.766334,-3.4408534,0.7588212,3.305501,-3.1803532,0.8941052,3.82708,-2.8431993,1.0500193,4.313825,-2.4214392,1.2272754,4.744812,-1.9116814,1.4265845,5.096763,-1.3159903,1.6486596,5.365061,-0.6497597,1.9688038,5.3649654,-0.69177747,1.9983763,5.3629646,-0.9097087,2.1463916,5.34557,-0.6425705,1.8942099,5.365541,-0.64533776,1.9673668,5.441844,-1.0935236,2.3856966,5.407581,-1.2048316,2.6293297,5.905936,-1.1962388,3.0893538,6.08581,-0.82196796,3.9325728,6.033197,-0.58455795,4.069894,6.151762,-0.99154687,3.7604368,5.998369,-0.279316,4.160798,5.98577,0.093758,4.193677,5.998369,0.46683198,4.160798,6.033197,0.77207404,4.069894,6.08581,1.009485,3.9325733,5.407581,1.3923494,2.6293302,5.365525,0.8328536,1.9673115,5.345569,0.8300885,1.8942102,5.3629646,1.0972257,2.1463912,5.3650603,0.83727676,1.968804,5.363046,1.0612531,2.1210728,5.096764,1.5035087,1.6486603,4.744812,2.0991998,1.4265854,4.313825,2.6089568,1.2272766,3.82708,3.0307167,1.0500207,3.305501,3.3678708,0.89410675,2.766334,3.6283708,0.7588229,2.222045,3.8236217,0.6434579,1.679424,3.9671667,0.54730195,1.138897,4.073152,0.4696409,0.594055,4.154596,0.40976498,0.031388,4.191398,0.409765,0.031388,4.185115,0.358663,-0.52672,4.121694,0.30827197,-1.043975,3.957652,0.25930494,-1.499497,3.691827,0.21247087,-1.868566,3.328667,0.1684828,-2.124128,2.879525,0.12805168,-2.238574,2.363722,0.091889575,-2.185777,1.809315,0.060706433,-1.943408,1.253614,0.0352143,-1.495516,0.743418,0.016125176,-0.835377,0.33499,0.0041500777,-0.858918,0.217119,0.0041500516,-0.866986,0.093759,0.004150022,0.031389,0.093759,2.2351742e-8,-0.797362,-0.258853,0.004149936,-1.400649,-0.747318,0.016124818,-1.780884,-1.308507,0.03521369,-1.951262,-1.888891,0.060705554,-1.932774,-2.444703,0.09188843,-1.751501,-2.941832,0.1280503,-1.43616,-3.355447,0.1684812,-1.015926,-3.669351,0.21246912,-0.51853,-3.875074,0.25930306,0.03139,-3.970681,0.30827004,0.593193,-3.96085,0.35866106,1.131681,-3.859704,0.40976307,1.650261,-3.7111053,0.46963906,2.165009,-3.5389943,0.54730016,2.679895,-3.3291411,0.6434562,3.192136,-3.0669882,0.7588213,3.692775,-2.7392783,0.8941053,4.167474,-2.3354833,1.0500194,4.597517,-1.8490113,1.2272755,4.961015,-1.2782104,1.4265846,5.234336,-0.6271574,1.6486598,6.226608,-1.0932949,3.5650928,6.305898,-1.1272098,3.3581429,6.151763,1.1790631,3.7604373,5.905936,1.3837563,3.0893543,6.226608,1.2808112,3.5650933,5.441843,1.2810414,2.3856962,5.472035,1.0955285,2.1710093,5.234335,0.8146766,1.6486602,4.961015,1.4657286,1.4265853,4.597517,2.0365298,1.2272764,4.167474,2.5230017,1.0500206,3.692775,2.9267967,0.8941067,3.192136,3.2545059,0.7588228,2.679895,3.5166588,0.64345783,2.165009,3.7265108,0.5473019,1.650261,3.8986237,0.4696409,1.131681,4.047222,0.40976495,0.593193,4.148368,0.358663,0.031388,4.185115,0.358663,0.031388,4.1582,0.30827197,-0.51853,4.062593,0.25930497,-1.015927,3.856869,0.21247092,-1.43616,3.542965,0.16848285,-1.751502,3.129351,0.12805174,-1.932774,2.632222,0.091889635,-1.951262,2.07641,0.060706493,-1.780884,1.496025,0.03521436,-1.400649,0.934836,0.01612522,-0.797362,0.446371,0.0041501075,-0.745872,-0.362749,0.004149914,-1.282794,-0.923104,0.016124777,-1.589196,-1.526825,0.035213638,-1.684167,-2.123406,0.060705494,-1.593227,-2.672351,0.09188837,-1.345738,-3.142928,0.12805025,-0.972596,-3.513662,0.16848117,-0.504186,-3.771555,0.2124691,0.03139,-3.911043,0.25930306,0.589498,-3.934176,0.30827007,1.129994,-3.853641,0.3586611,1.639713,-3.686313,0.40976313,2.127253,-3.4747093,0.46963912,2.610939,-3.2400231,0.5473002,3.09224,-2.9670923,0.6434563,3.566001,-2.6411862,0.75882137,4.021125,-2.2495282,0.89410543,4.441473,-1.7826183,1.0500195,4.806964,-1.2353363,1.2272757,5.094901,-0.6078374,1.4265848,5.3514423,0.012153961,1.8133727,5.281489,0.093758605,1.64866,5.352945,0.09375857,1.8049828,5.3521404,-0.37995145,1.8710058,5.358717,-0.44156677,1.8942099,5.3448434,-0.31537974,1.8458022,5.472035,-0.90801156,2.1710098,6.026505,-1.0529056,2.6349387,5.967959,-1.1604058,2.8555918,6.38519,-1.0932947,3.1511939,6.347317,-0.757071,4.175892,6.287454,-0.536486,4.29437,6.422355,-0.91463196,4.027377,6.507514,-1.009169,3.8588378,6.247827,-0.25287604,4.3728,6.233493,0.09375795,4.401168,6.247827,0.44039297,4.3728,6.287455,0.724002,4.29437,6.347317,0.944587,4.175892,5.967959,1.3479233,2.8555923,5.3448424,0.5028968,1.8458023,5.3585806,0.6311578,1.8942101,5.3463483,0.4210525,1.8373849,5.0949,0.7953556,1.4265852,4.806964,1.4228547,1.2272763,4.441473,1.9701368,1.0500205,4.021125,2.4370458,0.89410657,3.566001,2.8287039,0.7588227,3.09224,3.1546109,0.6434578,2.610939,3.4275408,0.5473018,2.127253,3.6622267,0.46964085,1.639712,3.873831,0.40976492,1.129994,4.04116,0.35866296,0.589497,4.121696,0.30827197,0.031388,4.1582,0.30827197,0.031388,4.098561,0.25930497,-0.504187,3.959073,0.21247093,-0.972596,3.70118,0.16848288,-1.345738,3.330446,0.12805179,-1.593227,2.859869,0.091889694,-1.684167,2.310925,0.060706552,-1.589196,1.714344,0.035214413,-1.282794,1.110623,0.016125262,-0.745872,0.550267,0.00415013,-0.681904,-0.458159,0.0041498914,-1.14379,-1.08142,0.01612474,-1.370878,-1.718514,0.035213593,-1.387597,-2.322241,0.06070545,-1.223485,-2.855594,0.09188832,-0.910736,-3.291394,0.12805021,-0.482028,-3.611637,0.16848114,0.03139,-3.806586,0.21246909,0.581308,-3.875074,0.25930306,1.122767,-3.827673,0.30827007,1.637246,-3.680516,0.35866114,2.113597,-3.451457,0.40976316,2.565292,-3.1810281,0.46963918,3.012548,-2.8874002,0.5473003,3.454289,-2.5547473,0.6434564,3.882982,-2.1683922,0.7588215,4.285429,-1.7162253,0.89410555,4.643762,-1.1899152,1.0500197,4.936666,-0.5859133,1.2272758,5.14079,0.09375866,1.426585,5.49612,-0.6482935,1.9997417,6.078094,-0.8737396,2.4405017,6.460035,-0.9915467,2.9558487,6.597729,-1.0406809,3.6802866,6.687944,-1.0091689,3.5017347,6.432116,-0.2228721,4.621907,6.416719,0.09375789,4.645651,6.432116,0.4103879,4.621907,6.422357,1.102148,4.0273776,6.305898,1.3147272,3.3581433,6.507514,1.1966851,3.8588383,6.026504,1.2404234,2.6349392,6.078094,1.0612564,2.4405022,4.936666,0.7734317,1.2272762,4.643762,1.3774338,1.0500203,4.285429,1.9037437,0.89410645,3.882982,2.3559108,0.75882256,3.454289,2.7422657,0.64345765,3.012548,3.0749187,0.5473017,2.565292,3.3685467,0.46964073,2.113597,3.638975,0.40976486,1.637246,3.868034,0.35866293,1.122766,4.015192,0.30827194,0.581308,4.062593,0.25930497,0.031388,4.098561,0.25930497,0.031388,3.994104,0.21247095,-0.482029,3.799155,0.16848291,-0.910737,3.478912,0.12805183,-1.223485,3.043113,0.09188974,-1.387597,2.509759,0.060706597,-1.370878,1.906032,0.035214458,-1.14379,1.268938,0.016125299,-0.681904,0.645678,0.004150152,-0.606457,-0.544087,0.004149869,-0.985475,-1.220424,0.016124707,-1.128466,-1.881038,0.035213556,-1.064654,-2.482291,0.060705412,-0.8271,-2.99088,0.09188829,-0.450394,-3.383332,0.1280502,0.03139,-3.645218,0.16848114,0.566965,-3.771555,0.2124691,1.106753,-3.770133,0.2593031,1.626682,-3.655687,0.30827013,2.110404,-3.446021,0.35866117,2.548781,-3.159691,0.40976325,2.959794,-2.8346462,0.4696393,3.365171,-2.4857912,0.5473004,3.761251,-2.0968971,0.6434565,4.138134,-1.6535553,0.7588216,4.48056,-1.1444943,0.8941057,4.769032,-0.56268525,1.0500199,4.981122,0.09375871,1.227276,6.11925,-0.62290657,2.2853887,6.525987,-0.82196766,2.7837138,6.773101,-0.9146318,3.3331947,6.53899,-0.68342406,4.457094,6.474683,-0.4819321,4.556261,6.619598,-0.827346,4.332786,6.711076,-0.9137,4.191718,6.807985,-0.942485,4.042269,6.474684,0.6694489,4.556261,6.53899,0.8709399,4.457094,6.38519,1.2808113,3.1511943,6.460035,1.1790633,2.9558492,5.49612,0.83581054,1.9997422,5.512064,0.5018875,1.8863682,5.363674,0.78273904,1.9486927,4.769031,0.7502038,1.0500202,4.48056,1.3320128,0.89410627,4.138134,1.8410738,0.75882244,3.761252,2.2844148,0.64345753,3.365171,2.6733088,0.54730165,2.959794,3.0221639,0.46964067,2.548781,3.347209,0.4097648,2.110404,3.633539,0.35866287,1.626682,3.843205,0.3082719,1.106752,3.957652,0.25930494,0.566964,3.959073,0.21247093,0.031388,3.994104,0.21247095,0.031388,3.832736,0.16848291,-0.450395,3.57085,0.12805185,-0.8271,3.178398,0.09188977,-1.064654,2.669809,0.060706634,-1.128466,2.068556,0.035214495,-0.985475,1.407942,0.016125333,-0.606457,0.731605,0.0041501746,-0.52053,-0.619534,0.0041498505,-0.809688,-1.338279,0.016124677,-0.864498,-2.01186,0.035213526,-0.71844,-2.600453,0.060705382,-0.407625,-3.074657,0.09188828,0.03139,-3.414844,0.12805018,0.544806,-3.611636,0.16848114,1.078704,-3.669351,0.21246912,1.603274,-3.600671,0.25930312,2.096727,-3.422734,0.3082702,2.544921,-3.154702,0.35866126,2.940713,-2.815565,0.4097633,3.306176,-2.4401443,0.46963936,3.664141,-2.0398612,0.5473005,4.00834,-1.5983311,0.64345664,4.326509,-1.1016202,0.7588218,4.601397,-0.5394582,0.89410585,4.811968,0.09375875,1.05002,5.51783,0.09375856,1.845361,5.512064,-0.31437045,1.8863679,6.146493,-0.30040753,2.182709,6.5786,-0.58455765,2.6463919,6.84814,-0.7570708,3.1846807,6.904897,-0.9136999,3.8928196,6.996375,-0.8273459,3.7517517,6.765934,-0.73487616,4.664858,6.681516,-0.6054021,4.765106,6.56959,-0.19108516,4.898019,6.553464,0.09375783,4.917167,6.61417,-0.42413816,4.845079,6.56959,0.37860084,4.898019,6.619598,1.0148629,4.3327866,6.597729,1.2281972,3.6802871,6.711076,1.1012161,4.1917186,6.119249,0.81042343,2.2853892,6.525987,1.0094852,2.7837143,4.601397,0.72697675,0.89410615,4.326509,1.2891388,0.7588223,4.00834,1.7858499,0.6434574,3.664141,2.2273798,0.54730153,3.306176,2.6276617,0.4696406,2.940713,3.003083,0.4097647,2.544921,3.34222,0.3586628,2.096727,3.610252,0.30827186,1.603274,3.788189,0.25930488,1.078704,3.856869,0.21247092,0.544806,3.799155,0.16848291,0.031388,3.832736,0.16848291,0.031388,3.602362,0.12805186,-0.407625,3.262175,0.091889784,-0.71844,2.787971,0.060706664,-0.864498,2.199378,0.035214525,-0.809689,1.525797,0.016125362,-0.52053,0.807052,0.004150193,-0.425119,-0.683502,0.0041498356,-0.61827,-1.433146,0.016124655,-0.581508,-2.108444,0.035213504,-0.352058,-2.673626,0.06070536,0.031389,-3.103372,0.091888264,0.513173,-3.383332,0.1280502,1.035374,-3.513662,0.16848117,1.562275,-3.504309,0.21246916,2.066422,-3.371136,0.25930318,2.528386,-3.133331,0.30827025,2.936251,-2.811104,0.35866135,3.284838,-2.423633,0.40976343,3.599857,-2.0021052,0.46963948,3.904796,-1.5542761,0.54730064,4.190762,-1.0638402,0.64345676,4.443162,-0.5175332,0.7588219,4.642814,0.093758784,0.894106,6.156348,0.093758486,2.14557,6.613429,-0.27931562,2.555489,6.908002,-0.53648573,3.0662029,7.076982,-0.6834239,3.6274438,6.861736,-0.8125601,4.551095,6.963228,-0.8384551,4.430573,7.064721,-0.81256,4.31005,6.61417,0.6116538,4.845079,6.681516,0.79291785,4.765106,6.765935,0.9223919,4.664858,6.687944,1.1966852,3.5017352,6.7731,1.1021482,3.3331952,6.146494,0.48792446,2.182709,4.443162,0.70505184,0.7588222,4.190762,1.2513589,0.6434573,3.904796,1.7417948,0.5473014,3.599857,2.1896229,0.4696405,3.284838,2.611151,0.40976462,2.936251,2.998622,0.35866272,2.528386,3.32085,0.3082718,2.066421,3.558654,0.25930482,1.562274,3.691827,0.21247087,1.035374,3.70118,0.16848288,0.513172,3.570851,0.12805185,0.031388,3.602362,0.12805186,0.031388,3.29089,0.0918898,-0.352059,2.861144,0.060706686,-0.581509,2.295962,0.035214547,-0.61827,1.620664,0.016125385,-0.425119,0.87102,0.004150208,-0.321223,-0.734992,0.0041498244,-0.413058,-1.503184,0.01612464,-0.282034,-2.168254,0.03521349,0.031389,-2.698706,0.06070536,0.470403,-3.074657,0.09188828,0.973514,-3.291394,0.12805021,1.498938,-3.355447,0.1684812,2.013342,-3.280761,0.21246922,2.491747,-3.085979,0.25930324,2.917142,-2.791994,0.30827034,3.27985,-2.419773,0.35866144,3.576605,-1.9884491,0.40976351,3.836253,-1.5251131,0.4696396,4.082469,-1.0337001,0.54730076,4.303728,-0.49821314,0.6434569,4.483145,0.09375882,0.758822,6.626027,0.0937584,2.522609,6.947629,-0.25287572,2.987774,7.141288,-0.48193184,3.528277,7.160522,-0.73487604,4.196286,7.24494,-0.605402,4.096038,6.883815,-0.6424052,5.011791,6.795586,-0.5273792,5.088857,6.983941,-0.7114202,4.924334,6.678608,-0.15929824,5.191035,6.661755,0.093757756,5.205756,6.7252,-0.3663442,5.150337,6.678608,0.34681374,5.191036,6.807985,1.1300011,4.0422707,6.861736,1.0000759,4.5510955,6.5786,0.77207434,2.6463923,6.84814,0.94458723,3.1846812,4.303727,0.6857318,0.6434572,4.082469,1.2212188,0.5473013,3.836253,1.7126309,0.46964037,3.576605,2.175967,0.4097645,3.27985,2.607291,0.35866264,2.917142,2.979512,0.3082717,2.491747,3.273498,0.25930476,2.013342,3.468279,0.21247081,1.498937,3.542965,0.16848285,0.973514,3.478912,0.12805183,0.470402,3.262175,0.091889784,0.031388,3.29089,0.0918898,0.031388,2.886225,0.060706686,-0.282034,2.355772,0.035214562,-0.413058,1.690702,0.0161254,-0.321223,0.92251,0.0041502193,-0.209842,-0.773006,0.004149817,-0.195892,-1.546556,0.016124628,0.031389,-2.188754,0.03521348,0.414836,-2.673626,0.06070536,0.889878,-2.99088,0.09188829,1.408516,-3.142928,0.12805025,1.931343,-3.141148,0.16848126,2.427573,-3.003042,0.21246928,2.874799,-2.74965,0.25930333,3.258479,-2.403238,0.30827042,3.571169,-1.9852551,0.35866153,3.811461,-1.5145642,0.40976363,4.010782,-1.0137491,0.46963972,4.192493,-0.48280016,0.5473009,4.342447,0.093758844,0.643457,6.61343,0.46683237,2.555489,6.961964,0.09375829,2.959406,7.183856,-0.22287183,3.462632,7.312286,-0.42413795,4.016066,7.090015,-0.7344251,4.831681,7.102135,-0.61595124,5.2988,6.995688,-0.55511934,5.36178,7.196088,-0.7114201,4.739028,7.296215,-0.64240515,4.651571,6.725201,0.5538598,5.150337,6.795585,0.7148958,5.088857,6.883816,0.8299208,5.011791,6.904897,1.1012161,3.8928201,6.996375,1.014863,3.7517521,4.192493,0.6703189,0.5473012,4.010782,1.2012678,0.46964025,3.811461,1.7020829,0.4097644,3.571169,2.172774,0.35866252,3.258479,2.590756,0.30827162,2.874799,2.937169,0.25930467,2.427573,3.190561,0.21247075,1.931343,3.328667,0.1684828,1.408516,3.330446,0.12805179,0.889878,3.178398,0.09188977,0.414836,2.861144,0.060706686,0.031388,2.886225,0.060706686,0.031388,2.376273,0.03521457,-0.195892,1.734075,0.01612541,-0.209842,0.960525,0.0041502267,-0.091971,-0.796547,0.0041498095,0.031389,-1.561422,0.016124625,0.344812,-2.168254,0.03521349,0.781218,-2.600453,0.060705382,1.286263,-2.855594,0.09188832,1.814279,-2.941833,0.1280503,2.328437,-2.874919,0.16848132,2.800634,-2.675486,0.21246935,3.211128,-2.366599,0.25930342,3.547882,-1.9715791,0.3082705,3.805664,-1.5120981,0.35866165,3.984852,-1.0065331,0.40976375,4.118859,-0.4725981,0.46963984,4.230205,0.093758866,0.547301,6.94763,0.4403923,2.987775,7.199254,0.09375818,3.438887,7.384444,-0.5273791,4.574504,7.214904,-0.6362293,5.232078,6.983941,0.8989358,4.924334,4.118859,0.66011685,0.46964014,3.984852,1.1940519,0.4097643,3.805664,1.6996169,0.35866243,3.547882,2.159097,0.3082715,3.211128,2.554117,0.25930458,2.800634,2.863004,0.21247068,2.328437,3.062438,0.16848274,1.814279,3.12935,0.12805174,1.286263,3.043113,0.09188974,0.781218,2.787971,0.060706664,0.344812,2.355772,0.035214562,0.031388,2.376273,0.03521457,0.031389,1.74894,0.016125415,-0.091972,0.984066,0.004150234,0.031389,-0.804616,0.0041498095,0.25867,-1.546556,0.016124628,0.644286,-2.108444,0.035213504,1.127432,-2.482291,0.060705412,1.656005,-2.672351,0.09188837,2.186906,-2.692007,0.12805036,2.686063,-2.560915,0.1684814,3.128191,-2.302425,0.21246944,3.496284,-1.9412731,0.2593035,3.780835,-1.5015341,0.30827063,3.978789,-1.0048451,0.35866177,4.092226,-0.46890712,0.40976387,4.155903,0.09375889,0.46963996,7.183858,0.41038817,3.462632,7.356866,-0.19108494,3.963126,7.372993,0.09375806,3.943978,7.454829,-0.36634406,4.513024,7.501422,-0.15929806,4.472326,7.327673,-0.61595124,5.165356,6.90189,-0.4537323,5.417278,7.240761,-0.53182536,5.661857,7.124003,-0.47820437,5.703021,7.364456,-0.54969937,5.618248,7.43412,-0.5551193,5.102376,7.527918,-0.45373222,5.046878,6.759611,0.09375769,5.50146,6.777528,-0.1292933,5.490859,6.827062,-0.31179032,5.461551,6.777528,0.31680968,5.49086,6.827062,0.49930668,5.461551,6.90189,0.6412477,5.417278,6.995689,0.7426347,5.36178,6.963228,1.0259709,4.4305735,7.102135,0.80346775,5.2988,7.090015,0.92194086,4.831681,7.064721,1.0000759,4.3100505,7.160522,0.922392,4.196286,6.908003,0.7240023,3.0662034,7.076982,0.8709401,3.6274443,4.092225,0.6564259,0.40976414,3.978789,1.1923639,0.3586623,3.780835,1.6890519,0.3082714,3.496284,2.128792,0.2593045,3.128191,2.489944,0.21247059,2.686063,2.748433,0.16848266,2.186906,2.879525,0.12805168,1.656005,2.859869,0.091889694,1.127432,2.669809,0.060706634,0.644286,2.295962,0.035214547,0.25867,1.734075,0.01612541,0.031389,1.74894,0.016125415,0.031389,0.992134,0.004150234,0.031389,-0.804616,0.0041498095,0.154749,-0.796547,0.0041498095,0.475836,-1.503184,0.01612464,0.927276,-2.01186,0.035213526,1.450375,-2.322241,0.06070545,1.995552,-2.444703,0.09188843,2.522497,-2.397349,0.12805043,3.000067,-2.203289,0.16848148,3.405909,-1.888194,0.21246955,3.725819,-1.4781262,0.25930363,3.952821,-0.9976181,0.30827075,4.085998,-0.4680451,0.3586619,4.129028,0.0937589,0.40976402,7.141288,0.66944915,3.5282772,7.356868,0.37860104,3.963127,7.518275,0.093757935,4.457606,7.602746,-0.3117902,5.002604,7.65228,-0.12929417,4.973297,7.021118,-0.38883537,5.739296,7.488149,-0.5318263,5.574637,6.884708,-0.10285438,5.787389,6.865056,0.09375762,5.794318,6.939041,-0.26371837,5.768233,6.884708,0.2903696,5.787389,7.24494,0.79291797,4.096038,4.085998,0.6555639,0.35866216,3.952821,1.1851369,0.30827126,3.725819,1.6656439,0.25930437,3.405909,2.075712,0.21247049,3.000067,2.390807,0.16848257,2.522497,2.584868,0.12805161,1.995552,2.632222,0.091889635,1.450375,2.509759,0.060706597,0.927275,2.199378,0.035214525,0.475836,1.690702,0.0161254,0.154749,0.984066,0.004150234,0.031389,0.992134,0.004150234,0.031389,0.093759,2.2351742e-8,0.272619,-0.773006,0.004149817,0.681048,-1.433146,0.016124655,1.191244,-1.881038,0.035213556,1.746945,-2.123406,0.060705494,2.301352,-2.176204,0.09188849,2.817155,-2.061758,0.1280505,3.266296,-1.806195,0.16848157,3.629457,-1.437126,0.21246965,3.895281,-0.98160404,0.25930375,4.059325,-0.4643491,0.30827087,4.122745,0.09375891,0.35866204,7.312286,0.61165404,4.016066,7.501424,0.34681392,4.472327,7.670198,0.093757816,4.962696,7.604908,-0.47820434,5.533473,7.424265,-0.46471444,6.000871,7.291207,-0.41684544,6.023712,7.565227,-0.48067042,5.976672,7.706189,-0.46471444,5.952474,7.707793,-0.3888353,5.497199,7.789871,-0.2637183,5.468262,6.939041,0.45123464,5.768233,7.021118,0.5763506,5.739296,7.124004,0.6657196,5.703022,7.240761,0.71934164,5.661857,7.214904,0.8237448,5.232078,7.196088,0.89893585,4.739028,7.296213,0.8299209,4.65157,4.059324,0.6518679,0.30827114,3.895281,1.1691229,0.25930426,3.629457,1.624645,0.21247038,3.266296,1.993714,0.16848248,2.817155,2.249276,0.12805153,2.301352,2.363722,0.091889575,1.746945,2.310925,0.060706552,1.191244,2.068556,0.035214495,0.681047,1.620664,0.016125385,0.272619,0.960525,0.0041502267,0.384001,-0.734992,0.0041498244,0.872466,-1.338279,0.016124677,1.433655,-1.718514,0.035213593,2.014039,-1.888891,0.060705554,2.569851,-1.870404,0.09188856,3.06698,-1.689131,0.1280506,3.480595,-1.373789,0.16848168,3.794499,-0.95355606,0.21246977,4.000223,-0.45616007,0.25930387,4.095829,0.093758926,0.30827102,7.454829,0.55385995,4.513024,7.652282,0.3168098,4.973298,7.844203,-0.1028543,5.449106,7.863856,0.093757704,5.442177,7.173959,-0.33706346,6.04384,7.839246,-0.41684544,5.929632,7.018507,-0.08176245,6.070526,6.99611,0.093757555,6.07437,7.080424,-0.22536942,6.059897,7.018507,0.26927754,6.070526,7.384444,0.7148959,4.574504,4.000222,0.64367795,0.25930414,3.794499,1.141075,0.21247026,3.480595,1.561308,0.16848238,3.066981,1.87665,0.12805144,2.569851,2.057922,0.0918895,2.014039,2.07641,0.060706493,1.433655,1.906032,0.035214458,0.872466,1.525797,0.016125362,0.384001,0.92251,0.0041502193,0.487897,-0.683502,0.0041498356,1.048252,-1.220424,0.016124707,1.651973,-1.526825,0.035213638,2.248554,-1.621797,0.060705613,2.797499,-1.530857,0.09188865,3.268076,-1.283368,0.12805068,3.63881,-0.91022605,0.16848178,3.896703,-0.44181606,0.21246989,4.036191,0.09375894,0.25930402,7.602747,0.4993058,5.002604,7.844204,0.2903697,5.449106,7.956495,-0.33706343,5.909505,7.677091,-0.42028853,6.303204,7.519749,-0.37622753,6.312047,7.843778,-0.43497553,6.293836,8.010466,-0.42028853,6.284467,8.167806,-0.3762275,6.275625,8.050031,-0.2253694,5.893447,8.111947,-0.0817624,5.882818,7.080424,0.41288453,6.059897,7.173959,0.5245796,6.04384,7.291209,0.6043606,6.023712,7.364456,0.73721564,5.618248,7.424265,0.65222955,6.000871,7.327673,0.80346775,5.165356,7.43412,0.7426348,5.102376,3.896703,0.6293349,0.21247014,3.63881,1.097744,0.16848227,3.268076,1.470886,0.12805136,2.797499,1.718375,0.09188941,2.248554,1.809315,0.060706433,1.651973,1.714344,0.035214413,1.048252,1.407942,0.016125333,0.487896,0.87102,0.004150208,0.583307,-0.619534,0.0041498505,1.206568,-1.08142,0.01612474,1.843662,-1.308507,0.03521369,2.447388,-1.325227,0.060705688,2.980742,-1.161115,0.091888726,3.416542,-0.8483661,0.12805079,3.736785,-0.41965806,0.1684819,3.931734,0.09375895,0.21247002,7.527918,0.6412478,5.046878,7.789871,0.4512347,5.468261,8.134343,0.0937576,5.878974,8.111949,0.2692776,5.882819,7.381104,-0.30279252,6.319839,8.306452,-0.3027925,6.267833,7.19728,-0.067799516,6.33017,7.170798,0.09375749,6.331658,7.270498,-0.19998251,6.326055,7.197281,0.25531548,6.330171,3.736784,0.60717696,0.16848215,3.416542,1.035885,0.12805125,2.980742,1.348633,0.09188934,2.447388,1.512745,0.06070636,1.843662,1.496025,0.03521436,1.206568,1.268938,0.016125299,0.583307,0.807052,0.004150193,0.669235,-0.544087,0.004149869,1.345572,-0.923104,0.016124777,2.006186,-1.066096,0.03521375,2.607439,-1.002283,0.060705762,3.116028,-0.76473004,0.09188883,3.508481,-0.38802403,0.12805091,3.770365,0.09375896,0.16848204,7.707793,0.5763507,5.497199,8.050031,0.4128846,5.893447,8.417057,-0.19998349,6.261616,8.023683,-0.40421957,6.556222,7.832079,-0.36153558,6.556222,8.226667,-0.41844758,6.556223,8.429652,-0.40421957,6.556223,8.621255,-0.36153558,6.556223,8.790092,-0.29039657,6.556223,8.490275,-0.06779949,6.257502,8.516758,0.09375751,6.256013,7.270498,0.38749847,6.326055,7.381104,0.49030748,6.319839,7.519751,0.5637425,6.312047,7.565227,0.66818655,5.976672,7.488149,0.7193417,5.574637,7.677091,0.6078035,6.303204,7.604907,0.6657197,5.533473,3.50848,0.5755429,0.12805113,3.116028,0.9522479,0.09188923,2.607439,1.189802,0.060706284,2.006186,1.253614,0.0352143,1.345572,1.110623,0.016125262,0.669235,0.731605,0.0041501746,0.744682,-0.458159,0.0041498914,1.463427,-0.747318,0.016124818,2.137007,-0.802127,0.03521381,2.725601,-0.65607,0.060705844,3.199805,-0.34525403,0.09188892,3.539992,0.09375897,0.12805103,7.956494,0.5245786,5.909505,8.490276,0.2553145,6.257502,8.417058,0.3874985,6.261616,7.663242,-0.29039657,6.556223,8.924785,-0.19080055,6.556223,7.528552,-0.19080055,6.556222,7.439389,-0.062749565,6.556223,7.40714,0.093757436,6.556223,7.43939,0.2502644,6.556222,3.199805,0.53277296,0.09188914,2.725601,0.843588,0.060706202,2.137007,0.989646,0.03521424,1.463427,0.934837,0.01612522,0.744682,0.645678,0.004150152,0.80865,-0.362748,0.004149914,1.558294,-0.5559,0.016124863,2.233592,-0.519138,0.035213877,2.798774,-0.28968802,0.060705934,3.228519,0.09375898,0.09188904,7.839246,0.6043606,5.929632,8.306452,0.4903075,6.267833,9.013946,-0.062749565,6.556222,8.117544,-0.4003006,6.607957,7.917896,-0.35795256,6.606471,8.32905,-0.41441557,6.609533,8.540556,-0.4003006,6.611108,8.740203,-0.35795256,6.612595,8.916128,-0.2873726,6.613904,9.056473,-0.18856156,6.61495,9.046195,0.093757436,6.556223,9.013947,0.2502644,6.556223,7.528551,0.37831643,6.556223,7.663242,0.4779114,6.556223,7.83208,0.54905045,6.556223,7.706189,0.65222955,5.952474,7.843778,0.6224905,6.293836,8.023683,0.59173447,6.556223,2.798774,0.47720698,0.060706113,2.233592,0.706657,0.035214175,1.558294,0.743418,0.016125176,0.80865,0.550267,0.00415013,0.86014,-0.258853,0.004149936,1.628332,-0.350688,0.016124915,2.293402,-0.219664,0.03521395,2.823854,0.093758985,0.060706023,8.167806,0.5637425,6.275625,8.924785,0.37831542,6.556222,8.790092,0.4779114,6.556223,7.741971,-0.2873726,6.605162,9.149378,-0.06151758,6.61564,7.601626,-0.18856156,6.604117,7.508721,-0.061517578,6.603425,7.475118,0.09375743,6.603175,7.508722,0.24903344,6.603424,2.293402,0.40718198,0.0352141,1.628332,0.538206,0.016125124,0.86014,0.446371,0.0041501075,0.898154,-0.147471,0.004149966,1.671704,-0.133522,0.016124964,2.313902,0.09375899,0.035214026,8.010465,0.6078035,6.284468,8.621254,0.54905045,6.556222,9.182981,0.09375742,6.615892,8.414001,-0.4032706,6.654039,8.197822,-0.3894646,6.650955,7.993762,-0.3480456,6.648044,8.630181,-0.38946462,6.657123,8.83424,-0.34804562,6.660034,9.014054,-0.2790136,6.662599,9.1575,-0.18236957,6.664644,9.25246,-0.05811259,6.665999,9.149379,0.24903244,6.61564,9.056473,0.37607643,6.614949,7.601626,0.37607643,6.604117,7.741971,0.47488743,6.605162,7.917897,0.5454674,6.606472,8.226667,0.60596246,6.556223,8.117544,0.5878154,6.607957,1.671704,0.32104,0.016125076,0.898154,0.33499,0.0041500777,0.921695,-0.029601002,0.004149992,1.68657,0.09375899,0.01612502,8.429652,0.59173447,6.556222,8.916128,0.47488743,6.613904,8.740202,0.5454674,6.612594,7.813949,-0.27901357,6.645481,9.286804,0.09375741,6.66649,7.670502,-0.18236957,6.643434,7.575544,-0.058112584,6.64208,7.541198,0.09375741,6.64159,7.575544,0.24562742,6.642079,0.921695,0.21712,0.0041500516,0.929764,0.093759,0.004150022,8.540556,0.5878154,6.611108,9.25246,0.24562742,6.665999,8.48117,-0.3864346,6.689476,8.263782,-0.3730956,6.685015,8.698558,-0.3730956,6.693935,8.058579,-0.3330796,6.680805,8.903758,-0.3330796,6.698145,9.084578,-0.2663866,6.701856,9.228826,-0.1730156,6.704815,9.324316,-0.052967597,6.706774,9.358852,0.0937574,6.707484,9.1575,0.3698844,6.664644,9.014054,0.4665284,6.662599,7.670501,0.36988443,6.643434,7.813948,0.46652943,6.645481,7.993762,0.53556037,6.648045,8.32905,0.6019314,6.609533,8.197822,0.5769794,6.650955,8.834239,0.53556037,6.660034,8.630181,0.5769794,6.657122,7.877761,-0.2663866,6.677096,9.324316,0.2404834,6.706774,7.733512,-0.17301558,6.674137,7.638024,-0.05296759,6.672177,7.603485,0.093757406,6.671468,7.638023,0.24048342,6.672177,8.414001,0.5907864,6.654039,9.228826,0.3605314,6.704815,8.530196,-0.36532962,6.715575,8.314681,-0.3525776,6.709936,8.74571,-0.3525776,6.721214,8.949141,-0.3143196,6.726535,8.111251,-0.3143196,6.704613,9.128401,-0.2505576,6.731225,9.271405,-0.1612906,6.734966,9.366071,-0.046519607,6.737443,9.400311,0.09375739,6.73834,9.366072,0.2340344,6.737443,9.084578,0.45390138,6.701856,8.903757,0.5205954,6.698145,7.733512,0.3605314,6.674137,7.877761,0.45390138,6.677096,8.05858,0.5205954,6.680805,8.263782,0.56061137,6.685015,8.698558,0.56061137,6.693935,8.48117,0.5739494,6.689476,7.93199,-0.2505576,6.699924,9.271405,0.34880638,6.734966,7.788986,-0.1612906,6.696182,7.69432,-0.0465196,6.693707,7.66008,0.093757406,6.69281,7.69432,0.2340344,6.693707,9.128401,0.4380734,6.731225,8.560727,-0.3413796,6.732071,8.349788,-0.3292926,6.725519,8.771667,-0.3292926,6.738623,8.970775,-0.29303062,6.744808,9.146229,-0.23259561,6.750258,8.150678,-0.29303062,6.719332,9.286197,-0.1479856,6.754607,9.378853,-0.039201614,6.757485,9.412367,0.09375739,6.758527,9.378853,0.22671638,6.757484,9.286197,0.3355004,6.754607,8.949139,0.5018354,6.726535,8.74571,0.5400924,6.721212,7.788985,0.34880638,6.696182,7.93199,0.4380734,6.699924,8.111251,0.5018354,6.704614,8.314681,0.5400924,6.709936,8.530196,0.5528444,6.715575,7.975225,-0.2325956,6.713883,9.146229,0.4201104,6.750259,7.835256,-0.14798559,6.709535,7.742601,-0.039200597,6.706657,7.709088,0.0937574,6.705616,7.742601,0.2267164,6.706657,8.970775,0.48054639,6.744808,8.572406,-0.3160066,6.738696,8.368363,-0.3046236,6.731559,8.776448,-0.3046236,6.745831,8.969049,-0.2704766,6.752568,9.138766,-0.2135656,6.758504,9.274158,-0.13388962,6.763238,8.175762,-0.2704766,6.724823,9.363784,-0.031448614,6.766374,9.396201,0.09375738,6.767508,9.363785,0.21896338,6.766374,9.274158,0.3214044,6.763238,9.138766,0.4010804,6.758504,8.771667,0.5168074,6.738623,8.560727,0.52889436,6.732071,7.835257,0.3355004,6.709535,7.975225,0.4201104,6.713883,8.150678,0.48054639,6.719333,8.349788,0.5168074,6.725519,8.006045,-0.21356559,6.718887,8.969047,0.4579924,6.752567,7.870653,-0.13388859,6.714152,7.781028,-0.0314476,6.711018,7.748609,0.0937574,6.709884,7.781027,0.2189634,6.711018,8.776448,0.4921394,6.745831,8.760084,-0.2799556,6.742507,8.564877,-0.29063362,6.735183,8.36967,-0.2799556,6.727859,8.944346,-0.24792361,6.749419,9.106715,-0.19453561,6.755511,9.236244,-0.11979261,6.760371,9.321991,-0.023695612,6.763587,8.185408,-0.2479236,6.720946,9.353004,0.09375738,6.764751,9.321991,0.21121038,6.763587,9.236244,0.30730838,6.760371,9.106715,0.3820504,6.755511,8.944345,0.4354384,6.749419,8.572406,0.5035214,6.738696,8.368364,0.4921394,6.731559,7.870653,0.3214044,6.714153,8.006045,0.4010804,6.718887,8.175763,0.4579924,6.724823,8.02304,-0.1945356,6.714856,8.760085,0.46747038,6.742506,7.893508,-0.1197926,6.709995,7.807764,-0.0236956,6.706779,7.776749,0.0937574,6.705616,7.807764,0.2112104,6.706779,8.564877,0.4781484,6.735183,8.897054,-0.2266336,6.734967,8.722601,-0.25667062,6.728314,8.537786,-0.2666826,6.721266,8.352968,-0.25667062,6.714218,9.05078,-0.17657259,6.74083,9.173415,-0.10648761,6.745506,9.254597,-0.01637761,6.748602,9.283958,0.09375739,6.749724,8.178515,-0.2266336,6.707565,9.254597,0.2038924,6.748602,9.173415,0.29400238,6.745506,9.05078,0.3640884,6.74083,8.897053,0.4141494,6.734967,8.722602,0.44418538,6.728314,8.36967,0.46747038,6.727859,8.185409,0.4354384,6.720947,7.893508,0.30730838,6.709997,8.02304,0.3820504,6.714855,8.02479,-0.17657259,6.701703,8.537784,0.4541984,6.721266,7.902153,-0.106487595,6.697027,7.820973,-0.016376596,6.693931,7.791609,0.093757406,6.692811,7.820973,0.20389241,6.69393,8.352969,0.44418538,6.714218,8.971666,-0.16074459,6.714012,8.827559,-0.2078746,6.708817,8.664023,-0.23615259,6.702923,8.490773,-0.24557859,6.696679,8.317523,-0.23615259,6.690434,9.086627,-0.0947626,6.718154,9.162727,-0.009928602,6.720897,9.190252,0.0937574,6.721889,9.162728,0.19744341,6.720897,8.153986,-0.20787458,6.68454,9.086627,0.2822774,6.718153,8.971666,0.3482594,6.714012,8.827559,0.39538938,6.708817,8.664024,0.4236674,6.702922,8.490773,0.4330934,6.696679,8.178515,0.4141494,6.707565,8.02479,0.3640884,6.701703,7.902153,0.29400238,6.697027,8.009881,-0.16074458,6.679348,8.317523,0.4236674,6.690434,7.89492,-0.09476259,6.675204,7.81882,-0.009928591,6.672461,7.791294,0.093757406,6.671469,7.81882,0.19744343,6.672461,8.153986,0.39538938,6.684541,8.870075,-0.14811657,6.674603,8.73625,-0.19290859,6.670574,8.976836,-0.08540859,6.677818,8.584379,-0.21978357,6.665999,8.423488,-0.22874159,6.661153,8.262595,-0.21978357,6.656307,9.047508,-0.0047835927,6.679947,9.07307,0.093757406,6.680717,9.047508,0.19229943,6.679947,8.976836,0.27292338,6.677818,8.110724,-0.19290859,6.651734,8.870075,0.33563238,6.674603,8.736248,0.3804234,6.670573,8.58438,0.4072984,6.665999,8.423488,0.41625738,6.661153,8.262595,0.4072984,6.656307,8.009881,0.3482594,6.679348,7.89492,0.2822774,6.675205,7.976898,-0.14811657,6.647704,8.110724,0.38042343,6.651734,8.746714,-0.13975857,6.622157,8.623509,-0.18300156,6.61984,8.623508,0.37051642,6.61984,8.746714,0.32727343,6.622158,7.870138,-0.08540858,6.644489,7.799467,-0.004783584,6.64236,7.773904,0.09375741,6.64159,7.799467,0.19229943,6.64236,7.976898,0.3356324,6.647704,8.845,-0.07921658,6.624006,8.910064,-0.0013785795,6.62523,8.483692,-0.20894757,6.61721,8.33557,-0.21759656,6.614423,8.187449,-0.20894757,6.611637,8.933597,0.09375742,6.625673,8.910064,0.18889342,6.62523,8.845,0.26673242,6.624006,8.047631,-0.18300156,6.609007,8.483693,0.39646342,6.61721,8.33557,0.40511143,6.614423,8.187448,0.39646342,6.611637,8.047631,0.37051642,6.609007,7.870138,0.27292442,6.644489,7.924427,-0.13975756,6.606689,7.924427,0.32727343,6.606689,8.602284,-0.13673455,6.556223,8.489726,-0.17941855,6.556223,8.692078,-0.076977566,6.556223,8.489725,0.36693344,6.556222,8.602284,0.32424942,6.556223,8.361991,0.39254344,6.556222,7.82614,-0.07921657,6.604842,7.761076,-0.0013785744,6.603617,7.737544,0.09375743,6.603175,7.761076,0.18889344,6.603618,7.82614,0.26673242,6.604842,8.75152,-0.00014656312,6.556222,8.773019,0.093757436,6.556223,8.361991,-0.20502855,6.556223,8.226667,-0.21356554,6.556223,8.091345,-0.20502855,6.556222,8.751521,0.18766145,6.556223,8.692078,0.26449242,6.556222,7.963609,-0.17941855,6.556222,8.226667,0.40108043,6.556223,8.091344,0.39254344,6.556223,7.963609,0.36693344,6.556223,7.85105,0.32424942,6.556223,7.85105,-0.13673455,6.556223,7.761256,0.26449242,6.556223,7.761256,-0.076977566,6.556222,7.701815,-0.00014656312,6.556223,7.680315,0.093757436,6.556223,7.701815,0.18766145,6.556222,-5.4321294,0.09374705,2.458583]);
-
-// prettier-ignore
-const colors = null;
-
-// prettier-ignore
-const uvs = new Float32Array([0.538753,0.8966757,0.5410814,0.9016967,0.47802687,0.90303487,0.53575194,0.89199424,0.5726751,0.8857005,0.5787226,0.8933394,0.54251814,0.9068531,0.5322007,0.8876587,0.5662328,0.87868494,0.5896163,0.8772773,0.5979485,0.8861135,0.58405554,0.9013297,0.542866,0.91192275,0.52819157,0.883675,0.55946636,0.8722694,0.581192,0.86919105,0.59656286,0.8730563,0.60589224,0.88237023,0.605883,0.89539725,0.5883007,0.9093758,0.54199016,0.9168606,0.52379453,0.88004935,0.55242467,0.86643726,0.5726643,0.86181945,0.5872861,0.8645376,0.5969099,0.8727884,0.6063205,0.8821567,0.6149852,0.89216197,0.61303914,0.9048072,0.59122276,0.91745657,0.5397339,0.92160696,0.5190624,0.8767894,0.5451408,0.8611773,0.56402487,0.8551361,0.57800925,0.8567761,0.5875629,0.864219,0.592293,0.87558705,0.6010927,0.88469815,0.6155072,0.89200455,0.6234728,0.9020992,0.61926925,0.91434866,0.5924684,0.92553115,0.5359251,0.9260856,0.51403373,0.8739047,0.53763556,0.85648507,0.55526567,0.8491228,0.56869626,0.84974277,0.5782239,0.8564101,0.5834651,0.86724824,0.58376145,0.88026017,0.5914231,0.8888499,0.60956526,0.8942713,0.624102,0.9019987,0.6312737,0.91219664,0.6243227,0.9240144,0.5915024,0.93353105,0.53039277,0.93020123,0.508736,0.87140614,0.5299195,0.85236144,0.54637665,0.8437699,0.559319,0.8434177,0.56885433,0.84933263,0.5745797,0.85964495,0.5759058,0.87238747,0.57264817,0.88544136,0.5788754,0.8933075,0.598575,0.8978617,0.61733365,0.90397924,0.63202894,0.9121541,0.63823503,0.92245924,0.6277677,0.93378127,0.5875127,0.9413451,0.5229982,0.9338393,0.5031863,0.86930686,0.52199423,0.8488124,0.53734446,0.8390749,0.5498533,0.8377895,0.5594251,0.8429662,0.5656162,0.8527492,0.56787384,0.86519927,0.5660329,0.87821114,0.561373,0.88978446,0.5662423,0.8968831,0.5843899,0.90153337,0.60482967,0.90698,0.6242769,0.91383165,0.63914263,0.9224765,0.64407206,0.9328821,0.6288324,0.9436027,0.5792771,0.9487916,0.51368535,0.93686664,0.49739242,0.8676213,0.51385176,0.84584796,0.5281507,0.8350418,0.54027474,0.8328549,0.5499104,0.83729994,0.55655813,0.84654206,0.5596769,0.858671,0.5590998,0.8715925,0.55595666,0.88323253,0.55393124,0.8921887,0.55798495,0.89878625,0.5702479,0.90427125,0.58880943,0.9098181,0.6099961,0.91620153,0.63018113,0.9238267,0.6451697,0.9329622,0.6482411,0.9434485,0.6260611,0.95338595,0.5650497,0.95557,0.50254846,0.93913877,0.49135333,0.8663654,0.50547457,0.8434816,0.5187702,0.83167976,0.5305557,0.82861763,0.54028547,0.8323301,0.54738903,0.84101284,0.55132097,0.8527867,0.55189717,0.86556745,0.5501027,0.8772135,0.5492492,0.8860783,0.55547273,0.8916363,0.5597404,0.898414,0.5611088,0.9056264,0.5730393,0.91166556,0.59188914,0.91814154,0.61376137,0.92550874,0.6346668,0.93395,0.6495848,0.94359624,0.6496351,0.95411915,0.6165066,0.96293324,0.54273236,0.96118903,0.48989454,0.9405119,0.48505896,0.8655557,0.49683508,0.84172857,0.5091697,0.8290017,0.52066374,0.8250866,0.53052187,0.82806057,0.5380908,0.836159,0.54280686,0.8475378,0.5444573,0.86012477,0.543888,0.87171674,0.54406583,0.8804476,0.5505872,0.88536125,0.5630816,0.90544724,0.5629849,0.91244006,0.5743636,0.9190303,0.59325576,0.9264628,0.61560357,0.9348623,0.6370312,0.9441682,0.65130883,0.95434266,0.6457325,0.96479946,0.593819,0.9717689,0.51110244,0.9649202,0.47626916,0.94086164,0.4787284,0.8652245,0.4878943,0.840605,0.49930596,0.8270225,0.5105586,0.8222746,0.5205867,0.8245,0.52864134,0.83198434,0.53412896,0.842923,0.53680056,0.85525936,0.5373666,0.86673707,0.5384722,0.8752917,0.5452099,0.8795796,0.5638484,0.8788067,0.57039833,0.88611716,0.5765238,0.8940554,0.57386136,0.92630666,0.5923338,0.9347127,0.61462486,0.9441905,0.6358918,0.9544121,0.6478545,0.96511406,0.6297366,0.9752138,0.5454627,0.97863704,0.47261962,0.96594584,0.46240413,0.94010377,0.47257918,0.86537933,0.4789371,0.8401489,0.48912415,0.8257565,0.50019056,0.8201964,0.51043916,0.8216618,0.51901186,0.8284978,0.52527523,0.8389467,0.528937,0.8509721,0.53057563,0.8622734,0.53253317,0.870609,0.53943086,0.8742853,0.55695605,0.87209994,0.5861511,0.86413234,0.5957132,0.8730054,0.6053453,0.88268226,0.58189535,0.90234995,0.56516695,0.9124635,0.5633749,0.91918314,0.5710285,0.9334047,0.5882315,0.9427763,0.60921454,0.9533583,0.62825596,0.9645239,0.6323787,0.9756492,0.5795516,0.9842991,0.46512753,0.9808067,0.43451804,0.96382946,0.4495551,0.9382834,0.4665982,0.86600184,0.4702443,0.840374,0.47893813,0.825244,0.48949775,0.8188657,0.50002897,0.8195602,0.50916624,0.8257127,0.5162263,0.8356187,0.52086735,0.84726936,0.52353877,0.85832965,0.5262953,0.8664017,0.53331405,0.869476,0.549778,0.8659798,0.57660353,0.85602313,0.609518,0.84154123,0.62228835,0.8518199,0.63570243,0.86300355,0.6147664,0.89284724,0.58612996,0.91070294,0.5619576,0.9257893,0.5583092,0.93216264,0.5651695,0.9401893,0.5795709,0.950462,0.59637654,0.962095,0.6068593,0.97408545,0.58156955,0.9848981,0.45377472,0.98760957,0.39153588,0.9764995,0.40473074,0.95904857,0.43867913,0.93559784,0.46077955,0.8670755,0.4617707,0.8412583,0.4690565,0.8255021,0.47880632,0.81832343,0.48929402,0.81820905,0.49905828,0.8236435,0.5069536,0.83295214,0.5125829,0.84416157,0.5162684,0.8549141,0.5197896,0.86267585,0.5269047,0.8651533,0.54235256,0.860436,0.5670327,0.8486475,0.5971689,0.83213776,0.6296438,0.8128003,0.6449724,0.82406855,0.6613201,0.836242,0.6495608,0.87470555,0.62362087,0.90316725,0.58896697,0.91909003,0.5657482,0.9194194,0.5518934,0.9381667,0.5553795,0.94645905,0.56432,0.9574434,0.57062745,0.9698188,0.5536988,0.98177683,0.44876194,0.9881522,0.35259622,0.98111063,0.35256588,0.9682235,0.38514403,0.9526589,0.4299224,0.9322273,0.4551239,0.86858654,0.45348296,0.8427822,0.4594172,0.82650834,0.4684358,0.81858873,0.47856098,0.81764996,0.48863003,0.82230467,0.49741864,0.8309623,0.5040655,0.84166235,0.5087659,0.8520383,0.5130352,0.8594411,0.5202334,0.86132294,0.5347047,0.8554644,0.5574111,0.84198546,0.585092,0.82358277,0.6150147,0.80244386,0.6453079,0.7812125,0.66236556,0.7930898,0.6805928,0.8058208,0.67849374,0.8488489,0.6635945,0.88653827,0.6318438,0.91365546,0.5900083,0.92746496,0.5644848,0.9262487,0.56091857,0.9328542,0.5544556,0.9390954,0.54209006,0.9436115,0.54062545,0.95191807,0.53997064,0.96317077,0.52440584,0.9752798,0.45375976,0.9839688,0.34682912,0.9812537,0.31872448,0.970699,0.33564895,0.95865893,0.37336507,0.94539523,0.4232281,0.9283365,0.44963858,0.8705239,0.44535682,0.84492946,0.44997185,0.828242,0.45831728,0.8196391,0.46815,0.81790245,0.47820044,0.821738,0.48757133,0.8296642,0.49528635,0.8397876,0.5010225,0.8497167,0.5060395,0.8567101,0.51331764,0.85799485,0.5268482,0.8510674,0.5477146,0.8360266,0.5731813,0.8158577,0.6008636,0.79299414,0.6290739,0.7702371,0.65699553,0.75008374,0.67514515,0.7623136,0.69448584,0.7753374,0.69974214,0.8188618,0.69621605,0.8614379,0.67805815,0.89851487,0.63930106,0.9243153,0.5886395,0.93575037,0.58390653,0.9438194,0.5443866,0.94477284,0.52831626,0.9482405,0.5201137,0.9561555,0.50513893,0.9668114,0.45964086,0.9764989,0.37073758,0.978404,0.31479585,0.97062045,0.30876678,0.9597075,0.32924446,0.9487602,0.36701375,0.9376983,0.41842625,0.9240664,0.44433662,0.8728799,0.4373754,0.8476887,0.44068205,0.8306856,0.4483959,0.82145303,0.45799163,0.81894374,0.4680824,0.8219624,0.4777164,0.8290997,0.48620522,0.83855355,0.49301916,0.847966,0.4987996,0.85449815,0.5061642,0.8551819,0.51878655,0.8472528,0.5379192,0.8307694,0.5613563,0.8089529,0.5870317,0.784446,0.6134156,0.7601855,0.6396982,0.7387299,0.66562784,0.72169304,0.6844603,0.7341221,0.7044523,0.74729544,0.71470594,0.7885627,0.7194631,0.8317145,0.7148559,0.87398577,0.693317,0.9106295,0.6457298,0.935141,0.650602,0.94611686,0.57434237,0.9514612,0.5300106,0.9496119,0.49412426,0.9586737,0.46327955,0.96745604,0.40097475,0.97257453,0.3346848,0.96899384,0.30588755,0.95950663,0.30748725,0.9487745,0.3282505,0.93886554,0.36438695,0.9298218,0.4153035,0.9195332,0.43923807,0.8756498,0.4295278,0.8510539,0.43151665,0.833827,0.4386273,0.82401246,0.44803047,0.8207521,0.45821047,0.8229551,0.46815273,0.8292868,0.4771079,0.8380018,0.4847255,0.8468032,0.49130246,0.8528224,0.4987688,0.8528998,0.5105132,0.84403247,0.5279983,0.8262193,0.5495507,0.80286855,0.5733989,0.77680004,0.59815055,0.7510711,0.6230029,0.7282968,0.64763296,0.710112,0.6720321,0.6971119,0.69129926,0.70965433,0.71168005,0.72290295,0.72524035,0.76059073,0.73538435,0.80146515,0.7400919,0.844328,0.7349049,0.8864266,0.70993495,0.9228546,0.7288637,0.93513197,0.6527757,0.957208,0.5578228,0.9583185,0.51031506,0.95173067,0.46493608,0.9590213,0.42342603,0.96472865,0.36542183,0.96520424,0.3213748,0.95867395,0.3052213,0.9484905,0.31017613,0.9380611,0.3303414,0.9291108,0.36436737,0.9219147,0.41364497,0.91483027,0.43436974,0.8788323,0.4218075,0.85502505,0.4224496,0.83766073,0.4289743,0.82730496,0.43822163,0.8233095,0.44853315,0.82469416,0.4588231,0.83020186,0.46827486,0.8381483,0.4764065,0.84626955,0.4835235,0.8517009,0.49111712,0.8511663,0.5020118,0.84142226,0.5179194,0.82238823,0.5377039,0.7976123,0.5598676,0.77006376,0.58313894,0.74290806,0.606721,0.718815,0.6302314,0.69944125,0.65357244,0.6853935,0.6768278,0.67653203,0.6963806,0.6891405,0.71700144,0.7024271,0.7327726,0.7362192,0.74635375,0.77346975,0.7568046,0.8139815,0.76203257,0.8565984,0.7570383,0.89863974,0.7821998,0.91042745,0.7518862,0.9473431,0.64942044,0.96832895,0.53187966,0.96379757,0.51097,0.95325834,0.48861533,0.95372736,0.43649408,0.9570019,0.39381966,0.95931244,0.34762254,0.9564426,0.3176204,0.9482356,0.3083054,0.93771315,0.3150042,0.92761713,0.33435932,0.91955805,0.366235,0.9140683,0.413257,0.9100321,0.4297672,0.8824295,0.41421187,0.85960895,0.41345692,0.8421881,0.41940403,0.83132446,0.42852736,0.82660306,0.43900913,0.82716185,0.44968295,0.8318238,0.4596594,0.83896965,0.4683237,0.8463788,0.4757134,0.8511743,0.4831829,0.84999996,0.49325472,0.8394399,0.50764215,0.81929207,0.52575505,0.7931989,0.5463524,0.7642528,0.568267,0.7357153,0.590706,0.7103119,0.61323595,0.6897246,0.63568413,0.6745727,0.6580503,0.6647276,0.6804497,0.65967685,0.70019746,0.67232615,0.72097325,0.6856326,0.7382616,0.71574455,0.754075,0.7490565,0.7680385,0.7858653,0.77927953,0.82599664,0.7857661,0.86836106,0.81185126,0.87937903,0.81170315,0.9214713,0.78274024,0.9592223,0.63169616,0.97919995,0.495655,0.9670339,0.48781925,0.95531774,0.4648751,0.95393074,0.4415768,0.95220417,0.41313156,0.95293576,0.37526613,0.9523919,0.33963144,0.9471956,0.31852487,0.9379217,0.31340915,0.92721665,0.3211369,0.91746026,0.33968282,0.91023946,0.3695232,0.9063408,0.41397473,0.90519774,0.42547652,0.8864463,0.40674058,0.8648194,0.40451434,0.84741867,0.40988487,0.8360728,0.41891447,0.8306267,0.42960453,0.8303452,0.44069803,0.83413476,0.4512263,0.84044474,0.4604405,0.84710807,0.46811923,0.8512554,0.4752181,0.84944254,0.48420295,0.83810383,0.49711648,0.81694853,0.5136391,0.78964645,0.5327712,0.7593871,0.5534351,0.72951776,0.5748373,0.70281774,0.59649915,0.68100053,0.6181834,0.6647032,0.639819,0.65380853,0.6614481,0.6478156,0.6831955,0.64610535,0.70308155,0.6587825,0.72396314,0.6721012,0.7423296,0.69894475,0.7596397,0.728541,0.7758105,0.7613474,0.7905497,0.79766285,0.8031432,0.83734065,0.82873577,0.8477863,0.8408941,0.8893255,0.8472583,0.93126136,0.8300804,0.9700722,0.5622555,0.9883986,0.45364377,0.9671686,0.46247616,0.9554582,0.36463428,0.9447074,0.33715042,0.9378432,0.3220201,0.92782086,0.3197461,0.9170146,0.32815287,0.90759724,0.34596038,0.9011733,0.37392756,0.8987711,0.41566387,0.90037364,0.42155725,0.8908907,0.3993947,0.87067735,0.39559403,0.85337055,0.40038309,0.8415603,0.40935048,0.8353825,0.42028978,0.8342385,0.43184114,0.8371224,0.44294998,0.84255666,0.45273125,0.8484367,0.46071154,0.8519212,0.46747088,0.8495073,0.4751325,0.8374594,0.48627993,0.81537473,0.5012817,0.7869741,0.51903933,0.7554906,0.5385487,0.7243439,0.55900896,0.69636685,0.57989836,0.6733091,0.6009238,0.65583247,0.62195396,0.64383554,0.64296925,0.6368285,0.6640307,0.6342031,0.6852634,0.63538516,0.70525265,0.6480848,0.72621167,0.6614141,0.74537885,0.6854078,0.76373285,0.711707,0.7813455,0.740749,0.7982007,0.7729805,0.8141408,0.80869985,0.8390485,0.81876814,0.8563691,0.8570472,0.87344575,0.8977688,0.8906005,0.93900806,0.91166055,0.97784233,0.39218953,0.9887889,0.41513118,0.9639717,0.43782797,0.9535426,0.42170912,0.9487616,0.39644063,0.9475143,0.38541633,0.94125473,0.35929933,0.93667597,0.3379774,0.92855734,0.32711762,0.91797066,0.32692078,0.90711176,0.3358282,0.89803106,0.3529887,0.89237005,0.37924898,0.89138454,0.41821846,0.8955956,0.39217645,0.8772111,0.38666058,0.86007035,0.39085844,0.8478061,0.399801,0.84088033,0.4110375,0.8388431,0.42309025,0.8407806,0.43481216,0.845293,0.44517878,0.850348,0.45347035,0.85315126,0.45991012,0.8501702,0.46631438,0.8375226,0.47544777,0.81461984,0.48859665,0.7851973,0.50506395,0.7525851,0.5235109,0.72022414,0.5431198,0.6909966,0.56332517,0.6666934,0.5837831,0.6480083,0.6043106,0.6348628,0.6248363,0.62678146,0.6453684,0.6231655,0.6659757,0.62345016,0.7062868,0.6428124,0.6862445,0.63009834,0.6988822,0.638392,0.7136214,0.64779013,0.7272867,0.6561503,0.7476692,0.674718,0.76678735,0.69814354,0.78538483,0.72385126,0.8035814,0.7522607,0.82145596,0.7838025,0.84576315,0.7936225,0.8654698,0.8276179,0.8862665,0.86477834,0.90978247,0.90417236,0.94210213,0.9436338,1.0264338,0.97827274,1.3921895,0.9887889,0.31493366,0.9793565,0.38727874,0.9582309,0.41715363,0.9498284,0.40671846,0.9441058,0.37875545,0.93451345,0.35751817,0.92852855,0.34093523,0.91942304,0.33330008,0.9083894,0.3347238,0.89751035,0.34404323,0.8887624,0.3606514,0.88383436,0.3853587,0.88419586,0.37766474,0.867553,0.38125846,0.8548381,0.39022455,0.8471396,0.40181875,0.84416896,0.41442657,0.84511036,0.42680007,0.8486474,0.43777335,0.85282993,0.4463841,0.854929,0.45251447,0.8514101,0.45770302,0.83826727,0.46492797,0.8147051,0.47594076,0.7843675,0.49074027,0.75068635,0.5082169,0.7171854,0.52706647,0.68674487,0.54667574,0.6611988,0.5666521,0.64128107,0.5867671,0.6269445,0.60690635,0.61773384,0.6270344,0.6130624,0.64717436,0.6123721,0.6668945,0.6181439,0.68015194,0.6265532,0.7487682,0.6694561,0.7328934,0.6599232,0.7690787,0.68743527,0.7883855,0.71023977,0.8074765,0.73527294,0.82653385,0.76293087,0.85036373,0.7725821,0.87127036,0.80221736,0.89352906,0.834962,0.9184716,0.8705879,0.94956636,0.907939,0.9985589,0.94407314,0.026433773,0.97827274,0.11491622,0.97053033,0.2958619,0.9678474,0.37010702,0.9511139,0.40186787,0.94487584,0.39617965,0.9386358,0.37534764,0.9275224,0.35819343,0.92039794,0.34536076,0.91048735,0.34028298,0.8990871,0.34304512,0.88821,0.3527389,0.879789,0.3688858,0.8755649,0.37151074,0.86269295,0.3805675,0.85418844,0.3925998,0.8502346,0.4058316,0.8501205,0.41890544,0.8526197,0.430511,0.85587525,0.4394482,0.85724205,0.4452711,0.85320973,0.44926432,0.8396696,0.45465004,0.8156015,0.4636613,0.784511,0.47646487,0.74984556,0.49254972,0.7152457,0.5107373,0.68364495,0.52984345,0.6568706,0.54942596,0.6357035,0.5692148,0.6201373,0.58905864,0.609745,0.6088872,0.60395694,0.6286869,0.60222363,0.64802295,0.6070425,0.7701822,0.6821668,0.790634,0.69949627,0.8103573,0.721594,0.83018035,0.74583316,0.85364264,0.75536454,0.8751962,0.7810101,0.8980683,0.8093376,0.92323625,0.8404869,0.952746,0.8740634,0.9915726,0.90852255,1.05346,0.93989,1.1149162,0.97053033,0.16513234,0.9590151,0.29240876,0.9563091,0.36043158,0.9433111,0.39136127,0.9391151,0.3893161,0.93265224,0.38535893,0.92636824,0.374367,0.9204331,0.36063474,0.9123644,0.35086533,0.90177846,0.34790677,0.89006907,0.35183167,0.8792081,0.36189374,0.87110364,0.37075537,0.86206335,0.38333675,0.8570676,0.39728522,0.85582817,0.4111228,0.8572171,0.42339352,0.85948277,0.43266425,0.860083,0.43817407,0.85555625,0.44097412,0.84171045,0.44455874,0.81728226,0.4516632,0.7855976,0.4626237,0.75009304,0.47694254,0.71445584,0.49400836,0.68171954,0.51271296,0.65374905,0.53199667,0.6313277,0.55154836,0.6144996,0.57118464,0.6028767,0.59080684,0.59591264,0.610373,0.59307116,0.6294585,0.5968684,0.7917212,0.6942122,0.81251436,0.7108003,0.83286643,0.73207265,0.8560507,0.7415155,0.87797695,0.76367676,0.9011099,0.7879904,0.92616934,0.8147148,0.9544468,0.84386605,0.9885062,0.87481695,1.0338374,0.9055768,0.05346004,0.93989,0.100034334,0.93190485,0.19627929,0.94661635,0.29458693,0.9450191,0.35574204,0.93520683,0.3847032,0.93286055,0.38367328,0.9199327,0.37522697,0.91334563,0.36440298,0.9044793,0.357216,0.8933134,0.35608485,0.8813364,0.3610665,0.8704971,0.37396955,0.8647038,0.38876194,0.8622587,0.4034485,0.86245394,0.41642702,0.8636571,0.4260396,0.8634492,0.4312241,0.85844177,0.43281558,0.8443762,0.4346095,0.819725,0.43986857,0.78759646,0.4491019,0.7513969,0.46181664,0.7148463,0.47734475,0.6810195,0.49515685,0.6518635,0.51424724,0.6282011,0.5336594,0.6100901,0.55317956,0.5971923,0.57268536,0.58899516,0.59211355,0.58498126,0.6110613,0.5876897,0.81356263,0.7054922,0.8348782,0.7212171,0.8578576,0.7305921,0.8800171,0.74974215,0.9032569,0.7705618,0.9281244,0.79328305,0.9554879,0.81806964,0.98683864,0.84478027,1.0248688,0.87253857,0.033837393,0.9055768,0.07300999,0.8993634,0.13690197,0.9217466,0.21894269,0.93413955,0.29938918,0.9340378,0.35440096,0.9270148,0.38102838,0.9263291,0.37964952,0.9196688,0.38377303,0.9134499,0.3775202,0.90632856,0.36921534,0.896777,0.36427325,0.8851025,0.36477625,0.8728849,0.38022694,0.86944634,0.3958788,0.8683523,0.40962246,0.8684095,0.4195873,0.86734414,0.42442712,0.86186403,0.4247773,0.847659,0.42476547,0.8229133,0.42821237,0.79048055,0.4358042,0.75372213,0.44704452,0.7163828,0.46119925,0.68157226,0.4776672,0.6512666,0.49604854,0.6263607,0.51543033,0.60696286,0.53493464,0.5927556,0.5544181,0.58327216,0.5738008,0.5780228,0.5927124,0.5795744,0.83586216,0.71587825,0.8587496,0.72521824,0.8509574,0.7224513,0.8815555,0.73875195,0.90483725,0.7565568,0.9295098,0.7757992,0.95619196,0.7966372,0.9858302,0.8191196,1.0199265,0.84293956,0.02486888,0.87253857,0.059622433,0.8673206,0.10715737,0.89087033,0.16661823,0.9104626,0.2373172,0.9218404,0.3056345,0.9233786,0.35538062,0.91885895,0.38005525,0.9129822,0.3852998,0.9069942,0.3809645,0.89943004,0.37488973,0.88927937,0.3719572,0.8771483,0.38840914,0.87494206,0.40299523,0.8737579,0.41332626,0.87177664,0.41779447,0.86582685,0.4168526,0.8515581,0.41499436,0.82683915,0.41663688,0.7942294,0.42264852,0.75703585,0.43251872,0.7190251,0.44543692,0.6833395,0.46072403,0.65198004,0.47791523,0.62586206,0.4967314,0.6051624,0.51633227,0.5896268,0.53589654,0.5788117,0.55533046,0.57226664,0.57430446,0.572593,0.5806862,0.5751324,0.8823259,0.7333421,0.90604275,0.7455097,0.93054414,0.76175183,0.9567114,0.7791567,0.9851895,0.79779315,1.0168972,0.8175882,0.019926544,0.84293956,0.051995054,0.8383633,0.091144696,0.85988915,0.13684571,0.88088614,0.1914251,0.8986503,0.25328317,0.90981245,0.31277946,0.9130437,0.35803553,0.9108157,0.38187522,0.9063418,0.3853666,0.8926833,0.3813109,0.8819996,0.3965664,0.87972665,0.4072824,0.87676144,0.41134304,0.8703399,0.4090374,0.8560802,0.40526468,0.83150244,0.40508693,0.7988312,0.40956053,0.76131135,0.4181458,0.7227336,0.42994305,0.68627465,0.44418857,0.65395904,0.4603501,0.6267194,0.47809577,0.60474795,0.49724278,0.5878577,0.5170032,0.57567924,0.5365943,0.5677846,0.5557335,0.56681806,0.9066614,0.740067,0.93135613,0.75066704,0.95712936,0.7651085,0.984782,0.7803902,1.0149192,0.7964852,0.016897207,0.8175882,0.047232747,0.8134569,0.08165236,0.8316454,0.119614705,0.8508656,0.162927,0.86996955,0.2128937,0.886643,0.2677995,0.89809495,0.32055247,0.9030342,0.3619541,0.902935,0.38799378,0.9006196,0.39059573,0.8861113,0.40149003,0.88231957,0.405096,0.87541884,0.40132946,0.86123973,0.39554268,0.83691293,0.39350528,0.8042842,0.3964675,0.7665311,0.4038403,0.7274749,0.41461718,0.6903317,0.427942,0.6571514,0.4432129,0.6288817,0.46004528,0.6057267,0.47821447,0.58751154,0.49760878,0.57393295,0.5174751,0.5646463,0.53689134,0.562323,0.9317945,0.74519926,0.957498,0.75401497,0.9845407,0.766394,1.013584,0.7792426,0.014919193,0.7964852,0.044077605,0.7926729,0.0755923,0.8072423,0.10899066,0.82331103,0.14542976,0.84072816,0.18621483,0.8584995,0.23207133,0.874634,0.28141317,0.8867072,0.32881305,0.89335155,0.36687225,0.8952512,0.38484624,0.8997997,0.39166975,0.89436543,0.39619797,0.88825935,0.3990839,0.88108635,0.39372665,0.86705947,0.38578755,0.84309053,0.3818256,0.81059724,0.3832911,0.7726876,0.38951737,0.7332237,0.39936692,0.69546926,0.4118799,0.6615041,0.42638278,0.6322902,0.44243932,0.6080407,0.4597846,0.5885885,0.47827378,0.57363963,0.49784428,0.5629152,0.517661,0.5591796,0.95773196,0.7485343,0.98443437,0.7553292,1.0126793,0.76535827,0.013583962,0.7792426,0.041911528,0.77566093,0.07151661,0.7868226,0.10204855,0.7994094,0.1342486,0.81377685,0.16904315,0.82983214,0.20738511,0.8467329,0.24966499,0.8627413,0.29447073,0.8756609,0.33749363,0.8839969,0.37262014,0.88778764,0.3887829,0.89339364,0.3935574,0.88715017,0.3862258,0.87357,0.37594557,0.85006446,0.36996502,0.81778944,0.3699401,0.7797839,0.37508556,0.7399648,0.38410035,0.701655,0.39590597,0.6669692,0.4097533,0.6368858,0.42515612,0.6116251,0.44181302,0.59102404,0.4595481,0.5747935,0.47827193,0.56266135,0.49791428,0.5574539,0.9844475,0.7498523,1.0120913,0.754366,0.012679288,0.76535827,0.04040461,0.7619415,0.068682,0.7700768,0.09730675,0.7793591,0.12677671,0.79033196,0.157722,0.80336666,0.19088633,0.81844,0.22697358,0.83484685,0.2661691,0.8510408,0.3072128,0.864963,0.34657004,0.8749697,0.37909222,0.8805585,0.36594155,0.85787374,0.35781342,0.82588905,0.35629985,0.7878324,0.36043766,0.7476926,0.36871812,0.70886517,0.37992433,0.67350674,0.39322582,0.64261484,0.40808836,0.61641574,0.42417774,0.59474844,0.44129202,0.5773245,0.45931786,0.5638739,0.47822618,0.5572177,1.0118781,0.74891305,0.012091312,0.754366,0.039374005,0.7510617,0.066680394,0.75655043,0.09396876,0.7628867,0.12159474,0.7706259,0.1499984,0.78030735,0.17971405,0.7923323,0.21134238,0.80674815,0.24540478,0.82296616,0.28194672,0.83958226,0.31982148,0.8546145,0.35604528,0.8662657,0.3452177,0.83493066,0.34221873,0.79685146,0.34543976,0.7564095,0.35310435,0.71708536,0.36383125,0.6810857,0.37670234,0.6494307,0.39113623,0.62235343,0.40677088,0.5996927,0.42338383,0.58115804,0.44084308,0.56647766,0.45916143,0.5584576,0.038949825,0.74565303,0.011878163,0.74891305,0.065279506,0.7458066,0.091583654,0.7495613,0.117904484,0.75441223,0.14456408,0.7609001,0.17194904,0.7695738,0.20051385,0.7808706,0.23074467,0.79490334,0.26302075,0.81117857,0.297279,0.8283949,0.33244658,0.8446093,0.3274891,0.80685806,0.3299171,0.76611924,0.3371149,0.7263069,0.34750617,0.6896833,0.36007702,0.6572958,0.37420067,0.62938637,0.38949227,0.6057932,0.40571544,0.58622134,0.42272595,0.5703943,0.44058126,0.56109554,0.06467549,0.7404542,0.08988872,0.7389613,0.11524006,0.74127966,0.14065154,0.7449149,0.16641219,0.75040734,0.19286257,0.7583235,0.22038995,0.7691361,0.24938446,0.783015,0.280106,0.79954195,0.31239474,0.81749,0.3136345,0.7768167,0.32056415,0.73651916,0.33080024,0.6992809,0.3432268,0.6661801,0.35717458,0.6374714,0.37224227,0.6129938,0.3881865,0.59244704,0.40485847,0.57554764,0.4223642,0.5650509,0.08913848,0.73367083,0.08017004,0.7366258,0.11332389,0.7308196,0.1377995,0.73195505,0.16238475,0.7346108,0.1873399,0.7393344,0.21296592,0.7467115,0.23959143,0.75724775,0.267521,0.77115947,0.29690525,0.788087,0.30320722,0.74769664,0.3135238,0.7098559,0.3260008,0.67605686,0.3399338,0.6465724,0.35491312,0.6212466,0.37069708,0.5997754,0.38714027,0.58186734,0.4044022,0.57024604,0.40961248,0.5688294,0.11246015,0.72559136,0.098680764,0.7308176,0.13572738,0.72162265,0.15942307,0.72179586,0.18328445,0.72368056,0.20754774,0.72783405,0.23247899,0.73486066,0.25835213,0.7452922,0.2853895,0.75938225,0.29543024,0.7213663,0.30820847,0.6868943,0.32232687,0.65665656,0.33738023,0.6305108,0.35313922,0.60815483,0.36947125,0.5892908,0.38659492,0.5766092,0.3927493,0.57451755,0.13478012,0.7164521,0.15725167,0.71157235,0.18027772,0.7109777,0.20353399,0.7122745,0.22723591,0.71603036,0.2516163,0.7228629,0.27689412,0.73332447,0.28960526,0.6986381,0.3041635,0.6676845,0.3194921,0.6407485,0.33538812,0.6175407,0.3517433,0.59776354,0.36884215,0.58407605,0.37168598,0.582951,0.1562472,0.7064521,0.1780549,0.70084,0.20053542,0.69964814,0.22332026,0.70051616,0.24660541,0.70401764,0.27058896,0.7107793,0.2852023,0.6795939,0.3010594,0.65191513,0.31729254,0.62789124,0.3338318,0.60723776,0.3510358,0.5925907,0.17701605,0.69576037,0.19830155,0.689571,0.22037406,0.6879299,0.24283487,0.6885014,0.26585928,0.691861,0.28184387,0.66394293,0.29866412,0.63915807,0.31558552,0.617669,0.33305123,0.60210407,0.19724774,0.6845213,0.21816325,0.67788684,0.23997873,0.6759193,0.26227534,0.67629755,0.27926758,0.65126973,0.2968174,0.6290062,0.31473756,0.6125701,0.21711113,0.6728552,0.23782064,0.6658836,0.259543,0.6636854,0.2772944,0.64117557,0.29590812,0.6239368,0.23678486,0.6608582,0.25746438,0.6536318,0.27633125,0.6361291,0.28411052,0.63154346,0.25645843,0.648601,0.28084067,0.5308361,0.28442207,0.5540372,0.2832643,0.5503845,0.26102975,0.5466217,0.2605154,0.5433772,0.26725322,0.5437695,0.28068075,0.54653955,0.27262822,0.54297394,0.27711838,0.5439829,0.27146593,0.54011965,0.26646346,0.5410662,0.26535395,0.5372009,0.25996348,0.53986305,0.26060438,0.5439303,0.27557966,0.5408443,0.26993284,0.53626305,0.2644454,0.53391933,0.25942308,0.53642374,0.2547644,0.54378134,0.25496125,0.54821455,0.27877527,0.5429876,0.27366364,0.5368265,0.25509,0.5513293,0.25056225,0.5531041,0.25042632,0.55676526,0.25457257,0.54005384,0.2507185,0.5481977,0.25684804,0.5200089,0.2772783,0.50741625,0.28102255,0.54629743,0.27652007,0.53865725,0.26869363,0.53298557,0.24736984,0.55835706,0.24700399,0.5626772,0.26366824,0.5309537,0.25893906,0.53333664,0.25436485,0.536734,0.25080138,0.54409856,0.23638749,0.5327342,0.24010435,0.55607563,0.2534229,0.4979729,0.2739317,0.48533878,0.2971678,0.4955116,0.3005778,0.5190105,0.28481424,0.55526423,0.28228816,0.5505249,0.27848148,0.5415204,0.27212945,0.5334191,0.2477972,0.55288523,0.2453433,0.5637329,0.24479371,0.5688057,0.25080884,0.5404745,0.24808721,0.5483457,0.21641162,0.5450399,0.220123,0.56838953,0.23293674,0.5107171,0.25021002,0.47731718,0.2707748,0.46464998,0.2939466,0.47336644,0.31672168,0.48437032,0.3199365,0.5079783,0.28482038,0.5553451,0.30419612,0.54371434,0.27952895,0.54518557,0.2747296,0.53500307,0.26765367,0.5300123,0.2459609,0.55762225,0.24444257,0.56899136,0.2437728,0.5748808,0.26297298,0.5281055,0.25847903,0.5303978,0.2541245,0.53360265,0.25073662,0.5370832,0.24825338,0.5443606,0.19671574,0.5568478,0.2003697,0.5802475,0.21298614,0.52301,0.2438864,0.57918316,0.24394189,0.5807047,0.2241585,0.59290445,0.24392302,0.5806315,0.22971812,0.4900734,0.24717858,0.45800728,0.26778007,0.4453143,0.29089165,0.45261943,0.3136689,0.46212807,0.33611384,0.47406134,0.33909285,0.49780664,0.32332954,0.5328048,0.27964172,0.5494289,0.28253302,0.55542386,0.27737302,0.5407532,0.2764804,0.537519,0.27085674,0.53032714,0.24639173,0.55259097,0.24516483,0.5621931,0.24463055,0.5738898,0.24830164,0.5406574,0.24666178,0.5482047,0.17712007,0.56807894,0.18066505,0.5915712,0.19336268,0.5347674,0.20436756,0.6048109,0.2098086,0.5023494,0.22669761,0.47076944,0.24429739,0.4399497,0.26491874,0.42723694,0.2879784,0.43323353,0.3107587,0.44129434,0.33327094,0.45169398,0.3554902,0.46465743,0.3581934,0.48856354,0.34222123,0.5227837,0.32691288,0.55858445,0.30803847,0.5693563,0.28525224,0.560892,0.28500697,0.55777645,0.28171116,0.5607481,0.27879477,0.5540322,0.27739894,0.544501,0.27325696,0.5316978,0.2667468,0.52713996,0.24566789,0.5566398,0.24536334,0.5663869,0.26232243,0.52521646,0.25801757,0.52744573,0.25383693,0.5304878,0.25057864,0.53373635,0.24823241,0.53702587,0.24678467,0.5441542,0.15746802,0.578646,0.16085085,0.6022709,0.17388543,0.5459095,0.18456773,0.61623037,0.190269,0.5140558,0.22855544,0.6183106,0.20875308,0.63026315,0.20684215,0.4830249,0.22384167,0.45271245,0.24153483,0.42301178,0.2621612,0.41028455,0.28518066,0.4151127,0.30796948,0.42183053,0.33054745,0.4307461,0.35289836,0.44214126,0.37497395,0.45623967,0.37736148,0.48032382,0.36101893,0.5137139,0.3455085,0.54872787,0.28870344,0.5809824,0.33069336,0.58493364,0.3121147,0.59555167,0.2845097,0.5670024,0.27562252,0.53680044,0.27484608,0.5339214,0.2697624,0.52733344,0.24598628,0.5518315,0.2458655,0.5603067,0.24651198,0.5699947,0.24587287,0.57817966,0.2467656,0.54020303,0.2461383,0.5474165,0.13762237,0.5884497,0.14078718,0.6122429,0.15439835,0.5563518,0.16459802,0.62707055,0.1709165,0.5251127,0.18887796,0.6417802,0.18739532,0.49468008,0.24846719,0.60599756,0.24450842,0.58290595,0.23334797,0.6442155,0.21356831,0.65620965,0.20405121,0.46494386,0.24523284,0.58573097,0.22111706,0.43577006,0.23885874,0.4070374,0.25947642,0.39430043,0.28247073,0.39812246,0.3052774,0.40363914,0.32792428,0.4111775,0.35040364,0.42105567,0.3726747,0.43355712,0.39467233,0.4488989,0.3967043,0.47317094,0.37984616,0.5056637,0.36397415,0.53984386,0.3489589,0.57525575,0.29303798,0.607053,0.33160812,0.5911554,0.3131053,0.6017346,0.28249726,0.5732831,0.27976942,0.56624717,0.27695668,0.5587811,0.2765465,0.5485669,0.27558616,0.5401475,0.27200213,0.52850217,0.2659241,0.52420634,0.24617442,0.5550767,0.24693468,0.5634127,0.24856842,0.57280666,0.24813667,0.5816037,0.26168665,0.52215177,0.2575332,0.5243434,0.25348815,0.52724445,0.2503267,0.53027636,0.24804185,0.5332919,0.24660368,0.5361572,0.24613205,0.5431288,0.11745992,0.59737873,0.12034744,0.6213684,0.13476606,0.56599957,0.14431398,0.63722235,0.15159522,0.5354377,0.16876456,0.65276706,0.16817215,0.5056548,0.19364603,0.66782385,0.18470447,0.47654706,0.2531708,0.6319149,0.23453523,0.65032053,0.21476747,0.6623233,0.20140132,0.44797403,0.21849065,0.41978645,0.2362358,0.39185742,0.25683174,0.3791152,0.27981913,0.3821052,0.30265677,0.3865845,0.32538012,0.39288944,0.34798947,0.40135935,0.37045163,0.41231623,0.39270738,0.42603946,0.41468355,0.44273582,0.4163205,0.4671979,0.39881054,0.49870917,0.38243398,0.5319937,0.3670617,0.56656915,0.34979033,0.5815218,0.26868653,0.59338224,0.27323523,0.6193589,0.294096,0.6132039,0.33240685,0.59656125,0.31397384,0.6071064,0.2791308,0.57940376,0.2766484,0.57165974,0.27414623,0.533023,0.27346212,0.5304592,0.26878604,0.5242654,0.24630974,0.5502993,0.24717401,0.55778533,0.2488286,0.5657821,0.24596801,0.5387523,0.24627966,0.5456769,0.096865796,0.60530823,0.09941318,0.62951463,0.114867635,0.57474774,0.12358401,0.64656025,0.13217063,0.5449412,0.14826205,0.66310966,0.14901634,0.51586974,0.1734087,0.6789615,0.16561422,0.4874424,0.19483986,0.6739598,0.18216124,0.4595243,0.25433013,0.63802445,0.23558848,0.6556203,0.2158342,0.6676299,0.19885871,0.43195936,0.21592884,0.40459266,0.27719393,0.36689085,0.3000797,0.37050796,0.32289118,0.37574476,0.3456367,0.382952,0.3682904,0.39247465,0.3907993,0.40463254,0.41309428,0.41969675,0.43510398,0.43786138,0.43630776,0.46250686,0.41801113,0.49293524,0.4009957,0.525246,0.38512635,0.5589279,0.36780256,0.5728833,0.35051233,0.5869665,0.2743351,0.5850015,0.26805872,0.589679,0.27435085,0.6254848,0.29502687,0.61854696,0.27228573,0.5767082,0.27408886,0.5634598,0.2747981,0.5527632,0.27473456,0.54378605,0.27406055,0.53602225,0.27089337,0.5252274,0.2651475,0.52107257,0.247246,0.5526679,0.24893618,0.5598079,0.24768347,0.58987945,0.25149238,0.57460934,0.25138766,0.5838934,0.25150448,0.5672394,0.2610402,0.51878744,0.25700653,0.52096593,0.25306404,0.5237418,0.2499705,0.526562,0.24772243,0.5293007,0.24629298,0.5318455,0.24564065,0.53409773,0.24608429,0.5409702,0.07572738,0.61209863,0.07786923,0.6365315,0.0945903,0.5824793,0.10228454,0.6549422,0.11252327,0.5535236,0.12723115,0.67267513,0.12979372,0.5252393,0.15269615,0.68950385,0.14662321,0.49755302,0.17457792,0.6851333,0.16320711,0.47034195,0.19590488,0.67928565,0.1797317,0.4434553,0.25535572,0.64332926,0.23649254,0.66008055,0.21675241,0.6720953,0.19638988,0.41673073,0.25419182,0.3645532,0.27456015,0.35230336,0.2975155,0.35523832,0.3204315,0.3595835,0.34332377,0.36569497,0.36617425,0.3739307,0.38893613,0.38463497,0.41154456,0.3981207,0.43393055,0.4146486,0.45603433,0.43439853,0.45676905,0.45921034,0.4375466,0.48843533,0.41975898,0.5196778,0.40326077,0.55239296,0.38576958,0.5652924,0.36844134,0.5783705,0.27533507,0.6308052,0.3147099,0.6116287,0.29581925,0.6230461,0.35111356,0.59154844,0.33307895,0.60111123,0.27014577,0.56784683,0.27285215,0.5291854,0.27224597,0.52692246,0.26788136,0.52097523,0.24715596,0.5477315,0.24889793,0.55439466,0.25141773,0.5609969,0.2512503,0.59271616,0.24571733,0.53597057,0.24690154,0.5427134,0.053929713,0.6175908,0.05559948,0.6422465,0.07382319,0.5890638,0.08029626,0.66220623,0.09254195,0.56107485,0.10554082,0.68131095,0.11038585,0.5336695,0.13135824,0.6993099,0.12759754,0.5067977,0.15381883,0.69572353,0.1443807,0.480353,0.17562419,0.6904902,0.16091731,0.45419607,0.19682422,0.6837668,0.17738278,0.42816988,0.2562338,0.64779454,0.23722996,0.66365343,0.21750337,0.6756718,0.19396052,0.402112,0.21339664,0.3900131,0.25153956,0.3505564,0.27189958,0.338285,0.29492962,0.3405989,0.31797156,0.34423313,0.34102663,0.34942675,0.36408395,0.35654423,0.3871033,0.36594373,0.41002464,0.3779639,0.43278143,0.39290914,0.45531452,0.41102841,0.4775839,0.43248555,0.4778173,0.4574335,0.4575219,0.4853121,0.43882337,0.51537395,0.42156497,0.5470337,0.4037994,0.55880845,0.38631916,0.57082415,0.36896574,0.58298796,0.27617553,0.63528466,0.26507655,0.5717088,0.26662222,0.5810919,0.26850057,0.56081384,0.27212787,0.5569067,0.273059,0.5475498,0.273209,0.53929764,0.27272278,0.5318612,0.26987633,0.5217127,0.26438552,0.51761067,0.24871258,0.54918385,0.25122288,0.5553541,0.25558668,0.58476746,0.25588894,0.59387547,0.25524482,0.5751819,0.25492454,0.5676046,0.2545825,0.56120193,0.26035994,0.51500195,0.25641868,0.5171917,0.25254932,0.51985306,0.24949726,0.522458,0.2472628,0.5249047,0.24582277,0.5271057,0.24513909,0.5289862,0.24516669,0.5304822,0.2464742,0.5373861,0.031353828,0.621599,0.032486368,0.6464563,0.052452013,0.594354,0.057500817,0.66816515,0.07211672,0.5674729,0.08306495,0.6888426,0.09068237,0.54105645,0.10925244,0.70821667,0.10841916,0.51508737,0.13240923,0.705588,0.12554795,0.48948023,0.15482672,0.7011225,0.14225616,0.4641109,0.17653003,0.69499767,0.15871255,0.43883377,0.19757828,0.6873558,0.1750812,0.41349146,0.2606854,0.5839333,0.26152748,0.592984,0.25694802,0.6513724,0.2377812,0.6662804,0.2180666,0.6783009,0.19155702,0.388043,0.21087924,0.37598848,0.248857,0.33706278,0.26919326,0.32477367,0.29230285,0.3265316,0.315478,0.32951587,0.3387175,0.33397344,0.36199743,0.3401519,0.38528413,0.34841704,0.4085224,0.35912243,0.43164885,0.3725989,0.45460528,0.38914144,0.47735095,0.40898734,0.49987075,0.4322783,0.49957675,0.45731413,0.47805303,0.48367715,0.45829514,0.51242715,0.4401389,0.54292685,0.4219921,0.5534987,0.4042543,0.5643853,0.3867616,0.5754797,0.29645962,0.6266514,0.27685726,0.63887495,0.3153005,0.6152502,0.33361155,0.60475177,0.3515808,0.5952121,0.36936137,0.5866788,0.25978646,0.57429487,0.26387084,0.5642959,0.271672,0.5250905,0.27113584,0.5231336,0.26701087,0.51732665,0.24837291,0.5438911,0.25090814,0.54992753,0.25418675,0.5554187,0.24585961,0.5315369,0.24786653,0.5382717,0.0078799045,0.62390226,0.00841594,0.64891654,0.03035637,0.5981799,0.0337821,0.67259604,0.05113362,0.572581,0.059681498,0.6950657,0.070574135,0.54728574,0.08624256,0.71603495,0.08897837,0.5223242,0.11020322,0.7145611,0.10659112,0.49763936,0.13335608,0.7110389,0.123613864,0.47312647,0.15570211,0.70566607,0.14021859,0.44865438,0.17727531,0.6986078,0.15656093,0.42407703,0.19814578,0.68999374,0.17281443,0.39935857,0.2574802,0.6540035,0.23812568,0.667892,0.21842037,0.6799133,0.18916433,0.37445992,0.20836078,0.36245582,0.24238424,0.36848104,0.23858717,0.37331423,0.24072623,0.3869164,0.24436378,0.38261136,0.24506342,0.36310458,0.24479522,0.36359382,0.24707226,0.3484877,0.24741484,0.35291237,0.24369937,0.34001645,0.2456605,0.34322515,0.2437111,0.34003577,0.24702439,0.34788725,0.24583311,0.34381428,0.24611628,0.32396424,0.26641288,0.31166115,0.2896152,0.31297433,0.3129304,0.31537315,0.33636442,0.31915554,0.3598892,0.32457814,0.383459,0.3318898,0.40702388,0.34145242,0.43052354,0.3536124,0.45390135,0.36869323,0.47711614,0.38698173,0.5001509,0.4086993,0.52220345,0.43386734,0.52138436,0.4589253,0.49926952,0.48365054,0.4782929,0.51093626,0.45908988,0.540155,0.44044784,0.54943776,0.4223473,0.55911946,0.40461105,0.56908,0.38708153,0.57920134,0.25905597,0.5666899,0.2628585,0.558015,0.2671558,0.55482066,0.27054223,0.55127984,0.2715894,0.54270095,0.2718667,0.53480667,0.27149978,0.5274453,0.26890767,0.5178099,0.26361054,0.5136945,0.25045884,0.5444148,0.25371072,0.5498542,0.2584025,0.5602648,0.25776532,0.5544535,0.25962332,0.5106684,0.25575018,0.51289463,0.25192684,0.5154484,0.24889112,0.51782584,0.24664767,0.51995385,0.24517758,0.52177346,0.2444469,0.52323765,0.2444144,0.5243083,0.24503765,0.52495253,0.24717589,0.5320973,0.98425883,0.62426865,1.0078799,0.62390226,1.0084159,0.64891654,0.98417413,0.6493688,0.0074118683,0.6003418,0.009033367,0.675228,0.02947106,0.5762432,0.035275325,0.6997354,0.049947146,0.55223,0.06219959,0.7225414,0.06916643,0.5284003,0.08706139,0.7224498,0.087400824,0.50473785,0.11106316,0.720071,0.10487278,0.48116288,0.13418137,0.7156269,0.12176611,0.45756224,0.15642478,0.70930547,0.13823786,0.43380386,0.17783816,0.7012614,0.15445113,0.40986323,0.19850412,0.6916115,0.17056847,0.3857067,0.27736357,0.64151615,0.257811,0.6556186,0.23824276,0.6684114,0.21854328,0.6804322,0.18675657,0.36125454,0.20581447,0.34930706,0.21475169,0.37312943,0.21481389,0.37332895,0.21326186,0.35913163,0.21293348,0.36313796,0.21342844,0.36894155,0.2128832,0.36378744,0.21337025,0.36839536,0.21998663,0.37879434,0.2238447,0.38008788,0.22036582,0.37888786,0.22329144,0.39268056,0.22683536,0.3935647,0.23601411,0.39058957,0.23823626,0.4033742,0.2427469,0.39994267,0.24695916,0.37789303,0.24507049,0.36309147,0.24668393,0.35825655,0.2467596,0.35802677,0.24854745,0.37298694,0.24336842,0.33936894,0.24050498,0.33645353,0.24011156,0.3360513,0.23652075,0.33464506,0.23606405,0.3344656,0.23189057,0.33492056,0.23132378,0.33498496,0.22676668,0.3375469,0.2260172,0.33797893,0.22574833,0.3366819,0.2433049,0.31124017,0.26354527,0.29892683,0.2868381,0.29981846,0.31030783,0.3017424,0.33394605,0.30491367,0.3577293,0.30964148,0.38160512,0.31618446,0.40551245,0.32478705,0.42939454,0.33580473,0.4531964,0.3495777,0.47687674,0.36642405,0.5004171,0.3866209,0.52299404,0.41027147,0.54388225,0.4371247,0.5425683,0.46215233,0.5205359,0.4852878,0.49895003,0.51100403,0.47853804,0.5388054,0.4592741,0.54670674,0.44069898,0.5550997,0.42261595,0.56385297,0.4048534,0.5728348,0.29693267,0.6293022,0.31573114,0.6179079,0.33399028,0.60741794,0.35189897,0.5978907,0.36961251,0.58937484,0.38726223,0.5819199,0.27055213,0.520559,0.2700828,0.51892996,0.26614237,0.5131851,0.24985704,0.5385564,0.25312966,0.5441932,0.25709933,0.5488481,0.24627794,0.52513933,0.24908094,0.53211087,0.9612714,0.62275404,0.9605829,0.6478753,0.9843396,0.60063183,1.0074118,0.6003418,1.0090333,0.675228,0.98408276,0.67577493,0.0070009674,0.57827926,0.009748753,0.7025531,0.02867885,0.5557458,0.037008405,0.7274667,0.048869386,0.53319687,0.06285254,0.7290262,0.06786866,0.51067406,0.0878054,0.7280229,0.08592383,0.48813275,0.11181563,0.72471005,0.10323747,0.46548182,0.13486521,0.71930283,0.11997677,0.4426062,0.15697269,0.7119812,0.136304,0.41949537,0.17819567,0.70288885,0.1523702,0.39612684,0.19863127,0.69213176,0.16831832,0.37242705,0.27767655,0.64313835,0.25792104,0.65614027,0.23811339,0.6677559,0.21841542,0.679775,0.18432252,0.3484062,0.20322882,0.33652157,0.22840483,0.3796899,0.23108542,0.39294198,0.24624754,0.39604023,0.24876243,0.39185864,0.24736811,0.3536262,0.24916418,0.36812392,0.24884494,0.36353904,0.22303322,0.3239392,0.24042776,0.29894683,0.26059496,0.2866271,0.28395766,0.28704333,0.3075818,0.2885143,0.3314407,0.2911845,0.3554956,0.29528138,0.3796952,0.3011174,0.40396863,0.30894667,0.42824894,0.3190069,0.45248294,0.33164793,0.4766297,0.3472073,0.5006694,0.36599833,0.52375805,0.3881818,0.5451517,0.41356263,0.56501603,0.44190377,0.56324357,0.46686676,0.5412077,0.48848665,0.5196582,0.51266855,0.49861997,0.53896457,0.47859144,0.54538965,0.4594175,0.55240494,0.44087872,0.55987006,0.4227819,0.56764185,0.4049642,0.57558,0.26194558,0.55231047,0.2659883,0.5493406,0.2691903,0.54609317,0.2702864,0.5378901,0.27063185,0.5300712,0.27033415,0.52257746,0.2679505,0.5133731,0.26279667,0.5091918,0.25241864,0.53816605,0.25636747,0.54312825,0.2610657,0.5467804,0.258807,0.5056479,0.25497973,0.5079375,0.25117663,0.51038665,0.2481325,0.51251644,0.24585703,0.51428705,0.24433647,0.5156731,0.24354173,0.51666003,0.24343613,0.5172397,0.24398153,0.5174068,0.24514315,0.5171558,0.24810395,0.52483666,0.9388444,0.61952144,0.9375846,0.64461535,0.96188617,0.59909934,0.95980203,0.674304,0.9844189,0.5785026,1.0070009,0.57827926,1.0097487,0.7025531,0.98398113,0.7032011,0.006638316,0.5576702,0.010582722,0.7304812,0.027963873,0.5365816,0.037461236,0.7340147,0.047880616,0.5153367,0.06344944,0.7346622,0.06665874,0.49393997,0.088459656,0.73271686,0.08452376,0.47233036,0.11244189,0.72842824,0.10165996,0.45041293,0.13538599,0.7220062,0.118237324,0.4281931,0.1573229,0.7136226,0.13440518,0.40566227,0.1783254,0.70341235,0.15029417,0.38275856,0.19850698,0.69147164,0.16605301,0.35949895,0.29722175,0.6309272,0.27777812,0.6436639,0.25779194,0.6554858,0.23772131,0.66584176,0.21802033,0.6778576,0.18186635,0.3359716,0.20060855,0.32415575,0.21682276,0.37874755,0.21720861,0.3833209,0.21701288,0.3766496,0.22048312,0.3905217,0.21997902,0.3787887,0.21691632,0.3765054,0.21844307,0.38732356,0.21488108,0.37353823,0.23354653,0.40568447,0.24032292,0.41569725,0.24466662,0.41245514,0.24804987,0.40885925,0.2503234,0.38759243,0.2474315,0.35315388,0.24762578,0.3594717,0.25096643,0.38343716,0.25072935,0.37958857,0.22026874,0.3116222,0.23751098,0.28721005,0.25758824,0.2748881,0.28097746,0.27470562,0.30473757,0.27566808,0.32882017,0.27785766,0.35316607,0.28143334,0.37770703,0.28662646,0.40236863,0.29374534,0.42707098,0.303037,0.451752,0.3147334,0.47637138,0.32918343,0.5009082,0.346724,0.52449846,0.36755365,0.5463811,0.39151037,0.5667265,0.41840804,0.58570945,0.44807196,0.58351827,0.4729498,0.561405,0.4931371,0.5397998,0.51583993,0.5187533,0.54065454,0.498537,0.54556954,0.47862402,0.5511169,0.45950913,0.557208,0.44097233,0.563692,0.42282805,0.57041615,0.31598616,0.6195288,0.33419964,0.6090344,0.3520522,0.5995068,0.3697023,0.5909972,0.3872858,0.5835555,0.404925,0.57723534,0.26944748,0.5154155,0.2690457,0.51415163,0.2652463,0.5084092,0.25155047,0.5315214,0.2555363,0.5370194,0.26016796,0.5411086,0.24689344,0.51647806,0.25049454,0.52400804,0.91690445,0.61471564,0.91511756,0.63974684,0.939966,0.5958922,0.9361542,0.67101175,0.9624424,0.5769561,0.95890594,0.70175153,0.98449886,0.55783594,1.0066383,0.5576702,1.0105827,0.7304812,0.9838649,0.73123455,0.006316605,0.5384072,0.010804051,0.7370777,0.027312692,0.5186037,0.03787929,0.7397079,0.046963573,0.49848023,0.063977666,0.73941135,0.06551691,0.4780173,0.089006975,0.73648083,0.08317865,0.45714554,0.112921305,0.731164,0.10013338,0.4358892,0.13572133,0.7236656,0.116537206,0.41425478,0.15745305,0.7141515,0.13251865,0.39219436,0.17820685,0.7027487,0.1482124,0.36973733,0.19811453,0.68954694,0.16377613,0.34697956,0.29731017,0.6314475,0.2776511,0.6430095,0.2574082,0.65357107,0.23705527,0.6625881,0.21734665,0.674599,0.17940983,0.32407838,0.1979772,0.3123363,0.21486084,0.3514731,0.22128615,0.363961,0.21880206,0.36882696,0.21458957,0.35210684,0.2134505,0.3574804,0.21733512,0.37383726,0.22065741,0.3943474,0.22086659,0.39822525,0.22954038,0.40646455,0.22624554,0.40590516,0.2504908,0.4050821,0.25201926,0.4012954,0.24965079,0.37624294,0.24554501,0.35616672,0.24264508,0.3538754,0.23897536,0.35285664,0.21747996,0.29985693,0.23460673,0.27621922,0.25457925,0.2638993,0.27792343,0.26293215,0.30177745,0.26326096,0.32606912,0.26491237,0.35071358,0.26798588,0.3756187,0.27264553,0.40069094,0.27911898,0.42584163,0.287707,0.4509927,0.29865012,0.4760973,0.31218004,0.5011339,0.3286486,0.5252191,0.34827858,0.54757595,0.3709233,0.5683814,0.39642432,0.5878186,0.4246614,0.6060617,0.4555073,0.6034943,0.48029035,0.58123934,0.49913383,0.55949897,0.52042544,0.5383466,0.5437966,0.518533,0.547265,0.49845666,0.5513152,0.47863004,0.55594647,0.45953754,0.5610602,0.44096416,0.56649643,0.42273635,0.5720962,0.26491302,0.54399085,0.26797503,0.5409899,0.26907468,0.53285265,0.26944512,0.52487564,0.2691779,0.51706576,0.26697162,0.50824857,0.26191798,0.5039573,0.2545725,0.53026533,0.2592092,0.5350226,0.26386663,0.5384676,0.2578855,0.4997822,0.2540831,0.5021645,0.25027472,0.5045087,0.24719693,0.5063621,0.24486534,0.5077239,0.24327217,0.5086087,0.24239415,0.50903976,0.24220003,0.50904423,0.24265671,0.5086493,0.24373414,0.50787914,0.24540913,0.5067526,0.24921495,0.51535964,0.89538,0.60846865,0.8931184,0.63341385,0.91849697,0.591143,0.9130928,0.6660713,0.9409763,0.5737738,0.9345135,0.6984183,0.9629528,0.5562796,0.957866,0.72980094,0.9845813,0.5385235,1.0063167,0.5384072,1.010804,0.7370777,0.98384035,0.737857,0.006029789,0.5203415,0.011014185,0.7428153,0.02671377,0.50164044,0.038253285,0.7445074,0.04610298,0.4824444,0.0644229,0.7432214,0.064424925,0.46271852,0.08942887,0.7392517,0.08188344,0.44250974,0.11323279,0.7328445,0.09864856,0.4218414,0.13584933,0.7242016,0.11485517,0.40068027,0.15734293,0.7134835,0.13063411,0.37907043,0.17782359,0.700813,0.1461277,0.35712084,0.19744295,0.68627644,0.16150731,0.33499753,0.31604952,0.62003213,0.29718184,0.63077897,0.27728075,0.6410906,0.25675848,0.65031517,0.23611036,0.65792495,0.21639024,0.6699292,0.17699516,0.3129198,0.19538082,0.30125463,0.21708308,0.34642306,0.22523122,0.38157687,0.22279932,0.38582206,0.2132908,0.35826173,0.22128925,0.39014643,0.22188516,0.40157974,0.22368614,0.40420815,0.23582664,0.41796526,0.24229048,0.42757332,0.2464959,0.4244804,0.2497792,0.4211196,0.2521541,0.41764924,0.25267172,0.3976683,0.24776997,0.37359866,0.25248796,0.39436713,0.25150874,0.39155626,0.23459457,0.35337836,0.24512704,0.37185773,0.24176417,0.37122828,0.21471635,0.28883356,0.2317983,0.26621908,0.25165555,0.25390515,0.2748505,0.25191316,0.29872608,0.2514207,0.32318807,0.2524063,0.34812206,0.25491777,0.37340477,0.25906178,0.39891446,0.26499945,0.42454082,0.2729503,0.4501918,0.28320783,0.4758023,0.29601154,0.5013473,0.3115987,0.5259248,0.3302068,0.5487436,0.3516925,0.56998914,0.37590787,0.5898548,0.40276355,0.6085249,0.43218988,0.6261701,0.46409562,0.6232705,0.48878327,0.6008149,0.5063764,0.57887006,0.5263328,0.5575273,0.548314,0.537995,0.5503997,0.51833236,0.55301565,0.49838078,0.556162,0.47860336,0.55982363,0.45949057,0.5638933,0.44083798,0.56820375,0.33422378,0.60951877,0.35202438,0.59997654,0.36961377,0.5914605,0.3871346,0.5840219,0.4047175,0.5777139,0.4224888,0.57259446,0.26831776,0.5094769,0.26798758,0.508631,0.26429376,0.5028433,0.25344107,0.52260935,0.2581497,0.52826726,0.2627977,0.53250736,0.24766852,0.5052821,0.25210273,0.5137788,0.8741975,0.60090405,0.8715189,0.6257509,0.89740074,0.58497345,0.8905646,0.65964025,0.9199314,0.5690774,0.9107774,0.69339174,0.94189763,0.55312246,0.9326136,0.7264131,0.96342826,0.5369612,0.9576024,0.7364267,0.984668,0.5204154,1.0060298,0.5203415,1.0110142,0.7428153,0.98382884,0.7436191,0.0057728295,0.50329995,0.011207784,0.74765456,0.026157055,0.48550707,0.03857247,0.74836004,0.045284875,0.46703956,0.064769395,0.74602824,0.063379824,0.44797367,0.08970615,0.74095577,0.08063064,0.42835212,0.11335573,0.73338944,0.09718601,0.40815714,0.13575065,0.7235291,0.11318132,0.38744792,0.15697645,0.71153337,0.12875354,0.36634865,0.17716499,0.6975235,0.14405747,0.34503907,0.1964886,0.68158954,0.15928483,0.3237481,0.315906,0.6193325,0.2968229,0.6288366,0.276656,0.63782626,0.25583762,0.64564836,0.2348898,0.65180093,0.2151553,0.6637968,0.1746879,0.30274698,0.1928912,0.2911591,0.2208661,0.34157965,0.22485407,0.35949793,0.21748859,0.34589186,0.22148736,0.3411339,0.22957289,0.35571674,0.2239749,0.40872124,0.22406033,0.41208166,0.22492155,0.41495636,0.23201397,0.41885245,0.22891296,0.4185259,0.2536491,0.41422406,0.25430128,0.4109937,0.24977434,0.3893994,0.23772632,0.3719265,0.21205577,0.27879804,0.22920312,0.25749856,0.248942,0.24519347,0.27184907,0.24189386,0.2956379,0.24033904,0.3201998,0.2404686,0.34539056,0.2422873,0.37104943,0.24585348,0.39701688,0.2512724,0.42314953,0.25869665,0.44933173,0.26833728,0.47547966,0.28048572,0.501549,0.29538706,0.52662116,0.31316385,0.5498928,0.3336678,0.5715601,0.3567497,0.5918289,0.38233393,0.6108954,0.41038454,0.6289413,0.44087029,0.64613587,0.47372848,0.6429492,0.498328,0.6202321,0.5147686,0.5980192,0.5334719,0.5764118,0.5541265,0.55705106,0.5549004,0.53767955,0.55614406,0.51815456,0.55786663,0.49831155,0.5600556,0.47853777,0.5626811,0.45935556,0.5656282,0.44057736,0.5687267,0.26682493,0.53568417,0.2678948,0.52735496,0.2682566,0.51901186,0.2679879,0.510711,0.26593882,0.5022678,0.26094702,0.49782503,0.25694978,0.5205856,0.2616609,0.5258617,0.26568332,0.529926,0.2568336,0.49295223,0.25303796,0.4954342,0.24920745,0.49768832,0.24608321,0.4992849,0.2436863,0.5002608,0.24201468,0.5006683,0.24105078,0.5005671,0.2407688,0.50001824,0.24114063,0.49908012,0.24214098,0.4978055,0.24375106,0.4962399,0.24596201,0.49442133,0.25051177,0.50347227,0.853276,0.59213984,0.85024107,0.61688596,0.8765994,0.57749796,0.86850756,0.65186566,0.8992243,0.5629796,0.8876572,0.68684524,0.9212384,0.54847646,0.90810746,0.72128004,0.94274896,0.53382975,0.9321282,0.733024,0.96387815,0.5188503,0.95737493,0.742193,0.9847608,0.503337,1.0057728,0.50329995,1.0112078,0.74765456,0.9838294,0.7484808,0.005541487,0.4870955,0.01137872,0.7515414,0.025633477,0.47001156,0.03882511,0.75120044,0.04450878,0.4521942,0.06500107,0.74775654,0.06237606,0.43371034,0.089820266,0.741511,0.07940279,0.414559,0.113271646,0.7327123,0.09573633,0.39481455,0.13540967,0.72156155,0.111516744,0.37461644,0.15634349,0.70821834,0.12689206,0.35416016,0.17622815,0.69280916,0.1420358,0.33368936,0.19525684,0.6754345,0.15716775,0.3134857,0.3340477,0.608784,0.31554228,0.61734426,0.29622287,0.6255392,0.27577132,0.6331467,0.2546477,0.63951945,0.17257829,0.2938586,0.1906079,0.28234434,0.22654371,0.41716567,0.25415236,0.40810224,0.24732351,0.38806212,0.23306248,0.37417847,0.20960702,0.27004156,0.2269708,0.2503759,0.24659936,0.23808098,0.2690501,0.23316258,0.2926047,0.23026302,0.3171566,0.22929305,0.34253865,0.230225,0.36854997,0.23307939,0.39498344,0.23791549,0.42165,0.24483006,0.44839677,0.25396597,0.4751156,0.26553065,0.50174004,0.27982032,0.52731514,0.29696205,0.55103385,0.3166744,0.57310677,0.3387997,0.5937544,0.363264,0.61318696,0.3900475,0.631598,0.41915512,0.649168,0.4505863,0.6660708,0.48430222,0.6626432,0.50882846,0.63959455,0.5242182,0.61704844,0.5417555,0.5951077,0.561154,0.57581794,0.5606898,0.55662656,0.56063044,0.5374043,0.56099004,0.518003,0.5617639,0.49825123,0.56292933,0.47842667,0.5644404,0.45911968,0.5661779,0.255567,0.51170385,0.26041278,0.5182789,0.26450133,0.5234776,0.24877758,0.49237978,0.8325211,0.5822884,0.82919127,0.60694075,0.8560093,0.5688258,0.84684646,0.64288765,0.8787729,0.55558664,0.86509794,0.67894113,0.90088737,0.5424464,0.88432366,0.71459454,0.92244405,0.5292327,0.907425,0.727863,0.94354683,0.5157454,0.9317004,0.73877805,0.96431094,0.5017719,0.9571871,0.7470598,0.9848616,0.48710063,1.0055414,0.4870955,1.0113788,0.7515414,0.983841,0.75238776,0.0053321803,0.471535,0.011520252,0.7544093,0.02514516,0.45508114,0.03899915,0.75295204,0.043771185,0.43783447,0.06510218,0.7483231,0.06139839,0.41981363,0.08975463,0.74082977,0.07819108,0.40110832,0.11296642,0.7307256,0.09429981,0.38187268,0.13481715,0.71821576,0.1098742,0.36231807,0.15544194,0.7034672,0.12507959,0.3427046,0.1750194,0.68661803,0.14011547,0.32332945,0.15523721,0.30451337,0.35179988,0.5992117,0.33365816,0.60674405,0.31494823,0.6139863,0.29537606,0.62081736,0.27462792,0.6270008,0.17077926,0.28658623,0.18865594,0.27513653,0.22863428,0.37762114,0.22858521,0.3974639,0.22621033,0.40124086,0.22468367,0.4050503,0.22689374,0.42209664,0.22689101,0.4250701,0.22763574,0.4275879,0.22912225,0.42948744,0.23429331,0.43076044,0.23795146,0.42980108,0.2313446,0.4306012,0.2552219,0.4264662,0.2558699,0.42354223,0.24414884,0.43899313,0.24824034,0.43601933,0.2514398,0.43284267,0.25375783,0.42961112,0.25574484,0.42096618,0.25324476,0.40568987,0.25161964,0.4038944,0.2493151,0.40285426,0.2404205,0.3885354,0.23603855,0.390713,0.24419366,0.38771474,0.20750763,0.2628858,0.22527339,0.24518113,0.24481355,0.2328952,0.2666239,0.22603606,0.2897613,0.22148292,0.3141495,0.21912943,0.3396153,0.21892731,0.36592248,0.22087158,0.39281008,0.2249877,0.42002988,0.2313275,0.4473755,0.23997653,0.47469908,0.2510717,0.50191116,0.26482412,0.52801496,0.28140718,0.5521793,0.30052426,0.5746437,0.32188293,0.5956473,0.3454033,0.61541605,0.37107033,0.6341572,0.39890724,0.6520628,0.4289511,0.66931665,0.46122736,0.68610483,0.49571803,0.68248343,0.52019155,0.65901655,0.53463644,0.636063,0.55109966,0.6137187,0.56931806,0.59440374,0.5676899,0.57529056,0.5663998,0.5562588,0.5654646,0.53717417,0.56488353,0.51788163,0.5646407,0.49820238,0.5647052,0.47826353,0.565015,0.45877078,0.56545067,0.44016653,0.5679739,0.3693308,0.5906757,0.38679156,0.58322936,0.40432414,0.5769254,0.4220681,0.57182,0.26669663,0.52117306,0.26702124,0.5122647,0.26672265,0.5032961,0.26712424,0.50254273,0.26687294,0.5021841,0.26481906,0.49523816,0.26325473,0.49630988,0.25395364,0.50131863,0.25900877,0.50948966,0.26323357,0.516097,0.25986198,0.49072993,0.25565493,0.4852257,0.25185052,0.4877935,0.2479891,0.48998684,0.24481712,0.49139214,0.24235946,0.49207497,0.24061857,0.4921163,0.2395815,0.49160364,0.23922707,0.49062413,0.23953152,0.48926017,0.2404737,0.48758674,0.24203877,0.48567066,0.24422155,0.48357013,0.2470293,0.48133588,0.25221694,0.4901377,0.81181824,0.57145506,0.80825543,0.59602827,0.83553433,0.55906105,0.825488,0.63283855,0.8584914,0.5470002,0.84302646,0.66983354,0.8807597,0.53513134,0.8612144,0.7065371,0.90242225,0.52326745,0.88347334,0.7211412,0.923571,0.5111962,0.9068197,0.7335928,0.94430584,0.49869433,0.93133783,0.7436355,0.96473444,0.4855377,0.9570429,0.75097245,0.9849725,0.47151166,1.0053322,0.471535,1.0115203,0.7544093,0.98386246,0.75527304,0.0051498,0.45654434,0.011625254,0.7561808,0.024690986,0.44064057,0.039082706,0.75353026,0.0430595,0.4238442,0.065058686,0.7476387,0.06043884,0.40626094,0.089496344,0.7388231,0.07699501,0.38805917,0.11243136,0.727345,0.09288667,0.36946502,0.13397163,0.7134197,0.10827931,0.3507547,0.15427895,0.69722754,0.12336231,0.3322429,0.13836849,0.31426677,0.08752646,0.7240665,0.15359432,0.29716828,0.3513654,0.59712565,0.3330451,0.6033182,0.31411842,0.6091907,0.29428318,0.61462164,0.3311324,0.59206885,0.16941881,0.28127575,0.18717776,0.26987538,0.23184614,0.39389384,0.23150066,0.4119814,0.22918117,0.41540307,0.22765255,0.41882396,0.2399378,0.44118524,0.24590297,0.44992864,0.24990173,0.44705227,0.25303292,0.44402725,0.25530452,0.44099247,0.25674325,0.43807852,0.25738758,0.43540683,0.2548908,0.41885948,0.2463652,0.40271175,0.2533496,0.41734004,0.2511588,0.41652548,0.24279925,0.40361655,0.23864152,0.40572977,0.2059148,0.2576649,0.22428517,0.24223612,0.24377364,0.22995532,0.26476914,0.22084114,0.28728563,0.21431714,0.31131464,0.21027143,0.33670795,0.20864764,0.3632107,0.20942926,0.39050928,0.21262264,0.41828474,0.21824817,0.44625938,0.22634521,0.47422636,0.23699048,0.50205684,0.2503217,0.52871656,0.26642284,0.5533442,0.2850235,0.57618845,0.3058117,0.59752584,0.32857755,0.6176015,0.35330328,0.63663816,0.3800188,0.65484,0.40878147,0.6724013,0.43965563,0.6895164,0.47268915,0.7063922,0.50787854,0.7026269,0.53232336,0.67863107,0.5459365,0.65517867,0.5614232,0.6323513,0.57854277,0.6129123,0.5758242,0.5937797,0.57337606,0.57483554,0.57121724,0.55595416,0.56934893,0.5369947,0.5677581,0.51779497,0.5664192,0.49816757,0.5652971,0.47804213,0.56431293,0.36883911,0.58855575,0.38624173,0.58109015,0.40372935,0.5747815,0.42145854,0.56968397,0.43959108,0.5658552,0.4582974,0.5633551,0.26582727,0.49438542,0.26566544,0.4946013,0.26211584,0.4888216,0.25739995,0.49919444,0.26183456,0.50752366,0.26543427,0.5140774,0.25866973,0.4827907,0.2543628,0.4766961,0.25053412,0.4793409,0.2466315,0.48149857,0.24340783,0.482766,0.23798308,0.4821641,0.23756686,0.4808493,0.23781686,0.47914976,0.23871577,0.4771582,0.25048482,0.47901192,0.25568697,0.48808852,0.7910285,0.5597368,0.78729457,0.5842508,0.8150593,0.5483022,0.80431694,0.62184024,0.83828205,0.53731734,0.82134825,0.65966696,0.860767,0.5266264,0.83870727,0.6972784,0.8825961,0.5160271,0.86022717,0.7130439,0.9038567,0.5052939,0.8827171,0.72683907,0.9246395,0.49419233,0.9063022,0.73842996,0.9450394,0.48248786,0.9310488,0.7475417,0.96515626,0.4699527,0.95694625,0.753864,0.98510104,0.45649514,1.0051498,0.45654434,1.0116253,0.7561808,0.9838921,0.7570581,0.0049958387,0.44204682,0.011686603,0.7567701,0.024261296,0.4265725,0.039065056,0.7528444,0.042366732,0.4102001,0.06485976,0.74561316,0.059496112,0.39311165,0.08903805,0.7354059,0.07582236,0.37554637,0.11166572,0.722498,0.09151832,0.35779542,0.13288076,0.70712066,0.10677181,0.34019038,0.12180339,0.3230869,0.1368844,0.30684417,0.1106771,0.71613145,0.40063486,0.55952054,0.15235335,0.29180273,0.35071036,0.5936385,0.33220318,0.59844077,0.31305322,0.60291094,0.1686259,0.27826542,0.18631682,0.26689288,0.22949891,0.43465358,0.2294313,0.4373291,0.2300876,0.43957293,0.23146912,0.4412356,0.23357615,0.44216222,0.23640388,0.442196,0.25728166,0.43308982,0.25647047,0.43123364,0.2483501,0.41653675,0.23464082,0.4087064,0.20498742,0.2547051,0.22363147,0.2403171,0.24308634,0.22803944,0.26368865,0.21789618,0.285387,0.20909424,0.30883428,0.20304124,0.3339505,0.19968465,0.3604955,0.19901046,0.38811797,0.20102249,0.4164237,0.20572683,0.4450454,0.21313131,0.47369465,0.22326271,0.5021825,0.2361945,0.5294204,0.251931,0.554529,0.2700942,0.57776165,0.29039237,0.59941155,0.31259927,0.61976516,0.33657208,0.63906264,0.36234063,0.657522,0.38997024,0.6753478,0.41954678,0.6927427,0.45115894,0.70992005,0.48487112,0.72711706,0.5206818,0.7232619,0.545122,0.6985978,0.5580291,0.6745306,0.57264614,0.6511231,0.58875513,0.63145036,0.58501893,0.6121981,0.58148444,0.5932426,0.57817346,0.5744604,0.5750885,0.5557195,0.57221717,0.53687215,0.5695358,0.5177475,0.56701297,0.4981497,0.5646132,0.47775668,0.56224173,0.26569536,0.5044009,0.26533934,0.49457535,0.26361117,0.48726663,0.26025558,0.49746677,0.26406258,0.50582004,0.24089049,0.48323014,0.23908524,0.48299336,0.2402523,0.47495803,0.24242468,0.47262412,0.24524331,0.47022408,0.24873382,0.46782014,0.25399214,0.4770107,0.25858712,0.4865819,0.7699852,0.54722387,0.7661434,0.57169974,0.79444426,0.5366415,0.78319305,0.6100007,0.8180283,0.5266301,0.7999449,0.64857334,0.8408098,0.5170221,0.81670374,0.68697697,0.8628752,0.50760055,0.8376138,0.70374626,0.8843142,0.49812603,0.85934836,0.7187065,0.90521574,0.48835173,0.8820683,0.73164934,0.9256681,0.47803286,0.9058848,0.74232095,0.9457603,0.46693122,0.9308423,0.7504302,0.96558666,0.4549412,0.9569013,0.7556556,0.98525155,0.4419736,1.0049958,0.44204682,1.0116866,0.7567701,0.98392814,0.7576564,0.0048639253,0.42792428,0.011697646,0.75608516,0.023850216,0.4128531,0.038937673,0.75080305,0.041690823,0.39696202,0.064498894,0.7421602,0.058575526,0.3805015,0.08837906,0.73050475,0.07468999,0.36377552,0.09022784,0.34713084,0.105405904,0.33094126,0.12048106,0.31558502,0.13576435,0.30142042,0.8834404,0.72311866,0.9841219,0.7397023,1.0875264,0.7240665,0.3487217,0.58223075,0.36602634,0.57348716,0.1516293,0.28876153,0.36812773,0.58502126,0.34982914,0.5886865,0.1680995,0.2763053,0.18574604,0.26495028,0.23408517,0.4254216,0.23181549,0.4285677,0.23029149,0.43168816,0.24179587,0.45209268,0.24755384,0.4603371,0.25147885,0.45754376,0.25455707,0.45465416,0.25679415,0.45179796,0.25821605,0.4490946,0.2588613,0.44665304,0.2587747,0.4445725,0.2549964,0.4299399,0.24494813,0.417502,0.25289646,0.42930964,0.25020048,0.4294466,0.24096972,0.41956118,0.2371246,0.4223767,0.20437337,0.25277692,0.2227349,0.23773701,0.24214017,0.22546488,0.262975,0.21597688,0.28428033,0.20613354,0.30692545,0.19777106,0.33152512,0.19236605,0.35790387,0.18991962,0.38570717,0.19044992,0.41447556,0.19396852,0.44373953,0.20047067,0.47310355,0.20994802,0.502292,0.22241834,0.5301404,0.23781365,0.55573964,0.2556573,0.579368,0.27554607,0.60133016,0.2972757,0.6219319,0.32069027,0.6414554,0.345699,0.66013336,0.37236878,0.6781814,0.40079504,0.6958103,0.4310889,0.7132391,0.46335787,0.7307081,0.497672,0.7484951,0.5340066,0.74461174,0.5584603,0.71911085,0.570813,0.69428277,0.5846847,0.670172,0.5998827,0.650136,0.5952027,0.6306529,0.59065276,0.6115844,0.58626014,0.5928012,0.58202904,0.5741738,0.57794756,0.5555631,0.57399166,0.536813,0.5701302,0.5177443,0.5663298,0.49815145,0.56256026,0.38547313,0.57752526,0.40292054,0.5712027,0.42064744,0.56610525,0.438839,0.5622874,0.45768997,0.5598058,0.47740236,0.5587139,0.2644568,0.4853213,0.26437876,0.4860931,0.26089206,0.4805709,0.262534,0.49612245,0.2573821,0.47408777,0.25296792,0.4674451,0.24909928,0.4701632,0.24514347,0.47230658,0.24186125,0.47347757,0.23928145,0.47377908,0.23624854,0.47225308,0.23577645,0.47067162,0.23598045,0.46870056,0.23684694,0.46644652,0.23836829,0.46400687,0.25229374,0.46584317,0.2569426,0.4756698,0.26092625,0.48557803,0.77352047,0.5241682,0.76195085,0.59741277,0.7975887,0.5150265,0.77867264,0.63666725,0.8207704,0.5064049,0.7950789,0.67577606,0.8431586,0.49807268,0.8155333,0.6934104,0.8648513,0.4897759,0.8366405,0.7093742,0.88594294,0.4812547,0.85859317,0.72348684,0.9065225,0.47225314,0.8815421,0.73551905,0.9266744,0.46252316,0.9055806,0.74519926,0.94648135,0.45194826,0.93072724,0.7522225,0.96603256,0.44042492,0.9569113,0.75626045,0.9854211,0.42782792,1.004864,0.42792428,1.0116976,0.75608516,0.98396844,0.7569753,0.004749545,0.41415244,0.011652791,0.75403357,0.023455145,0.3995423,0.038695313,0.7473188,0.041034613,0.3842662,0.06397551,0.73720574,0.057689458,0.36863774,0.07362456,0.35301626,0.0890606,0.33779144,0.104248755,0.32336065,0.11948357,0.31010196,0.13510989,0.2983466,0.7935849,0.68416077,0.708233,0.63285714,0.9074688,0.7298217,0.9322521,0.73495466,1.0111547,0.73886675,1.0378665,0.73574334,0.06329544,0.7306963,0.3671903,0.5800103,0.38325742,0.5659008,0.1511478,0.28678176,0.16738509,0.2736638,0.18496874,0.26233456,0.23185262,0.4465346,0.23173438,0.44896495,0.2323206,0.45098224,0.23361823,0.45244834,0.23563254,0.45321894,0.2383626,0.4531474,0.25800166,0.4429449,0.2565847,0.44185755,0.24692951,0.4304619,0.20353417,0.2501826,0.22143431,0.2340913,0.24076262,0.221829,0.26198885,0.21339859,0.28354993,0.20420402,0.3058121,0.1947838,0.32965147,0.18703015,0.3556117,0.182492,0.38339108,0.1812163,0.41249806,0.18324067,0.442362,0.18857071,0.47245696,0.19718297,0.5023885,0.20905301,0.53088737,0.22404702,0.5569976,0.24159591,0.58101773,0.26119342,0.6032895,0.2825272,0.6241313,0.3054656,0.64384425,0.3299078,0.66270125,0.35580406,0.6809294,0.3832523,0.6987475,0.41237426,0.71637964,0.44330192,0.7340685,0.47615206,0.75209033,0.5109775,0.7404026,0.5841562,0.7146354,0.59743965,0.68966585,0.6118475,0.6691077,0.606305,0.6492624,0.60081154,0.6299683,0.59540635,0.61108124,0.59009856,0.5924659,0.58487713,0.57398546,0.5797171,0.5554931,0.5745861,0.5368241,0.5694493,0.51778984,0.5642765,0.49817562,0.55904996,0.2642334,0.49515748,0.26388466,0.4849676,0.2630695,0.47582978,0.26305392,0.47703865,0.26234198,0.47863474,0.2374124,0.4733296,0.24054596,0.46147048,0.24339335,0.45891967,0.24693856,0.45643258,0.2505685,0.45445937,0.25530303,0.46462387,0.259341,0.47492826,0.77679205,0.5025947,0.75736415,0.62404317,0.8005056,0.49485865,0.77368253,0.6637977,0.8233271,0.48752466,0.7938585,0.68218243,0.84536576,0.48032314,0.81449187,0.69900775,0.8667275,0.47297966,0.8358035,0.7141249,0.88750935,0.46522617,0.857979,0.7273327,0.9077988,0.45680413,0.88115495,0.73838264,0.9276732,0.4475868,0.9054029,0.7469873,0.9472117,0.43746012,0.9307119,0.75283134,0.9664944,0.42628455,0.9569786,0.7555853,0.9856066,0.4140337,1.0047495,0.41415244,1.0116528,0.75403357,0.9840105,0.75492126,0.0046494487,0.40079123,0.011548078,0.7505269,0.02307624,0.38677713,0.038337037,0.74231684,0.04040588,0.37232155,0.056857795,0.35779238,0.07266236,0.34359214,0.088072695,0.3301351,0.10337598,0.31781912,0.11889957,0.3069951,0.13467371,0.29634628,0.7507463,0.65946925,0.7721224,0.67215204,0.81530845,0.69539726,0.8374456,0.70573646,0.88254243,0.7296827,0.9067452,0.7364248,0.9317347,0.7415883,0.95780694,0.73831946,0.98408985,0.7463504,1.0113817,0.7454894,0.011381749,0.7454894,0.037866436,0.73574334,0.011154608,0.73886675,0.38447878,0.57247347,0.40188977,0.56612706,0.55671644,0.55672747,0.4764744,0.54701513,0.15049669,0.28411183,0.16635945,0.26992264,0.18384907,0.258633,0.23641714,0.4380234,0.23418906,0.44094568,0.23267058,0.44382098,0.24353075,0.4624838,0.25600868,0.46468973,0.2582248,0.46201536,0.25964105,0.4595287,0.2602955,0.45732498,0.2602328,0.45548898,0.25949833,0.4540983,0.25456014,0.44139683,0.24309464,0.43247855,0.25195608,0.44165185,0.24879058,0.4427189,0.23937471,0.43516454,0.20232114,0.2465141,0.2195298,0.22894183,0.23873776,0.21669662,0.26054737,0.20975879,0.28253636,0.20161226,0.30507788,0.19283715,0.3285582,0.18400583,0.353834,0.17707434,0.3813312,0.17366569,0.4105864,0.17386147,0.44095418,0.17770295,0.47176608,0.18517695,0.50247455,0.19623616,0.53166795,0.21069194,0.55831903,0.22788751,0.5827382,0.24721886,0.60530317,0.2682742,0.62637377,0.29081804,0.64626163,0.3147758,0.665256,0.3400905,0.6836213,0.366746,0.7015841,0.39486772,0.719373,0.42459992,0.73723245,0.4560868,0.755436,0.48943412,0.7358317,0.6107761,0.7098126,0.6245547,0.68853444,0.6182497,0.6681657,0.61189157,0.6485128,0.6055439,0.6294078,0.59922725,0.61070037,0.5929345,0.5922478,0.58664054,0.5739056,0.58031106,0.55551827,0.5739085,0.5369119,0.5673998,0.5178884,0.5607643,0.4196262,0.56102014,0.4379018,0.55720395,0.45694146,0.5547323,0.47697556,0.55365556,0.49822462,0.5540062,0.2626983,0.4850473,0.26243117,0.47504935,0.25959262,0.47161904,0.24017991,0.46358788,0.23753074,0.46376467,0.23559375,0.46314502,0.23436654,0.461865,0.23383965,0.4600587,0.23400138,0.4578533,0.23484233,0.45536733,0.23635873,0.45271048,0.23855557,0.44998443,0.25364828,0.45332783,0.25776282,0.46408352,0.2611778,0.47473577,0.7798412,0.48247033,0.75234205,0.6511383,0.8032357,0.47603655,0.7724371,0.67018586,0.8257369,0.46984413,0.7927735,0.6877554,0.8474657,0.46360153,0.81359637,0.70373213,0.86853385,0.45702577,0.83512175,0.7179469,0.88903916,0.4498471,0.8575246,0.73017925,0.90906143,0.4419279,0.8809237,0.74016297,0.92867607,0.43314466,0.90536416,0.74759805,0.94795537,0.42334753,0.93080294,0.7521639,0.9669706,0.4124956,0.9571041,0.7535364,0.9858044,0.40065098,1.0046494,0.40079123,1.011548,0.7505269,0.9840519,0.7514051,0.004561293,0.3879783,0.0227167,0.37476742,0.03981767,0.3614018,0.056107912,0.3482919,0.07184861,0.33586532,0.08732737,0.3245377,0.102863565,0.31467977,0.11850931,0.3049739,0.1340862,0.29364654,0.7292659,0.64618295,0.7494575,0.6658599,0.77083087,0.6785503,0.7923148,0.6905772,0.81408596,0.7018417,0.83629936,0.712217,0.86012304,0.71503156,0.8590845,0.72155315,0.88182867,0.73466235,0.906166,0.7414369,0.93131596,0.7466265,0.95752275,0.7449698,0.41839162,0.5543922,0.43677554,0.55056417,0.4983005,0.54737484,0.51825905,0.5490799,0.63104844,0.58687353,0.149565,0.28032732,0.16487227,0.26462546,0.18222061,0.25339615,0.25813404,0.45322594,0.25617522,0.45294416,0.24507022,0.44470614,0.20055112,0.24132864,0.21674576,0.2217894,0.23576503,0.20957361,0.25841993,0.20462316,0.2810485,0.19795398,0.30405426,0.19022194,0.32783794,0.18203536,0.35279667,0.1740039,0.37972778,0.16815512,0.40887734,0.16618453,0.43958545,0.16819212,0.47105357,0.17420463,0.5025524,0.18417832,0.5324832,0.19788651,0.5597128,0.21459365,0.5845491,0.23360117,0.6074027,0.25440258,0.6286756,0.27666792,0.64872015,0.3002227,0.66783226,0.32503757,0.6862894,0.3510913,0.7043517,0.3783974,0.7222516,0.40710515,0.75856984,0.4693427,0.7308676,0.63786906,0.70862585,0.6309427,0.6875326,0.6238184,0.66735744,0.6166053,0.6478998,0.60934824,0.6289848,0.6020509,0.61045456,0.5946913,0.59215885,0.58723384,0.57394445,0.5796377,0.5556467,0.5718657,0.5370823,0.56389254,0.518044,0.555717,0.26166278,0.4658948,0.26169273,0.46744934,0.2610172,0.46938014,0.24144925,0.44728515,0.25966048,0.46415484,0.75109476,0.6575183,0.8058176,0.45841518,0.7713308,0.6757427,0.8280355,0.45319203,0.7918408,0.6924588,0.849491,0.44772235,0.81286633,0.70753264,0.87029946,0.44172177,0.8346157,0.7207761,0.89055055,0.43504053,0.8572495,0.73195,0.9103238,0.4275453,0.88086414,0.7407739,0.9296902,0.41907766,0.90547466,0.7469388,0.9487122,0.409586,0.9310041,0.75012565,0.9674571,0.39911804,0.9572866,0.7500236,0.9860095,0.38781753,1.0045613,0.3879783,0.004483403,0.37592405,0.022382522,0.36378846,0.03928822,0.3518359,0.05547385,0.34050187,0.07123399,0.3302161,0.08688807,0.3213674,0.10251998,0.31263813,0.1179859,0.3022441,0.13324846,0.28981698,0.7070154,0.6392592,0.72800267,0.65257555,0.74845797,0.6707026,0.7698258,0.6833982,0.79132295,0.6954389,0.81312764,0.7067253,0.83539724,0.7171292,0.8582632,0.72649837,0.88131005,0.7381161,0.9057413,0.74491537,0.456048,0.54808843,0.5376884,0.55222136,0.57545996,0.5625221,0.5940267,0.56952816,0.6497284,0.5970688,0.6686994,0.60818505,0.14821807,0.27496463,0.16272144,0.2572461,0.17985791,0.2461081,0.1979739,0.23411927,0.21266188,0.21203868,0.23138016,0.19987462,0.2552815,0.19750002,0.2788426,0.19279341,0.30254444,0.18653005,0.32682842,0.17938691,0.3521145,0.17200378,0.3787931,0.16503215,0.4075433,0.16057795,0.43835694,0.16040029,0.47035694,0.16459554,0.5026238,0.17315598,0.53332615,0.18584195,0.56117785,0.20185299,0.58646035,0.22040263,0.6096096,0.2408924,0.6310705,0.26290262,0.6512376,0.28616884,0.67044425,0.31056485,0.68896997,0.33609793,0.7070843,0.36277857,0.7250487,0.3906461,0.7296406,0.6442496,0.7075745,0.6364988,0.68667316,0.628517,0.6666972,0.6203948,0.6474382,0.6121601,0.6287136,0.603801,0.6103575,0.5952839,0.59221107,0.58656543,0.5741119,0.577604,0.5558858,0.56836855,0.53734004,0.5588513,0.7499878,0.66306746,0.808288,0.44182366,0.77038014,0.6804319,0.83025753,0.43738326,0.79108,0.6962423,0.8514736,0.43249384,0.81232303,0.71034604,0.8720435,0.42699018,0.8343065,0.7225368,0.8920586,0.4207272,0.8571722,0.7325597,0.9115963,0.41353777,0.8809898,0.740123,0.93071693,0.40536153,0.9494778,0.3962355,0.9679466,0.3862896,0.9862154,0.37574416,1.0044835,0.37592405,0.004414613,0.36490488,0.022082591,0.35417095,0.038840305,0.3439923,0.054993927,0.33480665,0.07086961,0.32701737,0.08659211,0.31930637,0.1020615,0.30987895,0.11724248,0.29836923,0.13204102,0.28438652,0.6869737,0.6265647,0.6881308,0.620146,0.70607734,0.64411384,0.7270262,0.657421,0.7477523,0.6740576,0.7691136,0.68675625,0.7906172,0.69880635,0.81244296,0.71010816,0.8347496,0.7205327,0.8576705,0.7299263,0.55624115,0.56334084,0.5748645,0.56911194,0.593318,0.5760898,0.6125206,0.57766974,0.6301355,0.59337276,0.64872515,0.6035376,0.66761434,0.6146264,0.14627574,0.2674873,0.15960662,0.24714498,0.17642373,0.23614515,0.26097172,0.46477747,0.19421187,0.22427782,0.20657316,0.19896877,0.2247939,0.18689956,0.2506231,0.18781014,0.27557072,0.18563813,0.3002946,0.18132165,0.32533115,0.17564635,0.351152,0.16931342,0.37818035,0.16299869,0.4067686,0.15740108,0.43739775,0.15470651,0.46973127,0.15671849,0.50269055,0.16350117,0.5341778,0.17483489,0.562698,0.18987657,0.5884674,0.20776217,0.6119331,0.22780648,0.63358057,0.24950297,0.6538492,0.2725027,0.6731113,0.2965927,0.6916788,0.32168582,0.7098192,0.34782165,0.7277996,0.3750386,0.729102,0.39549634,0.7293651,0.39312252,0.7304712,0.411931,0.72917694,0.39695224,0.7302681,0.41106522,0.72997284,0.4097088,0.7333287,0.42419308,0.73849654,0.43625847,0.73375356,0.42522255,0.739416,0.43857193,0.7393863,0.43833676,0.7334715,0.4250971,0.73958004,0.43862316,0.73994684,0.4391468,0.7483684,0.45066217,0.75271726,0.45432487,0.7596555,0.46038198,0.7599398,0.4606303,0.7482126,0.4505298,0.7285527,0.6497991,0.70667225,0.6411869,0.68597126,0.63229454,0.6662009,0.6231964,0.6471439,0.6139041,0.62860936,0.604393,0.61042273,0.59462094,0.5924157,0.5845426,0.5744164,0.5741209,0.77258635,0.46556872,0.7824351,0.4654667,0.76767206,0.46361744,0.7724431,0.46557587,0.783121,0.46543086,0.783328,0.465306,0.7844251,0.46470284,0.7490371,0.66774994,0.792547,0.45986468,0.7978399,0.45349637,0.79206336,0.46048784,0.80392796,0.44029856,0.804158,0.43922943,0.7989,0.45222294,0.7993185,0.4512356,0.8036845,0.4414677,0.81068265,0.42607737,0.7696046,0.68420357,0.8324371,0.4222268,0.7905128,0.69904274,0.85343343,0.41783854,0.81198883,0.7120973,0.8737827,0.41275188,0.83421445,0.72314435,0.89357686,0.40678918,0.8573086,0.73191637,0.91288185,0.39988115,0.9317516,0.3920562,0.95024246,0.38343382,0.968428,0.37422153,0.98641396,0.36470804,1.0044146,0.36490488,0.004354135,0.35525274,0.021828208,0.3462855,0.038499728,0.33825827,0.054706745,0.33158275,0.07062256,0.32493857,0.08619974,0.3165193,0.10141326,0.30595994,0.1161744,0.29287112,0.13030475,0.27680862,0.68608487,0.6314337,0.7054198,0.6474796,0.72633934,0.66077906,0.74733615,0.67600447,0.76869106,0.68870395,0.7901961,0.70075923,0.8120316,0.7120703,0.83435774,0.72250754,0.59278226,0.58107615,0.61170596,0.5842006,0.6294404,0.59830874,0.64795893,0.6084486,0.66678333,0.6195146,0.14347214,0.2572398,0.15503946,0.23352005,0.1713648,0.22273324,0.18863927,0.21105796,0.19718042,0.18174382,0.21452771,0.16986221,0.24356546,0.1748693,0.27067935,0.17591065,0.29693705,0.17410001,0.32308725,0.17036708,0.3497155,0.16551055,0.3773087,0.16026017,0.40626398,0.15533356,0.43684697,0.15148132,0.4692472,0.1509606,0.50275415,0.15558583,0.53500414,0.16519716,0.56423527,0.17893992,0.5905452,0.19589,0.6143649,0.21528365,0.6362134,0.23653235,0.6565763,0.25920567,0.6758682,0.28301033,0.6944357,0.30777514,0.7125733,0.3334464,0.7305423,0.36009285,0.73034716,0.38359252,0.7319507,0.37739897,0.730507,0.38214126,0.73018515,0.41106635,0.7482163,0.45064214,0.72761875,0.6544816,0.70593584,0.64495623,0.68544453,0.635088,0.6658858,0.62493503,0.64703345,0.61449575,0.628687,0.6037359,0.6106626,0.59261006,0.7724079,0.46566403,0.7830296,0.46559134,0.7916898,0.46107554,0.74826133,0.6715158,0.80647767,0.4290029,0.8067562,0.4235819,0.80654776,0.42766345,0.8130374,0.4109858,0.76902556,0.686995,0.83459467,0.40764487,0.79016197,0.7007859,0.8553885,0.40367708,0.81188536,0.7127023,0.87553346,0.39888972,0.8951096,0.39320275,0.91417533,0.3866355,0.9327823,0.37929913,0.9509908,0.3713917,0.96888596,0.3631907,0.9865946,0.35504153,1.0043541,0.35525274,0.0043014702,0.34733954,0.021632314,0.34052154,0.038292374,0.33501345,0.054510072,0.3294884,0.07029778,0.32212585,0.085648045,0.31255853,0.100485265,0.300396,0.114642836,0.2851933,0.12780596,0.26641244,0.685464,0.6348112,0.7050363,0.64943534,0.72593653,0.66272885,0.7471975,0.6766331,0.76854736,0.6893318,0.7900497,0.7013882,0.6110878,0.5891621,0.6289602,0.60173744,0.64742756,0.6118585,0.66620487,0.62290716,0.13937768,0.24339318,0.14814945,0.21537109,0.1636864,0.20492594,0.1801186,0.1935695,0.18182679,0.15960115,0.19750275,0.14813298,0.23242891,0.15793416,0.26319382,0.16293575,0.29187584,0.16428398,0.31971484,0.16304399,0.34754825,0.1601389,0.37599742,0.15638478,0.4055375,0.15254517,0.4364935,0.14938387,0.46898094,0.1477013,0.50281584,0.14980105,0.5357529,0.1572999,0.56572366,0.16937211,0.59263915,0.18505928,0.6168715,0.20353271,0.63895655,0.22412895,0.65942436,0.24634117,0.6787356,0.26979953,0.6972752,0.29425547,0.7153672,0.31957316,0.73329484,0.34572914,0.7375035,0.3640802,0.7336156,0.37160358,0.7340156,0.3702173,0.72934055,0.39722943,0.7348396,0.43893898,0.7401676,0.45049202,0.7480393,0.46095502,0.7268566,0.658247,0.7053839,0.6477443,0.6851117,0.6368227,0.6657702,0.6255268,0.6471231,0.61384463,0.7585397,0.46952018,0.7696035,0.47434372,0.74768144,0.67430234,0.7983408,0.45311016,0.77902025,0.47456965,0.7866417,0.4709774,0.8029936,0.44263494,0.8071747,0.41403893,0.80649424,0.40681925,0.8073033,0.41552144,0.8153728,0.39647073,0.76866573,0.6887322,0.8367491,0.39355803,0.85735774,0.38989317,0.87730134,0.38538045,0.8966514,0.38002792,0.91546273,0.37393793,0.9337892,0.36730066,0.95170057,0.36038575,0.96930075,0.35352963,0.986745,0.34711722,1.0043014,0.34733954,0.0042562895,0.34155613,0.021507874,0.33726096,0.0381478,0.3329064,0.054254703,0.3266533,0.06984457,0.31812686,0.08486167,0.30693248,0.09915854,0.29262173,0.112444945,0.27465072,0.124169566,0.2523438,0.685104,0.6367753,0.70491415,0.65007037,0.7258053,0.66335994,0.74731946,0.6760357,0.66587126,0.62488157,0.13323238,0.22489697,0.13721748,0.19155629,0.15140636,0.18169875,0.166357,0.17091629,0.1544498,0.13271463,0.16659865,0.122301154,0.21363452,0.13650586,0.25120777,0.14600381,0.2840383,0.15119867,0.3145828,0.1530856,0.34426498,0.15268077,0.37400377,0.15090398,0.404433,0.1485933,0.43597355,0.14655034,0.46881944,0.1455838,0.5028763,0.14653014,0.53635615,0.15153244,0.5670649,0.16153963,0.5946571,0.17559463,0.61938465,0.19282375,0.6417693,0.21249975,0.6623769,0.23404665,0.68171644,0.2570234,0.7002163,0.28110865,0.71823406,0.30609146,0.7360779,0.33186767,0.7457912,0.3538325,0.74625367,0.35336074,0.7394836,0.36018175,0.7388134,0.3615165,0.7307378,0.3842547,0.73109764,0.41537517,0.7318829,0.4270217,0.7262862,0.6610327,0.7050365,0.64947677,0.68499196,0.6374152,0.7924215,0.464408,0.79637223,0.45566285,0.8056744,0.4304848,0.8057893,0.39983892,0.8031688,0.38879916,0.8061698,0.40154397,0.8177086,0.38245264,0.83892196,0.37985104,0.8593482,0.3764643,0.8790808,0.37228405,0.89818627,0.36740124,0.9167201,0.36199775,0.9347435,0.3563363,0.9523429,0.35074762,0.9696485,0.3456107,0.9868516,0.34132662,1.0042562,0.34155613,0.0042183367,0.33828583,0.02141755,0.33514452,0.037964188,0.3300527,0.053902432,0.3226205,0.06920222,0.31244403,0.08374128,0.29906756,0.09725995,0.28193885,0.10925667,0.260366,0.11873592,0.23350628,0.72592854,0.66276467,0.12354619,0.20050403,0.11840434,0.16123056,0.13007613,0.15250203,0.14217329,0.14289029,0.10078672,0.10556469,0.10571773,0.098236024,0.17874846,0.11162947,0.23053789,0.12473951,0.27126476,0.13415356,0.30652454,0.13980567,0.3392142,0.14252667,0.37095633,0.14328332,0.40273786,0.14299579,0.43516934,0.1425278,0.4685652,0.14271818,0.50293463,0.14440802,0.53673923,0.14827628,0.56813246,0.15582594,0.596465,0.16785601,0.6217928,0.1834761,0.6445731,0.20191173,0.6653876,0.22252735,0.68479097,0.24481861,0.70325977,0.26839745,0.7211915,0.29298294,0.73892355,0.31839758,0.75586843,0.34828737,0.7543962,0.34901035,0.74680376,0.35268334,0.7567549,0.34456566,0.75600815,0.34829903,0.7395892,0.36331052,0.73420393,0.37275386,0.7322897,0.4045573,0.73566025,0.45312184,0.74046135,0.46312156,0.7329741,0.442884,0.7475266,0.47225967,0.7569251,0.4798392,0.7668083,0.48422995,0.7751981,0.48465344,0.7819575,0.48177218,0.8063925,0.4173817,0.7973914,0.37418607,0.7980721,0.370432,0.80295455,0.38765705,0.7975009,0.37433207,0.80221367,0.3857564,0.8200688,0.36881727,0.8411216,0.36650187,0.86135405,0.36345038,0.8808537,0.35973665,0.8996861,0.35553122,0.91791207,0.35108927,0.9356074,0.34673643,0.95288265,0.34284863,0.96990263,0.33982494,0.9869008,0.33805344,1.0042183,0.33828583,0.0041845688,0.33616397,0.021308335,0.3322768,0.037715904,0.32599184,0.053407367,0.31688777,0.06829088,0.3044965,0.08214262,0.2882536,0.09451403,0.26744896,0.10451104,0.24120133,0.11021924,0.20855916,0.107004225,0.1691137,0.081943125,0.12574933,0.08860241,0.11956181,0.09497729,0.112757504,0.0044622794,0.095903985,0.10963,0.090786666,0.19105685,0.100689515,0.24863087,0.112881236,0.2931065,0.12251209,0.33115435,0.12896453,0.36621106,0.1328875,0.40012026,0.13519832,0.4339184,0.13682057,0.46815237,0.13864315,0.50298715,0.14153115,0.5370133,0.14616716,0.5687893,0.15260568,0.5978931,0.16221789,0.623937,0.17584227,0.6472434,0.19267872,0.668371,0.21204686,0.68790877,0.23338862,0.7063831,0.2562575,0.7242383,0.28030977,0.74184746,0.30530018,0.7595348,0.33108157,0.7322235,0.43295115,0.73322976,0.42379624,0.7870415,0.47630098,0.7985271,0.44545877,0.79046047,0.46892568,0.8051178,0.40395233,0.80176544,0.39076093,0.8006003,0.35685968,0.82246286,0.35554326,0.84334224,0.35357055,0.86335564,0.35098696,0.88258815,0.3479454,0.9011091,0.34469023,0.9189918,0.34154084,0.9363344,0.3388705,0.9532806,0.3370787,0.97003675,0.3365558,0.9869241,0.33593062,1.0041846,0.33616397,0.0041528577,0.33328766,0.021167671,0.32819456,0.037372213,0.32021737,0.05270915,0.30886775,0.066994935,0.2935639,0.079837166,0.27357402,0.09044103,0.24797803,0.09710862,0.21573408,0.09576835,0.1761815,0.075041264,0.13134547,0.11231123,0.083245195,0.20373258,0.089479215,0.2684933,0.10101351,0.3173816,0.111270554,0.35849872,0.11896195,0.39599073,0.12453342,0.4319634,0.12885417,0.46749023,0.13285229,0.5030304,0.13743418,0.53736866,0.14330384,0.569245,0.15052335,0.5987594,0.15904571,0.62561953,0.17028728,0.6496063,0.18514612,0.67119503,0.20291455,0.6909803,0.22299422,0.7095337,0.24489103,0.7273501,0.26820707,0.7448469,0.29263708,0.7623805,0.3179688,0.7761904,0.35157433,0.78026783,0.3440802,0.7785559,0.3526718,0.7645098,0.34765828,0.7625226,0.34789917,0.7666025,0.34737822,0.7467563,0.3565075,0.7399345,0.38738745,0.73528546,0.39507085,0.73582983,0.4158411,0.7361019,0.46788254,0.740427,0.4765373,0.7336556,0.45908204,0.7329307,0.45059937,0.7467587,0.4845125,0.7551544,0.4912106,0.763967,0.4951951,0.7714343,0.49576178,0.7774326,0.49347243,0.7989115,0.4344191,0.7896237,0.36183357,0.7926213,0.366776,0.7874341,0.3599369,0.80317134,0.3436526,0.82488525,0.34269077,0.84556234,0.34119216,0.8653167,0.33927986,0.8842358,0.33718067,0.90239954,0.3352041,0.9199018,0.33371925,0.93687284,0.3331262,0.9534977,0.3338199,0.97011584,0.33443654,0.9869705,0.33305186,1.0041529,0.33328766,0.0041241273,0.3291916,0.020980367,0.32238814,0.036892567,0.31213707,0.05172074,0.2978317,0.0651317,0.2787139,0.07642849,0.2538232,0.08411457,0.22203253,0.08461784,0.18245469,0.0679265,0.13636872,0.11344239,0.07565706,0.21707863,0.07800243,0.29096636,0.08927099,0.34490913,0.10071097,0.38914424,0.110187955,0.4288361,0.11792677,0.46643335,0.12475487,0.5030612,0.13160531,0.53786445,0.1392216,0.5698558,0.14769325,0.599352,0.15699773,0.6266302,0.16716662,0.65144885,0.17967033,0.6736789,0.19546953,0.6938709,0.21394119,0.7126206,0.23455666,0.7304732,0.25687566,0.74789655,0.2805428,0.765288,0.30528843,0.78299344,0.33092856,0.75556535,0.3529566,0.74610615,0.38197187,0.7398826,0.4094768,0.7337678,0.4428365,0.7360194,0.4361491,0.7457882,0.49759218,0.7532488,0.503476,0.7610647,0.507076,0.7819185,0.48893225,0.7922481,0.4602639,0.7848992,0.4827248,0.7975227,0.42308575,0.7943171,0.4119434,0.80578,0.33087128,0.8273128,0.3303944,0.8477419,0.32957104,0.86718285,0.32859713,0.88573205,0.32776517,0.90348876,0.32743624,0.92057794,0.32800913,0.93717104,0.3298834,0.9536312,0.33170825,0.97023827,0.33156127,0.98705435,0.32895082,1.0041242,0.3291916,0.0040991586,0.3233643,0.020726208,0.31426167,0.036218718,0.3010155,0.050304834,0.28283468,0.06238526,0.2587151,0.071153596,0.22744814,0.07349045,0.18794325,0.06061935,0.14083028,0.112546735,0.068091385,0.23158579,0.06626924,0.3173099,0.0778776,0.376655,0.09124852,0.42354658,0.10315824,0.46471283,0.11362056,0.5030745,0.123445936,0.5385846,0.1334103,0.57073367,0.14365555,0.6001562,0.15421201,0.6273155,0.16515473,0.6525471,0.1765979,0.6756047,0.1900613,0.6963991,0.20656404,0.7155096,0.22555754,0.7335175,0.24657309,0.7509428,0.26921755,0.7682318,0.29317474,0.785768,0.31820664,0.7536836,0.37930763,0.74526894,0.40508473,0.7395576,0.43086433,0.7362603,0.48324886,0.74014133,0.4906811,0.73403704,0.47574672,0.7333365,0.46856594,0.73401916,0.46204472,0.7676766,0.50775784,0.77297497,0.50599265,0.7924356,0.45085615,0.7910347,0.44117337,0.7961869,0.3783545,0.78816915,0.36732134,0.79621893,0.3723108,0.8084018,0.3186497,0.8297021,0.3188571,0.8498203,0.31897268,0.8688804,0.3192581,0.8869971,0.32005858,0.9043001,0.3217675,0.9209559,0.32478732,0.9373581,0.3277831,0.9538279,0.32884222,0.97043157,0.32746407,0.9871925,0.32311508,1.0040991,0.3233643,0.004078716,0.3152074,0.020376071,0.30307487,0.0352587,0.285898,0.04822458,0.2626244,0.058149498,0.23196559,0.062332295,0.19264722,0.05313266,0.14473441,0.10891115,0.060654208,0.24815989,0.05430144,0.34941164,0.06722001,0.41354772,0.083481684,0.4617453,0.09851096,0.5030621,0.11221294,0.53966486,0.12527496,0.572034,0.13790746,0.6013223,0.15023603,0.6282507,0.1624163,0.6532868,0.17461923,0.6767452,0.18702932,0.6983488,0.20120719,0.71802336,0.21822552,0.73635244,0.2376013,0.7538984,0.25891855,0.7711595,0.28182787,0.78856605,0.3060483,0.77744824,0.35836312,0.76585865,0.35332602,0.7625566,0.37992164,0.7518905,0.4030583,0.74427676,0.4272985,0.735955,0.4564806,0.7390309,0.45214516,0.73418576,0.4927665,0.7361957,0.4990623,0.7446582,0.5112751,0.7512397,0.51639694,0.73965645,0.5053566,0.7581189,0.51963335,0.7769192,0.5022869,0.7864051,0.47537982,0.7795134,0.49713144,0.78920186,0.40145314,0.7880251,0.4316352,0.81098986,0.30718982,0.83198607,0.3083419,0.8517149,0.3097129,0.8703184,0.31161797,0.8879416,0.3144371,0.90475655,0.31857094,0.92119557,0.32270166,0.93762755,0.3249314,0.95412815,0.3247569,0.9707283,0.32163253,0.9874067,0.3149454,1.0040787,0.3152074,0.0040637385,0.3039778,0.01988412,0.28786677,0.03385437,0.26551738,0.045026626,0.23556149,0.051092096,0.19655748,0.04547197,0.1480793,0.10148223,0.053511932,0.26874885,0.04215478,0.38987228,0.05797961,0.4559586,0.07821249,0.50300515,0.09694155,0.5413578,0.114080176,0.5740051,0.12986644,0.603057,0.14457734,0.6296118,0.15850686,0.6542996,0.17192477,0.67750907,0.18507816,0.69949704,0.19820552,0.7199527,0.21290219,0.7388074,0.23029083,0.7566378,0.24994762,0.77398765,0.2715053,0.79133785,0.29465437,0.77261484,0.38440737,0.75966597,0.40382472,0.75009346,0.42577505,0.7431545,0.4492987,0.7335123,0.48679298,0.7340554,0.48142022,0.7357023,0.47689155,0.76392686,0.5204144,0.7685685,0.51912826,0.77200717,0.5161916,0.78646874,0.46736363,0.7851084,0.4590839,0.78203183,0.39209294,0.81347126,0.29675213,0.83407307,0.2991608,0.8533231,0.30214205,0.8713943,0.30604795,0.8884757,0.31126913,0.90504825,0.31650278,0.9215366,0.31986874,0.93803245,0.32086524,0.9545796,0.31894135,0.9711706,0.31346816,0.98772806,0.30369788,1.0040637,0.3039778,0.004055621,0.2887112,0.019171545,0.26736045,0.03170353,0.23820758,0.039716024,0.19965714,0.037635386,0.15085693,0.08877551,0.046932235,0.29848444,0.030005231,0.44116998,0.0513024,0.5028526,0.076350406,0.5442108,0.09888028,0.5770998,0.11882063,0.60568357,0.1366699,0.63163614,0.15294485,0.6557754,0.16807738,0.67855704,0.18242025,0.7002624,0.19627477,0.7210832,0.20991963,0.7406835,0.2249825,0.75899994,0.24263573,0.776598,0.2625101,0.7940047,0.28428358,0.76852834,0.40786558,0.7569465,0.42664355,0.7482559,0.44820577,0.73835456,0.47342733,0.74193275,0.47123697,0.7341479,0.5098049,0.7359519,0.51498157,0.7335073,0.504951,0.74341214,0.52521753,0.7491729,0.5296307,0.7390153,0.5202202,0.75517744,0.5325256,0.78078437,0.4909748,0.7742455,0.5120102,0.783347,0.42263433,0.78231794,0.45090306,0.8157451,0.28764513,0.83584875,0.2916592,0.854529,0.29662582,0.8720053,0.3029112,0.88881886,0.30922082,0.9054599,0.3136925,0.9220443,0.31582832,0.9386354,0.31507638,0.95524454,0.31079903,0.971819,0.30222806,0.9882053,0.28840742,1.0040556,0.2887112,0.0040567755,0.26812628,0.018087903,0.23987432,0.028143734,0.20192377,0.029613478,0.15305421,0.06898507,0.041343745,0.3551406,0.018591305,0.502391,0.048753105,0.5497012,0.078450054,0.5822767,0.10387651,0.60977864,0.12583219,0.6346885,0.14518106,0.65796685,0.16260532,0.6800847,0.1786246,0.701314,0.19364387,0.72183377,0.20800139,0.7417778,0.22200797,0.760798,0.23732467,0.77883995,0.25517502,0.79645675,0.2752411,0.776897,0.4145666,0.76479495,0.43029714,0.754288,0.44915026,0.7463783,0.47053194,0.73392797,0.50064224,0.73336124,0.52246636,0.73396075,0.52631795,0.735313,0.49707106,0.73757774,0.49440968,0.76023304,0.5333909,0.7642585,0.53253925,0.7672224,0.5303067,0.7807632,0.48421425,0.77947146,0.4771984,0.81768495,0.28020933,0.8371836,0.28619704,0.85521656,0.29352173,0.8723997,0.30088434,0.88930047,0.3064363,0.90606904,0.3096834,0.92279637,0.31007558,0.9395187,0.3069717,0.9562125,0.29959068,0.9727686,0.28695,0.98892224,0.26779372,1.0040568,0.26812628,0.004071895,0.24053638,0.01630411,0.20333238,0.021388238,0.15465388,0.04081967,0.03738569,0.4983209,0.012071457,0.5636592,0.051334843,0.5920085,0.08394659,0.61652315,0.11123268,0.6394032,0.13456266,0.6612545,0.15497372,0.68234843,0.17322706,0.7028469,0.1898865,0.722866,0.20538735,0.7425015,0.22009456,0.76184225,0.23434745,0.7805404,0.24984467,0.7985552,0.26786318,0.77225596,0.43617085,0.76122737,0.4524506,0.74065423,0.49282017,0.733681,0.51910836,0.7691277,0.527022,0.8191471,0.27479887,0.83794737,0.28312588,0.855662,0.29151744,0.8729507,0.298128,0.8900101,0.30246308,0.9069683,0.30397496,0.92389476,0.30202222,0.9408008,0.29581717,0.9576247,0.28435984,0.97418314,0.26635993,0.990039,0.24017496,1.004072,0.24053638,0.004111371,0.20385857,0.01293153,0.15563528,0.005600465,0.03582915,0.6467737,0.01808156,0.61506075,0.05806753,0.6287953,0.09193243,0.6470343,0.1203132,0.66628397,0.14455268,0.6857274,0.16570336,0.7051138,0.18454367,0.72437084,0.20165369,0.7434981,0.2174872,0.76253057,0.2324317,0.7815242,0.24685498,0.8001416,0.26249844,0.7678617,0.45758727,0.7516556,0.47153765,0.7577529,0.474507,0.74449384,0.49246514,0.74907005,0.49351782,0.7348367,0.5163897,0.73556674,0.5304915,0.7331116,0.5385781,0.73365974,0.5415982,0.733358,0.5360042,0.7367553,0.51443887,0.7393787,0.51337516,0.7471117,0.5427227,0.7421007,0.53895134,0.7382599,0.5347827,0.7523179,0.545301,0.7566852,0.5462274,0.7601447,0.5457485,0.76267105,0.5441307,0.77530724,0.506957,0.76426935,0.54163593,0.7699968,0.5229886,0.7752218,0.5013638,0.7740124,0.49552223,0.7780589,0.44315565,0.7769116,0.47023574,0.8199866,0.2717593,0.8384439,0.28114426,0.85628235,0.2887907,0.8737602,0.2941941,0.8910553,0.29680574,0.90827954,0.29598498,0.92548704,0.29094183,0.9426687,0.28066608,0.9597241,0.26384452,0.97637546,0.2387914,0.9919062,0.20348524,1.0041114,0.20385857,0.0042037703,0.15597595,1.0056005,0.03582915,0.97005683,0.03714447,0.70595217,0.029425893,0.65563864,0.0673934,0.6604699,0.101609856,0.67428946,0.13060617,0.6908504,0.15543954,0.70848155,0.17709771,0.7265917,0.19634432,0.74495083,0.21376292,0.7634795,0.2298214,0.7821703,0.2449301,0.80105585,0.25948712,0.77306,0.46360832,0.7636123,0.4789643,0.7543795,0.496173,0.74266684,0.513318,0.7465999,0.5143951,0.73507833,0.5449355,0.7343259,0.5339829,0.74078465,0.5519005,0.74513763,0.55511963,0.73743665,0.5484327,0.74964577,0.55741084,0.7716874,0.48968938,0.8205343,0.26979968,0.8391335,0.27844748,0.85719156,0.28489825,0.87495077,0.28859288,0.8925782,0.2888891,0.9101799,0.28499642,0.9278069,0.27590024,0.9454459,0.26027423,0.9629765,0.23640493,0.9800311,0.20221947,0.99547046,0.1556601,1.0042038,0.15597595,1.0044622,0.095903985,0.94118667,0.040924538,0.7364956,0.041612256,0.68786013,0.078163765,0.6879736,0.112383604,0.6988834,0.1417241,0.7135466,0.16694376,0.7298776,0.18894465,0.74709153,0.20846619,0.764863,0.22609288,0.78306234,0.242308,0.8016542,0.25754723,0.7682338,0.4840974,0.7595067,0.49999878,0.7511812,0.516752,0.7359511,0.53260595,0.7327976,0.55243444,0.73328257,0.554854,0.7330048,0.5504193,0.73383707,0.5488866,0.7381834,0.5319573,0.74098897,0.53212094,0.75341064,0.5583621,0.7563735,0.5581662,0.75851494,0.5570341,0.75984323,0.5551743,0.7649622,0.5385067,0.7698581,0.51847726,0.7687363,0.51372546,0.82129323,0.2671317,0.8401425,0.27459702,0.8585275,0.27935654,0.87668514,0.28075746,0.894786,0.2780073,0.9129508,0.27009076,0.93125993,0.25567687,0.9497528,0.23303953,0.9684027,0.20008145,0.9869978,0.1547005,0.92068756,0.046408914,0.75745535,0.05383502,0.71432865,0.089691974,0.7122727,0.12383938,0.72138643,0.15338048,0.7347847,0.17885236,0.7502472,0.20108232,0.7668989,0.22078927,0.7843635,0.2385628,0.8024819,0.25490516,0.76357675,0.5043091,0.7556257,0.5200008,0.74435353,0.5331883,0.7482848,0.53526634,0.7345288,0.55757976,0.73523605,0.547901,0.73953485,0.5634244,0.743348,0.5662081,0.7365984,0.56048775,0.7472878,0.56824905,0.7666441,0.5089411,0.822402,0.26332194,0.8416243,0.26911592,0.86047417,0.27160743,0.8792019,0.26999438,0.89801013,0.26326048,0.91708285,0.25007692,0.93662584,0.22871879,0.9569518,0.19709246,0.9787474,0.15311794,0.9074271,0.05294332,0.77425957,0.065902114,0.7369358,0.101585865,0.7341818,0.13569365,0.74229634,0.16536547,0.7549312,0.19100642,0.7698907,0.21339294,0.7862763,0.23323445,0.80368984,0.25113186,0.7591766,0.5235681,0.7521146,0.53801084,0.7371565,0.547521,0.7324612,0.56321895,0.7328705,0.56531465,0.73266864,0.5614955,0.7334274,0.5602066,0.7346809,0.55940205,0.73956907,0.5478054,0.742463,0.54882073,0.7505637,0.56917536,0.7531237,0.56914294,0.75495315,0.56832486,0.76038265,0.55278,0.7560638,0.5668935,0.76477844,0.534959,0.76374435,0.53118145,0.8240303,0.25789958,0.8437851,0.2614552,0.86330307,0.2609713,0.88288444,0.25542518,0.90282995,0.24349238,0.9235223,0.22346218,0.94562006,0.19327176,0.97069263,0.15093133,0.89960766,0.060081463,0.7889447,0.077750765,0.7569442,0.11361574,0.7543443,0.14775155,0.7620338,0.17752707,0.77430844,0.20329225,0.7890797,0.22579993,0.80546427,0.24576263,0.76187664,0.52733713,0.75519365,0.5409451,0.7458492,0.5506475,0.7491578,0.55298346,0.7339643,0.5677004,0.7363857,0.5591257,0.73842895,0.57288074,0.7418479,0.57537246,0.73580337,0.5702682,0.7453802,0.5772094,0.8264077,0.25032514,0.8469314,0.25095013,0.8674531,0.24659386,0.8884072,0.23593386,0.9103687,0.21728212,0.9343553,0.18863359,0.96281636,0.14815669,0.8957099,0.06754263,0.8024492,0.08935393,0.77519625,0.12564099,0.77326185,0.15987931,0.78095317,0.18975984,0.7932006,0.21563762,0.80805945,0.2382667,0.75755644,0.54398876,0.7518321,0.55542916,0.7385148,0.55942243,0.7321446,0.57027876,0.7324667,0.5723424,0.7323947,0.568571,0.73314786,0.56727904,0.73434484,0.5664488,0.7359413,0.56611955,0.7410594,0.5603449,0.7440326,0.56196034,0.74830884,0.5780533,0.75058407,0.57804334,0.75219417,0.57733667,0.75648284,0.56500816,0.7601639,0.5500225,0.7531542,0.57609004,0.75921524,0.5470502,0.8298777,0.23994918,0.8515617,0.23677224,0.8737011,0.22740406,0.897084,0.21018283,0.92310816,0.18318503,0.9551103,0.14480594,0.8946455,0.07515137,0.815278,0.100697055,0.79227257,0.13757303,0.7913308,0.17198826,0.79935604,0.20199904,0.81185937,0.22800967,0.753902,0.5579292,0.7469401,0.5640037,0.7492982,0.5661309,0.7334336,0.5746798,0.7379099,0.56633186,0.73511124,0.57717985,0.73754394,0.57969874,0.74073887,0.582062,0.744051,0.58375293,0.83500487,0.2259706,0.85856605,0.2179005,0.88357073,0.20215943,0.91182625,0.17692465,0.94757414,0.14088632,0.8956748,0.08279553,0.82774043,0.11177193,0.80859053,0.14935842,0.8088714,0.18402755,0.8175018,0.21421789,0.7553755,0.5604165,0.75113475,0.5682999,0.74024296,0.56713444,0.73215437,0.5714672,0.7324544,0.5735398,0.73241544,0.56974584,0.7331679,0.5684361,0.73435223,0.56758386,0.7359239,0.5672285,0.7378556,0.5674104,0.74295497,0.5685924,0.7456017,0.5704701,0.74679685,0.58445877,0.7489236,0.5843254,0.75042003,0.58351874,0.7562432,0.56280935,0.7534945,0.57444763,0.75130403,0.5822032,0.84280586,0.20742214,0.8697028,0.19319968,0.9004488,0.16984145,0.94021493,0.13639916,0.89830226,0.09040136,0.8400483,0.12257623,0.8244657,0.1609711,0.82614845,0.19598036,0.752456,0.5704573,0.7477493,0.57245594,0.7494267,0.57451206,0.7333894,0.57588,0.7401397,0.568178,0.7350259,0.5783747,0.73740935,0.5808774,0.74054706,0.58321077,0.74380374,0.5848619,0.8553089,0.18328738,0.8888983,0.16191481,0.9330473,0.13133983,0.9021962,0.09791995,0.85236037,0.13311578,0.840146,0.1724107,0.7532507,0.57253504,0.7506397,0.5765889,0.7427908,0.5695966,0.7325721,0.5707993,0.7323091,0.57250726,0.7325897,0.5745557,0.7333101,0.56949246,0.73446476,0.5686328,0.7359922,0.5682594,0.7378657,0.56841224,0.74007756,0.56913966,0.74537605,0.57143766,0.7474729,0.57339674,0.74650496,0.58552575,0.7485972,0.5853509,0.7500691,0.58450645,0.7516096,0.5805284,0.75093853,0.5831595,0.8770682,0.15311524,0.92609394,0.12569726,0.90713507,0.10531991,0.864805,0.14340682,0.75137615,0.57862204,0.74911046,0.5754358,0.7502947,0.5775057,0.7334865,0.5768612,0.74264205,0.570506,0.7350651,0.5793108,0.7373706,0.58175844,0.74041027,0.58402824,0.74356806,0.58562046,0.9193871,0.119453356,0.9129718,0.11258351,0.7510134,0.57954204,0.74514085,0.5722918,0.7328367,0.57171893,0.7325792,0.573391,0.7335495,0.5704326,0.7328429,0.5753885,0.7346613,0.5695779,0.73612976,0.5691938,0.73792905,0.56932,0.7400515,0.5700041,0.7425105,0.5713091,0.7471663,0.57420194,0.7487469,0.5761986,0.7461892,0.5862412,0.7482208,0.5860382,0.7496514,0.58517927,0.75124013,0.5814617,0.7504983,0.5838304,0.7498887,0.5782329,0.7505801,0.5802413,0.73369753,0.577629,0.7449048,0.5730257,0.73520637,0.5800016,0.73741263,0.58236367,0.7403238,0.58454436,0.74335,0.58606386,0.750795,0.5821419,0.7468438,0.57486993,0.73318386,0.5724912,0.73293746,0.5741096,0.73386335,0.5712396,0.7349228,0.5704002,0.73318666,0.5760352,0.73632205,0.57001215,0.73803616,0.5701146,0.7400576,0.5707541,0.7423985,0.57199204,0.7446764,0.5736299,0.7483551,0.57680416,0.7494447,0.5787801,0.7458642,0.586642,0.74781543,0.58642274,0.7491921,0.58556944,0.75001013,0.5842433,0.75010157,0.58073574,0.7503011,0.5825907,0.7339971,0.5781876,0.7465192,0.57539606,0.73542833,0.58045924,0.7375212,0.5827135,0.740283,0.584787,0.74315536,0.5862248,0.74795306,0.5772531,0.73358953,0.573101,0.7333584,0.5746527,0.7342306,0.57189476,0.7352319,0.57107925,0.73655564,0.5706931,0.7335954,0.57649153,0.7381784,0.5707751,0.7400925,0.5713706,0.74230886,0.572539,0.74446416,0.5740926,0.74620575,0.5757731,0.748984,0.5791537,0.74960184,0.5810372,0.745544,0.58676225,0.747401,0.58653724,0.7487148,0.58570576,0.74949956,0.584422,0.749784,0.58282596,0.7343612,0.5785397,0.7475581,0.5775432,0.7357111,0.5806946,0.7376829,0.5828265,0.7402837,0.58478194,0.74298924,0.58613354,0.7485273,0.5793567,0.7340313,0.5735312,0.73381805,0.575008,0.7346313,0.57237774,0.735572,0.57159215,0.7368182,0.5712128,0.7383479,0.5712778,0.7340448,0.57675135,0.7401536,0.5718316,0.74224454,0.5729309,0.74427694,0.5743991,0.7459171,0.5759908,0.7471879,0.57766926,0.749104,0.58115464,0.74926776,0.5828625,0.74524176,0.58663315,0.7469965,0.58641094,0.748242,0.58561367,0.74899054,0.58438677,0.7347673,0.5786865,0.74809504,0.5793892,0.7360359,0.5807162,0.7378851,0.5827191,0.74032205,0.5845525,0.7428571,0.58581775,0.7486306,0.581094,0.73504615,0.57266563,0.73448753,0.57376283,0.7342931,0.5751616,0.735927,0.5719135,0.73709756,0.5715445,0.73853725,0.57159644,0.74023855,0.57211196,0.73451173,0.57680666,0.7422093,0.5731458,0.7441242,0.5745315,0.7456674,0.5760361,0.74686027,0.5776232,0.7477082,0.57924896,0.74877614,0.58271223,0.7485068,0.58415514,0.7449702,0.58628327,0.74662006,0.5860704,0.7477956,0.5853159,0.7351938,0.578627,0.7482044,0.5808586,0.7363848,0.5805308,0.73811615,0.58240545,0.7403945,0.58411944,0.74276423,0.5853022,0.74833286,0.5823843,0.7362809,0.57201445,0.7354558,0.57273227,0.73493636,0.5737741,0.7347609,0.5750969,0.7373818,0.57165813,0.73873913,0.57170033,0.7403455,0.572183,0.7422074,0.5731583,0.7349735,0.57664746,0.74401593,0.57446855,0.7454716,0.5758925,0.74659395,0.5773942,0.74738836,0.57893056,0.7478491,0.58044916,0.74807143,0.5837422,0.7473968,0.5848323,0.7447418,0.5857381,0.7462896,0.5855394,0.73561984,0.5783581,0.74796206,0.58188534,0.7367408,0.5801429,0.7383647,0.58189744,0.7404978,0.5835008,0.74271595,0.58460903,0.7477082,0.58316016,0.7376586,0.571519,0.73661745,0.5718623,0.7358407,0.5725483,0.735356,0.5735397,0.73519826,0.57479435,0.7389462,0.57155514,0.7404728,0.5720115,0.7422437,0.5729382,0.74396354,0.57418513,0.7354075,0.5762607,0.7453461,0.5755401,0.7464095,0.57696784,0.7471589,0.5784259,0.74758947,0.5798638,0.74768925,0.5812197,0.74706733,0.5841803,0.746023,0.5848389,0.744569,0.58502054,0.736025,0.5778742,0.7474416,0.58241916,0.7370873,0.5795542,0.7386201,0.5812038,0.7406295,0.58271194,0.7427181,0.5837574,0.7468293,0.5833748,0.73791516,0.57108724,0.7369193,0.57141906,0.73915076,0.5711203,0.7361803,0.5720791,0.7357238,0.57303023,0.7355818,0.5742307,0.74061906,0.57155854,0.74232394,0.57245046,0.7439796,0.573651,0.74530905,0.57495475,0.73579097,0.57563,0.7463291,0.5763261,0.7470448,0.57772356,0.74745244,0.5790977,0.7475414,0.58038896,0.7472976,0.58152664,0.7458385,0.5839876,0.7444647,0.58415073,0.73638856,0.5771663,0.74670607,0.5824282,0.73813754,0.5703165,0.7371681,0.5706408,0.74707437,0.57680845,0.7463777,0.5754469,0.7374078,0.5787635,0.73887205,0.58033085,0.74078727,0.58176535,0.742777,0.5827639,0.74575543,0.58300114,0.73934495,0.5703491,0.740783,0.5707789,0.7364528,0.57128495,0.73601574,0.5722113,0.7358869,0.5733779,0.74245477,0.5716538,0.7440784,0.57283074,0.74538076,0.5741071,0.73609996,0.574735,0.74746764,0.57814294,0.74754846,0.5793922,0.74730456,0.58048785,0.74672306,0.58135086,0.7444424,0.5831461,0.73668945,0.57622206,0.74579453,0.5818934,0.7383107,0.5691524,0.73734355,0.5694759,0.73951983,0.56918657,0.74727905,0.5756612,0.74658364,0.57430273,0.74766827,0.576988,0.73768574,0.57776636,0.7391104,0.57928145,0.74096954,0.58067054,0.7428998,0.5816423,0.7445168,0.5820218,0.74096346,0.5696195,0.7426441,0.5704995,0.73663425,0.57011867,0.7362058,0.5710419,0.73608685,0.5722024,0.7442764,0.57168204,0.7455845,0.57296216,0.7363092,0.5735499,0.74774355,0.57822526,0.747494,0.57930505,0.7469084,0.58015037,0.7459789,0.5806756,0.7369052,0.57502437,0.74470437,0.5807901,0.7379036,0.57655394,0.7393248,0.5780551,0.74117506,0.579434,0.7430948,0.5804036,0.23363093,0.37729645]);
-
-
-// prettier-ignore
-const normals = null;
-
-// prettier-ignore
-const faces = new Uint32Array([0,1,2,3,0,2,1,0,4,4,5,1,1,6,2,7,3,2,0,3,8,8,4,0,9,10,5,5,4,9,5,11,6,6,1,5,6,12,2,13,7,2,14,8,3,3,7,14,15,9,4,4,8,15,16,17,10,10,9,16,10,18,11,11,5,10,11,19,12,12,6,11,12,20,2,21,13,2,22,14,7,7,13,22,23,15,8,8,14,23,24,16,9,9,15,24,25,26,17,17,16,25,17,27,18,18,10,17,18,28,19,19,11,18,19,29,20,20,12,19,20,30,2,31,21,2,32,22,13,13,21,32,33,23,14,14,22,33,34,24,15,15,23,34,35,25,16,16,24,35,36,37,26,26,25,36,26,38,27,27,17,26,27,39,28,28,18,27,28,40,29,29,19,28,29,41,30,30,20,29,30,42,2,43,31,2,44,32,21,21,31,44,45,33,22,22,32,45,46,34,23,23,33,46,47,35,24,24,34,47,48,36,25,25,35,48,49,50,37,37,36,49,37,51,38,38,26,37,38,52,39,39,27,38,39,53,40,40,28,39,40,54,41,41,29,40,41,55,42,42,30,41,42,56,2,57,43,2,58,44,31,31,43,58,59,45,32,32,44,59,60,46,33,33,45,60,61,47,34,34,46,61,62,48,35,35,47,62,63,49,36,36,48,63,64,65,50,50,49,64,50,66,51,51,37,50,51,67,52,52,38,51,52,68,53,53,39,52,53,69,54,54,40,53,54,70,55,55,41,54,55,71,56,56,42,55,56,72,2,73,57,2,74,58,43,43,57,74,75,59,44,44,58,75,76,60,45,45,59,76,77,61,46,46,60,77,78,62,47,47,61,78,79,63,48,48,62,79,80,64,49,49,63,80,81,82,65,65,64,81,65,83,66,66,50,65,66,84,67,67,51,66,67,85,68,68,52,67,68,86,69,69,53,68,69,87,70,70,54,69,70,88,71,71,55,70,71,89,72,72,56,71,72,90,2,91,73,2,92,74,57,57,73,92,93,75,58,58,74,93,94,76,59,59,75,94,95,77,60,60,76,95,96,78,61,61,77,96,97,79,62,62,78,97,98,80,63,63,79,98,80,99,81,81,64,80,100,101,82,82,81,100,82,102,83,83,65,82,83,103,84,84,66,83,84,104,85,85,67,84,85,105,86,86,68,85,86,106,87,87,69,86,87,107,88,88,70,87,88,108,89,89,71,88,89,109,90,90,72,89,90,110,2,111,91,2,112,92,73,73,91,112,113,93,74,74,92,113,114,94,75,75,93,114,115,95,76,76,94,115,116,96,77,77,95,116,117,97,78,78,96,117,118,98,79,79,97,118,98,119,99,99,80,98,99,120,100,100,81,99,100,121,122,122,101,100,101,123,102,102,82,101,83,102,124,124,103,83,103,125,104,104,84,103,104,126,105,105,85,104,105,127,106,106,86,105,106,128,107,107,87,106,107,129,108,108,88,107,108,130,109,109,89,108,109,131,110,110,90,109,110,132,2,133,111,2,134,112,91,91,111,134,135,113,92,92,112,135,136,114,93,93,113,136,137,115,94,94,114,137,138,116,95,95,115,138,139,117,96,96,116,139,140,118,97,97,117,140,118,141,119,119,98,118,119,142,120,120,99,119,120,143,121,121,100,120,101,122,144,144,123,101,102,123,145,145,124,102,103,124,146,146,125,103,125,147,126,126,104,125,126,148,127,127,105,126,127,149,128,128,106,127,128,150,129,129,107,128,129,151,130,130,108,129,130,152,131,131,109,130,131,153,132,132,110,131,132,154,2,155,133,2,156,134,111,111,133,156,157,135,112,112,134,157,158,136,113,113,135,158,159,137,114,114,136,159,160,138,115,115,137,160,161,139,116,116,138,161,162,140,117,117,139,162,140,163,141,141,118,140,141,164,142,142,119,141,142,165,143,143,120,142,166,167,121,121,143,166,167,168,122,122,121,167,125,146,169,169,147,125,147,170,148,148,126,147,148,171,149,149,127,148,149,172,150,150,128,149,150,173,151,151,129,150,151,174,152,152,130,151,152,175,153,153,131,152,153,176,154,154,132,153,154,177,2,178,155,2,179,156,133,133,155,179,180,157,134,134,156,180,181,158,135,135,157,181,182,159,136,136,158,182,183,160,137,137,159,183,184,161,138,138,160,184,185,162,139,139,161,185,186,163,140,140,162,186,163,187,164,164,141,163,164,188,165,165,142,164,189,166,143,143,165,189,190,191,167,167,166,190,191,192,168,168,167,191,168,193,144,144,122,168,123,144,194,194,145,123,124,145,195,195,146,124,169,196,170,170,147,169,170,197,171,171,148,170,171,198,172,172,149,171,172,199,173,173,150,172,173,200,174,174,151,173,174,201,175,175,152,174,175,202,176,176,153,175,176,203,177,177,154,176,177,204,2,205,178,2,206,179,155,155,178,206,207,180,156,156,179,207,208,181,157,157,180,208,209,182,158,158,181,209,210,183,159,159,182,210,211,184,160,160,183,211,212,185,161,161,184,212,213,186,162,162,185,213,214,187,163,163,186,214,187,215,188,188,164,187,216,189,165,165,188,216,217,190,166,166,189,217,218,219,191,191,190,218,219,220,192,192,191,219,192,221,193,193,168,192,193,222,194,194,144,193,146,195,223,223,169,146,169,223,224,224,196,169,196,225,197,197,170,196,197,226,198,198,171,197,198,227,199,199,172,198,199,228,200,200,173,199,200,229,201,201,174,200,201,230,202,202,175,201,202,231,203,203,176,202,203,232,204,204,177,203,204,233,2,234,205,2,235,206,178,178,205,235,236,207,179,179,206,236,237,208,180,180,207,237,238,209,181,181,208,238,239,210,182,182,209,239,240,211,183,183,210,240,241,212,184,184,211,241,242,213,185,185,212,242,243,214,186,186,213,243,244,215,187,187,214,244,245,216,188,188,215,245,246,217,189,189,216,246,247,218,190,190,217,247,248,249,219,219,218,248,249,250,220,220,219,249,220,251,221,221,192,220,221,252,222,222,193,221,222,253,254,254,194,222,145,194,254,254,195,145,224,255,225,225,196,224,225,256,226,226,197,225,226,257,227,227,198,226,227,258,228,228,199,227,228,259,229,229,200,228,229,260,230,230,201,229,230,261,231,231,202,230,231,262,232,232,203,231,232,263,233,233,204,232,233,264,2,265,234,2,266,235,205,205,234,266,267,236,206,206,235,267,268,237,207,207,236,268,269,238,208,208,237,269,270,239,209,209,238,270,271,240,210,210,239,271,272,241,211,211,240,272,241,273,242,242,212,241,242,274,243,243,213,242,275,244,214,214,243,275,276,245,215,215,244,276,277,246,216,216,245,277,278,247,217,217,246,278,279,248,218,218,247,279,280,281,249,249,248,280,281,282,250,250,249,281,250,283,251,251,220,250,251,284,252,252,221,251,252,285,253,253,222,252,253,286,287,287,254,253,195,254,287,287,223,195,223,287,288,288,224,223,288,289,255,255,224,288,255,290,256,256,225,255,226,256,291,291,257,226,257,292,258,258,227,257,258,293,259,259,228,258,259,294,260,260,229,259,260,295,261,261,230,260,261,296,262,262,231,261,262,297,263,263,232,262,263,298,264,264,233,263,264,299,2,300,265,2,301,266,234,234,265,301,302,267,235,235,266,302,303,268,236,236,267,303,304,269,237,237,268,304,305,270,238,238,269,305,306,271,239,239,270,306,307,272,240,240,271,307,272,308,273,273,241,272,273,309,274,274,242,273,274,310,275,275,243,274,311,276,244,244,275,311,312,277,245,245,276,312,313,278,246,246,277,313,314,279,247,247,278,314,315,280,248,248,279,315,316,317,281,281,280,316,317,318,282,282,281,317,282,319,283,283,250,282,283,320,284,284,251,283,284,321,285,285,252,284,285,322,286,286,253,285,286,323,288,288,287,286,323,324,289,289,288,323,289,325,290,290,255,289,256,290,326,326,291,256,257,291,327,327,292,257,292,328,293,293,258,292,293,329,294,294,259,293,294,330,295,295,260,294,295,331,296,296,261,295,296,332,297,297,262,296,297,333,298,298,263,297,298,334,299,299,264,298,299,335,2,336,300,2,337,301,265,265,300,337,338,302,266,266,301,338,339,303,267,267,302,339,340,304,268,268,303,340,341,305,269,269,304,341,342,306,270,270,305,342,343,307,271,271,306,343,307,344,308,308,272,307,308,345,309,309,273,308,309,346,310,310,274,309,347,311,275,275,310,347,348,312,276,276,311,348,349,313,277,277,312,349,350,314,278,278,313,350,351,315,279,279,314,351,352,316,280,280,315,352,353,354,317,317,316,353,354,355,318,318,317,354,318,356,319,319,282,318,319,357,320,320,283,319,320,358,321,321,284,320,321,359,322,322,285,321,322,360,323,323,286,322,360,361,324,324,323,360,324,362,325,325,289,324,290,325,363,363,326,290,292,327,364,364,328,292,328,365,329,329,293,328,329,366,330,330,294,329,330,367,331,331,295,330,331,368,332,332,296,331,332,369,333,333,297,332,333,370,334,334,298,333,334,371,335,335,299,334,335,372,2,373,336,2,374,337,300,300,336,374,375,338,301,301,337,375,376,339,302,302,338,376,377,340,303,303,339,377,378,341,304,304,340,378,379,342,305,305,341,379,380,343,306,306,342,380,381,344,307,307,343,381,344,382,345,345,308,344,345,383,346,346,309,345,384,347,310,310,346,384,385,348,311,311,347,385,386,349,312,312,348,386,387,350,313,313,349,387,388,351,314,314,350,388,389,352,315,315,351,389,390,353,316,316,352,390,391,392,354,354,353,391,392,393,355,355,354,392,355,394,356,356,318,355,356,395,357,357,319,356,357,396,358,358,320,357,358,397,359,359,321,358,359,398,360,360,322,359,398,399,361,361,360,398,361,400,362,362,324,361,362,401,363,363,325,362,291,326,402,402,327,291,328,364,403,403,365,328,365,404,366,366,329,365,366,405,367,367,330,366,367,406,368,368,331,367,368,407,369,369,332,368,369,408,370,370,333,369,370,409,371,371,334,370,371,410,372,372,335,371,372,411,2,412,373,2,413,374,336,336,373,413,414,375,337,337,374,414,415,376,338,338,375,415,416,377,339,339,376,416,417,378,340,340,377,417,418,379,341,341,378,418,419,380,342,342,379,419,420,381,343,343,380,420,421,382,344,344,381,421,382,422,383,383,345,382,423,384,346,346,383,423,424,385,347,347,384,424,425,386,348,348,385,425,426,387,349,349,386,426,427,388,350,350,387,427,428,389,351,351,388,428,429,390,352,352,389,429,430,391,353,353,390,430,431,432,392,392,391,431,432,433,393,393,392,432,393,434,394,394,355,393,394,435,395,395,356,394,395,436,396,396,357,395,396,437,397,397,358,396,397,438,398,398,359,397,438,439,399,399,398,438,399,440,400,400,361,399,400,441,401,401,362,400,401,442,443,443,363,401,326,363,443,443,402,326,327,402,444,444,364,327,403,445,404,404,365,403,404,446,405,405,366,404,405,447,406,406,367,405,406,448,407,407,368,406,407,449,408,408,369,407,408,450,409,409,370,408,409,451,410,410,371,409,410,452,411,411,372,410,411,453,2,454,412,2,455,413,373,373,412,455,456,414,374,374,413,456,457,415,375,375,414,457,458,416,376,376,415,458,459,417,377,377,416,459,460,418,378,378,417,460,461,419,379,379,418,461,419,462,420,420,380,419,463,421,381,381,420,463,421,464,422,422,382,421,465,423,383,383,422,465,466,424,384,384,423,466,467,425,385,385,424,467,468,426,386,386,425,468,469,427,387,387,426,469,470,428,388,388,427,470,471,429,389,389,428,471,472,430,390,390,429,472,473,431,391,391,430,473,474,475,432,432,431,474,475,476,433,433,432,475,433,477,434,434,393,433,434,478,435,435,394,434,435,479,436,436,395,435,436,480,437,437,396,436,437,481,438,438,397,437,481,482,439,439,438,481,439,483,440,440,399,439,440,484,441,441,400,440,441,485,442,442,401,441,442,486,487,487,443,442,364,444,488,488,403,364,403,488,489,489,445,403,445,490,446,446,404,445,446,491,447,447,405,446,447,492,448,448,406,447,448,493,449,449,407,448,449,494,450,450,408,449,450,495,451,451,409,450,451,496,452,452,410,451,452,497,453,453,411,452,453,498,2,499,454,2,500,455,412,412,454,500,501,456,413,413,455,501,502,457,414,414,456,502,503,458,415,415,457,503,504,459,416,416,458,504,505,460,417,417,459,505,506,461,418,418,460,506,461,507,462,462,419,461,462,508,463,463,420,462,463,509,464,464,421,463,510,465,422,422,464,510,511,466,423,423,465,511,512,467,424,424,466,512,513,468,425,425,467,513,514,469,426,426,468,514,515,470,427,427,469,515,516,471,428,428,470,516,517,472,429,429,471,517,518,473,430,430,472,518,519,474,431,431,473,519,520,521,475,475,474,520,521,522,476,476,475,521,476,523,477,477,433,476,477,524,478,478,434,477,478,525,479,479,435,478,479,526,480,480,436,479,480,527,481,481,437,480,527,528,482,482,481,527,482,529,483,483,439,482,483,530,484,484,440,483,484,531,485,485,441,484,485,532,486,486,442,485,486,533,534,534,487,486,487,444,402,402,443,487,491,535,492,492,447,491,492,536,493,493,448,492,493,537,494,494,449,493,494,538,495,495,450,494,495,539,496,496,451,495,496,540,497,497,452,496,497,541,498,498,453,497,498,542,2,543,499,2,544,500,454,454,499,544,545,501,455,455,500,545,546,502,456,456,501,546,547,503,457,457,502,547,548,504,458,458,503,548,549,505,459,459,504,549,550,506,460,460,505,550,506,551,507,507,461,506,507,552,508,508,462,507,508,553,509,509,463,508,554,510,464,464,509,554,555,511,465,465,510,555,556,512,466,466,511,556,557,513,467,467,512,557,558,514,468,468,513,558,559,515,469,469,514,559,560,516,470,470,515,560,561,517,471,471,516,561,562,518,472,472,517,562,563,519,473,473,518,563,564,520,474,474,519,564,565,566,521,521,520,565,566,567,522,522,521,566,522,568,523,523,476,522,523,569,524,524,477,523,524,570,525,525,478,524,525,571,526,526,479,525,526,572,527,527,480,526,572,573,528,528,527,572,528,574,529,529,482,528,529,575,530,530,483,529,530,576,531,531,484,530,531,577,532,532,485,531,532,578,533,533,486,532,533,579,580,580,534,533,534,488,444,444,487,534,488,534,580,580,489,488,581,490,445,445,489,581,582,491,446,446,490,582,491,582,583,583,535,491,535,584,536,536,492,535,536,585,537,537,493,536,537,586,538,538,494,537,538,587,539,539,495,538,539,588,540,540,496,539,540,589,541,541,497,540,541,590,542,542,498,541,542,591,2,591,543,2,592,544,499,499,543,592,593,545,500,500,544,593,594,546,501,501,545,594,595,547,502,502,546,595,596,548,503,503,547,596,597,549,504,504,548,597,598,550,505,505,549,598,550,599,551,551,506,550,551,600,552,552,507,551,552,601,553,553,508,552,602,554,509,509,553,602,603,555,510,510,554,603,604,556,511,511,555,604,605,557,512,512,556,605,606,558,513,513,557,606,607,559,514,514,558,607,608,560,515,515,559,608,609,561,516,516,560,609,610,562,517,517,561,610,611,563,518,518,562,611,612,564,519,519,563,612,613,565,520,520,564,613,614,615,616,566,565,615,614,566,615,566,614,617,618,567,617,567,566,617,567,619,568,568,522,567,568,620,569,569,523,568,569,621,570,570,524,569,570,622,571,571,525,570,571,623,572,572,526,571,623,624,573,573,572,623,573,625,574,574,528,573,574,626,575,575,529,574,575,627,576,576,530,575,576,628,577,577,531,576,577,629,630,578,532,577,578,631,579,579,533,578,579,632,633,633,580,579,489,580,633,633,581,489,490,581,634,634,582,490,535,583,635,635,584,535,584,636,585,585,536,584,585,637,586,586,537,585,586,638,587,587,538,586,587,639,588,588,539,587,588,640,589,589,540,588,589,641,590,590,541,589,590,642,591,591,542,590,642,592,543,543,591,642,643,593,544,544,592,643,644,594,545,545,593,644,645,595,546,546,594,645,646,596,547,547,595,646,647,597,548,548,596,647,648,598,549,549,597,648,649,599,550,550,598,649,599,650,600,600,551,599,600,651,601,601,552,600,652,602,553,553,601,652,653,603,554,554,602,653,654,604,555,555,603,654,655,605,556,556,604,655,656,606,557,557,605,656,657,607,558,558,606,657,658,608,559,559,607,658,659,609,560,560,608,659,660,610,561,561,609,660,661,611,562,562,610,661,662,612,563,563,611,662,663,613,564,564,612,663,615,664,665,565,613,664,615,565,664,666,618,667,619,567,618,666,619,618,619,668,620,620,568,619,620,669,621,621,569,620,621,670,622,622,570,621,622,671,623,623,571,622,671,672,624,624,623,671,624,673,625,625,573,624,625,674,626,626,574,625,626,675,627,627,575,626,627,676,628,628,576,627,628,677,629,629,577,628,678,679,631,631,578,678,631,680,632,632,579,631,632,681,682,682,633,632,582,634,683,683,583,582,635,684,636,636,584,635,636,685,637,637,585,636,637,686,638,638,586,637,638,687,639,639,587,638,639,688,640,640,588,639,640,689,641,641,589,640,641,690,642,642,590,641,690,643,592,592,642,690,691,644,593,593,643,691,692,645,594,594,644,692,693,646,595,595,645,693,694,647,596,596,646,694,695,648,597,597,647,695,696,649,598,598,648,696,697,650,599,599,649,697,650,698,651,651,600,650,699,652,601,601,651,699,700,653,602,602,652,700,701,654,603,603,653,701,702,655,604,604,654,702,703,656,605,605,655,703,704,657,606,606,656,704,705,658,607,607,657,705,706,659,608,608,658,706,707,660,609,609,659,707,708,661,610,610,660,708,709,662,611,611,661,709,710,663,612,612,662,710,664,613,663,663,711,664,712,668,619,619,666,712,668,713,669,669,620,668,669,714,670,670,621,669,670,715,671,671,622,670,715,716,672,672,671,715,672,717,673,673,624,672,673,718,674,674,625,673,674,719,675,675,626,674,675,720,676,676,627,675,676,721,677,677,628,676,677,722,723,723,629,677,679,724,680,680,631,679,680,725,681,681,632,680,681,726,727,727,682,681,682,634,581,581,633,682,583,683,728,728,635,583,635,728,729,729,684,635,684,730,685,685,636,684,685,731,686,686,637,685,686,732,687,687,638,686,687,733,688,688,639,687,688,734,689,689,640,688,689,735,690,690,641,689,735,691,643,643,690,735,736,692,644,644,691,736,737,693,645,645,692,737,738,694,646,646,693,738,739,695,647,647,694,739,740,696,648,648,695,740,741,697,649,649,696,741,742,698,650,650,697,742,743,699,651,651,698,743,744,700,652,652,699,744,745,701,653,653,700,745,746,702,654,654,701,746,747,703,655,655,702,747,748,704,656,656,703,748,749,705,657,657,704,749,750,706,658,658,705,750,751,707,659,659,706,751,752,708,660,660,707,752,753,709,661,661,708,753,754,710,662,662,709,754,711,663,710,710,755,711,756,713,668,668,712,756,713,757,714,714,669,713,714,758,715,715,670,714,758,759,716,716,715,758,716,760,717,717,672,716,717,761,718,718,673,717,718,762,719,719,674,718,719,763,720,720,675,719,720,764,721,721,676,720,721,765,722,722,677,721,766,767,724,724,679,766,724,768,725,725,680,724,725,769,726,726,681,725,726,770,771,771,727,726,727,683,634,634,682,727,729,772,730,730,684,729,730,773,731,731,685,730,731,774,732,732,686,731,732,775,733,733,687,732,733,776,734,734,688,733,734,777,735,735,689,734,777,736,691,691,735,777,778,737,692,692,736,778,779,738,693,693,737,779,780,739,694,694,738,780,739,781,740,740,695,739,740,782,741,741,696,740,783,742,697,697,741,783,784,743,698,698,742,784,785,744,699,699,743,785,786,745,700,700,744,786,787,746,701,701,745,787,788,747,702,702,746,788,789,748,703,703,747,789,790,749,704,704,748,790,791,750,705,705,749,791,792,751,706,706,750,792,793,752,707,707,751,793,794,753,708,708,752,794,795,754,709,709,753,795,755,710,754,754,796,755,797,757,713,713,756,797,757,798,758,758,714,757,798,799,759,759,758,798,759,800,760,760,716,759,760,801,761,761,717,760,761,802,762,762,718,761,762,803,763,763,719,762,763,804,764,764,720,763,764,805,765,765,721,764,806,807,767,767,766,806,767,808,768,768,724,767,768,809,769,769,725,768,769,810,770,770,726,769,770,811,812,812,771,770,771,728,683,683,727,771,728,771,812,812,729,728,812,813,772,772,729,812,772,814,773,773,730,772,731,773,815,815,774,731,774,816,775,775,732,774,775,817,776,776,733,775,776,818,777,777,734,776,818,778,736,736,777,818,819,779,737,737,778,819,820,780,738,738,779,820,780,821,781,781,739,780,781,822,782,782,740,781,782,823,783,783,741,782,824,784,742,742,783,824,825,785,743,743,784,825,826,786,744,744,785,826,827,787,745,745,786,827,828,788,746,746,787,828,829,789,747,747,788,829,830,790,748,748,789,830,831,791,749,749,790,831,832,792,750,750,791,832,833,793,751,751,792,833,834,794,752,752,793,834,835,795,753,753,794,835,796,754,795,795,836,796,837,798,757,757,797,837,838,837,839,799,798,837,838,799,837,799,840,800,800,759,799,800,841,801,801,760,800,801,842,802,802,761,801,802,843,803,803,762,802,803,844,804,804,763,803,804,845,805,805,764,804,846,847,807,807,806,846,807,848,808,808,767,807,808,849,809,809,768,808,809,850,810,810,769,809,810,851,811,811,770,810,811,852,813,813,812,811,813,853,814,814,772,813,773,814,854,854,815,773,774,815,855,855,816,774,816,856,817,817,775,816,817,857,818,818,776,817,857,819,778,778,818,857,858,820,779,779,819,858,820,859,821,821,780,820,821,860,822,822,781,821,822,861,823,823,782,822,862,824,783,783,823,862,863,825,784,784,824,863,864,826,785,785,825,864,865,827,786,786,826,865,866,828,787,787,827,866,867,829,788,788,828,867,868,830,789,789,829,868,869,831,790,790,830,869,870,832,791,791,831,870,871,833,792,792,832,871,872,834,793,793,833,872,873,835,794,794,834,873,836,874,875,795,835,874,836,795,874,876,840,799,799,838,876,840,877,841,841,800,840,841,878,842,842,801,841,842,879,843,843,802,842,843,880,844,844,803,843,844,881,845,845,804,844,882,883,847,847,846,882,847,884,848,848,807,847,848,885,849,849,808,848,849,886,850,850,809,849,850,887,851,851,810,850,851,888,852,852,811,851,852,889,853,853,813,852,814,853,890,890,854,814,816,855,891,891,856,816,856,892,857,857,817,856,892,858,819,819,857,892,893,859,820,820,858,893,859,894,860,860,821,859,860,895,861,861,822,860,896,862,823,823,861,896,897,863,824,824,862,897,898,864,825,825,863,898,899,865,826,826,864,899,900,866,827,827,865,900,901,867,828,828,866,901,902,868,829,829,867,902,903,869,830,830,868,903,904,870,831,831,869,904,905,871,832,832,870,905,906,872,833,833,871,906,907,873,834,834,872,907,874,835,873,873,908,874,909,877,840,840,876,909,877,910,878,878,841,877,878,911,879,879,842,878,879,912,880,880,843,879,880,913,881,881,844,880,914,915,883,883,882,914,883,916,884,884,847,883,884,917,885,885,848,884,885,918,886,886,849,885,886,919,887,887,850,886,887,920,888,888,851,887,888,921,889,889,852,888,889,922,890,890,853,889,815,854,923,923,855,815,856,891,924,924,892,856,924,893,858,858,892,924,925,894,859,859,893,925,894,926,895,895,860,894,927,896,861,861,895,927,928,897,862,862,896,928,929,898,863,863,897,929,930,899,864,864,898,930,931,900,865,865,899,931,932,901,866,866,900,932,933,902,867,867,901,933,934,903,868,868,902,934,935,904,869,869,903,935,936,905,870,870,904,936,937,906,871,871,905,937,938,907,872,872,906,938,908,873,907,907,939,908,940,910,877,877,909,940,910,941,911,911,878,910,911,942,912,912,879,911,912,943,913,913,880,912,944,945,915,915,914,944,915,946,916,916,883,915,916,947,917,917,884,916,917,948,918,918,885,917,918,949,919,919,886,918,919,950,920,920,887,919,920,951,921,921,888,920,921,952,922,922,889,921,922,953,954,954,890,922,854,890,954,954,923,854,855,923,955,955,891,855,924,956,925,925,893,924,925,957,926,926,894,925,958,927,895,895,926,958,959,928,896,896,927,959,960,929,897,897,928,960,961,930,898,898,929,961,962,931,899,899,930,962,963,932,900,900,931,963,964,933,901,901,932,964,965,934,902,902,933,965,966,935,903,903,934,966,967,936,904,904,935,967,968,937,905,905,936,968,969,938,906,906,937,969,939,907,938,938,970,939,971,941,910,910,940,971,941,972,942,942,911,941,942,973,943,943,912,942,974,975,945,945,944,974,945,976,946,946,915,945,946,977,947,947,916,946,947,978,948,948,917,947,948,979,949,949,918,948,949,980,950,950,919,949,950,981,951,951,920,950,951,982,952,952,921,951,952,983,953,953,922,952,953,984,985,985,954,953,891,955,956,956,924,891,956,986,957,957,925,956,987,958,926,926,957,987,988,959,927,927,958,988,989,960,928,928,959,989,990,961,929,929,960,990,991,962,930,930,961,991,992,963,931,931,962,992,993,964,932,932,963,993,994,965,933,933,964,994,995,966,934,934,965,995,996,967,935,935,966,996,997,968,936,936,967,997,998,969,937,937,968,998,970,938,969,969,999,970,1000,972,941,941,971,1000,972,1001,973,973,942,972,1002,1003,975,975,974,1002,975,1004,976,976,945,975,976,1005,977,977,946,976,977,1006,978,978,947,977,978,1007,979,979,948,978,979,1008,980,980,949,979,980,1009,981,981,950,980,981,1010,982,982,951,981,982,1011,983,983,952,982,983,1012,984,984,953,983,984,1013,986,986,985,984,985,955,923,923,954,985,955,985,986,986,956,955,1013,987,957,957,986,1013,1014,988,958,958,987,1014,1015,989,959,959,988,1015,1016,990,960,960,989,1016,1017,991,961,961,990,1017,1018,992,962,962,991,1018,1019,993,963,963,992,1019,1020,994,964,964,993,1020,1021,995,965,965,994,1021,1022,996,966,966,995,1022,1023,997,967,967,996,1023,1024,998,968,968,997,1024,999,969,998,998,1025,999,1026,1001,972,972,1000,1026,1027,1028,1003,1003,1002,1027,1003,1029,1004,1004,975,1003,1004,1030,1005,1005,976,1004,1005,1031,1006,1006,977,1005,1006,1032,1007,1007,978,1006,1007,1033,1008,1008,979,1007,1008,1034,1009,1009,980,1008,1009,1035,1010,1010,981,1009,1010,1036,1011,1011,982,1010,1011,1037,1012,1012,983,1011,1012,1038,1013,1013,984,1012,1038,1014,987,987,1013,1038,1039,1015,988,988,1014,1039,1040,1016,989,989,1015,1040,1041,1017,990,990,1016,1041,1042,1018,991,991,1017,1042,1043,1019,992,992,1018,1043,1044,1020,993,993,1019,1044,1045,1021,994,994,1020,1045,1046,1022,995,995,1021,1046,1047,1023,996,996,1022,1047,1048,1024,997,997,1023,1048,1025,998,1024,1024,1049,1025,1050,1028,1027,1027,1051,1050,1028,1052,1029,1029,1003,1028,1029,1053,1030,1030,1004,1029,1030,1054,1031,1031,1005,1030,1031,1055,1032,1032,1006,1031,1032,1056,1033,1033,1007,1032,1033,1057,1034,1034,1008,1033,1034,1058,1035,1035,1009,1034,1035,1059,1036,1036,1010,1035,1036,1060,1037,1037,1011,1036,1037,1061,1038,1038,1012,1037,1061,1039,1014,1014,1038,1061,1062,1040,1015,1015,1039,1062,1063,1041,1016,1016,1040,1063,1064,1042,1017,1017,1041,1064,1065,1043,1018,1018,1042,1065,1066,1044,1019,1019,1043,1066,1067,1045,1020,1020,1044,1067,1068,1046,1021,1021,1045,1068,1069,1047,1022,1022,1046,1069,1070,1048,1023,1023,1047,1070,1049,1024,1048,1048,1071,1049,1072,1052,1028,1028,1050,1072,1052,1073,1053,1053,1029,1052,1053,1074,1054,1054,1030,1053,1054,1075,1055,1055,1031,1054,1055,1076,1056,1056,1032,1055,1056,1077,1057,1057,1033,1056,1057,1078,1058,1058,1034,1057,1058,1079,1059,1059,1035,1058,1059,1080,1060,1060,1036,1059,1060,1081,1061,1061,1037,1060,1081,1062,1039,1039,1061,1081,1082,1063,1040,1040,1062,1082,1083,1064,1041,1041,1063,1083,1084,1065,1042,1042,1064,1084,1085,1066,1043,1043,1065,1085,1086,1067,1044,1044,1066,1086,1087,1068,1045,1045,1067,1087,1088,1069,1046,1046,1068,1088,1089,1070,1047,1047,1069,1089,1071,1048,1070,1070,1090,1071,1091,1072,1092,1073,1052,1072,1091,1073,1072,1073,1093,1074,1074,1053,1073,1074,1094,1075,1075,1054,1074,1075,1095,1076,1076,1055,1075,1076,1096,1077,1077,1056,1076,1077,1097,1078,1078,1057,1077,1078,1098,1079,1079,1058,1078,1079,1099,1080,1080,1059,1079,1080,1100,1081,1081,1060,1080,1100,1082,1062,1062,1081,1100,1101,1083,1063,1063,1082,1101,1102,1084,1064,1064,1083,1102,1103,1085,1065,1065,1084,1103,1104,1086,1066,1066,1085,1104,1105,1087,1067,1067,1086,1105,1106,1088,1068,1068,1087,1106,1107,1089,1069,1069,1088,1107,1089,1108,1109,1090,1070,1109,1070,1089,1109,1110,1091,1111,1093,1073,1091,1110,1093,1091,1093,1112,1094,1094,1074,1093,1094,1113,1095,1095,1075,1094,1095,1114,1096,1096,1076,1095,1096,1115,1097,1097,1077,1096,1097,1116,1098,1098,1078,1097,1098,1117,1099,1099,1079,1098,1099,1118,1100,1100,1080,1099,1118,1101,1082,1082,1100,1118,1119,1102,1083,1083,1101,1119,1120,1103,1084,1084,1102,1120,1121,1104,1085,1085,1103,1121,1122,1105,1086,1086,1104,1122,1123,1106,1087,1087,1105,1123,1124,1107,1088,1088,1106,1124,1108,1125,1126,1089,1107,1125,1108,1089,1125,1127,1112,1093,1093,1110,1127,1112,1128,1113,1113,1094,1112,1113,1129,1114,1114,1095,1113,1114,1130,1115,1115,1096,1114,1115,1131,1116,1116,1097,1115,1116,1132,1117,1117,1098,1116,1117,1133,1118,1118,1099,1117,1133,1119,1101,1101,1118,1133,1134,1120,1102,1102,1119,1134,1135,1121,1103,1103,1120,1135,1136,1122,1104,1104,1121,1136,1137,1123,1105,1105,1122,1137,1138,1124,1106,1106,1123,1138,1124,1139,1140,1125,1107,1140,1107,1124,1140,1141,1128,1112,1112,1127,1141,1128,1142,1129,1129,1113,1128,1129,1143,1130,1130,1114,1129,1130,1144,1131,1131,1115,1130,1131,1145,1132,1132,1116,1131,1132,1146,1133,1133,1117,1132,1146,1134,1119,1119,1133,1146,1147,1135,1120,1120,1134,1147,1148,1136,1121,1121,1135,1148,1149,1137,1122,1122,1136,1149,1150,1138,1123,1123,1137,1150,1139,1124,1138,1138,1151,1139,1152,1142,1128,1128,1141,1152,1142,1153,1143,1143,1129,1142,1143,1154,1144,1144,1130,1143,1144,1155,1145,1145,1131,1144,1145,1156,1146,1146,1132,1145,1156,1147,1134,1134,1146,1156,1157,1148,1135,1135,1147,1157,1158,1149,1136,1136,1148,1158,1159,1150,1137,1137,1149,1159,1151,1138,1150,1150,1160,1151,1161,1153,1142,1142,1152,1161,1153,1162,1154,1154,1143,1153,1154,1163,1155,1155,1144,1154,1155,1164,1156,1156,1145,1155,1164,1157,1147,1147,1156,1164,1165,1158,1148,1148,1157,1165,1166,1159,1149,1149,1158,1166,1160,1150,1159,1159,1167,1160,1168,1162,1153,1153,1161,1168,1162,1169,1163,1163,1154,1162,1163,1170,1164,1164,1155,1163,1170,1165,1157,1157,1164,1170,1171,1166,1158,1158,1165,1171,1167,1159,1166,1166,1172,1167,1173,1169,1162,1162,1168,1173,1169,1174,1170,1170,1163,1169,1174,1171,1165,1165,1170,1174,1171,1175,1176,1172,1166,1176,1166,1171,1176,1177,1174,1169,1169,1173,1177,1175,1171,1174,1174,1177,1175,1178,1179,1180,1181,1182,1183,1178,1180,1184,1182,1185,1183,1178,1184,1186,1182,1178,1185,1178,1186,1185,1185,1187,1188,1188,1183,1185,1189,1190,1191,1191,1188,1189,1186,1192,1187,1187,1185,1186,1188,1187,1193,1193,1189,1188,1190,1189,1194,1194,1195,1190,1190,1196,1197,1197,1191,1190,1184,1198,1192,1192,1186,1184,1187,1192,1199,1199,1193,1187,1200,1197,1201,1201,1202,1200,1195,1203,1196,1196,1190,1195,1196,1204,1201,1201,1197,1196,1205,1206,1178,1178,1182,1205,1180,1207,1198,1198,1184,1180,1192,1198,1208,1208,1199,1192,1189,1193,1209,1209,1194,1189,1202,1201,1210,1210,1211,1202,1195,1194,1212,1212,1213,1195,1203,1195,1213,1213,1214,1203,1203,1215,1204,1204,1196,1203,1216,1205,1182,1182,1217,1216,1218,1219,1206,1206,1205,1218,1206,1220,1221,1221,1178,1206,1207,1222,1223,1207,1180,1179,1207,1179,1222,1198,1207,1224,1224,1208,1198,1193,1199,1225,1225,1209,1193,1204,1226,1210,1210,1201,1204,1211,1210,1227,1227,1228,1211,1214,1229,1215,1215,1203,1214,1215,1230,1226,1226,1204,1215,1231,1216,1217,1217,1232,1231,1233,1218,1205,1205,1216,1233,1234,1235,1219,1219,1218,1234,1219,1236,1220,1220,1206,1219,1220,1237,1238,1238,1221,1220,1239,1221,1240,1179,1178,1221,1239,1222,1221,1222,1179,1221,1241,1224,1207,1207,1223,1241,1199,1208,1242,1242,1225,1199,1194,1209,1243,1243,1212,1194,1226,1244,1227,1227,1210,1226,1228,1227,1245,1245,1246,1228,1213,1212,1247,1247,1248,1213,1214,1213,1248,1248,1249,1214,1229,1214,1249,1249,1250,1229,1229,1251,1230,1230,1215,1229,1252,1231,1232,1232,1253,1252,1254,1233,1216,1216,1231,1254,1255,1232,1217,1256,1257,1232,1255,1258,1232,1258,1256,1232,1259,1234,1218,1218,1233,1259,1260,1261,1235,1235,1234,1260,1235,1262,1236,1236,1219,1235,1236,1263,1237,1237,1220,1236,1237,1264,1265,1265,1238,1237,1221,1238,1266,1266,1240,1221,1267,1241,1223,1223,1268,1267,1224,1241,1269,1269,1270,1224,1208,1224,1270,1270,1242,1208,1209,1225,1271,1271,1243,1209,1230,1272,1244,1244,1226,1230,1244,1273,1245,1245,1227,1244,1245,1255,1246,1274,1258,1255,1245,1274,1255,1250,1275,1251,1251,1229,1250,1251,1276,1272,1272,1230,1251,1277,1252,1253,1253,1278,1277,1279,1254,1231,1231,1252,1279,1253,1232,1257,1257,1280,1253,1281,1259,1233,1233,1254,1281,1282,1260,1234,1234,1259,1282,1283,1284,1261,1261,1260,1283,1261,1285,1262,1262,1235,1261,1262,1286,1263,1263,1236,1262,1263,1287,1264,1264,1237,1263,1264,1288,1289,1289,1265,1264,1238,1265,1290,1290,1266,1238,1240,1266,1291,1291,1292,1240,1223,1293,1268,1223,1222,1239,1223,1294,1293,1223,1239,1294,1268,1295,1296,1296,1267,1268,1241,1267,1297,1297,1269,1241,1225,1242,1298,1298,1271,1225,1212,1243,1299,1299,1247,1212,1272,1300,1273,1273,1244,1272,1273,1301,1274,1274,1245,1273,1248,1247,1302,1302,1303,1248,1249,1248,1303,1303,1304,1249,1250,1249,1304,1304,1305,1250,1275,1250,1305,1305,1306,1275,1275,1307,1276,1276,1251,1275,1308,1277,1278,1278,1309,1308,1310,1279,1252,1252,1277,1310,1278,1253,1280,1280,1311,1278,1312,1281,1254,1254,1279,1312,1280,1257,1313,1313,1314,1280,1315,1282,1259,1259,1281,1315,1316,1283,1260,1260,1282,1316,1317,1318,1284,1284,1283,1317,1284,1319,1285,1285,1261,1284,1285,1320,1286,1286,1262,1285,1286,1321,1287,1287,1263,1286,1287,1322,1288,1288,1264,1287,1288,1323,1324,1324,1289,1288,1265,1289,1325,1325,1290,1265,1266,1290,1326,1326,1291,1266,1240,1294,1239,1292,1327,1294,1240,1292,1294,1292,1291,1328,1328,1329,1292,1330,1295,1268,1268,1293,1330,1270,1269,1331,1331,1332,1270,1242,1270,1332,1332,1298,1242,1243,1271,1333,1333,1299,1243,1276,1334,1300,1300,1272,1276,1300,1335,1301,1301,1273,1300,1301,1336,1337,1337,1274,1301,1306,1338,1307,1307,1275,1306,1307,1339,1334,1334,1276,1307,1340,1308,1309,1309,1341,1340,1342,1310,1277,1277,1308,1342,1309,1278,1311,1311,1343,1309,1344,1312,1279,1279,1310,1344,1311,1280,1314,1314,1345,1311,1346,1315,1281,1281,1312,1346,1257,1347,1313,1256,1348,1347,1257,1256,1347,1314,1313,1349,1349,1350,1314,1351,1316,1282,1282,1315,1351,1274,1256,1258,1337,1352,1348,1274,1348,1256,1274,1337,1348,1353,1317,1283,1283,1316,1353,1354,1355,1318,1318,1317,1354,1318,1356,1319,1319,1284,1318,1319,1357,1320,1320,1285,1319,1320,1358,1321,1321,1286,1320,1321,1359,1322,1322,1287,1321,1322,1360,1323,1323,1288,1322,1323,1361,1362,1362,1324,1323,1289,1324,1363,1363,1325,1289,1290,1325,1364,1364,1326,1290,1291,1326,1365,1365,1328,1291,1327,1292,1329,1329,1366,1327,1329,1328,1367,1367,1368,1329,1369,1370,1295,1295,1330,1369,1295,1370,1371,1371,1296,1295,1267,1296,1372,1372,1297,1267,1269,1297,1373,1373,1331,1269,1271,1298,1374,1374,1333,1271,1247,1299,1375,1375,1302,1247,1334,1376,1335,1335,1300,1334,1335,1377,1336,1336,1301,1335,1336,1378,1379,1379,1337,1336,1303,1302,1380,1380,1381,1303,1304,1303,1381,1381,1382,1304,1305,1304,1382,1382,1383,1305,1306,1305,1383,1383,1384,1306,1338,1306,1384,1384,1385,1338,1338,1386,1339,1339,1307,1338,1387,1340,1341,1341,1388,1387,1389,1342,1308,1308,1340,1389,1341,1309,1343,1343,1390,1341,1391,1344,1310,1310,1342,1391,1343,1311,1345,1345,1392,1343,1393,1346,1312,1312,1344,1393,1345,1314,1350,1350,1394,1345,1395,1351,1315,1315,1346,1395,1313,1347,1396,1396,1349,1313,1350,1349,1397,1397,1398,1350,1399,1353,1316,1316,1351,1399,1400,1354,1317,1317,1353,1400,1401,1402,1355,1355,1354,1401,1355,1403,1356,1356,1318,1355,1356,1404,1357,1357,1319,1356,1357,1405,1358,1358,1320,1357,1358,1406,1359,1359,1321,1358,1359,1407,1360,1360,1322,1359,1360,1408,1361,1361,1323,1360,1361,1409,1410,1410,1362,1361,1324,1362,1411,1411,1363,1324,1325,1363,1412,1412,1364,1325,1326,1364,1413,1413,1365,1326,1328,1365,1414,1414,1367,1328,1415,1327,1366,1366,1416,1415,1366,1329,1368,1368,1417,1366,1367,1418,1419,1419,1368,1367,1420,1421,1370,1370,1369,1420,1332,1331,1422,1422,1423,1332,1298,1332,1423,1423,1374,1298,1299,1333,1424,1424,1375,1299,1339,1425,1376,1376,1334,1339,1376,1426,1377,1377,1335,1376,1377,1427,1378,1378,1336,1377,1385,1428,1386,1386,1338,1385,1386,1429,1425,1425,1339,1386,1430,1387,1388,1388,1431,1430,1432,1389,1340,1340,1387,1432,1388,1341,1390,1390,1433,1388,1434,1391,1342,1342,1389,1434,1390,1343,1392,1392,1435,1390,1436,1393,1344,1344,1391,1436,1392,1345,1394,1394,1437,1392,1438,1395,1346,1346,1393,1438,1394,1350,1398,1398,1439,1394,1440,1399,1351,1351,1395,1440,1347,1415,1416,1416,1396,1347,1349,1396,1441,1441,1397,1349,1398,1397,1442,1442,1443,1398,1444,1400,1353,1353,1399,1444,1445,1401,1354,1354,1400,1445,1402,1446,1403,1403,1355,1402,1403,1447,1404,1404,1356,1403,1404,1448,1405,1405,1357,1404,1405,1449,1406,1406,1358,1405,1406,1450,1407,1407,1359,1406,1407,1451,1408,1408,1360,1407,1408,1452,1409,1409,1361,1408,1409,1453,1454,1454,1410,1409,1362,1410,1455,1455,1411,1362,1363,1411,1456,1456,1412,1363,1364,1412,1457,1457,1413,1364,1365,1413,1458,1458,1414,1365,1414,1459,1418,1418,1367,1414,1460,1415,1461,1293,1294,1327,1460,1327,1415,1330,1293,1327,1460,1420,1327,1369,1330,1327,1420,1369,1327,1416,1366,1417,1417,1462,1416,1417,1368,1419,1419,1463,1417,1460,1464,1421,1421,1420,1460,1370,1421,1465,1465,1371,1370,1296,1371,1466,1466,1372,1296,1297,1372,1467,1467,1373,1297,1331,1373,1468,1468,1422,1331,1333,1374,1469,1469,1424,1333,1302,1375,1470,1470,1380,1302,1425,1471,1426,1426,1376,1425,1426,1472,1427,1427,1377,1426,1352,1337,1379,1379,1473,1352,1378,1474,1475,1475,1379,1378,1427,1476,1474,1474,1378,1427,1381,1380,1477,1477,1478,1381,1382,1381,1478,1478,1479,1382,1383,1382,1479,1479,1480,1383,1384,1383,1480,1480,1481,1384,1385,1384,1481,1481,1482,1385,1428,1385,1482,1482,1483,1428,1428,1484,1429,1429,1386,1428,1485,1430,1431,1431,1486,1485,1487,1432,1387,1387,1430,1487,1431,1388,1433,1433,1488,1431,1489,1434,1389,1389,1432,1489,1433,1390,1435,1435,1490,1433,1491,1436,1391,1391,1434,1491,1435,1392,1437,1437,1492,1435,1493,1438,1393,1393,1436,1493,1437,1394,1439,1439,1494,1437,1495,1440,1395,1395,1438,1495,1439,1398,1443,1443,1496,1439,1497,1444,1399,1399,1440,1497,1396,1416,1462,1462,1441,1396,1397,1441,1498,1498,1442,1397,1443,1442,1499,1499,1500,1443,1501,1445,1400,1400,1444,1501,1502,1503,1446,1446,1402,1502,1446,1504,1447,1447,1403,1446,1447,1505,1448,1448,1404,1447,1448,1506,1449,1449,1405,1448,1449,1507,1450,1450,1406,1449,1450,1508,1451,1451,1407,1450,1451,1509,1452,1452,1408,1451,1452,1510,1453,1453,1409,1452,1453,1511,1512,1512,1454,1453,1410,1454,1513,1513,1455,1410,1411,1455,1514,1514,1456,1411,1412,1456,1515,1515,1457,1412,1413,1457,1516,1516,1458,1413,1458,1517,1459,1459,1414,1458,1462,1417,1463,1463,1518,1462,1419,1519,1520,1520,1463,1419,1459,1521,1522,1522,1418,1459,1418,1522,1519,1519,1419,1418,1523,1465,1421,1421,1464,1523,1423,1422,1524,1524,1525,1423,1374,1423,1525,1525,1469,1374,1375,1424,1526,1526,1470,1375,1429,1527,1471,1471,1425,1429,1471,1528,1472,1472,1426,1471,1472,1529,1476,1476,1427,1472,1473,1379,1475,1475,1530,1473,1483,1531,1484,1484,1428,1483,1484,1532,1527,1527,1429,1484,1533,1485,1486,1486,1534,1533,1535,1487,1430,1430,1485,1535,1486,1431,1488,1488,1536,1486,1537,1489,1432,1432,1487,1537,1488,1433,1490,1490,1538,1488,1539,1491,1434,1434,1489,1539,1490,1435,1492,1492,1540,1490,1541,1493,1436,1436,1491,1541,1492,1437,1494,1494,1542,1492,1543,1495,1438,1438,1493,1543,1494,1439,1496,1496,1544,1494,1545,1497,1440,1440,1495,1545,1496,1443,1500,1500,1546,1496,1547,1501,1444,1444,1497,1547,1441,1462,1518,1518,1498,1441,1442,1498,1548,1548,1499,1442,1500,1499,1549,1549,1550,1500,1551,1552,1445,1445,1501,1551,1553,1554,1503,1503,1502,1553,1503,1555,1504,1504,1446,1503,1504,1556,1505,1505,1447,1504,1505,1557,1506,1506,1448,1505,1506,1558,1507,1507,1449,1506,1507,1559,1508,1508,1450,1507,1508,1560,1509,1509,1451,1508,1509,1561,1510,1510,1452,1509,1510,1562,1511,1511,1453,1510,1511,1563,1564,1564,1512,1511,1454,1512,1565,1565,1513,1454,1455,1513,1566,1566,1514,1455,1456,1514,1567,1567,1515,1456,1457,1515,1568,1568,1516,1457,1517,1458,1516,1516,1569,1517,1517,1570,1521,1521,1459,1517,1518,1463,1520,1520,1571,1518,1572,1523,1464,1464,1573,1572,1465,1523,1574,1574,1575,1465,1371,1465,1575,1575,1466,1371,1372,1466,1576,1576,1467,1372,1373,1467,1577,1577,1468,1373,1422,1468,1578,1578,1524,1422,1424,1469,1579,1579,1526,1424,1380,1470,1580,1580,1477,1380,1527,1581,1528,1528,1471,1527,1528,1582,1529,1529,1472,1528,1530,1475,1583,1583,1584,1530,1474,1585,1583,1583,1475,1474,1476,1586,1585,1585,1474,1476,1529,1587,1586,1586,1476,1529,1478,1477,1588,1588,1589,1478,1479,1478,1589,1589,1590,1479,1480,1479,1590,1590,1591,1480,1481,1480,1591,1591,1592,1481,1482,1481,1592,1592,1593,1482,1483,1482,1593,1593,1594,1483,1531,1483,1594,1594,1595,1531,1531,1596,1532,1532,1484,1531,1597,1533,1534,1534,1598,1597,1599,1535,1485,1485,1533,1599,1534,1486,1536,1536,1600,1534,1601,1537,1487,1487,1535,1601,1536,1488,1538,1538,1602,1536,1603,1539,1489,1489,1537,1603,1538,1490,1540,1540,1604,1538,1605,1541,1491,1491,1539,1605,1540,1492,1542,1542,1606,1540,1607,1543,1493,1493,1541,1607,1542,1494,1544,1544,1608,1542,1609,1545,1495,1495,1543,1609,1544,1496,1546,1546,1610,1544,1611,1547,1497,1497,1545,1611,1546,1500,1550,1550,1612,1546,1613,1551,1501,1501,1547,1613,1584,1583,1614,1614,1615,1584,1498,1518,1571,1571,1548,1498,1499,1548,1616,1616,1549,1499,1550,1549,1617,1617,1618,1550,1619,1620,1552,1552,1551,1619,1621,1622,1554,1554,1553,1621,1554,1623,1555,1555,1503,1554,1555,1624,1556,1556,1504,1555,1556,1625,1557,1557,1505,1556,1557,1626,1558,1558,1506,1557,1558,1627,1559,1559,1507,1558,1559,1628,1560,1560,1508,1559,1560,1629,1561,1561,1509,1560,1561,1630,1562,1562,1510,1561,1562,1631,1563,1563,1511,1562,1563,1632,1633,1633,1564,1563,1512,1564,1634,1634,1565,1512,1513,1565,1635,1635,1566,1513,1514,1566,1636,1636,1567,1514,1515,1567,1637,1637,1568,1515,1516,1568,1638,1638,1569,1516,1569,1639,1570,1570,1517,1569,1520,1640,1641,1641,1571,1520,1519,1642,1640,1640,1520,1519,1522,1643,1642,1642,1519,1522,1521,1644,1643,1643,1522,1521,1570,1645,1644,1644,1521,1570,1646,1572,1573,1573,1614,1646,1647,1574,1523,1523,1572,1647,1525,1524,1648,1648,1649,1525,1469,1525,1649,1649,1579,1469,1470,1526,1650,1650,1580,1470,1532,1651,1581,1581,1527,1532,1581,1652,1582,1582,1528,1581,1582,1653,1587,1587,1529,1582,1595,1654,1596,1596,1531,1595,1596,1655,1651,1651,1532,1596,1656,1597,1598,1598,1657,1656,1658,1599,1533,1533,1597,1658,1598,1534,1600,1600,1659,1598,1660,1601,1535,1535,1599,1660,1600,1536,1602,1602,1661,1600,1662,1603,1537,1537,1601,1662,1602,1538,1604,1604,1663,1602,1664,1605,1539,1539,1603,1664,1604,1540,1606,1606,1665,1604,1666,1607,1541,1541,1605,1666,1606,1542,1608,1608,1667,1606,1668,1609,1543,1543,1607,1668,1608,1544,1610,1610,1669,1608,1670,1611,1545,1545,1609,1670,1610,1546,1612,1612,1671,1610,1672,1613,1547,1547,1611,1672,1612,1550,1618,1618,1673,1612,1674,1619,1551,1551,1613,1674,1585,1646,1614,1614,1583,1585,1548,1571,1641,1641,1616,1548,1549,1616,1675,1675,1617,1549,1618,1617,1676,1676,1677,1618,1678,1679,1620,1620,1619,1678,1680,1681,1682,1682,1683,1680,1680,1683,1684,1684,1685,1680,1686,1553,1687,1688,1621,1553,1689,1690,1688,1691,1692,1689,1686,1691,1553,1689,1688,1553,1691,1689,1553,1693,1694,1622,1622,1621,1693,1622,1695,1623,1623,1554,1622,1623,1696,1624,1624,1555,1623,1624,1697,1625,1625,1556,1624,1625,1698,1626,1626,1557,1625,1626,1699,1627,1627,1558,1626,1627,1700,1628,1628,1559,1627,1628,1701,1629,1629,1560,1628,1629,1702,1630,1630,1561,1629,1630,1703,1631,1631,1562,1630,1631,1704,1632,1632,1563,1631,1632,1705,1706,1706,1633,1632,1564,1633,1707,1707,1634,1564,1565,1634,1708,1708,1635,1565,1566,1635,1709,1709,1636,1566,1567,1636,1710,1710,1637,1567,1568,1637,1711,1711,1638,1568,1639,1569,1638,1638,1712,1639,1639,1713,1645,1645,1570,1639,1714,1647,1572,1572,1646,1714,1574,1647,1715,1715,1716,1574,1575,1574,1716,1716,1717,1575,1466,1575,1717,1717,1576,1466,1467,1576,1718,1718,1577,1467,1468,1577,1719,1719,1578,1468,1524,1578,1720,1720,1648,1524,1526,1579,1721,1721,1650,1526,1477,1580,1722,1722,1588,1477,1651,1723,1652,1652,1581,1651,1652,1724,1653,1653,1582,1652,1586,1714,1646,1646,1585,1586,1587,1725,1714,1714,1586,1587,1653,1726,1725,1725,1587,1653,1589,1588,1727,1727,1728,1589,1590,1589,1728,1728,1729,1590,1591,1590,1729,1729,1730,1591,1592,1591,1730,1730,1731,1592,1593,1592,1731,1731,1732,1593,1594,1593,1732,1732,1733,1594,1595,1594,1733,1733,1734,1595,1654,1595,1734,1734,1735,1654,1654,1736,1655,1655,1596,1654,1737,1738,1739,1739,1740,1737,1741,1658,1597,1597,1656,1741,1657,1598,1659,1659,1742,1657,1743,1660,1599,1599,1658,1743,1659,1600,1661,1661,1744,1659,1745,1662,1601,1601,1660,1745,1661,1602,1663,1663,1746,1661,1747,1664,1603,1603,1662,1747,1663,1604,1665,1665,1748,1663,1749,1666,1605,1605,1664,1749,1665,1606,1667,1667,1750,1665,1751,1668,1607,1607,1666,1751,1667,1608,1669,1669,1752,1667,1753,1670,1609,1609,1668,1753,1669,1610,1671,1671,1754,1669,1755,1672,1611,1611,1670,1755,1671,1612,1673,1673,1756,1671,1757,1674,1613,1613,1672,1757,1673,1618,1677,1677,1758,1673,1759,1678,1619,1619,1674,1759,1616,1641,1760,1760,1675,1616,1617,1675,1761,1761,1676,1617,1677,1676,1762,1762,1763,1677,1764,1765,1679,1679,1678,1764,1620,1766,1767,1679,1768,1769,1620,1770,1766,1679,1769,1771,1620,1772,1770,1679,1771,1772,1620,1679,1772,1773,1774,1775,1776,1777,1774,1773,1776,1774,1682,1778,1779,1779,1780,1682,1683,1781,1782,1782,1684,1683,1782,1781,1783,1784,1783,1781,1781,1785,1784,1786,1787,1788,1789,1790,1788,1790,1791,1792,1792,1793,1794,1794,1795,1693,1693,1621,1688,1792,1794,1693,1693,1688,1786,1790,1792,1693,1693,1786,1788,1790,1693,1788,1796,1797,1694,1694,1693,1796,1694,1798,1695,1695,1622,1694,1695,1799,1696,1696,1623,1695,1696,1800,1697,1697,1624,1696,1697,1801,1698,1698,1625,1697,1698,1802,1699,1699,1626,1698,1699,1803,1700,1700,1627,1699,1700,1804,1701,1701,1628,1700,1701,1805,1702,1702,1629,1701,1702,1806,1703,1703,1630,1702,1703,1807,1704,1704,1631,1703,1704,1808,1705,1705,1632,1704,1705,1809,1810,1810,1706,1705,1633,1706,1811,1811,1707,1633,1634,1707,1812,1812,1708,1634,1635,1708,1813,1813,1709,1635,1636,1709,1814,1814,1710,1636,1637,1710,1815,1815,1711,1637,1638,1711,1816,1816,1712,1638,1712,1817,1713,1713,1639,1712,1640,1818,1760,1760,1641,1640,1642,1819,1818,1818,1640,1642,1643,1820,1819,1819,1642,1643,1644,1821,1820,1820,1643,1644,1645,1822,1821,1821,1644,1645,1713,1823,1822,1822,1645,1713,1647,1714,1725,1725,1715,1647,1649,1648,1824,1824,1825,1649,1579,1649,1825,1825,1721,1579,1580,1650,1826,1826,1722,1580,1655,1827,1723,1723,1651,1655,1723,1828,1724,1724,1652,1723,1724,1829,1726,1726,1653,1724,1735,1830,1736,1736,1654,1735,1736,1831,1827,1827,1655,1736,1832,1737,1740,1740,1833,1832,1834,1835,1738,1738,1737,1834,1740,1739,1836,1836,1837,1740,1838,1743,1658,1658,1741,1838,1742,1659,1744,1744,1839,1742,1840,1745,1660,1660,1743,1840,1744,1661,1746,1746,1841,1744,1842,1747,1662,1662,1745,1842,1746,1663,1748,1748,1843,1746,1844,1749,1664,1664,1747,1844,1748,1665,1750,1750,1845,1748,1846,1751,1666,1666,1749,1846,1750,1667,1752,1752,1847,1750,1848,1753,1668,1668,1751,1848,1752,1669,1754,1754,1849,1752,1850,1755,1670,1670,1753,1850,1754,1671,1756,1756,1851,1754,1852,1757,1672,1672,1755,1852,1756,1673,1758,1758,1853,1756,1854,1759,1674,1674,1757,1854,1758,1677,1763,1763,1855,1758,1856,1764,1678,1678,1759,1856,1675,1760,1857,1857,1761,1675,1676,1761,1858,1858,1762,1676,1763,1762,1859,1859,1860,1763,1861,1862,1765,1765,1764,1861,1863,1774,1777,1777,1864,1863,1683,1682,1780,1780,1865,1683,1781,1683,1865,1865,1866,1781,1784,1785,1867,1686,1868,1869,1869,1691,1686,1870,1796,1693,1693,1795,1870,1871,1872,1797,1797,1796,1871,1797,1873,1798,1798,1694,1797,1798,1874,1799,1799,1695,1798,1799,1875,1800,1800,1696,1799,1800,1876,1801,1801,1697,1800,1801,1877,1802,1802,1698,1801,1802,1878,1803,1803,1699,1802,1803,1879,1804,1804,1700,1803,1804,1880,1805,1805,1701,1804,1805,1881,1806,1806,1702,1805,1806,1882,1807,1807,1703,1806,1807,1883,1808,1808,1704,1807,1808,1884,1809,1809,1705,1808,1809,1885,1886,1886,1810,1809,1706,1810,1887,1887,1811,1706,1707,1811,1888,1888,1812,1707,1708,1812,1889,1889,1813,1708,1709,1813,1890,1890,1814,1709,1710,1814,1891,1891,1815,1710,1711,1815,1892,1892,1816,1711,1817,1712,1816,1816,1893,1817,1817,1894,1823,1823,1713,1817,1716,1715,1895,1895,1896,1716,1717,1716,1896,1896,1897,1717,1576,1717,1897,1897,1718,1576,1577,1718,1898,1898,1719,1577,1578,1719,1899,1899,1720,1578,1648,1720,1900,1900,1824,1648,1650,1721,1901,1901,1826,1650,1588,1722,1902,1902,1727,1588,1827,1903,1828,1828,1723,1827,1828,1904,1829,1829,1724,1828,1726,1895,1715,1715,1725,1726,1829,1905,1895,1895,1726,1829,1728,1727,1906,1906,1907,1728,1729,1728,1907,1907,1908,1729,1730,1729,1908,1908,1909,1730,1731,1730,1909,1909,1910,1731,1732,1731,1910,1910,1911,1732,1733,1732,1911,1911,1912,1733,1734,1733,1912,1912,1913,1734,1735,1734,1913,1913,1914,1735,1830,1735,1914,1914,1915,1830,1830,1916,1831,1831,1736,1830,1917,1832,1833,1833,1918,1917,1919,1834,1737,1737,1832,1919,1833,1740,1837,1837,1920,1833,1921,1922,1835,1835,1834,1921,1837,1836,1923,1923,1924,1837,1925,1840,1743,1743,1838,1925,1839,1744,1841,1841,1926,1839,1927,1842,1745,1745,1840,1927,1841,1746,1843,1843,1928,1841,1929,1844,1747,1747,1842,1929,1843,1748,1845,1845,1930,1843,1931,1846,1749,1749,1844,1931,1845,1750,1847,1847,1932,1845,1933,1848,1751,1751,1846,1933,1847,1752,1849,1849,1934,1847,1935,1850,1753,1753,1848,1935,1849,1754,1851,1851,1936,1849,1937,1852,1755,1755,1850,1937,1851,1756,1853,1853,1938,1851,1939,1854,1757,1757,1852,1939,1853,1758,1855,1855,1940,1853,1941,1856,1759,1759,1854,1941,1855,1763,1860,1860,1942,1855,1943,1861,1764,1764,1856,1943,1818,1944,1857,1857,1760,1818,1761,1857,1945,1945,1858,1761,1762,1858,1946,1946,1859,1762,1860,1859,1947,1947,1948,1860,1949,1950,1862,1862,1861,1949,1862,1870,1795,1795,1765,1862,1771,1951,1772,1772,1951,1952,1952,1770,1772,1953,1954,1955,1773,1955,1954,1954,1776,1773,1953,1956,1957,1957,1954,1953,1958,1957,1956,1957,1958,1767,1766,1952,1767,1952,1957,1767,1778,1864,1959,1959,1779,1778,1780,1779,1960,1960,1961,1780,1865,1780,1961,1961,1962,1865,1866,1963,1785,1785,1781,1866,1867,1785,1868,1868,1964,1867,1691,1869,1692,1692,1869,1965,1965,1689,1692,1964,1868,1686,1686,1687,1964,1869,1868,1966,1966,1967,1869,1968,1871,1796,1796,1870,1968,1969,1970,1872,1872,1871,1969,1872,1971,1873,1873,1797,1872,1873,1972,1874,1874,1798,1873,1874,1973,1875,1875,1799,1874,1875,1974,1876,1876,1800,1875,1876,1975,1877,1877,1801,1876,1877,1976,1878,1878,1802,1877,1878,1977,1879,1879,1803,1878,1879,1978,1880,1880,1804,1879,1880,1979,1881,1881,1805,1880,1881,1980,1882,1882,1806,1881,1882,1981,1883,1883,1807,1882,1883,1982,1884,1884,1808,1883,1884,1983,1885,1885,1809,1884,1885,1984,1985,1985,1886,1885,1810,1886,1986,1986,1887,1810,1811,1887,1987,1987,1888,1811,1812,1888,1988,1988,1889,1812,1813,1889,1989,1989,1890,1813,1814,1890,1990,1990,1891,1814,1892,1815,1891,1891,1991,1892,1892,1992,1893,1893,1816,1892,1893,1993,1894,1894,1817,1893,1819,1994,1944,1944,1818,1819,1820,1995,1994,1994,1819,1820,1821,1996,1995,1995,1820,1821,1822,1997,1996,1996,1821,1822,1823,1998,1997,1997,1822,1823,1894,1999,1998,1998,1823,1894,1825,1824,2000,2000,2001,1825,1721,1825,2001,2001,1901,1721,1722,1826,2002,2002,1902,1722,1831,2003,1903,1903,1827,1831,1903,2004,1904,1904,1828,1903,1904,2005,1905,1905,1829,1904,1915,2006,1916,1916,1830,1915,1916,2007,2003,2003,1831,1916,2008,1917,1918,1918,2009,2008,2010,1919,1832,1832,1917,2010,1918,1833,1920,1920,2011,1918,2012,1921,1834,1834,1919,2012,1920,1837,1924,1924,2013,1920,2014,2015,1922,1922,1921,2014,1924,1923,2016,2016,2017,1924,2018,1927,1840,1840,1925,2018,1926,1841,1928,1928,2019,1926,2020,1929,1842,1842,1927,2020,1928,1843,1930,1930,2021,1928,2022,1931,1844,1844,1929,2022,1930,1845,1932,1932,2023,1930,2024,1933,1846,1846,1931,2024,1932,1847,1934,1934,2025,1932,2026,1935,1848,1848,1933,2026,1934,1849,1936,1936,2027,1934,2028,1937,1850,1850,1935,2028,1936,1851,1938,1938,2029,1936,2030,1939,1852,1852,1937,2030,1938,1853,1940,1940,2031,1938,2032,1941,1854,1854,1939,2032,1940,1855,1942,1942,2033,1940,2034,1943,1856,1856,1941,2034,1942,1860,1948,1948,2035,1942,2036,1949,1861,1861,1943,2036,1944,2037,1945,1945,1857,1944,1858,1945,2038,2038,1946,1858,1859,1946,2039,2039,1947,1859,1948,1947,2040,2040,2041,1948,2042,2043,1950,1950,1949,2042,1950,1968,1870,1870,1862,1950,2044,2045,2046,2046,2047,2044,2047,2046,2048,1769,2049,1951,1951,1771,1769,1952,1951,2050,2050,2051,1952,1770,1952,1766,1864,1777,2052,2052,1959,1864,1777,1776,2053,2053,2052,1777,1866,1865,1962,1962,2054,1866,1963,1866,2054,2054,2055,1963,1963,1966,1868,1868,1785,1963,1965,1869,1967,1967,2056,1965,1689,1965,1690,1688,2057,1786,1690,1965,2057,1688,1690,2057,1788,2058,1789,1789,2058,2059,2059,1790,1789,1787,2057,2058,2058,1788,1787,1786,2057,1787,2060,1969,1871,1871,1968,2060,2061,2062,1970,1970,1969,2061,1970,2063,1971,1971,1872,1970,1971,2064,1972,1972,1873,1971,1972,2065,1973,1973,1874,1972,1973,2066,1974,1974,1875,1973,1974,2067,1975,1975,1876,1974,1975,2068,1976,1976,1877,1975,1976,2069,1977,1977,1878,1976,1977,2070,1978,1978,1879,1977,1978,2071,1979,1979,1880,1978,1979,2072,1980,1980,1881,1979,1980,2073,1981,1981,1882,1980,1981,2074,1982,1982,1883,1981,1982,2075,1983,1983,1884,1982,1983,2076,1984,1984,1885,1983,1984,2077,2078,2078,1985,1984,1886,1985,2079,2079,1986,1886,1887,1986,2080,2080,1987,1887,1888,1987,2081,2081,1988,1888,1889,1988,2082,2082,1989,1889,1890,1989,2083,2083,1990,1890,1990,2084,1991,1991,1891,1990,1991,2085,1992,1992,1892,1991,1992,2086,1993,1993,1893,1992,1993,2087,1999,1999,1894,1993,1896,1895,1905,1905,2088,1896,1897,1896,2088,2088,2089,1897,1718,1897,2089,2089,1898,1718,1719,1898,2090,2090,1899,1719,1720,1899,2091,2091,1900,1720,1824,1900,2092,2092,2000,1824,1826,1901,2093,2093,2002,1826,1727,1902,2094,2094,1906,1727,2003,2095,2004,2004,1903,2003,2004,2096,2005,2005,1904,2004,2005,2097,2088,2088,1905,2005,1907,1906,2098,2098,2099,1907,1908,1907,2099,2099,2100,1908,1909,1908,2100,2100,2101,1909,1910,1909,2101,2101,2102,1910,1911,1910,2102,2102,2103,1911,1912,1911,2103,2103,2104,1912,1913,1912,2104,2104,2105,1913,1914,1913,2105,2105,2106,1914,1915,1914,2106,2106,2107,1915,2006,1915,2107,2107,2108,2006,2006,2109,2007,2007,1916,2006,2110,2008,2009,2009,2111,2110,2112,2010,1917,1917,2008,2112,2009,1918,2011,2011,2113,2009,2114,2012,1919,1919,2010,2114,2011,1920,2013,2013,2115,2011,2116,2014,1921,1921,2012,2116,2013,1924,2017,2017,2117,2013,2118,2119,2015,2015,2014,2118,2017,2016,2120,2120,2121,2017,2122,2020,1927,1927,2018,2122,2019,1928,2021,2021,2123,2019,2124,2022,1929,1929,2020,2124,2021,1930,2023,2023,2125,2021,2126,2024,1931,1931,2022,2126,2023,1932,2025,2025,2127,2023,2128,2026,1933,1933,2024,2128,2025,1934,2027,2027,2129,2025,2130,2028,1935,1935,2026,2130,2027,1936,2029,2029,2131,2027,2132,2030,1937,1937,2028,2132,2029,1938,2031,2031,2133,2029,2134,2032,1939,1939,2030,2134,2031,1940,2033,2033,2135,2031,2136,2034,1941,1941,2032,2136,2033,1942,2035,2035,2137,2033,2138,2036,1943,1943,2034,2138,2035,1948,2041,2041,2139,2035,2140,2042,1949,1949,2036,2140,1994,2141,2037,2037,1944,1994,2037,2142,2038,2038,1945,2037,1946,2038,2143,2143,2039,1946,1947,2039,2144,2144,2040,1947,2041,2040,2145,2145,2146,2041,2147,2148,2043,2043,2042,2147,2043,2060,1968,1968,1950,2043,2149,2045,2044,2046,2045,2150,2150,2151,2046,2048,2046,2049,2049,2152,2048,2152,2049,1769,1769,1768,2152,1951,2049,2153,2153,2050,1951,2051,2154,1957,1957,1952,2051,1776,1954,2155,2155,2053,1776,1954,1957,2154,2154,2155,1954,1779,1959,2156,2156,1960,1779,1961,1960,2157,2157,2158,1961,1962,1961,2158,2158,2159,1962,2054,1962,2159,2159,2160,2054,2055,2161,1966,1966,1963,2055,2056,2162,2057,2057,1965,2056,1967,1966,2161,2161,2163,1967,2056,1967,2163,2163,2164,2056,1790,2059,1791,1791,2059,2165,2165,1792,1791,2059,2058,2166,2166,2167,2059,2058,2057,2162,2162,2166,2058,2168,2061,1969,1969,2060,2168,1792,2165,1793,2169,2170,2062,2062,2061,2169,2062,2171,2063,2063,1970,2062,2063,2172,2064,2064,1971,2063,2064,2173,2065,2065,1972,2064,2065,2174,2066,2066,1973,2065,2066,2175,2067,2067,1974,2066,2067,2176,2068,2068,1975,2067,2068,2177,2069,2069,1976,2068,2069,2178,2070,2070,1977,2069,2070,2179,2071,2071,1978,2070,2071,2180,2072,2072,1979,2071,2072,2181,2073,2073,1980,2072,2073,2182,2074,2074,1981,2073,2074,2183,2075,2075,1982,2074,2075,2184,2076,2076,1983,2075,2076,2185,2077,2077,1984,2076,2077,2186,2187,2187,2078,2077,1985,2078,2188,2188,2079,1985,1986,2079,2189,2189,2080,1986,1987,2080,2190,2190,2081,1987,1988,2081,2191,2191,2082,1988,1989,2082,2192,2192,2083,1989,1990,2083,2193,2193,2084,1990,2084,2194,2085,2085,1991,2084,2085,2195,2086,2086,1992,2085,2086,2196,2087,2087,1993,2086,1995,2197,2141,2141,1994,1995,1996,2198,2197,2197,1995,1996,1997,2199,2198,2198,1996,1997,1998,2200,2199,2199,1997,1998,1999,2201,2200,2200,1998,1999,2087,2202,2201,2201,1999,2087,2001,2000,2203,2203,2204,2001,1901,2001,2204,2204,2093,1901,1902,2002,2205,2205,2094,1902,2007,2206,2095,2095,2003,2007,2095,2207,2096,2096,2004,2095,2096,2208,2097,2097,2005,2096,2108,2209,2109,2109,2006,2108,2109,2210,2206,2206,2007,2109,2211,2110,2111,2111,2212,2211,2213,2112,2008,2008,2110,2213,2111,2009,2113,2113,2214,2111,2215,2114,2010,2010,2112,2215,2113,2011,2115,2115,2216,2113,2217,2116,2012,2012,2114,2217,2115,2013,2117,2117,2218,2115,2219,2118,2014,2014,2116,2219,2117,2017,2121,2121,2220,2117,2221,2222,2119,2119,2118,2221,2121,2120,2223,2223,2224,2121,2225,2124,2020,2020,2122,2225,2123,2021,2125,2125,2226,2123,2227,2126,2022,2022,2124,2227,2125,2023,2127,2127,2228,2125,2229,2128,2024,2024,2126,2229,2127,2025,2129,2129,2230,2127,2231,2130,2026,2026,2128,2231,2129,2027,2131,2131,2232,2129,2233,2132,2028,2028,2130,2233,2131,2029,2133,2133,2234,2131,2235,2134,2030,2030,2132,2235,2133,2031,2135,2135,2236,2133,2237,2136,2032,2032,2134,2237,2135,2033,2137,2137,2238,2135,2239,2138,2034,2034,2136,2239,2137,2035,2139,2139,2240,2137,2241,2140,2036,2036,2138,2241,2139,2041,2146,2146,2242,2139,2243,2147,2042,2042,2140,2243,2141,2244,2142,2142,2037,2141,2142,2245,2143,2143,2038,2142,2039,2143,2246,2246,2144,2039,2040,2144,2247,2247,2145,2040,2146,2145,2248,2248,2249,2146,2250,2251,2148,2148,2147,2250,2148,2168,2060,2060,2043,2148,2252,2253,2254,2255,2256,2253,2253,2252,2255,2254,2253,2045,2045,2149,2254,2151,2153,2049,2049,2046,2151,2051,2050,2257,2257,2258,2051,2154,2051,2258,2258,2259,2154,1959,2052,2260,2260,2156,1959,2052,2053,2261,2261,2260,2052,2055,2054,2160,2160,2262,2055,2161,2055,2262,2262,2263,2161,2162,2056,2164,2164,2264,2162,2165,2059,2167,2167,2265,2165,2266,2169,2061,2061,2168,2266,2267,2268,2170,2170,2169,2267,2170,2269,2171,2171,2062,2170,2171,2270,2172,2172,2063,2171,2172,2271,2173,2173,2064,2172,2173,2272,2174,2174,2065,2173,2174,2273,2175,2175,2066,2174,2175,2274,2176,2176,2067,2175,2176,2275,2177,2177,2068,2176,2177,2276,2178,2178,2069,2177,2178,2277,2179,2179,2070,2178,2179,2278,2180,2180,2071,2179,2180,2279,2181,2181,2072,2180,2181,2280,2182,2182,2073,2181,2182,2281,2183,2183,2074,2182,2183,2282,2184,2184,2075,2183,2184,2283,2185,2185,2076,2184,2185,2284,2186,2186,2077,2185,2186,2285,2286,2286,2187,2186,2078,2187,2287,2287,2188,2078,2079,2188,2288,2288,2189,2079,2080,2189,2289,2289,2190,2080,2081,2190,2290,2290,2191,2081,2082,2191,2291,2291,2192,2082,2083,2192,2292,2292,2193,2083,2194,2084,2193,2193,2293,2194,2194,2294,2195,2195,2085,2194,2195,2295,2196,2196,2086,2195,2196,2296,2202,2202,2087,2196,2089,2088,2097,2097,2297,2089,1898,2089,2297,2297,2090,1898,1899,2090,2298,2298,2091,1899,1900,2091,2299,2299,2092,1900,2000,2092,2300,2300,2203,2000,2002,2093,2301,2301,2205,2002,1906,2094,2302,2302,2098,1906,2206,2303,2207,2207,2095,2206,2207,2304,2208,2208,2096,2207,2208,2305,2297,2297,2097,2208,2306,2307,2099,2099,2098,2306,2307,2308,2100,2100,2099,2307,2101,2100,2308,2308,2309,2101,2102,2101,2309,2309,2310,2102,2103,2102,2310,2310,2311,2103,2104,2103,2311,2311,2312,2104,2312,2313,2105,2105,2104,2312,2313,2314,2106,2106,2105,2313,2107,2106,2314,2314,2315,2107,2108,2107,2315,2315,2316,2108,2209,2108,2316,2316,2317,2209,2209,2318,2210,2210,2109,2209,2319,2211,2212,2212,2320,2319,2321,2213,2110,2110,2211,2321,2212,2111,2214,2214,2322,2212,2323,2215,2112,2112,2213,2323,2214,2113,2216,2216,2324,2214,2325,2217,2114,2114,2215,2325,2216,2115,2218,2218,2326,2216,2327,2219,2116,2116,2217,2327,2218,2117,2220,2220,2328,2218,2329,2221,2118,2118,2219,2329,2220,2121,2224,2224,2330,2220,2331,2332,2222,2222,2221,2331,2224,2223,2333,2333,2334,2224,2335,2227,2124,2124,2225,2335,2226,2125,2228,2228,2336,2226,2337,2229,2126,2126,2227,2337,2228,2127,2230,2230,2338,2228,2339,2231,2128,2128,2229,2339,2230,2129,2232,2232,2340,2230,2341,2233,2130,2130,2231,2341,2232,2131,2234,2234,2342,2232,2343,2235,2132,2132,2233,2343,2234,2133,2236,2236,2344,2234,2345,2237,2134,2134,2235,2345,2236,2135,2238,2238,2346,2236,2347,2239,2136,2136,2237,2347,2238,2137,2240,2240,2348,2238,2349,2241,2138,2138,2239,2349,2240,2139,2242,2242,2350,2240,2351,2243,2140,2140,2241,2351,2242,2146,2249,2249,2352,2242,2353,2250,2147,2147,2243,2353,2244,2141,2197,2197,2354,2244,2244,2355,2245,2245,2142,2244,2245,2356,2246,2246,2143,2245,2144,2246,2357,2357,2247,2144,2145,2247,2358,2358,2248,2145,2249,2248,2358,2359,2360,2251,2251,2250,2359,2251,2266,2168,2168,2148,2251,2259,2361,2155,2155,2154,2259,2263,2362,2163,2163,2161,2263,2264,2363,2166,2166,2162,2264,2265,2364,2256,2256,2165,2265,2365,2267,2169,2169,2266,2365,2366,2367,2268,2268,2267,2366,2268,2368,2269,2269,2170,2268,2269,2369,2270,2270,2171,2269,2270,2370,2271,2271,2172,2270,2271,2371,2272,2272,2173,2271,2272,2372,2273,2273,2174,2272,2273,2373,2274,2274,2175,2273,2274,2374,2275,2275,2176,2274,2275,2375,2276,2276,2177,2275,2276,2376,2277,2277,2178,2276,2277,2377,2278,2278,2179,2277,2278,2378,2279,2279,2180,2278,2279,2379,2280,2280,2181,2279,2280,2380,2281,2281,2182,2280,2281,2381,2282,2282,2183,2281,2282,2382,2283,2283,2184,2282,2283,2383,2284,2284,2185,2283,2284,2384,2285,2285,2186,2284,2285,2385,2386,2386,2286,2285,2187,2286,2387,2387,2287,2187,2188,2287,2388,2388,2288,2188,2189,2288,2389,2389,2289,2189,2190,2289,2390,2390,2290,2190,2191,2290,2391,2391,2291,2191,2192,2291,2392,2392,2292,2192,2193,2292,2393,2393,2293,2193,2293,2394,2294,2294,2194,2293,2294,2395,2295,2295,2195,2294,2295,2396,2296,2296,2196,2295,2210,2397,2303,2303,2206,2210,2303,2398,2304,2304,2207,2303,2304,2399,2305,2305,2208,2304,2317,2400,2318,2318,2209,2317,2401,2319,2320,2320,2402,2401,2403,2321,2211,2211,2319,2403,2320,2212,2322,2322,2404,2320,2405,2323,2213,2213,2321,2405,2322,2214,2324,2324,2406,2322,2407,2325,2215,2215,2323,2407,2324,2216,2326,2326,2408,2324,2409,2327,2217,2217,2325,2409,2326,2218,2328,2328,2410,2326,2411,2329,2219,2219,2327,2411,2328,2220,2330,2330,2412,2328,2413,2331,2221,2221,2329,2413,2330,2224,2334,2334,2414,2330,2415,2416,2332,2332,2331,2415,2334,2333,2417,2417,2418,2334,2419,2337,2227,2227,2335,2419,2336,2228,2338,2338,2420,2336,2421,2339,2229,2229,2337,2421,2338,2230,2340,2340,2422,2338,2423,2341,2231,2231,2339,2423,2340,2232,2342,2342,2424,2340,2425,2343,2233,2233,2341,2425,2342,2234,2344,2344,2426,2342,2427,2345,2235,2235,2343,2427,2344,2236,2346,2346,2428,2344,2429,2347,2237,2237,2345,2429,2346,2238,2348,2348,2430,2346,2431,2349,2239,2239,2347,2431,2348,2240,2350,2350,2432,2348,2433,2351,2241,2241,2349,2433,2350,2242,2352,2352,2434,2350,2435,2353,2243,2243,2351,2435,2434,2352,2249,2249,2358,2434,2436,2359,2250,2250,2353,2436,2354,2197,2198,2198,2437,2354,2354,2438,2355,2355,2244,2354,2355,2439,2356,2356,2245,2355,2356,2440,2357,2357,2246,2356,2247,2357,2441,2441,2358,2247,2442,2443,2360,2360,2359,2442,2360,2365,2266,2266,2251,2360,2364,2444,2253,2253,2256,2364,2444,2150,2045,2045,2253,2444,2445,2446,2151,2151,2150,2445,2446,2447,2153,2153,2151,2446,2447,2257,2050,2050,2153,2447,2258,2257,2448,2448,2449,2258,2259,2258,2449,2449,2450,2259,2361,2259,2450,2450,2451,2361,2361,2261,2053,2053,2155,2361,2156,2260,2452,2452,2453,2156,2260,2261,2454,2454,2452,2260,2263,2262,2455,2455,2456,2263,2453,2157,1960,1960,2156,2453,2457,2458,2158,2158,2157,2457,2458,2459,2159,2159,2158,2458,2459,2460,2160,2160,2159,2459,2460,2455,2262,2262,2160,2460,2362,2263,2456,2456,2461,2362,2362,2462,2164,2164,2163,2362,2363,2264,2463,2463,2464,2363,2462,2463,2264,2264,2164,2462,2364,2265,2465,2465,2466,2364,2363,2467,2167,2167,2166,2363,2467,2465,2265,2265,2167,2467,2468,2366,2267,2267,2365,2468,2469,2470,2367,2367,2366,2469,2367,2471,2368,2368,2268,2367,2368,2472,2369,2369,2269,2368,2369,2473,2370,2370,2270,2369,2370,2474,2371,2371,2271,2370,2371,2475,2372,2372,2272,2371,2372,2476,2373,2373,2273,2372,2373,2477,2374,2374,2274,2373,2374,2478,2375,2375,2275,2374,2375,2479,2376,2376,2276,2375,2376,2480,2377,2377,2277,2376,2377,2481,2378,2378,2278,2377,2378,2482,2379,2379,2279,2378,2379,2483,2380,2380,2280,2379,2380,2484,2381,2381,2281,2380,2381,2485,2382,2382,2282,2381,2382,2486,2383,2383,2283,2382,2383,2487,2384,2384,2284,2383,2384,2488,2385,2385,2285,2384,2385,2489,2490,2490,2386,2385,2286,2386,2491,2491,2387,2286,2287,2387,2492,2492,2388,2287,2288,2388,2493,2493,2389,2288,2289,2389,2494,2494,2390,2289,2290,2390,2495,2495,2391,2290,2291,2391,2496,2496,2392,2291,2292,2392,2497,2497,2393,2292,2293,2393,2498,2498,2394,2293,2394,2499,2395,2395,2294,2394,2395,2500,2396,2396,2295,2395,2396,2501,2502,2502,2296,2396,2437,2198,2199,2199,2503,2437,2503,2199,2200,2200,2504,2503,2504,2200,2201,2201,2505,2504,2505,2201,2202,2202,2506,2505,2506,2202,2296,2296,2502,2506,2090,2297,2305,2305,2298,2090,2091,2298,2507,2507,2299,2091,2092,2299,2508,2508,2300,2092,2203,2300,2509,2509,2510,2203,2510,2511,2204,2204,2203,2510,2511,2301,2093,2093,2204,2511,2205,2301,2512,2512,2513,2205,2513,2302,2094,2094,2205,2513,2397,2210,2318,2318,2514,2397,2397,2515,2398,2398,2303,2397,2398,2516,2399,2399,2304,2398,2399,2507,2298,2298,2305,2399,2517,2306,2098,2098,2302,2517,2518,2519,2307,2307,2306,2518,2519,2520,2308,2308,2307,2519,2520,2521,2309,2309,2308,2520,2310,2309,2521,2521,2522,2310,2311,2310,2522,2522,2523,2311,2312,2311,2523,2523,2524,2312,2524,2525,2313,2313,2312,2524,2525,2526,2314,2314,2313,2525,2526,2527,2315,2315,2314,2526,2316,2315,2527,2527,2528,2316,2317,2316,2528,2528,2529,2317,2400,2317,2529,2529,2530,2400,2400,2531,2514,2514,2318,2400,2532,2401,2402,2402,2533,2532,2534,2403,2319,2319,2401,2534,2402,2320,2404,2404,2535,2402,2536,2405,2321,2321,2403,2536,2404,2322,2406,2406,2537,2404,2538,2407,2323,2323,2405,2538,2406,2324,2408,2408,2539,2406,2540,2409,2325,2325,2407,2540,2408,2326,2410,2410,2541,2408,2542,2411,2327,2327,2409,2542,2410,2328,2412,2412,2543,2410,2544,2413,2329,2329,2411,2544,2412,2330,2414,2414,2545,2412,2546,2415,2331,2331,2413,2546,2414,2334,2418,2418,2547,2414,2548,2549,2416,2416,2415,2548,2418,2417,2550,2550,2551,2418,2552,2421,2337,2337,2419,2552,2420,2338,2422,2422,2553,2420,2554,2423,2339,2339,2421,2554,2422,2340,2424,2424,2555,2422,2556,2425,2341,2341,2423,2556,2424,2342,2426,2426,2557,2424,2558,2427,2343,2343,2425,2558,2426,2344,2428,2428,2559,2426,2560,2429,2345,2345,2427,2560,2428,2346,2430,2430,2561,2428,2562,2431,2347,2347,2429,2562,2430,2348,2432,2432,2563,2430,2564,2433,2349,2349,2431,2564,2432,2350,2434,2434,2565,2432,2566,2435,2351,2351,2433,2566,2567,2436,2353,2353,2435,2567,2568,1110,1111,2358,1176,1175,2568,1127,1110,2358,1175,1177,2568,1141,1127,2358,1177,1173,2568,2434,1141,2358,1173,1168,2434,1152,1141,2358,1168,1161,2434,1161,1152,2434,2358,1161,2569,2442,2359,2359,2436,2569,2437,2570,2438,2438,2354,2437,2438,2571,2439,2439,2355,2438,2439,2572,2440,2440,2356,2439,2440,2573,2441,2441,2357,2440,2358,2441,2573,2573,2574,2358,2575,2576,2443,2443,2442,2575,2443,2468,2365,2365,2360,2443,2444,2364,2466,2466,2577,2444,2150,2444,2577,2577,2445,2150,2446,2445,2578,2578,2579,2446,2447,2446,2579,2579,2580,2447,2257,2447,2580,2580,2448,2257,2451,2454,2261,2261,2361,2451,2157,2453,2581,2581,2457,2157,2458,2457,2582,2582,2583,2458,2459,2458,2583,2583,2584,2459,2460,2459,2584,2584,2585,2460,2455,2460,2585,2585,2586,2455,2456,2455,2586,2586,2587,2456,2461,2588,2462,2462,2362,2461,2464,2589,2467,2467,2363,2464,2463,2462,2588,2588,2590,2463,2464,2463,2590,2590,2591,2464,2465,2467,2589,2589,2592,2465,2466,2465,2592,2592,2593,2466,2594,2469,2366,2366,2468,2594,2595,2596,2470,2470,2469,2595,2470,2597,2471,2471,2367,2470,2471,2598,2472,2472,2368,2471,2472,2599,2473,2473,2369,2472,2473,2600,2474,2474,2370,2473,2474,2601,2475,2475,2371,2474,2475,2602,2476,2476,2372,2475,2476,2603,2477,2477,2373,2476,2477,2604,2478,2478,2374,2477,2478,2605,2479,2479,2375,2478,2479,2606,2480,2480,2376,2479,2480,2607,2481,2481,2377,2480,2481,2608,2482,2482,2378,2481,2482,2609,2483,2483,2379,2482,2483,2610,2484,2484,2380,2483,2484,2611,2485,2485,2381,2484,2485,2612,2486,2486,2382,2485,2486,2613,2487,2487,2383,2486,2487,2614,2488,2488,2384,2487,2488,2615,2489,2489,2385,2488,2489,2616,2617,2617,2490,2489,2386,2490,2618,2618,2491,2386,2387,2491,2619,2619,2492,2387,2388,2492,2620,2620,2493,2388,2389,2493,2621,2621,2494,2389,2390,2494,2622,2622,2495,2390,2391,2495,2623,2623,2496,2391,2392,2496,2624,2624,2497,2392,2393,2497,2625,2625,2498,2393,2394,2498,2626,2626,2499,2394,2499,2627,2500,2500,2395,2499,2500,2628,2501,2501,2396,2500,2503,2629,2570,2570,2437,2503,2504,2630,2629,2629,2503,2504,2505,2631,2630,2630,2504,2505,2506,2632,2631,2631,2505,2506,2502,2633,2632,2632,2506,2502,2501,2634,2633,2633,2502,2501,2511,2510,2635,2635,2636,2511,2301,2511,2636,2636,2512,2301,2302,2513,2637,2637,2517,2302,2514,2638,2515,2515,2397,2514,2515,2639,2516,2516,2398,2515,2516,2640,2507,2507,2399,2516,2306,2517,2641,2641,2518,2306,2519,2518,2642,2642,2643,2519,2520,2519,2643,2643,2644,2520,2521,2520,2644,2644,2645,2521,2525,2524,2646,2646,2647,2525,2526,2525,2647,2647,2648,2526,2527,2526,2648,2648,2649,2527,2530,2650,2531,2531,2400,2530,2531,2651,2638,2638,2514,2531,2652,2532,2533,2533,2653,2652,2654,2534,2401,2401,2532,2654,2533,2402,2535,2535,2655,2533,2656,2536,2403,2403,2534,2656,2535,2404,2537,2537,2657,2535,2658,2538,2405,2405,2536,2658,2537,2406,2539,2539,2659,2537,2660,2540,2407,2407,2538,2660,2539,2408,2541,2541,2661,2539,2662,2542,2409,2409,2540,2662,2541,2410,2543,2543,2663,2541,2664,2544,2411,2411,2542,2664,2543,2412,2545,2545,2665,2543,2666,2546,2413,2413,2544,2666,2545,2414,2547,2547,2667,2545,2668,2548,2415,2415,2546,2668,2547,2418,2551,2551,2669,2547,2670,2671,2549,2549,2548,2670,2551,2550,2672,2672,2673,2551,2674,2554,2421,2421,2552,2674,2553,2422,2555,2555,2675,2553,2676,2556,2423,2423,2554,2676,2555,2424,2557,2557,2677,2555,2678,2558,2425,2425,2556,2678,2557,2426,2559,2559,2679,2557,2680,2560,2427,2427,2558,2680,2559,2428,2561,2561,2681,2559,2682,2562,2429,2429,2560,2682,2561,2430,2563,2563,2683,2561,2684,2564,2431,2431,2562,2684,2563,2432,2565,2565,2685,2563,2686,2566,2433,2433,2564,2686,2685,2565,2434,2687,2567,2435,2435,2566,2687,2688,2569,2436,2436,2567,2688,2568,1111,1091,1091,1092,2568,2568,2689,2685,2685,2434,2568,2358,1172,1176,2690,1140,1139,2358,1167,1172,2690,1139,1151,2358,2574,1167,2690,1151,1160,2574,1160,1167,2574,2690,1160,2691,2575,2442,2442,2569,2691,2570,2692,2571,2571,2438,2570,2571,2693,2572,2572,2439,2571,2572,2694,2573,2573,2440,2572,2573,2694,2574,2695,2696,2576,2576,2575,2695,2576,2594,2468,2468,2443,2576,2449,2448,2697,2697,2698,2449,2450,2449,2698,2698,2699,2450,2451,2450,2699,2699,2700,2451,2454,2451,2700,2700,2701,2454,2453,2452,2702,2702,2581,2453,2452,2454,2701,2701,2702,2452,2461,2456,2587,2587,2703,2461,2588,2461,2703,2703,2704,2588,2589,2464,2591,2591,2705,2589,2577,2466,2593,2593,2706,2577,2707,2595,2469,2469,2594,2707,2708,2709,2596,2596,2595,2708,2596,2710,2597,2597,2470,2596,2597,2711,2598,2598,2471,2597,2598,2712,2599,2599,2472,2598,2599,2713,2600,2600,2473,2599,2600,2714,2601,2601,2474,2600,2601,2715,2602,2602,2475,2601,2602,2716,2603,2603,2476,2602,2603,2717,2604,2604,2477,2603,2604,2718,2605,2605,2478,2604,2605,2719,2606,2606,2479,2605,2606,2720,2607,2607,2480,2606,2607,2721,2608,2608,2481,2607,2608,2722,2609,2609,2482,2608,2609,2723,2610,2610,2483,2609,2610,2724,2611,2611,2484,2610,2611,2725,2612,2612,2485,2611,2612,2726,2613,2613,2486,2612,2613,2727,2614,2614,2487,2613,2614,2728,2615,2615,2488,2614,2615,2729,2616,2616,2489,2615,2616,2730,2731,2731,2617,2616,2490,2617,2732,2732,2618,2490,2491,2618,2733,2733,2619,2491,2492,2619,2734,2734,2620,2492,2493,2620,2735,2735,2621,2493,2494,2621,2736,2736,2622,2494,2495,2622,2737,2737,2623,2495,2496,2623,2738,2738,2624,2496,2497,2624,2739,2739,2625,2497,2498,2625,2740,2740,2626,2498,2499,2626,2741,2741,2627,2499,2628,2500,2627,2627,2742,2628,2628,2743,2634,2634,2501,2628,2299,2507,2640,2640,2508,2299,2300,2508,2744,2744,2509,2300,2510,2509,2745,2745,2635,2510,2513,2512,2746,2746,2637,2513,2638,2747,2639,2639,2515,2638,2639,2748,2640,2640,2516,2639,2645,2749,2522,2522,2521,2645,2523,2522,2749,2749,2750,2523,2524,2523,2750,2750,2646,2524,2649,2751,2528,2528,2527,2649,2529,2528,2751,2751,2752,2529,2530,2529,2752,2752,2753,2530,2650,2530,2753,2753,2754,2650,2650,2755,2651,2651,2531,2650,2651,2756,2747,2747,2638,2651,2757,2652,2653,2653,2758,2757,2759,2654,2532,2532,2652,2759,2653,2533,2655,2655,2760,2653,2761,2656,2534,2534,2654,2761,2655,2535,2657,2657,2762,2655,2763,2658,2536,2536,2656,2763,2657,2537,2659,2659,2764,2657,2765,2660,2538,2538,2658,2765,2659,2539,2661,2661,2766,2659,2767,2662,2540,2540,2660,2767,2661,2541,2663,2663,2768,2661,2769,2664,2542,2542,2662,2769,2663,2543,2665,2665,2770,2663,2771,2666,2544,2544,2664,2771,2665,2545,2667,2667,2772,2665,2773,2668,2546,2546,2666,2773,2667,2547,2669,2669,2774,2667,2775,2670,2548,2548,2668,2775,2669,2551,2673,2673,2776,2669,2777,2778,2671,2671,2670,2777,2673,2672,2779,2779,2780,2673,2781,2676,2554,2554,2674,2781,2675,2555,2677,2677,2782,2675,2783,2678,2556,2556,2676,2783,2677,2557,2679,2679,2784,2677,2785,2680,2558,2558,2678,2785,2679,2559,2681,2681,2786,2679,2787,2682,2560,2560,2680,2787,2681,2561,2683,2683,2788,2681,2789,2684,2562,2562,2682,2789,2683,2563,2685,2685,2689,2683,2790,2686,2564,2564,2684,2790,2791,2687,2566,2566,2686,2791,2792,2688,2567,2567,2687,2792,2793,2691,2569,2569,2688,2793,2794,838,839,2568,1092,1072,2794,876,838,2568,1072,1050,2794,909,876,2568,1050,1051,2794,940,909,2795,2796,1026,2794,971,940,2795,1026,1000,2794,2795,971,2795,1000,971,2788,2683,2689,2689,2568,2788,2574,2797,2798,2798,2690,2574,1140,2690,1126,1126,1125,1140,2799,2695,2575,2575,2691,2799,2629,2800,2692,2692,2570,2629,2692,2801,2693,2693,2571,2692,2693,2574,2694,2694,2572,2693,2802,2803,2696,2696,2695,2802,2696,2707,2594,2594,2576,2696,2445,2577,2706,2706,2578,2445,2579,2578,2804,2804,2805,2579,2580,2579,2805,2805,2806,2580,2448,2580,2806,2806,2697,2448,2457,2581,2807,2807,2582,2457,2583,2582,2808,2808,2809,2583,2584,2583,2809,2809,2810,2584,2585,2584,2810,2810,2811,2585,2586,2585,2811,2811,2812,2586,2587,2586,2812,2812,2813,2587,2703,2587,2813,2813,2814,2703,2704,2815,2590,2590,2588,2704,2705,2816,2592,2592,2589,2705,2591,2590,2815,2815,2817,2591,2705,2591,2817,2817,2818,2705,2593,2592,2816,2816,2819,2593,2706,2593,2819,2819,2820,2706,2821,2708,2595,2595,2707,2821,2822,2823,2709,2709,2708,2822,2709,2824,2710,2710,2596,2709,2710,2825,2711,2711,2597,2710,2711,2826,2712,2712,2598,2711,2712,2827,2713,2713,2599,2712,2713,2828,2714,2714,2600,2713,2714,2829,2715,2715,2601,2714,2715,2830,2716,2716,2602,2715,2716,2831,2717,2717,2603,2716,2717,2832,2718,2718,2604,2717,2718,2833,2719,2719,2605,2718,2719,2834,2720,2720,2606,2719,2720,2835,2721,2721,2607,2720,2721,2836,2722,2722,2608,2721,2722,2837,2723,2723,2609,2722,2723,2838,2724,2724,2610,2723,2724,2839,2725,2725,2611,2724,2725,2840,2726,2726,2612,2725,2726,2841,2727,2727,2613,2726,2727,2842,2728,2728,2614,2727,2728,2843,2729,2729,2615,2728,2729,2844,2730,2730,2616,2729,2730,2845,2846,2846,2731,2730,2617,2731,2847,2847,2732,2617,2618,2732,2848,2848,2733,2618,2619,2733,2849,2849,2734,2619,2620,2734,2850,2850,2735,2620,2621,2735,2851,2851,2736,2621,2622,2736,2852,2852,2737,2622,2623,2737,2853,2853,2738,2623,2624,2738,2854,2854,2739,2624,2625,2739,2855,2855,2740,2625,2626,2740,2856,2856,2741,2626,2627,2741,2857,2857,2742,2627,2742,2858,2743,2743,2628,2742,2630,2859,2800,2800,2629,2630,2631,2860,2859,2859,2630,2631,2632,2861,2860,2860,2631,2632,2633,2862,2861,2861,2632,2633,2634,2863,2862,2862,2633,2634,2743,2864,2863,2863,2634,2743,2865,2866,2636,2636,2635,2865,2512,2636,2866,2866,2746,2512,2517,2637,2867,2867,2641,2517,2747,2868,2748,2748,2639,2747,2748,2744,2508,2508,2640,2748,2518,2641,2869,2869,2642,2518,2643,2642,2870,2870,2871,2643,2644,2643,2871,2871,2872,2644,2645,2644,2872,2872,2873,2645,2749,2645,2873,2873,2874,2749,2647,2646,2875,2875,2876,2647,2648,2647,2876,2876,2877,2648,2649,2648,2877,2877,2878,2649,2751,2649,2878,2878,2879,2751,2754,2880,2755,2755,2650,2754,2755,2881,2756,2756,2651,2755,2756,2882,2868,2868,2747,2756,2845,2757,2758,2758,2846,2845,2883,2759,2652,2652,2757,2883,2758,2653,2760,2760,2884,2758,2885,2761,2654,2654,2759,2885,2760,2655,2762,2762,2886,2760,2887,2763,2656,2656,2761,2887,2762,2657,2764,2764,2888,2762,2889,2765,2658,2658,2763,2889,2764,2659,2766,2766,2890,2764,2891,2767,2660,2660,2765,2891,2766,2661,2768,2768,2892,2766,2893,2769,2662,2662,2767,2893,2768,2663,2770,2770,2894,2768,2895,2771,2664,2664,2769,2895,2770,2665,2772,2772,2896,2770,2897,2773,2666,2666,2771,2897,2772,2667,2774,2774,2898,2772,2899,2775,2668,2668,2773,2899,2774,2669,2776,2776,2900,2774,2901,2777,2670,2670,2775,2901,2776,2673,2780,2780,2902,2776,2903,2904,2778,2778,2777,2903,2780,2779,2905,2905,2906,2780,2907,2783,2676,2676,2781,2907,2782,2677,2784,2784,2908,2782,2909,2785,2678,2678,2783,2909,2784,2679,2786,2786,2910,2784,2911,2787,2680,2680,2785,2911,2786,2681,2788,2788,2912,2786,2913,2789,2682,2682,2787,2913,2914,2790,2684,2684,2789,2914,2915,2791,2686,2686,2790,2915,2916,2792,2687,2687,2791,2916,2917,2793,2688,2688,2792,2917,2918,2799,2691,2691,2793,2918,2919,667,2920,2794,839,837,2919,666,667,2794,837,797,2919,712,666,2919,2794,797,2919,756,712,2919,797,756,2794,2921,2922,2922,2795,2794,2795,2923,2924,2924,2796,2795,2912,2788,2568,2568,2925,2912,2574,2693,2801,2801,2797,2574,2797,2801,2926,2926,2798,2797,2798,2927,2690,1126,2690,1109,1109,1108,1126,2928,2802,2695,2695,2799,2928,2800,2926,2801,2801,2692,2800,2929,2930,2803,2803,2802,2929,2803,2821,2707,2707,2696,2803,2698,2697,2931,2931,2932,2698,2699,2698,2932,2932,2933,2699,2700,2699,2933,2933,2934,2700,2701,2700,2934,2934,2935,2701,2702,2701,2935,2935,2936,2702,2581,2702,2936,2936,2807,2581,2704,2703,2814,2814,2937,2704,2815,2704,2937,2937,2938,2815,2816,2705,2818,2818,2939,2816,2578,2706,2820,2820,2804,2578,2940,2822,2708,2708,2821,2940,2941,2942,2823,2823,2822,2941,2823,2943,2824,2824,2709,2823,2824,2944,2825,2825,2710,2824,2825,2945,2826,2826,2711,2825,2826,2946,2827,2827,2712,2826,2827,2947,2828,2828,2713,2827,2828,2948,2829,2829,2714,2828,2829,2949,2830,2830,2715,2829,2830,2950,2831,2831,2716,2830,2831,2951,2832,2832,2717,2831,2832,2952,2833,2833,2718,2832,2833,2953,2834,2834,2719,2833,2834,2954,2835,2835,2720,2834,2835,2955,2836,2836,2721,2835,2836,2956,2837,2837,2722,2836,2837,2957,2838,2838,2723,2837,2838,2958,2839,2839,2724,2838,2839,2959,2840,2840,2725,2839,2840,2960,2841,2841,2726,2840,2841,2961,2842,2842,2727,2841,2842,2962,2843,2843,2728,2842,2843,2963,2844,2844,2729,2843,2844,2964,2845,2845,2730,2844,2731,2846,2965,2965,2847,2731,2732,2847,2966,2966,2848,2732,2733,2848,2967,2967,2849,2733,2734,2849,2968,2968,2850,2734,2735,2850,2969,2969,2851,2735,2736,2851,2970,2970,2852,2736,2737,2852,2971,2971,2853,2737,2738,2853,2972,2972,2854,2738,2739,2854,2973,2973,2855,2739,2740,2855,2974,2974,2856,2740,2741,2856,2975,2975,2857,2741,2742,2857,2976,2976,2858,2742,2858,2977,2864,2864,2743,2858,2509,2744,2978,2978,2745,2509,2979,2865,2635,2635,2745,2979,2866,2865,2980,2980,2981,2866,2637,2746,2982,2982,2867,2637,2868,2978,2744,2744,2748,2868,2874,2983,2750,2750,2749,2874,2646,2750,2983,2983,2875,2646,2879,2984,2752,2752,2751,2879,2753,2752,2984,2984,2985,2753,2754,2753,2985,2985,2986,2754,2880,2754,2986,2986,2987,2880,2880,2988,2881,2881,2755,2880,2881,2989,2882,2882,2756,2881,2964,2883,2757,2757,2845,2964,2846,2758,2884,2884,2965,2846,2990,2885,2759,2759,2883,2990,2884,2760,2886,2886,2991,2884,2992,2887,2761,2761,2885,2992,2886,2762,2888,2888,2993,2886,2994,2889,2763,2763,2887,2994,2888,2764,2890,2890,2995,2888,2996,2891,2765,2765,2889,2996,2890,2766,2892,2892,2997,2890,2998,2893,2767,2767,2891,2998,2892,2768,2894,2894,2999,2892,3000,2895,2769,2769,2893,3000,2894,2770,2896,2896,3001,2894,3002,2897,2771,2771,2895,3002,2896,2772,2898,2898,3003,2896,3004,2899,2773,2773,2897,3004,2898,2774,2900,2900,3005,2898,3006,2901,2775,2775,2899,3006,2900,2776,2902,2902,3007,2900,3008,2903,2777,2777,2901,3008,2902,2780,2906,2906,3009,2902,3010,3011,2904,2904,2903,3010,2906,2905,3012,3012,3013,2906,3014,2909,2783,2783,2907,3014,2908,2784,2910,2910,3015,2908,3016,2911,2785,2785,2909,3016,2910,2786,2912,2912,3017,2910,3018,2913,2787,2787,2911,3018,3019,2914,2789,2789,2913,3019,3020,2915,2790,2790,2914,3020,3021,2916,2791,2791,2915,3021,3022,2917,2792,2792,2916,3022,3023,2918,2793,2793,2917,3023,3024,2928,2799,2799,2918,3024,3025,3026,2919,2919,2920,3025,2919,3027,3028,3028,2794,2919,617,2920,667,667,618,617,3029,3030,2921,2921,2794,3029,3030,3031,2922,2922,2921,3030,2922,3032,2795,3033,3034,2923,2923,2795,3033,3035,3017,3036,3036,3037,3035,3036,2925,2568,3017,2912,2925,2925,3036,3017,2798,2926,3038,3038,2927,2798,2927,3038,3039,3039,2690,2927,2690,1090,1109,3040,875,874,2690,1071,1090,3040,874,908,2690,1049,1071,3040,908,939,2690,3041,1049,3040,939,970,3041,1025,1049,3040,970,999,3041,999,1025,3041,3040,999,3042,2929,2802,2802,2928,3042,2926,2800,2859,2859,3038,2926,3043,3044,2930,2930,2929,3043,2930,2940,2821,2821,2803,2930,2805,2804,3045,3045,3046,2805,2806,2805,3046,3046,3047,2806,2697,2806,3047,3047,2931,2697,2582,2807,3048,3048,2808,2582,2809,2808,2871,2871,2870,2809,2810,2809,2870,2870,3049,2810,2811,2810,3049,3049,3050,2811,2812,2811,3050,3050,3051,2812,2813,2812,3051,3051,3052,2813,2814,2813,3052,3052,3053,2814,2937,2814,3053,3053,3054,2937,2938,3055,2817,2817,2815,2938,2939,3056,2819,2819,2816,2939,2818,2817,3055,3055,3057,2818,2939,2818,3057,3057,3058,2939,2820,2819,3056,3056,3059,2820,2804,2820,3059,3059,3045,2804,3060,2941,2822,2822,2940,3060,3061,3062,2942,2942,2941,3061,2942,3063,2943,2943,2823,2942,2943,3064,2944,2944,2824,2943,2944,3065,2945,2945,2825,2944,2945,3066,2946,2946,2826,2945,2946,3067,2947,2947,2827,2946,2947,3068,2948,2948,2828,2947,2948,3069,2949,2949,2829,2948,2949,3070,2950,2950,2830,2949,2950,3071,2951,2951,2831,2950,2951,3072,2952,2952,2832,2951,2952,3073,2953,2953,2833,2952,2953,3074,2954,2954,2834,2953,2954,3075,2955,2955,2835,2954,2955,3076,2956,2956,2836,2955,2956,3077,2957,2957,2837,2956,2957,3078,2958,2958,2838,2957,2958,3079,2959,2959,2839,2958,2959,3080,2960,2960,2840,2959,2960,3081,2961,2961,2841,2960,2961,3082,2962,2962,2842,2961,2962,3083,2963,2963,2843,2962,2963,3084,2964,2964,2844,2963,2847,2965,3085,3085,2966,2847,2848,2966,3086,3086,2967,2848,2849,2967,3087,3087,2968,2849,2850,2968,3088,3088,2969,2850,2851,2969,3089,3089,2970,2851,2852,2970,3090,3090,2971,2852,2853,2971,3091,3091,2972,2853,2854,2972,3092,3092,2973,2854,2855,2973,3093,3093,2974,2855,2856,2974,3094,3094,2975,2856,2857,2975,3095,3095,2976,2857,2858,2976,3096,3096,2977,2858,2860,3039,3038,3038,2859,2860,2861,3097,3039,3039,2860,2861,2862,3098,3097,3097,2861,2862,2863,3099,3098,3098,2862,2863,2864,3100,3099,3099,2863,2864,2977,3101,3100,3100,2864,2977,2745,2978,3102,3102,2979,2745,2865,2979,3103,3103,2980,2865,2981,2982,2746,2746,2866,2981,2641,2867,3104,3104,2869,2641,2882,3102,2978,2978,2868,2882,2642,2869,3049,3049,2870,2642,2872,2871,2808,2808,3048,2872,2873,2872,3048,3048,3105,2873,2874,2873,3105,3105,3106,2874,2983,2874,3106,3106,3107,2983,2876,2875,3108,3108,3109,2876,2877,2876,3109,3109,3110,2877,2878,2877,3110,3110,3111,2878,2879,2878,3111,3111,3112,2879,2984,2879,3112,3112,3113,2984,2987,3114,2988,2988,2880,2987,2988,3115,2989,2989,2881,2988,2989,3116,3102,3102,2882,2989,3084,2990,2883,2883,2964,3084,2965,2884,2991,2991,3085,2965,3117,2992,2885,2885,2990,3117,2991,2886,2993,2993,3118,2991,3119,2994,2887,2887,2992,3119,2993,2888,2995,2995,3120,2993,3121,2996,2889,2889,2994,3121,2995,2890,2997,2997,3122,2995,3123,2998,2891,2891,2996,3123,2997,2892,2999,2999,3124,2997,3125,3000,2893,2893,2998,3125,2999,2894,3001,3001,3126,2999,3127,3002,2895,2895,3000,3127,3001,2896,3003,3003,3128,3001,3129,3004,2897,2897,3002,3129,3003,2898,3005,3005,3130,3003,3131,3006,2899,2899,3004,3131,3005,2900,3007,3007,3132,3005,3133,3008,2901,2901,3006,3133,3007,2902,3009,3009,3134,3007,3135,3010,2903,2903,3008,3135,3009,2906,3013,3013,3136,3009,3137,3138,3011,3011,3010,3137,3013,3012,3139,3139,3140,3013,3141,3016,2909,2909,3014,3141,3015,2910,3017,3017,3035,3015,3142,3018,2911,2911,3016,3142,3143,3019,2913,2913,3018,3143,3144,3020,2914,2914,3019,3144,3145,3021,2915,2915,3020,3145,3146,3022,2916,2916,3021,3146,3147,3023,2917,2917,3022,3147,3148,3024,2918,2918,3023,3148,3149,3042,2928,2928,3024,3149,3150,3025,2920,3151,3152,3026,3026,3025,3151,3152,3153,2919,2919,3026,3152,3153,3154,3027,3027,2919,3153,3154,3155,3028,3028,3027,3154,3028,3156,2794,616,2920,617,617,614,616,3157,3029,2794,2794,3156,3157,3158,3159,3030,3030,3029,3158,3159,3160,3031,3031,3030,3159,3031,3161,3032,3032,2922,3031,3161,3033,2795,2795,3032,3161,3140,3139,3034,3034,3033,3140,2690,3162,3163,3163,3041,2690,3041,3164,3165,3165,3040,3041,3040,836,875,2920,665,664,3040,796,836,2920,664,711,3040,3166,796,3166,2920,711,3166,755,796,3166,711,755,3167,3043,2929,2929,3042,3167,3168,3169,3044,3044,3043,3168,3044,3060,2940,2940,2930,3044,2932,2931,3110,3110,3109,2932,2933,2932,3109,3109,3108,2933,2934,2933,3108,3108,3107,2934,2935,2934,3107,3107,3106,2935,2936,2935,3106,3106,3105,2936,2807,2936,3105,3105,3048,2807,2938,2937,3054,3054,3170,2938,3055,2938,3170,3170,3171,3055,3056,2939,3058,3058,3172,3056,3173,3061,2941,2941,3060,3173,3174,3175,3062,3062,3061,3174,3062,3176,3063,3063,2942,3062,3063,3177,3064,3064,2943,3063,3064,3178,3065,3065,2944,3064,3065,3179,3066,3066,2945,3065,3066,3180,3067,3067,2946,3066,3067,3181,3068,3068,2947,3067,3068,3182,3069,3069,2948,3068,3069,3183,3070,3070,2949,3069,3070,3184,3071,3071,2950,3070,3071,3185,3072,3072,2951,3071,3072,3186,3073,3073,2952,3072,3073,3187,3074,3074,2953,3073,3074,3188,3075,3075,2954,3074,3075,3189,3076,3076,2955,3075,3076,3190,3077,3077,2956,3076,3077,3191,3078,3078,2957,3077,3078,3192,3079,3079,2958,3078,3079,3193,3080,3080,2959,3079,3080,3194,3081,3081,2960,3080,3081,3195,3082,3082,2961,3081,3083,3196,3084,3084,2963,3083,2966,3085,3197,3197,3086,2966,2967,3086,3198,3198,3087,2967,2968,3087,3199,3199,3088,2968,2969,3088,3200,3200,3089,2969,2970,3089,3201,3201,3090,2970,2971,3090,3202,3202,3091,2971,2972,3091,3203,3203,3092,2972,2973,3092,3204,3204,3093,2973,2974,3093,3205,3205,3094,2974,2975,3094,3206,3206,3095,2975,2976,3095,3207,3207,3096,2976,2977,3096,3208,3208,3101,2977,2981,2980,3209,3209,3210,2981,2982,2981,3210,3210,3211,2982,2867,2982,3211,3211,3104,2867,3107,3108,2875,2875,2983,3107,3113,3212,2985,2985,2984,3113,2986,2985,3212,3212,3172,2986,2987,2986,3172,3172,3058,2987,3114,2987,3058,3058,3057,3114,3114,3171,3115,3115,2988,3114,3115,3213,3116,3116,2989,3115,3196,3117,2990,2990,3084,3196,3085,2991,3118,3118,3197,3085,3118,2993,3120,3120,3214,3118,3215,3121,2994,2994,3119,3215,3120,2995,3122,3122,3216,3120,3217,3123,2996,2996,3121,3217,3122,2997,3124,3124,3218,3122,3219,3125,2998,2998,3123,3219,3124,2999,3126,3126,3220,3124,3221,3127,3000,3000,3125,3221,3126,3001,3128,3128,3222,3126,3223,3129,3002,3002,3127,3223,3128,3003,3130,3130,3224,3128,3225,3131,3004,3004,3129,3225,3130,3005,3132,3132,3226,3130,3227,3133,3006,3006,3131,3227,3132,3007,3134,3134,3228,3132,3229,3135,3008,3008,3133,3229,3134,3009,3136,3136,3230,3134,3231,3137,3010,3010,3135,3231,3136,3013,3140,3140,3232,3136,3233,3234,3138,3138,3137,3233,3235,3142,3016,3016,3141,3235,3236,3143,3018,3018,3142,3236,3237,3144,3019,3019,3143,3237,3238,3145,3020,3020,3144,3238,3239,3146,3021,3021,3145,3239,3240,3147,3022,3022,3146,3240,3241,3148,3023,3023,3147,3241,3242,3149,3024,3024,3148,3242,3243,3167,3042,3042,3149,3243,3244,3245,3150,3150,2920,3244,3245,3151,3025,3025,3150,3245,3246,3247,3152,3152,3151,3246,3247,3248,3153,3153,3152,3247,3248,3249,3154,3154,3153,3248,3249,3250,3155,3155,3154,3249,3155,3157,3156,3156,3028,3155,665,2920,616,616,615,665,3251,3158,3029,3029,3157,3251,3252,3253,3159,3159,3158,3252,3253,3230,3160,3160,3159,3253,3160,3232,3161,3161,3031,3160,3232,3140,3033,3033,3161,3232,2690,3039,3097,3097,3162,2690,3162,3097,3098,3098,3163,3162,3163,3254,3041,3041,3100,3101,3101,3164,3041,3101,3208,3165,3165,3164,3101,3165,3255,3040,3040,3256,3257,3257,3166,3040,3166,3258,3259,3259,2920,3166,3260,3168,3043,3043,3167,3260,3261,3262,3169,3169,3168,3261,3169,3173,3060,3060,3044,3169,3046,3045,3113,3113,3112,3046,3047,3046,3112,3112,3111,3047,2931,3047,3111,3111,3110,2931,3050,3049,2869,2869,3104,3050,3171,3114,3057,3057,3055,3171,3172,3212,3059,3059,3056,3172,3045,3059,3212,3212,3113,3045,3263,3174,3061,3061,3173,3263,3264,3265,3175,3175,3174,3264,3175,3266,3176,3176,3062,3175,3176,3267,3177,3177,3063,3176,3177,3268,3178,3178,3064,3177,3178,3269,3179,3179,3065,3178,3179,3270,3180,3180,3066,3179,3180,3271,3181,3181,3067,3180,3181,3272,3182,3182,3068,3181,3182,3273,3183,3183,3069,3182,3183,3274,3184,3184,3070,3183,3184,3275,3185,3185,3071,3184,3185,3276,3186,3186,3072,3185,3186,3277,3187,3187,3073,3186,3187,3278,3188,3188,3074,3187,3188,3279,3189,3189,3075,3188,3189,3280,3190,3190,3076,3189,3190,3281,3191,3191,3077,3190,3191,3282,3192,3192,3078,3191,3192,3283,3193,3193,3079,3192,3193,3284,3194,3194,3080,3193,3194,3285,3195,3195,3081,3194,3086,3197,3286,3286,3198,3086,3087,3198,3287,3287,3199,3087,3088,3199,3288,3288,3200,3088,3089,3200,3289,3289,3201,3089,3090,3201,3290,3290,3202,3090,3091,3202,3291,3291,3203,3091,3092,3203,3292,3292,3204,3092,3093,3204,3293,3293,3205,3093,3094,3205,3294,3294,3206,3094,3095,3206,3295,3295,3207,3095,3096,3207,3296,3296,3208,3096,2979,3102,3116,3116,3103,2979,3171,3170,3213,3213,3115,3171,3197,3118,3214,3214,3286,3197,3214,3120,3216,3216,3297,3214,3298,3217,3121,3121,3215,3298,3216,3122,3218,3218,3299,3216,3300,3219,3123,3123,3217,3300,3218,3124,3220,3220,3301,3218,3302,3221,3125,3125,3219,3302,3220,3126,3222,3222,3303,3220,3304,3223,3127,3127,3221,3304,3222,3128,3224,3224,3305,3222,3306,3225,3129,3129,3223,3306,3224,3130,3226,3226,3307,3224,3308,3227,3131,3131,3225,3308,3226,3132,3228,3228,3309,3226,3310,3229,3133,3133,3227,3310,3228,3134,3230,3230,3253,3228,3311,3231,3135,3135,3229,3311,3230,3136,3232,3232,3160,3230,3312,3233,3137,3137,3231,3312,3313,3314,3234,3234,3233,3313,3315,3236,3142,3142,3235,3315,3316,3237,3143,3143,3236,3316,3317,3238,3144,3144,3237,3317,3318,3239,3145,3145,3238,3318,3319,3240,3146,3146,3239,3319,3320,3241,3147,3147,3240,3320,3321,3242,3148,3148,3241,3321,3322,3243,3149,3149,3242,3322,3323,3260,3167,3167,3243,3323,3324,3244,2920,2920,3325,3324,3326,3327,3245,3245,3244,3326,3327,3246,3151,3151,3245,3327,3328,3329,3247,3247,3246,3328,3329,3330,3248,3248,3247,3329,3330,3331,3249,3249,3248,3330,3331,3332,3250,3250,3249,3331,3250,3251,3157,3157,3155,3250,3333,3252,3158,3158,3251,3333,3309,3228,3253,3253,3252,3309,3163,3098,3099,3099,3254,3163,3254,3099,3100,3100,3041,3254,3208,3296,3255,3255,3165,3208,3296,3334,3040,3040,3255,3296,3334,3335,3256,3256,3040,3334,3335,3336,3257,3257,3256,3335,3257,3337,3166,3338,3339,3258,3258,3166,3338,3339,3340,3259,3259,3258,3339,3259,3325,2920,3341,3261,3168,3168,3260,3341,3342,3343,3262,3262,3261,3342,3262,3263,3173,3173,3169,3262,3104,3211,3051,3051,3050,3104,3211,3210,3052,3052,3051,3211,3210,3209,3053,3053,3052,3210,3209,3344,3054,3054,3053,3209,3344,3213,3170,3170,3054,3344,3345,3264,3174,3174,3263,3345,3346,3347,3265,3265,3264,3346,3265,3348,3266,3266,3175,3265,3266,3349,3267,3267,3176,3266,3267,3350,3268,3268,3177,3267,3268,3351,3269,3269,3178,3268,3269,3352,3270,3270,3179,3269,3270,3353,3271,3271,3180,3270,3271,3354,3272,3272,3181,3271,3272,3355,3273,3273,3182,3272,3273,3356,3274,3274,3183,3273,3274,3357,3275,3275,3184,3274,3275,3358,3276,3276,3185,3275,3276,3359,3277,3277,3186,3276,3277,3360,3278,3278,3187,3277,3278,3361,3279,3279,3188,3278,3279,3362,3280,3280,3189,3279,3280,3363,3281,3281,3190,3280,3281,3364,3282,3282,3191,3281,3282,3365,3283,3283,3192,3282,3283,3366,3284,3284,3193,3283,3284,3367,3285,3285,3194,3284,3368,3285,3369,3370,3195,3285,3368,3371,3285,3372,3370,3285,3371,3373,3285,3373,3372,3285,3195,3370,3374,3375,3082,3376,3195,3374,3376,3082,3195,3376,3377,3378,3375,3376,3379,3375,3379,3377,3375,3378,3082,3375,3083,2962,3082,3380,3381,3083,3378,3380,3082,3380,3083,3082,3382,3383,3384,3385,3196,3384,3196,3083,3381,3196,3382,3384,3196,3381,3386,3196,3386,3382,3198,3286,3387,3387,3287,3198,3199,3287,3388,3388,3288,3199,3200,3288,3389,3389,3289,3200,3201,3289,3390,3390,3290,3201,3202,3290,3391,3391,3291,3202,3203,3291,3392,3392,3292,3203,3204,3292,3393,3393,3293,3204,3205,3293,3394,3394,3294,3205,3206,3294,3395,3395,3295,3206,3207,3295,3334,3334,3296,3207,3344,3209,2980,2980,3103,3344,3103,3116,3213,3213,3344,3103,3117,3396,3397,3385,3398,3399,3117,3399,3396,3117,3196,3385,3117,3385,3399,3286,3214,3297,3297,3387,3286,3117,3397,3400,3401,3402,3400,3402,3119,2992,2992,3117,3400,3402,2992,3400,3297,3216,3299,3299,3403,3297,3402,3215,3119,3404,3405,3215,3402,3406,3215,3406,3404,3215,3298,3407,3408,3409,3410,3411,3298,3411,3407,3298,3215,3405,3298,3409,3411,3298,3405,3409,3412,3300,3217,3217,3298,3412,3299,3218,3301,3301,3413,3299,3414,3302,3219,3219,3300,3414,3301,3220,3303,3303,3415,3301,3416,3304,3221,3221,3302,3416,3303,3222,3305,3305,3417,3303,3418,3306,3223,3223,3304,3418,3305,3224,3307,3307,3419,3305,3420,3308,3225,3225,3306,3420,3307,3226,3309,3309,3421,3307,3422,3310,3227,3227,3308,3422,3423,3311,3229,3229,3310,3423,3424,3312,3231,3231,3311,3424,3425,3313,3233,3233,3312,3425,3426,3427,3314,3314,3313,3426,3428,3316,3236,3236,3315,3428,3429,3317,3237,3237,3316,3429,3430,3318,3238,3238,3317,3430,3431,3319,3239,3239,3318,3431,3432,3320,3240,3240,3319,3432,3433,3321,3241,3241,3320,3433,3434,3322,3242,3242,3321,3434,3435,3323,3243,3243,3322,3435,3436,3341,3260,3260,3323,3436,3340,3324,3325,3325,3259,3340,3437,3326,3244,3244,3324,3437,3438,3439,3327,3327,3326,3438,3439,3328,3246,3246,3327,3439,3440,3441,3329,3329,3328,3440,3441,3442,3330,3330,3329,3441,3442,3443,3331,3331,3330,3442,3443,3444,3332,3332,3331,3443,3332,3333,3251,3251,3250,3332,3421,3309,3252,3252,3333,3421,3295,3395,3335,3335,3334,3295,3395,3445,3336,3336,3335,3395,3336,3446,3337,3337,3257,3336,3446,3338,3166,3166,3337,3446,3447,3448,3339,3339,3338,3447,3448,3449,3340,3340,3339,3448,3450,3342,3261,3261,3341,3450,3451,3452,3343,3343,3342,3451,3343,3345,3263,3263,3262,3343,3453,3346,3264,3264,3345,3453,3454,3455,3347,3347,3346,3454,3347,3456,3348,3348,3265,3347,3348,3457,3349,3349,3266,3348,3349,3458,3350,3350,3267,3349,3350,3459,3351,3351,3268,3350,3351,3460,3352,3352,3269,3351,3352,3461,3353,3353,3270,3352,3353,3462,3354,3354,3271,3353,3354,3463,3355,3355,3272,3354,3355,3464,3356,3356,3273,3355,3356,3465,3357,3357,3274,3356,3357,3466,3358,3358,3275,3357,3358,3467,3359,3359,3276,3358,3359,3468,3360,3360,3277,3359,3360,3469,3361,3361,3278,3360,3361,3470,3362,3362,3279,3361,3362,3471,3363,3363,3280,3362,3363,3472,3364,3364,3281,3363,3364,3473,3365,3365,3282,3364,3365,3474,3366,3366,3283,3365,3366,3475,3367,3367,3284,3366,3285,3476,3369,3367,3477,3478,3285,3478,3476,3285,3367,3478,3379,3374,3370,3372,3479,3370,3479,3379,3370,3374,3379,3376,3378,3377,3380,3382,3480,3383,3386,3480,3382,3287,3387,3481,3481,3388,3287,3288,3388,3482,3482,3389,3288,3289,3389,3483,3483,3390,3289,3290,3390,3484,3484,3391,3290,3291,3391,3485,3485,3392,3291,3292,3392,3486,3486,3393,3292,3293,3393,3487,3487,3394,3293,3294,3394,3445,3445,3395,3294,3398,3488,3399,3387,3297,3403,3403,3481,3387,3400,3489,3401,3490,3406,3402,3401,3489,3402,3489,3490,3402,3396,3488,3489,3400,3397,3489,3397,3396,3489,3403,3299,3413,3413,3491,3403,3406,3490,3404,3492,3298,3408,3493,3412,3298,3492,3494,3298,3494,3493,3298,3495,3414,3300,3300,3412,3495,3413,3301,3415,3415,3496,3413,3497,3416,3302,3302,3414,3497,3415,3303,3417,3417,3498,3415,3499,3418,3304,3304,3416,3499,3417,3305,3419,3419,3500,3417,3501,3420,3306,3306,3418,3501,3419,3307,3421,3421,3444,3419,3502,3422,3308,3308,3420,3502,3503,3423,3310,3310,3422,3503,3504,3424,3311,3311,3423,3504,3505,3425,3312,3312,3424,3505,3506,3426,3313,3313,3425,3506,3507,3508,3427,3427,3426,3507,3509,3429,3316,3316,3428,3509,3510,3430,3317,3317,3429,3510,3511,3431,3318,3318,3430,3511,3512,3432,3319,3319,3431,3512,3513,3433,3320,3320,3432,3513,3514,3434,3321,3321,3433,3514,3515,3435,3322,3322,3434,3515,3516,3436,3323,3323,3435,3516,3517,3450,3341,3341,3436,3517,3449,3437,3324,3324,3340,3449,3518,3438,3326,3326,3437,3518,3519,3520,3439,3439,3438,3519,3520,3440,3328,3328,3439,3520,3521,3522,3441,3441,3440,3521,3522,3523,3442,3442,3441,3522,3523,3500,3443,3443,3442,3523,3500,3419,3444,3444,3443,3500,3444,3421,3333,3333,3332,3444,3445,3524,3446,3446,3336,3445,3524,3447,3338,3338,3446,3524,3525,3526,3448,3448,3447,3525,3526,3527,3449,3449,3448,3526,3528,3451,3342,3342,3450,3528,3529,3530,3452,3452,3451,3529,3452,3453,3345,3345,3343,3452,3531,3454,3346,3346,3453,3531,3532,3533,3455,3455,3454,3532,3455,3534,3456,3456,3347,3455,3456,3535,3457,3457,3348,3456,3457,3536,3458,3458,3349,3457,3458,3537,3459,3459,3350,3458,3459,3538,3460,3460,3351,3459,3460,3539,3461,3461,3352,3460,3461,3540,3462,3462,3353,3461,3462,3541,3463,3463,3354,3462,3463,3542,3464,3464,3355,3463,3464,3543,3465,3465,3356,3464,3465,3544,3466,3466,3357,3465,3466,3545,3467,3467,3358,3466,3467,3546,3468,3468,3359,3467,3468,3547,3469,3469,3360,3468,3469,3548,3470,3470,3361,3469,3470,3549,3471,3471,3362,3470,3471,3550,3472,3472,3363,3471,3472,3551,3473,3473,3364,3472,3473,3552,3474,3474,3365,3473,3474,3553,3475,3475,3366,3474,3554,3367,3475,3555,3477,3367,3554,3556,3367,3556,3555,3367,3371,3557,3479,3479,3373,3371,3368,3557,3371,3373,3479,3372,3379,3558,3559,3559,3377,3379,3480,3560,3384,3384,3383,3480,3386,3377,3480,3381,3380,3377,3386,3381,3377,3388,3481,3561,3561,3482,3388,3389,3482,3562,3562,3483,3389,3390,3483,3563,3563,3484,3390,3391,3484,3564,3564,3485,3391,3392,3485,3565,3565,3486,3392,3393,3486,3525,3525,3487,3393,3394,3487,3524,3524,3445,3394,3385,3488,3398,3566,3567,3488,3385,3566,3488,3399,3488,3396,3481,3403,3491,3491,3561,3481,3491,3413,3496,3496,3568,3491,3569,3409,3405,3404,3490,3405,3490,3569,3405,3489,3570,3571,3571,3490,3489,3409,3569,3410,3410,3569,3572,3572,3411,3410,3493,3495,3412,3573,3574,3495,3493,3575,3495,3575,3573,3495,3576,3497,3414,3414,3495,3576,3496,3415,3498,3498,3577,3496,3578,3499,3416,3416,3497,3578,3498,3417,3500,3500,3523,3498,3579,3501,3418,3418,3499,3579,3580,3502,3420,3420,3501,3580,3581,3503,3422,3422,3502,3581,3582,3504,3423,3423,3503,3582,3583,3505,3424,3424,3504,3583,3584,3506,3425,3425,3505,3584,3585,3507,3426,3426,3506,3585,3586,3587,3508,3508,3507,3586,3588,3510,3429,3429,3509,3588,3589,3511,3430,3430,3510,3589,3590,3512,3431,3431,3511,3590,3591,3513,3432,3432,3512,3591,3592,3514,3433,3433,3513,3592,3593,3515,3434,3434,3514,3593,3594,3516,3435,3435,3515,3594,3595,3517,3436,3436,3516,3595,3596,3528,3450,3450,3517,3596,3527,3518,3437,3437,3449,3527,3597,3519,3438,3438,3518,3597,3598,3599,3520,3520,3519,3598,3599,3521,3440,3440,3520,3599,3600,3577,3522,3522,3521,3600,3577,3498,3523,3523,3522,3577,3487,3525,3447,3447,3524,3487,3486,3565,3526,3526,3525,3486,3565,3601,3527,3527,3526,3565,3602,3529,3451,3451,3528,3602,3603,3604,3530,3530,3529,3603,3530,3531,3453,3453,3452,3530,3605,3532,3454,3454,3531,3605,3606,3607,3533,3533,3532,3606,3533,3608,3534,3534,3455,3533,3534,3609,3535,3535,3456,3534,3535,3610,3536,3536,3457,3535,3536,3611,3537,3537,3458,3536,3537,3612,3538,3538,3459,3537,3538,3613,3539,3539,3460,3538,3539,3614,3540,3540,3461,3539,3540,3615,3541,3541,3462,3540,3541,3616,3542,3542,3463,3541,3542,3617,3543,3543,3464,3542,3543,3618,3544,3544,3465,3543,3544,3619,3545,3545,3466,3544,3545,3620,3546,3546,3467,3545,3546,3621,3547,3547,3468,3546,3547,3622,3548,3548,3469,3547,3548,3623,3549,3549,3470,3548,3549,3624,3550,3550,3471,3549,3550,3625,3551,3551,3472,3550,3551,3626,3552,3552,3473,3551,3552,3627,3553,3553,3474,3552,3628,3553,3629,3554,3475,3553,3630,3631,3554,3628,3630,3553,3630,3554,3553,3478,3632,3476,3557,3633,3634,3634,3479,3557,3368,3632,3557,3369,3476,3632,3368,3369,3632,3479,3634,3558,3558,3379,3479,3560,3480,3377,3377,3559,3560,3560,3566,3385,3385,3384,3560,3482,3561,3635,3635,3562,3482,3483,3562,3636,3636,3563,3483,3484,3563,3637,3637,3564,3484,3485,3564,3601,3601,3565,3485,3488,3567,3570,3570,3489,3488,3561,3491,3568,3568,3635,3561,3568,3496,3577,3577,3600,3568,3490,3571,3638,3638,3569,3490,3569,3638,3639,3639,3572,3569,3411,3572,3407,3640,3492,3408,3407,3572,3408,3572,3640,3408,3492,3640,3494,3576,3641,3642,3495,3574,3643,3576,3643,3641,3576,3495,3643,3644,3578,3497,3497,3576,3644,3645,3579,3499,3499,3578,3645,3646,3580,3501,3501,3579,3646,3647,3581,3502,3502,3580,3647,3648,3582,3503,3503,3581,3648,3649,3583,3504,3504,3582,3649,3650,3584,3505,3505,3583,3650,3651,3585,3506,3506,3584,3651,3652,3586,3507,3507,3585,3652,3653,3654,3587,3587,3586,3653,3655,3589,3510,3510,3588,3655,3656,3590,3511,3511,3589,3656,3657,3591,3512,3512,3590,3657,3658,3592,3513,3513,3591,3658,3659,3593,3514,3514,3592,3659,3660,3594,3515,3515,3593,3660,3661,3595,3516,3516,3594,3661,3662,3596,3517,3517,3595,3662,3663,3602,3528,3528,3596,3663,3601,3597,3518,3518,3527,3601,3637,3598,3519,3519,3597,3637,3636,3664,3599,3599,3598,3636,3664,3600,3521,3521,3599,3664,3665,3603,3529,3529,3602,3665,3666,3667,3604,3604,3603,3666,3604,3605,3531,3531,3530,3604,3668,3606,3532,3532,3605,3668,3669,3670,3607,3607,3606,3669,3607,3671,3608,3608,3533,3607,3608,3672,3609,3609,3534,3608,3609,3673,3610,3610,3535,3609,3610,3674,3611,3611,3536,3610,3611,3675,3612,3612,3537,3611,3612,3676,3613,3613,3538,3612,3613,3677,3614,3614,3539,3613,3614,3678,3615,3615,3540,3614,3615,3679,3616,3616,3541,3615,3616,3680,3617,3617,3542,3616,3617,3681,3618,3618,3543,3617,3618,3682,3619,3619,3544,3618,3619,3683,3620,3620,3545,3619,3620,3684,3621,3621,3546,3620,3621,3685,3622,3622,3547,3621,3622,3686,3623,3623,3548,3622,3623,3687,3624,3624,3549,3623,3624,3688,3625,3625,3550,3624,3625,3689,3626,3626,3551,3625,3626,3690,3627,3627,3552,3626,3627,3629,3553,3691,3692,3693,3627,3693,3629,3627,3694,3695,3627,3691,3693,3627,3695,3691,3556,3696,3697,3554,3631,3696,3556,3554,3696,3633,3557,3632,3632,3698,3633,3558,3699,3700,3700,3559,3558,3634,3701,3699,3699,3558,3634,3559,3700,3702,3702,3560,3559,3560,3702,3703,3703,3566,3560,3562,3635,3664,3664,3636,3562,3563,3636,3598,3598,3637,3563,3564,3637,3597,3597,3601,3564,3566,3703,3704,3704,3567,3566,3635,3568,3600,3600,3664,3635,3567,3704,3705,3705,3570,3567,3570,3705,3706,3706,3571,3570,3575,3640,3707,3493,3494,3640,3575,3493,3640,3575,3707,3573,3644,3708,3709,3576,3642,3710,3644,3711,3708,3576,3710,3712,3644,3712,3711,3644,3576,3712,3713,3645,3578,3578,3644,3713,3714,3646,3579,3579,3645,3714,3715,3647,3580,3580,3646,3715,3716,3648,3581,3581,3647,3716,3717,3649,3582,3582,3648,3717,3718,3650,3583,3583,3649,3718,3719,3651,3584,3584,3650,3719,3720,3652,3585,3585,3651,3720,3721,3653,3586,3586,3652,3721,3722,3723,3654,3654,3653,3722,3724,3656,3589,3589,3655,3724,3725,3657,3590,3590,3656,3725,3726,3658,3591,3591,3657,3726,3727,3659,3592,3592,3658,3727,3728,3660,3593,3593,3659,3728,3729,3661,3594,3594,3660,3729,3730,3662,3595,3595,3661,3730,3731,3663,3596,3596,3662,3731,3732,3665,3602,3602,3663,3732,3733,3666,3603,3603,3665,3733,3734,3735,3667,3667,3666,3734,3667,3668,3605,3605,3604,3667,3736,3669,3606,3606,3668,3736,3670,3669,3737,3670,3738,3671,3671,3607,3670,3671,3739,3672,3672,3608,3671,3672,3740,3673,3673,3609,3672,3673,3741,3674,3674,3610,3673,3674,3742,3675,3675,3611,3674,3675,3743,3676,3676,3612,3675,3676,3744,3677,3677,3613,3676,3677,3745,3678,3678,3614,3677,3678,3746,3679,3679,3615,3678,3679,3747,3680,3680,3616,3679,3680,3748,3681,3681,3617,3680,3681,3749,3682,3682,3618,3681,3682,3750,3683,3683,3619,3682,3683,3751,3684,3684,3620,3683,3684,3752,3685,3685,3621,3684,3685,3753,3686,3686,3622,3685,3686,3754,3687,3687,3623,3686,3687,3755,3688,3688,3624,3687,3688,3756,3689,3689,3625,3688,3689,3757,3690,3690,3626,3689,3690,3758,3694,3694,3627,3690,3556,3697,3555,3632,3478,3477,3555,3697,3477,3697,3632,3477,3633,3759,3701,3701,3634,3633,3698,3760,3759,3759,3633,3698,3571,3706,3761,3761,3638,3571,3572,3639,3762,3762,3640,3572,3638,3761,3763,3763,3639,3638,3707,3574,3573,3764,3643,3574,3707,3764,3574,3642,3765,3710,3641,3764,3765,3642,3641,3765,3643,3764,3641,3766,3713,3644,3644,3709,3766,3767,3714,3645,3645,3713,3767,3768,3715,3646,3646,3714,3768,3769,3716,3647,3647,3715,3769,3770,3717,3648,3648,3716,3770,3771,3718,3649,3649,3717,3771,3772,3719,3650,3650,3718,3772,3773,3720,3651,3651,3719,3773,3774,3721,3652,3652,3720,3774,3775,3722,3653,3653,3721,3775,3776,3777,3723,3723,3722,3776,3778,3725,3656,3656,3724,3778,3779,3726,3657,3657,3725,3779,3780,3727,3658,3658,3726,3780,3781,3728,3659,3659,3727,3781,3782,3729,3660,3660,3728,3782,3783,3730,3661,3661,3729,3783,3784,3731,3662,3662,3730,3784,3785,3732,3663,3663,3731,3785,3786,3733,3665,3665,3732,3786,3787,3734,3666,3666,3733,3787,3735,3734,3737,3735,3736,3668,3668,3667,3735,3669,3736,3737,3738,3670,3737,3738,3788,3739,3739,3671,3738,3739,3789,3740,3740,3672,3739,3740,3790,3741,3741,3673,3740,3741,3791,3742,3742,3674,3741,3742,3792,3743,3743,3675,3742,3743,3793,3744,3744,3676,3743,3744,3794,3745,3745,3677,3744,3745,3795,3746,3746,3678,3745,3746,3796,3747,3747,3679,3746,3747,3797,3748,3748,3680,3747,3748,3798,3749,3749,3681,3748,3749,3799,3750,3750,3682,3749,3750,3800,3751,3751,3683,3750,3751,3801,3752,3752,3684,3751,3752,3802,3753,3753,3685,3752,3753,3803,3754,3754,3686,3753,3754,3804,3755,3755,3687,3754,3755,3805,3756,3756,3688,3755,3756,3806,3757,3757,3689,3756,3757,3807,3758,3758,3690,3757,3808,3809,3810,3694,3758,3809,3811,3812,3694,3808,3813,3809,3813,3811,3694,3813,3694,3809,3814,3628,3629,3629,3693,3814,3628,3814,3696,3696,3630,3628,3630,3696,3631,3815,3816,3697,3697,3696,3815,3698,3632,3697,3697,3816,3698,3760,3698,3816,3816,3817,3760,3699,3818,3819,3819,3700,3699,3701,3820,3818,3818,3699,3701,3759,3821,3820,3820,3701,3759,3700,3819,3822,3822,3702,3700,3822,3823,3703,3703,3702,3822,3823,3824,3704,3704,3703,3823,3704,3824,3825,3825,3705,3704,3705,3825,3826,3826,3706,3705,3640,3762,3827,3827,3707,3640,3828,3709,3829,3809,3766,3709,3830,3810,3809,3828,3809,3709,3828,3830,3809,3831,3767,3713,3713,3766,3831,3832,3768,3714,3714,3767,3832,3833,3769,3715,3715,3768,3833,3834,3770,3716,3716,3769,3834,3835,3771,3717,3717,3770,3835,3836,3772,3718,3718,3771,3836,3837,3773,3719,3719,3772,3837,3838,3774,3720,3720,3773,3838,3839,3775,3721,3721,3774,3839,3840,3776,3722,3722,3775,3840,3841,3842,3777,3777,3776,3841,3843,3779,3725,3725,3778,3843,3844,3780,3726,3726,3779,3844,3845,3781,3727,3727,3780,3845,3846,3782,3728,3728,3781,3846,3847,3783,3729,3729,3782,3847,3848,3784,3730,3730,3783,3848,3849,3785,3731,3731,3784,3849,3850,3786,3732,3732,3785,3850,3851,3787,3733,3733,3786,3851,3734,3787,3737,3736,3735,3737,3788,3738,3737,3788,3852,3789,3789,3739,3788,3789,3853,3790,3790,3740,3789,3790,3854,3791,3791,3741,3790,3791,3855,3792,3792,3742,3791,3792,3856,3793,3793,3743,3792,3793,3857,3794,3794,3744,3793,3794,3858,3795,3795,3745,3794,3795,3859,3796,3796,3746,3795,3796,3860,3797,3797,3747,3796,3797,3861,3798,3798,3748,3797,3798,3862,3799,3799,3749,3798,3799,3863,3800,3800,3750,3799,3800,3864,3801,3801,3751,3800,3801,3865,3802,3802,3752,3801,3802,3866,3803,3803,3753,3802,3803,3867,3804,3804,3754,3803,3804,3868,3805,3805,3755,3804,3805,3869,3806,3806,3756,3805,3806,3870,3807,3807,3757,3806,3807,3871,3809,3809,3758,3807,3692,3872,3814,3814,3693,3692,3815,3696,3814,3814,3873,3815,3815,3874,3817,3817,3816,3815,3760,3875,3821,3821,3759,3760,3817,3876,3875,3875,3760,3817,3822,3877,3878,3878,3823,3822,3823,3878,3879,3879,3824,3823,3706,3826,3880,3880,3761,3706,3639,3763,3881,3881,3762,3639,3761,3880,3882,3882,3763,3761,3707,3827,3883,3883,3764,3707,3710,3765,3712,3764,3883,3884,3884,3765,3764,3871,3831,3766,3766,3809,3871,3885,3832,3767,3767,3831,3885,3886,3833,3768,3768,3832,3886,3887,3834,3769,3769,3833,3887,3888,3835,3770,3770,3834,3888,3889,3836,3771,3771,3835,3889,3890,3837,3772,3772,3836,3890,3891,3838,3773,3773,3837,3891,3892,3839,3774,3774,3838,3892,3893,3840,3775,3775,3839,3893,3894,3841,3776,3776,3840,3894,3895,3896,3842,3842,3841,3895,3897,3844,3779,3779,3843,3897,3898,3845,3780,3780,3844,3898,3899,3846,3781,3781,3845,3899,3900,3847,3782,3782,3846,3900,3901,3848,3783,3783,3847,3901,3902,3849,3784,3784,3848,3902,3903,3850,3785,3785,3849,3903,3904,3851,3786,3786,3850,3904,3787,3851,3737,3852,3788,3737,3852,3905,3853,3853,3789,3852,3853,3906,3854,3854,3790,3853,3854,3907,3855,3855,3791,3854,3855,3908,3856,3856,3792,3855,3856,3909,3857,3857,3793,3856,3857,3910,3858,3858,3794,3857,3858,3911,3859,3859,3795,3858,3859,3912,3860,3860,3796,3859,3860,3913,3861,3861,3797,3860,3861,3914,3862,3862,3798,3861,3862,3915,3863,3863,3799,3862,3863,3916,3864,3864,3800,3863,3864,3917,3865,3865,3801,3864,3865,3918,3866,3866,3802,3865,3866,3919,3867,3867,3803,3866,3867,3920,3868,3868,3804,3867,3868,3921,3869,3869,3805,3868,3869,3922,3870,3870,3806,3869,3870,3923,3871,3871,3807,3870,3695,3694,3812,3691,3872,3692,3872,3924,3873,3873,3814,3872,3873,3925,3874,3874,3815,3873,3876,3817,3874,3874,3926,3876,3818,3927,3928,3928,3819,3818,3929,3927,3818,3818,3820,3929,3821,3930,3929,3929,3820,3821,3875,3931,3930,3930,3821,3875,3819,3928,3877,3877,3822,3819,3824,3879,3932,3932,3825,3824,3825,3932,3933,3933,3826,3825,3762,3881,3934,3934,3827,3762,3827,3934,3935,3935,3883,3827,3712,3765,3936,3936,3711,3712,3828,3936,3937,3829,3938,3936,3828,3829,3936,3829,3709,3708,3708,3938,3829,3828,3937,3830,3923,3885,3831,3831,3871,3923,3939,3886,3832,3832,3885,3939,3940,3887,3833,3833,3886,3940,3941,3888,3834,3834,3887,3941,3942,3889,3835,3835,3888,3942,3943,3890,3836,3836,3889,3943,3944,3891,3837,3837,3890,3944,3945,3892,3838,3838,3891,3945,3946,3893,3839,3839,3892,3946,3947,3894,3840,3840,3893,3947,3948,3895,3841,3841,3894,3948,3949,3950,3896,3896,3895,3949,3951,3898,3844,3844,3897,3951,3952,3899,3845,3845,3898,3952,3953,3900,3846,3846,3899,3953,3954,3901,3847,3847,3900,3954,3955,3902,3848,3848,3901,3955,3956,3903,3849,3849,3902,3956,3957,3904,3850,3850,3903,3957,3851,3904,3737,3905,3852,3737,3905,3958,3906,3906,3853,3905,3906,3959,3907,3907,3854,3906,3907,3960,3908,3908,3855,3907,3908,3961,3909,3909,3856,3908,3909,3962,3910,3910,3857,3909,3910,3963,3911,3911,3858,3910,3911,3964,3912,3912,3859,3911,3912,3965,3913,3913,3860,3912,3913,3966,3914,3914,3861,3913,3914,3967,3915,3915,3862,3914,3915,3968,3916,3916,3863,3915,3916,3969,3917,3917,3864,3916,3917,3970,3918,3918,3865,3917,3918,3971,3919,3919,3866,3918,3919,3972,3920,3920,3867,3919,3920,3973,3921,3921,3868,3920,3921,3974,3922,3922,3869,3921,3922,3975,3923,3923,3870,3922,3808,3976,3977,3977,3813,3808,3813,3977,3811,3977,3812,3811,3872,3691,3695,3977,3695,3812,3977,3872,3695,3924,3872,3977,3977,3978,3924,3924,3979,3925,3925,3873,3924,3925,3980,3926,3926,3874,3925,3876,3981,3931,3931,3875,3876,3926,3982,3981,3981,3876,3926,3929,3983,3984,3984,3927,3929,3877,3985,3986,3986,3878,3877,3928,3987,3985,3985,3877,3928,3878,3986,3988,3988,3879,3878,3933,3989,3880,3880,3826,3933,3763,3882,3990,3990,3881,3763,3880,3989,3991,3991,3882,3880,3765,3884,3992,3992,3936,3765,3936,3938,3708,3708,3711,3936,3883,3935,3993,3993,3884,3883,3830,3937,3976,3976,3810,3830,3975,3939,3885,3885,3923,3975,3994,3940,3886,3886,3939,3994,3995,3941,3887,3887,3940,3995,3996,3942,3888,3888,3941,3996,3997,3943,3889,3889,3942,3997,3998,3944,3890,3890,3943,3998,3999,3945,3891,3891,3944,3999,4000,3946,3892,3892,3945,4000,4001,3947,3893,3893,3946,4001,4002,3948,3894,3894,3947,4002,4003,3949,3895,3895,3948,4003,4004,4005,3950,3950,3949,4004,4006,3952,3898,3898,3951,4006,4007,3953,3899,3899,3952,4007,4008,3954,3900,3900,3953,4008,4009,3955,3901,3901,3954,4009,4010,3956,3902,3902,3955,4010,4011,3957,3903,3903,3956,4011,3904,3957,3737,3958,3905,3737,3958,4012,3959,3959,3906,3958,3959,4013,3960,3960,3907,3959,3960,4014,3961,3961,3908,3960,3961,4015,3962,3962,3909,3961,3962,4016,3963,3963,3910,3962,3963,4017,3964,3964,3911,3963,3964,4018,3965,3965,3912,3964,3965,4019,3966,3966,3913,3965,3966,4020,3967,3967,3914,3966,3967,4021,3968,3968,3915,3967,3968,4022,3969,3969,3916,3968,3969,4023,3970,3970,3917,3969,3970,4024,3971,3971,3918,3970,3971,4025,3972,3972,3919,3971,3972,4026,3973,3973,3920,3972,3973,4027,3974,3974,3921,3973,3974,4028,3975,3975,3922,3974,3810,3976,3808,3976,4029,3978,3978,3977,3976,3978,4030,3979,3979,3924,3978,3979,4031,3980,3980,3925,3979,3982,3926,3980,3980,4032,3982,3927,3984,3987,3987,3928,3927,3930,4033,3983,3983,3929,3930,3931,4034,4033,4033,3930,3931,3981,4035,4034,4034,3931,3981,3879,3988,4036,4036,3932,3879,3932,4036,4037,4037,3933,3932,3933,4037,4038,4038,3989,3933,3881,3990,4039,4039,3934,3881,3934,4039,4040,4040,3935,3934,3936,3992,4041,4041,3937,3936,3937,4041,4029,4029,3976,3937,4028,3994,3939,3939,3975,4028,4042,3995,3940,3940,3994,4042,4043,3996,3941,3941,3995,4043,4044,3997,3942,3942,3996,4044,4045,3998,3943,3943,3997,4045,4046,3999,3944,3944,3998,4046,4047,4000,3945,3945,3999,4047,4048,4001,3946,3946,4000,4048,4049,4002,3947,3947,4001,4049,4050,4003,3948,3948,4002,4050,4051,4004,3949,3949,4003,4051,4052,4053,4005,4005,4004,4052,4054,4007,3952,3952,4006,4054,4055,4008,3953,3953,4007,4055,4056,4009,3954,3954,4008,4056,4057,4010,3955,3955,4009,4057,4058,4011,3956,3956,4010,4058,3957,4011,3737,4012,3958,3737,4012,4059,4013,4013,3959,4012,4013,4060,4014,4014,3960,4013,4014,4061,4015,4015,3961,4014,4015,4062,4016,4016,3962,4015,4016,4063,4017,4017,3963,4016,4017,4064,4018,4018,3964,4017,4018,4065,4019,4019,3965,4018,4019,4066,4020,4020,3966,4019,4020,4067,4021,4021,3967,4020,4021,4068,4022,4022,3968,4021,4022,4069,4023,4023,3969,4022,4023,4070,4024,4024,3970,4023,4024,4071,4025,4025,3971,4024,4025,4072,4026,4026,3972,4025,4026,4073,4027,4027,3973,4026,4027,4074,4028,4028,3974,4027,4030,3978,4029,4029,4075,4030,4030,4076,4031,4031,3979,4030,4031,4077,4032,4032,3980,4031,3982,4078,4035,4035,3981,3982,4032,4079,4078,4078,3982,4032,3983,4080,4081,4081,3984,3983,4082,4080,3983,3983,4033,4082,3985,4083,4084,4084,3986,3985,3987,4085,4083,4083,3985,3987,3984,4081,4085,4085,3987,3984,3986,4084,4086,4086,3988,3986,3882,3991,4087,4087,3990,3882,3989,4038,4088,4088,3991,3989,3884,3993,4089,4089,3992,3884,3935,4040,4090,4090,3993,3935,4074,4042,3994,3994,4028,4074,4091,4043,3995,3995,4042,4091,4092,4044,3996,3996,4043,4092,4093,4045,3997,3997,4044,4093,4094,4046,3998,3998,4045,4094,4095,4047,3999,3999,4046,4095,4096,4048,4000,4000,4047,4096,4097,4049,4001,4001,4048,4097,4098,4050,4002,4002,4049,4098,4099,4051,4003,4003,4050,4099,4100,4052,4004,4004,4051,4100,4101,4102,4053,4053,4052,4101,4103,4055,4007,4007,4054,4103,4104,4056,4008,4008,4055,4104,4105,4057,4009,4009,4056,4105,4106,4058,4010,4010,4057,4106,4011,4058,3737,4059,4012,3737,4059,4107,4060,4060,4013,4059,4060,4108,4061,4061,4014,4060,4061,4109,4062,4062,4015,4061,4062,4110,4063,4063,4016,4062,4063,4111,4064,4064,4017,4063,4064,4112,4065,4065,4018,4064,4065,4113,4066,4066,4019,4065,4066,4114,4067,4067,4020,4066,4067,4115,4068,4068,4021,4067,4068,4116,4069,4069,4022,4068,4069,4117,4070,4070,4023,4069,4070,4118,4071,4071,4024,4070,4071,4119,4072,4072,4025,4071,4072,4120,4073,4073,4026,4072,4073,4121,4074,4074,4027,4073,4041,4122,4075,4075,4029,4041,4075,4123,4076,4076,4030,4075,4076,4124,4077,4077,4031,4076,4079,4032,4077,4077,4125,4079,4034,4126,4082,4082,4033,4034,4082,4127,4128,4128,4080,4082,4035,4129,4126,4126,4034,4035,4078,4130,4129,4129,4035,4078,3988,4086,4131,4131,4036,3988,4036,4131,4132,4132,4037,4036,4037,4132,4133,4133,4038,4037,3990,4087,4134,4134,4039,3990,4039,4134,4135,4135,4040,4039,3992,4089,4122,4122,4041,3992,4121,4091,4042,4042,4074,4121,4136,4092,4043,4043,4091,4136,4137,4093,4044,4044,4092,4137,4138,4094,4045,4045,4093,4138,4139,4095,4046,4046,4094,4139,4140,4096,4047,4047,4095,4140,4141,4097,4048,4048,4096,4141,4142,4098,4049,4049,4097,4142,4143,4099,4050,4050,4098,4143,4144,4100,4051,4051,4099,4144,4145,4101,4052,4052,4100,4145,4146,4147,4102,4102,4101,4146,4148,4104,4055,4055,4103,4148,4149,4105,4056,4056,4104,4149,4150,4106,4057,4057,4105,4150,4058,4106,3737,4107,4059,3737,4107,4151,4108,4108,4060,4107,4108,4152,4109,4109,4061,4108,4109,4153,4110,4110,4062,4109,4110,4154,4111,4111,4063,4110,4111,4155,4112,4112,4064,4111,4112,4156,4113,4113,4065,4112,4113,4157,4114,4114,4066,4113,4114,4158,4115,4115,4067,4114,4115,4159,4116,4116,4068,4115,4116,4160,4117,4117,4069,4116,4117,4161,4118,4118,4070,4117,4118,4162,4119,4119,4071,4118,4119,4163,4120,4120,4072,4119,4120,4164,4121,4121,4073,4120,4123,4075,4122,4122,4165,4123,4123,4166,4124,4124,4076,4123,4079,4167,4130,4130,4078,4079,4126,4168,4127,4127,4082,4126,4133,4169,4088,4088,4038,4133,4164,4136,4091,4091,4121,4164,4170,4137,4092,4092,4136,4170,4171,4138,4093,4093,4137,4171,4172,4139,4094,4094,4138,4172,4173,4140,4095,4095,4139,4173,4174,4141,4096,4096,4140,4174,4175,4142,4097,4097,4141,4175,4176,4143,4098,4098,4142,4176,4177,4144,4099,4099,4143,4177,4178,4145,4100,4100,4144,4178,4179,4146,4101,4101,4145,4179,4180,4181,4147,4147,4146,4180,4182,4149,4104,4104,4148,4182,4183,4150,4105,4105,4149,4183,4106,4150,3737,4151,4107,3737,4151,4184,4152,4152,4108,4151,4152,4185,4153,4153,4109,4152,4153,4186,4154,4154,4110,4153,4154,4187,4155,4155,4111,4154,4155,4188,4156,4156,4112,4155,4156,4189,4157,4157,4113,4156,4157,4190,4158,4158,4114,4157,4158,4191,4159,4159,4115,4158,4159,4192,4160,4160,4116,4159,4160,4193,4161,4161,4117,4160,4161,4194,4162,4162,4118,4161,4162,4195,4163,4163,4119,4162,4163,4196,4164,4164,4120,4163,4165,4197,4166,4166,4123,4165,4125,4077,4124,4124,4198,4125,4198,4124,4166,4166,4199,4198,4167,4079,4125,4125,4200,4167,4200,4125,4198,4198,4201,4200,4129,4202,4168,4168,4126,4129,4203,4081,4080,4080,4128,4203,4127,4204,4205,4205,4128,4127,4168,4206,4204,4204,4127,4168,4130,4207,4202,4202,4129,4130,4167,4208,4207,4207,4130,4167,4209,4084,4083,4083,4210,4209,4210,4083,4085,4085,4211,4210,4211,4085,4081,4081,4203,4211,4212,4086,4084,4084,4209,4212,4086,4212,4213,4213,4131,4086,4131,4213,4214,4214,4132,4131,4132,4214,4215,4215,4133,4132,4216,4087,3991,3991,4088,4216,4133,4215,4217,4217,4169,4133,4088,4169,4218,4218,4216,4088,4087,4216,4219,4219,4134,4087,4134,4219,4220,4220,4135,4134,4221,4089,3993,3993,4090,4221,4222,4090,4040,4040,4135,4222,4196,4170,4136,4136,4164,4196,4223,4171,4137,4137,4170,4223,4224,4172,4138,4138,4171,4224,4225,4173,4139,4139,4172,4225,4226,4174,4140,4140,4173,4226,4227,4175,4141,4141,4174,4227,4228,4176,4142,4142,4175,4228,4229,4177,4143,4143,4176,4229,4230,4178,4144,4144,4177,4230,4231,4179,4145,4145,4178,4231,4232,4180,4146,4146,4179,4232,4233,4234,4181,4181,4180,4233,4235,4183,4149,4149,4182,4235,4150,4183,3737,4184,4151,3737,4236,4237,4185,4185,4152,4236,4185,4238,4186,4186,4153,4185,4186,4239,4187,4187,4154,4186,4187,4240,4188,4188,4155,4187,4188,4241,4189,4189,4156,4188,4189,4242,4190,4190,4157,4189,4190,4243,4191,4191,4158,4190,4191,4244,4192,4192,4159,4191,4192,4245,4193,4193,4160,4192,4193,4246,4194,4194,4161,4193,4194,4247,4195,4195,4162,4194,4195,4248,4196,4196,4163,4195,4165,4122,4089,4089,4221,4165,4197,4165,4221,4221,4249,4197,4197,4250,4199,4199,4166,4197,4199,4251,4201,4201,4198,4199,4200,4252,4208,4208,4167,4200,4201,4253,4252,4252,4200,4201,4128,4205,4254,4254,4203,4128,4202,4255,4206,4206,4168,4202,4210,4256,4257,4257,4209,4210,4211,4258,4256,4256,4210,4211,4203,4254,4258,4258,4211,4203,4209,4257,4259,4259,4212,4209,4090,4222,4249,4249,4221,4090,4135,4220,4260,4260,4222,4135,4248,4223,4170,4170,4196,4248,4261,4224,4171,4171,4223,4261,4262,4225,4172,4172,4224,4262,4263,4226,4173,4173,4225,4263,4264,4227,4174,4174,4226,4264,4265,4228,4175,4175,4227,4265,4266,4229,4176,4176,4228,4266,4267,4230,4177,4177,4229,4267,4268,4231,4178,4178,4230,4268,4269,4232,4179,4179,4231,4269,4270,4233,4180,4180,4232,4270,4271,4272,4234,4234,4233,4271,4183,4235,3737,4237,4236,4273,4237,4274,4238,4238,4185,4237,4238,4275,4239,4239,4186,4238,4239,4276,4240,4240,4187,4239,4240,4277,4241,4241,4188,4240,4241,4278,4242,4242,4189,4241,4242,4279,4243,4243,4190,4242,4243,4280,4244,4244,4191,4243,4244,4281,4245,4245,4192,4244,4245,4282,4246,4246,4193,4245,4246,4283,4247,4247,4194,4246,4247,4284,4248,4248,4195,4247,4249,4285,4250,4250,4197,4249,4250,4286,4251,4251,4199,4250,4253,4201,4251,4251,4287,4253,4207,4288,4255,4255,4202,4207,4204,4289,4290,4290,4205,4204,4206,4291,4289,4289,4204,4206,4255,4292,4291,4291,4206,4255,4208,4293,4288,4288,4207,4208,4252,4294,4293,4293,4208,4252,4212,4259,4295,4295,4213,4212,4213,4295,4296,4296,4214,4213,4214,4296,4297,4297,4215,4214,4215,4297,4298,4298,4217,4215,4169,4217,4299,4299,4218,4169,4216,4218,4300,4300,4219,4216,4219,4300,4301,4301,4220,4219,4284,4261,4223,4223,4248,4284,4302,4262,4224,4224,4261,4302,4303,4263,4225,4225,4262,4303,4304,4264,4226,4226,4263,4304,4305,4265,4227,4227,4264,4305,4306,4266,4228,4228,4265,4306,4307,4267,4229,4229,4266,4307,4308,4268,4230,4230,4267,4308,4309,4269,4231,4231,4268,4309,4310,4270,4232,4232,4269,4310,4311,4271,4233,4233,4270,4311,4272,4271,4273,4274,4237,4273,4274,4312,4275,4275,4238,4274,4275,4313,4276,4276,4239,4275,4276,4314,4277,4277,4240,4276,4277,4315,4278,4278,4241,4277,4278,4316,4279,4279,4242,4278,4279,4317,4280,4280,4243,4279,4280,4318,4281,4281,4244,4280,4281,4319,4282,4282,4245,4281,4282,4320,4283,4283,4246,4282,4283,4321,4284,4284,4247,4283,4285,4249,4222,4222,4260,4285,4285,4322,4286,4286,4250,4285,4286,4323,4287,4287,4251,4286,4253,4324,4294,4294,4252,4253,4287,4325,4324,4324,4253,4287,4205,4290,4326,4326,4254,4205,4288,4327,4292,4292,4255,4288,4256,4328,4329,4329,4257,4256,4258,4330,4328,4328,4256,4258,4254,4326,4330,4330,4258,4254,4257,4329,4331,4331,4259,4257,4220,4301,4332,4332,4260,4220,4321,4302,4261,4261,4284,4321,4333,4303,4262,4262,4302,4333,4334,4304,4263,4263,4303,4334,4335,4305,4264,4264,4304,4335,4336,4306,4265,4265,4305,4336,4337,4307,4266,4266,4306,4337,4338,4308,4267,4267,4307,4338,4339,4309,4268,4268,4308,4339,4340,4310,4269,4269,4309,4340,4341,4311,4270,4270,4310,4341,4271,4311,4273,4312,4274,4273,4312,4342,4313,4313,4275,4312,4313,4343,4314,4314,4276,4313,4314,4344,4315,4315,4277,4314,4315,4345,4316,4316,4278,4315,4316,4346,4317,4317,4279,4316,4317,4347,4318,4318,4280,4317,4318,4348,4319,4319,4281,4318,4319,4349,4320,4320,4282,4319,4320,4350,4321,4321,4283,4320,4260,4332,4322,4322,4285,4260,4322,4351,4323,4323,4286,4322,4325,4287,4323,4323,4352,4325,4293,4353,4327,4327,4288,4293,4289,4354,4355,4355,4290,4289,4291,4356,4354,4354,4289,4291,4292,4357,4356,4356,4291,4292,4327,4358,4357,4357,4292,4327,4294,4359,4353,4353,4293,4294,4324,4360,4359,4359,4294,4324,4259,4331,4361,4361,4295,4259,4295,4361,4362,4362,4296,4295,4296,4362,4363,4363,4297,4296,4217,4298,4364,4364,4299,4217,4297,4363,4365,4365,4298,4297,4218,4299,4366,4366,4300,4218,4300,4366,4367,4367,4301,4300,4350,4333,4302,4302,4321,4350,4368,4334,4303,4303,4333,4368,4369,4335,4304,4304,4334,4369,4370,4336,4305,4305,4335,4370,4371,4337,4306,4306,4336,4371,4372,4338,4307,4307,4337,4372,4373,4339,4308,4308,4338,4373,4374,4340,4309,4309,4339,4374,4375,4341,4310,4310,4340,4375,4311,4341,4273,4342,4312,4273,4342,4376,4343,4343,4313,4342,4343,4377,4344,4344,4314,4343,4344,4378,4345,4345,4315,4344,4345,4379,4346,4346,4316,4345,4346,4380,4347,4347,4317,4346,4347,4381,4348,4348,4318,4347,4348,4382,4349,4349,4319,4348,4349,4383,4350,4350,4320,4349,4332,4384,4351,4351,4322,4332,4351,4385,4352,4352,4323,4351,4325,4386,4360,4360,4324,4325,4352,4387,4386,4386,4325,4352,4290,4355,4388,4388,4326,4290,4353,4389,4358,4358,4327,4353,4328,4390,4391,4391,4329,4328,4330,4392,4390,4390,4328,4330,4326,4388,4392,4392,4330,4326,4329,4391,4393,4393,4331,4329,4301,4367,4384,4384,4332,4301,4383,4368,4333,4333,4350,4383,4394,4369,4334,4334,4368,4394,4395,4370,4335,4335,4369,4395,4396,4371,4336,4336,4370,4396,4397,4372,4337,4337,4371,4397,4398,4373,4338,4338,4372,4398,4399,4374,4339,4339,4373,4399,4400,4375,4340,4340,4374,4400,4341,4375,4273,4376,4342,4273,4376,4401,4377,4377,4343,4376,4377,4402,4378,4378,4344,4377,4378,4403,4379,4379,4345,4378,4379,4404,4380,4380,4346,4379,4380,4405,4381,4381,4347,4380,4381,4406,4382,4382,4348,4381,4382,4407,4383,4383,4349,4382,4384,4408,4385,4385,4351,4384,4387,4352,4385,4385,4409,4387,4359,4410,4389,4389,4353,4359,4354,4411,4412,4412,4355,4354,4356,4413,4411,4411,4354,4356,4357,4414,4413,4413,4356,4357,4358,4415,4414,4414,4357,4358,4389,4416,4415,4415,4358,4389,4360,4417,4410,4410,4359,4360,4386,4418,4417,4417,4360,4386,4331,4393,4419,4419,4361,4331,4361,4419,4420,4420,4362,4361,4362,4420,4421,4421,4363,4362,4298,4365,4422,4422,4364,4298,4299,4364,4423,4423,4366,4299,4363,4421,4424,4424,4365,4363,4366,4423,4425,4425,4367,4366,4407,4394,4368,4368,4383,4407,4426,4395,4369,4369,4394,4426,4427,4396,4370,4370,4395,4427,4428,4397,4371,4371,4396,4428,4429,4398,4372,4372,4397,4429,4430,4399,4373,4373,4398,4430,4431,4400,4374,4374,4399,4431,4375,4400,4273,4401,4376,4273,4401,4432,4402,4402,4377,4401,4402,4433,4403,4403,4378,4402,4403,4434,4404,4404,4379,4403,4404,4435,4405,4405,4380,4404,4405,4436,4406,4406,4381,4405,4406,4437,4407,4407,4382,4406,4367,4425,4408,4408,4384,4367,4408,4438,4409,4409,4385,4408,4387,4439,4418,4418,4386,4387,4409,4440,4439,4439,4387,4409,4355,4412,4441,4441,4388,4355,4410,4442,4416,4416,4389,4410,4392,4443,4444,4444,4390,4392,4390,4444,4445,4445,4391,4390,4388,4441,4443,4443,4392,4388,4391,4445,4446,4446,4393,4391,4437,4426,4394,4394,4407,4437,4447,4427,4395,4395,4426,4447,4448,4428,4396,4396,4427,4448,4449,4429,4397,4397,4428,4449,4450,4430,4398,4398,4429,4450,4451,4431,4399,4399,4430,4451,4400,4431,4273,4432,4401,4273,4432,4452,4433,4433,4402,4432,4433,4453,4434,4434,4403,4433,4434,4454,4435,4435,4404,4434,4435,4455,4436,4436,4405,4435,4436,4456,4437,4437,4406,4436,4425,4457,4438,4438,4408,4425,4440,4409,4438,4438,4458,4440,4417,4459,4442,4442,4410,4417,4411,4460,4461,4461,4412,4411,4413,4462,4460,4460,4411,4413,4414,4463,4462,4462,4413,4414,4415,4464,4463,4463,4414,4415,4416,4465,4464,4464,4415,4416,4442,4466,4465,4465,4416,4442,4418,4467,4459,4459,4417,4418,4439,4468,4467,4467,4418,4439,4393,4446,4469,4469,4419,4393,4419,4469,4470,4470,4420,4419,4420,4470,4471,4471,4421,4420,4364,4422,4472,4472,4423,4364,4365,4424,4473,4473,4422,4365,4421,4471,4474,4474,4424,4421,4423,4472,4457,4457,4425,4423,4456,4447,4426,4426,4437,4456,4475,4448,4427,4427,4447,4475,4476,4449,4428,4428,4448,4476,4477,4450,4429,4429,4449,4477,4478,4451,4430,4430,4450,4478,4431,4451,4273,4452,4432,4273,4452,4479,4453,4453,4433,4452,4453,4480,4454,4454,4434,4453,4454,4481,4455,4455,4435,4454,4455,4482,4456,4456,4436,4455,4457,4483,4458,4458,4438,4457,4440,4484,4468,4468,4439,4440,4458,4485,4484,4484,4440,4458,4412,4461,4486,4486,4441,4412,4459,4487,4466,4466,4442,4459,4443,4488,4489,4489,4444,4443,4441,4486,4488,4488,4443,4441,4444,4489,4490,4490,4445,4444,4445,4490,4491,4491,4446,4445,4482,4475,4447,4447,4456,4482,4492,4476,4448,4448,4475,4492,4493,4477,4449,4449,4476,4493,4494,4478,4450,4450,4477,4494,4451,4478,4273,4479,4452,4273,4479,4495,4480,4480,4453,4479,4480,4496,4481,4481,4454,4480,4481,4497,4482,4482,4455,4481,4472,4498,4483,4483,4457,4472,4485,4458,4483,4483,4499,4485,4467,4500,4487,4487,4459,4467,4462,4501,4502,4502,4460,4462,4460,4502,4503,4503,4461,4460,4463,4504,4501,4501,4462,4463,4464,4505,4504,4504,4463,4464,4465,4506,4505,4505,4464,4465,4466,4507,4506,4506,4465,4466,4487,4508,4507,4507,4466,4487,4468,4509,4500,4500,4467,4468,4484,4510,4509,4509,4468,4484,4446,4491,4511,4511,4469,4446,4469,4511,4512,4512,4470,4469,4470,4512,4513,4513,4471,4470,4422,4473,4498,4498,4472,4422,4424,4474,4514,4514,4473,4424,4471,4513,4515,4515,4474,4471,4497,4492,4475,4475,4482,4497,4516,4493,4476,4476,4492,4516,4517,4494,4477,4477,4493,4517,4478,4494,4273,4495,4479,4273,4495,4518,4496,4496,4480,4495,4496,4519,4497,4497,4481,4496,4498,4520,4499,4499,4483,4498,4485,4521,4510,4510,4484,4485,4499,4522,4521,4521,4485,4499,4461,4503,4523,4523,4486,4461,4500,4524,4508,4508,4487,4500,4488,4525,4526,4526,4489,4488,4486,4523,4525,4525,4488,4486,4489,4526,4527,4527,4490,4489,4490,4527,4528,4528,4491,4490,4519,4516,4492,4492,4497,4519,4529,4517,4493,4493,4516,4529,4494,4517,4273,4518,4495,4273,4518,4530,4519,4519,4496,4518,4473,4514,4520,4520,4498,4473,4522,4499,4520,4520,4531,4522,4509,4532,4524,4524,4500,4509,4501,4533,4534,4534,4502,4501,4504,4535,4533,4533,4501,4504,4502,4534,4536,4536,4503,4502,4505,4537,4535,4535,4504,4505,4506,4538,4537,4537,4505,4506,4507,4539,4538,4538,4506,4507,4508,4540,4539,4539,4507,4508,4524,4541,4540,4540,4508,4524,4510,4542,4532,4532,4509,4510,4521,4543,4542,4542,4510,4521,4491,4528,4544,4544,4511,4491,4511,4544,4545,4545,4512,4511,4512,4545,4546,4546,4513,4512,4474,4515,4547,4547,4514,4474,4513,4546,4548,4548,4515,4513,4530,4529,4516,4516,4519,4530,4517,4529,4273,4530,4518,4273,4514,4547,4531,4531,4520,4514,4522,4549,4543,4543,4521,4522,4531,4550,4549,4549,4522,4531,4503,4536,4551,4551,4523,4503,4532,4552,4541,4541,4524,4532,4525,4553,4554,4554,4526,4525,4523,4551,4553,4553,4525,4523,4526,4554,4555,4555,4527,4526,4527,4555,4556,4556,4528,4527,4529,4530,4273,4550,4531,4547,4547,4557,4550,4542,4558,4552,4552,4532,4542,4533,4559,4560,4560,4534,4533,4535,4561,4559,4559,4533,4535,4537,4562,4561,4561,4535,4537,4534,4560,4563,4563,4536,4534,4538,4564,4562,4562,4537,4538,4539,4565,4564,4564,4538,4539,4540,4566,4565,4565,4539,4540,4541,4567,4566,4566,4540,4541,4552,4568,4567,4567,4541,4552,4543,4569,4558,4558,4542,4543,4549,4570,4569,4569,4543,4549,4528,4556,4571,4571,4544,4528,4544,4571,4572,4572,4545,4544,4545,4572,4573,4573,4546,4545,4515,4548,4557,4557,4547,4515,4546,4573,4574,4574,4548,4546,4550,4575,4570,4570,4549,4550,4557,4576,4575,4575,4550,4557,4536,4563,4577,4577,4551,4536,4558,4578,4568,4568,4552,4558,4551,4577,4579,4579,4553,4551,4553,4579,4580,4580,4554,4553,4554,4580,4581,4581,4555,4554,4555,4581,4582,4582,4556,4555,4576,4557,4548,4548,4574,4576,4569,4583,4578,4578,4558,4569,4559,4584,4585,4585,4560,4559,4561,4586,4584,4584,4559,4561,4562,4587,4586,4586,4561,4562,4564,4588,4587,4587,4562,4564,4560,4585,4589,4589,4563,4560,4565,4590,4588,4588,4564,4565,4566,4591,4590,4590,4565,4566,4567,4592,4591,4591,4566,4567,4568,4593,4592,4592,4567,4568,4578,4594,4593,4593,4568,4578,4570,4595,4583,4583,4569,4570,4575,4596,4595,4595,4570,4575,4556,4582,4597,4597,4571,4556,4571,4597,4598,4598,4572,4571,4572,4598,4599,4599,4573,4572,4573,4599,4600,4600,4574,4573,4576,4601,4596,4596,4575,4576,4574,4600,4601,4601,4576,4574,4563,4589,4602,4602,4577,4563,4583,4603,4594,4594,4578,4583,4577,4602,4604,4604,4579,4577,4579,4604,4605,4605,4580,4579,4580,4605,4606,4606,4581,4580,4581,4606,4607,4607,4582,4581,4595,4608,4603,4603,4583,4595,4584,4609,4610,4610,4585,4584,4586,4611,4609,4609,4584,4586,4587,4612,4611,4611,4586,4587,4588,4613,4612,4612,4587,4588,4590,4614,4613,4613,4588,4590,4585,4610,4615,4615,4589,4585,4591,4616,4614,4614,4590,4591,4592,4617,4616,4616,4591,4592,4593,4618,4617,4617,4592,4593,4594,4619,4618,4618,4593,4594,4603,4620,4619,4619,4594,4603,4596,4621,4608,4608,4595,4596,4601,4622,4621,4621,4596,4601,4582,4607,4623,4623,4597,4582,4597,4623,4624,4624,4598,4597,4598,4624,4625,4625,4599,4598,4599,4625,4626,4626,4600,4599,4600,4626,4622,4622,4601,4600,4589,4615,4627,4627,4602,4589,4608,4628,4620,4620,4603,4608,4602,4627,4629,4629,4604,4602,4604,4629,4630,4630,4605,4604,4605,4630,4631,4631,4606,4605,4606,4631,4632,4632,4607,4606,4621,4633,4628,4628,4608,4621,4611,4634,4635,4635,4609,4611,4609,4635,4636,4636,4610,4609,4612,4637,4634,4634,4611,4612,4613,4638,4637,4637,4612,4613,4614,4639,4638,4638,4613,4614,4616,4640,4639,4639,4614,4616,4610,4636,4641,4641,4615,4610,4617,4642,4640,4640,4616,4617,4618,4643,4642,4642,4617,4618,4619,4644,4643,4643,4618,4619,4620,4645,4644,4644,4619,4620,4628,4646,4645,4645,4620,4628,4622,4647,4633,4633,4621,4622,4626,4648,4647,4647,4622,4626,4607,4632,4649,4649,4623,4607,4623,4649,4650,4650,4624,4623,4624,4650,4651,4651,4625,4624,4625,4651,4648,4648,4626,4625,4615,4641,4652,4652,4627,4615,4633,4653,4646,4646,4628,4633,4627,4652,4654,4654,4629,4627,4629,4654,4655,4655,4630,4629,4630,4655,4656,4656,4631,4630,4631,4656,4657,4657,4632,4631,4647,4658,4653,4653,4633,4647,4637,4659,4660,4660,4634,4637,4634,4660,4661,4661,4635,4634,4635,4661,4662,4662,4636,4635,4638,4663,4659,4659,4637,4638,4639,4664,4663,4663,4638,4639,4640,4665,4664,4664,4639,4640,4642,4666,4665,4665,4640,4642,4636,4662,4667,4667,4641,4636,4643,4668,4666,4666,4642,4643,4644,4669,4668,4668,4643,4644,4645,4670,4669,4669,4644,4645,4646,4671,4670,4670,4645,4646,4653,4672,4671,4671,4646,4653,4648,4673,4658,4658,4647,4648,4651,4674,4673,4673,4648,4651,4632,4657,4675,4675,4649,4632,4649,4675,4676,4676,4650,4649,4650,4676,4674,4674,4651,4650,4641,4667,4677,4677,4652,4641,4658,4678,4672,4672,4653,4658,4652,4677,4679,4679,4654,4652,4654,4679,4680,4680,4655,4654,4655,4680,4681,4681,4656,4655,4656,4681,4682,4682,4657,4656,4673,4683,4678,4678,4658,4673,4663,4684,4685,4685,4659,4663,4659,4685,4686,4686,4660,4659,4660,4686,4687,4687,4661,4660,4661,4687,4688,4688,4662,4661,4664,4689,4684,4684,4663,4664,4665,4690,4689,4689,4664,4665,4666,4691,4690,4690,4665,4666,4668,4692,4691,4691,4666,4668,4662,4688,4693,4693,4667,4662,4669,4694,4692,4692,4668,4669,4670,4695,4694,4694,4669,4670,4671,4696,4695,4695,4670,4671,4672,4697,4696,4696,4671,4672,4678,4698,4697,4697,4672,4678,4674,4699,4683,4683,4673,4674,4676,4700,4699,4699,4674,4676,4657,4682,4701,4701,4675,4657,4675,4701,4700,4700,4676,4675,4667,4693,4702,4702,4677,4667,4683,4703,4698,4698,4678,4683,4677,4702,4704,4704,4679,4677,4679,4704,4705,4705,4680,4679,4680,4705,4706,4706,4681,4680,4681,4706,4707,4707,4682,4681,4699,4708,4703,4703,4683,4699,4709,4710,4685,4685,4684,4709,4689,4711,4709,4709,4684,4689,4685,4710,4712,4712,4686,4685,4686,4712,4713,4713,4687,4686,4687,4713,4714,4714,4688,4687,4690,4715,4711,4711,4689,4690,4691,4716,4715,4715,4690,4691,4692,4717,4716,4716,4691,4692,4694,4718,4717,4717,4692,4694,4688,4714,4719,4719,4693,4688,4695,4720,4718,4718,4694,4695,4721,4720,4695,4695,4696,4721,4697,4722,4721,4721,4696,4697,4698,4723,4722,4722,4697,4698,4703,4724,4723,4723,4698,4703,4700,4725,4708,4708,4699,4700,4701,4726,4725,4725,4700,4701,4682,4707,4726,4726,4701,4682,4693,4719,4727,4727,4702,4693,4708,4728,4724,4724,4703,4708,4709,4729,4730,4730,4710,4709,4721,4731,4732,4732,4720,4721,4702,4727,4733,4733,4704,4702,4704,4733,4734,4734,4705,4704,4705,4734,4735,4735,4706,4705,4706,4735,4736,4736,4707,4706,4725,4737,4728,4728,4708,4725,4711,4738,4729,4729,4709,4711,4715,4739,4738,4738,4711,4715,4710,4730,4740,4740,4712,4710,4712,4740,4741,4741,4713,4712,4713,4741,4742,4742,4714,4713,4716,4743,4739,4739,4715,4716,4717,4744,4743,4743,4716,4717,4718,4745,4744,4744,4717,4718,4720,4732,4745,4745,4718,4720,4714,4742,4746,4746,4719,4714,4722,4747,4731,4731,4721,4722,4723,4748,4747,4747,4722,4723,4724,4749,4748,4748,4723,4724,4728,4750,4749,4749,4724,4728,4726,4751,4737,4737,4725,4726,4707,4736,4751,4751,4726,4707,4719,4746,4752,4752,4727,4719,4737,4753,4750,4750,4728,4737,4729,4754,4755,4755,4730,4729,4738,4756,4754,4754,4729,4738,4731,4757,4758,4758,4732,4731,4747,4759,4757,4757,4731,4747,4727,4752,4760,4760,4733,4727,4733,4760,4761,4761,4734,4733,4734,4761,4762,4762,4735,4734,4735,4762,4763,4763,4736,4735,4751,4764,4753,4753,4737,4751,4739,4765,4756,4756,4738,4739,4743,4766,4765,4765,4739,4743,4730,4755,4767,4767,4740,4730,4740,4767,4768,4768,4741,4740,4741,4768,4769,4769,4742,4741,4744,4770,4766,4766,4743,4744,4745,4771,4770,4770,4744,4745,4732,4758,4771,4771,4745,4732,4742,4769,4772,4772,4746,4742,4748,4773,4759,4759,4747,4748,4749,4774,4773,4773,4748,4749,4750,4775,4774,4774,4749,4750,4753,4776,4775,4775,4750,4753,4736,4763,4764,4764,4751,4736,4746,4772,4777,4777,4752,4746,4764,4778,4776,4776,4753,4764,4755,4754,4756,4756,4766,4755,4756,4765,4766,4771,4758,4757,4757,4759,4773,4773,4775,4757,4752,4777,4779,4779,4760,4752,4760,4779,4780,4780,4761,4760,4761,4780,4781,4781,4762,4761,4762,4781,4782,4782,4763,4762,4763,4782,4778,4778,4764,4763,4755,4766,4757,4757,4775,4755,4766,4770,4771,4771,4757,4766,4768,4767,4755,4772,4769,4768,4768,4755,4772,4773,4774,4775,4775,4776,4778,4778,4781,4775,4779,4777,4772,4772,4781,4779,4778,4782,4781,4755,4775,4781,4781,4772,4755,4780,4779,4781,1188,1191,1181,1181,1183,1188,1181,1217,1182,1246,1255,1217,1181,1200,1217,1228,1246,1217,1200,1202,1217,1211,1228,1217,1202,1211,1217,1181,1191,1197,1197,1200,1181,4783,1502,1402,1402,1401,4783,1347,1348,1352,1615,1461,1415,1347,1352,1473,1615,1415,1584,1347,1473,1530,1415,1347,1584,1347,1530,1584,4783,1401,1445,1445,1552,4783,1460,1461,1573,1573,1464,1460,1502,4783,1685,1964,1687,1553,1502,1685,1684,1867,1964,1553,1502,1684,1782,1867,1553,1784,1502,1782,1783,1553,1783,1784,1553,1502,1783,1552,1775,4783,1953,1955,1773,1552,1773,1775,1552,1620,1767,1958,1956,1953,1552,1767,1958,1552,1953,1773,1552,1958,1953,1681,1680,4783,1680,1685,4783,1615,1614,1573,1573,1461,1615,1775,1774,4783,1681,4783,1778,1778,1682,1681,1774,1863,4783,4783,1863,1864,1864,1778,4783,1765,1768,1679,1795,1794,2255,1765,2152,1768,1795,2255,2252,1765,2048,2152,1765,1795,2252,1765,2047,2048,1765,2252,2254,1765,2044,2047,1765,2254,2149,1765,2149,2044,2165,2256,1794,1794,1793,2165,1794,2256,2255]);
-
export default new Mesh({
- colors,
- faces,
+ colors: null,
+ faces: new Uint16Array([16,17,18,19,12,13,18,42,43,44,13,40,43,49,50,51,40,52,50,75,76,77,52,73,76,98,85,99,73,97,85,108,109,110,97,106,109,132,117,133,106,130,117,141,142,143,130,139,142,165,166,167,139,163,166,174,175,176,163,172,175,197,198,199,172,195,198,206,207,208,195,203,207,230,231,232,203,228,231,238,239,240,228,241,239,263,264,265,241,261,264,270,271,272,261,273,271,296,297,298,273,294,297,319,306,320,294,318,306,329,330,331,318,327,330,352,353,354,327,350,353,361,362,363,350,359,362,385,386,387,359,383,386,394,395,396,383,392,395,418,419,420,392,416,431,432,433,434,423,426,433,466,467,468,426,464,467,474,475,476,464,477,475,499,500,501,477,497,506,497,507,500,522,510,510,531,532,533,507,529,532,555,540,556,529,553,540,557,16,558,553,12]),
name: "src/meshes/uvsphere.ply",
- normals,
- positions,
- uvs,
- vertexCount: 4784
+ normals: null,
+ positions: new Float32Array([2.1606684e-7,0.5555695,-0.8314696,8.940697e-8,0.7071066,-0.70710677,0.13794969,0.6935199,-0.70710677,0.10838638,0.5448951,-0.8314696,5.9604645e-8,0.923879,0.38268346,0,0.8314696,0.55557024,0.16221167,0.8154931,0.55557024,0.18023995,0.9061274,0.38268346,6.7055225e-8,0.38268322,-0.9238795,0.07465784,0.3753303,-0.9238795,0,0.98078525,0.19509032,0.19134171,0.9619397,0.19509032,1.4901161e-8,0.1950901,-0.98078525,0.038060233,0.19134171,-0.98078525,0,1,0,0.19509032,0.98078525,0,1.4901161e-8,0.1950901,0.98078525,0,0,1,0.038060233,0.19134171,0.98078525,0,0,-1,0,0.98078525,-0.19509032,0.19134171,0.9619397,-0.19509032,6.7055225e-8,0.38268322,0.9238795,0.07465784,0.3753303,0.9238795,5.9604645e-8,0.923879,-0.38268346,0.18023995,0.9061274,-0.38268346,0,0.55557024,0.8314696,0.10838638,0.5448951,0.8314696,0,0.8314696,-0.55557024,0.16221167,0.8154931,-0.55557024,8.940697e-8,0.7071066,0.70710677,0.13794969,0.6935199,0.70710677,0.31818962,0.7681776,-0.55557024,0.27059805,0.65328145,-0.70710677,0.27059805,0.65328145,0.70710677,0.31818962,0.7681776,0.55557024,0.21260753,0.5132799,-0.8314696,0.35355335,0.85355335,0.38268346,0.14644662,0.3535534,-0.9238795,0.37533027,0.9061274,0.19509032,0.07465783,0.18023995,-0.98078525,0.38268343,0.92387944,0,0,0,1,0.07465783,0.18023995,0.98078525,0,0,-1,0.37533027,0.9061274,-0.19509032,0.14644662,0.3535534,0.9238795,0.35355335,0.85355335,-0.38268346,0.21260753,0.5132799,0.8314696,0,0,1,0.10838637,0.16221166,0.98078525,0,0,-1,0.10838637,0.16221166,-0.98078525,0.55557024,0.8314695,0,0.5448951,0.8154931,-0.19509032,0.21260753,0.31818965,0.9238795,0.5132799,0.7681777,-0.38268346,0.30865827,0.4619397,0.8314696,0.4619397,0.6913416,-0.55557024,0.39284748,0.5879378,0.70710677,0.39284748,0.5879378,-0.70710677,0.4619397,0.6913416,0.55557024,0.30865827,0.4619397,-0.8314696,0.5132799,0.7681777,0.38268346,0.21260753,0.31818965,-0.9238795,0.5448951,0.8154931,0.19509032,0.5,0.5,0.70710677,0.5879377,0.58793765,0.55557024,0.5,0.5,-0.70710677,0.39284745,0.3928474,-0.8314696,0.6532814,0.65328145,0.38268346,0.27059805,0.27059802,-0.9238795,0.6935199,0.69351983,0.19509032,0.13794968,0.13794966,-0.98078525,0.70710677,0.7071066,0,0,0,1,0.13794968,0.13794966,0.98078525,0,0,-1,0.6935199,0.69351983,-0.19509032,0.27059805,0.27059802,0.9238795,0.6532814,0.65328145,-0.38268346,0.39284745,0.3928474,0.8314696,0.5879377,0.58793765,-0.55557024,0.83146954,0.55557,0,0.8154931,0.544895,-0.19509032,0.16221166,0.10838635,0.98078525,0.31818965,0.2126075,0.9238795,0.7681776,0.51328,-0.38268346,0.46193972,0.3086582,0.8314696,0.69134164,0.46193963,-0.55557024,0.5879378,0.39284748,0.70710677,0.5879378,0.39284748,-0.70710677,0.69134164,0.46193963,0.55557024,0.46193972,0.3086582,-0.8314696,0.7681776,0.51328,0.38268346,0.31818965,0.2126075,-0.9238795,0.8154931,0.544895,0.19509032,0.16221166,0.10838635,-0.98078525,0,0,1,0,0,-1,0.65328145,0.27059805,-0.70710677,0.5132799,0.21260746,-0.8314696,0.7681776,0.3181895,0.55557024,0.8535533,0.3535534,0.38268346,0.35355335,0.14644659,-0.9238795,0.90612733,0.37533015,0.19509032,0.18023992,0.07465781,-0.98078525,0.9238794,0.38268322,0,0,0,1,0.18023992,0.07465781,0.98078525,0,0,-1,0.90612733,0.37533015,-0.19509032,0.35355335,0.14644659,0.9238795,0.8535533,0.3535534,-0.38268346,0.5132799,0.21260746,0.8314696,0.7681776,0.3181895,-0.55557024,0.65328145,0.27059805,0.70710677,0.19134167,0.038060214,0.98078525,0.37533024,0.07465781,0.9238795,0.96193963,0.19134161,-0.19509032,0.90612733,0.18023999,-0.38268346,0.54489505,0.108386315,0.8314696,0.815493,0.16221157,-0.55557024,0.6935199,0.1379497,0.70710677,0.6935199,0.1379497,-0.70710677,0.815493,0.16221157,0.55557024,0.54489505,0.108386315,-0.8314696,0.90612733,0.18023999,0.38268346,0.37533024,0.07465781,-0.9238795,0.96193963,0.19134161,0.19509032,0.19134167,0.038060214,-0.98078525,0.9807851,0.19509013,0,0,0,1,0,0,-1,0.8314694,-8.940697e-8,0.55557024,0.92387944,4.4703484e-8,0.38268346,0.5555701,-5.2154064e-8,-0.8314696,0.3826834,-2.2351742e-8,-0.9238795,0.98078513,-8.940697e-8,0.19509032,0.19509026,-1.1175871e-8,-0.98078525,0.9999997,-1.6391277e-7,0,0,0,1,0.19509026,-1.1175871e-8,0.98078525,0,0,-1,0.98078513,-8.940697e-8,-0.19509032,0.3826834,-2.2351742e-8,0.9238795,0.92387944,4.4703484e-8,-0.38268346,0.5555701,-5.2154064e-8,0.8314696,0.8314694,-8.940697e-8,-0.55557024,0.7071067,1.4901161e-8,0.70710677,0.7071067,1.4901161e-8,-0.70710677,0.9619396,-0.19134177,-0.19509032,0.90612733,-0.1802399,-0.38268346,0.37533024,-0.07465785,0.9238795,0.544895,-0.108386405,0.8314696,0.8154929,-0.16221173,-0.55557024,0.69351983,-0.13794966,0.70710677,0.69351983,-0.13794966,-0.70710677,0.8154929,-0.16221173,0.55557024,0.544895,-0.108386405,-0.8314696,0.90612733,-0.1802399,0.38268346,0.37533024,-0.07465785,-0.9238795,0.9619396,-0.19134177,0.19509032,0.19134165,-0.038060233,-0.98078525,0.9807849,-0.19509043,0,0,0,1,0.19134165,-0.038060233,0.98078525,0,0,-1,0.5132798,-0.21260753,-0.8314696,0.35355335,-0.14644662,-0.9238795,0.8535533,-0.3535533,0.38268346,0.9061272,-0.3753303,0.19509032,0.18023989,-0.07465782,-0.98078525,0.9238791,-0.38268346,0,0,0,1,0.18023989,-0.07465782,0.98078525,0,0,-1,0.9061272,-0.3753303,-0.19509032,0.35355335,-0.14644662,0.9238795,0.8535533,-0.3535533,-0.38268346,0.5132798,-0.21260753,0.8314696,0.7681775,-0.31818965,-0.55557024,0.6532814,-0.270598,0.70710677,0.6532814,-0.270598,-0.70710677,0.7681775,-0.31818965,0.55557024,0.7681776,-0.51327986,-0.38268346,0.69134146,-0.4619397,-0.55557024,0.46193957,-0.30865824,0.8314696,0.5879377,-0.39284742,0.70710677,0.5879377,-0.39284742,-0.70710677,0.69134146,-0.4619397,0.55557024,0.46193957,-0.30865824,-0.8314696,0.7681776,-0.51327986,0.38268346,0.3181896,-0.21260752,-0.9238795,0.8154929,-0.54489505,0.19509032,0.1622116,-0.10838634,-0.98078525,0.8314691,-0.5555702,0,0,0,1,0.1622116,-0.10838634,0.98078525,0,0,-1,0.8154929,-0.54489505,-0.19509032,0.3181896,-0.21260752,0.9238795,0.27059796,-0.27059802,-0.9238795,0.13794962,-0.13794963,-0.98078525,0.6935197,-0.69351983,0.19509032,0.70710623,-0.70710665,0,0,0,1,0.13794962,-0.13794963,0.98078525,0,0,-1,0.6935197,-0.69351983,-0.19509032,0.27059796,-0.27059802,0.9238795,0.6532814,-0.65328133,-0.38268346,0.39284727,-0.39284742,0.8314696,0.58793753,-0.58793765,-0.55557024,0.49999994,-0.49999994,0.70710677,0.49999994,-0.49999994,-0.70710677,0.58793753,-0.58793765,0.55557024,0.39284727,-0.39284742,-0.8314696,0.6532814,-0.65328133,0.38268346,0.3086581,-0.46193966,0.8314696,0.39284742,-0.5879377,0.70710677,0.46193954,-0.6913415,-0.55557024,0.39284742,-0.5879377,-0.70710677,0.46193954,-0.6913415,0.55557024,0.3086581,-0.46193966,-0.8314696,0.5132799,-0.76817757,0.38268346,0.21260744,-0.31818962,-0.9238795,0.5448949,-0.815493,0.19509032,0.108386315,-0.1622116,-0.98078525,0.5555697,-0.83146936,0,0,0,1,0.108386315,-0.1622116,0.98078525,0,0,-1,0.5448949,-0.815493,-0.19509032,0.21260744,-0.31818962,0.9238795,0.5132799,-0.76817757,-0.38268346,0.37533003,-0.9061272,0.19509032,0.38268295,-0.92387915,0,0,0,1,0.07465778,-0.18023986,0.98078525,0,0,-1,0.07465778,-0.18023986,-0.98078525,0.37533003,-0.9061272,-0.19509032,0.14644653,-0.35355332,0.9238795,0.35355335,-0.8535532,-0.38268346,0.21260735,-0.5132798,0.8314696,0.31818944,-0.7681775,-0.55557024,0.270598,-0.6532814,0.70710677,0.270598,-0.6532814,-0.70710677,0.31818944,-0.7681775,0.55557024,0.21260735,-0.5132798,-0.8314696,0.35355335,-0.8535532,0.38268346,0.14644653,-0.35355332,-0.9238795,0.16221152,-0.81549287,-0.55557024,0.13794966,-0.69351983,-0.70710677,0.13794966,-0.69351983,0.70710677,0.16221152,-0.81549287,0.55557024,0.10838623,-0.5448949,-0.8314696,0.18023995,-0.9061272,0.38268346,0.07465776,-0.37533018,-0.9238795,0.19134152,-0.96193945,0.19509032,0.038060203,-0.1913416,-0.98078525,0.1950899,-0.9807848,0,0,0,1,0.038060203,-0.1913416,0.98078525,0,0,-1,0.19134152,-0.96193945,-0.19509032,0.07465776,-0.37533018,0.9238795,0.18023995,-0.9061272,-0.38268346,0.10838623,-0.5448949,0.8314696,0,0,1,-7.450581e-9,-0.19509019,0.98078525,0,0,-1,-7.450581e-9,-0.19509019,-0.98078525,-3.2782555e-7,-0.99999934,0,-1.3411045e-7,-0.98078495,-0.19509032,-5.2154064e-8,-0.38268334,0.9238795,2.9802322e-8,-0.92387927,-0.38268346,-9.685755e-8,-0.55556995,0.8314696,-1.0430813e-7,-0.8314693,-0.55557024,-1.4901161e-8,-0.70710665,0.70710677,-1.4901161e-8,-0.70710665,-0.70710677,-1.0430813e-7,-0.8314693,0.55557024,-9.685755e-8,-0.55556995,-0.8314696,2.9802322e-8,-0.92387927,0.38268346,-5.2154064e-8,-0.38268334,-0.9238795,-1.3411045e-7,-0.98078495,0.19509032,-0.13794968,-0.6935198,0.70710677,-0.16221172,-0.8154928,0.55557024,-0.13794968,-0.6935198,-0.70710677,-0.10838642,-0.5448948,-0.8314696,-0.18023987,-0.90612715,0.38268346,-0.074657865,-0.37533018,-0.9238795,-0.19134179,-0.9619394,0.19509032,-0.038060214,-0.19134158,-0.98078525,-0.19509052,-0.98078454,0,0,0,1,-0.038060214,-0.19134158,0.98078525,0,0,-1,-0.19134179,-0.9619394,-0.19509032,-0.074657865,-0.37533018,0.9238795,-0.18023987,-0.90612715,-0.38268346,-0.10838642,-0.5448948,0.8314696,-0.16221172,-0.8154928,-0.55557024,-0.3826835,-0.9238787,0,-0.37533027,-0.90612704,-0.19509032,-0.07465778,-0.18023983,0.98078525,-0.14644662,-0.3535533,0.9238795,-0.35355324,-0.8535531,-0.38268346,-0.2126075,-0.5132796,0.8314696,-0.31818962,-0.7681774,-0.55557024,-0.270598,-0.65328133,0.70710677,-0.270598,-0.65328133,-0.70710677,-0.31818962,-0.7681774,0.55557024,-0.2126075,-0.5132796,-0.8314696,-0.35355324,-0.8535531,0.38268346,-0.14644662,-0.3535533,-0.9238795,-0.37533027,-0.90612704,0.19509032,-0.07465778,-0.18023983,-0.98078525,0,0,1,0,0,-1,-0.39284742,-0.58793765,-0.70710677,-0.30865818,-0.4619394,-0.8314696,-0.46193963,-0.69134134,0.55557024,-0.51327974,-0.7681775,0.38268346,-0.2126075,-0.31818953,-0.9238795,-0.54489505,-0.81549275,0.19509032,-0.1083863,-0.16221155,-0.98078525,-0.5555701,-0.83146876,0,0,0,1,-0.1083863,-0.16221155,0.98078525,0,0,-1,-0.54489505,-0.81549275,-0.19509032,-0.2126075,-0.31818953,0.9238795,-0.51327974,-0.7681775,-0.38268346,-0.30865818,-0.4619394,0.8314696,-0.46193963,-0.69134134,-0.55557024,-0.39284742,-0.58793765,0.70710677,-0.6935198,-0.69351953,-0.19509032,-0.6532812,-0.6532813,-0.38268346,-0.270598,-0.27059793,0.9238795,-0.3928473,-0.39284712,0.8314696,-0.5879376,-0.5879374,-0.55557024,-0.4999999,-0.49999988,0.70710677,-0.4999999,-0.49999988,-0.70710677,-0.5879376,-0.5879374,0.55557024,-0.3928473,-0.39284712,-0.8314696,-0.6532812,-0.6532813,0.38268346,-0.270598,-0.27059793,-0.9238795,-0.6935198,-0.69351953,0.19509032,-0.13794959,-0.13794957,-0.98078525,-0.7071065,-0.70710593,0,0,0,1,-0.13794959,-0.13794957,0.98078525,0,0,-1,-0.4619395,-0.30865794,-0.8314696,-0.31818956,-0.21260741,-0.9238795,-0.76817745,-0.5132798,0.38268346,-0.8154929,-0.5448947,0.19509032,-0.16221155,-0.10838628,-0.98078525,-0.8314691,-0.5555694,0,0,0,1,-0.16221155,-0.10838628,0.98078525,0,0,-1,-0.8154929,-0.5448947,-0.19509032,-0.31818956,-0.21260741,0.9238795,-0.76817745,-0.5132798,-0.38268346,-0.4619395,-0.30865794,0.8314696,-0.69134146,-0.46193942,-0.55557024,-0.58793765,-0.39284736,0.70710677,-0.58793765,-0.39284736,-0.70710677,-0.69134146,-0.46193942,0.55557024,-0.35355327,-0.14644651,0.9238795,-0.5132796,-0.21260723,0.8314696,-0.85355306,-0.35355327,-0.38268346,-0.7681774,-0.31818932,-0.55557024,-0.65328133,-0.27059796,0.70710677,-0.65328133,-0.27059796,-0.70710677,-0.7681774,-0.31818932,0.55557024,-0.5132796,-0.21260723,-0.8314696,-0.85355306,-0.35355327,0.38268346,-0.35355327,-0.14644651,-0.9238795,-0.90612715,-0.37532988,0.19509032,-0.18023981,-0.07465775,-0.98078525,-0.92387885,-0.38268268,0,0,0,1,-0.18023981,-0.07465775,0.98078525,0,0,-1,-0.90612715,-0.37532988,-0.19509032,-0.9061271,-0.18023989,0.38268346,-0.9619394,-0.19134139,0.19509032,-0.37533012,-0.07465775,-0.9238795,-0.19134155,-0.03806018,-0.98078525,-0.9807844,-0.1950897,0,0,0,1,-0.19134155,-0.03806018,0.98078525,0,0,-1,-0.9619394,-0.19134139,-0.19509032,-0.37533012,-0.07465775,0.9238795,-0.9061271,-0.18023989,-0.38268346,-0.5448947,-0.10838615,0.8314696,-0.81549275,-0.16221143,-0.55557024,-0.6935198,-0.13794963,0.70710677,-0.6935198,-0.13794963,-0.70710677,-0.81549275,-0.16221143,0.55557024,-0.5448947,-0.10838615,-0.8314696,-0.92387915,1.4901161e-8,-0.38268346,-0.8314692,1.6391277e-7,-0.55557024,-0.55556977,1.4901161e-7,0.8314696,-0.7071066,2.9802322e-8,0.70710677,-0.7071066,2.9802322e-8,-0.70710677,-0.8314692,1.6391277e-7,0.55557024,-0.55556977,1.4901161e-7,-0.8314696,-0.92387915,1.4901161e-8,0.38268346,-0.38268325,5.2154064e-8,-0.9238795,-0.98078483,2.682209e-7,0.19509032,-0.19509014,1.8626451e-8,-0.98078525,-0.99999905,4.4703484e-7,0,0,0,1,-0.19509014,1.8626451e-8,0.98078525,0,0,-1,-0.98078483,2.682209e-7,-0.19509032,-0.38268325,5.2154064e-8,0.9238795,-0.19509014,1.8626451e-8,-0.98078525,-0.38268325,5.2154064e-8,-0.9238795,-0.3753301,0.07465785,-0.9238795,-0.19134153,0.038060218,-0.98078525,-0.99999905,4.4703484e-7,0,-0.98078483,2.682209e-7,0.19509032,-0.9619392,0.19134189,0.19509032,-0.98078424,0.19509058,0,-0.19509014,1.8626451e-8,0.98078525,0,0,1,-0.19134153,0.038060218,0.98078525,0,0,-1,-0.98078483,2.682209e-7,-0.19509032,-0.9619392,0.19134189,-0.19509032,-0.38268325,5.2154064e-8,0.9238795,-0.3753301,0.07465785,0.9238795,-0.92387915,1.4901161e-8,-0.38268346,-0.90612704,0.1802399,-0.38268346,-0.55556977,1.4901161e-7,0.8314696,-0.54489464,0.108386435,0.8314696,-0.8314692,1.6391277e-7,-0.55557024,-0.81549263,0.16221176,-0.55557024,-0.7071066,2.9802322e-8,0.70710677,-0.6935197,0.13794969,0.70710677,-0.7071066,2.9802322e-8,-0.70710677,-0.6935197,0.13794969,-0.70710677,-0.8314692,1.6391277e-7,0.55557024,-0.81549263,0.16221176,0.55557024,-0.55556977,1.4901161e-7,-0.8314696,-0.54489464,0.108386435,-0.8314696,-0.92387915,1.4901161e-8,0.38268346,-0.90612704,0.1802399,0.38268346,-0.51327944,0.21260749,0.8314696,-0.6532813,0.270598,0.70710677,-0.7681772,0.31818962,-0.55557024,-0.6532813,0.270598,-0.70710677,-0.7681772,0.31818962,0.55557024,-0.51327944,0.21260749,-0.8314696,-0.853553,0.35355324,0.38268346,-0.3535532,0.14644659,-0.9238795,-0.90612686,0.37533033,0.19509032,-0.18023978,0.07465778,-0.98078525,-0.92387843,0.3826835,0,0,0,1,-0.18023978,0.07465778,0.98078525,0,0,-1,-0.90612686,0.37533033,-0.19509032,-0.3535532,0.14644659,0.9238795,-0.853553,0.35355324,-0.38268346,-0.8154926,0.54489505,0.19509032,-0.83146846,0.55557007,0,0,0,1,-0.16221151,0.10838629,0.98078525,0,0,-1,-0.16221151,0.10838629,-0.98078525,-0.8154926,0.54489505,-0.19509032,-0.31818944,0.21260746,0.9238795,-0.7681774,0.51327974,-0.38268346,-0.46193922,0.30865815,0.8314696,-0.69134116,0.46193963,-0.55557024,-0.5879376,0.3928474,0.70710677,-0.5879376,0.3928474,-0.70710677,-0.69134116,0.46193963,0.55557024,-0.46193922,0.30865815,-0.8314696,-0.7681774,0.51327974,0.38268346,-0.31818944,0.21260746,-0.9238795,-0.58793724,0.58793753,-0.55557024,-0.49999982,0.49999988,-0.70710677,-0.49999982,0.49999988,0.70710677,-0.58793724,0.58793753,0.55557024,-0.39284694,0.39284724,-0.8314696,-0.65328115,0.65328115,0.38268346,-0.27059788,0.27059793,-0.9238795,-0.69351935,0.6935197,0.19509032,-0.13794954,0.13794957,-0.98078525,-0.7071057,0.70710635,0,0,0,1,-0.13794954,0.13794957,0.98078525,0,0,-1,-0.69351935,0.6935197,-0.19509032,-0.27059788,0.27059793,0.9238795,-0.65328115,0.65328115,-0.38268346,-0.39284694,0.39284724,0.8314696,0,0,-1,-0.10838625,0.16221152,-0.98078525,-0.55556923,0.83146894,0,-0.5448946,0.8154928,-0.19509032,-0.10838625,0.16221152,0.98078525,-0.21260737,0.3181895,0.9238795,-0.5132797,0.7681774,-0.38268346,-0.3086578,0.46193942,0.8314696,-0.46193928,0.69134134,-0.55557024,-0.3928473,0.58793765,0.70710677,-0.3928473,0.58793765,-0.70710677,-0.46193928,0.69134134,0.55557024,-0.3086578,0.46193942,-0.8314696,-0.5132797,0.7681774,0.38268346,-0.21260737,0.3181895,-0.9238795,-0.5448946,0.8154928,0.19509032,0,0,1,-0.2705979,0.65328133,-0.70710677,-0.2126071,0.5132795,-0.8314696,-0.3181892,0.7681773,0.55557024,-0.35355318,0.853553,0.38268346,-0.14644648,0.35355324,-0.9238795,-0.3753298,0.906127,0.19509032,-0.07465774,0.18023977,-0.98078525,-0.38268256,0.9238786,0,0,0,1,-0.07465774,0.18023977,0.98078525,0,0,-1,-0.3753298,0.906127,-0.19509032,-0.14644648,0.35355324,0.9238795,-0.35355318,0.853553,-0.38268346,-0.2126071,0.5132795,0.8314696,-0.3181892,0.7681773,-0.55557024,-0.2705979,0.65328133,0.70710677,-0.038060177,0.1913415,0.98078525,-0.07465773,0.3753301,0.9238795,-0.19134133,0.9619392,-0.19509032,-0.18023981,0.906127,-0.38268346,-0.10838604,0.5448945,0.8314696,-0.16221133,0.8154926,-0.55557024,-0.13794957,0.6935198,0.70710677,-0.13794957,0.6935198,-0.70710677,-0.16221133,0.8154926,0.55557024,-0.10838604,0.5448945,-0.8314696,-0.18023981,0.906127,0.38268346,-0.07465773,0.3753301,-0.9238795,-0.19134133,0.9619392,0.19509032,-0.038060177,0.1913415,-0.98078525,-0.19508962,0.9807842,0,0,0,1,0,0,-1,0,0,1,0,0,-1,4,0,1,4,4,5,4,8,0,4,10,4,4,12,8,4,14,10,4,20,14,4,22,16,4,24,20,4,26,22,4,28,24,4,30,26,4,1,28,4,5,30,4,2,29,4,6,31,4,3,2,4,7,6,4,9,3,4,11,7,4,13,9,4,15,11,4,21,15,4,23,18,4,25,21,4,27,23,4,29,25,4,31,27,4,45,41,4,46,43,4,47,45,4,48,46,4,32,47,4,34,48,4,33,32,4,35,34,4,36,33,4,37,35,4,38,36,4,39,37,4,40,38,4,41,39,4,61,59,4,62,60,4,63,61,4,64,62,4,65,63,4,52,64,4,53,65,4,54,53,4,55,50,4,56,54,4,57,55,4,58,56,4,59,57,4,60,58,4,78,74,4,79,76,4,80,78,4,81,79,4,82,80,4,66,81,4,68,82,4,67,66,4,69,68,4,70,67,4,71,69,4,72,70,4,73,71,4,74,72,4,93,91,4,94,92,4,95,93,4,96,94,4,97,95,4,83,96,4,84,83,4,86,85,4,87,84,4,88,86,4,89,87,4,90,88,4,91,89,4,92,90,4,112,109,4,113,111,4,114,112,4,115,113,4,116,114,4,100,115,4,102,116,4,101,100,4,103,102,4,104,101,4,105,103,4,106,104,4,107,105,4,111,107,4,127,125,4,128,126,4,129,127,4,130,128,4,131,129,4,119,131,4,118,117,4,120,119,4,121,118,4,122,120,4,123,121,4,124,122,4,125,123,4,126,124,4,146,144,4,147,145,4,148,146,4,149,147,4,150,148,4,134,149,4,136,150,4,135,134,4,137,136,4,138,135,4,139,137,4,140,138,4,144,140,4,145,142,4,161,159,4,162,160,4,163,161,4,164,162,4,151,164,4,153,166,4,152,151,4,154,153,4,155,152,4,156,154,4,157,155,4,158,156,4,159,157,4,160,158,4,181,179,4,182,180,4,183,181,4,184,182,4,168,183,4,170,184,4,169,168,4,171,170,4,172,169,4,173,171,4,177,173,4,178,175,4,179,177,4,180,178,4,195,193,4,196,194,4,200,196,4,201,198,4,185,200,4,187,201,4,186,185,4,188,187,4,189,186,4,190,188,4,191,189,4,192,190,4,193,191,4,194,192,4,214,212,4,215,213,4,216,214,4,217,215,4,218,216,4,202,217,4,204,218,4,203,202,4,205,204,4,209,205,4,210,207,4,211,209,4,212,210,4,213,211,4,229,227,4,233,229,4,234,231,4,235,233,4,219,234,4,221,235,4,220,219,4,222,221,4,223,220,4,224,222,4,225,223,4,226,224,4,227,225,4,228,226,4,248,246,4,249,247,4,250,248,4,251,249,4,252,250,4,236,251,4,241,252,4,237,236,4,242,237,4,243,239,4,244,242,4,245,243,4,246,244,4,247,245,4,266,262,4,267,264,4,268,266,4,269,267,4,253,268,4,255,269,4,254,253,4,256,255,4,257,254,4,258,256,4,259,257,4,260,258,4,261,259,4,262,260,4,282,280,4,283,281,4,284,282,4,285,283,4,286,284,4,273,285,4,274,286,4,275,274,4,276,271,4,277,275,4,278,276,4,279,277,4,280,278,4,281,279,4,299,295,4,300,297,4,301,299,4,302,300,4,303,301,4,287,302,4,289,303,4,288,287,4,290,289,4,291,288,4,292,290,4,293,291,4,294,292,4,295,293,4,314,312,4,315,313,4,316,314,4,317,315,4,318,316,4,304,317,4,305,304,4,307,306,4,308,305,4,309,307,4,310,308,4,311,309,4,312,310,4,313,311,4,334,332,4,335,333,4,336,334,4,337,335,4,321,336,4,323,337,4,322,321,4,324,323,4,325,322,4,326,324,4,327,325,4,328,326,4,332,328,4,333,330,4,348,346,4,349,347,4,350,348,4,351,349,4,338,351,4,340,353,4,339,338,4,341,340,4,342,339,4,343,341,4,344,342,4,345,343,4,346,344,4,347,345,4,367,365,4,368,366,4,369,367,4,370,368,4,371,369,4,355,370,4,357,371,4,356,355,4,358,357,4,359,356,4,360,358,4,364,360,4,365,362,4,366,364,4,382,380,4,383,381,4,384,382,4,388,384,4,372,386,4,374,388,4,373,372,4,375,374,4,376,373,4,377,375,4,378,376,4,379,377,4,380,378,4,381,379,4,401,399,4,402,400,4,403,401,4,404,402,4,405,403,4,389,404,4,391,405,4,390,389,4,392,391,4,393,390,4,397,393,4,398,395,4,399,397,4,400,398,4,423,424,4,427,428,4,435,427,4,437,431,4,439,435,4,441,437,4,443,439,4,445,441,4,447,443,4,449,445,4,451,447,4,453,449,4,424,451,4,428,453,4,446,442,4,448,444,4,450,446,4,452,448,4,454,450,4,425,452,4,429,454,4,426,425,4,430,429,4,436,430,4,438,433,4,440,436,4,442,438,4,444,440,4,465,463,4,469,465,4,470,467,4,471,469,4,455,470,4,457,471,4,456,455,4,458,457,4,459,456,4,460,458,4,461,459,4,462,460,4,463,461,4,464,462,4,484,482,4,485,483,4,486,484,4,487,485,4,488,486,4,472,487,4,477,488,4,473,472,4,478,473,4,479,475,4,480,478,4,481,479,4,482,480,4,483,481,4,502,498,4,503,500,4,504,502,4,505,503,4,489,504,4,491,505,4,490,489,4,492,491,4,493,490,4,494,492,4,495,493,4,496,494,4,497,495,4,498,496,4,518,516,4,519,517,4,520,518,4,521,519,4,507,520,4,508,521,4,509,508,4,511,510,4,512,509,4,513,511,4,514,512,4,515,513,4,516,514,4,517,515,4,535,532,4,536,534,4,537,535,4,538,536,4,539,537,4,523,538,4,525,539,4,524,523,4,526,525,4,527,524,4,528,526,4,529,527,4,530,528,4,534,530,4,550,548,4,551,549,4,552,550,4,553,551,4,554,552,4,542,554,4,541,540,4,543,542,4,544,541,4,545,543,4,546,544,4,547,545,4,548,546,4,549,547]),
+ uvs: new Float32Array([0.74999994,0.18749982,0.75,0.25,0.71875,0.25,0.71875,0.1875,0.75,0.6250001,0.75,0.6875,0.71875,0.6875,0.71875,0.625,0.74999994,0.125,0.71875,0.12500006,0.75,0.5625,0.71875,0.5625,0.75,0.06249988,0.71875,0.06249994,0.75,0.5,0.71875,0.5,0.75,0.9375001,0.734375,1,0.71875,0.93750006,0.734375,0,0.75,0.4375,0.71875,0.4375,0.74999994,0.87500006,0.71875,0.875,0.75,0.37499994,0.71875,0.375,0.75,0.8125,0.71875,0.8125,0.75,0.31250006,0.71875,0.31249994,0.75,0.75000006,0.71875,0.75,0.6875,0.31249994,0.6875,0.25,0.6875,0.75,0.6875,0.6875,0.6875,0.1875,0.6875,0.625,0.6875,0.12500006,0.6875,0.5625,0.6875,0.06249994,0.6875,0.5,0.703125,1,0.6875,0.93750006,0.703125,0,0.6875,0.4375,0.6875,0.875,0.6875,0.375,0.6875,0.8125,0.671875,1,0.65625,0.93750006,0.671875,0,0.65625,0.06249994,0.65625,0.5,0.65625,0.4375,0.65625,0.875,0.65625,0.375,0.65625,0.8125,0.65625,0.31249994,0.65625,0.75,0.65625,0.25,0.65625,0.6875,0.65625,0.1875,0.65625,0.625,0.65625,0.12500006,0.65625,0.5625,0.625,0.75,0.625,0.68750006,0.625,0.25,0.625,0.1875,0.625,0.625,0.625,0.125,0.625,0.5625,0.625,0.06249994,0.625,0.5,0.640625,1,0.625,0.93750006,0.640625,0,0.625,0.4375,0.625,0.875,0.625,0.375,0.625,0.8125,0.625,0.31249994,0.59375,0.5,0.59375,0.4375,0.59375,0.93750006,0.59375,0.875,0.59375,0.375,0.59375,0.8125,0.59375,0.31249994,0.59375,0.75,0.59375,0.25,0.59375,0.6875,0.59375,0.1875,0.59375,0.625,0.59375,0.125,0.59375,0.5625,0.59375,0.06249994,0.609375,1,0.609375,0,0.5625,0.25,0.5625,0.1875,0.5625,0.6875,0.5625,0.625,0.5625,0.125,0.5625,0.5625,0.5625,0.06249994,0.5625,0.5,0.578125,1,0.5625,0.93750006,0.578125,0,0.5625,0.4375,0.5625,0.875,0.5625,0.375,0.5625,0.8125,0.5625,0.31249994,0.5625,0.75,0.53125,0.93750006,0.53125,0.875,0.53125,0.4375,0.53125,0.375,0.53125,0.8125,0.53125,0.31249994,0.53125,0.75,0.53125,0.25,0.53125,0.68750006,0.53125,0.1875,0.53125,0.62500006,0.53125,0.125,0.53125,0.5625,0.53125,0.06249994,0.53125,0.5,0.546875,1,0.546875,0,0.49999997,0.68750006,0.5,0.625,0.49999997,0.1875,0.5,0.125,0.5,0.5625,0.5,0.06249994,0.49999997,0.5,0.515625,1,0.5,0.93750006,0.515625,0,0.5,0.4375,0.5,0.875,0.5,0.375,0.49999997,0.8125,0.49999997,0.31249994,0.5,0.75,0.5,0.25,0.46875,0.4375,0.46875,0.375,0.46875,0.875,0.46875,0.8125,0.46875,0.31249994,0.46875,0.75,0.46875,0.25,0.46875,0.68750006,0.46875,0.1875,0.46875,0.62500006,0.46875,0.125,0.46875,0.5625,0.46875,0.06249994,0.46874997,0.5,0.484375,1,0.46875,0.93750006,0.484375,0,0.43749997,0.1875,0.4375,0.125,0.4375,0.62500006,0.4375,0.5625,0.4375,0.06249994,0.43749997,0.5,0.453125,1,0.4375,0.93750006,0.453125,0,0.4375,0.4375,0.4375,0.875,0.4375,0.375,0.43749997,0.81250006,0.43749997,0.31249994,0.4375,0.75,0.4375,0.25,0.43749997,0.68750006,0.40625,0.375,0.40625,0.31249994,0.40625,0.81250006,0.40625,0.75,0.40625,0.25,0.40625,0.68750006,0.40625,0.1875,0.40625,0.62500006,0.40625,0.125,0.40625,0.5625,0.40625,0.06249994,0.40624997,0.5,0.421875,1,0.40625,0.93750006,0.421875,0,0.40625,0.4375,0.40625,0.875,0.375,0.125,0.375,0.06249994,0.375,0.5625,0.37499994,0.5,0.390625,1,0.375,0.93750006,0.390625,0,0.375,0.4375,0.375,0.875,0.375,0.375,0.37499997,0.81250006,0.375,0.31249994,0.375,0.75,0.375,0.25,0.375,0.68750006,0.37499997,0.1875,0.375,0.62500006,0.34375,0.81250006,0.34375,0.75,0.34375,0.31249994,0.34375,0.25,0.34375,0.68750006,0.34375,0.1875,0.34375,0.62500006,0.34375,0.125,0.34375,0.5625,0.34375,0.06249994,0.34374994,0.5,0.359375,1,0.34375,0.93750006,0.359375,0,0.34375,0.4375,0.34375,0.875,0.34375,0.375,0.3125,0.5625,0.31249997,0.5,0.328125,1,0.3125,0.93750006,0.328125,0,0.3125,0.06249994,0.3125,0.4375,0.3125,0.875,0.3125,0.375,0.3125,0.81250006,0.3125,0.31249994,0.3125,0.75,0.3125,0.25,0.3125,0.68750006,0.3125,0.1875,0.3125,0.62500006,0.3125,0.125,0.28125,0.31249994,0.28125,0.25,0.28125,0.75,0.28125,0.68750006,0.28124997,0.1875,0.28125,0.62500006,0.28125,0.125,0.28125,0.5625,0.28125,0.06249994,0.28124994,0.5,0.296875,1,0.28125,0.93750006,0.296875,0,0.28125,0.4375,0.28125,0.875,0.28125,0.375,0.28124997,0.81250006,0.265625,1,0.25,0.93750006,0.265625,0,0.25,0.06249994,0.24999997,0.5,0.24999997,0.4375,0.24999997,0.875,0.25,0.375,0.24999997,0.81250006,0.25,0.31249994,0.25,0.75,0.25,0.25,0.25,0.68750006,0.24999997,0.1875,0.25,0.62500006,0.24999997,0.125,0.24999997,0.5625,0.21875,0.75,0.21875,0.68750006,0.21875,0.25,0.21875,0.1875,0.21875003,0.62500006,0.21875,0.125,0.21875,0.5625,0.21875,0.06249994,0.21874994,0.5,0.234375,1,0.21875,0.93750006,0.234375,0,0.21875,0.4375,0.21875,0.875,0.21875003,0.375,0.21875,0.81250006,0.21875,0.31249994,0.18749997,0.5,0.1875,0.4375,0.1875,0.93750006,0.1875,0.875,0.1875,0.375,0.18749997,0.81250006,0.1875,0.31249994,0.1875,0.75,0.1875,0.25,0.1875,0.68750006,0.18749997,0.1875,0.1875,0.62500006,0.1875,0.125,0.1875,0.5625,0.1875,0.06249994,0.203125,1,0.203125,0,0.15625003,0.25,0.15624997,0.18749994,0.15624997,0.68750006,0.15625003,0.62500006,0.15624997,0.125,0.15624997,0.5625,0.15625003,0.06249994,0.15624994,0.5,0.171875,1,0.15625003,0.93750006,0.171875,0,0.15624997,0.4375,0.15624997,0.875,0.15625003,0.375,0.15624997,0.8125001,0.15624997,0.31249994,0.15625003,0.75,0.12499997,0.4375,0.125,0.375,0.125,0.875,0.12499997,0.8125001,0.12499997,0.31249994,0.125,0.75,0.125,0.25,0.12499997,0.68750006,0.12499997,0.18749994,0.125,0.62500006,0.125,0.125,0.12499997,0.5625,0.125,0.06249994,0.12499994,0.5,0.14062497,1,0.125,0.93750006,0.14062497,0,0.09374997,0.18749994,0.09375,0.125,0.09375,0.6250001,0.09374997,0.5625,0.09375,0.06249994,0.09374991,0.5,0.109375,1,0.09375,0.93750006,0.109375,0,0.09374997,0.4375,0.09375,0.875,0.09375,0.37499994,0.09374997,0.8125001,0.09375,0.31249994,0.09375,0.75000006,0.09375,0.25,0.09375,0.68750006,0.0625,0.875,0.0625,0.8125001,0.06250003,0.37499994,0.0625,0.31249988,0.06250003,0.75,0.06250003,0.25,0.0625,0.6875001,0.0625,0.18749994,0.06250003,0.6250001,0.0625,0.125,0.0625,0.5625,0.0625,0.06249994,0.06249994,0.5,0.078125,1,0.0625,0.93750006,0.078125,0,0.0625,0.4375,0.03125,0.62500006,0.03124997,0.5625,0.03124997,0.125,0.03125,0.06249994,0.03124994,0.5,0.04687503,1,0.03125,0.93750006,0.04687503,0,0.03124997,0.4375,0.03124997,0.87500006,0.03125,0.375,0.03124997,0.8125001,0.03124997,0.31249994,0.03125,0.75,0.03125,0.25,0.03124997,0.68750006,0.03124997,0.18749994,0,0.37499994,0,0.31249994,0,0.8125001,0,0.75000006,0,0.25,0,0.68750006,0,0.18749994,0,0.6250001,0,0.125,0,0.5625,0,0.06249994,0,0.5,0.015625,1,0,0.93750006,0.015625,0,0,0.4375,0,0.87500006,1,0.06249994,1,0.125,0.96874994,0.125,0.96875,0.06249994,1,0.5,1,0.5625,0.96874994,0.56250006,0.9687499,0.5,1,0.93750006,0.984375,1,0.96875,0.93750006,0.984375,0,1,0.4375,0.96874994,0.4375,1,0.87500006,0.96874994,0.87500006,1,0.37499994,0.96875,0.37499994,1,0.8125001,0.96874994,0.8125001,1,0.31249994,0.96874994,0.31249988,1,0.75000006,0.96875,0.75000006,1,0.25,0.96875,0.25,1,0.68750006,0.96874994,0.6875001,1,0.18749994,0.96874994,0.18749994,1,0.6250001,0.96875,0.6250001,0.93749994,0.8125001,0.9375,0.75000006,0.93749994,0.31249988,0.9375,0.25,0.93749994,0.6875001,0.93749994,0.18749994,0.9375,0.6250001,0.9375,0.125,0.93749994,0.56250006,0.9375,0.06249994,0.9374999,0.5,0.953125,1,0.9375,0.93750006,0.953125,0,0.93749994,0.4375,0.9375,0.87500006,0.9375,0.37499994,0.90625,0.56250006,0.90624994,0.5,0.921875,1,0.90625,0.93750006,0.921875,0,0.90625,0.06249994,0.90625,0.4375,0.90625,0.87500006,0.90625,0.37499994,0.90624994,0.8125001,0.90625,0.31249988,0.90625,0.75000006,0.90625,0.25,0.90625,0.6875001,0.90624994,0.18749994,0.90625,0.6250001,0.90625,0.125,0.87499994,0.31249988,0.875,0.25,0.875,0.75000006,0.87499994,0.6875001,0.8749999,0.18749994,0.875,0.6250001,0.875,0.125,0.87499994,0.56250006,0.875,0.06249994,0.8749999,0.5,0.890625,1,0.875,0.93750006,0.890625,0,0.87499994,0.4375,0.875,0.87500006,0.875,0.37499994,0.8749999,0.8125001,0.859375,0,0.84375,0.06249994,0.8437499,0.5,0.84374994,0.4375,0.84375,0.93750006,0.84375,0.87500006,0.84375,0.37499994,0.84374994,0.8125002,0.84374994,0.31249988,0.84375,0.75000006,0.84375,0.25,0.84374994,0.6875001,0.84374994,0.18749982,0.84375,0.6250001,0.84375,0.125,0.84374994,0.56250006,0.859375,1,0.8125,0.25,0.81249994,0.18749982,0.81249994,0.6875001,0.8125,0.6250001,0.8125,0.125,0.81249994,0.56250006,0.8125,0.06249988,0.8124999,0.5,0.828125,1,0.8125,0.9375001,0.828125,0,0.81249994,0.4375,0.8125,0.87500006,0.8125,0.37499994,0.81249994,0.8125002,0.81249994,0.31249988,0.8125,0.75000006,0.78125,0.9375001,0.78124994,0.87500006,0.78124994,0.4375,0.78125,0.37499994,0.78124994,0.8125002,0.78124994,0.31249988,0.78125,0.75,0.78125,0.25,0.78124994,0.6875001,0.78124994,0.18749982,0.78125,0.6250001,0.78124994,0.125,0.78124994,0.56250006,0.78125,0.06249988,0.7812499,0.5,0.796875,1,0.796875,0,0.765625,1,0.765625,0,2,3,6,7,3,9,7,11,9,13,11,15,15,21,18,23,21,25,23,27,25,29,27,31,29,2,31,6,32,33,34,35,33,36,35,37,36,38,37,39,38,40,39,41,41,45,43,46,45,47,46,48,47,32,48,34,53,54,50,55,54,56,55,57,56,58,57,59,58,60,59,61,60,62,61,63,62,64,63,65,64,52,65,53,66,67,68,69,67,70,69,71,70,72,71,73,72,74,74,78,76,79,78,80,79,81,80,82,81,66,82,68,83,84,85,86,84,87,86,88,87,89,88,90,89,91,90,92,91,93,92,94,93,95,94,96,95,97,96,83,100,101,102,103,101,104,103,105,104,106,105,107,107,111,109,112,111,113,112,114,113,115,114,116,115,100,116,102,117,118,119,120,118,121,120,122,121,123,122,124,123,125,124,126,125,127,126,128,127,129,128,130,129,131,131,119,134,135,136,137,135,138,137,139,138,140,140,144,142,145,144,146,145,147,146,148,147,149,148,150,149,134,150,136,151,152,153,154,152,155,154,156,155,157,156,158,157,159,158,160,159,161,160,162,161,163,162,164,164,151,166,153,168,169,170,171,169,172,171,173,173,177,175,178,177,179,178,180,179,181,180,182,181,183,182,184,183,168,184,170,185,186,187,188,186,189,188,190,189,191,190,192,191,193,192,194,193,195,194,196,196,200,198,201,200,185,201,187,202,203,204,205,205,209,207,210,209,211,210,212,211,213,212,214,213,215,214,216,215,217,216,218,217,202,218,204,219,220,221,222,220,223,222,224,223,225,224,226,225,227,226,228,227,229,229,233,231,234,233,235,234,219,235,221,236,237,237,242,239,243,242,244,243,245,244,246,245,247,246,248,247,249,248,250,249,251,250,252,251,236,252,241,253,254,255,256,254,257,256,258,257,259,258,260,259,261,260,262,262,266,264,267,266,268,267,269,268,253,269,255,274,275,271,276,275,277,276,278,277,279,278,280,279,281,280,282,281,283,282,284,283,285,284,286,285,273,286,274,287,288,289,290,288,291,290,292,291,293,292,294,293,295,295,299,297,300,299,301,300,302,301,303,302,287,303,289,304,305,306,307,305,308,307,309,308,310,309,311,310,312,311,313,312,314,313,315,314,316,315,317,316,318,317,304,321,322,323,324,322,325,324,326,325,327,326,328,328,332,330,333,332,334,333,335,334,336,335,337,336,321,337,323,338,339,340,341,339,342,341,343,342,344,343,345,344,346,345,347,346,348,347,349,348,350,349,351,351,338,353,340,355,356,357,358,356,359,358,360,360,364,362,365,364,366,365,367,366,368,367,369,368,370,369,371,370,355,371,357,372,373,374,375,373,376,375,377,376,378,377,379,378,380,379,381,380,382,381,383,382,384,384,388,386,372,388,374,389,390,391,392,390,393,393,397,395,398,397,399,398,400,399,401,400,402,401,403,402,404,403,405,404,389,405,391,406,407,408,409,407,410,409,411,410,412,411,413,412,414,413,415,414,416,415,417,417,421,419,422,421,406,422,408,425,426,429,430,430,436,433,438,436,440,438,442,440,444,442,446,444,448,446,450,448,452,450,454,452,425,454,429,455,456,457,458,456,459,458,460,459,461,460,462,461,463,462,464,463,465,465,469,467,470,469,471,470,455,471,457,472,473,473,478,475,479,478,480,479,481,480,482,481,483,482,484,483,485,484,486,485,487,486,488,487,472,488,477,489,490,491,492,490,493,492,494,493,495,494,496,495,497,496,498,498,502,500,503,502,504,503,505,504,489,505,491,508,509,510,511,509,512,511,513,512,514,513,515,514,516,515,517,516,518,517,519,518,520,519,521,520,507,521,508,523,524,525,526,524,527,526,528,527,529,528,530,530,534,532,535,534,536,535,537,536,538,537,539,538,523,539,525,540,541,542,543,541,544,543,545,544,546,545,547,546,548,547,549,548,550,549,551,550,552,551,553,552,554,554,542,5,4,0,8,4,10,8,12,10,14,14,20,16,22,20,24,22,26,24,28,26,30,28,1,30,5,1,0]),
+ vertexCount: 559
});
diff --git a/src/public/work.css b/src/public/work.css
index 6009a42..8840ff9 100644
--- a/src/public/work.css
+++ b/src/public/work.css
@@ -11,6 +11,54 @@
display: none;
}
+#loading {
+ display: none;
+ z-index: 110;
+ position: fixed;
+ top: 0;
+ bottom: 0;
+ left: 0;
+ right: 0;
+ align-items: center;
+ justify-content: center;
+ text-align: center;
+ font-family: 'Fira Code', 'Fira Mono', monospace;
+
+ &.loading-active {
+ display: flex;
+ }
+
+ & #loading-text {
+ background-color: black;
+ padding: 1em;
+ border-radius: 8px;
+ max-width: 80vw;
+ word-wrap: break-word;
+
+ & #stage1-error {
+ opacity: 0;
+ animation: opacity_0_1 1ms 5s forwards 1;
+ color: orange;
+ }
+
+ & #stage1-error2 {
+ opacity: 0;
+ animation: opacity_0_1 1ms 10s forwards 1;
+ }
+ }
+}
+
+@keyframes opacity_0_1 {
+ 0% {
+ opacity: 0;
+ }
+
+ 100% {
+ opacity: 1;
+ }
+}
+
+
nav {
position: fixed;
z-index: 10;
diff --git a/src/renderer/color-utils.ts b/src/renderer/color-utils.ts
new file mode 100644
index 0000000..0b6cbbe
--- /dev/null
+++ b/src/renderer/color-utils.ts
@@ -0,0 +1,8 @@
+import { vec4 } from "gl-matrix";
+
+export const rgbToFloat = (
+ r: number,
+ g: number,
+ b: number,
+ a: number = 255
+): vec4 => [r / 255, g / 255, b / 255, a / 255];
diff --git a/src/renderer/editor.ts b/src/renderer/editor.ts
new file mode 100644
index 0000000..fe2cb46
--- /dev/null
+++ b/src/renderer/editor.ts
@@ -0,0 +1,15 @@
+import { Behavior } from "./behavior";
+import { Transform } from "./transform";
+
+type PaneConfig = {
+ name: string;
+ type: "transform" | "float" | "vec3" | "color";
+ onChange: Function;
+};
+
+export class Editor extends Behavior {
+ private panes: PaneConfig[] = [];
+ addTransform(name: string, onChange: (newTransform: Transform) => void) {
+ this.panes.push({ name, type: "transform", onChange });
+ }
+}
diff --git a/src/renderer/gizmo.ts b/src/renderer/gizmo.ts
new file mode 100644
index 0000000..bab4ec6
--- /dev/null
+++ b/src/renderer/gizmo.ts
@@ -0,0 +1,34 @@
+import { WebGLApp } from "./webgl";
+import { Transform, v3 } from "./transform";
+import { Renderable } from "./renderable";
+import { MeshRenderer } from "./mesh-renderer";
+import { Mesh } from "./mesh";
+import { Shader } from "./shader";
+import { basicShaderConfig } from "../common-shaders/basic";
+import basicVert from "../common-shaders/basic.vert";
+import vertexColorsFrag from "../common-shaders/vertex-colors.frag";
+import gizmo from "../meshes/gizmo";
+
+const gizmoShader = (app: WebGLApp) =>
+ new Shader(basicShaderConfig)
+ .vertex(basicVert)
+ .fragment(vertexColorsFrag)
+ .app(app);
+
+export const createGizmo = (
+ app: WebGLApp,
+ camera: Transform,
+ transform?: Transform
+) => {
+ const localTransform = new Transform(
+ transform?.position,
+ transform?.rotation
+ // v3(0.5)
+ );
+
+ const mr = new MeshRenderer(app, gizmo, gizmoShader(app), camera).configure(
+ {}
+ );
+
+ new Renderable(app, localTransform, mr);
+};
diff --git a/src/renderer/helper-textures/black.png b/src/renderer/helper-textures/black.png
new file mode 100644
index 0000000..c4393dd
Binary files /dev/null and b/src/renderer/helper-textures/black.png differ
diff --git a/src/renderer/helper-textures/black.ts b/src/renderer/helper-textures/black.ts
new file mode 100644
index 0000000..04525ef
--- /dev/null
+++ b/src/renderer/helper-textures/black.ts
@@ -0,0 +1,5 @@
+import { Texture } from "../texture";
+import { WebGLApp } from "../webgl";
+import black from "./black.png";
+
+export const createBlackTexture = (app: WebGLApp) => new Texture(app, black);
diff --git a/src/renderer/helper-textures/bump.png b/src/renderer/helper-textures/bump.png
new file mode 100644
index 0000000..a9e3b98
Binary files /dev/null and b/src/renderer/helper-textures/bump.png differ
diff --git a/src/renderer/helper-textures/bump.ts b/src/renderer/helper-textures/bump.ts
new file mode 100644
index 0000000..7fcc1aa
--- /dev/null
+++ b/src/renderer/helper-textures/bump.ts
@@ -0,0 +1,5 @@
+import { Texture } from "../texture";
+import { WebGLApp } from "../webgl";
+import bump from "./bump.png";
+
+export const createBumpTexture = (app: WebGLApp) => new Texture(app, bump);
diff --git a/src/renderer/helper-textures/pink.png b/src/renderer/helper-textures/pink.png
new file mode 100644
index 0000000..be222f2
Binary files /dev/null and b/src/renderer/helper-textures/pink.png differ
diff --git a/src/renderer/helper-textures/pink.ts b/src/renderer/helper-textures/pink.ts
new file mode 100644
index 0000000..fc28674
--- /dev/null
+++ b/src/renderer/helper-textures/pink.ts
@@ -0,0 +1,5 @@
+import { Texture } from "../texture";
+import { WebGLApp } from "../webgl";
+import pink from "./pink.png";
+
+export const createPinkTexture = (app: WebGLApp) => new Texture(app, pink);
diff --git a/src/renderer/helper-textures/white.png b/src/renderer/helper-textures/white.png
new file mode 100644
index 0000000..ceb1f54
Binary files /dev/null and b/src/renderer/helper-textures/white.png differ
diff --git a/src/renderer/helper-textures/white.ts b/src/renderer/helper-textures/white.ts
new file mode 100644
index 0000000..b30bcf7
--- /dev/null
+++ b/src/renderer/helper-textures/white.ts
@@ -0,0 +1,5 @@
+import { Texture } from "../texture";
+import { WebGLApp } from "../webgl";
+import white from "./white.png";
+
+export const createWhiteTexture = (app: WebGLApp) => new Texture(app, white);
diff --git a/src/renderer/material.ts b/src/renderer/material.ts
index 5be9b3c..e4b4e18 100644
--- a/src/renderer/material.ts
+++ b/src/renderer/material.ts
@@ -1,7 +1,10 @@
-import { Shader } from "./shader";
+import { Shader, ShaderConfig } from "./shader";
export type MaterialConfig = {
shader: Shader;
+ uniforms: {
+ [key: string]: (gl: WebGL2RenderingContext, material: Material) => void;
+ };
};
export class Material {
diff --git a/src/renderer/mesh-renderer.ts b/src/renderer/mesh-renderer.ts
index 9278d04..2f55a47 100644
--- a/src/renderer/mesh-renderer.ts
+++ b/src/renderer/mesh-renderer.ts
@@ -1,34 +1,57 @@
-import { mat4, vec3 } from "gl-matrix";
+import { mat4, quat, vec3 } from "gl-matrix";
import { Behavior } from "./behavior";
import { Mesh } from "./mesh";
-import { Shader } from "./shader";
+import { Shader, ShaderMapping } from "./shader";
import { WebGLApp } from "./webgl";
-import { Transform } from "./transform";
+import { Transform, v3 } from "./transform";
export type MeshRendererConfig = {
drawMode?: number;
cullMode?: number;
+ meshTransform?: mat4; // Do not use this for per-frame shit. Just the model pre-transform.
};
export class MeshRenderer extends Behavior {
- private modelMatrix = mat4.create();
private projectionMatrix = mat4.create();
private buffers: {
+ vao?: WebGLVertexArrayObject;
position?: WebGLBuffer;
uv?: WebGLBuffer;
normal?: WebGLBuffer;
color?: WebGLBuffer;
faces?: WebGLBuffer;
- } = {};
+ textures: Record;
+ } = { textures: {} };
+ faceDataType: number;
+ colorDataType: number | null;
constructor(
public app: WebGLApp,
public mesh: Mesh,
public shader: Shader,
public camera: Transform = new Transform([0, 0, -6]),
+ public light: Transform = new Transform([100, 100, 0]),
public config: MeshRendererConfig = {}
) {
super(app);
+
+ this.faceDataType = this.getDataType(mesh.config.faces);
+ this.colorDataType = mesh.config.colors
+ ? this.getDataType(mesh.config.colors)
+ : null;
+ }
+
+ getDataType(array: Uint16Array | Uint32Array | Uint8Array) {
+ switch (array.BYTES_PER_ELEMENT) {
+ case 1:
+ return 5121; // uint8 UNSIGNED_BYTE
+ case 2:
+ return 5123; // uint16 UNSIGNED_SHORT
+ case 4:
+ return 5125; // uint32 UNSIGNED_INT
+ default:
+ return 5126; // float32 FLOAT
+ }
}
configure(config: MeshRendererConfig) {
@@ -51,19 +74,34 @@ export class MeshRenderer extends Behavior {
}
initializeBuffers() {
+ const vao = this.app.gl.createVertexArray();
+ if (!vao) {
+ throw new Error("VAO creation failed");
+ }
+
+ this.buffers.vao = vao;
+ this.app.gl.bindVertexArray(vao);
+
this.buffers.faces = this.makeBuffer(
this.mesh.config.faces,
this.app.gl.ELEMENT_ARRAY_BUFFER
);
+ const shaderMap = this.shader.mappings;
+
this.buffers.position = this.makeBuffer(this.mesh.config.positions);
- this.bindAttrib(this.buffers.position, 0, 3, this.app.gl.FLOAT);
+ this.bindAttrib(
+ this.buffers.position,
+ shaderMap.attributes.vertex,
+ 3,
+ this.app.gl.FLOAT
+ );
if (this.mesh.config.normals) {
this.buffers.normal = this.makeBuffer(this.mesh.config.normals);
this.bindAttrib(
this.buffers.normal,
- "aVertexNormals",
+ shaderMap.attributes.normal,
3,
this.app.gl.FLOAT,
true
@@ -74,16 +112,86 @@ export class MeshRenderer extends Behavior {
this.buffers.color = this.makeBuffer(this.mesh.config.colors);
this.bindAttrib(
this.buffers.color,
- "aVertexColors",
+ shaderMap.attributes.vertexColor,
4,
- this.app.gl.UNSIGNED_BYTE
+ this.colorDataType || this.app.gl.UNSIGNED_BYTE
);
}
if (this.mesh.config.uvs) {
this.buffers.uv = this.makeBuffer(this.mesh.config.uvs);
- this.bindAttrib(this.buffers.uv, 1, 2, this.app.gl.FLOAT);
+ this.bindAttrib(
+ this.buffers.uv,
+ shaderMap.attributes.uv0,
+ 2,
+ this.app.gl.FLOAT
+ );
}
+
+ this.app.gl.bindVertexArray(null);
+ }
+
+ async initializeTextures() {
+ const { gl } = this.app;
+
+ for (const [name, textureObject] of Object.entries(this.shader.textures)) {
+ await textureObject.loadImage();
+ const glTex = gl.createTexture();
+ if (!glTex) {
+ throw new Error("failed to allocate texture");
+ }
+ const tex = textureObject.texture as ImageBitmap;
+ gl.bindTexture(gl.TEXTURE_2D, glTex);
+ gl.texImage2D(
+ gl.TEXTURE_2D,
+ 0,
+ gl.RGBA,
+ textureObject.width,
+ textureObject.height,
+ 0,
+ gl.RGBA,
+ gl.UNSIGNED_BYTE,
+ tex
+ );
+
+ // gl.pixelStorei(gl.UNPACK_FLIP_Y_WEBGL, true);
+
+ const uvOverflow = textureObject.config.uvClamp
+ ? gl.CLAMP_TO_EDGE
+ : gl.REPEAT;
+
+ gl.texParameteri(gl.TEXTURE_2D, gl.TEXTURE_WRAP_S, uvOverflow);
+ gl.texParameteri(gl.TEXTURE_2D, gl.TEXTURE_WRAP_T, uvOverflow);
+ gl.texParameteri(gl.TEXTURE_2D, gl.TEXTURE_MAG_FILTER, gl.NEAREST);
+ gl.texParameteri(gl.TEXTURE_2D, gl.TEXTURE_MIN_FILTER, gl.NEAREST);
+
+ this.buffers.textures[name] = glTex;
+ }
+ }
+
+ bindTextures() {
+ const { gl } = this.app;
+ const intStart = this.app.gl.TEXTURE0;
+ const textures = Object.entries(this.buffers.textures);
+ const destructors: (() => void)[] = [];
+
+ textures.forEach(([key, tex], index) => {
+ const uniform = (this.shader.mappings.uniforms as any)[key];
+ if (!uniform) {
+ return;
+ }
+
+ gl.activeTexture(intStart + index);
+ gl.bindTexture(gl.TEXTURE_2D, tex);
+ gl.uniform1i(uniform, index);
+
+ destructors.push(() => {
+ gl.activeTexture(intStart + index);
+ gl.bindTexture(gl.TEXTURE_2D, null);
+ });
+ });
+
+ return destructors;
}
bindAttrib(
@@ -114,7 +222,34 @@ export class MeshRenderer extends Behavior {
gl.bindBuffer(gl.ARRAY_BUFFER, null);
}
- onStart() {
+ initializeShader(time: number, transform: Transform) {
+ const view = mat4.invert(mat4.create(), this.camera.toMat4());
+
+ const gl = this.app.gl;
+ const { uniforms } = this.shader.mappings;
+ this.shader.use();
+
+ gl.uniform1f(uniforms.time, time);
+ gl.uniform4fv(uniforms.light0Color, [1, 1, 1, 1]);
+ gl.uniformMatrix4fv(uniforms.view, false, view);
+ gl.uniformMatrix4fv(uniforms.projection, false, this.projectionMatrix);
+ gl.uniform3fv(uniforms.light0, this.light.position);
+ gl.uniformMatrix4fv(uniforms.objectToWorld, false, transform.toMat4());
+ gl.uniformMatrix4fv(
+ uniforms.objectToWorldInv,
+ false,
+ mat4.invert(mat4.create(), transform.toMat4())
+ );
+
+ this.shader.onPrerender(this.app, time);
+ }
+
+ async onStart(_: never, app: WebGLApp) {
+ app.loading("baking vectors");
+ app.telemetry?.addRenderers(1);
+ app.telemetry?.addTriangles(this.mesh.config.faces.length);
+ app.telemetry?.addVertexes(this.mesh.config.vertexCount);
+
mat4.perspective(
this.projectionMatrix,
this.app.config.fov || 45,
@@ -124,37 +259,29 @@ export class MeshRenderer extends Behavior {
);
this.shader.compile();
+ this.shader.link();
this.initializeBuffers();
this.shader.link();
+
+ await this.initializeTextures();
}
onRenderableUpdate(time: number, transform: Transform) {
const gl = this.app.gl;
+ gl.bindVertexArray(this.buffers.vao || null);
gl.bindBuffer(gl.ELEMENT_ARRAY_BUFFER, this.buffers.faces || null);
gl.bindBuffer(gl.ARRAY_BUFFER, this.buffers.position || null);
- this.shader.use();
-
- this.shader.setupUniforms(
- time,
- this.projectionMatrix,
- transform,
- this.camera
- );
-
+ this.initializeShader(time, transform);
+ const textureDestructors = this.bindTextures();
gl.drawElements(
this.config.drawMode ?? gl.TRIANGLES,
this.mesh.config.faces.length,
- gl.UNSIGNED_INT,
+ this.faceDataType,
0
);
- // gl.drawArrays(
- // 0,
- // this.mesh.config.vertexCount
- // );
-
const err = gl.getError();
if (err !== 0) {
console.log({ err });
@@ -162,5 +289,15 @@ export class MeshRenderer extends Behavior {
`(MeshRenderer) webgl failure: ${err}`
);
}
+
+ gl.bindVertexArray(null);
+ gl.bindBuffer(gl.ELEMENT_ARRAY_BUFFER, null);
+ gl.bindBuffer(gl.ARRAY_BUFFER, null);
+
+ textureDestructors.forEach((i) => i());
}
}
+
+const isPowerOfTwo = (x: number) => {
+ return (x & (x - 1)) === 0;
+};
diff --git a/src/renderer/mesh.ts b/src/renderer/mesh.ts
index f339ae4..087ea66 100644
--- a/src/renderer/mesh.ts
+++ b/src/renderer/mesh.ts
@@ -1,6 +1,6 @@
export type MeshConfig = {
- colors: Uint8Array | null;
- faces: Uint32Array;
+ colors: Uint8Array | Uint16Array | null;
+ faces: Uint32Array | Uint16Array | Uint8Array;
name: string;
normals: Float32Array | null;
positions: Float32Array;
diff --git a/src/renderer/renderable.ts b/src/renderer/renderable.ts
index cee4876..c0e5bef 100644
--- a/src/renderer/renderable.ts
+++ b/src/renderer/renderable.ts
@@ -1,4 +1,5 @@
import { Behavior } from "./behavior";
+import { createGizmo } from "./gizmo";
import { MeshRenderer } from "./mesh-renderer";
import { Transform } from "./transform";
import { WebGLApp } from "./webgl";
@@ -7,9 +8,12 @@ export class Renderable extends Behavior {
constructor(
public app: WebGLApp,
public transform: Transform,
- public renderer: MeshRenderer
+ public renderer: MeshRenderer,
+ enableGizmo: boolean = false
) {
super(app);
+
+ if (enableGizmo) createGizmo(app, renderer.camera, transform);
}
onDraw(time: number) {
diff --git a/src/renderer/shader.ts b/src/renderer/shader.ts
index f4e933b..a7c6c42 100644
--- a/src/renderer/shader.ts
+++ b/src/renderer/shader.ts
@@ -1,39 +1,62 @@
-import { mat4, vec3 } from "gl-matrix";
-import { Transform } from "./transform";
+import { Texture } from "./texture";
import { WebGLApp } from "./webgl";
/**
* Uniform/Attribute locations
*/
-export type ShaderConfig = {
- // Engine rendering features
- model?: 0; // always zero to ensure we render correctly. This is implied.
- view?: number;
- projection?: number;
- world?: number;
- light0?: number;
- light0Color?: number;
- uv0?: number;
- normals?: number;
- vertexColor?: number;
- time?: number;
+export type ShaderConfig = ShaderMapping;
+export type InternalMapping = ShaderMapping<
+ number,
+ WebGLUniformLocation | null
+>;
- // other reasons (like materials)
- material?: { [key: string]: number };
+export type ShaderMapping<
+ Attr extends number | string,
+ Uniform extends (WebGLUniformLocation | null) | string,
+> = {
+ attributes: {
+ vertex: Attr;
+ uv0: Attr;
+ normal: Attr;
+ vertexColor: Attr;
+
+ material?: { [key: string]: Attr };
+ };
+
+ uniforms: {
+ albedo: Uniform;
+ light0: Uniform;
+ light0Color: Uniform;
+ objectToWorld: Uniform;
+ objectToWorldInv: Uniform;
+ projection: Uniform;
+ texture0: Uniform;
+ texture1: Uniform;
+ texture2: Uniform;
+ time: Uniform;
+ view: Uniform;
+ };
};
export class Shader {
static VERTEX = 35633;
static FRAGMENT = 35632;
- constructor(private config: ShaderConfig) {
- config.model = 0;
- }
+ constructor(public config: ShaderConfig) {}
private vertexCode = "";
private fragmentCode = "";
private _app?: WebGLApp;
- private _program: WebGLProgram | null = null;
+ public program: WebGLProgram | null = null;
+ public mappings: InternalMapping = {} as any;
+ public textures: Record = {};
+
+ public materialValues: Record = {};
+ private prerenderHooks: ((
+ app: WebGLApp,
+ shader: Shader,
+ time: number
+ ) => void)[] = [];
get gl() {
const gl = this._app?.gl;
@@ -46,7 +69,7 @@ export class Shader {
app(app: WebGLApp) {
this._app = app;
- this._program = app.gl.createProgram();
+ this.program = app.gl.createProgram();
return this;
}
@@ -61,12 +84,41 @@ export class Shader {
return this;
}
+ prerenderHook(fn: (app: WebGLApp, shader: Shader, time: number) => void) {
+ this.prerenderHooks.push(fn);
+ return this;
+ }
+
attrib(name: string) {
- return this.gl.getAttribLocation(this._program as WebGLProgram, name);
+ return this.gl.getAttribLocation(this.program as WebGLProgram, name);
}
uniform(name: string) {
- return this.gl.getUniformLocation(this._program as WebGLProgram, name);
+ return this.gl.getUniformLocation(this.program as WebGLProgram, name);
+ }
+
+ generateMappings(config: ShaderConfig): InternalMapping {
+ return {
+ attributes: {
+ normal: this.attrib(config.attributes.normal),
+ uv0: this.attrib(config.attributes.uv0),
+ vertex: this.attrib(config.attributes.vertex),
+ vertexColor: this.attrib(config.attributes.vertexColor),
+ },
+ uniforms: {
+ albedo: this.uniform(config.uniforms.albedo),
+ light0: this.uniform(config.uniforms.light0),
+ light0Color: this.uniform(config.uniforms.light0Color),
+ objectToWorld: this.uniform(config.uniforms.objectToWorld),
+ objectToWorldInv: this.uniform(config.uniforms.objectToWorldInv),
+ projection: this.uniform(config.uniforms.projection),
+ texture0: this.uniform(config.uniforms.texture0),
+ texture1: this.uniform(config.uniforms.texture1),
+ texture2: this.uniform(config.uniforms.texture2),
+ time: this.uniform(config.uniforms.time),
+ view: this.uniform(config.uniforms.view),
+ },
+ };
}
attach(which: number, source: string) {
@@ -79,7 +131,13 @@ export class Shader {
gl.shaderSource(shader, source);
gl.compileShader(shader);
- gl.attachShader(this._program as WebGLProgram, shader);
+ gl.attachShader(this.program as WebGLProgram, shader);
+ }
+
+ /// Slot must be the name of the relevant uniform pointer, e.g. texture0
+ addTexture(slot: string, texture: Texture) {
+ this.textures[slot] = texture;
+ return this;
}
compile() {
@@ -89,54 +147,37 @@ export class Shader {
}
link() {
- this.gl.linkProgram(this._program as WebGLProgram);
+ this.gl.linkProgram(this.program as WebGLProgram);
if (
!this.gl.getProgramParameter(
- this._program as WebGLProgram,
+ this.program as WebGLProgram,
this.gl.LINK_STATUS
)
) {
throw new Error(
"Unable to initialize the shader program: " +
- this.gl.getProgramInfoLog(this._program as WebGLProgram)
+ this.gl.getProgramInfoLog(this.program as WebGLProgram)
);
}
+ this.mappings = this.generateMappings(this.config);
}
bindAttrib(attribLocation: number, name: string) {
this.gl.bindAttribLocation(
- this._program as WebGLProgram,
+ this.program as WebGLProgram,
attribLocation,
name
);
}
- setupUniforms(
- time: number,
- projection: mat4,
- model: Transform,
- view: Transform
- ) {
- const viewMatrix = view.toMat4();
- mat4.invert(viewMatrix, viewMatrix);
-
- const { gl } = this._app as WebGLApp;
- gl.useProgram(this._program as WebGLProgram);
- gl.uniformMatrix4fv(this.uniform("uProjectionMatrix"), false, projection);
-
- if (this.config.time) {
- gl.uniform1f(this.uniform("uTime"), time);
- }
-
- const modelMat = mat4.clone(model.toMat4());
- mat4.fromQuat(modelMat, view.rotation);
- mat4.translate(modelMat, modelMat, view.position);
-
- gl.uniformMatrix4fv(this.uniform("uModelViewMatrix"), false, modelMat);
+ use() {
+ this._app?.gl.useProgram(this.program);
}
- use() {
- this._app?.gl.useProgram(this._program);
+ onPrerender(app: WebGLApp, time: number) {
+ for (const fn of this.prerenderHooks) {
+ fn(app, this, time);
+ }
}
}
diff --git a/src/renderer/telemetry.ts b/src/renderer/telemetry.ts
index 3898da8..25e7128 100644
--- a/src/renderer/telemetry.ts
+++ b/src/renderer/telemetry.ts
@@ -6,6 +6,11 @@ export class Telemetry extends Behavior {
public frameTimes: number[] = [];
public maxFrameTimes: number = 100;
public lastFrameTime: number = 0;
+ public activeTriangles: number = 0;
+ public activeVertexes: number = 0;
+ public activeRenderers: number = 0;
+ public activeTextures: number = 0;
+
constructor(
public app: WebGLApp,
selector = "#telemetry"
@@ -25,29 +30,56 @@ export class Telemetry extends Behavior {
}
}
- onStart() {
+ async onStart() {
this.lastFrameTime = 0;
this.frameTimes = [];
+ // Send this to the end of onStart execution
+ setTimeout(() => this.setText(), 0);
+
setInterval(() => {
- const averageFrameTime =
- this.frameTimes.reduce((a, b) => a + b, 0) / this.frameTimes.length;
-
- const framesPerSecond = 1000 / averageFrameTime;
-
- this.el.innerHTML = `${framesPerSecond.toFixed(
- 1
- )} FPS (${averageFrameTime.toFixed(3)} ms)
bU: ${
- this.app.registry.onBeforeUpdate.length
- } | U: ${this.app.registry.onUpdate.length} | aU: ${
- this.app.registry.onAfterUpdate.length
- }`;
+ this.setText();
}, 1001);
}
+ setText() {
+ const averageFrameTime =
+ this.frameTimes.reduce((a, b) => a + b, 0) / this.frameTimes.length;
+
+ const framesPerSecond = 1000 / averageFrameTime;
+
+ this.el.innerHTML = `${framesPerSecond.toFixed(
+ 1
+ )} FPS (${averageFrameTime.toFixed(3)} ms)
update :: b: ${
+ this.app.registry.onBeforeUpdate.length
+ } | u: ${this.app.registry.onUpdate.length} | a: ${
+ this.app.registry.onAfterUpdate.length
+ } | d: ${this.app.registry.onDraw.length}
render :: mr: ${
+ this.activeRenderers
+ } | v: ${this.activeVertexes} | t: ${
+ this.activeTriangles
+ }
others :: tex: ${this.activeTextures}`;
+ }
+
onAfterUpdate(time: number) {
const frameTime = time - this.lastFrameTime;
this.insertTime(frameTime);
this.lastFrameTime = time;
}
+
+ addTriangles(n: number) {
+ this.activeTriangles += n;
+ }
+
+ addVertexes(n: number) {
+ this.activeVertexes += n;
+ }
+
+ addRenderers(n: number) {
+ this.activeRenderers += n;
+ }
+
+ addTextures(n: number) {
+ this.activeTextures += n;
+ }
}
diff --git a/src/renderer/texture.ts b/src/renderer/texture.ts
new file mode 100644
index 0000000..95c813e
--- /dev/null
+++ b/src/renderer/texture.ts
@@ -0,0 +1,60 @@
+import { Behavior } from "./behavior";
+import { WebGLApp } from "./webgl";
+import bump from "./helper-textures/bump.png";
+
+export class Texture {
+ public texture: ImageBitmap | Uint8Array | null = null;
+ public width: number = 0;
+ public height: number = 0;
+
+ constructor(
+ public app: WebGLApp,
+ public url: string,
+ public config: { uvClamp?: boolean } = {}
+ ) {}
+
+ setImage(data: Uint8Array, width: number, height: number) {
+ this.texture = data;
+ this.width = width;
+ this.height = height;
+ return this;
+ }
+
+ async loadImage() {
+ if (this.url === "manual") {
+ if (this.texture === null) {
+ throw new Error("manual specified, but texture was not ready...");
+ }
+ return;
+ }
+
+ if (this.texture !== null) {
+ return;
+ }
+
+ this.app.telemetry?.addTextures(-1);
+ this.app.loading("Fetching textures...");
+
+ const image = new Image();
+ return new Promise((resolve, reject) => {
+ image.onload = async () => {
+ this.texture = await createImageBitmap(image, {
+ imageOrientation: "flipY",
+ });
+ this.width = this.texture.width;
+ this.height = this.texture.height;
+ this.app.telemetry?.addTextures(2);
+ resolve(void 0);
+ };
+
+ image.onerror = (e) => {
+ this.app.telemetry?.addTextures(1);
+ reject(
+ new Error(`texture load of ${this.url} failed: ${e.toString()}`)
+ );
+ };
+
+ image.src = this.url;
+ });
+ }
+}
diff --git a/src/renderer/transform.ts b/src/renderer/transform.ts
index 57b1ec5..4dc787e 100644
--- a/src/renderer/transform.ts
+++ b/src/renderer/transform.ts
@@ -23,3 +23,8 @@ export class Transform {
return mat;
}
}
+
+export const etoq = (v3: vec3): quat =>
+ quat.fromEuler(quat.create(), v3[0], v3[1], v3[2]);
+
+export const v3 = (v: number): vec3 => [v, v, v];
diff --git a/src/renderer/webgl.ts b/src/renderer/webgl.ts
index f91f529..560f0be 100644
--- a/src/renderer/webgl.ts
+++ b/src/renderer/webgl.ts
@@ -1,3 +1,4 @@
+import { Editor } from "./editor";
import { Telemetry } from "./telemetry";
export type WebGPUAppConfig = {
@@ -5,14 +6,21 @@ export type WebGPUAppConfig = {
context?: GPUCanvasConfiguration;
zNear?: number;
zFar?: number;
+ editor?: boolean;
+ telemetry?: boolean;
};
-export type RenderHandle = (time: number, app: WebGLApp) => void;
+export type RenderHandle = (
+ time: number,
+ app: WebGLApp
+) => void | Promise;
export class WebGLApp {
public canvas: HTMLCanvasElement;
public telemetry?: Telemetry;
public gl: WebGL2RenderingContext;
+ public editor?: Editor;
+ private loadingMessages: Set = new Set(["[noeidelon] [stage 2]"]);
public registry: {
onBeforeUpdate: RenderHandle[];
@@ -42,10 +50,15 @@ export class WebGLApp {
gl.viewport(0, 0, gl.drawingBufferWidth, gl.drawingBufferHeight);
// this.gl.getExtension("OES_element_index_uint"); // default
+ this.gl.getExtension("EXT_texture_filter_anisotropic");
- if (location.search.includes("telemetry")) {
+ if (location.search.includes("telemetry") || config.telemetry) {
this.telemetry = new Telemetry(this);
}
+
+ if (location.search.includes("editor") || config.editor) {
+ this.editor = new Editor(this);
+ }
} catch (e) {
const main = document.querySelector("main");
if (main) {
@@ -71,6 +84,18 @@ export class WebGLApp {
gl.clear(gl.COLOR_BUFFER_BIT | gl.DEPTH_BUFFER_BIT);
}
+ loading(message: string) {
+ this.loadingMessages.add(message.toLowerCase());
+
+ (document.querySelector("#loading-text") as HTMLDivElement).innerHTML = [
+ ...this.loadingMessages,
+ ].join("
");
+ }
+
+ ready() {
+ document.querySelector("#loading")?.classList.remove("loading-active");
+ }
+
onBeforeUpdate(handle: RenderHandle) {
this.registry.onBeforeUpdate.push(handle);
}
@@ -99,18 +124,34 @@ export class WebGLApp {
this.registry.onDraw.forEach((handle) => handle(time, this));
}
- doStart(time: number = 0) {
+ async doStart(time: number = 0) {
+ this.loading("setting launch parameters");
this.clear();
- this.registry.onStart.forEach((handle) => handle(time, this));
+
+ try {
+ for (const fn of this.registry.onStart) {
+ await fn(time, this);
+ }
+ } catch (e) {
+ this.loading(
+ `[panic] failed to start noeidelon`
+ );
+ if (this.telemetry) {
+ this.loading(`${e}`);
+ }
+ return;
+ }
+
+ this.ready();
}
async oneShot(time: number = 0) {
- this.doStart(time);
+ await this.doStart(time);
this.doUpdate(time);
}
async start() {
- this.doStart();
+ await this.doStart();
const run = (time: number) => {
this.doUpdate(time);
diff --git a/tsconfig.json b/tsconfig.json
index 5e21cb1..7d84cf8 100644
--- a/tsconfig.json
+++ b/tsconfig.json
@@ -24,5 +24,6 @@
"strict": true,
"forceConsistentCasingInFileNames": true,
"skipLibCheck": true
- }
+ },
+ "exclude": ["html/"]
}