|
From: <cn...@us...> - 2009-08-31 05:11:02
|
Revision: 531
http://hgengine.svn.sourceforge.net/hgengine/?rev=531&view=rev
Author: cnlohr
Date: 2009-08-31 05:10:52 +0000 (Mon, 31 Aug 2009)
Log Message:
-----------
add collada tool (NOT WORKING)
Added Paths:
-----------
Mercury2/tools/collada2hgmdl/
Mercury2/tools/collada2hgmdl/ColladaConvert.cpp
Mercury2/tools/collada2hgmdl/Makefile
Mercury2/tools/collada2hgmdl/XMLCog.cpp
Mercury2/tools/collada2hgmdl/XMLCog.h
Mercury2/tools/collada2hgmdl/guntheronly.dae
Added: Mercury2/tools/collada2hgmdl/ColladaConvert.cpp
===================================================================
--- Mercury2/tools/collada2hgmdl/ColladaConvert.cpp (rev 0)
+++ Mercury2/tools/collada2hgmdl/ColladaConvert.cpp 2009-08-31 05:10:52 UTC (rev 531)
@@ -0,0 +1,106 @@
+#include <stdio.h>
+#include <stdlib.h>
+#include "XMLCog.h"
+
+int main( int argc, char ** argv )
+{
+ if( argc != 3 )
+ {
+ fprintf( stderr, "Mercury Game Engine Collada Converter\n" );
+ fprintf( stderr, " (C) 2009 Charles Lohr under the NewBSD License\n" );
+ fprintf( stderr, " Invalid usage. Usage: %s (Collada .dae File) (Mercury .hgmdl File)\n" );
+ return -1;
+ }
+ XMLCog c;
+ if( !LoadXML( argv[1], c ) )
+ {
+ fprintf( stderr, "Could not load/parse Collada file.\n" );
+ return -2;
+ }
+
+ if( !c.leaves["version"].length() )
+ {
+ fprintf( stderr, "Could not find version of Collada.\n" );
+ return -3;
+ }
+
+ printf( "Collada file, version %s opened as expected.\n", c.leaves["version"].c_str() );
+
+ int lcontrol = c.FindChild( "library_controllers" );
+ int lgeometries = c.FindChild( "library_geometries" );
+ int lvscenes = c.FindChild( "library_visual_scenes" );
+ int lvanimations = c.FindChild( "library_animations" );
+
+ if( lgeometries == -1 )
+ {
+ fprintf( stderr, "Could not find library_geometries section.\n" );
+ return -3;
+ }
+
+ int geometriesgeometry = c.children[lgeometries].FindChild( "geometry" );
+ if( geometriesgeometry == -1 )
+ {
+ fprintf( stderr, "Could not find any geometry in the library_geometries section.\n" );
+ return -3;
+ }
+
+ int geomesh = c.children[lgeometries].children[geometriesgeometry].FindChild( "mesh" );
+ if( geomesh == -1 )
+ {
+ fprintf( stderr, "Could not find any mesh in the geometry section in the library_geometries section.\n" );
+ return -3;
+ }
+
+ XMLCog & geometry = c.children[lgeometries].children[geometriesgeometry].children[geomesh];
+
+ map< string, vector< float > > sourcevalues;
+ map< string, map< string, string > > synonyms;
+
+ for( unsigned i = 0; i < geometry.children.size(); i++ )
+ {
+ XMLCog & geoitem = geometry.children[i];
+ if( geoitem.data == "source" )
+ {
+ string name = geoitem.leaves["name"];
+ int floatvalspos = geoitem.FindChild( "float_array" );
+ if( floatvalspos == -1 )
+ {
+ fprintf( stderr, "Source: %s does not have a float_array for values. Cannot operate.\n", name.c_str() );
+ return -3;
+ }
+
+ const char * payload = geoitem.children[floatvalspos].payload.c_str();
+ int payloadlen = geoitem.children[floatvalspos].payload.length();
+ vector < float > & out = sourcevalues[name];
+ string thisval = "";
+ for( unsigned i = 0; i < payloadlen; i++ )
+ {
+ if( payload[i] == ' ' )
+ {
+ out.push_back( atof( thisval.c_str() ) );
+ thisval = "";
+ }
+ else
+ thisval += payload[i];
+ }
+ }
+ else if( geoitem.data == "vertices" )
+ {
+ string sSynonym = geoitem.leaves["name"];
+ //Information about how to map things toegether.
+ for( int i = 0; i < geoitem.children.size(); i++ )
+ {
+ XMLCog & idata = geoitem.children[i];
+ if( idata.data == "input" )
+ synonyms[sSynonym][idata.leaves["semantic"]] = idata.leaves["source"].substr(1);
+ }
+ }
+ }
+
+
+// printf( "%d %d\n", lvanimations, ltest );
+// for( int i = 0; i < c.children.size(); i++ )
+// {
+// printf( "%d %s\n", i, c.children[i].data.c_str() );
+// }
+}
\ No newline at end of file
Added: Mercury2/tools/collada2hgmdl/Makefile
===================================================================
--- Mercury2/tools/collada2hgmdl/Makefile (rev 0)
+++ Mercury2/tools/collada2hgmdl/Makefile 2009-08-31 05:10:52 UTC (rev 531)
@@ -0,0 +1,9 @@
+all : ColladaConvert
+
+CFLAGS=-g
+
+ColladaConvert : ColladaConvert.o XMLCog.o
+ g++ -o $@ $^
+
+clean :
+ rm -rf *.o *~ ColladaConvert
\ No newline at end of file
Added: Mercury2/tools/collada2hgmdl/XMLCog.cpp
===================================================================
--- Mercury2/tools/collada2hgmdl/XMLCog.cpp (rev 0)
+++ Mercury2/tools/collada2hgmdl/XMLCog.cpp 2009-08-31 05:10:52 UTC (rev 531)
@@ -0,0 +1,286 @@
+#include "XMLCog.h"
+#include <string.h>
+#include <stdlib.h>
+void XMLCog::Clear()
+{
+ children.clear();
+ leaves.clear();
+}
+
+int XMLCog::FindChild( const string & sName )
+{
+ for ( int i = 0; i < children.size(); i++ )
+ if ( sName == children[i].data )
+ return i;
+ return -1;
+}
+
+//Start at first character
+void ReadLeafVal( const char * start, string & pin, int & chars )
+{
+ pin = "";
+ const char * place = start;
+ while ( place[0] != '=' && place[0] != '\0' && place[0] != ' ' )
+ place++;
+ pin.append( start, place-start );
+ chars = place-start;
+}
+
+//Start after an opening "
+void ReadString( const char * start, string & pin, int & chars )
+{
+ pin = "";
+ const char * place = start;
+ while ( place[0] != '\"' && place[0] != '\0' )
+ {
+ if ( place[0] == '\\' )
+ place++;
+ pin.append( place, 1 );
+ place++;
+ }
+ chars = place-start;
+}
+
+int ReadElem( const char * & loc, map< string, string > & pin, string & name )
+{
+ string sTmp;
+ string sTmp2;
+ int iTmp;
+
+
+ //Remove leading whitespace
+ while ( loc[0] == ' ' || loc[0] == '\n' || loc[0] == '\r' || loc[0] == '\t' )
+ loc++;
+
+ //If we see a <, strip it.
+ if ( loc[0] == '<' )
+ loc++;
+
+ //Get rid of any whitespace, i.e. < asdf>
+ while( loc[0] == ' ' )
+ loc++;
+
+ //If we see a /, we know we're closing.
+ if ( loc[0] == '/' )
+ {
+ if ( loc[0] != '\0' )
+ loc++;
+
+ while ( loc[0] == ' ' || loc[0] == '\n' || loc[0] == '\r' || loc[0] == '\t' )
+ loc++;
+
+ while ( loc[0] != '>' && loc[0] != '\0' )
+ {
+ name += *loc;
+ loc++;
+ }
+
+ if ( loc[0] != '\0' )
+ loc++;
+ return 3;
+ }
+
+ //If we've reached the end escape with error.
+ if( loc[0] == 0 )
+ return 0;
+
+ //Append to the name until we hit a space.
+ while( loc[0] != ' ' && loc[0] != '>' && loc[0] != '/' )
+ {
+ name.append( loc,1 );
+ loc++;
+ }
+
+// if ( loc[0] == '>' )
+// {
+// printf( "*" );
+// loc++;
+// return 1;
+// }
+
+ while ( true )
+ {
+ //If in error, escape with error.
+ if ( loc[0] == '\0' )
+ return 0;
+
+ //Remove any whitespace in this clip.
+ while ( loc[0] == ' ' )
+ loc++;
+
+ //we're in the body of a block, and it terminates with an ending />
+ if ( loc[0] == '/' )
+ {
+ loc++;
+ if ( loc[0] == '\0' )
+ return 0;
+
+ //To get rid of the trailing > after the /
+ loc++;
+ return 2;
+ }
+
+ //Ending normally.
+ if ( loc[0] == '>' )
+ {
+ loc++;
+ return 1;
+ }
+
+ ReadLeafVal( loc, sTmp, iTmp );
+ loc += iTmp;
+ while ( loc[0] == ' ' )
+ loc++;
+
+ if ( loc[0] != '=' )
+ {
+ pin[sTmp] = "";
+ continue;
+ }
+
+ loc++;
+
+ while ( loc[0] == ' ' )
+ loc++;
+
+ //We've read a leaf, i.e. tseq=, we're expecting a " as per required by XML
+ if ( loc[0] != '\"' )
+ {
+ printf("Warning. After leaf value %s, there was no starting \" beginner.\n", sTmp.c_str() );
+ return 0;
+ }
+
+ loc++;
+
+ ReadString( loc, sTmp2, iTmp );
+ loc += iTmp + 1;
+
+ pin[sTmp] = sTmp2;
+ }
+}
+
+int DoXML( const char * ¤t, XMLCog & cog )
+{
+ static int fd = 0;
+ int depth = 0;
+
+ fd++;
+
+ int ret = ReadElem( current, cog.leaves, cog.data );
+ //0: FAIL
+ //1: OPEN
+ //2: OPEN-AND-CLOSED
+ //3: CLOSE
+
+ while ( current[0] == ' ' || current[0] == '\n' || current[0] == '\r' || current[0] == '\t' )
+ {
+ current++;
+ }
+
+
+ //There is a payload, rip it out.
+ if( ret == 1 && current[0] != '<' )
+ {
+ while( *current != '<' && *current != 0 )
+ cog.payload += *current++;
+ if( *current == 0 )
+ {
+ fd--;
+ return 0; //Error!
+ }
+ else
+ {
+ while( *current != '>' && *current != 0 )
+ current++;
+
+ if( *current == 0 )
+ {
+ fd--;
+ return 0;
+ }
+
+ current++;
+
+ while ( current[0] == ' ' || current[0] == '\n' || current[0] == '\r' || current[0] == '\t' )
+ {
+ current++;
+ }
+
+ if( *current == 0 )
+ {
+ fd--;
+ return 0;
+ }
+
+ fd--;
+ return 2;
+ }
+ }
+
+ switch( ret )
+ {
+ case 0: //error
+ fd--;
+ return 0;
+ case 1: //open
+ {
+START_LOOP:
+ cog.children.resize( cog.children.size() + 1 );
+ int rlocal = DoXML(current, cog.children[cog.children.size()-1] );
+
+ if( rlocal == 0 || rlocal == 3 )
+ {
+ cog.children.resize( cog.children.size() - 1 );
+ }
+
+ switch( rlocal )
+ {
+ case 0:
+ fd--;
+ return 0;
+ case 1:
+ fd--;
+ return 0;
+ case 2:
+ goto START_LOOP;
+ case 3:
+ fd--;
+ return 2;
+ default:
+ fd--;
+ return 0;
+ };
+ }
+ case 2: //open-and-close
+ fd--;
+ return 2;
+
+ case 3: //close (strictly)
+ fd--;
+ return 3;
+
+ default:
+ fd--;
+ return 0;
+ }
+}
+
+bool LoadXML( const char * file, XMLCog & cog )
+{
+ FILE * f = fopen( file, "rb" );
+ if ( f == NULL )
+ return false;
+ fseek( f, 0, SEEK_END );
+ int len = ftell( f );
+ fseek( f, 0, SEEK_SET );
+ char * buff = (char*)malloc(len+1);
+ fread( buff, 1, len, f );
+ buff[len] = '\0';
+ fclose( f );
+
+ char * backup = buff;
+ int dxresult = DoXML( (const char*&)buff, cog );
+ free( backup );
+// return dxresult != 0;
+ return 1;
+}
Added: Mercury2/tools/collada2hgmdl/XMLCog.h
===================================================================
--- Mercury2/tools/collada2hgmdl/XMLCog.h (rev 0)
+++ Mercury2/tools/collada2hgmdl/XMLCog.h 2009-08-31 05:10:52 UTC (rev 531)
@@ -0,0 +1,23 @@
+#ifndef _XML_COG_H
+#define _XML_COG_H
+
+#pragma warning (disable : 4786) // turn off broken debugger warning
+#include <vector>
+#include <string>
+#include <map>
+
+using namespace std;
+
+struct XMLCog
+{
+ void Clear();
+ vector< XMLCog > children;
+ int FindChild( const string & sName );
+ map< string, string > leaves;
+ string data;
+ string payload;
+};
+
+bool LoadXML( const char * file, XMLCog & cog );
+
+#endif
\ No newline at end of file
Added: Mercury2/tools/collada2hgmdl/guntheronly.dae
===================================================================
--- Mercury2/tools/collada2hgmdl/guntheronly.dae (rev 0)
+++ Mercury2/tools/collada2hgmdl/guntheronly.dae 2009-08-31 05:10:52 UTC (rev 531)
@@ -0,0 +1,2019 @@
+<?xml version="1.0" encoding="utf-8"?>
+<COLLADA xmlns="http://www.collada.org/2005/11/COLLADASchema" version="1.4.1">
+ <asset>
+ <contributor>
+ <author>Charles</author>
+ <authoring_tool>COLLADA Maya2009</authoring_tool>
+ <comments>ColladaMaya export options: bakeTransforms=1;exportPolygonMeshes=1;bakeLighting=0;isSampling=0;
+curveConstrainSampling=0;removeStaticCurves=1;exportCameraAsLookat=0;
+exportLights=1;exportCameras=1;exportJointsAndSkin=1;
+exportAnimations=1;exportTriangles=1;exportInvisibleNodes=0;
+exportNormals=1;exportTexCoords=1;
+exportVertexColors=1;exportVertexColorsAnimation=0;exportTangents=0;
+exportTexTangents=0;
+exportConstraints=1;exportPhysics=1;
+exportXRefs=1;dereferenceXRefs=1;
+cameraXFov=0;cameraYFov=1</comments>
+ <source_data>file:///C:/gunther/artassets/gunther/gunther_merged.mb</source_data>
+ </contributor>
+ <created>2009-08-24T20:04:37</created>
+ <modified>2009-08-24T20:04:37</modified>
+ <unit name="centimeter" meter="0.01"/>
+ <up_axis>Y_UP</up_axis>
+ </asset>
+ <library_materials>
+ <material id="lambert15" name="lambert15">
+ <instance_effect url="#lambert15-fx"/>
+ </material>
+ <material id="lambert16" name="lambert16">
+ <instance_effect url="#lambert16-fx"/>
+ </material>
+ <material id="lambert1" name="lambert1">
+ <instance_effect url="#lambert1-fx"/>
+ </material>
+ </library_materials>
+ <library_effects>
+ <effect id="lambert1-fx">
+ <profile_COMMON>
+ <technique sid="common">
+ <lambert>
+ <emission>
+ <color>0 0 0 1</color>
+ </emission>
+ <ambient>
+ <color>0 0 0 1</color>
+ </ambient>
+ <diffuse>
+ <color>0.4 0.4 0.4 1</color>
+ </diffuse>
+ <transparent opaque="RGB_ZERO">
+ <color>0 0 0 1</color>
+ </transparent>
+ <transparency>
+ <float>1</float>
+ </transparency>
+ </lambert>
+ </technique>
+ </profile_COMMON>
+ </effect>
+ <effect id="lambert15-fx">
+ <profile_COMMON>
+ <newparam sid="file1-surface">
+ <surface type="2D">
+ <init_from>file1</init_from>
+ <format>A8R8G8B8</format>
+ </surface>
+ </newparam>
+ <newparam sid="file1-sampler">
+ <sampler2D>
+ <source>file1-surface</source>
+ </sampler2D>
+ </newparam>
+ <technique sid="common">
+ <lambert>
+ <emission>
+ <color>0 0 0 1</color>
+ </emission>
+ <ambient>
+ <color>0 0 0 1</color>
+ </ambient>
+ <diffuse>
+ <texture texture="file1-sampler" texcoord="CHANNEL2">
+ <extra>
+ <technique profile="MAYA">
+ <blend_mode>NONE</blend_mode>
+ <coverageU>1</coverageU>
+ <coverageV>1</coverageV>
+ <fast>0</fast>
+ <mirrorU>0</mirrorU>
+ <mirrorV>0</mirrorV>
+ <noiseU>0</noiseU>
+ <noiseV>0</noiseV>
+ <offsetU>0</offsetU>
+ <offsetV>0</offsetV>
+ <repeatU>1</repeatU>
+ <repeatV>1</repeatV>
+ <rotateFrame>0</rotateFrame>
+ <rotateUV>0</rotateUV>
+ <stagger>0</stagger>
+ <translateFrameU>0</translateFrameU>
+ <translateFrameV>0</translateFrameV>
+ <wrapU>1</wrapU>
+ <wrapV>1</wrapV>
+ </technique>
+ </extra>
+ </texture>
+ </diffuse>
+ <transparent opaque="RGB_ZERO">
+ <color>0 0 0 1</color>
+ </transparent>
+ <transparency>
+ <float>1</float>
+ </transparency>
+ </lambert>
+ </technique>
+ </profile_COMMON>
+ </effect>
+ <effect id="lambert16-fx">
+ <profile_COMMON>
+ <technique sid="common">
+ <lambert>
+ <emission>
+ <color>0 0 0 1</color>
+ </emission>
+ <ambient>
+ <color>0 0 0 1</color>
+ </ambient>
+ <diffuse>
+ <color>0.4 0.4 0.4 1</color>
+ </diffuse>
+ <transparent opaque="RGB_ZERO">
+ <color>0 0 0 1</color>
+ </transparent>
+ <transparency>
+ <float>1</float>
+ </transparency>
+ </lambert>
+ </technique>
+ </profile_COMMON>
+ </effect>
+ </library_effects>
+ <library_images>
+ <image id="file1" name="file1">
+ <init_from>file:///C:/Documents%20and%20Settings/Tommy/Desktop/3D/Gunther/Gunther%20color%20map.png</init_from>
+ <extra>
+ <technique profile="MAYA">
+ <dgnode_type>kFile</dgnode_type>
+ <image_sequence>0</image_sequence>
+ </technique>
+ </extra>
+ </image>
+ </library_images>
+ <library_controllers>
+ <controller id="polySurfaceShape2-skin" name="skinCluster1">
+ <skin source="#polySurface17Shape">
+ <bind_shape_matrix>1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1</bind_shape_matrix>
+ <source id="polySurfaceShape2-skin-joints" name="polySurfaceShape2-skin-joints">
+ <Name_array id="polySurfaceShape2-skin-joints-array" count="23">hip belly mid_back upper_bitties clavicle neck head left_shoulder left_elbow left_wrist left_hand right_shoulder right_elbow right_wrist right_hand left_leg left_knee left_foot left_toe right_leg right_knee right_foot right_toe</Name_array>
+ <technique_common>
+ <accessor source="#polySurfaceShape2-skin-joints-array" count="23" stride="1">
+ <param name="JOINT" type="name"/>
+ </accessor>
+ </technique_common>
+ </source>
+ <source id="polySurfaceShape2-skin-bind_poses" name="polySurfaceShape2-skin-bind_poses">
+ <float_array id="polySurfaceShape2-skin-bind_poses-array" count="368">0.0238028 0.999717 0 1.6037 -0.999717 0.0238028 0 0.0153545 0 0 1 2.53438 0 0 0 1 -0.0299286 0.999552 0 -1.29677 0.999552 0.0299286 0 -0.0851297 0 0 -1 -2.12181 0 0 0 1 0.0344623 0.999406 0 -4.06869 -0.999406 0.0344623 0 -0.177089 0 0 1 2.88802 0 0 0 1 0 1 0 -6.69944 -1 0 0 0.0538213 0 0 1 3.7721 0 0 0 1 -0.0454077 0.998969 0 -9.1433 0.998969 0.0454077 0 -0.469481 0 0 -1 -3.71316 0 0 0 1 0 1 0 -10.4409 1 0 0 0.0367673 0 0 -1 -1.59136 0 0 0 1 0.024383 0.999703 0 -12.4423 -0.999703 0.024383 0 -0.340249 0 0 1 0.353635 0 0 0 1 0.935948 -0.352139 0 -1.77304 0.352139 0.935948 0 -9.20792 0 0 1 3.66216 0 0 0 1 0.961971 -0.273152 0 -7.52215 0.273152 0.961971 0 -8.61268 0 0 1 5.99836 0 0 0 1 0.985212 -0.171341 0 -12.2653 0.171341 0.985212 0 -7.37378 0 0 1 6.38034 0 0 0 1 1 0 0 -15.343 0 1 0 -4.60635 0 0 1 6.86649 0 0 0 1 -0.947073 -0.321018 0 -2.09401 -0.321018 0.947073 0 -9.0523 0 0 -1 -3.06143 0 0 0 1 -0.962788 -0.270256 0 -7.35721 -0.270256 0.962788 0 -8.74173 0 0 -1 -5.89219 0 0 0 1 -0.962964 -0.26963 0 -11.5399 -0.26963 0.962964 0 -8.69587 0 0 -1 -6.52678 0 0 0 1 1 0 0 15.2787 0 1 0 -4.75227 0 0 1 6.99214 0 0 0 1 0.0766965 -0.997054 0 -3.01664 0.997054 0.0766965 0 -2.54762 0 0 1 2.70325 0 0 0 1 0.0905357 -0.995893 0 -7.77579 0.995893 0.0905357 0 -2.43987 0 0 1 2.55713 0 0 0 1 1 0 0 -3.58678 0 1 0 12.5053 0 0 1 3.21467 0 0 0 1 1 0 0 -4.0045 0 1 0 12.5426 0 0 1 1.13462 0 0 0 1 0.0766965 -0.997054 0 -2.58587 0.997054 0.0766965 0 3.05233 0 0 1 2.70325 0 0 0 1 0.0905357 -0.995893 0 -7.21268 0.995893 0.0905357 0 3.75432 0 0 1 2.55713 0 0 0 1 1 0 0 3.49869 0 1 0 12.5053 0 0 1 3.21467 0 0 0 1 1 0 0 4.00537 0 1 0 12.5426 0 0 1 1.13462 0 0 0 1</float_array>
+ <technique_common>
+ <accessor source="#polySurfaceShape2-skin-bind_poses-array" count="23" stride="16">
+ <param name="TRANSFORM" type="float4x4"/>
+ </accessor>
+ </technique_common>
+ </source>
+ <source id="polySurfaceShape2-skin-weights" name="polySurfaceShape2-skin-weights">
+ <float_array id="polySurfaceShape2-skin-weights-array" count="4710">1 0.902806 0.00645181 0.00147309 0.0462198 0.0430482 0.871345 0.00795576 0.0016807 0.079509 0.0395091 0.68661 0.000574613 0.310811 0.00192083 0.906472 0.00770517 0.00114543 0.0442596 0.0404182 0.000117487 0.00140223 0.998452 0.000476356 0.999471 0.999847 0.999847 0.000170734 0.99981 0.000185892 0.00209004 0.997667 0.000155026 0.00177529 0.998024 0.000488464 0.999458 0.000350467 0.000499193 0.999054 0.000142266 0.00080945 0.00115078 0.997836 0.000163764 0.000782879 0.000963016 0.998025 0.000219509 0.00128566 0.00157453 0.996832 0.000145394 0.00108868 0.00124599 0.997473 0.0127914 0.149411 0.167865 0.667272 0.00266115 0.00488291 0.0651207 0.0692746 0.859669 0.00105307 0.000360899 0.000505201 0.999058 0.00202983 0.012643 0.0159175 0.968399 0.00101082 0.000246708 0.000513978 0.999189 0.00214222 0.0131857 0.0148121 0.968735 0.00112525 0.999838 0.000435146 0.0043938 0.995032 0.000176398 0.000749801 0.00760198 0.991393 0.000250449 0.99971 0.000420453 0.999487 0.000130075 0.000422587 0.00280478 0.996603 0.000629692 0.99926 0.000105943 0.000422556 0.00317237 0.996252 0.000932806 0.00320832 0.0173273 0.978134 0.00039706 0.000290712 0.00170122 0.997884 0.000329435 0.000885001 0.00334486 0.995343 0.000190879 0.000504122 0.00192447 0.997333 0.000245458 0.000689264 0.00258298 0.996394 0.999836 0.00469693 0.0148241 0.0198855 0.960162 0.000431778 0.00823063 0.0255772 0.0334557 0.932188 0.000548356 0.000717845 0.00264129 0.00387335 0.992621 0.000146393 0.00328559 0.0111177 0.0156064 0.969493 0.000497464 0.000348405 0.00173817 0.00291444 0.994918 0.000252139 0.000581478 0.999125 0.000207916 0.999694 0.00153838 0.0136194 0.0185324 0.96577 0.000540142 0.00217895 0.0237495 0.0350174 0.938545 0.000509069 0.000196075 0.00118093 0.00215588 0.996405 0.000342665 0.000772007 0.998826 0.000246041 0.000368501 0.999339 0.000119952 0.999767 0.00253241 0.0230596 0.0235847 0.94997 0.000853664 0.00036071 0.999518 0.00342279 0.0503669 0.0581567 0.887281 0.000772152 0.00827069 0.0711384 0.0810287 0.836679 0.00288292 0.000364882 0.000548351 0.999011 0.0001213 0.999786 0.00042264 0.00248696 0.00272716 0.994166 0.000197405 0.000156323 0.000200064 0.999611 0.000455732 0.00290718 0.00303689 0.993355 0.000245638 0.000109834 0.00069387 0.00073338 0.998402 0.00950349 0.175503 0.181755 0.631365 0.00187387 0.000124756 0.00018536 0.999669 0.000138304 0.000205697 0.99962 0.000549125 0.000632432 0.9987 0.0120762 0.131345 0.147871 0.706373 0.00233449 0.000173313 0.00164126 0.0351737 0.481506 0.481506 0.00025327 0.00233606 0.0438177 0.476797 0.476797 0.000293898 0.00268758 0.0482236 0.474397 0.474397 0.000374695 0.00347111 0.0626342 0.46676 0.46676 0.000603207 0.015699 0.491817 0.491817 0.000213388 0.00168949 0.0270524 0.485522 0.485522 0.000116446 0.000990171 0.0183295 0.490282 0.490282 0.000180625 0.00563695 0.497082 0.497082 0.00045329 0.0157197 0.491892 0.491892 0.000812433 0.0188193 0.49014 0.49014 0.000219744 0.00177436 0.0300159 0.483995 0.483995 0.000741214 0.0203618 0.48941 0.48941 0.000186609 0.00165102 0.0305582 0.483802 0.483802 0.000234321 0.00214642 0.0404179 0.478601 0.478601 0.000221289 0.00196057 0.0362411 0.480789 0.480789 0.000372255 0.0029471 0.0440443 0.476318 0.476318 0.000189624 0.0016659 0.0319324 0.483106 0.483106 0.000272762 0.00239873 0.044378 0.476475 0.476475 0.000512908 0.00423613 0.0630171 0.466117 0.466117 0.00050966 0.00422564 0.0611422 0.467061 0.467061 0.000325657 0.00285332 0.0470716 0.474875 0.474875 0.000268031 0.00220197 0.0342168 0.481657 0.481657 0.000373363 0.00291169 0.0412029 0.477756 0.477756 0.000299725 0.00271167 0.0510892 0.47295 0.47295 0.000400641 0.00358673 0.0624091 0.466802 0.466802 0.000674647 0.0155306 0.491861 0.491861 0.00271701 0.498606 0.498606 0.000104274 0.00111603 0.0271682 0.485806 0.485806 0.000146941 0.00161608 0.0376223 0.480307 0.480307 0.00019203 0.00201163 0.0411944 0.478301 0.478301 0.000188516 0.00206979 0.0479798 0.474881 0.474881 0.000154784 0.00478649 0.497522 0.497522 0.000799283 0.0150194 0.492046 0.492046 0.000752155 0.0150085 0.49208 0.49208 0.000121069 0.00426744 0.4978 0.4978 0.000165684 0.00165427 0.0321631 0.483008 0.483008 0.000132084 0.00143425 0.0332583 0.482588 0.482588 0.000140005 0.00138088 0.0276534 0.485413 0.485413 0.0002222 0.00211625 0.0374676 0.480097 0.480097 0.000186678 0.00188001 0.0362839 0.480825 0.480825 0.000149675 0.00144991 0.0271161 0.485642 0.485642 0.000207724 0.00182286 0.0291922 0.484389 0.484389 0.000617983 0.0125067 0.493404 0.493404 0.00144976 0.499253 0.499253 0.000191769 0.00166273 0.027515 0.485315 0.485315 0.000176592 0.00168471 0.0324425 0.482848 0.482848 0.000158094 0.00157482 0.033103 0.482582 0.482582 0.000167512 0.00170876 0.0370706 0.480527 0.480527 0.000165585 0.00151837 0.0278857 0.485215 0.485215 0.000144544 0.00140205 0.0285319 0.484961 0.484961 0.000421405 0.0101233 0.494706 0.494706 0.000446151 0.0114493 0.494031 0.494031 0.000158969 0.499919 0.499919 0.00122422 0.499375 0.499375 0.122198 0.875627 0.00210506 0.000280765 0.172553 0.818569 0.0085866 0.000450078 0.0985886 0.828937 0.0720019 0.000202074 0.073223 0.889154 0.0374108 0.000468539 0.0148368 0.492324 0.492324 0.00023466 0.00794522 0.495899 0.495899 0.000316099 0.0384469 0.739718 0.221499 0.000761694 0.0750586 0.637739 0.286388 0.00123884 0.292995 0.666083 0.0396337 0.00146847 0.318427 0.620391 0.0596511 0.00170021 0.144734 0.612558 0.240914 0.00165721 0.1603 0.63057 0.207385 0.000839539 0.00760486 0.120989 0.435283 0.435283 0.000680715 0.00601914 0.0975549 0.447873 0.447873 0.000597996 0.00545693 0.0967804 0.448582 0.448582 0.989792 0.0102008 0.00368383 0.585264 0.411 0.001019 0.0403983 0.484564 0.473945 0.00112464 0.0394811 0.479883 0.479426 0.00095756 0.0293367 0.484814 0.484814 0.000790295 0.0277883 0.48568 0.48568 0.00019409 0.00710114 0.496344 0.496344 0.000867339 0.0298024 0.484623 0.484623 0.000334067 0.0146105 0.492513 0.492513 0.000825113 0.254402 0.68892 0.0558089 0.00032644 0.182538 0.792842 0.0242787 0.000325118 0.3757 0.615278 0.00868415 0.000812341 0.419367 0.559831 0.0199533 0.000965869 0.280521 0.66968 0.0487919 0.0012272 0.459829 0.520529 0.0183726 0.000745972 0.439737 0.545733 0.013757 0.000407901 0.153485 0.833491 0.0126001 0.000284234 0.363961 0.631814 0.00393087 0.00087221 0.479183 0.509153 0.0107635 0.0014556 0.476031 0.501471 0.0209821 0.00133126 0.367738 0.582714 0.0481488 0.00114134 0.470055 0.509965 0.018789 0.000595196 0.496843 0.496852 0.00568879 0.000296323 0.115021 0.841218 0.0434489 0.000776419 0.15466 0.735699 0.108822 0.00194201 0.423659 0.529608 0.0446998 0.0015445 0.674408 0.324029 0.000365348 0.0241352 0.532559 0.442913 0.00104089 0.086827 0.587264 0.324792 0.0011805 0.0984343 0.585676 0.314624 0.000781043 0.0433633 0.505488 0.450304 0.000146195 0.0026636 0.328456 0.556237 0.112497 0.00147169 0.166186 0.632152 0.200101 0.000326745 0.00401735 0.138305 0.457961 0.39939 0.000578596 0.00720361 0.206755 0.437214 0.348249 0.000112592 0.00137699 0.0691846 0.495724 0.433601 0.000154908 0.00205846 0.128117 0.527675 0.341995 0.000347725 0.00389575 0.118178 0.449397 0.428181 0.000260545 0.00284928 0.0856723 0.457109 0.454109 0.000534223 0.0051464 0.102898 0.44571 0.44571 0.000683539 0.00666233 0.124966 0.433844 0.433844 0.00055244 0.00653116 0.185984 0.437029 0.369903 0.000208944 0.00325532 0.266112 0.537925 0.192499 0.000349809 0.00338565 0.0741144 0.461075 0.461075 0.000461304 0.00428049 0.082802 0.456228 0.456228 0.00052843 0.00484669 0.084427 0.455099 0.455099 0.000361724 0.00355249 0.0747312 0.460677 0.460677 0.000221361 0.00255682 0.0856469 0.461753 0.449822 0.00085643 0.0539447 0.531984 0.41315 0.000744457 0.00662518 0.102914 0.444858 0.444858 0.000505114 0.00506099 0.101796 0.446319 0.446319 0.000676479 0.00676181 0.127265 0.432648 0.432648 0.000783719 0.00725317 0.117854 0.437055 0.437055 0.000115902 0.00210419 0.349375 0.564975 0.0834301 0.0013374 0.526937 0.465407 0.0062757 0.000417953 0.778128 0.21963 0.00181148 0.000386713 0.701163 0.296928 0.00151218 0.412952 0.585895 0.00108546 0.000157163 0.758194 0.24085 0.000793954 0.000437282 0.809111 0.18843 0.00201037 0.00105605 0.551016 0.442162 0.00573699 0.00049263 0.537558 0.458885 0.00304962 0.000953854 0.53093 0.463101 0.00498572 0.00021176 0.00602237 0.496872 0.496872 0.000635493 0.0195629 0.489874 0.489874 0.000581026 0.0219967 0.488688 0.488688 0.000388207 0.0170577 0.491428 0.491097 0.000421052 0.0219775 0.506854 0.470718 0.0011747 0.103544 0.62872 0.266492 0.00138521 0.165578 0.663534 0.169432 0.162241 0.835294 0.00236465 0.000118971 0.320718 0.677578 0.00158057 0.00011688 0.00126539 0.0277178 0.48545 0.48545 0.00102713 0.0238849 0.487497 0.487497 0.000165893 0.00191204 0.0460601 0.475931 0.475931 0.000179692 0.00204365 0.0466296 0.475574 0.475574 0.000222514 0.00250865 0.0538584 0.471705 0.471705 0.000255011 0.00283181 0.0583444 0.469284 0.469284 0.000138428 0.00131822 0.0236842 0.48743 0.48743 0.000148212 0.00147076 0.0272413 0.48557 0.48557 0.000134564 0.00147853 0.0335034 0.482442 0.482442 0.000153586 0.0016614 0.0351952 0.481495 0.481495 0.000164625 0.00181231 0.0394939 0.479265 0.479265 0.000143163 0.00160059 0.0372499 0.480503 0.480503 0.000274164 0.00277046 0.0482363 0.47436 0.47436 0.00022108 0.00234364 0.0452462 0.476095 0.476095 0.000201947 0.00204171 0.0370234 0.480366 0.480366 0.000211392 0.0020441 0.0349575 0.481394 0.481394 0.000134582 0.00136024 0.031571 0.483467 0.483467 0.0002913 0.00289944 0.0571695 0.46982 0.46982 0.000120549 0.00101739 0.0178622 0.4905 0.4905 0.000108941 0.0010641 0.0239401 0.487443 0.487443 0.000363483 0.00321371 0.0507917 0.472816 0.472816 0.000282218 0.00228276 0.0334204 0.482007 0.482007 0.115937 0.00186667 0.00100253 0.876514 0.00467873 0.181069 0.00464197 0.00241361 0.803276 0.00859855 0.0216403 0.000703043 0.971543 0.00529044 0.00082374 0.263835 0.00674741 0.655975 0.0656311 0.00781148 0.23985 0.00176105 0.751011 0.00670894 0.000668996 0.246878 0.00506983 0.00240494 0.73046 0.0151866 0.187768 0.00633933 0.706717 0.0908802 0.00829552 0.201816 0.00790267 0.672791 0.109537 0.00795349 0.0355979 0.487547 0.017912 0.00518587 0.453756 0.0795426 0.00319727 0.893057 0.0212341 0.00296922 0.0445864 0.505858 0.0166203 0.00352085 0.429413 0.00281112 0.968753 0.0011346 0.000164368 0.0271365 0.23311 0.000105041 0.764583 0.00207612 0.000125893 0.311229 0.00191239 0.66424 0.0204303 0.00218815 0.0273085 0.920631 0.0455407 0.0048946 0.00162521 0.0131446 0.95929 0.0247867 0.0020916 0.000686649 0.00437839 0.970472 0.0234295 0.00130863 0.000411242 0.000876679 0.985713 0.012901 0.000390412 0.000118823 0.00293601 0.988861 0.00725738 0.000710986 0.000234847 0.00721044 0.767334 0.216564 0.0068966 0.00199528 0.00123848 0.983653 0.0139352 0.000903224 0.000269751 0.00719221 0.690563 0.294168 0.00653388 0.00154248 0.00578687 0.734 0.254666 0.00446222 0.00108482 0.0037649 0.630989 0.359616 0.00456185 0.00106798 0.999858 0.000141557 0.00436652 0.54583 0.441057 0.00711507 0.00163101 0.00398685 0.445801 0.539325 0.00892199 0.00196581 0.000238167 0.0517388 0.944921 0.0027145 0.000387378 0.000112239 0.0215349 0.976678 0.00146608 0.000209133 0.00309495 0.996649 0.000218098 0.0128654 0.985793 0.00114103 0.000143406 0.000532809 0.999414 0.00113882 0.998614 0.000214159 0.000413903 0.619814 0.376947 0.00281437 0.968921 0.00110538 0.000161353 0.0283458 0.00146576 0.203809 0.00786349 0.656584 0.124525 0.00721942 0.000310732 0.987438 0.0119197 0.000256824 0.989 0.0109574 0.000618801 0.99825 0.000247066 0.000852931 0.21016 0.671771 0.0609816 0.045647 0.01144 0.120633 0.716304 0.109732 0.0438559 0.00947532 0.0606927 0.694906 0.0878981 0.00629632 0.150207 0.0915907 0.217411 0.623728 0.0496584 0.0176112 0.140158 0.704245 0.121108 0.0192791 0.0152093 0.0330341 0.334463 0.589782 0.0316005 0.0111205 0.674593 0.31849 0.00103674 0.00033069 0.00554945 0.0242 0.0358514 0.682885 0.251947 0.00511671 0.0248997 0.425931 0.532058 0.0120709 0.00504055 0.00227121 0.470827 0.00375905 0.00186453 0.521278 0.0140924 0.63167 0.0158218 0.00719743 0.331218 0.549351 0.00242214 0.000692658 0.445643 0.00189089 0.00189919 0.549761 0.0035444 0.0016752 0.44312 0.672602 0.311562 0.00202885 0.000482249 0.0133213 0.0235081 0.313048 0.631071 0.0200652 0.0123075 0.00270857 0.420644 0.573424 0.00196078 0.0012619 0.000335671 0.681876 0.31755 0.000187074 0.123587 0.715781 0.128342 0.0180641 0.014225 0.112903 0.712312 0.121565 0.043917 0.00930273 0.0575821 0.712438 0.093814 0.00645505 0.129711 0.00225469 0.753151 0.00486331 0.00162647 0.238105 0.00227079 0.72884 0.00520361 0.00282932 0.260857 0.00269114 0.690782 0.00578641 0.0032231 0.297517 0.00902034 0.77187 0.013815 0.00671071 0.198584 0.0212578 0.56332 0.403888 0.00768112 0.0038529 0.944562 0.0271268 0.0175771 0.00539851 0.00533558 0.712743 0.151915 0.0739578 0.0433669 0.0180174 0.0368739 0.415656 0.528229 0.010545 0.00869549 0.0122654 0.77767 0.0205472 0.00264195 0.186876 0.0107113 0.840875 0.0217833 0.00293614 0.123694 0.0251723 0.475903 0.018339 0.00683564 0.47375 0.626528 0.337236 0.00570649 0.0021572 0.0283715 0.485882 0.4643 0.0110256 0.00483965 0.0339537 0.23908 0.686027 0.0176596 0.00786702 0.0493665 0.989896 0.00391481 0.00287103 0.00167805 0.00164011 0.978287 0.0082046 0.00607087 0.00527185 0.00216588 0.999521 0.000191113 0.000101025 0.998891 0.000545167 0.000291091 0.000194014 0.960626 0.018418 0.012426 0.00428769 0.00424201 0.999666 0.000160661 0.993551 0.00229539 0.00114182 0.00265622 0.000355451 0.989106 0.00331891 0.00144343 0.00556121 0.000570177 0.98454 0.00425445 0.00266334 0.00774457 0.000797221 0.977681 0.00435216 0.00209345 0.015171 0.000702111 0.998981 0.000121029 0.000828138 0.998969 0.000326685 0.000124779 0.000456438 0.000122988 0.997592 0.000879108 0.000328453 0.000611904 0.000589005 0.998017 0.000969664 0.000410807 0.0003034 0.000299087 0.996999 0.00136836 0.000493128 0.000881139 0.000258724 0.992981 0.00169809 0.000659731 0.00432912 0.000331695 0.998667 0.000111064 0.00115865 0.998183 0.000315346 0.000118863 0.00131368 0.87135 0.00795581 0.00168072 0.0795044 0.0395094 0.832827 0.00854778 0.131025 0.0250885 0.00251192 0.474879 0.0184922 0.00528377 0.481096 0.0202485 0.102553 0.00085171 0.000153692 0.894379 0.00206276 0.999579 0.000330937 0.995128 0.000938198 0.000238461 0.00327285 0.00042261 0.993895 0.000559835 0.00018267 0.00519452 0.000167727 0.999659 0.000297848 0.996057 0.000219501 0.00359273 0.968407 0.00119441 0.00041491 0.0296127 0.000371203 0.015136 0.857888 0.0712925 0.00727901 0.0484049 0.0182656 0.865096 0.0909403 0.00535776 0.0203402 0.0469631 0.447703 0.426765 0.0372937 0.0412745 0.34759 0.355514 0.155616 0.0536775 0.0875998 0.0185195 0.863422 0.101642 0.00525766 0.0111593 0.0191861 0.858529 0.111489 0.00498757 0.00580887 0.047693 0.449819 0.449811 0.0339281 0.0187491 0.0481364 0.44444 0.444411 0.0353025 0.02771 0.02391 0.8623 0.0468208 0.0468203 0.0201473 0.862075 0.0538121 0.053811 0.0196151 0.010686 0.643907 0.154218 0.154218 0.0369867 0.0106712 0.551772 0.194509 0.194509 0.0499022 0.0093075 0.864984 0.0483975 0.0483958 0.0169078 0.0213138 0.427608 0.249095 0.249091 0.0524059 0.0217982 0.0257382 0.632237 0.13462 0.0314928 0.175911 0.0304688 0.621596 0.15099 0.0271659 0.16978 0.268929 0.337662 0.217495 0.0732699 0.10264 0.192064 0.351353 0.286072 0.0825478 0.0879593 0.0248231 0.781144 0.0855488 0.0231386 0.0853457 0.102346 0.398755 0.393465 0.063092 0.0423388 0.0623822 0.00610753 0.917345 0.0130885 0.0010764 0.846232 0.0168338 0.00348807 0.0947759 0.038669 0.68661 0.000574623 0.310811 0.00192082 0.0744428 0.000888581 0.000128307 0.92264 0.00190016 0.000596189 0.998551 0.000802041 0.999728 0.000177754 0.00795512 0.496593 0.484449 0.00550118 0.00550118 0.00260894 0.518937 0.475655 0.00143811 0.00136145 0.0054302 0.994057 0.000487907 0.00155845 0.997314 0.00107898 0.00312389 0.569099 0.425542 0.00124718 0.000988509 0.00482445 0.569324 0.422695 0.00189881 0.00125759 0.000170767 0.999748 0.0101268 0.540137 0.442998 0.00425639 0.00248172 0.00969517 0.559711 0.425061 0.00331493 0.00221799 0.000151922 0.999444 0.000372931 0.0104495 0.547242 0.435982 0.00346728 0.00285892 0.00565106 0.503371 0.48461 0.00323407 0.00313326 0.00095266 0.488601 0.508484 0.00103465 0.000927292 0.00164827 0.494766 0.499612 0.00201144 0.001962 0.000851999 0.479796 0.518044 0.00079746 0.000510446 0.00109474 0.480769 0.516201 0.00110067 0.000834205 0.00261706 0.492923 0.500715 0.00227678 0.00146849 0.0016837 0.393039 0.602732 0.00161195 0.000934171 0.00205962 0.496685 0.49703 0.00216916 0.00205619 0.00328204 0.495994 0.496013 0.00263762 0.00207286 0.00106177 0.156413 0.835972 0.00329688 0.00325633 0.000217327 0.039796 0.958915 0.000568611 0.000503052 0.000235682 0.0359178 0.962889 0.000558419 0.000399259 0.000376866 0.0697607 0.928454 0.000913098 0.00049491 0.000740359 0.0756373 0.920976 0.00180547 0.000840573 0.000361929 0.0380293 0.960452 0.000748933 0.000407768 0.00088881 0.101162 0.895153 0.00160076 0.00119582 0.000721923 0.100264 0.895534 0.00177223 0.00170805 0.00104515 0.997951 0.000524259 0.000449206 0.000374477 0.0379602 0.947844 0.00747658 0.00634467 0.0011951 0.090854 0.882605 0.0163291 0.00901651 0.000168436 0.00501403 0.991068 0.00233226 0.0014175 0.000252711 0.00790246 0.985558 0.00478917 0.00149728 0.00197827 0.108976 0.848399 0.0294992 0.0111477 0.000155882 0.00445934 0.992668 0.00205919 0.000657574 0.000911431 0.0218849 0.957713 0.0157182 0.00377246 0.00196489 0.0933396 0.856923 0.0374273 0.0103452 0.0013265 0.0684941 0.90005 0.0225216 0.00760808 0.0223476 0.956589 0.0102319 0.0102051 0.000626376 0.000185171 0.999728 0.00113316 0.0910585 0.883636 0.0158649 0.00830784 0.000923702 0.0896836 0.880067 0.0158342 0.0134917 0.000821077 0.709832 0.260831 0.0284623 0.000360669 0.752171 0.238765 0.00867582 0.000115002 0.843598 0.155053 0.00122383 0.00017583 0.836839 0.161596 0.00137002 0.000305813 0.82784 0.168574 0.00323856 0.000433624 0.864664 0.128 0.00684903 0.000607219 0.829464 0.153584 0.0162888 0.566255 0.433141 0.000566626 0.000186649 0.407532 0.583586 0.00867517 0.000370732 0.455413 0.527559 0.0166047 0.000150041 0.498588 0.498597 0.00264084 0.000266775 0.58912 0.406144 0.00441656 0.599838 0.399068 0.000992396 0.00026951 0.498399 0.498397 0.00287743 0.000506292 0.49614 0.495165 0.00804881 0.000139797 0.000475565 0.170802 0.76608 0.0625857 0.000548811 0.220137 0.709607 0.06963 0.000358447 0.554199 0.434801 0.0105711 0.000744606 0.40863 0.557646 0.0327599 0.000220256 0.000882668 0.159043 0.706183 0.133622 0.000269301 0.000681094 0.161547 0.746538 0.0910814 0.000152997 0.000464157 0.021218 0.568707 0.40951 0.000100906 0.000577248 0.0258941 0.542024 0.431331 0.000173998 0.00159439 0.499154 0.499154 0.000177701 0.00359935 0.498097 0.498097 0.00102922 0.499464 0.499451 0.000215498 0.00432442 0.497726 0.49771 0.000423215 0.0239884 0.550701 0.424825 0.000452316 0.0208617 0.556482 0.422152 0.000331991 0.320786 0.654223 0.0246293 0.000482764 0.166807 0.769373 0.0632946 0.000673139 0.0293746 0.561088 0.408806 0.000384587 0.0210853 0.530568 0.447817 0.000144199 0.000313711 0.0260608 0.590801 0.382764 0.00248 0.498721 0.498707 0.00220915 0.498847 0.498847 0.000133722 0.498374 0.498382 0.00308208 0.000317813 0.456812 0.525449 0.017361 0.000496793 0.386838 0.579847 0.0326389 0.000179091 0.000424176 0.494424 0.494436 0.010561 0.000155516 0.000432207 0.23371 0.701836 0.0639398 0.000582449 0.169559 0.724181 0.10547 0.000207558 0.000232375 0.00834676 0.977474 0.00697357 0.00697356 0.000443625 0.452218 0.521809 0.0254691 0.000738577 0.266197 0.663345 0.0696193 0.000100519 0.00084125 0.0342046 0.542636 0.42221 0.00010782 0.000233979 0.498114 0.498114 0.00347557 0.000271493 0.999706 0.000131457 0.999797 0.00616914 0.993479 0.000254524 0.00262311 0.997234 0.000102136 0.317383 0.00252619 0.000738585 0.678013 0.00133824 0.124376 0.000985435 0.871993 0.0024858 0.000160449 0.00548575 0.994298 0.000172891 0.000240178 0.999758 0.204043 0.00624379 0.773718 0.0147901 0.00120483 0.175819 0.0125069 0.762525 0.044858 0.00429171 0.00551147 0.00032072 0.991568 0.00241405 0.000185981 0.000659415 0.999227 0.999687 0.000209224 0.998994 0.000781795 0.0401274 0.839265 0.0934181 0.00481743 0.0223722 0.0374106 0.857675 0.0905052 0.00805093 0.00635743 0.0256896 0.858588 0.0724546 0.00455495 0.0387124 0.0136628 0.865048 0.0391272 0.00407068 0.0780916 0.00966878 0.711745 0.0283252 0.00979152 0.24047 0.0065303 0.862772 0.0189656 0.00416178 0.107571 0.00983788 0.86245 0.0167835 0.0065504 0.104378 0.0102807 0.712986 0.0269148 0.0104541 0.239365 0.0263017 0.661259 0.131683 0.0338597 0.146896 0.0371313 0.848945 0.0369208 0.0174871 0.0595155 0.0283306 0.0728654 0.864668 0.0206024 0.0135316 0.0151818 0.108644 0.856772 0.0126966 0.00670416 0.987386 0.00524125 0.00235944 0.00439129 0.000621922 0.851136 0.0288842 0.0103588 0.106012 0.00360876 0.887729 0.00398859 0.0950471 0.0121379 0.00109704 0.920065 0.00490072 0.0535483 0.0191191 0.0023668 0.90362 0.00244179 0.0860636 0.00725329 0.000621566 0.896961 0.00160612 0.0967296 0.00437945 0.000323762 0.997938 0.00077627 0.000227907 0.000534495 0.000523835 0.999864 0.998859 0.000174372 0.000461755 0.000442684 0.999638 0.000128527 0.000122541 0.156879 0.36973 0.343148 0.0699144 0.0603256 0.0132185 0.0207308 0.671645 0.290955 0.00344945 0.0142011 0.019494 0.681822 0.280134 0.00434846 0.00706952 0.0102144 0.681319 0.298835 0.00256157 0.0104507 0.27524 0.676023 0.0357163 0.0025689 0.24315 0.680485 0.0535504 0.0109708 0.0118444 0.25109 0.681499 0.0512002 0.0100102 0.00620077 0.993386 0.000464412 0.00401965 0.00185104 0.000278425 0.999882 0.000115187 0.988517 0.000540384 0.00878504 0.00194312 0.000214808 0.988191 0.000374004 0.0100542 0.00126532 0.000115683 0.96215 0.00142126 0.0300699 0.00576479 0.000594354 0.996072 0.000219313 0.00267496 0.000921479 0.00011235 0.989081 0.00107729 0.000454403 0.00473372 0.00465336 0.0037338 0.320378 0.673122 0.00194534 0.000821046 0.00383247 0.320833 0.672681 0.00207692 0.000576151 0.0940041 0.267452 0.545293 0.0377308 0.0555201 0.0621878 0.333212 0.537161 0.0621875 0.00525214 0.0279438 0.365168 0.574499 0.0117394 0.0206499 0.0412287 0.373599 0.55461 0.0159022 0.0146602 0.0374574 0.366273 0.572968 0.0145086 0.00879247 0.982239 0.000152621 0.0171514 0.000393788 0.842521 0.0205769 0.0043549 0.0673657 0.065182 0.907803 0.00821044 0.00305758 0.0409693 0.0399599 0.0265349 0.183645 0.22795 0.556898 0.00497268 0.0883763 0.266011 0.217963 0.423145 0.00450479 0.119912 0.359667 0.294692 0.221474 0.00425414 0.11577 0.393658 0.353983 0.126514 0.0100746 0.0853291 0.383018 0.402284 0.117866 0.0115016 0.0592857 0.435227 0.431651 0.0651133 0.0087233 0.116909 0.449818 0.361923 0.0586987 0.0126518 0.210375 0.448408 0.2717 0.0551614 0.0143553 0.286419 0.454135 0.205771 0.044302 0.00937276 0.0239131 0.291721 0.29172 0.388423 0.0042225 0.033686 0.451149 0.451148 0.0582489 0.00576746 0.113734 0.473338 0.365735 0.0294873 0.017705 0.183848 0.451296 0.294318 0.0418486 0.0286894 0.277896 0.422139 0.217784 0.0435619 0.0386184 0.352908 0.413972 0.162266 0.0381956 0.0326585 0.412874 0.431466 0.114168 0.0271661 0.0143236 0.296772 0.447949 0.202174 0.0463475 0.00675781 0.431315 0.433506 0.0990762 0.0250912 0.0110091 0.0370067 0.359518 0.359518 0.238531 0.00542674 0.0387695 0.370247 0.370247 0.213993 0.00674421 0.0237351 0.245573 0.245573 0.480789 0.00433071 0.0780673 0.428836 0.428836 0.0551413 0.00911869 0.0747559 0.430041 0.430041 0.0541014 0.0110613 0.0823165 0.433264 0.4312 0.0405802 0.0126388 0.0807733 0.464241 0.418347 0.0263183 0.0103207 0.430306 0.432231 0.101549 0.0262529 0.00966067 0.799847 0.0156767 0.00229791 0.0573744 0.124804 0.894023 0.0067068 0.00142392 0.0360707 0.061776 0.00015465 0.999838 0.00178909 0.998143 0.00012945 0.999865 0.000254065 0.999732 0.00019416 0.999794 0.000643059 0.999319 0.00013237 0.999856 0.000212422 0.999776 0.000216892 0.999772 0.000115577 0.9998 0.000211933 0.99968 0.000133117 0.000275756 0.999577 0.000186761 0.999759 0.000162894 0.999817 0.000102127 0.999883 0.000131191 0.999808 0.000106196 0.999883 0.000273903 0.999702 0.000802722 0.999154 0.000787813 0.999164 0.000233396 0.000319365 0.999421 0.000174661 0.999734 0.000339931 0.999631 0.000123108 0.999868 0.000546643 0.99942 0.000153052 0.00190218 0.997913 0.00022908 0.00112966 0.0133163 0.985267 0.000189374 0.00220827 0.99755 0.999885 0.000152656 0.000736956 0.00090714 0.998153 0.999862 0.00159092 0.0123744 0.0141882 0.971548 0.000298001 0.00720655 0.103146 0.109912 0.778925 0.000810345 0.0186008 0.222497 0.250244 0.505655 0.0030038 0.0027942 0.0189508 0.0218718 0.955712 0.000671621 0.000574232 0.00140511 0.997952 0.000283239 0.00228915 0.00500534 0.992401 0.000828029 0.00618862 0.00791712 0.985018 0.000205384 0.000294459 0.999474 0.00049831 0.00370493 0.00419567 0.991573 0.000153235 0.00108669 0.00134127 0.997407 0.000193207 0.00104928 0.998729 0.000162034 0.00168081 0.998106 0.000173016 0.00182648 0.997951 0.000209447 0.999766 0.000364265 0.999589 0.000225109 0.000743519 0.004844 0.99413 0.000339751 0.00125924 0.0108741 0.987431 0.00104816 0.00399684 0.0327959 0.961916 0.000243202 0.000153551 0.000924318 0.998867 0.000300505 0.999632 0.000240759 0.99972 0.000106282 0.000577617 0.0017737 0.997533 0.00460551 0.0152013 0.0205898 0.959348 0.000255669 0.00011445 0.000163285 0.999668 0.00264594 0.00988302 0.0140382 0.973297 0.000135575 0.001341 0.0055559 0.00827459 0.984758 0.000152374 0.000248274 0.999547 0.000980751 0.005597 0.00963673 0.983732 0.000313002 0.00279571 0.00679462 0.990077 0.00012822 0.00126229 0.00329549 0.995305 0.00156888 0.0210268 0.0320924 0.945238 0.00259073 0.0278526 0.0388414 0.930573 0.000142728 0.000707368 0.00495216 0.00938689 0.984911 0.000236371 0.00212363 0.0050588 0.992565 0.000471065 0.00150134 0.997955 0.000177027 0.000350689 0.999436 0.000103867 0.000475611 0.00114299 0.998269 0.00017245 0.000686463 0.999107 0.000759818 0.000965945 0.998163 0.00289257 0.0321178 0.0329048 0.93193 0.000155107 0.000487624 0.00495996 0.00544737 0.989049 0.000119411 0.00104916 0.00114357 0.997676 0.00011307 0.000441187 0.999424 0.999893 0.000215962 0.0040298 0.00472082 0.991024 0.00363384 0.0385601 0.0443927 0.913234 0.000179837 0.999898 0.000980265 0.0061445 0.00675192 0.985962 0.000161697 0.000280111 0.000362301 0.999319 0.00123465 0.00892442 0.00934797 0.980419 0.000190735 0.00124917 0.00132365 0.997221 0.00529726 0.116061 0.120492 0.757814 0.000335861 0.00055797 0.00150998 0.997872 0.000140732 0.000215161 0.99963 0.000144537 0.000193745 0.999646 0.000247436 0.00215419 0.0535254 0.472036 0.472036 0.000492331 0.00417332 0.0851421 0.455096 0.455096 0.000386016 0.00324639 0.0673112 0.464528 0.464528 0.000339044 0.0028765 0.0624988 0.467143 0.467143 0.000737143 0.0238243 0.487678 0.487678 0.000261695 0.0103931 0.494659 0.494659 0.000155704 0.00123938 0.0278446 0.48538 0.48538 0.000273091 0.00202674 0.0386849 0.479508 0.479508 0.000729494 0.0300685 0.484563 0.484563 0.000112258 0.00099871 0.0329722 0.482958 0.482958 0.000295224 0.00222265 0.0441033 0.476689 0.476689 0.000136726 0.00116887 0.0320815 0.483306 0.483306 0.000255537 0.00209273 0.0455951 0.476028 0.476028 0.000304739 0.00249171 0.0534859 0.471859 0.471859 0.000316286 0.00266804 0.058383 0.469316 0.469316 0.000487329 0.00357678 0.0614606 0.467238 0.467238 0.000664509 0.00504548 0.0844438 0.454923 0.454923 0.000378677 0.00306385 0.0645511 0.466003 0.466003 0.000268966 0.00218356 0.0486154 0.474466 0.474466 0.000646927 0.00493975 0.0812601 0.456577 0.456577 0.000472427 0.00342937 0.0565635 0.469767 0.469767 0.000342588 0.0026199 0.0481097 0.474464 0.474464 0.000421198 0.00340416 0.0650914 0.465542 0.465542 0.000411434 0.00341404 0.0728085 0.461683 0.461683 0.000531691 0.00435865 0.0852103 0.45495 0.45495 0.00011041 0.000958642 0.026583 0.486174 0.486174 0.000148422 0.0077669 0.496043 0.496027 0.00012607 0.00124801 0.0378893 0.480368 0.480368 0.000220818 0.00222993 0.0630659 0.467242 0.467242 0.000212321 0.00206171 0.0525878 0.472569 0.472569 0.000161717 0.00164619 0.0482763 0.474958 0.474958 0.000105149 0.0045136 0.497685 0.497685 0.00304814 0.498443 0.498443 0.000705404 0.0183596 0.490428 0.490428 0.000821447 0.019714 0.489684 0.489684 0.000183174 0.00170373 0.0415382 0.478287 0.478287 0.000163005 0.00149612 0.0373212 0.48051 0.48051 0.000146155 0.00147105 0.0431044 0.477639 0.477639 0.000256066 0.00226761 0.0492074 0.474134 0.474134 0.000233448 0.00192202 0.0380993 0.479873 0.479873 0.000160255 0.00145374 0.0344702 0.481958 0.481958 0.000205923 0.00192912 0.0464991 0.475683 0.475683 0.000715277 0.0182459 0.490478 0.490478 0.00205562 0.498949 0.498949 0.000232239 0.00188212 0.037949 0.479968 0.479968 0.000221491 0.00195728 0.0455589 0.476131 0.476131 0.000200572 0.00184536 0.0468943 0.47553 0.47553 0.000196857 0.00180463 0.0457897 0.476104 0.476104 0.000207895 0.00177246 0.0395203 0.47925 0.47925 0.000183667 0.00165042 0.0408389 0.478664 0.478664 0.000547899 0.0165418 0.491425 0.491425 0.000464234 0.0155658 0.491961 0.491961 0.000938602 0.499538 0.499509 0.000781087 0.499638 0.499567 0.000226371 0.418199 0.572479 0.00908596 0.000262868 0.131951 0.808313 0.0594579 0.000337154 0.1169 0.807473 0.0752711 0.000459528 0.412465 0.567814 0.0192423 0.000500977 0.0204682 0.4895 0.489479 0.000682662 0.0941528 0.602651 0.302462 0.000135935 0.0292355 0.779297 0.191323 0.000175211 0.00818982 0.495829 0.495788 0.000827513 0.383892 0.574902 0.0403422 0.000950123 0.161943 0.636757 0.200296 0.000854634 0.13557 0.636341 0.227184 0.00067328 0.333703 0.621191 0.0444012 0.00106664 0.00875415 0.14844 0.42087 0.42087 0.000784845 0.00651001 0.124532 0.434087 0.434087 0.000881753 0.00709304 0.124344 0.433841 0.433841 0.000289957 0.783331 0.216376 0.00289185 0.560026 0.437055 0.00053982 0.0330678 0.484661 0.48169 0.000438044 0.0229815 0.488273 0.488272 0.000516268 0.0235915 0.487925 0.487924 0.000567835 0.0308248 0.484301 0.484261 0.00504092 0.497446 0.49741 0.000116886 0.00112496 0.0462084 0.476285 0.476265 0.000575553 0.0299805 0.484698 0.48469 0.00071949 0.31286 0.626326 0.0600532 0.000700642 0.461368 0.516415 0.0214823 0.000120791 0.419052 0.576225 0.00459669 0.000125724 0.180697 0.805038 0.0141329 0.000350648 0.277198 0.69288 0.0295541 0.000225767 0.46672 0.526651 0.00639477 0.000520218 0.482387 0.505194 0.0118791 0.000602302 0.400099 0.572354 0.0269181 0.000497012 0.495938 0.494638 0.00890852 0.000255999 0.612702 0.382189 0.00484338 0.000106231 0.00223703 0.480456 0.481251 0.0359498 0.00118294 0.498244 0.48715 0.0133743 0.00152085 0.483429 0.486512 0.0284643 0.00173351 0.417419 0.514345 0.0664042 0.000143231 0.00268799 0.447896 0.483444 0.0658296 0.00109083 0.22947 0.619203 0.150169 0.000333189 0.147806 0.798552 0.0532902 0.00624305 0.561509 0.432191 0.000613691 0.0476965 0.497045 0.454593 0.000102835 0.00115009 0.0726579 0.47726 0.448829 0.000124639 0.00156633 0.143186 0.51929 0.335833 0.000106736 0.00133187 0.126779 0.526532 0.34525 0.000207683 0.00334492 0.367122 0.490051 0.139274 0.00073035 0.00811432 0.236263 0.409492 0.3454 0.000432246 0.00477297 0.173118 0.429729 0.391948 0.000129092 0.00189348 0.221796 0.542764 0.233417 0.000170143 0.00189058 0.104274 0.46456 0.429105 0.000364992 0.0036165 0.117584 0.439557 0.438877 0.000471311 0.0047674 0.152471 0.427181 0.415109 0.000218612 0.00262765 0.171586 0.47573 0.349838 0.000877916 0.00773402 0.15392 0.418737 0.418732 0.000706161 0.00616874 0.132154 0.430486 0.430485 0.000711098 0.00753044 0.217747 0.41053 0.363481 0.000285463 0.00397243 0.306312 0.475321 0.214109 0.000482079 0.00424764 0.101779 0.446746 0.446745 0.000620393 0.00524122 0.110304 0.441917 0.441917 0.000690042 0.00576386 0.110312 0.441617 0.441617 0.0004874 0.004355 0.101257 0.446951 0.44695 0.000103821 0.00124148 0.0879326 0.489222 0.4215 0.000309811 0.00323587 0.118033 0.441787 0.436634 0.000947798 0.00766751 0.129159 0.431113 0.431113 0.000655273 0.00594726 0.129927 0.431737 0.431733 0.000858216 0.00774655 0.155631 0.417885 0.417879 0.000992152 0.0083186 0.145035 0.422827 0.422827 0.000165002 0.00268179 0.391223 0.499196 0.106734 0.00078072 0.802502 0.19256 0.00413084 0.000889894 0.796879 0.197153 0.00504524 0.00112274 0.815439 0.182334 0.00109538 0.000327116 0.80414 0.193422 0.00210035 0.000108433 0.57376 0.42377 0.00235797 0.000389532 0.687698 0.309286 0.0026153 0.000368808 0.635962 0.360747 0.00291081 0.000840749 0.586702 0.406773 0.00565477 0.000223706 0.629656 0.368206 0.00190625 0.000219743 0.00823992 0.495758 0.495758 0.000324948 0.0148027 0.492422 0.492422 0.00025767 0.0150126 0.492374 0.492335 0.000206515 0.013576 0.493105 0.493096 0.000220727 0.0176759 0.500635 0.481452 0.000518939 0.0868188 0.667583 0.245047 0.000544208 0.107141 0.790998 0.101286 0.000403857 0.467112 0.520486 0.0119802 0.000384401 0.496989 0.496237 0.00637415 0.000876036 0.0271871 0.485926 0.485926 0.00010047 0.0010241 0.0301734 0.484351 0.484351 0.000170694 0.00182078 0.0560619 0.470973 0.470973 0.000263532 0.00270842 0.0700894 0.463469 0.463469 0.000223539 0.00233693 0.0639458 0.466747 0.466747 0.000180131 0.00190071 0.055726 0.471097 0.471097 0.000128565 0.001209 0.029749 0.484457 0.484457 0.000125621 0.00113411 0.0267637 0.485988 0.485988 0.000134492 0.00137685 0.0404647 0.479012 0.479012 0.000145663 0.0015132 0.0453924 0.476474 0.476474 0.000162851 0.00166988 0.0470533 0.475557 0.475557 0.0001463 0.00148024 0.0410011 0.478686 0.478686 0.000279968 0.00263978 0.0578827 0.469599 0.469599 0.000208732 0.0018977 0.0415438 0.478175 0.478175 0.000193219 0.00183494 0.0430545 0.477459 0.477459 0.000219374 0.00216937 0.0535947 0.472008 0.472008 0.000184645 0.00171681 0.0474058 0.475346 0.475346 0.000369394 0.00336897 0.0771771 0.459542 0.459542 0.000147574 0.00117195 0.0254114 0.486635 0.486635 0.000152734 0.00137802 0.037244 0.480613 0.480613 0.000451171 0.00368404 0.0680453 0.46391 0.46391 0.000341658 0.00258533 0.0453623 0.475855 0.475855 0.323459 0.00393244 0.00222819 0.658277 0.0121029 0.156151 0.0036661 0.78977 0.0462759 0.00413658 0.0379416 0.000808071 0.953087 0.00726952 0.000893772 0.352138 0.000876608 0.000472604 0.644631 0.00188162 0.230808 0.00239609 0.753936 0.0119269 0.000932912 0.0884645 0.00711754 0.764818 0.132293 0.00730769 0.0742756 0.00312436 0.856919 0.0615571 0.00412374 0.210892 0.00538423 0.00277638 0.760061 0.0208862 0.151354 0.00427728 0.807847 0.032729 0.00379083 0.015759 0.50162 0.0076017 0.00237085 0.472648 0.0341642 0.50374 0.0120944 0.00274728 0.447254 0.312514 0.00152913 0.666235 0.0180567 0.00166399 0.204458 0.00123425 0.765434 0.0274387 0.00143577 0.00217977 0.979491 0.000860452 0.000133426 0.0173349 0.000143521 0.999475 0.00035231 0.000402486 0.998845 0.000674794 0.998033 0.00184432 0.999576 0.000364988 0.0174573 0.936567 0.0412539 0.00344188 0.00127954 0.171253 0.825309 0.00316601 0.000203176 0.996955 0.00282579 0.00315353 0.721063 0.27251 0.00256729 0.000705542 0.00506053 0.693909 0.295501 0.00434841 0.0011809 0.988069 0.0118641 0.00194203 0.579784 0.414896 0.00267455 0.000703201 0.00928333 0.543878 0.429556 0.0136322 0.00365004 0.00512655 0.501475 0.479583 0.0109806 0.00283492 0.966531 0.0331932 0.000167219 0.00481027 0.994844 0.000276732 0.00781949 0.991703 0.000375627 0.000157231 0.0883048 0.907694 0.00331471 0.000529569 0.0011837 0.998724 0.000294668 0.999672 0.00049233 0.0585658 0.925508 0.013301 0.00213254 0.021692 0.975275 0.00252543 0.000415082 0.00015056 0.808506 0.190245 0.00109362 0.0354772 0.00385376 0.881715 0.0753935 0.0035605 0.992394 0.000445646 0.00637448 0.000712245 0.000528778 0.970568 0.0281338 0.000581807 0.000187876 0.994107 0.00587545 0.000100557 0.038529 0.958576 0.00240181 0.000392662 0.00653536 0.983458 0.00267088 0.000384353 0.00695155 0.0810394 0.670708 0.116028 0.00904637 0.123178 0.138923 0.683675 0.126553 0.0134104 0.0374392 0.22991 0.647088 0.0677622 0.0148598 0.0403735 0.310547 0.577119 0.0538126 0.00859778 0.0499239 0.040197 0.264337 0.666322 0.0230243 0.00611942 0.0123626 0.019154 0.679591 0.286183 0.00270916 0.655566 0.344381 0.000971543 0.347797 0.0011666 0.000542736 0.649522 0.00170357 0.415739 0.00298954 0.00154026 0.578027 0.429167 0.00570256 0.00287429 0.557884 0.00437177 0.550692 0.00110109 0.000347658 0.446769 0.00108975 0.687898 0.293933 0.00197687 0.000493078 0.0156987 0.000634074 0.68168 0.317578 0.0144291 0.324881 0.648675 0.0104614 0.00155418 0.0245761 0.277582 0.671092 0.0246311 0.0021193 0.116349 0.713338 0.12513 0.0117831 0.0334 0.0589237 0.756292 0.094574 0.00709292 0.0831174 0.00375168 0.753502 0.00896476 0.00512234 0.228659 0.750996 0.0140006 0.00518361 0.221576 0.00824231 0.00259426 0.839251 0.0043423 0.00212412 0.151689 0.00287233 0.740451 0.00665568 0.00379258 0.246228 0.0101337 0.436058 0.54931 0.00333319 0.00116573 0.798479 0.104391 0.0534783 0.0130439 0.0306076 0.00986596 0.754824 0.0162489 0.00230821 0.216753 0.018421 0.823563 0.0366168 0.00546799 0.115931 0.00189116 0.523736 0.00139502 0.000546816 0.472431 0.135454 0.834386 0.00316862 0.00124035 0.0257502 0.038403 0.855707 0.0320001 0.0261107 0.047779 0.100648 0.861301 0.00638417 0.00285872 0.0288077 0.994531 0.00194231 0.00109674 0.000655053 0.00177501 0.949446 0.0189084 0.0143572 0.00517897 0.0121089 0.970105 0.0143868 0.00805678 0.00219382 0.00525753 0.99962 0.000179117 0.955909 0.0149587 0.00806317 0.00249751 0.0185721 0.989088 0.00314844 0.00148252 0.000584937 0.00569637 0.993143 0.00180226 0.00121653 0.000363146 0.0034755 0.998896 0.00011723 0.000911987 0.992528 0.00133388 0.000705717 0.000235459 0.00519713 0.99755 0.00076809 0.000304227 0.000308227 0.00106974 0.99146 0.00193998 0.000814435 0.000410611 0.00537504 0.998924 0.000176845 0.000784425 0.996769 0.000237664 0.00284609 0.894023 0.0067068 0.00142392 0.0360706 0.061776 0.387907 0.0013951 0.000256361 0.00371693 0.606725 0.492053 0.019041 0.00562528 0.0224966 0.460783 0.894621 0.00534398 0.082416 0.0160133 0.00160346 0.990483 0.00119365 0.000415885 0.000327024 0.00758033 0.998575 0.000118962 0.00122551 0.999418 0.000108966 0.000391515 0.998445 0.0014714 0.999223 0.000715354 0.0194561 0.837597 0.0870296 0.0100629 0.0458542 0.36157 0.379553 0.186757 0.0630086 0.00910653 0.0500738 0.436019 0.43602 0.0413111 0.0365701 0.0196613 0.863904 0.0939728 0.00606143 0.0164003 0.0194577 0.861664 0.104033 0.00568558 0.00915951 0.0492832 0.445056 0.445056 0.0368367 0.0237642 0.664347 0.148157 0.148157 0.0349397 0.00439875 0.848989 0.0621802 0.0621802 0.0224271 0.00422207 0.396704 0.272137 0.272137 0.0548911 0.00413049 0.0240519 0.846301 0.0652056 0.0222992 0.0421333 0.0206858 0.681641 0.113912 0.0280575 0.155665 0.183442 0.383883 0.335802 0.0921067 0.00476586 0.27321 0.370977 0.263118 0.0857573 0.0069376 0.022957 0.733056 0.112466 0.0223822 0.109113 0.108545 0.413623 0.413373 0.0611838 0.00327537 0.0254221 0.695785 0.0986289 0.0262241 0.15391 0.42445 0.0415583 0.435347 0.0912294 0.00740927 0.822174 0.0101678 0.00149279 0.023861 0.142305 0.799848 0.0156767 0.0022979 0.0573743 0.124803 0.849969 0.0165107 0.00345419 0.0395946 0.0904711 0.000842025 0.998789 0.000346428 0.00292778 0.52194 0.472059 0.00157705 0.00149549 0.00836432 0.497198 0.483045 0.00569621 0.00569616 0.00815455 0.972392 0.0178292 0.000811988 0.000811985 0.00508842 0.571427 0.42021 0.00196845 0.00130542 0.00347938 0.573429 0.420667 0.00134911 0.00107539 0.00197399 0.996633 0.00133176 0.00899292 0.554369 0.431363 0.00318464 0.00209002 0.00991652 0.538357 0.445077 0.0042166 0.00243311 0.0173195 0.981626 0.000978014 0.00528309 0.501704 0.486994 0.00306781 0.00295086 0.00954345 0.541427 0.443069 0.00329627 0.00266354 0.000317997 0.999445 0.000217985 0.00111294 0.489653 0.506985 0.00118461 0.00106447 0.00179614 0.494767 0.499165 0.00216314 0.00210916 0.000909173 0.480161 0.517547 0.000843677 0.000539119 0.00126726 0.48242 0.514119 0.00124449 0.000948788 0.00181268 0.380209 0.615328 0.00162403 0.00102558 0.00197762 0.480634 0.514376 0.00191611 0.00109688 0.00190692 0.49673 0.497421 0.00203218 0.00190974 0.00250913 0.428777 0.565026 0.00208525 0.00160295 0.0147872 0.98469 0.000229001 0.000203873 0.000812898 0.112011 0.882224 0.00249102 0.00246105 0.00017078 0.029949 0.969251 0.000407911 0.000221772 0.000127731 0.0176328 0.981733 0.000293421 0.000212571 0.000303432 0.0342975 0.964404 0.000650735 0.000344719 0.000663577 0.06923 0.927712 0.00164133 0.000752756 0.000663332 0.0968608 0.899258 0.00164557 0.00157236 0.000116177 0.999879 0.000514223 0.0168358 0.966401 0.0086729 0.00757595 0.0013707 0.0385967 0.930688 0.017969 0.0113759 0.00138875 0.100061 0.869852 0.01834 0.0103584 0.000659266 0.0642134 0.911044 0.0130138 0.0110698 0.000507958 0.0153627 0.971854 0.00929545 0.00297964 0.00216551 0.114849 0.839511 0.0313935 0.012081 0.000115182 0.00340026 0.994396 0.00160144 0.000486699 0.00186594 0.099169 0.855115 0.0331389 0.0107111 0.00193287 0.0916952 0.858992 0.0372434 0.0101369 0.000865463 0.0209163 0.959388 0.0152533 0.00357649 0.00139024 0.0501477 0.903562 0.022525 0.0223746 0.000851334 0.0840421 0.887918 0.0147991 0.0123894 0.000965353 0.0806597 0.897147 0.0141447 0.00708312 0.003751 0.0997118 0.853069 0.0271631 0.0163052 0.000505775 0.703826 0.283344 0.0122843 0.000994106 0.666024 0.298079 0.0348366 0.000157766 0.813295 0.184848 0.0016845 0.000193749 0.860888 0.13686 0.00203259 0.000148709 0.846597 0.152085 0.00115255 0.000532121 0.838338 0.146976 0.014105 0.000297734 0.890774 0.104257 0.00463557 0.55107 0.448021 0.000852521 0.000198564 0.498129 0.498129 0.00351077 0.000494868 0.442727 0.534284 0.0224227 0.000261526 0.390243 0.597195 0.0122717 0.000173225 0.603199 0.393755 0.00283831 0.000357044 0.49712 0.496811 0.00561311 0.000227032 0.498655 0.498655 0.00241544 0.60266 0.396433 0.000821809 0.000649312 0.211116 0.704277 0.0838639 0...
[truncated message content] |