From S.C.DuartePinto at tudelft.nl Tue Jul 2 12:27:50 2013 From: S.C.DuartePinto at tudelft.nl (Serge Duarte Pinto) Date: Tue, 02 Jul 2013 12:27:50 +0200 Subject: [mcstas-users] Negative intensity reading on a PSD_monitor? Message-ID: <51D2AB26.8040501@tudelft.nl> Hello, I am trying to simulate a spin precession setup that yields a spatial modulation pattern after an analyzer. The modulations clearly show up on the PSD_monitor (see screenshot), but curiously the downward swings go below zero intensity! I wonder how that is possible, and what I could possibly do against it. I also do not understand the units of intensity: I send a million neutrons to an area of 5 cm^2, to get intensities of the order 10^-13... I attach the instrument description, together with the components Foil_flipper_magnet and Analyser_ideal it depends on. And the result I get when I run it. Thanks in advance, Serge Duarte Pinto -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: dhaeeded.png Type: image/png Size: 117028 bytes Desc: not available URL: -------------- next part -------------- DEFINE INSTRUMENT SEMSANS() TRACE COMPONENT arm = Arm() AT (0,0,0) ABSOLUTE COMPONENT Simple_source = Source_simple( radius = 0, yheight = 0.025, xwidth = 0.02, dist = 100, focus_xw = 0.01, focus_yh = 0.01, lambda0 = 2.1, dlambda = 0.01) AT (0, 0, 0) RELATIVE arm COMPONENT polariser = Set_pol(px=1) AT (0, 0, 0.5) RELATIVE arm // 2.1 Angstrom neutrons in a precession field of 1mT precess one period in 6.45 cm. COMPONENT B_field1=Pol_simpleBfield(xwidth=0.5, yheight=0.05, zdepth=2, Bx=0, By=0.001, Bz=0) AT (0, 0, 1) RELATIVE arm COMPONENT Foil_flipper_magnet1 = Foil_flipper_magnet(xwidth=0.18, yheight=0.06, zdepth=0.3, phi=0.09599, Bx=0, By=0.001, Bz=0, foil_in=1, verbose=1) AT (0, 0, 2) RELATIVE arm COMPONENT B_field_stop1=Pol_simpleBfield_stop(magnet_comp_stop=B_field1) AT (0, 0, 3) RELATIVE arm COMPONENT B_field2=Pol_simpleBfield(xwidth=0.5, yheight=0.05, zdepth=2, Bx=0, By=0.003, Bz=0) AT (0, 0, 3.0001) RELATIVE arm COMPONENT Foil_flipper_magnet2 = Foil_flipper_magnet(xwidth=0.18, yheight=0.06, zdepth=0.3, phi=0.09599, Bx=0, By=0.003, Bz=0, foil_in=1, verbose=1) AT (0, 0, 4.0) RELATIVE arm COMPONENT B_field_stop2=Pol_simpleBfield_stop(magnet_comp_stop=B_field2) AT (0, 0, 5.0001) RELATIVE arm COMPONENT analyser = Analyser_ideal(mx=1, my=0, mz=0) AT (0, 0, 5.0002) RELATIVE arm COMPONENT PSD = PSD_monitor(nx=1, ny=2048, filename="PSD", xwidth=0.025, yheight=0.025) AT (0, 0, 5.0003) RELATIVE arm FINALLY %{ %} END -------------- next part -------------- /******************************************************************************* * * McStas, neutron ray-tracing package * Copyright 1997-2002, All rights reserved * Risoe National Laboratory, Roskilde, Denmark * Institut Laue Langevin, Grenoble, France * * Component: my_component * * %IDENTIFICATION * Written by: MYSELF * Date: NOW * Version: $Revision: 0.01 $ * Origin: Risoe * Release: McStas 1.12b * Modified by: * %DESCRIPTION * This is the description of this template component * * %PARAMETERS * xwidth: width of the magnet [m] * yheight: height of the magnet [m] * zdepth: thickness of the magnet [m] * Bxwidth: width of the B-field of thev component [m] * Byheight: height of the B-field of the component [m] * Bzdepth: thickness of the B-field of the component [m] * phi: angle (from the xz-plane) of the foil-spinflipper inside the magnet [rd] * Bx: [T] Parameter used for x component of field. * By: [T] Parameter used for y component of field. * Bz: [T] Parameter used for z component of field. * fieldFunction [pointer] Function describing the magnetic field. * * %LINKS * * %END ****************************************************************************/ /* This comment will not be exported to mcdoc */ DEFINE COMPONENT Foil_flipper_magnet DEFINITION PARAMETERS(field_function=const_magnetic_field, stray_field_function=NULL) SETTING PARAMETERS(xwidth, yheight, zdepth, Bxwidth=-1, Byheight=-1, Bzdepth=-1, phi=0.0, Bx,By,Bz,foil_in=1, correction_coil=1,verbose=1) OUTPUT PARAMETERS(inside_magnet) STATE PARAMETERS (x,y,z,vx,vy,vz,t,sx,sy,p) POLARISATION PARAMETERS (sx,sy,sz) SHARE %{ /* Declare structures and functions only once in each instrument. */ #ifndef POL_LIB_H %include "pol-lib" #endif void foil_spin_flip(double *sx, double *sy, double *sz, double lambda, double phi){ /*the spin flip is actually a precession around the field vector - in this case this vector is * in the foil plane, perp. to X, i.e. Z rotated by phi.*/ //printf("pre_spin_flip=%g %g %g\n",*sx,*sy,*sz); double ux,uy,uz,s; //ux=0;uy=cos(phi);uz=-sin(phi); ux=0;uy=sin(phi);uz=cos(phi); /*Rodigues formula for roatating a vector around a unit vector. * v_rot=v*cos(theta) + uxv * sin(theta) + (u dot v)u(1-cos(theta) * theta=180 deg. => v_rot =-v + 2*(u dot v)u*/ s=scalar_prod(ux,uy,uz,*sx,*sy,*sz); *sx=-*sx+2*s*ux; *sy=-*sy+2*s*uy; *sz=-*sz+2*s*uz; //printf("post_spin_flip=%g %g %g\n",*sx,*sy,*sz); } void const_foil_flipper_field(double x, double y, double z, double t, double *bx, double *by, double *bz){ *bx=mcMagnetData[0]; *by=mcMagnetData[1]; *bz=mcMagnetData[2]; } %} DECLARE %{ /*Declarations of variables used in the whole of the component*/ double foil_n[3]; Rotation spin_flip; double inside_magnet[6]; int stray_fields; int stored; %} INITIALIZE %{ /*default is to have the foil horizontal*/ Rotation foil_rot; Coords n,tmp; /*default is to have the foil horizontal*/ n.x=0;n.y=1;n.z=0; rot_set_rotation(foil_rot,phi,0,0); tmp=rot_apply(foil_rot,n); foil_n[0]=tmp.x;foil_n[1]=tmp.y; foil_n[2]=tmp.z; /*setup spin-flip rotation. This is equivalent to mirroring in the foil plane.*/ printf("foil normal (%s) %g %g %g\n",NAME_CURRENT_COMP, foil_n[0],foil_n[1],foil_n[2]); /*copy-paste from simpleBfield.comp*/ /*this should be a store_magnet type function in pol-lib i think*/ Coords localG = rot_apply(ROT_A_CURRENT_COMP, coords_set(0,-GRAVITY,0)); /*if desired compute the correction field along -Bz*/ if (correction_coil){ Bz=-By*tan(phi); printf("Correction coil is in - B=(%g %g %g)\n",Bx,By,Bz); } inside_magnet[0]=Bx; inside_magnet[1]=By; inside_magnet[2]=Bz; /*if the magnetic field dimensions are not given, we assume there are no stray fields. I.e. the magnetic field does not extend beyond the magnet gap*/ if (Bxwidth!=-1 && Byheight!=-1 && Bzdepth!=-1){ stray_fields=1; } if (Bxwidth==-1) Bxwidth=xwidth; if (Byheight==-1) Byheight=yheight; if (Bzdepth==-1) Bzdepth=zdepth; printf("xw,yh,zd=(%g %g %g), (Bxw,Byh,Bzd=(%g %g %g)\n",xwidth,yheight,zdepth,Bxwidth,Byheight,Bzdepth); if (foil_in) printf("Foil is IN\n"); else printf("Foil is OUT\n"); %} TRACE %{ double t1,t2,t3,t4,dt; double sp,v; //mcmagnet_field_info *old_magnet,*outer_magnet; double *dd; int stored=0; /*check if we hit component at all*/ if (plane_intersect(&t1,x,y,z,vx,vy,vz,0,0,1,0,0,-Bzdepth/2.0)==0){ if(verbose) fprintf(stderr,"missed the magnetic field plane of %s\n",NAME_CURRENT_COMP); ABSORB; } v=sqrt(vx*vx + vy*vy + vz*vz); if ( (box_intersect(&t1, &t2, x, y, z, vx, vy, vz, Bxwidth, Byheight, Bzdepth))==0){ /*propagate to the start of the component (which is -Bzdepth/2)*/ if(verbose) fprintf(stderr,"missed the magnetic field of %s, %g %g %g\n",NAME_CURRENT_COMP,t1,t2,v); ABSORB; } if (t1<0){ if(verbose) fprintf(stderr,"warning: neutron is already inside component %s on entry. t1=%g t2=%g\n",NAME_CURRENT_COMP,t1,t2); }else{ PROP_DT(t1); t2=t2-t1; } if ( (box_intersect(&t3, &t4, x, y, z, vx, vy, vz,xwidth, yheight, zdepth))==0){ if(verbose) fprintf(stderr,"missed the magnet %s gap\n",NAME_CURRENT_COMP); ABSORB; } /* t3 is the time for intersecting the first part of the area under the magnet - propagate to that*/ if (t3>1e-9){ PROP_DT(t3); t4=t4-t3; t2=t2-t3; } /*inject another field description for the magnetic field betweeen pole shoes.*/ //outer_magnet=(mcmagnet_field_info *) if(stray_field_function) mcmagnet_pop();//this could be done with a stop bit in the magnet parameters double *tmp_data; Coords tmp_pos; Rotation tmp_rot; void (*tmp_field_func) (double, double, double, double, double*, double*, double*) = NULL; if(mcMagnet){ stored=1; tmp_data=mcMagnetData; tmp_pos=mcMagnetPos; rot_copy(tmp_rot,mcMagnetRot); tmp_field_func=mcMagneticField; } mcMagnetData=inside_magnet; mcMagnetPos=POS_A_CURRENT_COMP; rot_copy(mcMagnetRot,ROT_A_CURRENT_COMP); mcMagneticField=const_foil_flipper_field; MAGNET_ON; /*see if we hit the magnet walls before we exit*/ if (plane_intersect(&dt,x,y,z,vx,vy,vz,0,0,1,0,0,zdepth/2.0)==0){ fprintf(stderr,"missed the end plane of the magnet %s - this should not be\n",NAME_CURRENT_COMP); exit(-1); ABSORB; } if ( fabs(dt-t4)>FLT_EPSILON ) { if(verbose) fprintf(stderr,"hit magnet from inside gap %s\n",NAME_CURRENT_COMP); ABSORB; } /*neutron is inside magnet gap - propagate to the foil plane or leave the neutron if it does not hit the plane while inside the gap*/ if (foil_in){ //printf("xyz= (%g %g %g), vxyz= (%g %g %g)\n",x,y,z,vx,vy,vz); if (plane_intersect(&dt,x,y,z,vx,vy,vz,foil_n[0],foil_n[1],foil_n[2],0,0,0)==0 || dt<0 || dt>t4 ){ //fprintf(stderr,"missed the foil flipper plane of %s (dt=%g)\n",NAME_CURRENT_COMP,dt); ABSORB; dt=dt; } else{ PROP_DT(dt); t4=t4-dt; t2=t2-dt; /* at the foil - so flip spin/polarization*/ foil_spin_flip(&sx,&sy,&sz,0.0,phi); } } /*propagate to the other end of the magnet gap*/ PROP_DT(t4); t2=t2-t4; //dd=(double *) outer_magnet->data; //*(dd+5)=zdepth/2.0; if(stored){ stored=0; mcMagnetData=tmp_data; mcMagnetPos=tmp_pos; rot_copy(mcMagnetRot,tmp_rot); mcMagneticField=tmp_field_func; } else{ MAGNET_OFF; } if (t2>1e-9){ /*propagate to the end of the component*/ PROP_DT(t2); } %} MCDISPLAY %{ double y=atan(phi)*zdepth/2.0; magnify("xy"); box(0.0,0.0,0.0,Bxwidth,Byheight,Bzdepth); if (Bxwidth!=xwidth || Byheight!=yheight || Bzdepth!=zdepth){ box(0,0,0,xwidth,yheight,zdepth); } /*draw the foil plane*/ multiline(5,-xwidth/2.0,-y,-zdepth/2.0, xwidth/2.0,-y,-zdepth/2.0, xwidth/2.0,y,zdepth/2.0, -xwidth/2.0,y,zdepth/2.0, -xwidth/2.0,-y,-zdepth/2.0); %} END -------------- next part -------------- /***************************************************************************** * * McStas, neutron ray-tracing package * Copyright 1997-2006, All rights reserved * Risoe National Laboratory, Roskilde, Denmark * Institut Laue Langevin, Grenoble, France * * Component: Set_pol * * %I * Written by: Erik Knudsen * Date: June 2010 * Version: $Revision: 1.2 $ * Origin: Risoe * Release: McStas 2.0 * * (Unphysical) ideal analyzer. * * %D * * * Example: Analyser_ideal(mx=0, my=1, mz=0) * * %P * INPUT PARAMETERS: * * mx: X-component of polarisation analysis vector (can be negative) (1) * my: Y-component of polarisation analysis vector (can be negative) (1) * mz: Z-component of polarisation analysis vector (can be negative) (1) * * OUTPUT PARAMETERS: * * %E *******************************************************************************/ DEFINE COMPONENT Analyser_ideal DEFINITION PARAMETERS () SETTING PARAMETERS (mx=0, my=0, mz=0) STATE PARAMETERS (x,y,z,vx,vy,vz,t,sx,sy,p) POLARISATION PARAMETERS (sx,sy,sz) DECLARE %{ %} INITIALIZE %{ if (mx==1 && my==1 && mz==1) { printf("Analyser_ideal: %s: NULL vector defined!\n" "ERROR (px, py, pz). Exiting", NAME_CURRENT_COMP); exit(1); } if ((mx*mx + my*my + mz*mz) > 1) { printf("Set_pol: %s: Polarisation analysis vector (mx, my, mz) is unphysical!\n" "ERROR mx*mx + my*my + mz*mz > 1. Exiting....", NAME_CURRENT_COMP); exit(1); } NORM(mx,my,mz); %} TRACE %{ double prob_up; /*the probablilty for having spin "up" along the quantization driection m*/ prob_up=(1+scalar_prod(sx,sy,sz,mx,my,mx))/2.0; /*adjust weight accordingly (i.e. monte carlo choice with prob. 1)*/ p*=prob_up; sx=mx;sy=my;sz=mz; SCATTER; %} MCDISPLAY %{ /* A bit ugly; hard-coded dimensions. */ magnify("xy"); line(0,0,0,0.2,0,0); line(0,0,0,0,0.2,0); line(0,0,0,0,0,0.2); line(0,0,0,0.2*mx,0.2*my,0.2*mz); /*draw the arrowhead*/ double cos2=cos(2*DEG2RAD); double sin2=sin(2*DEG2RAD); multiline(4,0.18*(mx*cos2+my*sin2),0.18*(-mx*sin2+my*cos2),0.18*mz, 0.18*(mx*cos2+mz*sin2),0.18*my,0.18*(-mx*sin2+mz*cos2), 0.18*mx,0.18*(my*cos2+mz*sin2),0.18*(-my*sin2+mz*cos2), 0.18*(mx*cos2+my*sin2),0.18*(-mx*sin2+my*cos2),0.18*mz); line(0.2*mx,0.2*my,0.2*mz,0.18*(mx*cos2+my*sin2),0.18*(-mx*sin2+my*cos2),0.18*mx); line(0.2*mx,0.2*my,0.2*mz,0.18*(mx*cos2+mz*sin2),0.18*my,0.18*(-mx*sin2+mz*cos2)); line(0.2*mx,0.2*my,0.2*mz,0.18*mx,0.18*(my*cos2+mz*sin2),0.18*(-my*sin2+mz*cos2)); %} END -------------- next part -------------- # Format: McStas with text headers file. Use mcplot/PGPLOT to view. # URL: http://www.mccode.org/ # Editor: mcstas on localhost # Creator:SEMSANS (C:/mcstas-2.0/lib/examples/Modulations.instr) simulation (McStas 2.0 - Dec. 21, 2012) # Date: Simulation started (1372756094) Tue Jul 02 11:08:14 2013 # File: PSD.sim # Ncount: 1e+006 # Trace: no # Gravitation: no # Seed: 1372248170 # type: array_1d(2048) # Source: C:/mcstas-2.0/lib/examples/Modulations.instr # component: PSD # position: 0 0 5.0003 # title: PSD monitor # Ncount: 1e+006 # filename: PSD.sim # format: McStas with text headers # statistics: X0=-0.0107082; dX=0.676089; # signal: Min=-1.12523e-013; Max=6.6366e-013; Mean=2.40606e-013; # values: 4.92762e-010 6.90922e-013 1e+006 # xvar: Y # yvar: (I,I_err) # xlabel: Y position [cm] # ylabel: I # xlimits: -1.25 1.25 # variables: Y I I_err N # Data [PSD_sim/PSD.sim] I: -1.24938964844 0 0 0 -1.24816894531 0 0 0 -1.24694824219 0 0 0 -1.24572753906 0 0 0 -1.24450683594 0 0 0 -1.24328613281 0 0 0 -1.24206542969 0 0 0 -1.24084472656 0 0 0 -1.23962402344 0 0 0 -1.23840332031 0 0 0 -1.23718261719 0 0 0 -1.23596191406 0 0 0 -1.23474121094 0 0 0 -1.23352050781 0 0 0 -1.23229980469 0 0 0 -1.23107910156 0 0 0 -1.22985839844 0 0 0 -1.22863769531 0 0 0 -1.22741699219 0 0 0 -1.22619628906 0 0 0 -1.22497558594 0 0 0 -1.22375488281 0 0 0 -1.22253417969 0 0 0 -1.22131347656 0 0 0 -1.22009277344 0 0 0 -1.21887207031 0 0 0 -1.21765136719 0 0 0 -1.21643066406 0 0 0 -1.21520996094 0 0 0 -1.21398925781 0 0 0 -1.21276855469 0 0 0 -1.21154785156 3.16606805908e-015 8.80472342764e-016 15 -1.21032714844 3.27095505087e-015 8.63632883404e-016 17 -1.20910644531 5.2417865784e-015 1.06619306629e-015 33 -1.20788574219 5.92385743233e-015 1.02117248544e-015 55 -1.20666503906 7.28852541708e-015 1.14503895037e-015 65 -1.20544433594 5.77006991589e-015 9.35007055344e-016 81 -1.20422363281 3.80305054209e-015 7.9934197398e-016 88 -1.20300292969 1.16515783634e-015 6.65397093584e-016 82 -1.20178222656 -7.30046850979e-016 7.19675649636e-016 111 -1.20056152344 -2.94096001254e-015 7.34412508865e-016 110 -1.19934082031 -7.2699860717e-015 9.94775229932e-016 153 -1.19812011719 -9.88966031342e-015 1.11012563496e-015 153 -1.19689941406 -1.43197755609e-014 1.3389400138e-015 157 -1.19567871094 -1.82843972495e-014 1.53974962752e-015 171 -1.19445800781 -2.19550039628e-014 1.76189499539e-015 179 -1.19323730469 -2.53625391563e-014 1.93961881771e-015 188 -1.19201660156 -3.16376232809e-014 2.20229336251e-015 223 -1.19079589844 -3.88997280657e-014 2.54096344482e-015 247 -1.18957519531 -4.27104643615e-014 2.7093251537e-015 258 -1.18835449219 -4.41683093209e-014 2.81181821525e-015 253 -1.18713378906 -5.1907800113e-014 3.1000963522e-015 285 -1.18591308594 -4.29058673681e-014 2.8337136364e-015 232 -1.18469238281 -5.57239077484e-014 3.24762563547e-015 297 -1.18347167969 -5.444480722e-014 3.22213530981e-015 287 -1.18225097656 -6.14348697831e-014 3.40437160754e-015 327 -1.18103027344 -6.67252905694e-014 3.52824240138e-015 359 -1.17980957031 -6.31968082509e-014 3.40881155093e-015 345 -1.17858886719 -5.90164177511e-014 3.25283428375e-015 331 -1.17736816406 -6.33186823499e-014 3.29440087034e-015 373 -1.17614746094 -5.95515269014e-014 3.1288878972e-015 368 -1.17492675781 -5.76964336147e-014 3.00030440001e-015 378 -1.17370605469 -5.63926220325e-014 2.86653527141e-015 402 -1.17248535156 -5.01777275011e-014 2.6098241581e-015 390 -1.17126464844 -4.55397047269e-014 2.3620132256e-015 406 -1.17004394531 -4.14103805202e-014 2.1343855462e-015 444 -1.16882324219 -3.57762625416e-014 1.89749794534e-015 458 -1.16760253906 -2.75342807059e-014 1.59662327109e-015 450 -1.16638183594 -1.72816061651e-014 1.30506132876e-015 467 -1.16516113281 -9.54805288773e-015 1.26599510994e-015 503 -1.16394042969 3.79152387509e-015 1.24598250479e-015 502 -1.16271972656 1.3082624428e-014 1.43523028818e-015 515 -1.16149902344 2.71656711097e-014 1.7903936918e-015 519 -1.16027832031 4.17701832653e-014 2.33945596868e-015 511 -1.15905761719 6.04916026308e-014 3.06462209052e-015 514 -1.15783691406 6.52756570747e-014 3.31218125114e-015 493 -1.15661621094 8.70984593903e-014 4.17341988521e-015 510 -1.15539550781 9.86714987799e-014 4.64643939965e-015 512 -1.15417480469 1.12489667915e-013 5.36339188374e-015 483 -1.15295410156 1.35605621453e-013 6.17328649442e-015 522 -1.15173339844 1.50330959494e-013 6.8294348089e-015 519 -1.15051269531 1.69593118024e-013 7.60208075574e-015 526 -1.14929199219 1.94465420474e-013 8.5073579515e-015 548 -1.14807128906 2.0598839598e-013 9.12988838556e-015 532 -1.14685058594 2.16774868595e-013 9.77001239546e-015 510 -1.14562988281 2.22643524386e-013 1.02272894225e-014 489 -1.14440917969 2.6774614725e-013 1.15645131468e-014 551 -1.14318847656 2.67134989449e-013 1.19986808283e-014 508 -1.14196777344 2.94111173121e-013 1.29165899897e-014 529 -1.14074707031 2.98693805385e-013 1.3439022916e-014 503 -1.13952636719 3.0167440059e-013 1.38084842674e-014 485 -1.13830566406 3.31171922603e-013 1.49068717756e-014 501 -1.13708496094 3.75062503701e-013 1.62299932613e-014 541 -1.13586425781 3.91281344437e-013 1.69517131361e-014 539 -1.13464355469 3.90092581381e-013 1.72455964818e-014 517 -1.13342285156 3.90636287051e-013 1.75668575425e-014 499 -1.13220214844 4.41927212721e-013 1.90620569879e-014 542 -1.13098144531 4.92302457119e-013 2.05214885665e-014 580 -1.12976074219 4.42630177321e-013 1.97427687654e-014 506 -1.12854003906 4.56664148968e-013 2.03244305198e-014 508 -1.12731933594 4.63965058573e-013 2.07812299657e-014 501 -1.12609863281 5.22210213045e-013 2.23825309115e-014 547 -1.12487792969 5.18036451648e-013 2.25276003421e-014 531 -1.12365722656 5.27740382269e-013 2.30513825274e-014 526 -1.12243652344 5.31431084614e-013 2.33632680121e-014 519 -1.12121582031 5.53352343712e-013 2.409032087e-014 529 -1.11999511719 5.22448929408e-013 2.36278181168e-014 490 -1.11877441406 5.37993303709e-013 2.41319402711e-014 498 -1.11755371094 5.22400029824e-013 2.39381798795e-014 477 -1.11633300781 6.09325790576e-013 2.60243538753e-014 549 -1.11511230469 5.87112725518e-013 2.57373024092e-014 521 -1.11389160156 5.90093738448e-013 2.58643020558e-014 521 -1.11267089844 5.81025351356e-013 2.57878251157e-014 508 -1.11145019531 5.52655173904e-013 2.52586328099e-014 479 -1.11022949219 6.03550098414e-013 2.64732820588e-014 520 -1.10900878906 5.92210591875e-013 2.63051079034e-014 507 -1.10778808594 5.99155646488e-013 2.64820285855e-014 512 -1.10656738281 6.04141529404e-013 2.66235373958e-014 515 -1.10534667969 6.02321245264e-013 2.6594240287e-014 513 -1.10412597656 6.14475092628e-013 2.68440952655e-014 524 -1.10290527344 5.71188969512e-013 2.58569271033e-014 488 -1.10168457031 6.10687913651e-013 2.66784580311e-014 524 -1.10046386719 6.29776043487e-013 2.70269482922e-014 543 -1.09924316406 6.39182931528e-013 2.71331371195e-014 555 -1.09802246094 5.50665142245e-013 2.50839767722e-014 482 -1.09680175781 6.25974666445e-013 2.66225183861e-014 553 -1.09558105469 5.49310340075e-013 2.47943988001e-014 491 -1.09436035156 5.91790506888e-013 2.55917651356e-014 535 -1.09313964844 5.73861116149e-013 2.50289274907e-014 526 -1.09191894531 5.84489801483e-013 2.50705440808e-014 544 -1.09069824219 5.69204198645e-013 2.45064807778e-014 540 -1.08947753906 5.46324011019e-013 2.37904571574e-014 528 -1.08825683594 5.53234907906e-013 2.37379026916e-014 544 -1.08703613281 5.05077391916e-013 2.24080729325e-014 509 -1.08581542969 5.04632425627e-013 2.21521377616e-014 520 -1.08459472656 4.8197130759e-013 2.14099443698e-014 508 -1.08337402344 4.44787533637e-013 2.02668714153e-014 483 -1.08215332031 4.71499458757e-013 2.05932202646e-014 526 -1.08093261719 4.71651793803e-013 2.02579407646e-014 544 -1.07971191406 3.97172544444e-013 1.82809959829e-014 474 -1.07849121094 4.1109239122e-013 1.82682275606e-014 509 -1.07727050781 4.41376700515e-013 1.85576952514e-014 569 -1.07604980469 3.82928684439e-013 1.69953424356e-014 511 -1.07482910156 3.74791450255e-013 1.6464854055e-014 522 -1.07360839844 3.65387412371e-013 1.58948913104e-014 533 -1.07238769531 3.40490480114e-013 1.50002369917e-014 520 -1.07116699219 3.23589375214e-013 1.42768727647e-014 519 -1.06994628906 2.98436351875e-013 1.33463004766e-014 506 -1.06872558594 2.9418380718e-013 1.28438625531e-014 532 -1.06750488281 2.75863806777e-013 1.21108480582e-014 527 -1.06628417969 2.58952150159e-013 1.13620437175e-014 529 -1.06506347656 2.32246253778e-013 1.03897475232e-014 509 -1.06384277344 2.19856560731e-013 9.79980854799e-015 515 -1.06262207031 2.00328399539e-013 8.88971268199e-015 521 -1.06140136719 1.82704106316e-013 8.18106911999e-015 514 -1.06018066406 1.62205347879e-013 7.39366546634e-015 498 -1.05895996094 1.44632491752e-013 6.67507599495e-015 489 -1.05773925781 1.36245210803e-013 6.13161086944e-015 521 -1.05651855469 1.24309855629e-013 5.45408553148e-015 553 -1.05529785156 9.68748259825e-014 4.62814015575e-015 471 -1.05407714844 9.21875969529e-014 4.21224944889e-015 522 -1.05285644531 7.86801628342e-014 3.60495635979e-015 537 -1.05163574219 5.98508242892e-014 2.91940535296e-015 491 -1.05041503906 4.65332774963e-014 2.31345351633e-015 512 -1.04919433594 3.01412665337e-014 1.69578901334e-015 483 -1.04797363281 2.19224251145e-014 1.38463125719e-015 541 -1.04675292969 9.37429903947e-015 1.02698240012e-015 529 -1.04553222656 -1.23072986317e-015 8.78948667823e-016 559 -1.04431152344 -1.3622929546e-014 9.67794793038e-016 489 -1.04309082031 -2.27070751581e-014 1.21563453844e-015 516 -1.04187011719 -3.13368485689e-014 1.54288115849e-015 501 -1.04064941406 -4.43970954103e-014 1.97089203325e-015 556 -1.03942871094 -4.9469624459e-014 2.24206662445e-015 513 -1.03820800781 -5.68594331325e-014 2.5479433524e-015 512 -1.03698730469 -6.7302957958e-014 2.90614896007e-015 545 -1.03576660156 -7.27780682725e-014 3.15146614546e-015 538 -1.03454589844 -7.85670702291e-014 3.37275277141e-015 545 -1.03332519531 -7.60481306841e-014 3.40797782154e-015 499 -1.03210449219 -8.1990354768e-014 3.61193784936e-015 516 -1.03088378906 -8.44956194284e-014 3.72642051338e-015 515 -1.02966308594 -8.28268558234e-014 3.7205630597e-015 497 -1.02844238281 -8.58810841577e-014 3.82406340277e-015 507 -1.02722167969 -9.09645015439e-014 3.94176922613e-015 537 -1.02600097656 -9.56322631575e-014 4.02594965745e-015 571 -1.02478027344 -8.69802600958e-014 3.82764690929e-015 525 -1.02355957031 -8.68790155557e-014 3.7716150199e-015 543 -1.02233886719 -7.41564832848e-014 3.41709997336e-015 487 -1.02111816406 -7.79200070223e-014 3.44475844546e-015 535 -1.01989746094 -7.0422088779e-014 3.18912509451e-015 518 -1.01867675781 -6.20779978361e-014 2.88660984824e-015 504 -1.01745605469 -5.91675665244e-014 2.75191774169e-015 526 -1.01623535156 -5.22652104629e-014 2.45401476243e-015 541 -1.01501464844 -4.3208008955e-014 2.15738171947e-015 530 -1.01379394531 -3.07026950703e-014 1.74867961023e-015 510 -1.01257324219 -2.51162391389e-014 1.60162408502e-015 524 -1.01135253906 -1.78637410768e-014 1.52419431415e-015 573 -1.01013183594 5.68084728271e-016 1.28794804871e-015 545 -1.00891113281 9.41118054704e-015 1.39765254525e-015 525 -1.00769042969 1.83164043223e-014 1.58445853959e-015 477 -1.00646972656 3.35859239067e-014 2.09298711287e-015 521 -1.00524902344 4.46010913039e-014 2.44295374431e-015 513 -1.00402832031 5.67443608582e-014 2.94530968525e-015 501 -1.00280761719 6.54919175587e-014 3.33843596053e-015 476 -1.00158691406 8.76660911971e-014 4.20320201239e-015 509 -1.00036621094 1.09581691274e-013 4.99561690572e-015 532 -0.999145507813 1.18571485363e-013 5.43044946502e-015 521 -0.997924804688 1.41240121441e-013 6.3043801667e-015 541 -0.996704101563 1.50283316712e-013 6.80459097553e-015 518 -0.995483398438 1.64838255173e-013 7.58603836077e-015 494 -0.994262695313 1.83763850844e-013 8.27864420785e-015 513 -0.993041992188 2.18708428194e-013 9.41233619215e-015 559 -0.991821289063 2.08761333924e-013 9.62377808802e-015 484 -0.990600585938 2.27398287352e-013 1.03211421539e-014 497 -0.989379882813 2.31091870712e-013 1.07477836775e-014 472 -0.988159179688 2.54040280362e-013 1.15906038912e-014 489 -0.986938476563 2.75371258198e-013 1.24578053655e-014 497 -0.985717773438 3.08913769335e-013 1.35881256666e-014 524 -0.984497070313 3.32192784625e-013 1.44511054851e-014 535 -0.983276367188 3.16197764884e-013 1.44766667832e-014 482 -0.982055664063 3.57741608959e-013 1.577302385e-014 519 -0.980834960938 3.72738590118e-013 1.64251731802e-014 519 -0.979614257813 4.01439101704e-013 1.74444408619e-014 533 -0.978393554688 4.01197996557e-013 1.77792335196e-014 512 -0.977172851563 4.03011677755e-013 1.81773390687e-014 494 -0.975952148438 4.5485691218e-013 1.95995382124e-014 541 -0.974731445313 4.27921670209e-013 1.93673913226e-014 490 -0.973510742188 4.68481820912e-013 2.05586036726e-014 521 -0.972290039063 4.83295709495e-013 2.11832392708e-014 522 -0.971069335938 4.61350028437e-013 2.09935611224e-014 484 -0.969848632813 4.75240487614e-013 2.15553234702e-014 487 -0.968627929688 4.98957857346e-013 2.23760249566e-014 498 -0.967407226563 5.45858886695e-013 2.36587534783e-014 533 -0.966186523438 5.45228168059e-013 2.38766314165e-014 522 -0.964965820313 5.36720668571e-013 2.39171128242e-014 504 -0.963745117188 5.50125674207e-013 2.44162039358e-014 508 -0.962524414063 5.10219599353e-013 2.36921572743e-014 464 -0.961303710938 5.95088892702e-013 2.57807482388e-014 533 -0.960083007813 6.08463251751e-013 2.62118823306e-014 539 -0.958862304688 5.97202831918e-013 2.61165698248e-014 523 -0.957641601563 6.24690813866e-013 2.68590386093e-014 541 -0.956420898438 5.93322469562e-013 2.6273934142e-014 510 -0.955200195313 6.27735918046e-013 2.71150932265e-014 536 -0.953979492188 6.01561765526e-013 2.66125020893e-014 511 -0.952758789063 6.33649016599e-013 2.73707435928e-014 536 -0.951538085938 6.19334858488e-013 2.70834071757e-014 523 -0.950317382813 6.28299845565e-013 2.72942546998e-014 530 -0.949096679688 6.24870096268e-013 2.72231049853e-014 527 -0.947875976563 5.97340542436e-013 2.66123563446e-014 504 -0.946655273438 6.12927746731e-013 2.6910509761e-014 519 -0.945434570313 6.14899411577e-013 2.68958471711e-014 523 -0.944213867188 6.08922207851e-013 2.66875485628e-014 521 -0.942993164063 5.97067410042e-013 2.63215415935e-014 515 -0.941772460938 5.76943283352e-013 2.57142711491e-014 504 -0.940551757813 5.615857711e-013 2.52335006568e-014 496 -0.939331054688 5.78608700381e-013 2.5491729855e-014 516 -0.938110351563 5.84517134111e-013 2.55092948067e-014 526 -0.936889648438 5.29082636965e-013 2.40978925955e-014 483 -0.935668945313 5.68514795017e-013 2.47457771488e-014 529 -0.934448242188 5.3201877768e-013 2.37520505661e-014 503 -0.933227539063 5.32509393196e-013 2.34781933237e-014 516 -0.932006835938 5.09274942711e-013 2.27229097898e-014 504 -0.930786132813 5.09883260114e-013 2.2531464081e-014 514 -0.929565429688 4.62227160961e-013 2.11861313572e-014 478 -0.928344726563 4.9589811575e-013 2.16732668667e-014 526 -0.927124023438 4.57720070199e-013 2.05057635834e-014 501 -0.925903320313 4.21285207914e-013 1.93498877862e-014 477 -0.924682617188 4.47883533133e-013 1.96868404615e-014 521 -0.923461914063 4.36893096744e-013 1.90806752543e-014 528 -0.922241210938 4.29215370725e-013 1.8586674914e-014 538 -0.921020507813 3.84817866357e-013 1.7208070621e-014 505 -0.919799804688 3.95406778957e-013 1.70866355883e-014 541 -0.918579101563 3.87732044184e-013 1.66450216782e-014 549 -0.917358398438 3.40190180513e-013 1.51350695836e-014 512 -0.916137695313 3.10191742318e-013 1.4153862692e-014 487 -0.914916992188 3.03288843512e-013 1.36173573178e-014 504 -0.913696289063 3.08869649369e-013 1.33431182835e-014 546 -0.912475585938 2.6110173495e-013 1.18465410203e-014 496 -0.911254882813 2.43413288522e-013 1.11336085467e-014 489 -0.910034179688 2.24532255691e-013 1.03938663472e-014 479 -0.908813476563 2.25246770421e-013 9.98424829156e-015 524 -0.907592773438 1.79532682604e-013 8.53405466715e-015 458 -0.906372070313 1.88462655627e-013 8.46367097378e-015 516 -0.905151367188 1.80126284843e-013 7.89887023087e-015 546 -0.903930664063 1.50704830122e-013 6.86187507376e-015 510 -0.902709960938 1.48366563344e-013 6.4942274069e-015 559 -0.901489257813 1.2405832484e-013 5.65175489594e-015 526 -0.900268554688 1.0192664211e-013 4.79240738693e-015 505 -0.899047851563 9.15257026629e-014 4.28303084594e-015 524 -0.897827148438 7.0748733072e-014 3.47980724962e-015 503 -0.896606445313 6.07963276564e-014 2.99128608357e-015 544 -0.895385742188 4.28967685138e-014 2.35863060628e-015 502 -0.894165039063 2.87121639754e-014 1.82306578673e-015 510 -0.892944335938 1.74714520591e-014 1.46915907738e-015 501 -0.891723632813 4.98052665543e-015 1.28230686991e-015 525 -0.890502929688 -8.12187420477e-015 1.26324199885e-015 520 -0.889282226563 -1.79319684201e-014 1.37024339135e-015 510 -0.888061523438 -3.13439197406e-014 1.72159344505e-015 516 -0.886840820313 -4.22243262669e-014 2.10013702675e-015 530 -0.885620117188 -5.32384559857e-014 2.4676407877e-015 544 -0.884399414063 -5.94905497904e-014 2.72974695138e-015 531 -0.883178710938 -6.85245972151e-014 3.10644094374e-015 521 -0.881958007813 -7.54438891473e-014 3.35972377672e-015 531 -0.880737304688 -7.96338062695e-014 3.57205926079e-015 516 -0.879516601563 -8.75990187357e-014 3.8447647906e-015 534 -0.878295898438 -8.37478892564e-014 3.82888245624e-015 488 -0.877075195313 -9.76750654064e-014 4.22419818664e-015 542 -0.875854492188 -9.85304161985e-014 4.30241719621e-015 530 -0.874633789063 -9.59983264176e-014 4.27122705428e-015 509 -0.873413085938 -9.39046520175e-014 4.24904486988e-015 491 -0.872192382813 -1.00361408044e-013 4.38869136265e-015 525 -0.870971679688 -9.19484941961e-014 4.19368488047e-015 482 -0.869750976563 -9.93632096138e-014 4.31381624659e-015 532 -0.868530273438 -9.36679204197e-014 4.14110805035e-015 513 -0.867309570313 -8.59866865853e-014 3.89515470357e-015 489 -0.866088867188 -9.1862166445e-014 3.92876653314e-015 550 -0.864868164063 -7.38149265409e-014 3.41645757779e-015 471 -0.863647460938 -6.90376072208e-014 3.21176379593e-015 468 -0.862426757813 -6.60488765282e-014 2.99870123251e-015 496 -0.861206054688 -6.69607640799e-014 2.87265706382e-015 563 -0.859985351563 -5.30358803325e-014 2.41905203478e-015 501 -0.858764648438 -4.07794286217e-014 1.95256725132e-015 483 -0.857543945313 -3.38239475945e-014 1.66578595391e-015 487 -0.856323242188 -2.40606825692e-014 1.28928732648e-015 496 -0.855102539063 -1.26065492466e-014 9.40737934608e-016 487 -0.853881835938 -5.94547406983e-016 8.58758250096e-016 534 -0.852661132813 1.17595515371e-014 1.01233177282e-015 503 -0.851440429688 2.43349975374e-014 1.42806147699e-015 511 -0.850219726563 3.73740908724e-014 1.91596055936e-015 529 -0.848999023438 5.42010524813e-014 2.5666543674e-015 529 -0.847778320313 6.86874193611e-014 3.12960867433e-015 542 -0.846557617188 8.41479126429e-014 3.81969892063e-015 534 -0.845336914063 9.61328200328e-014 4.37415057186e-015 517 -0.844116210938 1.17997227768e-013 5.16398348181e-015 552 -0.842895507813 1.3021972578e-013 5.82903979604e-015 523 -0.841674804688 1.30023510744e-013 6.19833466284e-015 457 -0.840454101563 1.65898963991e-013 7.34119794053e-015 526 -0.839233398438 1.75354964603e-013 7.92247341317e-015 503 -0.838012695313 2.13977180415e-013 9.14455915436e-015 560 -0.836791992188 1.88047375201e-013 8.85213171005e-015 460 -0.835571289063 2.21973222435e-013 1.00457105356e-014 497 -0.834350585938 2.4213759835e-013 1.0917250129e-014 499 -0.833129882813 2.7000255231e-013 1.19180975764e-014 520 -0.831909179688 2.64568310667e-013 1.20688881963e-014 486 -0.830688476563 3.02085263102e-013 1.33550238286e-014 517 -0.829467773438 3.18342077189e-013 1.40847141987e-014 516 -0.828247070313 3.48189174119e-013 1.50775756148e-014 538 -0.827026367188 3.40033752637e-013 1.52791174948e-014 499 -0.825805664063 3.39665713154e-013 1.56199281313e-014 476 -0.824584960938 3.63002167752e-013 1.65160045955e-014 486 -0.823364257813 3.82054832461e-013 1.72720037127e-014 492 -0.822143554688 4.37989776848e-013 1.88555430275e-014 542 -0.820922851563 4.44649739054e-013 1.93374961447e-014 531 -0.819702148438 4.49856784384e-013 1.98049726283e-014 518 -0.818481445313 4.29672419206e-013 1.96492970221e-014 480 -0.817260742188 4.87293943986e-013 2.11779661713e-014 531 -0.816040039063 5.03077584579e-013 2.18638549447e-014 531 -0.814819335938 5.17197646895e-013 2.24091506106e-014 534 -0.813598632813 5.11638646789e-013 2.2547980922e-014 516 -0.812377929688 5.13330057218e-013 2.28655756704e-014 505 -0.811157226563 5.26223607265e-013 2.33908494133e-014 507 -0.809936523438 5.49437634786e-013 2.41124100237e-014 520 -0.808715820313 5.79375795269e-013 2.49718763525e-014 539 -0.807495117188 5.72871014219e-013 2.50173532104e-014 525 -0.806274414063 5.83384876302e-013 2.54254918917e-014 527 -0.805053710938 5.72603532339e-013 2.53407969573e-014 511 -0.803833007813 5.78176077593e-013 2.56113039594e-014 510 -0.802612304688 6.04172063273e-013 2.62760238187e-014 529 -0.801391601563 5.98896214888e-013 2.62693680568e-014 520 -0.800170898438 5.85019378607e-013 2.60642151437e-014 504 -0.798950195313 5.61891708625e-013 2.56244055293e-014 481 -0.797729492188 6.24461030793e-013 2.70262592329e-014 534 -0.796508789063 5.75535084723e-013 2.60024867411e-014 490 -0.795288085938 6.61182023047e-013 2.78672920482e-014 563 -0.794067382813 5.81522720086e-013 2.61389374502e-014 495 -0.792846679688 5.87948038015e-013 2.62423037029e-014 502 -0.791625976563 6.02698740258e-013 2.65330703943e-014 516 -0.790405273438 6.06936181236e-013 2.65654650268e-014 522 -0.789184570313 5.89330050329e-013 2.6096565488e-014 510 -0.787963867188 5.99828258994e-013 2.62293859995e-014 523 -0.786743164063 5.76116705662e-013 2.55871794905e-014 507 -0.785522460938 5.22159647033e-013 2.42418408912e-014 464 -0.784301757813 5.65080953587e-013 2.50734672698e-014 508 -0.783081054688 4.82949544868e-013 2.29995672569e-014 441 -0.781860351563 5.58264238632e-013 2.45555951044e-014 517 -0.780639648438 5.28023520764e-013 2.36886604555e-014 497 -0.779418945313 5.30282404772e-013 2.35088993356e-014 509 -0.778198242188 5.27320785767e-013 2.32427887552e-014 515 -0.776977539063 5.33024146194e-013 2.31387242602e-014 531 -0.775756835938 5.06038690567e-013 2.22638185097e-014 517 -0.774536132813 4.99591013223e-013 2.18555501495e-014 523 -0.773315429688 5.03368807361e-013 2.16326592793e-014 542 -0.772094726563 4.95604482416e-013 2.11842168634e-014 548 -0.770874023438 4.51877235861e-013 1.99290407505e-014 515 -0.769653320313 4.45785289404e-013 1.94528950555e-014 526 -0.768432617188 4.04689220294e-013 1.82248354404e-014 494 -0.767211914063 3.80529367812e-013 1.736873905e-014 481 -0.765991210938 3.88566103739e-013 1.72123885685e-014 511 -0.764770507813 3.57995239297e-013 1.61794787119e-014 491 -0.763549804688 3.9472952419e-013 1.65884062613e-014 568 -0.762329101563 3.61607631801e-013 1.55490847083e-014 543 -0.761108398438 3.44663727576e-013 1.47955944777e-014 545 -0.759887695313 3.2053947795e-013 1.3932567608e-014 532 -0.758666992188 2.88372356104e-013 1.28420540279e-014 507 -0.757446289063 2.88750427052e-013 1.24649023107e-014 540 -0.756225585938 2.73649777908e-013 1.17609684101e-014 545 -0.755004882813 2.3883531148e-013 1.05986825087e-014 512 -0.753784179688 2.34848850898e-013 1.0140233723e-014 541 -0.752563476563 2.11932967593e-013 9.27953930433e-015 527 -0.751342773438 1.9185545101e-013 8.47908320936e-015 518 -0.750122070313 1.77181161756e-013 7.7979039996e-015 523 -0.748901367188 1.50843834087e-013 6.83960644714e-015 494 -0.747680664063 1.42106781106e-013 6.34530027733e-015 511 -0.746459960938 1.32435407223e-013 5.76562382947e-015 540 -0.745239257813 1.0831498261e-013 4.8568729868e-015 510 -0.744018554688 9.22859544208e-014 4.21136807776e-015 497 -0.742797851563 8.05794675126e-014 3.64240933919e-015 513 -0.741577148438 6.48667652772e-014 2.98721601703e-015 501 -0.740356445313 5.12913562013e-014 2.37436817838e-015 507 -0.739135742188 4.01124337963e-014 1.86862088924e-015 527 -0.737915039063 2.68684372552e-014 1.32701739632e-015 526 -0.736694335938 1.14726437711e-014 7.75656445889e-016 482 -0.735473632813 1.66388800993e-015 5.19377960704e-016 472 -0.734252929688 -1.01206792675e-014 6.71405626469e-016 522 -0.733032226563 -2.03538478539e-014 1.01408241944e-015 525 -0.731811523438 -2.8438190268e-014 1.3429218185e-015 493 -0.730590820313 -3.91138283087e-014 1.76134624349e-015 516 -0.729370117188 -4.68103391371e-014 2.11548384769e-015 503 -0.728149414063 -5.25516209742e-014 2.38979564435e-015 491 -0.726928710938 -6.1084527019e-014 2.7218623651e-015 508 -0.725708007813 -6.85047635277e-014 3.01160591179e-015 520 -0.724487304688 -7.167032312e-014 3.19852752312e-015 504 -0.723266601563 -8.14412316688e-014 3.51885349387e-015 537 -0.722045898438 -8.57761951215e-014 3.69652848532e-015 540 -0.720825195313 -8.90161972527e-014 3.836387957e-015 540 -0.719604492188 -9.02656096428e-014 3.90275450097e-015 537 -0.718383789063 -8.86779395165e-014 3.89526657915e-015 521 -0.717163085938 -9.04196466595e-014 3.94786082956e-015 528 -0.715942382813 -8.18018118116e-014 3.72520770502e-015 486 -0.714721679688 -8.86011159726e-014 3.88216155045e-015 527 -0.713500976563 -8.92842981845e-014 3.82799547277e-015 552 -0.712280273438 -7.7355270068e-014 3.53464625606e-015 488 -0.711059570313 -7.37543613879e-014 3.3974860863e-015 484 -0.709838867188 -7.23611917288e-014 3.2694080884e-015 507 -0.708618164063 -6.52826778123e-014 2.99307052053e-015 497 -0.707397460938 -5.92659440146e-014 2.73988175024e-015 498 -0.706176757813 -5.66529193455e-014 2.54251161407e-015 541 -0.704956054688 -4.62839602989e-014 2.15473236399e-015 526 -0.703735351563 -3.71693929183e-014 1.82747565004e-015 503 -0.702514648438 -2.76235166537e-014 1.46729094585e-015 518 -0.701293945313 -1.87192813379e-014 1.18074353769e-015 536 -0.700073242188 -9.10355302795e-015 9.92823136639e-016 526 -0.698852539063 4.57522681638e-015 9.63416909953e-016 532 -0.697631835938 1.46163503359e-014 1.18799267583e-015 526 -0.696411132813 2.7792113053e-014 1.55684509154e-015 513 -0.695190429688 3.91327717299e-014 1.99958733804e-015 509 -0.693969726563 5.55852273739e-014 2.64319039038e-015 528 -0.692749023438 7.01060940949e-014 3.22552480917e-015 531 -0.691528320313 7.99222132282e-014 3.70768871489e-015 505 -0.690307617188 9.72988768562e-014 4.4334743814e-015 512 -0.689086914063 1.10315970888e-013 4.99387516401e-015 511 -0.687866210938 1.29733421625e-013 5.76633973325e-015 526 -0.686645507813 1.3552381835e-013 6.2745185173e-015 481 -0.685424804688 1.55990680435e-013 7.0600875578e-015 500 -0.684204101563 1.86516396045e-013 8.08954060958e-015 542 -0.682983398438 2.03873139824e-013 8.8089053924e-015 545 -0.681762695313 2.08589433818e-013 9.36076124874e-015 503 -0.680541992188 2.55234760726e-013 1.07540050948e-014 569 -0.679321289063 2.54419686971e-013 1.10882029211e-014 532 -0.678100585938 2.57407451185e-013 1.15345989856e-014 502 -0.676879882813 2.86740140339e-013 1.25253530541e-014 528 -0.675659179688 2.97343886879e-013 1.31553437533e-014 514 -0.674438476563 3.07049244668e-013 1.37386458491e-014 502 -0.673217773438 3.2188081771e-013 1.44428113782e-014 499 -0.671997070313 3.48412698442e-013 1.53851444373e-014 515 -0.670776367188 3.41973252526e-013 1.56354115157e-014 480 -0.669555664063 3.74539883936e-013 1.66903717522e-014 505 -0.668334960938 3.90600929341e-013 1.74021456249e-014 505 -0.667114257813 4.12973899268e-013 1.82176278777e-014 515 -0.665893554688 3.88385155168e-013 1.80072121993e-014 466 -0.664672851563 4.46594686173e-013 1.96365083812e-014 518 -0.663452148438 4.65892702474e-013 2.03854864401e-014 523 -0.662231445313 5.01517131194e-013 2.14929760615e-014 545 -0.661010742188 5.05231362501e-013 2.18524074453e-014 535 -0.659790039063 5.05838214032e-013 2.21483305355e-014 522 -0.658569335938 5.06813130622e-013 2.24488023666e-014 510 -0.657348632813 4.84764280842e-013 2.22241643519e-014 476 -0.656127929688 5.14092103951e-013 2.31111774731e-014 495 -0.654907226563 4.77861838262e-013 2.25048515568e-014 451 -0.653686523438 5.67635666031e-013 2.4752957227e-014 526 -0.652465820313 5.28532742498e-013 2.40760421665e-014 482 -0.651245117188 5.46142216964e-013 2.4648720455e-014 491 -0.650024414063 5.90290493189e-013 2.5788217652e-014 524 -0.648803710938 5.42585528171e-013 2.48703411005e-014 476 -0.647583007813 5.57844116608e-013 2.53572158646e-014 484 -0.646362304688 5.90515725252e-013 2.62005981042e-014 508 -0.645141601563 6.18492836608e-013 2.69171701783e-014 528 -0.643920898438 6.34864666957e-013 2.73464862333e-014 539 -0.642700195313 6.41302954163e-013 2.75475132533e-014 542 -0.641479492188 6.46124205366e-013 2.77037413984e-014 544 -0.640258789063 6.12841211127e-013 2.69807790297e-014 516 -0.639038085938 6.39024550716e-013 2.75784448994e-014 537 -0.637817382813 6.25700805054e-013 2.7259124863e-014 527 -0.636596679688 6.04384848919e-013 2.67663916068e-014 510 -0.635375976563 6.14257194084e-013 2.69159687788e-014 521 -0.634155273438 6.29122413101e-013 2.71796610982e-014 536 -0.632934570313 5.93696071807e-013 2.63218334119e-014 509 -0.631713867188 6.21074631171e-013 2.68086902728e-014 537 -0.630493164063 5.91306998993e-013 2.60393747484e-014 516 -0.629272460938 5.87139250129e-013 2.58072975232e-014 518 -0.628051757813 5.46333846447e-013 2.47169332886e-014 489 -0.626831054688 6.19444458791e-013 2.61199881961e-014 563 -0.625610351563 5.93410314175e-013 2.53635431805e-014 548 -0.624389648438 5.41396555019e-013 2.401347854e-014 509 -0.623168945313 5.55104765141e-013 2.41075331357e-014 531 -0.621948242188 5.09410339998e-013 2.28677575195e-014 497 -0.620727539063 5.01840145215e-013 2.23974379028e-014 503 -0.619506835938 4.63779068468e-013 2.12797027194e-014 476 -0.618286132813 4.91881006323e-013 2.16352760394e-014 518 -0.617065429688 4.52555242932e-013 2.0491472446e-014 489 -0.615844726563 4.85215838762e-013 2.08901073142e-014 541 -0.614624023438 3.99379654294e-013 1.861062444e-014 462 -0.613403320313 4.36429569325e-013 1.91536960743e-014 521 -0.612182617188 4.2921630994e-013 1.86626720868e-014 531 -0.610961914063 4.06584756992e-013 1.78164820317e-014 523 -0.609741210938 3.69409564496e-013 1.65919245406e-014 498 -0.608520507813 3.60770304492e-013 1.61267766565e-014 503 -0.607299804688 3.41313175647e-013 1.53084252946e-014 500 -0.606079101563 3.31389298057e-013 1.47059554172e-014 511 -0.604858398438 2.88390058932e-013 1.33344812548e-014 471 -0.603637695313 3.22881185788e-013 1.37480533794e-014 556 -0.602416992188 2.84068082693e-013 1.25011329306e-014 521 -0.601196289063 2.48854482337e-013 1.13323077933e-014 487 -0.599975585938 2.34428912443e-013 1.06275941593e-014 493 -0.598754882813 2.24449893935e-013 1.00356127012e-014 507 -0.597534179688 2.23610951085e-013 9.65217745864e-015 545 -0.596313476563 1.99990015467e-013 8.75321978666e-015 532 -0.595092773438 1.65029941922e-013 7.62151625048e-015 479 -0.593872070313 1.62976721468e-013 7.18240014597e-015 529 -0.592651367188 1.50164532264e-013 6.50701635682e-015 550 -0.591430664063 1.29628741988e-013 5.69466780883e-015 539 -0.590209960938 1.18420148124e-013 5.17402394398e-015 551 -0.588989257813 8.84251769445e-014 4.15270711086e-015 483 -0.587768554688 8.04673772384e-014 3.69506320533e-015 516 -0.586547851563 5.94441550349e-014 2.86421928629e-015 486 -0.585327148438 4.54976277418e-014 2.24860184556e-015 494 -0.584106445313 3.57477673024e-014 1.81168080159e-015 527 -0.582885742188 1.98336797387e-014 1.24121768303e-015 530 -0.581665039063 7.94113527503e-015 9.29137465112e-016 502 -0.580444335938 -4.02811762007e-015 9.16454809632e-016 555 -0.579223632813 -1.46965809308e-014 1.02769582083e-015 489 -0.578002929688 -2.90049163065e-014 1.4792068508e-015 555 -0.576782226563 -3.73842153803e-014 1.81238851194e-015 516 -0.575561523438 -4.45133757351e-014 2.13365871511e-015 485 -0.574340820313 -5.63236550914e-014 2.55862610547e-015 520 -0.573120117188 -6.2249629599e-014 2.8517501181e-015 499 -0.571899414063 -6.32673385419e-014 3.00292697331e-015 461 -0.570678710938 -7.71602864546e-014 3.44262018268e-015 516 -0.569458007813 -8.64050382041e-014 3.785738803e-015 531 -0.568237304688 -8.46332437316e-014 3.84921419733e-015 490 -0.567016601563 -9.20863401193e-014 4.09831866488e-015 510 -0.565795898438 -9.70375616011e-014 4.25714919308e-015 524 -0.564575195313 -9.45707627415e-014 4.25535180439e-015 497 -0.563354492188 -9.9724345961e-014 4.37316310253e-015 523 -0.562133789063 -1.00393291539e-013 4.39928695742e-015 523 -0.560913085938 -9.72911081836e-014 4.33652678243e-015 505 -0.559692382813 -9.78320665687e-014 4.31709495232e-015 515 -0.558471679688 -1.01858273397e-013 4.34503520173e-015 551 -0.557250976563 -9.99563654232e-014 4.24026836608e-015 557 -0.556030273438 -7.97221746212e-014 3.70593889203e-015 464 -0.554809570313 -8.91911183582e-014 3.82293036003e-015 546 -0.553588867188 -7.66219315727e-014 3.43026899016e-015 501 -0.552368164063 -7.14770083514e-014 3.17170086951e-015 511 -0.551147460938 -6.45614702361e-014 2.86444408766e-015 513 -0.549926757813 -5.81568423446e-014 2.56411270981e-015 521 -0.548706054688 -4.80390417924e-014 2.15254678977e-015 510 -0.547485351563 -3.97888821546e-014 1.78085166867e-015 520 -0.546264648438 -2.97185360391e-014 1.35065514369e-015 529 -0.545043945313 -1.93598638357e-014 9.36697927332e-016 526 -0.543823242188 -6.08092886546e-015 5.31288609438e-016 498 -0.542602539063 5.00378355489e-015 5.1728482544e-016 508 -0.541381835938 1.74386435643e-014 9.43990949269e-016 483 -0.540161132813 3.22160987461e-014 1.48926412558e-015 546 -0.538940429688 4.16750238786e-014 1.98738270018e-015 478 -0.537719726563 5.92682162012e-014 2.67373049178e-015 519 -0.536499023438 7.17104897844e-014 3.25602406708e-015 503 -0.535278320313 9.10665352156e-014 4.02242028335e-015 528 -0.534057617188 1.05077099133e-013 4.70052482405e-015 511 -0.532836914063 1.16924467813e-013 5.31253908259e-015 493 -0.531616210938 1.40306996476e-013 6.19908646301e-015 520 -0.530395507813 1.42608969383e-013 6.56989213746e-015 477 -0.529174804688 1.66257594832e-013 7.47815529522e-015 500 -0.527954101563 1.79552569028e-013 8.13441510778e-015 492 -0.526733398438 2.16977697239e-013 9.33978017452e-015 544 -0.525512695313 1.98366903777e-013 9.32316261405e-015 456 -0.524291992188 2.61344540948e-013 1.10564202047e-014 562 -0.523071289063 2.5191105403e-013 1.12393668652e-014 505 -0.521850585938 2.79318587951e-013 1.22448472125e-014 523 -0.520629882813 2.71673099673e-013 1.24669747924e-014 477 -0.519409179688 2.98873250868e-013 1.34348565953e-014 497 -0.518188476563 3.12725157927e-013 1.4080237893e-014 495 -0.516967773438 3.34962312282e-013 1.49746226453e-014 502 -0.515747070313 3.76292202445e-013 1.6261845875e-014 537 -0.514526367188 3.69585720839e-013 1.64677118464e-014 505 -0.513305664063 4.0996346761e-013 1.77139868338e-014 537 -0.512084960938 4.35676269494e-013 1.86344433568e-014 548 -0.510864257813 3.82993256112e-013 1.77404562443e-014 467 -0.509643554688 4.0553437047e-013 1.85661187439e-014 478 -0.508422851563 4.76558146074e-013 2.05059767717e-014 541 -0.507202148438 4.60793412345e-013 2.04609124815e-014 508 -0.505981445313 4.67583049638e-013 2.09269942644e-014 500 -0.504760742188 4.78618072615e-013 2.14391225672e-014 499 -0.503540039063 5.23190929808e-013 2.2696601578e-014 532 -0.502319335938 4.82071850128e-013 2.20155710138e-014 480 -0.501098632813 5.15951659135e-013 2.3062214956e-014 501 -0.499877929688 5.58245417813e-013 2.42140257631e-014 532 -0.498657226563 5.72299860558e-013 2.47054443358e-014 537 -0.497436523438 5.73310055721e-013 2.49113010877e-014 530 -0.496215820313 5.28211317532e-013 2.41171788688e-014 480 -0.494995117188 5.63385643994e-013 2.50522668915e-014 506 -0.493774414063 5.73487258413e-013 2.54001067278e-014 510 -0.492553710938 5.74268694636e-013 2.55853994229e-014 504 -0.491333007813 6.06487228274e-013 2.64246156602e-014 527 -0.490112304688 6.07641938764e-013 2.65242261878e-014 525 -0.488891601563 6.24961297662e-013 2.69730381926e-014 537 -0.487670898438 5.85602679758e-013 2.61925448799e-014 500 -0.486450195313 6.03777099117e-013 2.66085540399e-014 515 -0.485229492188 5.53580549576e-013 2.55101391018e-014 471 -0.484008789063 5.8376249252e-013 2.6187328194e-014 497 -0.482788085938 6.05428567304e-013 2.66543242935e-014 516 -0.481567382813 6.04218185464e-013 2.66008354093e-014 516 -0.480346679688 5.88562036429e-013 2.61918872295e-014 505 -0.479125976563 5.78848108996e-013 2.59138836618e-014 499 -0.477905273438 5.35395868341e-013 2.48292623402e-014 465 -0.476684570313 6.16681995245e-013 2.65385577827e-014 540 -0.475463867188 6.02989259434e-013 2.61191103549e-014 533 -0.474243164063 5.96240234543e-013 2.5826686005e-014 533 -0.473022460938 5.41207021767e-013 2.44499030561e-014 490 -0.471801757813 5.67787553599e-013 2.48760111254e-014 521 -0.470581054688 5.68538529203e-013 2.46965470365e-014 530 -0.469360351563 5.50079757878e-013 2.40771832779e-014 522 -0.468139648438 5.89722266523e-013 2.47019919361e-014 570 -0.466918945313 5.65190373966e-013 2.39276053925e-014 558 -0.465698242188 5.23349492972e-013 2.27775307596e-014 528 -0.464477539063 4.88021575795e-013 2.17399518977e-014 504 -0.463256835938 4.67979572912e-013 2.10151679654e-014 496 -0.462036132813 4.44189615273e-013 2.01926534352e-014 484 -0.460815429688 4.70159680001e-013 2.04831629635e-014 527 -0.459594726563 4.38832232685e-013 1.94920095836e-014 507 -0.458374023438 4.37177049485e-013 1.91200221353e-014 523 -0.457153320313 4.00372172803e-013 1.79807924701e-014 496 -0.455932617188 3.93029536589e-013 1.74767228289e-014 506 -0.454711914063 3.97537420541e-013 1.72083734403e-014 534 -0.453491210938 3.44420242376e-013 1.57090033037e-014 481 -0.452270507813 3.64261197726e-013 1.57834083256e-014 533 -0.451049804688 3.49489443898e-013 1.50878306246e-014 537 -0.449829101563 3.34164653334e-013 1.4400568573e-014 539 -0.448608398438 3.19520067344e-013 1.37069201882e-014 544 -0.447387695313 3.04534852423e-013 1.29824396292e-014 551 -0.446166992188 2.74068083611e-013 1.1947576979e-014 527 -0.444946289063 2.59380633112e-013 1.12545582653e-014 532 -0.443725585938 2.31275638289e-013 1.02604076528e-014 509 -0.442504882813 2.14072594236e-013 9.50801687232e-015 508 -0.441284179688 2.09885761836e-013 9.02642126088e-015 542 -0.440063476563 1.81300795043e-013 8.04912543345e-015 509 -0.438842773438 1.75325907346e-013 7.53020746025e-015 544 -0.437622070313 1.63752707707e-013 6.93287831499e-015 560 -0.436401367188 1.27816976803e-013 5.77673433765e-015 492 -0.435180664063 1.16596572337e-013 5.20400594759e-015 505 -0.433959960938 1.07898238439e-013 4.67301261645e-015 537 -0.432739257813 9.62832620627e-014 4.07822567977e-015 563 -0.431518554688 7.52876781278e-014 3.309963011e-015 523 -0.430297851563 5.50083441843e-014 2.54302899382e-015 476 -0.429077148438 4.34034178227e-014 1.96619186489e-015 501 -0.427856445313 3.1552997472e-014 1.4457588953e-015 503 -0.426635742188 1.92047930242e-014 9.16681305235e-016 487 -0.425415039063 6.70432158564e-015 4.13355439058e-016 457 -0.424194335938 -3.71097773074e-015 3.18634829817e-016 517 -0.422973632813 -1.55128411642e-014 7.08854037416e-016 560 -0.421752929688 -2.64748841616e-014 1.16579915874e-015 540 -0.420532226563 -3.48952644226e-014 1.54524969734e-015 522 -0.419311523438 -4.43304614768e-014 1.94565573431e-015 526 -0.418090820313 -5.35236924011e-014 2.32456724036e-015 535 -0.416870117188 -6.11984397545e-014 2.64974552218e-015 537 -0.415649414063 -6.30660550204e-014 2.84280704161e-015 495 -0.414428710938 -6.58347464043e-014 3.01888094848e-015 478 -0.413208007813 -7.35806049929e-014 3.30836514001e-015 497 -0.411987304688 -7.71440394765e-014 3.48217307814e-015 493 -0.410766601563 -8.1826222424e-014 3.66051409338e-015 502 -0.409545898438 -8.2643361657e-014 3.73861661869e-015 491 -0.408325195313 -8.75804746242e-014 3.87664987334e-015 513 -0.407104492188 -8.7960920096e-014 3.91168020897e-015 509 -0.405883789063 -8.89899204819e-014 3.93883258522e-015 514 -0.404663085938 -9.06288725163e-014 3.95979329132e-015 528 -0.403442382813 -8.47519170487e-014 3.78380994273e-015 506 -0.402221679688 -8.48307669534e-014 3.73325261975e-015 522 -0.401000976563 -7.72824262838e-014 3.48027625245e-015 499 -0.399780273438 -7.49024300634e-014 3.34645248529e-015 509 -0.398559570313 -6.97250004957e-014 3.13102917197e-015 505 -0.397338867188 -6.34042772091e-014 2.86752527595e-015 501 -0.396118164063 -6.00369711339e-014 2.66802484552e-015 523 -0.394897460938 -4.84674882714e-014 2.23419191804e-015 490 -0.393676757813 -4.303623982e-014 1.98632018926e-015 503 -0.392456054688 -3.34721593267e-014 1.59104551244e-015 494 -0.391235351563 -2.47640543669e-014 1.23166160073e-015 501 -0.390014648438 -1.61465705137e-014 9.05874949102e-016 513 -0.388793945313 -3.15247013437e-015 5.77446169503e-016 514 -0.387573242188 7.01477925813e-015 6.6864860193e-016 510 -0.386352539063 1.96250947815e-014 1.04646543407e-015 514 -0.385131835938 3.23982792421e-014 1.54844387379e-015 518 -0.383911132813 4.68436281394e-014 2.12416083665e-015 531 -0.382690429688 5.50739108175e-014 2.58219208189e-015 480 -0.381469726563 6.81747713424e-014 3.19248167334e-015 471 -0.380249023438 9.34027935169e-014 4.06765229924e-015 539 -0.379028320313 1.01859414305e-013 4.57266455385e-015 505 -0.377807617188 1.1715306397e-013 5.23259800855e-015 508 -0.376586914063 1.30256267502e-013 5.89139258353e-015 493 -0.375366210938 1.48687916704e-013 6.63090183609e-015 507 -0.374145507813 1.88710109421e-013 7.88576794431e-015 576 -0.372924804688 1.76443515598e-013 7.95407386895e-015 495 -0.371704101563 2.05139408913e-013 8.98981021996e-015 523 -0.370483398438 2.32498624966e-013 9.97602431011e-015 545 -0.369262695313 2.2949488829e-013 1.02881313837e-014 499 -0.368041992188 2.4278525266e-013 1.09577127985e-014 492 -0.366821289063 2.61190249298e-013 1.17172784305e-014 498 -0.365600585938 2.79615614781e-013 1.25163203454e-014 500 -0.364379882813 3.31479356448e-013 1.40545911881e-014 557 -0.363159179688 3.10208943735e-013 1.39375002612e-014 496 -0.361938476563 3.34309715972e-013 1.48548962454e-014 507 -0.360717773438 3.80464123903e-013 1.62442503317e-014 549 -0.359497070313 3.59095961955e-013 1.61295376764e-014 496 -0.358276367188 3.75953927466e-013 1.6868697275e-014 497 -0.357055664063 4.03895259122e-013 1.78371588299e-014 513 -0.355834960938 4.24798551409e-013 1.86326337965e-014 520 -0.354614257813 4.33215519367e-013 1.91676571867e-014 511 -0.353393554688 4.72857331419e-013 2.03515496104e-014 540 -0.352172851563 4.63098141723e-013 2.04688015352e-014 512 -0.350952148438 4.82418836562e-013 2.11982995805e-014 518 -0.349731445313 4.80198971481e-013 2.14340454829e-014 502 -0.348510742188 5.08452126838e-013 2.23416780279e-014 518 -0.347290039063 5.08144715422e-013 2.26133750704e-014 505 -0.346069335938 5.23825082156e-013 2.3219131482e-014 509 -0.344848632813 5.1567917409e-013 2.32732013767e-014 491 -0.343627929688 5.18256019366e-013 2.35336143111e-014 485 -0.342407226563 5.41224075085e-013 2.42779934874e-014 497 -0.341186523438 5.51707366283e-013 2.46985261053e-014 499 -0.339965820313 5.89483365411e-013 2.57034073378e-014 526 -0.338745117188 5.74431249303e-013 2.55373669033e-014 506 -0.337524414063 5.76445739694e-013 2.57288357585e-014 502 -0.336303710938 5.73722993672e-013 2.57878560585e-014 495 -0.335083007813 6.43916931778e-013 2.74327501614e-014 551 -0.333862304688 5.73936521161e-013 2.5981994433e-014 488 -0.332641601563 5.95677609232e-013 2.65348909298e-014 504 -0.331420898438 6.00310227495e-013 2.66885201444e-014 506 -0.330200195313 5.83326055125e-013 2.63535988893e-014 490 -0.328979492188 6.02891963556e-013 2.68036235531e-014 506 -0.327758789063 6.09659714282e-013 2.69455596944e-014 512 -0.326538085938 6.04670916253e-013 2.68038827079e-014 509 -0.325317382813 6.1511260143e-013 2.70031153903e-014 519 -0.324096679688 6.31305077778e-013 2.7296712702e-014 535 -0.322875976563 5.89030196681e-013 2.62667259778e-014 503 -0.321655273438 6.26807524598e-013 2.70020907793e-014 539 -0.320434570313 6.11084899509e-013 2.65477622487e-014 530 -0.319213867188 5.81322884675e-013 2.57454072165e-014 510 -0.317993164063 5.96736105566e-013 2.59254412719e-014 530 -0.316772460938 5.5785482198e-013 2.49278656769e-014 501 -0.315551757813 5.27152674489e-013 2.40163203576e-014 482 -0.314331054688 5.81623981837e-013 2.50350697936e-014 540 -0.313110351563 5.21135929538e-013 2.3476925559e-014 493 -0.311889648438 5.38396675783e-013 2.36164017814e-014 520 -0.310668945313 5.09905637511e-013 2.27426076191e-014 503 -0.309448242188 5.05171787912e-013 2.23983430441e-014 509 -0.308227539063 5.07405696798e-013 2.21321931013e-014 526 -0.307006835938 4.78993201488e-013 2.12187678662e-014 510 -0.305786132813 4.8725176293e-013 2.10950761889e-014 534 -0.304565429688 4.48767990656e-013 1.99008370442e-014 509 -0.303344726563 4.60675106941e-013 1.98530289654e-014 539 -0.302124023438 4.43212841158e-013 1.91551864598e-014 536 -0.300903320313 4.16436241152e-013 1.82389189416e-014 522 -0.299682617188 3.86093258771e-013 1.71767338223e-014 506 -0.298461914063 3.88159529608e-013 1.68572968992e-014 531 -0.297241210938 3.80621364552e-013 1.63484844222e-014 543 -0.296020507813 3.48016808092e-013 1.52460025922e-014 522 -0.294799804688 3.45009101899e-013 1.47802952414e-014 546 -0.293579101563 3.16062478173e-013 1.3771399084e-014 528 -0.292358398438 3.02108657566e-013 1.307805554e-014 535 -0.291137695313 2.57005518827e-013 1.16865103047e-014 485 -0.289916992188 2.43127098234e-013 1.10012327953e-014 490 -0.288696289063 2.45972809484e-013 1.06648465361e-014 534 -0.287475585938 2.1245300253e-013 9.58135892054e-015 494 -0.286254882813 2.19731540437e-013 9.31881738261e-015 559 -0.285034179688 1.8308449828e-013 8.15470551478e-015 507 -0.283813476563 1.62133353573e-013 7.32048130437e-015 494 -0.282592773438 1.55448080434e-013 6.80545985696e-015 526 -0.281372070313 1.34884409856e-013 5.97554251321e-015 515 -0.280151367188 1.19626204976e-013 5.29759982872e-015 517 -0.278930664063 9.79481544773e-014 4.4583370181e-015 491 -0.277709960938 8.84245239764e-014 3.89668374543e-015 527 -0.276489257813 7.2307979864e-014 3.23110198621e-015 518 -0.275268554688 5.71500307683e-014 2.56712849464e-015 522 -0.274047851563 4.12504292405e-014 1.91669700073e-015 505 -0.272827148438 2.48145761146e-014 1.26880083189e-015 457 -0.271606445313 1.52478853475e-014 8.51818240017e-016 567 -0.270385742188 1.89478205624e-015 5.26274954514e-016 509 -0.269165039063 -9.28550672021e-015 6.64246406971e-016 543 -0.267944335938 -2.15313367305e-014 1.06694563757e-015 537 -0.266723632813 -3.07968404744e-014 1.45730303562e-015 502 -0.265502929688 -4.37227159319e-014 1.94428775239e-015 538 -0.264282226563 -5.32938675643e-014 2.34948490844e-015 536 -0.263061523438 -6.61498142543e-014 2.79977303044e-015 574 -0.261840820313 -6.34067074507e-014 2.90604925014e-015 486 -0.260620117188 -7.64042480425e-014 3.3488876557e-015 529 -0.259399414063 -7.83088411381e-014 3.51072678221e-015 504 -0.258178710938 -8.60430543747e-014 3.79781950033e-015 519 -0.256958007813 -8.95710670938e-014 3.97929540985e-015 511 -0.255737304688 -8.8252450082e-014 4.02146696049e-015 485 -0.254516601563 -9.05443959563e-014 4.12807866144e-015 484 -0.253295898438 -9.46683908168e-014 4.25440760218e-015 498 -0.252075195313 -1.0308508123e-013 4.47938688264e-015 532 -0.250854492188 -1.09848840333e-013 4.61114028595e-015 570 -0.249633789063 -1.0006058295e-013 4.39193413636e-015 521 -0.248413085938 -9.49251544918e-014 4.23646042697e-015 504 -0.247192382813 -9.90254150954e-014 4.26920762671e-015 540 -0.245971679688 -9.38405107327e-014 4.09134912289e-015 528 -0.244750976563 -9.06681265783e-014 3.9202894649e-015 537 -0.243530273438 -8.28304057638e-014 3.63663335392e-015 521 -0.242309570313 -7.61227714346e-014 3.37220294436e-015 512 -0.241088867188 -7.50904938599e-014 3.19810125533e-015 554 -0.239868164063 -6.21178262281e-014 2.74583501175e-015 515 -0.238647460938 -5.12918769103e-014 2.32862907632e-015 489 -0.237426757813 -4.56548165833e-014 2.01429319184e-015 520 -0.236206054688 -3.38889112198e-014 1.545915503e-015 491 -0.234985351563 -2.587082704e-014 1.14038691184e-015 538 -0.233764648438 -1.42505349262e-014 6.63168872042e-016 524 -0.232543945313 -2.1802106997e-015 2.6440815198e-016 515 -0.231323242188 9.07745245234e-015 4.85603210299e-016 472 -0.230102539063 2.32737057064e-014 1.05542613698e-015 520 -0.228881835938 3.5722638864e-014 1.62208775084e-015 499 -0.227661132813 5.15928946273e-014 2.27639296256e-015 522 -0.226440429688 5.80426905988e-014 2.71970956167e-015 460 -0.225219726563 8.15196616816e-014 3.57438826234e-015 524 -0.223999023438 9.2349674289e-014 4.14123457654e-015 500 -0.222778320313 1.15723450031e-013 5.01506074224e-015 535 -0.221557617188 1.24954645026e-013 5.5651008368e-015 506 -0.220336914063 1.41027706735e-013 6.28590612529e-015 505 -0.219116210938 1.61073838816e-013 7.10777902255e-015 515 -0.217895507813 1.71990097427e-013 7.70003295425e-015 500 -0.216674804688 1.81377588604e-013 8.26970945532e-015 482 -0.215454101563 2.17720949755e-013 9.46499552291e-015 530 -0.214233398438 2.40558404627e-013 1.03511948211e-014 541 -0.213012695313 2.35402671403e-013 1.05985382172e-014 494 -0.211791992188 2.50174382309e-013 1.13206574044e-014 489 -0.210571289063 2.69486069016e-013 1.21315849181e-014 494 -0.209350585938 2.95437562144e-013 1.30766982273e-014 511 -0.208129882813 3.31584219592e-013 1.42634060233e-014 541 -0.206909179688 3.43127585581e-013 1.48976464241e-014 531 -0.205688476563 3.58036859028e-013 1.56033717549e-014 527 -0.204467773438 3.74395671833e-013 1.62998178183e-014 528 -0.203247070313 3.74244688326e-013 1.66601668679e-014 505 -0.202026367188 4.04867953602e-013 1.76750860986e-014 525 -0.200805664063 3.90577305728e-013 1.77041717379e-014 487 -0.199584960938 4.17167854418e-013 1.86435745523e-014 501 -0.198364257813 4.41329536431e-013 1.94906795738e-014 513 -0.197143554688 4.52412076273e-013 2.00785006792e-014 508 -0.195922851563 5.01905646273e-013 2.14459620471e-014 548 -0.194702148438 4.99970606369e-013 2.17020615933e-014 531 -0.193481445313 4.73161489182e-013 2.13804241398e-014 490 -0.192260742188 5.46859616529e-013 2.32810548613e-014 552 -0.191040039063 4.89982919377e-013 2.22762039403e-014 484 -0.189819335938 5.44201353895e-013 2.37331913757e-014 526 -0.188598632813 5.24467482354e-013 2.3506349544e-014 498 -0.187377929688 5.28577902058e-013 2.38101587494e-014 493 -0.186157226563 5.69942723414e-013 2.49259847237e-014 523 -0.184936523438 5.52998145086e-013 2.47100148934e-014 501 -0.183715820313 6.02405345911e-013 2.59512327486e-014 539 -0.182495117188 5.78470038663e-013 2.55684277685e-014 512 -0.181274414063 5.57989857545e-013 2.5236502378e-014 489 -0.180053710938 5.81411187501e-013 2.58759044422e-014 505 -0.178833007813 5.62009077493e-013 2.55224399046e-014 485 -0.177612304688 6.1296867408e-013 2.67294359447e-014 526 -0.176391601563 6.19748767974e-013 2.69232078645e-014 530 -0.175170898438 6.18855444224e-013 2.69605728974e-014 527 -0.173950195313 6.16771959396e-013 2.69208116523e-014 525 -0.172729492188 6.02561322119e-013 2.66062864374e-014 513 -0.171508789063 5.71727019746e-013 2.59099754496e-014 487 -0.170288085938 5.85808277898e-013 2.6174231161e-014 501 -0.169067382813 5.92335971209e-013 2.62571526847e-014 509 -0.167846679688 6.21579328857e-013 2.6825320469e-014 537 -0.166625976563 5.63200187218e-013 2.54448466665e-014 490 -0.165405273438 5.54890107129e-013 2.51465388178e-014 487 -0.164184570313 5.69162507886e-013 2.53292521876e-014 505 -0.162963867188 5.46087966619e-013 2.46716994479e-014 490 -0.161743164063 5.70361784773e-013 2.50621683951e-014 518 -0.160522460938 5.14583876365e-013 2.36374860227e-014 474 -0.159301757813 5.36130983941e-013 2.39305919275e-014 502 -0.158081054688 5.49252902438e-013 2.39960607759e-014 524 -0.156860351563 5.11911881304e-013 2.29641652017e-014 497 -0.155639648438 5.1530061149e-013 2.27972543484e-014 511 -0.154418945313 5.20366390405e-013 2.26476353415e-014 528 -0.153198242188 4.82156821955e-013 2.15428920792e-014 501 -0.151977539063 4.61931021893e-013 2.08060379309e-014 493 -0.150756835938 4.70426803577e-013 2.07112258371e-014 516 -0.149536132813 4.63240809651e-013 2.02386477579e-014 524 -0.148315429688 4.35018563496e-013 1.93027663862e-014 508 -0.147094726563 4.31594104439e-013 1.89104492781e-014 521 -0.145874023438 4.01158255969e-013 1.79065550351e-014 502 -0.144653320313 3.99672276906e-013 1.75290831185e-014 520 -0.143432617188 3.86644622614e-013 1.68930034168e-014 524 -0.142211914063 3.41395779608e-013 1.55362320498e-014 483 -0.140991210938 3.37455356751e-013 1.50940601098e-014 500 -0.139770507813 3.30261940401e-013 1.45696224861e-014 514 -0.138549804688 3.08858316095e-013 1.37335351056e-014 506 -0.137329101563 3.00660450459e-013 1.31877066358e-014 520 -0.136108398438 2.5335654889e-013 1.1752261553e-014 465 -0.134887695313 2.7925732844e-013 1.1954424366e-014 546 -0.133666992188 2.44578373487e-013 1.08129752463e-014 512 -0.132446289063 2.36950812393e-013 1.0277457167e-014 532 -0.131225585938 2.11750587923e-013 9.34444568849e-015 514 -0.130004882813 1.916949732e-013 8.52655130007e-015 506 -0.128784179688 1.68264407089e-013 7.64578983159e-015 485 -0.127563476563 1.59216575443e-013 7.09765583565e-015 504 -0.126342773438 1.45940429786e-013 6.431364007e-015 516 -0.125122070313 1.26239176458e-013 5.64706595644e-015 501 -0.123901367188 1.22133365967e-013 5.20716732673e-015 552 -0.122680664063 9.72427696191e-014 4.33328377879e-015 506 -0.121459960938 8.15736537884e-014 3.66306959452e-015 499 -0.120239257813 6.43021819628e-014 2.95199357e-015 479 -0.119018554688 5.3550624809e-014 2.41449493341e-015 499 -0.117797851563 3.90461249145e-014 1.78881081847e-015 488 -0.116577148438 3.02826774451e-014 1.32307437172e-015 553 -0.115356445313 1.6590872889e-014 7.85161842767e-016 529 -0.114135742188 4.07266357679e-015 3.45629707123e-016 515 -0.112915039063 -7.2531366653e-015 4.33831101499e-016 509 -0.111694335938 -1.77765981999e-014 8.32874244515e-016 521 -0.110473632813 -2.99259462109e-014 1.30438997502e-015 556 -0.109252929688 -3.7023793617e-014 1.66907617682e-015 507 -0.108032226563 -4.50917150761e-014 2.03062525603e-015 503 -0.106811523438 -5.50416366113e-014 2.41724366852e-015 526 -0.105590820313 -6.08914200748e-014 2.7083816395e-015 512 -0.104370117188 -6.69775157181e-014 2.97160972354e-015 513 -0.103149414063 -7.96707645607e-014 3.3776499402e-015 561 -0.101928710938 -7.49660992253e-014 3.3920907471e-015 492 -0.100708007813 -8.22394463877e-014 3.63297653957e-015 516 -0.0994873046875 -7.80826591312e-014 3.60102121359e-015 473 -0.0982666015625 -9.19378777296e-014 3.96479497331e-015 541 -0.0970458984375 -8.71096688778e-014 3.89578448779e-015 503 -0.0958251953125 -8.7599110615e-014 3.92944861161e-015 500 -0.0946044921875 -9.01460179827e-014 3.96062716488e-015 521 -0.0933837890625 -8.71741658262e-014 3.87899409961e-015 508 -0.0921630859375 -8.02847513445e-014 3.68352426449e-015 478 -0.0909423828125 -8.20746385787e-014 3.66395919054e-015 505 -0.0897216796875 -8.38110905515e-014 3.62906249347e-015 537 -0.0885009765625 -7.502218377e-014 3.33763811734e-015 509 -0.0872802734375 -6.71773013064e-014 3.04906298253e-015 490 -0.0860595703125 -6.56476424963e-014 2.88514181173e-015 523 -0.0848388671875 -5.86022176953e-014 2.59256612758e-015 517 -0.0836181640625 -5.1716246402e-014 2.27270865019e-015 527 -0.0823974609375 -4.12809966849e-014 1.8610677614e-015 504 -0.0811767578125 -3.23480504844e-014 1.48128037626e-015 498 -0.0799560546875 -2.56462113749e-014 1.12159849802e-015 565 -0.0787353515625 -1.35345171509e-014 6.51959863453e-016 540 -0.0775146484375 -1.98150260109e-015 3.05090088149e-016 530 -0.0762939453125 1.06032464686e-014 5.41880143208e-016 537 -0.0750732421875 2.11480325418e-014 1.00041752247e-015 486 -0.0738525390625 3.30223266901e-014 1.52504800863e-015 486 -0.0726318359375 4.8464990845e-014 2.16046344833e-015 512 -0.0714111328125 6.21530864376e-014 2.7745841931e-015 507 -0.0701904296875 7.49179502288e-014 3.37480751014e-015 496 -0.0689697265625 9.14580615811e-014 4.07612416206e-015 506 -0.0677490234375 1.11108688795e-013 4.83967734945e-015 529 -0.0665283203125 1.17712279405e-013 5.32531350858e-015 490 -0.0653076171875 1.47215125933e-013 6.33055216778e-015 542 -0.0640869140625 1.54164014506e-013 6.83285173184e-015 510 -0.0628662109375 1.84781682436e-013 7.87798900379e-015 551 -0.0616455078125 1.84219355892e-013 8.24423363192e-015 500 -0.0604248046875 1.88466085015e-013 8.71667453168e-015 468 -0.0592041015625 2.23777275244e-013 9.86542751802e-015 515 -0.0579833984375 2.15006444173e-013 1.0039995476e-014 459 -0.0567626953125 2.85023138037e-013 1.19635579336e-014 568 -0.0555419921875 2.74399534824e-013 1.21190397725e-014 513 -0.0543212890625 3.01911782185e-013 1.3117806411e-014 530 -0.0531005859375 3.08163360581e-013 1.36360438062e-014 511 -0.0518798828125 3.37598818662e-013 1.46678795404e-014 530 -0.0506591796875 3.40438178476e-013 1.50930788064e-014 509 -0.0494384765625 3.5259644126e-013 1.5740288229e-014 502 -0.0482177734375 4.12415730819e-013 1.74153554929e-014 561 -0.0469970703125 3.77955218191e-013 1.70083734889e-014 494 -0.0457763671875 3.96174957274e-013 1.77739555783e-014 497 -0.0445556640625 4.46055147551e-013 1.92160577628e-014 539 -0.0433349609375 4.32040840217e-013 1.92475103962e-014 504 -0.0421142578125 4.69212175064e-013 2.03840372235e-014 530 -0.0408935546875 5.06198353941e-013 2.15092006715e-014 554 -0.0396728515625 4.73006972691e-013 2.10931595195e-014 503 -0.0384521484375 4.96702094201e-013 2.19111565035e-014 514 -0.0372314453125 5.09870727417e-013 2.24704285411e-014 515 -0.0360107421875 5.49393569135e-013 2.36012719711e-014 542 -0.0347900390625 5.31159585468e-013 2.34537909228e-014 513 -0.0335693359375 5.55036343799e-013 2.42263017744e-014 525 -0.0323486328125 5.2930056362e-013 2.38650079965e-014 492 -0.0311279296875 5.83894313e-013 2.52934563644e-014 533 -0.0299072265625 6.07875466243e-013 2.59931628023e-014 547 -0.0286865234375 5.88079571113e-013 2.57416434378e-014 522 -0.0274658203125 5.72319746009e-013 2.55460327815e-014 502 -0.0262451171875 6.52439927269e-013 2.7426155235e-014 566 -0.0250244140625 6.27113411772e-013 2.70136752717e-014 539 -0.0238037109375 5.69478703684e-013 2.58338847217e-014 486 -0.0225830078125 5.89514024449e-013 2.6365636729e-014 500 -0.0213623046875 5.84391787357e-013 2.63213506663e-014 493 -0.0201416015625 6.02137057331e-013 2.67699563694e-014 506 -0.0189208984375 6.10062448303e-013 2.69627688448e-014 512 -0.0177001953125 6.47383064254e-013 2.77834195253e-014 543 -0.0164794921875 6.08494289152e-013 2.69196701733e-014 511 -0.0152587890625 5.89488563165e-013 2.64702324162e-014 496 -0.0140380859375 5.3403163521e-013 2.51478998182e-014 451 -0.0128173828125 5.79774482567e-013 2.6139550271e-014 492 -0.0115966796875 5.92610614669e-013 2.63460196539e-014 506 -0.0103759765625 6.2043933036e-013 2.68502956322e-014 534 -0.0091552734375 5.25341088582e-013 2.45755532682e-014 457 -0.0079345703125 5.82646536001e-013 2.57507965858e-014 512 -0.0067138671875 5.50291062455e-013 2.4860848225e-014 490 -0.0054931640625 5.20552668414e-013 2.40124902381e-014 470 -0.0042724609375 5.88882367515e-013 2.53425911209e-014 540 -0.0030517578125 5.02286075453e-013 2.32193344758e-014 468 -0.0018310546875 5.36298465395e-013 2.37489791855e-014 510 -0.0006103515625 5.20791011502e-013 2.31760850356e-014 505 0.0006103515625 4.94962087548e-013 2.23384993809e-014 491 0.0018310546875 5.29728699478e-013 2.28395163896e-014 538 0.0030517578125 5.1721466135e-013 2.22793503319e-014 539 0.0042724609375 5.03728083406e-013 2.16781974157e-014 540 0.0054931640625 4.71152914691e-013 2.06627733046e-014 520 0.0067138671875 4.54651421732e-013 1.99777791525e-014 518 0.0079345703125 4.18663329258e-013 1.8857211288e-014 493 0.0091552734375 4.38191369352e-013 1.8946125793e-014 535 0.0103759765625 4.11162690992e-013 1.79977662115e-014 522 0.0115966796875 3.84891782889e-013 1.70617068649e-014 509 0.0128173828125 3.69159625022e-013 1.6348429806e-014 510 0.0140380859375 3.71962335698e-013 1.60384419745e-014 538 0.0152587890625 3.52556959239e-013 1.52300992945e-014 536 0.0164794921875 2.96726058225e-013 1.36024020325e-014 476 0.0177001953125 3.18398685452e-013 1.3716627919e-014 539 0.0189208984375 2.57021075419e-013 1.1960160572e-014 462 0.0201416015625 2.58421559043e-013 1.1606154613e-014 496 0.0213623046875 2.49392465947e-013 1.10353373442e-014 511 0.0225830078125 2.40686238335e-013 1.04578778282e-014 530 0.0238037109375 2.07384982757e-013 9.32467829897e-015 495 0.0250244140625 1.88228806325e-013 8.52420808638e-015 488 0.0262451171875 1.84069208847e-013 8.04543943543e-015 524 0.0274658203125 1.62980814546e-013 7.20033444734e-015 513 0.0286865234375 1.40411627741e-013 6.33500471664e-015 492 0.0299072265625 1.24424678383e-013 5.61536571987e-015 492 0.0311279296875 1.05468340959e-013 4.84003824471e-015 476 0.0323486328125 9.67973269868e-014 4.3056029138e-015 507 0.0335693359375 7.9970961914e-014 3.58085847755e-015 501 0.0347900390625 6.67150520414e-014 2.9637134987e-015 510 0.0360107421875 5.07511138449e-014 2.28371161014e-015 500 0.0372314453125 3.69263372216e-014 1.67719984804e-015 495 0.0384521484375 2.41939094128e-014 1.10722914683e-015 503 0.0396728515625 1.14426867273e-014 5.61340130386e-016 504 0.0408935546875 -4.74120171407e-016 2.56915804314e-016 538 0.0421142578125 -1.24865163951e-014 6.0248140243e-016 519 0.0433349609375 -2.32935618919e-014 1.06210178086e-015 507 0.0445556640625 -3.51026811642e-014 1.55142835456e-015 525 0.0457763671875 -4.50233099063e-014 1.9776581577e-015 527 0.0469970703125 -4.96264294165e-014 2.27152565756e-015 483 0.0482177734375 -6.04476097466e-014 2.6941988246e-015 508 0.0494384765625 -6.94107127877e-014 3.05726798286e-015 519 0.0506591796875 -7.58108986151e-014 3.35794354414e-015 513 0.0518798828125 -8.08328531802e-014 3.59558128384e-015 508 0.0531005859375 -8.64022841141e-014 3.81473855057e-015 516 0.0543212890625 -9.87362292941e-014 4.18624253179e-015 559 0.0555419921875 -9.46183015436e-014 4.17565753565e-015 516 0.0567626953125 -9.85921517535e-014 4.31730685406e-015 524 0.0579833984375 -9.31634194558e-014 4.2244313606e-015 489 0.0592041015625 -1.00089785754e-013 4.40084129149e-015 520 0.0604248046875 -9.91561576026e-014 4.38130461228e-015 515 0.0616455078125 -9.7236372795e-014 4.32561009097e-015 508 0.0628662109375 -1.00317033589e-013 4.33860969302e-015 538 0.0640869140625 -9.83123069613e-014 4.25265216031e-015 538 0.0653076171875 -8.88045095486e-014 3.94854837898e-015 510 0.0665283203125 -8.80572893525e-014 3.84323146233e-015 530 0.0677490234375 -8.44137065949e-014 3.66063373907e-015 537 0.0689697265625 -7.63077362443e-014 3.35372743368e-015 524 0.0701904296875 -6.24309640746e-014 2.8946160465e-015 473 0.0714111328125 -6.37786661331e-014 2.76946773485e-015 541 0.0726318359375 -5.27509979365e-014 2.33268916442e-015 527 0.0738525390625 -4.22401364808e-014 1.91218349267e-015 509 0.0750732421875 -3.27958341586e-014 1.50433756093e-015 513 0.0762939453125 -2.19892372574e-014 1.05379715216e-015 519 0.0775146484375 -1.10350749127e-014 6.33058156593e-016 506 0.0787353515625 -3.3702162368e-017 3.84298377106e-016 487 0.0799560546875 1.1845922189e-014 6.62402996093e-016 504 0.0811767578125 2.44018456692e-014 1.16200391602e-015 494 0.0823974609375 4.03406019987e-014 1.80917623715e-015 524 0.0836181640625 5.17177313762e-014 2.3352412559e-015 505 0.0848388671875 6.63100347733e-014 2.97497333062e-015 505 0.0860595703125 8.38257497093e-014 3.70024845942e-015 520 0.0872802734375 9.86888716325e-014 4.34655813147e-015 520 0.0885009765625 1.05951288181e-013 4.86196566697e-015 478 0.0897216796875 1.33356344507e-013 5.8226619998e-015 527 0.0909423828125 1.49598031996e-013 6.54085869116e-015 525 0.0921630859375 1.50469250973e-013 6.91550173364e-015 475 0.0933837890625 1.8056106198e-013 7.97462230692e-015 514 0.0946044921875 2.02531869402e-013 8.82295609366e-015 528 0.0958251953125 2.13744453778e-013 9.45519493061e-015 512 0.0970458984375 2.40949733944e-013 1.04237732235e-014 535 0.0982666015625 2.56420155511e-013 1.11337287408e-014 531 0.0994873046875 2.7557618528e-013 1.19196445594e-014 535 0.100708007813 2.7238547253e-013 1.22602829648e-014 494 0.101928710938 3.03390547158e-013 1.33219772464e-014 519 0.103149414063 3.07368520655e-013 1.37772917385e-014 498 0.104370117188 3.30175915408e-013 1.46674333008e-014 507 0.105590820313 3.51300418734e-013 1.5499153318e-014 514 0.106811523438 3.80666428383e-013 1.6507472552e-014 532 0.108032226563 3.65384033629e-013 1.65260028019e-014 489 0.109252929688 4.12501912139e-013 1.79033939398e-014 531 0.110473632813 4.20432840113e-013 1.84218273783e-014 521 0.111694335938 3.99607454625e-013 1.82989510731e-014 477 0.112915039063 4.9572361456e-013 2.07110497997e-014 573 0.114135742188 4.32855545389e-013 1.96568407182e-014 485 0.115356445313 4.82607550602e-013 2.10644473817e-014 525 0.116577148438 4.81563782128e-013 2.132558025e-014 510 0.117797851563 5.31925214315e-013 2.27242582477e-014 548 0.119018554688 5.22437223677e-013 2.2780801822e-014 526 0.120239257813 5.14654805248e-013 2.28581501101e-014 507 0.121459960938 5.29421713246e-013 2.34215876e-014 511 0.122680664063 5.36718090915e-013 2.37910806506e-014 509 0.123901367188 5.9283024394e-013 2.52340703043e-014 552 0.125122070313 5.57290544619e-013 2.46545929078e-014 511 0.126342773438 5.50543797597e-013 2.46719914579e-014 498 0.127563476563 5.88888966355e-013 2.56784118793e-014 526 0.128784179688 5.81776963425e-013 2.56627720713e-014 514 0.130004882813 5.67343970729e-013 2.54763270048e-014 496 0.131225585938 5.62603876498e-013 2.54698125912e-014 488 0.132446289063 6.13943246677e-013 2.66954502396e-014 529 0.133666992188 5.7823848604e-013 2.59658375787e-014 496 0.134887695313 5.90219876394e-013 2.62928632807e-014 504 0.136108398438 6.23287007234e-013 2.70509440602e-014 531 0.137329101563 5.79897443608e-013 2.61200189031e-014 493 0.138549804688 6.41695205656e-013 2.74652075023e-014 546 0.139770507813 5.87506227732e-013 2.62510602022e-014 501 0.140991210938 5.52054730792e-013 2.53868171937e-014 473 0.142211914063 5.88210533939e-013 2.61788548845e-014 505 0.143432617188 6.18590807941e-013 2.6748000259e-014 535 0.144653320313 5.85931441144e-013 2.59244635729e-014 511 0.145874023438 5.60022452228e-013 2.52523879243e-014 492 0.147094726563 5.32743984398e-013 2.45002749936e-014 473 0.148315429688 5.72387600522e-013 2.52278286434e-014 515 0.149536132813 5.51518827283e-013 2.46211005306e-014 502 0.150756835938 5.44247307276e-013 2.42726751482e-014 503 0.151977539063 5.75294105853e-013 2.47631265472e-014 540 0.153198242188 5.08639602198e-013 2.30790400539e-014 486 0.154418945313 5.19385319035e-013 2.31195760051e-014 505 0.155639648438 5.36015429343e-013 2.32471006335e-014 532 0.156860351563 5.13027905929e-013 2.24630963524e-014 522 0.158081054688 5.14833854195e-013 2.22468060612e-014 536 0.159301757813 4.47811659341e-013 2.04914692363e-014 478 0.160522460938 4.77670067032e-013 2.08373305986e-014 526 0.161743164063 4.40016507178e-013 1.97275779831e-014 498 0.162963867188 4.31409307636e-013 1.9189426061e-014 506 0.164184570313 4.24175412143e-013 1.87220059895e-014 514 0.165405273438 4.27464727531e-013 1.84599550962e-014 537 0.166625976563 3.72409401788e-013 1.69063362419e-014 486 0.167846679688 3.67329660185e-013 1.64247995917e-014 501 0.169067382813 3.68368564881e-013 1.61378954794e-014 522 0.170288085938 3.62835179671e-013 1.56305065869e-014 540 0.171508789063 3.24833490173e-013 1.4456478443e-014 506 0.172729492188 3.13617305964e-013 1.37976590711e-014 518 0.173950195313 2.92112670543e-013 1.29928622025e-014 507 0.175170898438 2.70977185634e-013 1.21153946926e-014 502 0.176391601563 2.48831993236e-013 1.12625864483e-014 490 0.177612304688 2.49750732654e-013 1.0894134726e-014 528 0.178833007813 2.2271515285e-013 9.95498943243e-015 503 0.180053710938 2.04110984215e-013 9.14540654334e-015 501 0.181274414063 1.8710434837e-013 8.40541398125e-015 499 0.182495117188 1.70153873712e-013 7.68537632742e-015 494 0.183715820313 1.61513190962e-013 7.12345276857e-015 519 0.184936523438 1.46204369661e-013 6.41114211997e-015 526 0.186157226563 1.28432915174e-013 5.694776215e-015 516 0.187377929688 1.1121307957e-013 4.98820927873e-015 506 0.188598632813 9.57499172405e-014 4.29417557711e-015 509 0.189819335938 8.07901178504e-014 3.63814751971e-015 510 0.191040039063 6.90124516407e-014 3.09263220757e-015 520 0.192260742188 5.42442108181e-014 2.45714432932e-015 520 0.193481445313 4.09061690608e-014 1.89548216249e-015 523 0.194702148438 2.67984650045e-014 1.33678743506e-015 504 0.195922851563 1.36518842207e-014 8.54054886969e-016 518 0.197143554688 2.84288197292e-015 5.69187183258e-016 524 0.198364257813 -7.78277290272e-015 6.40352650856e-016 497 0.199584960938 -1.90868338487e-014 9.82139858546e-016 525 0.200805664063 -2.56831388776e-014 1.26522419671e-015 472 0.202026367188 -3.81323733583e-014 1.76039647207e-015 507 0.203247070313 -4.67278927126e-014 2.14975321167e-015 498 0.204467773438 -6.03736531463e-014 2.60353517061e-015 557 0.205688476563 -6.31990380917e-014 2.79505991221e-015 524 0.206909179688 -7.00479074775e-014 3.07192991971e-015 529 0.208129882813 -7.60555376629e-014 3.32359277953e-015 531 0.209350585938 -7.99382792065e-014 3.52250717999e-015 521 0.210571289063 -8.69559157979e-014 3.76559376727e-015 538 0.211791992188 -7.59712477367e-014 3.58012014619e-015 454 0.213012695313 -8.45145018224e-014 3.81886111288e-015 493 0.214233398438 -9.27506152353e-014 4.02398472579e-015 534 0.215454101563 -8.75216425547e-014 3.91976591578e-015 501 0.216674804688 -8.79560907995e-014 3.93050352809e-015 503 0.217895507813 -8.11672526997e-014 3.75145258544e-015 470 0.219116210938 -7.99944389085e-014 3.68133987173e-015 474 0.220336914063 -8.75315339348e-014 3.79537440754e-015 534 0.221557617188 -7.75465794992e-014 3.48586578571e-015 497 0.222778320313 -7.19984642161e-014 3.26054910421e-015 490 0.223999023438 -7.40709037159e-014 3.18761483463e-015 543 0.225219726563 -6.24948164916e-014 2.81797944973e-015 496 0.226440429688 -5.63136935892e-014 2.52456654011e-015 503 0.227661132813 -4.61933422491e-014 2.12534373788e-015 480 0.228881835938 -4.39595093088e-014 1.92570384945e-015 537 0.230102539063 -3.40676000549e-014 1.52010244166e-015 530 0.231323242188 -2.20013577808e-014 1.04099013227e-015 505 0.232543945313 -1.1468536369e-014 6.3963128139e-016 502 0.233764648438 -3.83862810806e-016 3.96492727042e-016 548 0.234985351563 1.00251388575e-014 6.08556132104e-016 447 0.236206054688 2.20496946934e-014 1.09755897401e-015 473 0.237426757813 3.84252243287e-014 1.71765570053e-015 545 0.238647460938 4.87164201879e-014 2.23260665308e-015 499 0.239868164063 6.27182874001e-014 2.85465975469e-015 498 0.241088867188 8.12726138297e-014 3.56735126315e-015 531 0.242309570313 9.59498496464e-014 4.22665532584e-015 525 0.243530273438 1.01543846964e-013 4.65024781098e-015 484 0.244750976563 1.19242299856e-013 5.43321405663e-015 487 0.245971679688 1.4862693724e-013 6.41577591246e-015 542 0.247192382813 1.53867166223e-013 6.89167651831e-015 503 0.248413085938 1.79806894581e-013 7.85983915814e-015 527 0.249633789063 2.03127017023e-013 8.6905142182e-015 550 0.250854492188 2.07870946337e-013 9.21265804392e-015 512 0.252075195313 2.10584636821e-013 9.63852484913e-015 480 0.253295898438 2.41084419118e-013 1.06893229482e-014 511 0.254516601563 2.73934003013e-013 1.18018304958e-014 541 0.255737304688 2.81268399843e-013 1.23350071533e-014 522 0.256958007813 2.80483028178e-013 1.27053573059e-014 489 0.258178710938 3.18917175409e-013 1.39385052802e-014 525 0.259399414063 3.35438884574e-013 1.46602596883e-014 525 0.260620117188 3.42164072482e-013 1.51991014813e-014 508 0.261840820313 3.61837565933e-013 1.59930102239e-014 513 0.263061523438 3.91471849267e-013 1.70374409085e-014 529 0.264282226563 3.90924509992e-013 1.73603941286e-014 508 0.265502929688 4.02545370674e-013 1.79473739629e-014 504 0.266723632813 3.95809401934e-013 1.81556321426e-014 476 0.267944335938 4.411034925e-013 1.94893370577e-014 513 0.269165039063 4.32024958991e-013 1.96106095363e-014 486 0.270385742188 4.86219288713e-013 2.11314530588e-014 530 0.271606445313 4.52625413897e-013 2.06502613314e-014 481 0.272827148438 4.95711552448e-013 2.19181092949e-014 512 0.274047851563 5.09171854731e-013 2.24909553665e-014 513 0.275268554688 4.79414054107e-013 2.20757857054e-014 472 0.276489257813 4.9158448697e-013 2.25875929522e-014 474 0.277709960938 5.34143016026e-013 2.38005834875e-014 504 0.278930664063 5.2501314333e-013 2.38224167938e-014 486 0.280151367188 5.20687318152e-013 2.38970826794e-014 475 0.281372070313 5.64240350865e-013 2.50895850237e-014 506 0.282592773438 6.06485595446e-013 2.61770245147e-014 537 0.283813476563 6.13641251359e-013 2.6509814966e-014 536 0.285034179688 6.27253775164e-013 2.69223142632e-014 543 0.286254882813 5.8834368209e-013 2.61845518434e-014 505 0.287475585938 5.25275459099e-013 2.4819655081e-014 448 0.288696289063 5.70649469696e-013 2.59680294355e-014 483 0.289916992188 6.00110410128e-013 2.67066354741e-014 505 0.291137695313 5.91399483614e-013 2.65297354628e-014 497 0.292358398438 6.09172365866e-013 2.69496517984e-014 511 0.293579101563 5.93408277896e-013 2.66191688372e-014 497 0.294799804688 5.76713288995e-013 2.62151379964e-014 484 0.296020507813 5.97817676878e-013 2.6656142087e-014 503 0.297241210938 6.5865327458e-013 2.79336957162e-014 556 0.298461914063 5.79502673497e-013 2.6126467676e-014 492 0.299682617188 5.73230875473e-013 2.58963129617e-014 490 0.300903320313 6.40554153147e-013 2.72641956517e-014 552 0.302124023438 6.4713976544e-013 2.72740531287e-014 563 0.303344726563 5.63795055731e-013 2.53155348869e-014 496 0.304565429688 5.46298817872e-013 2.47557185519e-014 487 0.305786132813 5.63512262428e-013 2.49778814534e-014 509 0.307006835938 5.74019803647e-013 2.5005565647e-014 527 0.308227539063 5.57709231953e-013 2.44347041033e-014 521 0.309448242188 5.63970814588e-013 2.4338514356e-014 537 0.310668945313 5.93016555104e-013 2.46894723843e-014 577 0.311889648438 4.68712268727e-013 2.17144164927e-014 466 0.313110351563 4.70278531047e-013 2.14903551485e-014 479 0.314331054688 5.08953890122e-013 2.20691330045e-014 532 0.315551757813 4.71030395562e-013 2.09432671598e-014 506 0.316772460938 4.62329527513e-013 2.04161892873e-014 513 0.317993164063 4.66449898707e-013 2.02086473373e-014 533 0.319213867188 4.54009053206e-013 1.95790946158e-014 538 0.320434570313 4.21267344034e-013 1.85326565648e-014 517 0.321655273438 4.2421364094e-013 1.82446976261e-014 541 0.322875976563 3.90492683948e-013 1.71474307489e-014 519 0.324096679688 3.6482288092e-013 1.62259646729e-014 506 0.325317382813 3.32241630821e-013 1.50937861318e-014 485 0.326538085938 3.2822529777e-013 1.46734078808e-014 501 0.327758789063 3.04655364891e-013 1.37444176082e-014 492 0.328979492188 3.16686356521e-013 1.36646245309e-014 538 0.330200195313 2.86470617808e-013 1.26104890231e-014 517 0.331420898438 2.79821853948e-013 1.20652667185e-014 539 0.332641601563 2.4952471565e-013 1.10284989091e-014 513 0.333862304688 2.3724955973e-013 1.03791367547e-014 524 0.335083007813 2.0876958485e-013 9.35986648931e-015 499 0.336303710938 1.93521700911e-013 8.62687058406e-015 505 0.337524414063 1.71514044656e-013 7.74895630854e-015 492 0.338745117188 1.53314451768e-013 6.96461889512e-015 487 0.339965820313 1.49571073429e-013 6.51546386438e-015 530 0.341186523438 1.27785340552e-013 5.69107412959e-015 508 0.342407226563 1.06470346436e-013 4.85116096811e-015 486 0.343627929688 1.01423256904e-013 4.37356756097e-015 544 0.344848632813 7.8602132863e-014 3.54957926998e-015 498 0.346069335938 6.28708952339e-014 2.85577917057e-015 495 0.347290039063 4.67194707994e-014 2.18500327533e-015 471 0.348510742188 3.58687519442e-014 1.66642204062e-015 488 0.349731445313 2.41324198236e-014 1.11785899317e-015 515 0.350952148438 1.09921815002e-014 5.90369731636e-016 523 0.352172851563 -1.36920503313e-015 3.13291777709e-016 511 0.353393554688 -1.19837066018e-014 6.1922408965e-016 455 0.354614257813 -2.39380800896e-014 1.09061177427e-015 512 0.355834960938 -3.22806386283e-014 1.5002812065e-015 475 0.357055664063 -4.17868717579e-014 1.9086927916e-015 486 0.358276367188 -5.23406644057e-014 2.33811358948e-015 505 0.359497070313 -5.98425186619e-014 2.67877673575e-015 502 0.360717773438 -6.70365938844e-014 3.00422999722e-015 500 0.361938476563 -7.9356446908e-014 3.42362742584e-015 539 0.363159179688 -7.78328690419e-014 3.51427426703e-015 492 0.364379882813 -7.89726170987e-014 3.66003435819e-015 467 0.365600585938 -9.00811637895e-014 3.98749948785e-015 512 0.366821289063 -9.57330208982e-014 4.18581073342e-015 525 0.368041992188 -9.72554650024e-014 4.27398084075e-015 520 0.369262695313 -9.57397881701e-014 4.28340745446e-015 502 0.370483398438 -9.72730961364e-014 4.33240915186e-015 507 0.371704101563 -9.7971885974e-014 4.33998676845e-015 513 0.372924804688 -9.52821643692e-014 4.25803427242e-015 505 0.374145507813 -9.98350240804e-014 4.33517819483e-015 535 0.375366210938 -9.79579613146e-014 4.24754733183e-015 538 0.376586914063 -8.98696112749e-014 3.98349868774e-015 516 0.377807617188 -8.81688174552e-014 3.85055622884e-015 534 0.379028320313 -7.56190543891e-014 3.47093200583e-015 485 0.380249023438 -7.39871568753e-014 3.31683582274e-015 511 0.381469726563 -6.89957014642e-014 3.06023493299e-015 527 0.382690429688 -5.97656769613e-014 2.71639343431e-015 508 0.383911132813 -5.38239876583e-014 2.41196912748e-015 539 0.385131835938 -4.58758259812e-014 2.06767285935e-015 550 0.386352539063 -3.16691903283e-014 1.56427607044e-015 504 0.387573242188 -2.15904782911e-014 1.17938933642e-015 515 0.388793945313 -1.06309465565e-014 8.43308955485e-016 505 0.390014648438 1.15200973067e-015 7.19276874181e-016 491 0.391235351563 1.1822773634e-014 9.25410346344e-016 473 0.392456054688 2.68419362e-014 1.42107400346e-015 519 0.393676757813 3.84590558216e-014 1.87400912864e-015 504 0.394897460938 5.42782732058e-014 2.51593188979e-015 516 0.396118164063 6.72063988592e-014 3.09947953063e-015 502 0.397338867188 8.56879194437e-014 3.8097843591e-015 531 0.398559570313 1.01117625257e-013 4.48315593786e-015 526 0.399780273438 1.14846257451e-013 5.14769364166e-015 511 0.401000976563 1.21374450934e-013 5.59629812647e-015 479 0.402221679688 1.46206824667e-013 6.4867394731e-015 516 0.403442382813 1.6324670963e-013 7.24587898488e-015 514 0.404663085938 1.76564177154e-013 7.86304595418e-015 509 0.405883789063 2.07065649755e-013 8.95640170285e-015 539 0.407104492188 2.06565635206e-013 9.29759393108e-015 497 0.408325195313 2.23951411889e-013 1.00635165441e-014 498 0.409545898438 2.29861300396e-013 1.05504178645e-014 477 0.410766601563 2.47856612167e-013 1.13495070973e-014 479 0.411987304688 3.04214529953e-013 1.29494879697e-014 554 0.413208007813 3.16895636792e-013 1.35955796087e-014 545 0.414428710938 3.30633844995e-013 1.4299394409e-014 536 0.415649414063 3.31446757998e-013 1.46922116816e-014 510 0.416870117188 3.22223365135e-013 1.48135933095e-014 474 0.418090820313 3.6099009717e-013 1.60767016858e-014 505 0.419311523438 3.51396820998e-013 1.61845620712e-014 472 0.420532226563 3.91335344263e-013 1.74235347842e-014 505 0.421752929688 4.04840779046e-013 1.80593595599e-014 503 0.422973632813 4.38258896688e-013 1.9153441532e-014 524 0.424194335938 4.42875352642e-013 1.9579452225e-014 512 0.425415039063 4.7426067865e-013 2.05673403523e-014 532 0.426635742188 4.60170323927e-013 2.05632945241e-014 501 0.427856445313 4.79782712808e-013 2.12911220431e-014 508 0.429077148438 5.17252246851e-013 2.23871543857e-014 534 0.430297851563 4.95878139995e-013 2.21792149084e-014 500 0.431518554688 4.64220728022e-013 2.16936651301e-014 458 0.432739257813 5.11412376831e-013 2.30111509188e-014 494 0.433959960938 5.58260900184e-013 2.42506033592e-014 530 0.435180664063 5.83380490224e-013 2.50134430394e-014 544 0.436401367188 5.64154925017e-013 2.47884671485e-014 518 0.437622070313 6.17693786019e-013 2.61264903468e-014 559 0.438842773438 5.51672165608e-013 2.48467672145e-014 493 0.440063476563 5.43059688446e-013 2.47877930143e-014 480 0.441284179688 5.5550109645e-013 2.5198839823e-014 486 0.442504882813 6.01093216997e-013 2.63100582884e-014 522 0.443725585938 5.83259368001e-013 2.60074033161e-014 503 0.444946289063 6.03967459618e-013 2.65381974309e-014 518 0.446166992188 6.03730732133e-013 2.65795106857e-014 516 0.447387695313 6.55469910455e-013 2.77256570762e-014 559 0.448608398438 6.50823396907e-013 2.76536972924e-014 554 0.449829101563 6.00034046184e-013 2.65473717087e-014 511 0.451049804688 6.53599691844e-013 2.76980840871e-014 557 0.452270507813 6.07886335256e-013 2.66622292721e-014 520 0.453491210938 5.59793077636e-013 2.55297896594e-014 481 0.454711914063 6.28368215705e-013 2.69725412509e-014 543 0.455932617188 5.96634339566e-013 2.61713238293e-014 520 0.457153320313 6.16451803672e-013 2.65120660991e-014 541 0.458374023438 5.89700761205e-013 2.57954241939e-014 523 0.459594726563 5.43256643087e-013 2.46022052384e-014 488 0.460815429688 5.85298653068e-013 2.54120859657e-014 531 0.462036132813 5.38829242437e-013 2.41828531397e-014 497 0.463256835938 5.58405297584e-013 2.44083848249e-014 524 0.464477539063 5.28988821397e-013 2.35788188364e-014 504 0.465698242188 4.95568273402e-013 2.25883405152e-014 482 0.466918945313 4.93901577671e-013 2.23539883899e-014 489 0.468139648438 4.87382674192e-013 2.19260913168e-014 495 0.469360351563 4.75466759331e-013 2.14356407698e-014 493 0.470581054688 4.86006569649e-013 2.14196662601e-014 516 0.471801757813 4.65048247859e-013 2.06378510389e-014 509 0.473022460938 4.39844882929e-013 1.97584823237e-014 497 0.474243164063 4.38805794117e-013 1.93845255273e-014 514 0.475463867188 4.08212870314e-013 1.84536162559e-014 491 0.476684570313 4.02712207005e-013 1.79734172825e-014 504 0.477905273438 3.96874521661e-013 1.74604353216e-014 519 0.479125976563 3.83975037049e-013 1.6863804176e-014 521 0.480346679688 3.68616748698e-013 1.61923273553e-014 521 0.481567382813 3.25940474592e-013 1.48884990132e-014 482 0.482788085938 3.70283794072e-013 1.54773807564e-014 576 0.484008789063 2.97546393138e-013 1.35064579292e-014 489 0.485229492188 3.10063322529e-013 1.34636392519e-014 535 0.486450195313 3.0723538065e-013 1.29785251045e-014 566 0.487670898438 2.52358819742e-013 1.14528488921e-014 491 0.488891601563 2.35904275109e-013 1.06801906491e-014 494 0.490112304688 2.49765128734e-013 1.06364477451e-014 559 0.491333007813 1.99272943398e-013 9.13091585765e-015 484 0.492553710938 1.80549653476e-013 8.29452946484e-015 483 0.493774414063 1.87795816517e-013 8.15575052907e-015 542 0.494995117188 1.55000188552e-013 7.08502155697e-015 490 0.496215820313 1.4785890558e-013 6.55574662776e-015 526 0.497436523438 1.38361223982e-013 6.03438253403e-015 545 0.498657226563 1.21040315927e-013 5.27322400762e-015 552 0.499877929688 9.8434682516e-014 4.4323176887e-015 524 0.501098632813 8.16853949747e-014 3.77642038769e-015 506 0.502319335938 7.16049343421e-014 3.25601568176e-015 542 0.503540039063 5.77166630759e-014 2.68646364832e-015 540 0.504760742188 4.08985122449e-014 2.0493906911e-015 516 0.505981445313 2.52988200694e-014 1.46978800068e-015 493 0.507202148438 1.45963953015e-014 1.11195674832e-015 503 0.508422851563 3.53649436988e-015 8.43855927296e-016 485 0.509643554688 -7.18600275735e-015 8.9692773749e-016 526 0.510864257813 -1.91613446082e-014 1.1839998875e-015 517 0.512084960938 -2.72088560193e-014 1.42052307903e-015 496 0.513305664063 -3.68592770211e-014 1.80674367845e-015 487 0.514526367188 -4.76862333245e-014 2.18483692613e-015 524 0.515747070313 -5.40577433599e-014 2.48249831413e-015 506 0.516967773438 -6.66917324063e-014 2.91025887258e-015 550 0.518188476563 -6.31749837407e-014 2.94000419211e-015 476 0.519409179688 -7.56241458711e-014 3.32826855616e-015 527 0.520629882813 -7.54510941253e-014 3.4146837964e-015 496 0.521850585938 -8.71372457956e-014 3.7650713376e-015 542 0.523071289063 -8.76768685074e-014 3.84936733044e-015 523 0.524291992188 -8.39696692097e-014 3.80517185934e-015 490 0.525512695313 -8.64638046657e-014 3.90016952538e-015 494 0.526733398438 -8.84679431578e-014 3.95076023128e-015 503 0.527954101563 -8.43756849643e-014 3.84424942531e-015 483 0.529174804688 -8.47523416552e-014 3.8412622521e-015 488 0.530395507813 -8.58092980318e-014 3.82792737847e-015 504 0.531616210938 -7.78543645826e-014 3.57845646313e-015 475 0.532836914063 -8.25493018157e-014 3.6125866281e-015 525 0.534057617188 -8.12078297939e-014 3.49154948379e-015 545 0.535278320313 -7.07825238465e-014 3.14812152479e-015 511 0.536499023438 -6.71522961858e-014 2.93729751515e-015 532 0.537719726563 -5.70203137937e-014 2.57418367107e-015 505 0.538940429688 -5.41153627617e-014 2.37786326784e-015 542 0.540161132813 -4.06293358554e-014 1.89615417909e-015 496 0.541381835938 -3.32860239268e-014 1.58562819763e-015 513 0.542602539063 -2.42878539061e-014 1.22731479539e-015 530 0.543823242188 -1.30027335074e-014 9.05717838415e-016 524 0.545043945313 -2.599690009e-015 7.49019657262e-016 518 0.546264648438 1.02981730228e-014 8.89299165384e-016 504 0.547485351563 2.2603467571e-014 1.3045727503e-015 503 0.548706054688 3.14955861952e-014 1.69835219137e-015 452 0.549926757813 5.0101650991e-014 2.38494309822e-015 522 0.551147460938 6.65221441641e-014 3.03406514776e-015 539 0.552368164063 7.76691036563e-014 3.54348726274e-015 522 0.553588867188 9.35636324186e-014 4.19380740447e-015 530 0.554809570313 1.09573691904e-013 4.90697504194e-015 523 0.556030273438 1.2945979839e-013 5.68053441246e-015 541 0.557250976563 1.47328137939e-013 6.48566375503e-015 531 0.558471679688 1.70385348601e-013 7.31267820474e-015 557 0.559692382813 1.89082477801e-013 8.05388222002e-015 564 0.560913085938 1.76070703165e-013 8.06873298017e-015 486 0.562133789063 2.08882161163e-013 9.24481333118e-015 519 0.563354492188 2.27328713936e-013 1.00880444994e-014 516 0.564575195313 2.10816581668e-013 1.00157319679e-014 449 0.565795898438 2.64047779464e-013 1.16450428121e-014 520 0.567016601563 2.70267326086e-013 1.21038014789e-014 504 0.568237304688 2.88405648154e-013 1.2872938975e-014 507 0.569458007813 3.06008636669e-013 1.36501466774e-014 507 0.570678710938 3.20246716405e-013 1.43598965701e-014 501 0.571899414063 3.67905624182e-013 1.57566415505e-014 549 0.573120117188 3.46579534674e-013 1.56713010685e-014 492 0.574340820313 3.73422545017e-013 1.66616107807e-014 505 0.575561523438 4.17727680708e-013 1.79544147121e-014 544 0.576782226563 4.35953883942e-013 1.86819319117e-014 547 0.578002929688 4.26452973899e-013 1.88475813418e-014 514 0.579223632813 4.16452820179e-013 1.89458611463e-014 485 0.580444335938 4.60044882905e-013 2.02292194655e-014 519 0.581665039063 5.19563887224e-013 2.18687032887e-014 566 0.582885742188 5.1106446259e-013 2.1961537407e-014 543 0.584106445313 5.12742854872e-013 2.22978833858e-014 530 0.585327148438 5.46031908386e-013 2.33483291966e-014 548 0.586547851563 5.01434151019e-013 2.26046036625e-014 493 0.587768554688 5.06500678185e-013 2.29935539633e-014 486 0.588989257813 5.303927173e-013 2.37127021592e-014 501 0.590209960938 5.52839798402e-013 2.44474207028e-014 512 0.591430664063 5.41380842072e-013 2.43706192898e-014 494 0.592651367188 5.65970374271e-013 2.50982363478e-014 509 0.593872070313 5.73841510657e-013 2.54451973506e-014 509 0.595092773438 5.58987604181e-013 2.52866087394e-014 489 0.596313476563 5.89180799577e-013 2.6071113747e-014 511 0.597534179688 5.51477714631e-013 2.53622565029e-014 473 0.598754882813 6.25825359799e-013 2.70870149783e-014 534 0.599975585938 5.30739026256e-013 2.50227933888e-014 450 0.601196289063 5.87310263674e-013 2.64002562379e-014 495 0.602416992188 5.77539948732e-013 2.62266378819e-014 485 0.603637695313 6.13071315764e-013 2.70429555328e-014 514 0.604858398438 5.95370877308e-013 2.6653459512e-014 499 0.606079101563 6.06144248428e-013 2.68674335033e-014 509 0.607299804688 6.27769501625e-013 2.73205686099e-014 528 0.608520507813 6.15815343902e-013 2.7005646675e-014 520 0.609741210938 6.16550911376e-013 2.69602853905e-014 523 0.610961914063 5.77212475882e-013 2.59969075799e-014 493 0.612182617188 5.90605900755e-013 2.61792078248e-014 509 0.613403320313 6.63659538031e-013 2.76299966879e-014 577 0.614624023438 5.976666358e-013 2.60863177905e-014 525 0.615844726563 5.78308361021e-013 2.5486240201e-014 515 0.617065429688 5.8877084126e-013 2.55305933926e-014 532 0.618286132813 5.7421991969e-013 2.5018184699e-014 527 0.619506835938 5.66477509086e-013 2.46581726751e-014 528 0.620727539063 5.55362889841e-013 2.41536974661e-014 529 0.621948242188 4.89122333219e-013 2.24505573434e-014 475 0.623168945313 5.15862729976e-013 2.2807736858e-014 512 0.624389648438 5.17379386225e-013 2.2548646126e-014 527 0.625610351563 5.05463553189e-013 2.20324203555e-014 527 0.626831054688 4.82999257347e-013 2.12363585779e-014 518 0.628051757813 4.90817971762e-013 2.10806017053e-014 543 0.629272460938 4.76073473469e-013 2.04298713253e-014 544 0.630493164063 4.04383154596e-013 1.85549194894e-014 476 0.631713867188 4.1493324853e-013 1.84692952272e-014 506 0.632934570313 4.16806121944e-013 1.81290355218e-014 530 0.634155273438 3.81060931877e-013 1.70002593196e-014 504 0.635375976563 3.95421732453e-013 1.69084545025e-014 549 0.636596679688 3.49734232055e-013 1.55462870625e-014 508 0.637817382813 3.30574711169e-013 1.4758553961e-014 504 0.639038085938 3.09013388823e-013 1.39119672231e-014 496 0.640258789063 3.20822524412e-013 1.37988928948e-014 544 0.641479492188 2.8758661094e-013 1.26933495019e-014 517 0.642700195313 2.70508856994e-013 1.19659018907e-014 515 0.643920898438 2.56067221922e-013 1.11960970698e-014 528 0.645141601563 2.27121678168e-013 1.01802916287e-014 503 0.646362304688 2.06993335378e-013 9.40902788761e-015 490 0.647583007813 2.12751987484e-013 9.15908730918e-015 547 0.648803710938 1.69101308786e-013 7.72010235839e-015 487 0.650024414063 1.67261992666e-013 7.37602135628e-015 524 0.651245117188 1.43583367725e-013 6.41924141247e-015 511 0.652465820313 1.2587134577e-013 5.70106649689e-015 501 0.653686523438 1.16089175087e-013 5.1718746789e-015 519 0.654907226563 9.48187466808e-014 4.35132330148e-015 493 0.656127929688 8.39262296162e-014 3.79703657199e-015 515 0.657348632813 7.42901666562e-014 3.23172978343e-015 564 0.658569335938 5.28902513103e-014 2.47123170307e-015 509 0.659790039063 3.91714233067e-014 1.88051533311e-015 521 0.661010742188 2.55454014169e-014 1.34266283059e-015 507 0.662231445313 1.3065460467e-014 8.78774556829e-016 518 0.663452148438 3.41064030803e-016 6.32254015966e-016 527 0.664672851563 -1.1088858297e-014 7.75790564992e-016 518 0.665893554688 -2.18110019843e-014 1.09887020244e-015 511 0.667114257813 -3.25882150441e-014 1.5305023199e-015 495 0.668334960938 -4.1433758858e-014 1.90749061492e-015 499 0.669555664063 -5.0138505821e-014 2.28411567064e-015 496 0.670776367188 -5.71426749999e-014 2.61025716683e-015 487 0.671997070313 -6.80104239779e-014 3.00419183413e-015 518 0.673217773438 -7.53860936781e-014 3.31131695955e-015 522 0.674438476563 -8.21581988034e-014 3.58642696457e-015 527 0.675659179688 -8.74873306163e-014 3.81700927953e-015 527 0.676879882813 -8.83864879654e-014 3.94213365312e-015 504 0.678100585938 -9.31200850562e-014 4.10905647911e-015 515 0.679321289063 -9.8621243474e-014 4.30313121329e-015 527 0.680541992188 -9.67916211843e-014 4.28361896492e-015 513 0.681762695313 -1.12522668676e-013 4.64321214713e-015 591 0.682983398438 -9.52157956431e-014 4.2833489741e-015 498 0.684204101563 -9.94835475064e-014 4.36347158157e-015 525 0.685424804688 -1.03560416548e-013 4.42129641746e-015 556 0.686645507813 -9.8534513323e-014 4.25617018859e-015 545 0.687866210938 -9.35890982613e-014 4.07991486984e-015 538 0.689086914063 -8.66186801882e-014 3.84193023038e-015 523 0.690307617188 -8.12962576339e-014 3.63642551868e-015 519 0.691528320313 -7.47903616878e-014 3.36463416983e-015 520 0.692749023438 -6.69059464627e-014 3.06465676344e-015 513 0.693969726563 -5.96782924213e-014 2.75392212003e-015 518 0.695190429688 -5.11734295786e-014 2.44485192059e-015 502 0.696411132813 -4.32470011958e-014 2.10748184796e-015 531 0.697631835938 -3.58398807285e-014 1.84855519671e-015 546 0.698852539063 -2.25022438673e-014 1.41051956777e-015 495 0.700073242188 -1.33530642665e-014 1.17403470228e-015 507 0.701293945313 -2.20000450264e-015 1.04183979687e-015 496 0.702514648438 1.22415666879e-014 1.28133569279e-015 518 0.703735351563 2.44713364681e-014 1.56318084355e-015 516 0.704956054688 4.03600861787e-014 2.0839687731e-015 555 0.706176757813 5.04610890094e-014 2.47878521549e-015 523 0.707397460938 7.04783026952e-014 3.24373229593e-015 555 0.708618164063 8.92206903169e-014 4.00132158614e-015 554 0.709838867188 1.00599155849e-013 4.56800300795e-015 529 0.711059570313 1.0820610239e-013 4.98612717896e-015 502 0.712280273438 1.26392551002e-013 5.73513192151e-015 512 0.713500976563 1.40808225623e-013 6.37456082425e-015 505 0.714721679688 1.74568195237e-013 7.49089159506e-015 560 0.715942382813 1.59623762053e-013 7.45947733076e-015 470 0.717163085938 1.88387838965e-013 8.57627176042e-015 494 0.718383789063 2.13640873773e-013 9.43455156962e-015 522 0.719604492188 2.26515331971e-013 1.01182397689e-014 509 0.720825195313 2.67401557868e-013 1.14125265958e-014 556 0.722045898438 2.49978310023e-013 1.13374374515e-014 492 0.723266601563 2.79896517275e-013 1.23694788466e-014 517 0.724487304688 2.97419172426e-013 1.3146243662e-014 516 0.725708007813 3.20860747897e-013 1.40510966578e-014 525 0.726928710938 3.45103168697e-013 1.49402187692e-014 537 0.728149414063 3.48725287504e-013 1.53779776497e-014 517 0.729370117188 3.58860130433e-013 1.59580656666e-014 508 0.730590820313 3.77448552315e-013 1.67334325679e-014 511 0.731811523438 3.752419081e-013 1.70152060326e-014 488 0.733032226563 4.04479188802e-013 1.80073099844e-014 506 0.734252929688 4.14055055313e-013 1.85225631766e-014 501 0.735473632813 4.36822522961e-013 1.93821065857e-014 509 0.736694335938 4.46179506446e-013 1.9871353442e-014 505 0.737915039063 4.79944034581e-013 2.09402904617e-014 526 0.739135742188 4.49477446911e-013 2.05488466506e-014 479 0.740356445313 5.53147575203e-013 2.30992968388e-014 574 0.741577148438 5.29833528751e-013 2.28732675973e-014 537 0.742797851563 5.32230442529e-013 2.31700492076e-014 528 0.744018554688 5.39446408988e-013 2.35714736303e-014 524 0.745239257813 5.34731776159e-013 2.37056854802e-014 509 0.746459960938 5.3879843988e-013 2.40035445692e-014 504 0.747680664063 5.80379988129e-013 2.5094660396e-014 535 0.748901367188 5.72995038622e-013 2.51293597695e-014 520 0.750122070313 6.17794238397e-013 2.62485388122e-014 554 0.751342773438 6.18187636123e-013 2.64083217699e-014 548 0.752563476563 5.90402245949e-013 2.59411617776e-014 518 0.753784179688 6.32255434878e-013 2.69597759279e-014 550 0.755004882813 6.05411704337e-013 2.64732369664e-014 523 0.756225585938 5.91523011456e-013 2.62452087283e-014 508 0.757446289063 6.00793216045e-013 2.65008956601e-014 514 0.758666992188 5.99907477341e-013 2.65140704253e-014 512 0.759887695313 6.18744749268e-013 2.69554206628e-014 527 0.761108398438 5.66786821953e-013 2.57929078948e-014 483 0.762329101563 6.23251978204e-013 2.70260963025e-014 532 0.763549804688 6.12154639305e-013 2.67739839418e-014 523 0.764770507813 6.31627471314e-013 2.71379878599e-014 542 0.765991210938 5.18018673338e-013 2.45098294643e-014 447 0.767211914063 6.15446645061e-013 2.66195711575e-014 535 0.768432617188 6.03009303353e-013 2.6231729751e-014 529 0.769653320313 6.02719745799e-013 2.60978195394e-014 534 0.770874023438 5.93546289212e-013 2.5799729572e-014 530 0.772094726563 5.90336728917e-013 2.55193766546e-014 536 0.773315429688 5.08819605779e-013 2.35158944215e-014 469 0.774536132813 5.06786394548e-013 2.33010056309e-014 474 0.775756835938 4.92651795024e-013 2.27736670733e-014 469 0.776977539063 5.42638995289e-013 2.3669886537e-014 527 0.778198242188 5.40235445947e-013 2.3434191784e-014 533 0.779418945313 4.75178834557e-013 2.16815941062e-014 482 0.780639648438 5.31880161576e-013 2.27218007705e-014 550 0.781860351563 4.77437831071e-013 2.12507860081e-014 507 0.783081054688 5.12247091468e-013 2.17385731739e-014 558 0.784301757813 4.57852529262e-013 2.02320034916e-014 515 0.785522460938 4.45613453012e-013 1.96728595979e-014 516 0.786743164063 4.53150303256e-013 1.95480592865e-014 541 0.787963867188 3.87761663055e-013 1.77120742236e-014 483 0.789184570313 4.17897946312e-013 1.80742687985e-014 539 0.790405273438 3.62053411583e-013 1.6511504229e-014 485 0.791625976563 3.76239261094e-013 1.64304329256e-014 530 0.792846679688 3.24911456861e-013 1.49828186312e-014 476 0.794067382813 3.34151996279e-013 1.48629721364e-014 512 0.795288085938 3.29974151796e-013 1.44454389229e-014 529 0.796508789063 3.05679580579e-013 1.34682041909e-014 524 0.797729492188 2.90684108582e-013 1.2723007438e-014 532 0.798950195313 2.57199003733e-013 1.16501580947e-014 498 0.800170898438 2.58480510943e-013 1.12026314778e-014 545 0.801391601563 2.27068485702e-013 1.02703603893e-014 502 0.802612304688 2.13725295404e-013 9.62791812887e-015 508 0.803833007813 1.91935922131e-013 8.74560409708e-015 500 0.805053710938 1.65667479442e-013 7.8342618973e-015 466 0.806274414063 1.67427312975e-013 7.54478337045e-015 518 0.807495117188 1.494380146e-013 6.78928315704e-015 510 0.808715820313 1.28623186161e-013 5.97258307102e-015 498 0.809936523438 1.22826251706e-013 5.5558489276e-015 535 0.811157226563 1.02184473272e-013 4.75970424243e-015 515 0.812377929688 8.12142598747e-014 3.9242837082e-015 498 0.813598632813 7.4058139948e-014 3.56215720335e-015 529 0.814819335938 5.22269815369e-014 2.72205453857e-015 498 0.816040039063 4.23139130728e-014 2.28562420975e-015 518 0.817260742188 2.86679652014e-014 1.8116182772e-015 510 0.818481445313 1.63108538025e-014 1.46779794999e-015 535 0.819702148438 6.58553825153e-015 1.2545204985e-015 526 0.820922851563 -4.86738819264e-015 1.15971043649e-015 515 0.822143554688 -1.73159206779e-014 1.32241781576e-015 516 0.823364257813 -2.58186724401e-014 1.51775433867e-015 500 0.824584960938 -3.83785692152e-014 1.91468401325e-015 549 0.825805664063 -4.18055595969e-014 2.10529091448e-015 471 0.827026367188 -5.14312474276e-014 2.49833589947e-015 476 0.828247070313 -6.24430125066e-014 2.85344597441e-015 516 0.829467773438 -6.38730806249e-014 2.98770401445e-015 482 0.830688476563 -8.24057271505e-014 3.49555046809e-015 576 0.831909179688 -7.70150417012e-014 3.45336944365e-015 509 0.833129882813 -8.97580706534e-014 3.83434163861e-015 557 0.834350585938 -8.98991666779e-014 3.89317317304e-015 539 0.835571289063 -9.1966989192e-014 3.98948098152e-015 535 0.836791992188 -8.65004460246e-014 3.88329411378e-015 498 0.838012695313 -8.57632501664e-014 3.89055080499e-015 487 0.839233398438 -9.2723500096e-014 4.04203465854e-015 527 0.840454101563 -8.14752251691e-014 3.76935532862e-015 468 0.841674804688 -8.52477569591e-014 3.82937346543e-015 497 0.842895507813 -8.48706695332e-014 3.75675145036e-015 513 0.844116210938 -7.94444516292e-014 3.56880365691e-015 500 0.845336914063 -8.03636208857e-014 3.50844369709e-015 533 0.846557617188 -7.58450656991e-014 3.31554433817e-015 536 0.847778320313 -7.11573946496e-014 3.0950619109e-015 549 0.848999023438 -6.03721066002e-014 2.72713932284e-015 518 0.850219726563 -5.16604850821e-014 2.42584766089e-015 497 0.851440429688 -4.54535321213e-014 2.13138243649e-015 530 0.852661132813 -3.49508115075e-014 1.79004243987e-015 503 0.853881835938 -2.76365376503e-014 1.54131703625e-015 521 0.855102539063 -1.516709439e-014 1.1962459022e-015 511 0.856323242188 -2.93083643889e-015 1.13837212832e-015 539 0.857543945313 6.79456764152e-015 1.20958752591e-015 506 0.858764648438 1.82272310844e-014 1.45666936624e-015 491 0.859985351563 3.35940181907e-014 1.98239306705e-015 507 0.861206054688 3.942525693e-014 2.28033533095e-015 458 0.862426757813 5.70437294335e-014 2.90639934866e-015 492 0.863647460938 7.51669345648e-014 3.59168393831e-015 527 0.864868164063 8.54463476841e-014 4.06891662658e-015 505 0.866088867188 1.0878784546e-013 4.98548981251e-015 525 0.867309570313 1.10592154256e-013 5.29569777339e-015 479 0.868530273438 1.38188065183e-013 6.29035086561e-015 519 0.869750976563 1.59180561773e-013 7.09875085376e-015 533 0.870971679688 1.73697507732e-013 7.78436582791e-015 524 0.872192382813 2.05907149309e-013 8.7794558271e-015 574 0.873413085938 2.14245306275e-013 9.40447925877e-015 538 0.874633789063 2.23536248409e-013 9.96108132288e-015 519 0.875854492188 2.40615919259e-013 1.0689581637e-014 521 0.877075195313 2.48370537648e-013 1.12874355986e-014 496 0.878295898438 2.88967031315e-013 1.24921682481e-014 548 0.879516601563 2.81938696886e-013 1.26866926865e-014 504 0.880737304688 3.10207389612e-013 1.37299779846e-014 519 0.881958007813 3.1915277093e-013 1.43355007656e-014 503 0.883178710938 3.5559729627e-013 1.54945956045e-014 534 0.884399414063 3.93764340547e-013 1.66445808198e-014 567 0.885620117188 3.66663336538e-013 1.64914322174e-014 500 0.886840820313 3.68427849508e-013 1.6781476548e-014 487 0.888061523438 4.32529301299e-013 1.86282843566e-014 544 0.889282226563 4.01335927289e-013 1.82252267228e-014 489 0.890502929688 4.59386294784e-013 1.98935656985e-014 537 0.891723632813 4.68359980171e-013 2.03916410351e-014 531 0.892944335938 4.65989091963e-013 2.06518471163e-014 512 0.894165039063 4.59842323645e-013 2.08008018075e-014 491 0.895385742188 4.7548906785e-013 2.14209337914e-014 495 0.896606445313 4.85394711229e-013 2.18846183268e-014 494 0.897827148438 5.29586867552e-013 2.31992314522e-014 523 0.899047851563 5.36494959848e-013 2.35391881063e-014 521 0.900268554688 5.80420522562e-013 2.47359115207e-014 552 0.901489257813 5.72483747977e-013 2.48236464578e-014 533 0.902709960938 5.79777431417e-013 2.52087572319e-014 530 0.903930664063 5.81494131926e-013 2.54228452923e-014 524 0.905151367188 5.36450344835e-013 2.46035639414e-014 476 0.906372070313 6.44321542727e-013 2.71204984514e-014 565 0.907592773438 5.84487274755e-013 2.59439699864e-014 508 0.908813476563 6.44320805691e-013 2.73846084723e-014 554 0.910034179688 5.85736717175e-013 2.61760989542e-014 501 0.911254882813 5.71052916844e-013 2.59619238425e-014 484 0.912475585938 5.95932906168e-013 2.65752627808e-014 503 0.913696289063 5.98267996773e-013 2.66517125946e-014 504 0.914916992188 6.08599862584e-013 2.69245454218e-014 511 0.916137695313 6.60521072714e-013 2.80639006198e-014 554 0.917358398438 6.04076510713e-013 2.68285678734e-014 507 0.918579101563 6.31152953144e-013 2.73901851591e-014 531 0.919799804688 6.52926619378e-013 2.78162869292e-014 551 0.921020507813 6.23654730142e-013 2.71164631756e-014 529 0.922241210938 5.85975233007e-013 2.62072584725e-014 500 0.923461914063 5.81017851851e-013 2.59866182733e-014 500 0.924682617188 5.62847200668e-013 2.54567926998e-014 489 0.925903320313 5.96488886191e-013 2.60640633808e-014 524 0.927124023438 5.82927321963e-013 2.55950898269e-014 519 0.928344726563 5.39890641752e-013 2.44983660527e-014 486 0.929565429688 5.78975995334e-013 2.51601050477e-014 530 0.930786132813 5.22796886923e-013 2.37030250193e-014 487 0.932006835938 5.52081754801e-013 2.41369716289e-014 524 0.933227539063 5.44573612725e-013 2.37398235194e-014 527 0.934448242188 4.96519475255e-013 2.2408450949e-014 492 0.935668945313 5.31145075768e-013 2.29493525039e-014 537 0.936889648438 4.60135081345e-013 2.11406804009e-014 475 0.938110351563 5.29968066619e-013 2.22725158445e-014 568 0.939331054688 4.60234614651e-013 2.04961617323e-014 506 0.940551757813 4.47776210327e-013 1.9927348995e-014 507 0.941772460938 4.60877088677e-013 1.98997971418e-014 539 0.942993164063 4.09035364796e-013 1.83806524922e-014 498 0.944213867188 4.50680500695e-013 1.89359635338e-014 570 0.945434570313 3.83266106065e-013 1.71675479392e-014 502 0.946655273438 3.84049671571e-013 1.68115746822e-014 526 0.947875976563 3.66617816028e-013 1.60676463261e-014 525 0.949096679688 3.1334294272e-013 1.44373436838e-014 476 0.950317382813 3.08828139689e-013 1.40269678835e-014 490 0.951538085938 3.13268084373e-013 1.385064948e-014 518 0.952758789063 2.90697985954e-013 1.29678447242e-014 510 0.953979492188 2.60357524777e-013 1.18982004831e-014 487 0.955200195313 2.36961396529e-013 1.09259302221e-014 479 0.956420898438 2.39414059538e-013 1.06846604351e-014 513 0.957641601563 2.44016516254e-013 1.03147802578e-014 574 0.958862304688 2.13021006947e-013 9.33086781492e-015 535 0.960083007813 1.9319487397e-013 8.5036659284e-015 534 0.961303710938 1.65992856792e-013 7.52262175102e-015 508 0.962524414063 1.4134420024e-013 6.59993551026e-015 481 0.963745117188 1.35772241103e-013 6.11084951235e-015 523 0.964965820313 1.19537747676e-013 5.44654029738e-015 513 0.966186523438 1.01519074348e-013 4.73606896559e-015 502 0.967407226563 7.83171872793e-014 3.81254760744e-015 473 0.968627929688 7.55984050866e-014 3.52395380203e-015 531 0.969848632813 5.23681183647e-014 2.68854330917e-015 470 0.971069335938 4.43224331718e-014 2.2879784001e-015 506 0.972290039063 3.17238338012e-014 1.76462896956e-015 532 0.973510742188 1.4695037489e-014 1.21616554321e-015 513 0.974731445313 2.58215159923e-015 9.34157318265e-016 485 0.975952148438 -8.88256899702e-015 1.01324982215e-015 554 0.977172851563 -2.0780203095e-014 1.2211675513e-015 537 0.978393554688 -2.85470644416e-014 1.47521371404e-015 520 0.979614257813 -4.15653752991e-014 1.92893743009e-015 540 0.980834960938 -4.83300063993e-014 2.23498643802e-015 510 0.982055664063 -5.85826875177e-014 2.62279783892e-015 525 0.983276367188 -6.32940529178e-014 2.86021962342e-015 505 0.984497070313 -6.61861255669e-014 3.06891326107e-015 474 0.985717773438 -7.25343017371e-014 3.33601690814e-015 478 0.986938476563 -8.22480632474e-014 3.65523029683e-015 510 0.988159179688 -8.63149861622e-014 3.84990032971e-015 505 0.989379882813 -8.67702279656e-014 3.92363811936e-015 491 0.990600585938 -8.94355585089e-014 4.05647692506e-015 488 0.991821289063 -9.96157699847e-014 4.32487449541e-015 533 0.993041992188 -9.46277054837e-014 4.22182176526e-015 506 0.994262695313 -1.03468688009e-013 4.44217348963e-015 547 0.995483398438 -1.02983644771e-013 4.43714839641e-015 545 0.996704101563 -8.86314706917e-014 4.09907608257e-015 475 0.997924804688 -8.96053725533e-014 4.07138055875e-015 495 0.999145507813 -8.58361931864e-014 3.93567519905e-015 490 1.00036621094 -8.63884775839e-014 3.86831005491e-015 519 1.00158691406 -8.63292761128e-014 3.79736248665e-015 542 1.00280761719 -7.54877505295e-014 3.44486221437e-015 514 1.00402832031 -7.28462954049e-014 3.30530800134e-015 534 1.00524902344 -6.11394059866e-014 2.88452069022e-015 518 1.00646972656 -5.29984928475e-014 2.59493949576e-015 510 1.00769042969 -4.35708034334e-014 2.26266517644e-015 495 1.00891113281 -3.72147159065e-014 2.03594769374e-015 529 1.01013183594 -2.81723464069e-014 1.7659094786e-015 523 1.01135253906 -1.452567372e-014 1.44969412741e-015 515 1.01257324219 -3.76202447583e-015 1.40295571257e-015 501 1.01379394531 8.69142255064e-015 1.4790184058e-015 494 1.01501464844 2.10367135719e-014 1.73445169721e-015 506 1.01623535156 3.34917014421e-014 2.14613395607e-015 503 1.01745605469 4.79617888897e-014 2.62377736624e-015 512 1.01867675781 6.55250665392e-014 3.25192693874e-015 539 1.01989746094 7.32955357517e-014 3.66674326865e-015 494 1.02111816406 8.68571979423e-014 4.25280729416e-015 490 1.02233886719 1.14600749486e-013 5.16625159526e-015 555 1.02355957031 1.17850700658e-013 5.57253551672e-015 492 1.02478027344 1.38715742288e-013 6.30206560746e-015 525 1.02600097656 1.51583214295e-013 6.94006002349e-015 507 1.02722167969 1.7079073549e-013 7.72895868837e-015 514 1.02844238281 1.97234201981e-013 8.65639714248e-015 542 1.02966308594 2.03514680885e-013 9.17941575829e-015 510 1.03088378906 2.28634051364e-013 1.0096457676e-014 529 1.03210449219 2.41476218603e-013 1.07525009908e-014 518 1.03332519531 2.51893474518e-013 1.13355508923e-014 505 1.03454589844 2.74464270205e-013 1.21963720147e-014 516 1.03576660156 2.94781783881e-013 1.30406478445e-014 520 1.03698730469 3.07973779488e-013 1.36822091081e-014 514 1.03820800781 3.28629976684e-013 1.44752250764e-014 522 1.03942871094 3.40438516273e-013 1.51449162048e-014 511 1.04064941406 3.61940750657e-013 1.59334542155e-014 521 1.04187011719 3.95368799215e-013 1.70383843762e-014 543 1.04309082031 3.78264994547e-013 1.69918620788e-014 499 1.04431152344 4.09010610015e-013 1.80287968837e-014 518 1.04553222656 4.30405931383e-013 1.88157035475e-014 526 1.04675292969 4.48464215011e-013 1.94911802648e-014 532 1.04797363281 4.62461368191e-013 2.01851383073e-014 527 1.04919433594 4.87726605328e-013 2.10243565943e-014 540 1.05041503906 4.81144275609e-013 2.1210581283e-014 516 1.05163574219 4.93777719685e-013 2.16987828412e-014 519 1.05285644531 4.71217561475e-013 2.14618125903e-014 483 1.05407714844 5.09625914136e-013 2.25837829842e-014 510 1.05529785156 5.39985674923e-013 2.35374747863e-014 527 1.05651855469 5.27878905065e-013 2.34787589563e-014 506 1.05773925781 5.27844839749e-013 2.36628801754e-014 498 1.05895996094 5.54250509216e-013 2.44544089349e-014 514 1.06018066406 5.32365417935e-013 2.412874637e-014 487 1.06140136719 5.83143184574e-013 2.5454477638e-014 525 1.06262207031 5.50631776944e-013 2.48773406473e-014 490 1.06384277344 6.32996044642e-013 2.67983208411e-014 558 1.06506347656 5.9653834216e-013 2.61355167798e-014 521 1.06628417969 5.8392176849e-013 2.59587531344e-014 506 1.06750488281 5.78176799769e-013 2.59089165996e-014 498 1.06872558594 6.02981010304e-013 2.6519473822e-014 517 1.06994628906 6.21112310334e-013 2.69550262087e-014 531 1.07116699219 6.10358136992e-013 2.67678077105e-014 520 1.07238769531 6.06548525751e-013 2.66791366961e-014 517 1.07360839844 5.83575761811e-013 2.618150795e-014 497 1.07482910156 5.93172523478e-013 2.63759927114e-014 506 1.07604980469 6.28117292941e-013 2.70889146764e-014 538 1.07727050781 5.47520327626e-013 2.52392570743e-014 471 1.07849121094 6.0684230669e-013 2.64736771132e-014 526 1.07971191406 6.32396193357e-013 2.68848011975e-014 554 1.08093261719 5.73450137262e-013 2.54626044986e-014 508 1.08215332031 6.26769637972e-013 2.65356453692e-014 559 1.08337402344 5.26839176631e-013 2.41981902005e-014 475 1.08459472656 5.69670078978e-013 2.49908558383e-014 521 1.08581542969 5.79095926108e-013 2.50776645429e-014 535 1.08703613281 5.38391886117e-013 2.39534233123e-014 507 1.08825683594 5.09667592728e-013 2.3003634665e-014 493 1.08947753906 5.5916881445e-013 2.38992357497e-014 550 1.09069824219 5.05060027598e-013 2.24920034784e-014 507 1.09191894531 5.4019421428e-013 2.30375029467e-014 553 1.09313964844 4.74232063409e-013 2.13261386251e-014 498 1.09436035156 4.74076282068e-013 2.10484265049e-014 511 1.09558105469 4.83217304912e-013 2.09613067429e-014 536 1.09680175781 4.45112173054e-013 1.98023228938e-014 510 1.09802246094 4.17838899077e-013 1.88884162912e-014 495 1.09924316406 4.27721881154e-013 1.87633530386e-014 526 1.10046386719 4.14399801881e-013 1.81447608208e-014 528 1.10168457031 3.67514758717e-013 1.67121524663e-014 491 1.10290527344 3.68009786509e-013 1.64778384638e-014 507 1.10412597656 3.49519321524e-013 1.56842109526e-014 506 1.10534667969 3.61903125704e-013 1.5643301241e-014 546 1.10656738281 3.26394783348e-013 1.45213603958e-014 517 1.10778808594 3.03069340519e-013 1.35796796674e-014 512 1.10900878906 2.99238200694e-013 1.32178345626e-014 527 1.11022949219 2.74792424636e-013 1.22442784047e-014 522 1.11145019531 2.87755279114e-013 1.22286234739e-014 575 1.11267089844 2.24436884426e-013 1.04308825544e-014 483 1.11389160156 2.15403513039e-013 9.92469776428e-015 495 1.11511230469 2.03806963369e-013 9.23279952036e-015 518 1.11633300781 1.79752325843e-013 8.36390985738e-015 494 1.11755371094 1.7166831065e-013 7.93713593234e-015 505 1.11877441406 1.57546788927e-013 7.20843694179e-015 524 1.11999511719 1.51647427526e-013 6.79825061464e-015 555 1.12121582031 1.14159312539e-013 5.52583649019e-015 492 1.12243652344 1.05510738833e-013 5.12619388759e-015 498 1.12365722656 9.5835767856e-014 4.63224621409e-015 528 1.12487792969 8.01698205512e-014 3.99590197139e-015 525 1.12609863281 6.55014910785e-014 3.38534233729e-015 522 1.12731933594 5.26973683298e-014 2.93883370792e-015 543 1.12854003906 3.48788379583e-014 2.34218187244e-015 502 1.12976074219 2.06131373429e-014 1.88861218034e-015 522 1.13098144531 7.96849337561e-015 1.61024219464e-015 518 1.13220214844 -6.47974196299e-016 1.53226488628e-015 502 1.13342285156 -1.29525413139e-014 1.53669387128e-015 521 1.13464355469 -2.4199027486e-014 1.71260033869e-015 525 1.13586425781 -3.50857337505e-014 1.96728822694e-015 558 1.13708496094 -4.36858588131e-014 2.21091747786e-015 542 1.13830566406 -4.73115111454e-014 2.38554240176e-015 487 1.13952636719 -5.47348076011e-014 2.62486019519e-015 498 1.14074707031 -6.65354673614e-014 3.02726766562e-015 526 1.14196777344 -6.93450137647e-014 3.20436539385e-015 495 1.14318847656 -7.06027876189e-014 3.28961892701e-015 479 1.14440917969 -8.14758487984e-014 3.62059886245e-015 520 1.14562988281 -8.00103959453e-014 3.65254045509e-015 487 1.14685058594 -8.9981735614e-014 3.93000215023e-015 529 1.14807128906 -9.34954201895e-014 4.03538885514e-015 539 1.14929199219 -9.13602843673e-014 4.00574190044e-015 521 1.15051269531 -9.82316172132e-014 4.15976156572e-015 558 1.15173339844 -8.45319514107e-014 3.84857500747e-015 483 1.15295410156 -8.54203393877e-014 3.84249395552e-015 496 1.15417480469 -9.05071497437e-014 3.90603542255e-015 541 1.15539550781 -8.27249316234e-014 3.68421081738e-015 511 1.15661621094 -7.47356252092e-014 3.39815701078e-015 495 1.15783691406 -7.700350182e-014 3.41584862844e-015 529 1.15905761719 -6.65174990748e-014 3.06051889632e-015 502 1.16027832031 -6.09276268826e-014 2.84806575832e-015 500 1.16149902344 -5.33018911666e-014 2.56687042138e-015 495 1.16271972656 -4.74176184398e-014 2.32895090683e-015 528 1.16394042969 -3.63933537207e-014 1.98668210124e-015 497 1.16516113281 -3.13555886892e-014 1.85748587333e-015 529 1.16638183594 -1.74454476324e-014 1.54762482965e-015 496 1.16760253906 -8.97307821348e-015 1.44448949502e-015 479 1.16882324219 5.98006926742e-015 1.44783375566e-015 452 1.17004394531 1.70341214869e-014 1.62087543918e-015 423 1.17126464844 2.42681743547e-014 1.93532775382e-015 434 1.17248535156 3.3848507484e-014 2.28904661853e-015 401 1.17370605469 4.46839028786e-014 2.77144223377e-015 396 1.17492675781 5.25660979693e-014 3.13370491788e-015 391 1.17614746094 5.82516735922e-014 3.53032213625e-015 344 1.17736816406 6.82818026809e-014 4.02091517184e-015 348 1.17858886719 7.27901533565e-014 4.45144714934e-015 308 1.17980957031 8.96286887965e-014 5.10920957063e-015 349 1.18103027344 9.38633964416e-014 5.47588633916e-015 324 1.18225097656 9.76157412748e-014 5.78278797902e-015 311 1.18347167969 1.10225334783e-013 6.5005692012e-015 309 1.18469238281 1.140894094e-013 6.88428883221e-015 292 1.18591308594 1.03861054645e-013 6.81507628406e-015 245 1.18713378906 1.23279555001e-013 7.79889279054e-015 261 1.18835449219 1.28944459682e-013 8.2290793306e-015 255 1.18957519531 1.25731064272e-013 8.26327788681e-015 240 1.19079589844 1.17009937328e-013 8.20897098046e-015 210 1.19201660156 1.16366701826e-013 8.4563574863e-015 195 1.19323730469 1.15234337768e-013 8.63532839488e-015 183 1.19445800781 1.10356605937e-013 8.71494331658e-015 164 1.19567871094 1.3037826938e-013 9.59939972328e-015 188 1.19689941406 1.09457472444e-013 8.99263011154e-015 151 1.19812011719 1.21839903615e-013 9.72789656392e-015 159 1.19934082031 1.11102854768e-013 9.48488542091e-015 139 1.20056152344 9.62978313848e-014 9.03343662149e-015 115 1.20178222656 1.00015025091e-013 9.33110877578e-015 116 1.20300292969 8.46472025082e-014 8.68820101034e-015 96 1.20422363281 7.86005803104e-014 8.56358046378e-015 85 1.20544433594 6.10515095622e-014 7.60135980879e-015 65 1.20666503906 6.46444416237e-014 7.92858671949e-015 67 1.20788574219 3.70709546655e-014 6.02863995171e-015 38 1.20910644531 2.93623123212e-014 5.38177739597e-015 30 1.21032714844 2.71171431622e-014 5.23024326621e-015 27 1.21154785156 8.39407229655e-015 2.97787277403e-015 8 1.21276855469 2.25374909157e-015 1.59364471906e-015 2 1.21398925781 0 0 0 1.21520996094 0 0 0 1.21643066406 0 0 0 1.21765136719 0 0 0 1.21887207031 0 0 0 1.22009277344 0 0 0 1.22131347656 0 0 0 1.22253417969 0 0 0 1.22375488281 0 0 0 1.22497558594 0 0 0 1.22619628906 0 0 0 1.22741699219 0 0 0 1.22863769531 0 0 0 1.22985839844 0 0 0 1.23107910156 0 0 0 1.23229980469 0 0 0 1.23352050781 0 0 0 1.23474121094 0 0 0 1.23596191406 0 0 0 1.23718261719 0 0 0 1.23840332031 0 0 0 1.23962402344 0 0 0 1.24084472656 0 0 0 1.24206542969 0 0 0 1.24328613281 0 0 0 1.24450683594 0 0 0 1.24572753906 0 0 0 1.24694824219 0 0 0 1.24816894531 0 0 0 1.24938964844 0 0 0 # EndDate:Tue Jul 02 11:08:14 2013 From pkwi at fysik.dtu.dk Tue Jul 2 13:17:09 2013 From: pkwi at fysik.dtu.dk (=?Windows-1252?Q?Peter_Kj=E6r_Willendrup?=) Date: Tue, 2 Jul 2013 11:17:09 +0000 Subject: [mcstas-users] Negative intensity reading on a PSD_monitor? In-Reply-To: <51D2AB26.8040501@tudelft.nl> References: <51D2AB26.8040501@tudelft.nl> Message-ID: Dear Serge, On Jul 2, 2013, at 12:27 , Serge Duarte Pinto > wrote: I am trying to simulate a spin precession setup that yields a spatial modulation pattern after an analyzer. The modulations clearly show up on the PSD_monitor (see screenshot), but curiously the downward swings go below zero intensity! I wonder how that is possible, and what I could possibly do against it. True, negative intensities does not sound completely right? :-) I will have a closer look at this together with Erik Knudsen who implemented most of the polarisation support. Is it correctly understood that the two included comps are your own codes? I also do not understand the units of intensity: I send a million neutrons to an area of 5 cm^2, to get intensities of the order 10^-13? This one I should be able to explain: You are using Source_simple which by default has an intensity of 1 neutrons/sec/cm^2/(4*PI)/?. In your instrument file I see that you assign a focusing to only 1x1cm at a distance of 100 m which brings your emitted intensity down to something like 1e-9, and distributed over your 1e6 rays, this easily gives the low intensities you are seeing. I attach the instrument description, together with the components Foil_flipper_magnet and Analyser_ideal it depends on. And the result I get when I run it. Thanks, I will have a closer look. Best, Peter Peter Kj?r Willendrup Senior Research Engineer, Special Advisor DTU Physics Technical University of Denmark [cid:image002.gif at 01CCCAF1.5E6331F0][cid:EC2A3CAB-AF57-4CEB-96B0-23F6DC35FE76 at fysik.dtu.dk] Department of Physics Neutrons and X-rays for Materials Physics Fysikvej Building 307 DK-2800 Kongens Lyngby Direct +45 2125 4612 Mobil +45 2125 4612 Fax +45 4593 2399 pkwi at fysik.dtu.dk -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: image001.gif Type: image/gif Size: 58 bytes Desc: image001.gif URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: image002.gif Type: image/gif Size: 1055 bytes Desc: image002.gif URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: nexmap.jpg Type: image/jpeg Size: 10708 bytes Desc: nexmap.jpg URL: From pkwi at fysik.dtu.dk Thu Jul 4 19:01:55 2013 From: pkwi at fysik.dtu.dk (=?iso-8859-1?Q?Peter_Kj=E6r_Willendrup?=) Date: Thu, 4 Jul 2013 17:01:55 +0000 Subject: [mcstas-users] First Circular: Joint Vitess and McStas School and Workshop in Berlin, September 18th-20th Message-ID: Hello fellow simulators! The joint Vitess and McStas teams are planning a common simulation school and workshop this fall - scheduled for September 18th-20th in the Berlin area. A rough program of the three-day school is: Day 1: Introduction and tutorials for the two packages, intended mainly for new users. Hands-on exercises. Day 2: Advanced features demonstrated by examples and talks. Hands-on exercises. Day 3: Users have an option to present their own work, give feedback and suggestions for new features. To have an estimate of the number of participants, please send us a short email to vitess at helmholtz-berlin.de indicating this, preferably before the end of July. If you are already experienced with the packages and hence would like to skip the first day, please also indicate this. Send us the email does not oblige you to participate. :-) All the best from the combined Vitess and McStas teams! Peter Kj?r Willendrup Senior Research Engineer, Special Advisor DTU Physics Technical University of Denmark [cid:image002.gif at 01CCCAF1.5E6331F0][cid:EC2A3CAB-AF57-4CEB-96B0-23F6DC35FE76 at fysik.dtu.dk] Department of Physics Neutrons and X-rays for Materials Physics Fysikvej Building 307 DK-2800 Kongens Lyngby Direct +45 2125 4612 Mobil +45 2125 4612 Fax +45 4593 2399 pkwi at fysik.dtu.dk -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: image001.gif Type: image/gif Size: 58 bytes Desc: image001.gif URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: image002.gif Type: image/gif Size: 1055 bytes Desc: image002.gif URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: nexmap.jpg Type: image/jpeg Size: 10708 bytes Desc: nexmap.jpg URL: From robert.dalgliesh at stfc.ac.uk Wed Jul 10 14:29:12 2013 From: robert.dalgliesh at stfc.ac.uk (robert.dalgliesh at stfc.ac.uk) Date: Wed, 10 Jul 2013 12:29:12 +0000 Subject: [mcstas-users] mcstas Matlab output Message-ID: <9FD256ED3764AA40BD335311A4123FA01DBAE274@EXCHMBX03.fed.cclrc.ac.uk> Hi, I've discovered a reasonably large problem with the mcstas-2.0 option to create directories for output with long paths. Matlab has a limit of 63 characters for variable names. The way that the variables get constructed in the mcstas.m file then breaks with a relatively short path. e.g. /home/user/instrument/with_sample/with_sample_date_time etc. etc. This results in truncation of the variable names. My guess is that the mcstas.m script needs to be modified to shorten the variable name stored in the ans.mc_detector Structure. Not sure where the stuff that builds the output is located though Rob =================================== Dr. Robert Dalgliesh ISIS STFC Rutherford Appleton Laboratory R3 1.29 Harwell Oxford Didcot OX11 0QX Office Tel: +44 (0) 1235 445687 or OffSpec Instrument: +44 (0) 1235 567045 Internal Mobile Extension: 1176 e-mail: robert.dalgliesh at stfc.ac.uk -- Scanned by iCritical. -------------- next part -------------- An HTML attachment was scrubbed... URL: From pkwi at fysik.dtu.dk Wed Jul 10 15:51:50 2013 From: pkwi at fysik.dtu.dk (=?Windows-1252?Q?Peter_Kj=E6r_Willendrup?=) Date: Wed, 10 Jul 2013 13:51:50 +0000 Subject: [mcstas-users] mcstas Matlab output In-Reply-To: <9FD256ED3764AA40BD335311A4123FA01DBAE274@EXCHMBX03.fed.cclrc.ac.uk> References: <9FD256ED3764AA40BD335311A4123FA01DBAE274@EXCHMBX03.fed.cclrc.ac.uk> Message-ID: <48593D6B-2478-4CF5-9B48-34208B384891@fysik.dtu.dk> Hi Rob, Thanks for reporting this, will see what can be done about this! Is it correctly understood that you see this when using mcplot (Matlab) from mcgui? Best, Peter On Jul 10, 2013, at 13:29 , > wrote: Hi, I?ve discovered a reasonably large problem with the mcstas-2.0 option to create directories for output with long paths. Matlab has a limit of 63 characters for variable names. The way that the variables get constructed in the mcstas.m file then breaks with a relatively short path. e.g. /home/user/instrument/with_sample/with_sample_date_time etc. etc. This results in truncation of the variable names. My guess is that the mcstas.m script needs to be modified to shorten the variable name stored in the ans.mc_detector Structure. Not sure where the stuff that builds the output is located though Rob =================================== Dr. Robert Dalgliesh ISIS STFC Rutherford Appleton Laboratory R3 1.29 Harwell Oxford Didcot OX11 0QX Office Tel: +44 (0) 1235 445687 or OffSpec Instrument: +44 (0) 1235 567045 Internal Mobile Extension: 1176 e-mail: robert.dalgliesh at stfc.ac.uk -- Scanned by iCritical. _______________________________________________ mcstas-users mailing list mcstas-users at mcstas.org http://mailman.mcstas.org/cgi-bin/mailman/listinfo/mcstas-users Peter Kj?r Willendrup Senior Research Engineer, Special Advisor DTU Physics Technical University of Denmark [cid:image002.gif at 01CCCAF1.5E6331F0][cid:EC2A3CAB-AF57-4CEB-96B0-23F6DC35FE76 at fysik.dtu.dk] Department of Physics Neutrons and X-rays for Materials Physics Fysikvej Building 307 DK-2800 Kongens Lyngby Direct +45 2125 4612 Mobil +45 2125 4612 Fax +45 4593 2399 pkwi at fysik.dtu.dk -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: image001.gif Type: image/gif Size: 58 bytes Desc: image001.gif URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: image002.gif Type: image/gif Size: 1055 bytes Desc: image002.gif URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: nexmap.jpg Type: image/jpeg Size: 10708 bytes Desc: nexmap.jpg URL: From pkwi at fysik.dtu.dk Fri Aug 9 07:02:42 2013 From: pkwi at fysik.dtu.dk (=?iso-8859-1?Q?Peter_Kj=E6r_Willendrup?=) Date: Fri, 9 Aug 2013 05:02:42 +0000 Subject: [mcstas-users] First Circular: Joint Vitess and McStas School and Workshop in Berlin, September 18th-20th In-Reply-To: References: Message-ID: <8E9E6089-83AF-4BFA-9A96-766078892821@fysik.dtu.dk> Dear colleagues, The registration for the "Joint Vitess and McStas school & workshop" September 18th-20th in Berlin at the Grand City Hotel Globus Berlin. is now open. Please register visiting the following website: https://www.helmholtz-berlin.de/events/joint-vitess/index_de.html Please make your own arrangements with the meeting hotel. Refer to "HZB" or "neutron simulation school" when booking your room that they know you belong to the workshop. We are looking forward to seeing you in Berlin! Peter Willendrup on behalf of the organisers On Jul 4, 2013, at 07:01 , Peter Kj?r Willendrup wrote: Hello fellow simulators! The joint Vitess and McStas teams are planning a common simulation school and workshop this fall - scheduled for September 18th-20th in the Berlin area. A rough program of the three-day school is: Day 1: Introduction and tutorials for the two packages, intended mainly for new users. Hands-on exercises. Day 2: Advanced features demonstrated by examples and talks. Hands-on exercises. Day 3: Users have an option to present their own work, give feedback and suggestions for new features. To have an estimate of the number of participants, please send us a short email to vitess at helmholtz-berlin.de indicating this, preferably before the end of July. If you are already experienced with the packages and hence would like to skip the first day, please also indicate this. Send us the email does not oblige you to participate. :-) All the best from the combined Vitess and McStas teams! Peter Kj?r Willendrup Senior Research Engineer, Special Advisor DTU Physics Technical University of Denmark Department of Physics Neutrons and X-rays for Materials Physics Fysikvej Building 307 DK-2800 Kongens Lyngby Direct +45 2125 4612 Mobil +45 2125 4612 Fax +45 4593 2399 pkwi at fysik.dtu.dk _______________________________________________ mcstas-users mailing list mcstas-users at mcstas.org http://mailman.mcstas.org/cgi-bin/mailman/listinfo/mcstas-users Peter Kj?r Willendrup Senior Research Engineer, Special Advisor DTU Physics Technical University of Denmark [cid:image002.gif at 01CCCAF1.5E6331F0][cid:EC2A3CAB-AF57-4CEB-96B0-23F6DC35FE76 at fysik.dtu.dk] Department of Physics Neutrons and X-rays for Materials Physics Fysikvej Building 307 DK-2800 Kongens Lyngby Direct +45 2125 4612 Mobil +45 2125 4612 Fax +45 4593 2399 pkwi at fysik.dtu.dk -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: image001.gif Type: image/gif Size: 58 bytes Desc: image001.gif URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: image002.gif Type: image/gif Size: 1055 bytes Desc: image002.gif URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: nexmap.jpg Type: image/jpeg Size: 10708 bytes Desc: nexmap.jpg URL: From hjelm at lanl.gov Fri Aug 9 20:01:21 2013 From: hjelm at lanl.gov (Hjelm, Rex r) Date: Fri, 9 Aug 2013 18:01:21 +0000 Subject: [mcstas-users] Posting of open Deputy Group Leader position at the Lujan Neutron Scattering Center In-Reply-To: <8E9E6089-83AF-4BFA-9A96-766078892821@fysik.dtu.dk> Message-ID: I want to distribute, using your mail list, the enclosed announcement for an open position of Deputy Group Leader at the Lujan Neutron Scattering Center. Rex Hjelm Search committee chairman Beginning of message text: Los Alamos National Laboratory is seeking a Deputy Group Leader for the Lujan Neutron Scattering Center. Attached is a copy of the job description. Potential candidates can access the job site at https://ebsp1.lanl.gov:443/OA_HTML/OA.jsp?OAFunc=IRC_VIS_VAC_DISPLAY&p_svid=18912&p_spid=838172 Interested applicants must use the above link to apply online. External candidates need to create a profile to apply. -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: LANSCE-LC_DGL_JobAd.pdf Type: application/octet-stream Size: 98738 bytes Desc: LANSCE-LC_DGL_JobAd.pdf URL: From pkwi at fysik.dtu.dk Fri Aug 30 16:29:02 2013 From: pkwi at fysik.dtu.dk (=?iso-8859-1?Q?Peter_Kj=E6r_Willendrup?=) Date: Fri, 30 Aug 2013 14:29:02 +0000 Subject: [mcstas-users] Fwd: [Neutron] First Circular: Joint Vitess and McStas School and Workshop in Berlin, September 18th-20th References: <5220A4C1.5040508@helmholtz-berlin.de> Message-ID: <83DEDEE4-A6F3-480C-95E3-660621B5BF18@fysik.dtu.dk> FYI Begin forwarded message: From: Daniil Nekrassov > Subject: Re: [Neutron] [mcstas-users] First Circular: Joint Vitess and McStas School and Workshop in Berlin, September 18th-20th Date: August 30, 2013 15:57:21 GMT+02:00 To: >, "Lieutenant, Klaus" >, Peter Kj?r Willendrup > Dear colleagues, this is the final call for the "Joint Vitess and McStas school & workshop" to be held on September 18th-20th in Berlin at the Grand City Hotel Globus Berlin. We still have capacity for a small number of participants. If you intend to take part in the workshop, please register using the link below until 04.09.13. https://www.helmholtz-berlin.de/events/joint-vitess/index_de.html We kindly ask all participants to book their room by either sending an e-mail to info.ber07 at grandcityhotels.com or katrin.sieben at gchbm.de or by calling +49 (0) 30 555 07 0 or +49 (0) 30 4950003224. Please state that you participate in the "neutron simulation school". Note that we cannot guarantee that there are still rooms available at the conference hotel, since our reservation ran out this week. On behalf of the organizers, Daniil Nekrassov Am 09.08.2013 07:02, schrieb Peter Kj?r Willendrup: Dear colleagues, The registration for the "Joint Vitess and McStas school & workshop" September 18th-20th in Berlin at the Grand City Hotel Globus Berlin. is now open. Please register visiting the following website: https://www.helmholtz-berlin.de/events/joint-vitess/index_de.html Please make your own arrangements with the meeting hotel. Refer to "HZB" or "neutron simulation school" when booking your room that they know you belong to the workshop. We are looking forward to seeing you in Berlin! Peter Willendrup on behalf of the organisers On Jul 4, 2013, at 07:01 , Peter Kj?r Willendrup wrote: Hello fellow simulators! The joint Vitess and McStas teams are planning a common simulation school and workshop this fall - scheduled for September 18th-20th in the Berlin area. A rough program of the three-day school is: Day 1: Introduction and tutorials for the two packages, intended mainly for new users. Hands-on exercises. Day 2: Advanced features demonstrated by examples and talks. Hands-on exercises. Day 3: Users have an option to present their own work, give feedback and suggestions for new features. To have an estimate of the number of participants, please send us a short email to vitess at helmholtz-berlin.de indicating this, preferably before the end of July. If you are already experienced with the packages and hence would like to skip the first day, please also indicate this. Send us the email does not oblige you to participate. :-) All the best from the combined Vitess and McStas teams! Peter Kj?r Willendrup Senior Research Engineer, Special Advisor DTU Physics Technical University of Denmark Department of Physics Neutrons and X-rays for Materials Physics Fysikvej Building 307 DK-2800 Kongens Lyngby Direct +45 2125 4612 Mobil +45 2125 4612 Fax +45 4593 2399 pkwi at fysik.dtu.dk _______________________________________________ mcstas-users mailing list mcstas-users at mcstas.org http://mailman.mcstas.org/cgi-bin/mailman/listinfo/mcstas-users Peter Kj?r Willendrup Senior Research Engineer, Special Advisor DTU Physics Technical University of Denmark [cid:part10.08040804.08030305 at helmholtz-berlin.de][cid:part11.06070507.06060306 at helmholtz-berlin.de] Department of Physics Neutrons and X-rays for Materials Physics Fysikvej Building 307 DK-2800 Kongens Lyngby Direct +45 2125 4612 Mobil +45 2125 4612 Fax +45 4593 2399 pkwi at fysik.dtu.dk _______________________________________________ Neutron mailing list Neutron at neutronsources.org http://neutronsources.org/mailman/listinfo/neutron ________________________________ Helmholtz-Zentrum Berlin f?r Materialien und Energie GmbH Mitglied der Hermann von Helmholtz-Gemeinschaft Deutscher Forschungszentren e.V. Aufsichtsrat: Vorsitzender Prof. Dr. Dr. h.c. mult. Joachim Treusch, stv. Vorsitzende Dr. Beatrix Vierkorn-Rudolph Gesch?ftsf?hrung: Prof. Dr. Anke Rita Kaysser-Pyzalla, Thomas Frederking Sitz Berlin, AG Charlottenburg, 89 HRB 5583 Postadresse: Hahn-Meitner-Platz 1 D-14109 Berlin http://www.helmholtz-berlin.de Peter Kj?r Willendrup Senior Research Engineer, Special Advisor DTU Physics Technical University of Denmark [cid:image002.gif at 01CCCAF1.5E6331F0][cid:EC2A3CAB-AF57-4CEB-96B0-23F6DC35FE76 at fysik.dtu.dk] Department of Physics Neutrons and X-rays for Materials Physics Fysikvej Building 307 DK-2800 Kongens Lyngby Direct +45 2125 4612 Mobil +45 2125 4612 Fax +45 4593 2399 pkwi at fysik.dtu.dk -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: Mail Attachment.gif Type: image/gif Size: 58 bytes Desc: Mail Attachment.gif URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: Mail Attachment.gif Type: image/gif Size: 1055 bytes Desc: Mail Attachment.gif URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: Mail Attachment.jpeg Type: image/jpeg Size: 10708 bytes Desc: Mail Attachment.jpeg URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: image001.gif Type: image/gif Size: 58 bytes Desc: image001.gif URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: image002.gif Type: image/gif Size: 1055 bytes Desc: image002.gif URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: nexmap.jpg Type: image/jpeg Size: 10708 bytes Desc: nexmap.jpg URL: From pkwi at fysik.dtu.dk Tue Sep 3 12:20:58 2013 From: pkwi at fysik.dtu.dk (=?iso-8859-1?Q?Peter_Kj=E6r_Willendrup?=) Date: Tue, 3 Sep 2013 10:20:58 +0000 Subject: [mcstas-users] Workaround for installing McStas on Windows without an active internet connection Message-ID: <33296BE3-5180-4A31-BDB8-20F199AB0A8D@fysik.dtu.dk> Hi all, If you had problems getting McStas 2.0 installed on a windows system, perhaps these hints will help you out: What is not completely clear from the McStas install docs is that on the Windows platform, an active internet connection is required during installation. To work around this, perform these steps before installing McStas itself: * Download and install a Strawberry Perl 5.16 for your system from http://strawberryperl.com * Download this zip file (rightclik, save as) * Unzip the Zip file and using a command window, cd to the folder * Run the enclosed postsetup.bat After these steps, install the McStas packages in this order: * McStas core package (mcstas-NSIS-2.0-*.exe) * McStas component package (mcstas-comps-NSIS-2.0-*.exe) * McStas Perl tool package (mcstas-tools-perl-NSIS-2.0-*.exe) * - then the optional Python packages if wanted Once everything is installed, use the new links on your desktop for either starting mcgui directly or starting a "mcstas environment shell" with mcrun, mcplot, mcgui etc. All of this stuff should be easier with 2.1 as we will (again) have a simpler, unified installer... Best and sorry for the inconvenience, Peter Willendrup Peter Kj?r Willendrup Senior Research Engineer, Special Advisor DTU Physics Technical University of Denmark [cid:image002.gif at 01CCCAF1.5E6331F0][cid:EC2A3CAB-AF57-4CEB-96B0-23F6DC35FE76 at fysik.dtu.dk] Department of Physics Neutrons and X-rays for Materials Physics Fysikvej Building 307 DK-2800 Kongens Lyngby Direct +45 2125 4612 Mobil +45 2125 4612 Fax +45 4593 2399 pkwi at fysik.dtu.dk -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: image001.gif Type: image/gif Size: 58 bytes Desc: image001.gif URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: image002.gif Type: image/gif Size: 1055 bytes Desc: image002.gif URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: nexmap.jpg Type: image/jpeg Size: 10708 bytes Desc: nexmap.jpg URL: From Deon.Marais at necsa.co.za Mon Sep 16 15:25:22 2013 From: Deon.Marais at necsa.co.za (Deon Marais) Date: Mon, 16 Sep 2013 13:25:22 +0000 Subject: [mcstas-users] Problem: Virtual_input and Virtual_output components in McStas 2.0 Message-ID: Good day, I am having a bit of a problem using the Virtual_input and Virtual_output components in McStas 2.0. I have set up the following small example derived from a previous post (http://mailman.mcstas.org/pipermail/mcstas-users/2005q2/001509.html) with minor changes for compatibility. Instrument to create the event file //********************************** DEFINE INSTRUMENT out() TRACE COMPONENT Origin = Arm() AT (0,0,0) ABSOLUTE COMPONENT source = Source_simple( radius = 0.1, dist = 10, xwidth = 0.1, yheight = 0.1, E0 = 5, dE = 0.5) AT (0, 0, 0) RELATIVE Origin COMPONENT Vout = Virtual_output( filename = "vout.dat", bufsize = 0, type="double") AT (0, 0, 10) RELATIVE Origin COMPONENT PSD = PSD_monitor( nx = 128, ny = 128, filename = "PSD", xmin = -0.1, xmax = 0.1, ymin = -0.1, ymax = 0.1) AT (0, 0, 11) RELATIVE Origin END Instrument that reads from the event file //********************************** DEFINE INSTRUMENT input() TRACE COMPONENT Origin = Arm() AT (0,0,0) ABSOLUTE COMPONENT source = Virtual_input( filename = "vout.dat", type = "double", repeat_count = 10) AT (0, 0, 10) RELATIVE Origin COMPONENT PSD = PSD_monitor( nx = 128, ny = 128, filename = "PSD", xmin = -0.1, xmax = 0.1, ymin = -0.1, ymax = 0.1) AT (0, 0, 11) RELATIVE Origin END //*********************************** ? When running the ?out? instrument, everything seems to work fine from the following console output and the attached PSD screenshot(PSD_Out.png): Detector: PSD_I=0.00539967 PSD_ERR=5.39967e-006 PSD_N=1e+006 "PSD.sim" Virtual_output: Vout: Saved 1000000.000000 events (all) in file vout.dat ? When running the ?input? instrument, I get the following console output and an obviously wrong PSD distribution (PSD_Input.png) Detector: PSD_I=9.17955e-008 PSD_ERR=7.04051e-009 PSD_N=171 "PSD.sim" WARNING: file 'PSD.sim': Low Statistics (171 events in 128x128x1 bins). Warning: 130 events were removed in Component[3] PSD=PSD_monitor() (negative time, miss next components, rounding errors, Nan, Inf). I tried using type=?text?, and ?float?, but the same problem persist. This was run on Windows7 x64, as well as on the Ubuntu live version available on the website and both gave the same results. Was also running on single CPU to rule out MPI problems. Does anyone else also experience this or am I doing something wrong? Any suggestions? Regards, Deon Deon Marais Senior Engineer Tel: +27 12 305 5645 Fax: +27 12 305 5851 Cell: +27 72 435 1137 Email: Deon.Marais at necsa.co.za Website: www.necsa.co.za [cid:image37f35b.JPG at 3d1a743e.42a6f655] ________________________________ This message contains confidential information and is intended only for the individual named. If you are not the named addressee you should not disseminate, distribute or copy this e-mail. Please notify the sender immediately by e-mail if you have received this e-mail by mistake and delete this e-mail from your system. E-mail transmission cannot be guaranteed to be secure or error-free as information could be intercepted, corrupted, lost, destroyed, arrive late or incomplete, or contain viruses. The sender therefore does not accept liability for any errors or omissions in the contents of this message, which arise as a result of e-mail transmission. If verification is required please request a hard-copy version from NECSA. ##################################################################################### Scanned by MailMarshal - M86 Security's comprehensive email content security solution. Download a free evaluation of MailMarshal at www.m86security.com ##################################################################################### -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: image37f35b.JPG Type: image/jpeg Size: 3632 bytes Desc: image37f35b.JPG URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: PSD_Input.png Type: image/png Size: 26022 bytes Desc: PSD_Input.png URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: PSD_Out.png Type: image/png Size: 55200 bytes Desc: PSD_Out.png URL: From plt572 at alumni.ku.dk Thu Sep 19 13:59:30 2013 From: plt572 at alumni.ku.dk (=?iso-8859-1?Q?Andreas_N=F8rg=E5rd_Larsen?=) Date: Thu, 19 Sep 2013 11:59:30 +0000 Subject: [mcstas-users] mcgui does not work after shut down Message-ID: <8CBF3DC2F416EA4F9764BA8F17E9A815636B@P1KITMBX01WC01.unicph.domain> Dear MCSTAS experts, I had mcstas installed and it worked. While I ran a simulation, my computer ran out of power and therefore shut down. It was without power for some hours. When I turned on the computer again, the mcgui did not work. I have Mac OS X 10.6.8 (Snowleopard). when I try to run mcgui in the terminal, nothing happens. This is all I see: Andreas-Nrgard-Larsens-MacBook-Pro:perl andreashlarsen$ mcgui X11 doesn't even start. I can run mcstas with mcrun from terminal. Since it worked before, I guess it would solve the problem to reinstall mcstas. How can I do that? I couldn't find any help on mcstas.org. I hope you can help. Best, Andreas Larsen -------------- next part -------------- An HTML attachment was scrubbed... URL: From plt572 at alumni.ku.dk Sun Sep 22 00:14:28 2013 From: plt572 at alumni.ku.dk (=?iso-8859-1?Q?Andreas_N=F8rg=E5rd_Larsen?=) Date: Sat, 21 Sep 2013 22:14:28 +0000 Subject: [mcstas-users] mcgui does not work after shut down In-Reply-To: <8CBF3DC2F416EA4F9764BA8F17E9A815636B@P1KITMBX01WC01.unicph.domain> References: <8CBF3DC2F416EA4F9764BA8F17E9A815636B@P1KITMBX01WC01.unicph.domain> Message-ID: <8CBF3DC2F416EA4F9764BA8F17E9A8156407@P1KITMBX01WC01.unicph.domain> Problem solved! The problem was not due to McStas, but to X11, which didn't work after shut down. After deleting the old X11 installation and installing it again (from http://xquartz.macosforge.org/landing/), the mcgui worked. Best, Andreas Larsen ________________________________ Fra: mcstas-users-bounces at mcstas.org [mcstas-users-bounces at mcstas.org] p? vegne af Andreas N?rg?rd Larsen [plt572 at alumni.ku.dk] Sendt: 19. september 2013 13:59 Til: mcstas-users at mcstas.org Emne: [mcstas-users] mcgui does not work after shut down Dear MCSTAS experts, I had mcstas installed and it worked. While I ran a simulation, my computer ran out of power and therefore shut down. It was without power for some hours. When I turned on the computer again, the mcgui did not work. I have Mac OS X 10.6.8 (Snowleopard). when I try to run mcgui in the terminal, nothing happens. This is all I see: Andreas-Nrgard-Larsens-MacBook-Pro:perl andreashlarsen$ mcgui X11 doesn't even start. I can run mcstas with mcrun from terminal. Since it worked before, I guess it would solve the problem to reinstall mcstas. How can I do that? I couldn't find any help on mcstas.org. I hope you can help. Best, Andreas Larsen -------------- next part -------------- An HTML attachment was scrubbed... URL: From farhi at ill.eu Fri Sep 27 17:37:56 2013 From: farhi at ill.eu (Emmanuel FARHI) Date: Fri, 27 Sep 2013 17:37:56 +0200 Subject: [mcstas-users] iFit 1.5 released Message-ID: <5245A654.2050106@ill.eu> An HTML attachment was scrubbed... URL: