constitutive equation of hyperelastic materials identified by inflation test motivation advanced...

14
CONSTITUTIVE equation of hyperelastic materials identified by inflation test Motivation •Advanced experimental techniques (laser scanner, confocal probe) •How to describe mechanical properties of biological materials? •Using MATLAB for identification of a mathematical model. Task prepared within the project FRVS 90/2010 EXPERIMENTAL METHODS 2010 PROJECT CONSTITUTIVE EQUATIONS

Upload: osborne-chambers

Post on 28-Dec-2015

229 views

Category:

Documents


3 download

TRANSCRIPT

  • CONSTITUTIVE equation of hyperelastic materials identified by inflation testMotivationAdvanced experimental techniques (laser scanner, confocal probe) How to describe mechanical properties of biological materials?Using MATLAB for identification of a mathematical model.

    Task prepared within the project FRVS 90/2010 EXPERIMENTAL METHODS 2010 PROJECT CONSTITUTIVE EQUATIONS

  • EXPERIMENTAL METHODS 2010 PROJECT CONSTITUTIVE EQUATIONSAim of project: Identify mechanical properties (elasticity) of vascular tissue. Tested sample is a tube (artery, vein,) loaded by inner pressure and by axial force. Recorded inflation and extension will be used for a simple constitutive model identification.

  • EXPERIMENTAL METHODS 2010 PROJECT CONSTITUTIVE EQUATIONSConstitutive equation of hyperelastic solidsConstitutive equations (relationships between stresses and kinematics) are usually designed in a different way for different materials: one class is represented by metals, crystals, where arrays of atoms held together by interatomic forces (elastic stretches can be of only few percents). The second class are polymeric materials (biomaterials) characterized by complicated 3D networks of long-chain macromolecules with freely rotating links interlocking is only at few places (cross-links). In this case the stretches can be much greater (of the order of tens or hundreds percents) and their behavior is highly nonlinear. Both the deformations (kinematics of deformed material, will be recorded by laser scanner and confocal probe) and stresses (evaluated from pressure and axial load) are characterized by tensors of the second order. Deformation is different in different directions (axial/radial/peripheral stretches) and also stresses differ (axial/radial/peripheral stresses). This is why it is necessary to use tensors.

  • EXPERIMENTAL METHODS 2010 PROJECT CONSTITUTIVE EQUATIONSDeformation tensor Ftransforms a vector of a material segment from reference configuration to loaded configuration. Special case - thick wall cylindert r and z are principal stretches (stretches in the principal directions). There are always three principal direction characterized by the fact that a material segment is not rotated, but only extended (by the stretch ratio). In this specific case and when the pipe is loaded only by inner pressure and by axial force, there is no twist and the principal directions are identical with directions of axis of cylindrical coordinate system. In this case the deformation gradient has simple diagonal form

  • EXPERIMENTAL METHODS 2010 PROJECT CONSTITUTIVE EQUATIONSCauchy Green tensor CDisadvantage of deformation gradient F - it includes a rigid body rotation. And this rotation cannot effect the stress state (rotation is not a deformation). The rotation is excluded in the right Cauchy Green tensor C defined asStress state can be expressed in terms of Cauchy Green tensor. Each tensor of the second order can be characterized by three scalars independent of coordinate system (mention the fact that if you change coordinate system all matrices F,C will be changed). The first two invariants (they characterize magnitudes of tensor) are defined asMaterial of blood vessel walls can be considered incompressible, therefore the volume of a loaded part is the same as the volume in the unloaded reference state. Ratio of volumes can be expressed in terms of stretchesTherefore only two stretches are independent and invariants of C-tensor can be expressed only in terms of these two independent (and easily measurable) stretches(unit cube is transformed to the brick having sides t r z)

  • EXPERIMENTAL METHODS 2010 PROJECT CONSTITUTIVE EQUATIONSMooney Rivlin modelUsing invariants it is possible to suggest several different models defining energy of deformation W (energy related to unit volume this energy has unit of stress, Pa)Example: Mooney Rivlin model of hyperelastic material Remark: for an unload sample are all stretches 1 (t =r = z=1) and Ic=3, IIc=3, therefore deformation energy is zero (as it should be). Stresses are partial derivatives of deformation energy W with respect stretches (please believe it wihout proof)These equations represent constitutive equation, model calculating stresses for arbitrary stretches and for given coefficients c1, c2. At unloaded state with unit stretches, the stresses are zero (they represent only elastic stresses and an arbitrary isotropic hydrostatic pressure can be added giving total stresses).

  • EXPERIMENTAL METHODS 2010 PROJECT CONSTITUTIVE EQUATIONSEvaluation of stretches and stressesOnly two stretches is to be evaluated from measured outer radius after and before loading ro, Ro, from initial wall thickness H, and lengths of sample l after and L before loading. Corresponding stresses can be derived from balance of forces acting upon annular and transversal cross section of pipetTherefore it is sufficient to determine Ro,H,L before measurement and only outer radius ro and length l after loading, so that the kinematics of deformation is .fully described.This is quadratic equation

  • EXPERIMENTAL METHODS 2010 PROJECT CONSTITUTIVE EQUATIONSIdentification of model parameters c1,c2Optimal parameters can be identified by comparison measured stresses with stresses predicted by constitutive equationsCriterion of sum of squares of differences should be minimizedi-index of experiment w-weight of axial stresses differencesMinimum of S exists at the point where both partial derivatives of S with respect to c1, c2 are zero

  • EXPERIMENTAL METHODS 2010 PROJECT CONSTITUTIVE EQUATIONSIdentification of model parameters c1,c2 , accuracy

    Result is the following system of two linear algebraic equationsIn matrix notation Ac=bThese equations can be easily solved for example by Cramers rule or by inversion of matrix A. Inverted matrix A (covariance matrix) enables to calculate confidence intervals or standard deviation of calculated parameters c1,c2 asSpecial case zero pressure represents a constraint between s (t=0)This is only an approximation that is to be used as soon as only one (axial) stretch is measured. Anyway, regression analysis has to be carried out iteratively based upon estimates of c1, c2.

  • EXPERIMENTAL METHODS 2010 PROJECT CONSTITUTIVE EQUATIONSMATLAB programmingPrevious analysis can be implemented in form of MATLAB M-filesdelta_l=load('delta_l.txt')lambda_z=(70+delta_l)/70

    delta_r=load('delta_r.txt')

    lambda_t=(5.46+delta_r)/5.46

    p=load('p.txt')sigma_t=p.*(5.46.*lambda_t.*lambda_z./0.6807-1/2)sigma_z=sigma_t./2+0.*lambda_z./(3.14*0.6807*(2*5.46-0.6807))

    i=1for i=1:length(lambda_z)A_t=lambda_t(i).^2-1./(lambda_t(i).^2.*lambda_z(i).^2)A_z=lambda_z(i).^2-1./(lambda_t(i).^2.*lambda_z(i).^2)B_t=lambda_t(i).^2.*lambda_z(i).^2-1./(lambda_t(i).^2)B_z=lambda_t(i).^2.*lambda_z(i).^2-1./(lambda_z(i).^2)

    C=[A_t,B_t;A_z,B_z]K=[sigma_t(i)./2;sigma_z(i)./2]c(:,i)=[C\K]i=i+1end

    a=load('f_g,delta_l.txt')lambda_z=(70+a(:,2))/70lambda_t=sqrt(1./lambda_z)%lambda_t=nthroot((2*0.1./(lambda_z.^2)-0.02)./(2.*0.1-0.02.*lambda_z.^2),4)sigma_t=[0,0,0,0,0,0]'sigma_z=sigma_t./2+a(:,1).*lambda_z./(3.14*0.6807*(2*5.46-0.6807))

    i=1for i=1:length(lambda_z)A_t=lambda_t(i).^2-1./(lambda_t(i).^2.*lambda_z(i).^2)A_z=lambda_z(i).^2-1./(lambda_t(i).^2.*lambda_z(i).^2)B_t=lambda_t(i).^2.*lambda_z(i).^2-1./(lambda_t(i).^2)B_z=lambda_t(i).^2.*lambda_z(i).^2-1./(lambda_z(i).^2)C=[A_t,B_t;A_z,B_z]K=[sigma_t(i)./2;sigma_z(i)./2]c(:,i)=[C\K]i=i+1end

    c=c'Data with both axial and circumferential stretches Data only axial stretches

  • EXPERIMENTAL METHODS 2010 PROJECT CONSTITUTIVE EQUATIONSEXPERIMENTLaser scanner Tested tube Confocal probes 1500N Nlaser scannerload cellstrain gaugesinflatationaxial loadcross correlationconfocal probesfor a twist of loaded samplemeasurementLaboratory if cardiovascular systemsWhat is measuredAxial displacement (confocal probe 1)Radial displacement prifile (laser scanner)Pressure (strain gauge transducer Cresto)Deformation of surface by cross correlation (optionally)Twist of sample (confocal probe)-just only for checking of irregularities (twist should be zero for perfectly symmetric sample and loading)

  • EXPERIMENTAL METHODS 2010 PROJECT CONSTITUTIVE EQUATIONSEXPERIMENTTime profile data synchronization from Pressure transducer/Laser scanner/Confocal probes Laser scanner: is it triggered at up or down edge?Write a MATLAB program deciding (by comparing maxima and minima in the series of pulses) whether the recording of laser scanner data are triggered by the leading or the trailing edge of green button.

    Graf1

    -0.010376-2.187697

    -0.009918-6.264283

    -0.010529-10.826431

    -0.010223-6.787196

    -0.010834-8.750787

    -0.010071-4.327371

    -0.010529-4.049907

    -0.010376-5.410548

    -0.010681-8.435972

    -0.010834-10.575647

    -0.010223-7.619588

    -0.010681-4.407409

    -0.010681-2.539863

    -0.010529-3.254866

    -0.010376-9.188327

    -0.010986-10.522288

    -0.010376-7.032645

    -0.010223-5.13842

    -0.009308-3.996549

    -0.010376-2.347772

    -0.010071-5.245137

    -0.010529-11.119903

    -0.010376-9.593851

    -0.010223-6.973951

    -0.010681-3.153485

    -0.010376-3.025425

    -0.010376-5.720027

    -0.010834-8.211867

    -0.010529-10.138107

    -0.009766-7.939739

    -0.010376-5.602638

    -0.010071-2.918708

    -0.010529-2.230384

    -0.010529-8.574704

    -0.010223-10.383556

    -0.010223-7.021973

    -0.010529-5.421219

    -0.010529-4.300692

    -0.010529-3.297553

    -0.010834-6.061521

    -0.010834-10.495609

    -0.010376-9.481798

    -0.010529-8.361271

    -0.010986-3.116134

    -0.010681-2.433146

    -0.010223-4.642186

    -0.010071-9.161647

    -0.010376-10.746394

    -0.010376-7.726305

    -0.010223-6.30697

    -0.009766-3.59636

    -0.010071-3.692405

    -0.010681-7.171377

    -0.010986-9.444447

    -0.010681-9.198998

    -0.009766-5.074389

    -0.010986-3.59636

    -0.010834-2.977402

    -0.010529-6.787196

    -0.010681-9.5565

    -0.010376-9.71124

    -0.010376-7.464848

    -0.009766-4.652858

    -0.010071-2.913372

    -0.010529-4.044571

    -0.010071-7.25675

    -0.010834-9.732583

    -0.009918-7.160705

    -0.010071-7.459513

    -0.010834-3.633711

    -0.010376-3.991213

    -0.010681-7.582237

    -0.010223-9.695232

    -0.010223-8.740116

    -0.010071-6.445702

    -0.010223-4.716888

    -0.009766-2.36378

    -0.010681-4.327371

    -0.010223-8.366606

    -0.010834-7.571565

    -0.010376-9.561836

    -0.010834-5.672004

    -0.009766-2.731953

    -0.010223-4.145952

    -0.010681-6.915256

    -0.010986-9.978032

    -0.009613-8.766795

    -0.010071-7.005966

    -0.011139-3.510987

    -0.010071-1.86221

    -0.010986-5.437227

    -0.010529-7.688954

    -0.010681-8.910863

    -0.010681-9.90333

    -0.009766-5.031703

    -0.010376-1.910233

    -0.010529-3.788451

    -0.010834-8.355935

    -0.011292-8.089142

    -0.010376-8.195859

    -0.009766-5.181106

    -0.009918-2.497176

    -0.010376-4.300692

    -0.010071-6.130887

    -0.010376-10.020719

    -0.010376-9.204334

    -0.010071-6.829883

    -0.010681-4.108601

    -0.010529-1.067169

    -0.010681-5.752042

    -0.010834-8.38795

    -0.010223-9.508477

    -0.010681-9.038923

    -0.010529-5.367861

    -0.010681-0.853735

    -0.011444-3.297553

    -0.010376-7.91306

    -0.010223-9.588515

    -0.010529-9.513813

    -0.009766-5.853423

    -0.010834-3.980541

    -0.010529-2.956059

    -0.010223-6.30697

    -0.010223-8.339927

    -0.010376-7.75832

    -0.010376-8.409293

    -0.010071-2.587885

    -0.009766-3.05744

    -0.010376-5.8054

    -0.010071-9.823292

    -0.010834-9.593851

    -0.011597-8.126493

    -0.011292-5.890774

    -0.010223-0.741683

    -0.010681-3.073447

    -0.010376-7.384811

    -0.010529-8.115822

    -0.010986-8.45198

    -0.010376-5.442563

    -0.010681-6.349657

    -0.009155-1.915569

    -0.010376-6.082864

    -0.010223-9.524485

    -0.010681-6.685815

    -0.010223-8.553361

    -0.010681-5.010359

    -0.010376-1.787508

    -0.009918-5.090397

    -0.010376-7.715633

    -0.010681-8.425301

    -0.010986-7.299437

    -0.010223-6.824547

    -0.010681-3.40427

    -0.010376-3.025425

    -0.010071-6.819211

    -0.011292-7.528879

    -0.009918-8.820153

    -0.010376-8.953549

    -0.010071-5.602638

    -0.009613-1.205901

    -0.010834-4.322035

    -0.010529-8.38795

    -0.010529-6.344321

    -0.009766-9.412432

    -0.010223-6.925928

    -0.009766-2.000942

    -0.010681-3.238858

    -0.010986-6.973951

    -0.010223-8.564033

    -0.010834-6.867234

    -0.010529-6.077529

    -0.010223-2.897364

    -0.009766-0.869743

    -0.011444-5.117076

    -0.010071-7.459513

    -0.010986-8.163844

    -0.011292-9.561836

    -0.009766-7.262086

    -0.010071-0.309479

    -0.010986-4.258005

    -0.010376-7.75832

    -0.010223-8.153173

    -0.010376-9.914002

    -0.010376-7.427498

    -0.010986-2.988074

    -0.010071-2.166353

    -0.010986-6.040178

    -0.010986-8.393286

    -0.010681-7.528879

    -0.010071-8.558697

    -0.009766-4.610171

    -0.010376-1.446014

    -0.010834-4.396737

    -0.010834-8.430637

    -0.010529-8.425301

    -0.011902-8.478659

    -0.010529-5.527936

    -0.0097661.125863

    -0.010834-3.820466

    -0.010681-8.478659

    -0.010376-9.038923

    -0.010529-7.69429

    -0.010529-8.046456

    -0.009918-4.268677

    -0.009918-0.208098

    -0.010223-4.626178

    -0.010376-8.035784

    -0.009918-6.157566

    -0.010223-8.409293

    -0.010986-5.058382

    -0.010071-2.08098

    -0.010071-4.156624

    -0.009918-8.729444

    -0.010376-7.929067

    -0.010681-7.331452

    -0.010681-7.224735

    -0.010376-1.349969

    -0.010376-2.01695

    -0.010834-7.384811

    -0.010223-8.526682

    -0.010376-7.784999

    -0.010376-7.512871

    -0.010376-5.522601

    -0.010223-0.229441

    -0.010681-5.133084

    -0.010986-7.422162

    -0.010376-6.600441

    -0.010986-9.497806

    -0.010071-6.125551

    -0.010071-1.776837

    -0.010223-2.529191

    -0.010071-6.803204

    -0.010376-8.009105

    -0.010376-6.162902

    -0.010529-8.841497

    -0.009766-4.652858

    -0.009766-0.907094

    -0.010376-6.210925

    -0.010223-7.838358

    -0.011139-7.25675

    -0.009766-8.878848

    -0.009613-6.829883

    -0.0100710.480226

    -0.010681-3.841809

    -0.010529-6.445702

    -0.010529-6.595106

    -0.010681-9.572508

    -0.010986-9.076274

    -0.009766-3.190836

    -0.010834-1.60609

    -0.010986-6.008163

    -0.010681-7.534214

    -0.010834-5.821408

    -0.010071-9.497806

    -0.010834-3.948526

    -0.009766-0.939109

    -0.010529-5.04771

    -0.010376-5.912117

    -0.010681-7.203392

    -0.010529-9.5565

    -0.010071-6.424359

    -0.009766-1.067169

    -0.010834-1.979599

    -0.010376-6.387008

    -0.010681-8.617391

    -0.010071-8.494667

    -0.009918-8.473323

    -0.010071-4.00722

    -0.00946-0.12806

    -0.010376-4.989016

    -0.010376-6.381672

    -0.010834-7.619588

    -0.010071-10.511617

    -0.010223-7.736977

    -0.010681-0.421532

    -0.010529-4.674201

    -0.010681-6.226932

    -0.010986-6.30697

    -0.010071-8.601384

    -0.010986-6.963279

    -0.010376-2.849342

    -0.009460.149404

    -0.010376-5.490585

    -0.010376-9.134968

    -0.010071-7.523543

    -0.010071-9.316387

    -0.010376-4.092594

    -0.011444-0.50157

    -0.010681-4.962337

    -0.010223-5.752042

    -0.010529-8.302576

    -0.010376-9.679225

    -0.010986-8.366606

    -0.010223-0.682988

    -0.010834-1.301946

    -0.010529-7.662275

    -0.010376-8.403957

    -0.010376-8.179852

    -0.010529-9.42844

    -0.010376-4.50879

    -0.010071-0.784369

    -0.010986-6.237604

    -0.010681-7.60358

    -0.010681-6.093536

    -0.010223-10.244824

    -0.009308-6.328313

    -0.0105290.426868

    -0.010834-6.157566

    -0.010681-7.203392

    -0.010986-8.38795

    -0.010986-9.401761

    -0.009766-8.788138

    -0.010681-3.100126

    -0.010681-0.197426

    -0.010529-6.093536

    -0.010986-6.632457

    -0.010376-6.563091

    -0.010681-10.1221

    -0.010834-4.065915

    -0.010834-2.01695

    -0.010681-5.880102

    -0.010223-6.354993

    -0.009766-7.032645

    -0.010681-8.04112

    -0.010071-7.667611

    -0.010834-1.819523

    -0.010681-2.475833

    -0.010223-6.925928

    -0.010376-8.089142

    -0.011292-8.729444

    -0.010529-8.057127

    -0.010834-4.258005

    -0.010681-1.083177

    -0.009308-6.755181

    -0.00946-7.096675

    -0.010376-7.043317

    -0.009155-10.677028

    -0.010681-7.715633

    -0.010834-1.291275

    -0.010529-4.364722

    -0.009766-3.329568

    -0.010681-8.025112

    -0.010681-9.305715

    -0.009918-7.91306

    -0.010529-5.527936

    -0.010681-1.787508

    -0.011292-6.040178

    -0.010376-7.939739

    -0.010681-6.317642

    -0.010834-9.849972

    -0.010834-4.087258

    -0.009918-1.574075

    -0.010376-4.935658

    -0.010986-5.245137

    -0.010071-8.366606

    -0.010986-7.443505

    -0.010223-8.035784

    -0.010681-2.977402

    -0.009918-2.14501

    -0.010223-5.543944

    -0.011597-7.742312

    -0.010986-8.265225

    -0.010529-9.551164

    -0.010376-4.498118

    -0.010071-0.747018

    -0.010223-5.431891

    -0.009613-5.853423

    -0.010071-5.255808

    -0.011292-8.814818

    -0.010376-7.811678

    -0.010071-3.068111

    -0.010223-4.754239

    -0.010223-4.924986

    -0.010223-7.331452

    -0.010681-11.210612

    -0.010223-7.075332

    -0.010071-3.697741

    -0.010529-0.53892

    -0.010986-4.818269

    -0.010223-7.768992

    -0.010376-6.387008

    -0.010834-9.90333

    -0.010986-7.118018

    -0.009918-2.758632

    -0.010529-5.271816

    -0.010223-4.674201

    -0.010376-8.025112

    -0.010071-8.334591

    -0.010071-8.569369

    -0.010071-2.892029

    -0.010529-2.347772

    -0.010529-6.771189

    -0.009918-7.368803

    -0.010071-9.134968

    -0.009308-9.2737

    -0.009155-4.258005

    -0.010376-0.768362

    -0.010223-5.085061

    -0.010071-6.531075

    -0.010223-7.833022

    -0.010376-9.129632

    -0.010681-7.342124

    -0.010071-1.904897

    -0.010071-3.500315

    -0.010834-5.666668

    -0.009766-7.123354

    -0.010223-9.919338

    -0.010376-8.467988

    -0.010071-3.644383

    -0.010376-1.494037

    -0.010223-3.873824

    -0.010376-6.989958

    -0.010376-7.587573

    -0.010376-9.086946

    -0.010376-6.018834

    -0.009766-2.785312

    -0.010529-5.922789

    -0.010376-6.141559

    -0.010681-7.699626

    -0.010223-10.394228

    -0.010681-7.662275

    -0.010529-2.913372

    -0.010986-1.574075

    -0.010223-5.453235

    -0.010223-8.521346

    -0.010986-10.132771

    -0.010681-9.33773

    -0.010223-3.484307

    -0.010681-2.257063

    -0.010681-4.471439

    -0.010834-4.908978

    -0.010681-8.740116

    -0.010986-9.08161

    -0.010376-7.587573

    -0.011292-3.084119

    -0.010071-3.068111

    -0.010986-6.899249

    -0.010529-8.137165

    -0.010223-8.9909

    -0.010376-6.813875

    -0.010376-2.433146

    -0.010223-2.219712

    -0.010376-3.900503

    -0.011292-6.338985

    -0.009766-9.71124

    -0.010529-8.996236

    -0.010223-5.479914

    -0.010376-2.000942

    -0.010834-3.132142

    -0.010986-5.565287

    -0.010986-8.729444

    -0.009766-9.097617

    -0.010376-7.198056

    -0.010529-4.279348

    -0.009613-1.008475

    -0.010681-5.165099

    -0.010223-8.857504

    -0.010681-10.362213

    -0.010681-9.263029

    -0.011139-2.433146

    -0.009766-2.699938

    -0.010223-5.026367

    -0.010376-6.056185

    -0.010681-9.247021

    -0.010529-8.419965

    -0.010071-5.591967

    -0.010834-1.787508

    -0.010223-3.201508

    -0.011292-6.915256

    -0.011139-9.641874

    -0.010223-9.8393

    -0.010681-6.883241

    -0.009613-4.412745

    -0.010681-2.241055

    -0.010681-4.332707

    -0.010681-7.320781

    -0.011597-8.868176

    -0.010223-8.366606

    -0.010681-3.1855

    -0.009766-4.092594

    -0.010376-5.239801

    -0.010986-6.237604

    -0.010071-10.047398

    -0.011139-7.672946

    -0.010071-5.527936

    -0.010376-3.03076

    -0.010681-3.164157

    -0.010071-6.253611

    -0.010681-8.441308

    -0.010529-9.801949

    -0.010376-8.804146

    -0.010376-4.35405

    -0.010376-3.7511

    -0.010529-3.863152

    -0.010681-5.96014

    -0.010681-9.220342

    -0.010223-7.918395

    -0.009766-5.885438

    -0.010376-3.40427

    -0.010681-4.012556

    -0.010376-5.752042

    -0.010529-7.251415

    -0.010834-9.519149

    -0.010681-6.696487

    -0.010834-4.407409

    -0.010223-3.847145

    -0.010834-3.841809

    -0.010071-8.254554

    -0.010376-9.391089

    -0.010376-8.64407

    -0.010681-3.841809

    -0.010223-3.681734

    -0.010071-3.324232

    -0.010681-4.540805

    -0.010681-11.717518

    -0.010681-9.951353

    -0.009766-5.773385

    -0.010986-3.116134

    -0.010376-4.322035

    -0.010376-5.175771

    -0.010376-7.395482

    -0.010986-9.855307

    -0.010376-8.083807

    -0.010071-4.567484

    -0.010529-3.062776

    -0.010834-4.498118

    -0.010834-8.142501

    -0.010681-10.863782

    -0.010376-7.41149

    -0.010376-4.316699

    -0.010986-2.77464

    -0.010681-3.585688

    -0.010071-6.056185

    -0.010071-8.601384

    -0.010834-10.474266

    -0.010376-3.921847

    -0.010376-4.908978

    -0.010986-4.908978

    -0.010834-4.263341

    -0.010376-8.473323

    -0.010681-9.743255

    -0.010986-7.88638

    -0.010071-5.122412

    -0.010376-4.41808

    -0.010681-3.937854

    -0.010834-5.83208

    -0.010376-10.639677

    -0.010529-7.278094

    -0.010681-5.314503

    -0.010071-5.090397

    -0.010529-5.159763

    -0.010376-5.527936

    -0.010681-8.238546

    -0.010986-11.616137

    -0.010681-7.246079

    -0.010376-4.79159

    -0.010681-4.017892

    -0.010376-3.692405

    -0.010681-7.278094

    -0.009918-10.693035

    -0.010376-9.721911

    -0.010376-6.701823

    -0.010376-4.476775

    -0.010376-4.09793

    -0.010376-6.371

    -0.010529-8.345263

    -0.010681-9.983368

    -0.010223-4.279348

    -0.010071-5.223793

    -0.009766-3.713749

    -0.010529-2.289078

    -0.010681-9.743255

    -0.010376-11.322665

    -0.011597-6.712494

    -0.010376-3.708413

    -0.010071-4.503454

    -0.010681-2.769304

    -0.009766-6.637792

    -0.010376-11.450725

    -0.010223-10.159451

    -0.010681-6.808539

    -0.010071-3.046768

    -0.010529-5.186442

    -0.010529-5.282487

    -0.010681-8.910863

    -0.010529-11.525427

    -0.009766-6.861898

    -0.010834-5.005023

    -0.010376-5.970812

    -0.010376-3.953862

    -0.010376-6.312306

    -0.010376-12.075019

    -0.010681-6.952607

    -0.010834-5.351853

    -0.010529-4.994352

    -0.010681-4.706216

    -0.010834-5.314503

    -0.010376-9.849972

    -0.010529-9.812621

    -0.010681-5.303831

    -0.009766-3.521658

    -0.010223-4.204647

    -0.010071-3.062776

    -0.00946-6.520404

    -0.010223-11.183933

    4.706879-7.75832

    4.710388-6.627121

    4.707336-4.908978

    4.708405-3.1855

    4.708557-5.933461

    4.708862-11.023858

    4.707794-9.785941

    4.707947-5.037039

    4.710999-3.655054

    4.707794-4.396737

    4.708862-5.762714

    4.713135-8.964221

    4.708405-10.831767

    4.707794-7.315445

    4.713287-4.428752

    4.708557-5.517265

    4.708862-2.593221

    4.711609-6.952607

    4.708252-13.099502

    4.708557-7.224735

    4.708252-5.314503

    4.708252-4.748903

    4.708557-3.996549

    4.70871-5.570623

    4.711151-8.724108

    4.70871-10.010047

    4.708405-7.731641

    4.71283-4.439424

    4.707642-4.428752

    4.708252-4.065915

    4.71344-7.384811

    4.708099-11.79222

    4.70871-4.770246

    4.710541-5.303831

    4.708557-5.559951

    4.708557-3.905839

    4.708252-5.725363

    4.708252-11.541435

    4.708557-9.657881

    4.707794-5.538608

    4.711456-4.839612

    4.708099-3.302889

    4.708405-3.841809

    4.713593-8.686757

    4.707947-11.92028

    4.707947-5.842751

    4.71283-5.623982

    4.708405-6.488389

    4.70871-1.520716

    4.711609-5.821408

    4.707794-12.939426

    4.708252-7.171377

    4.707794-4.22599

    4.709015-6.093536

    4.708099-3.388262

    4.708405-6.066857

    4.711761-9.513813

    4.708252-9.935345

    4.707947-5.367861

    4.713135-4.898307

    4.708252-6.659136

    4.708862-2.742625

    4.712982-7.582237

    4.708557-12.939426

    4.708862-7.491528

    4.711304-4.087258

    4.708405-5.890774

    4.708862-3.767107

    4.708252-3.580353

    4.708405-10.874454

    4.708099-9.343066

    4.708405-4.00722

    4.712219-5.645325

    4.708252-5.362525

    4.709167-3.302889

    4.712372-8.046456

    4.70871-11.029194

    4.708252-5.346518

    4.713135-5.607974

    4.707947-6.595106

    4.707947-1.92624

    4.710846-5.20245

    4.708405-13.030136

    4.706879-7.971754

    4.708862-5.752042

    4.708252-4.087258

    4.707947-2.241055

    4.708557-4.028564

    4.712372-9.716575

    4.708862-10.72505

    4.708252-8.121158

    4.713745-5.501257

    4.707947-5.053046

    4.708252-2.747961

    4.712219-6.488389

    4.70871-12.144385

    4.708557-5.736034

    4.710999-6.30697

    4.708099-5.234465

    4.70871-3.767107

    4.707794-4.908978

    4.708862-10.981171

    4.708252-9.279036

    4.707947-5.789393

    4.712067-4.79159

    4.707947-3.825802

    4.708557-1.936912

    4.712982-8.398622

    4.708862-13.083494

    4.708862-8.16918

    4.713287-6.78186

    4.708252-5.410548

    4.708557-1.755493

    4.710236-4.364722

    4.708252-11.717518

    4.707642-9.012244

    4.70871-7.06466

    4.709167-4.364722

    4.708099-3.196172

    4.708405-4.722224

    4.711304-9.433776

    4.708557-9.753926

    4.707642-7.155369

    4.714203-4.247333

    4.708252-5.357189

    4.70993-3.564345

    4.713745-8.019776

    4.709015-11.904272

    4.707947-8.10515

    4.710236-6.077529

    4.707947-4.402073

    4.709015-4.065915

    4.70871-3.895168

    4.708405-8.419965

    4.707947-12.224423

    4.709015-9.231013

    4.712677-4.823605

    4.708405-5.399876

    4.708557-1.029818

    4.713135-7.443505

    4.708862-12.693978

    4.707947-6.264283

    4.713287-5.83208

    4.707794-6.301634

    4.709167-2.753297

    4.710541-6.637792

    4.708099-12.064348

    4.707947-8.878848

    4.708252-5.271816

    4.709015-3.617704

    4.70871-2.705274

    4.708862-4.439424

    4.712677-9.08161

    4.708099-12.010989

    4.708252-6.424359

    4.713593-5.106405

    4.707947-5.944132

    4.708862-1.888889

    4.713135-6.077529

    4.708557-12.389834

    4.708099-7.400818

    4.710083-7.598245

    4.707794-5.682676

    4.708557-3.094791

    4.707794-4.823605

    4.70932-10.981171

    4.708862-10.623669

    4.708252-6.104208

    4.712067-3.94319

    4.707642-3.153485

    4.709015-2.475833

    4.71344-8.622727

    4.708862-13.382302

    4.708099-5.570623

    4.712372-5.714691

    4.708405-5.666668

    4.709167-2.731953

    4.710236-4.460767

    4.708557-10.895797

    4.708405-8.473323

    4.708405-8.110486

    4.710236-4.834276

    4.708557-2.091652

    4.70871-2.486504

    4.712524-9.673889

    4.70871-11.621472

    4.708252-7.945075

    4.71344-6.637792

    4.707489-5.143755

    4.708557-2.635908

    4.712067-7.464848

    4.70871-11.504084

    4.708252-7.416826

    4.70932-7.053988

    4.708252-4.439424

    4.708862-2.29975

    4.709015-6.24294

    4.70993-11.29065

    4.70871-10.570311

    4.707947-7.384811

    4.712372-4.087258

    4.708252-3.350911

    4.708862-2.833334

    4.713135-7.939739

    4.708405-10.522288

    4.707794-6.632457

    4.712372-6.269619

    4.708557-6.040178

    4.708862-3.201508

    4.709625-6.157566

    4.709015-9.444447

    4.708405-9.225678

    4.709473-6.595106

    4.710846-4.796926

    4.709167-2.683931

    4.707794-6.029506

    4.712677-9.988704

    4.709167-12.272446

    4.70871-8.868176

    4.713745-4.850284

    4.708405-2.929379

    4.708862-4.348714

    4.711456-6.008163

    4.708862-11.178597

    4.708252-7.993097

    4.70932-6.034842

    4.708557-3.201508

    4.709015-4.07125

    4.708405-5.816072

    4.710236-9.572508

    4.708557-10.655684

    4.708252-6.098872

    4.713287-4.060579

    4.708557-4.658194

    4.709625-3.66039

    4.713135-8.147837

    4.709015-10.25016

    4.707947-6.627121

    4.712067-5.517265

    4.708252-5.83208

    4.708405-3.302889

    4.70871-5.026367

    4.708862-10.127436

    4.708405-8.905527

    4.708405-5.117076

    4.710846-4.647522

    4.707947-2.886693

    4.707947-4.183303

    4.713287-8.377278

    4.708557-10.282175

    4.707947-7.998433

    4.71344-5.768049

    4.708252-4.850284

    4.70932-3.473636

    4.712067-7.00063

    4.709015-10.111428

    4.708557-8.750787

    4.709625-7.107347

    4.707947-4.79159

    4.709167-4.663529

    4.708557-5.335846

    4.70993-10.036726

    4.707947-10.500945

    4.708862-3.852481

    4.712982-5.650661

    4.708405-2.470497

    4.707947-2.070308

    4.71344-8.425301

    4.707947-9.823292

    4.708099-7.021973

    4.712982-7.966418

    4.708099-4.908978

    4.708862-3.1855

    4.70932-5.986819

    4.709167-8.996236

    4.708405-9.668553

    4.707947-7.752984

    0.412598-5.559951

    -0.00473-2.529191

    -0.008545-5.250472

    -0.009155-9.343066

    -0.010681-10.010047

    -0.009766-6.098872

    -0.010376-4.578156

    -0.00946-3.180164

    -0.009308-3.719085

    -0.010071-5.629317

    -0.010529-10.074077

    -0.009766-9.177655

    -0.010071-6.504396

    -0.009766-2.155682

    -0.010071-3.329568

    -0.010223-6.360328

    -0.010376-8.04112

    -0.010529-10.495609

    -0.010376-7.662275

    -0.010529-4.439424

    -0.009766-2.347772

    -0.010071-2.753297

    -0.010223-7.784999

    -0.009918-8.985565

    -0.010071-8.681421

    -0.010681-5.976147

    -0.010223-4.807597

    -0.010223-3.052104

    -0.009613-7.592909

    -0.010071-10.639677

    -0.009155-9.33773

    -0.010376-5.970812

    -0.009766-4.332707

    -0.009613-1.510044

    -0.009613-6.696487

    -0.010376-9.161647

    -0.009918-7.374139

    -0.010681-9.006908

    -0.010223-4.866292

    -0.009766-2.913372

    -0.011139-2.961395

    -0.010071-6.669807

    -0.010071-10.66102

    -0.010376-9.588515

    -0.010376-6.322977

    -0.010529-4.35405

    -0.010681-3.703077

    -0.010681-7.608916

    -0.010529-9.220342

    -0.010834-9.150976

    -0.011444-6.669807

    -0.010681-4.716888

    -0.010681-0.336158

    -0.010376-4.908978

    -0.010223-7.550222

    -0.010376-9.519149

    -0.010376-7.891716

    -0.010529-5.933461

    -0.010376-1.622097

    -0.010376-4.492782

    -0.010223-7.555558

    -0.010529-9.460455

    -0.010681-8.596048

    -0.010986-7.891716

    -0.010071-4.839612

    -0.010986-2.64658

    -0.009613-5.784057

    -0.010986-8.489331

    -0.010681-9.668553

    -0.010529-8.633399

    -0.010681-5.11174

    -0.009766-2.940051

    -0.010529-5.021031

    -0.010071-8.249218

    -0.010834-10.479601

    -0.009918-9.423104

    -0.00946-8.574704

    -0.010986-2.091652

    -0.010071-1.707471

    -0.010834-6.568426

    -0.010529-9.01758

    -0.010223-9.220342

    -0.010071-7.278094

    -0.011292-5.143755

    -0.009766-3.089455

    -0.010834-4.946329

    -0.010529-6.354993

    -0.010071-9.060266

    -0.010529-9.060266

    -0.010071-5.954804

    -0.010529-2.731953

    -0.009918-4.252669

    -0.00946-8.79881

    -0.010071-8.750787

    -0.010376-8.446644

    -0.00946-6.376336

    -0.011139-3.857817

    -0.010681-3.062776

    -0.010681-5.730699

    -0.011139-9.172319

    -0.010376-8.692093

    -0.010529-8.078471

    -0.010834-5.581295

    -0.010376-0.709668

    -0.010834-4.295356

    -0.010223-6.819211

    -0.010376-8.766795

    -0.010376-7.363467

    -0.010529-6.760517

    -0.010223-2.753297

    -0.010834-5.04771

    -0.010376-5.501257

    -0.010529-7.806343

    -0.010834-8.814818

    -0.010071-6.611113

    -0.011597-5.399876

    -0.010376-1.494037

    -0.010986-4.519462

    -0.010529-8.86284

    -0.010376-7.310109

    -0.010681-9.508477

    -0.010223-7.320781

    -0.010376-0.640302

    -0.010681-5.54928

    -0.010376-7.82235

    -0.010376-8.64407

    -0.010071-8.526682

    -0.010376-7.182049

    -0.010834-4.674201

    -0.010376-2.411802

    -0.009918-6.392343

    -0.010223-9.673889

    -0.010376-6.840555

    -0.010681-7.432833

    -0.010529-5.309167

    -0.010529-1.248588

    -0.010681-6.029506

    -0.010376-7.998433

    -0.010376-8.355935

    -0.010986-7.432833

    -0.010071-5.090397

    -0.010376-0.715003

    -0.010376-2.854678

    -0.010223-8.281233

    -0.010223-8.996236

    -0.009918-8.158508

    -0.010376-9.625866

    -0.010529-3.137477

    -0.0102230.325487

    -0.010834-4.460767

    -0.010529-8.521346

    -0.010071-7.374139

    -0.010376-7.427498

    -0.010223-4.796926

    -0.010529-2.150346

    -0.010376-3.180164

    -0.010376-7.833022

    -0.009613-7.790335

    -0.010834-7.747648

    -0.010681-7.112683

    -0.010223-3.873824

    -0.010681-2.529191

    -0.010376-5.848087

    -0.011597-8.419965

    -0.010681-6.205589

    -0.010986-9.263029

    -0.010529-3.927183

    -0.010071-0.469554

    -0.010681-5.127748

    -0.010681-7.742312

    -0.010376-8.921534

    -0.009613-9.471127

    -0.010376-7.961082

    -0.009766-2.241055

    -0.010071-1.317954

    -0.010071-7.075332

    -0.010529-8.676086

    -0.010834-8.633399

    -0.010529-8.462652

    -0.010071-3.564345

    -0.010834-2.123667

    -0.010834-6.541747

    -0.010529-9.583179

    -0.010376-7.12869

    -0.010529-8.857504

    -0.010834-6.87257

    -0.0100710.352166

    -0.010223-4.332707

    -0.010529-6.408351

    -0.010834-9.166983

    -0.010376-8.494667

    -0.010071-7.432833

    -0.010071-3.756436

    -0.009766-0.581607

    -0.010376-5.61331

    -0.010376-6.6538

    -0.010529-6.979286

    -0.010529-9.316387

    -0.010376-5.154427

    -0.010681-1.163214

    -0.010986-5.821408

    -0.010529-8.142501

    -0.010376-5.607974

    -0.010376-8.804146

    -0.010223-9.96736

    -0.010071-1.072505

    -0.010529-1.995606

    -0.010376-6.984622

    -0.010681-8.131829

    -0.010376-9.96736

    -0.010376-9.380417

    -0.010834-2.187697

    -0.009766-0.752354

    -0.010681-6.354993

    -0.009613-7.416826

    -0.010834-6.637792

    -0.009766-8.355935

    -0.010681-6.851226

    -0.010376-0.816384

    -0.010376-3.020089

    -0.010834-6.440366

    -0.009766-8.494667

    -0.011139-6.861898

    -0.010223-8.521346

    -0.010071-2.897364

    -0.009766-0.800377

    -0.010071-6.552419

    -0.010681-7.833022

    -0.010376-7.651603

    -0.010223-7.779663

    -0.009613-4.967673

    -0.010529-1.024482

    -0.010223-5.453235

    -0.010223-5.602638

    -0.010529-8.334591

    -0.010223-10.159451

    -0.010376-8.10515

    -0.010529-1.904897

    -0.010529-3.281545

    -0.010986-6.317642

    -0.010071-7.987761

    -0.010223-5.752042

    -0.010376-10.522288

    -0.009766-4.503454

    -0.010071-1.558067

    -0.010681-5.981483

    -0.010834-7.678282

    -0.010834-6.573762

    -0.010376-7.182049

    -0.010529-8.16918

    -0.010681-1.136535

    -0.010529-3.100126

    -0.010529-6.627121

    -0.010376-8.996236

    -0.010986-7.918395

    -0.010071-7.768992

    -0.010223-2.123667

    -0.010681-0.960452

    -0.010223-4.546141

    -0.010376-7.032645

    -0.010223-7.336788

    -0.010071-9.90333

    -0.010376-5.880102

    -0.010223-0.720339

    -0.010681-5.437227

    -0.009766-6.258947

    -0.010376-7.016637

    -0.010071-10.111428

    -0.009918-7.107347

    -0.009766-3.708413

    -0.010376-2.998745

    -0.010071-5.442563

    -0.010681-7.97709

    -0.010834-7.715633

    -0.010223-9.881987

    -0.010376-3.489643

    -0.0100710.15474

    -0.010529-6.141559

    -0.010986-5.122412

    -0.010681-7.592909

    -0.010376-10.042062

    -0.009613-7.224735

    -0.010376-1.851539

    -0.010223-3.105462

    -0.010376-4.962337

    -0.010681-7.897052

    -0.010529-8.121158

    -0.011139-10.693035

    -0.010376-3.703077

    -0.010834-1.520716

    -0.010834-5.437227

    -0.010376-7.961082

    -0.010681-6.408351

    -0.009766-7.523543

    -0.010223-5.970812

    -0.009766-0.736347

    -0.010681-6.157566

    -0.010071-4.834276

    -0.010376-7.747648

    -0.009766-8.948214

    -0.009766-7.12869

    -0.010681-2.924044

    -0.010529-0.69366

    -0.010681-6.104208

    -0.009766-7.123354

    -0.010681-6.146895

    -0.010223-11.35468

    -0.010071-4.610171

    -0.010681-0.250785

    -0.009766-4.209982

    -0.010529-5.559951

    -0.010529-7.299437

    -0.010529-9.727247

    -0.009918-6.354993

    -0.010223-3.100126

    -0.010681-2.988074

    -0.010681-3.585688

    -0.010529-9.305715

    -0.010681-8.676086

    -0.010376-8.147837

    -0.010529-2.598557

    -0.0100710.469554

    -0.010681-3.905839

    -0.010681-8.345263

    -0.010681-6.488389

    -0.010834-9.833964

    -0.010376-7.512871

    -0.010376-0.832392

    -0.010376-5.234465

    -0.009766-4.236662

    -0.009918-7.63026

    -0.009766-10.244824

    -0.010223-7.897052

    -0.010223-3.105462

    -0.010071-2.470497

    -0.010376-6.354993

    -0.011292-7.768992

    -0.010376-8.814818

    -0.009918-9.305715

    -0.010376-4.674201

    -0.010376-1.819523

    -0.010681-5.282487

    -0.010376-5.901446

    -0.010376-7.560894

    -0.010681-9.252357

    -0.009766-7.048652

    -0.009766-2.086316

    -0.010071-1.766165

    -0.010376-3.671062

    -0.010376-8.686757

    -0.010681-9.876651

    -0.010223-8.131829

    -0.009613-4.204647

    -0.010529-1.95292

    -0.010376-4.119273

    -0.010376-7.587573

    -0.011749-6.344321

    -0.009766-8.601384

    -0.010834-7.667611

    -0.010223-1.115192

    -0.010681-4.29002

    -0.010681-6.456374

    -0.010376-8.51601

    -0.010834-8.393286

    -0.010681-6.445702

    -0.010376-2.241055

    -0.009766-1.462022

    -0.010529-5.04771

    -0.010529-8.601384

    -0.010834-8.10515

    -0.010376-9.113625

    -0.011139-4.439424

    -0.009613-0.896422

    -0.010986-3.916511

    -0.010376-5.13842

    -0.011292-6.221596

    -0.010681-8.964221

    -0.010529-5.053046

    -0.010376-0.5656

    -0.010834-1.045826

    -0.010529-4.199311

    -0.010529-6.061521

    -0.010376-7.224735

    -0.010223-4.209982

    -0.009766-1.792844

    -0.0106812.177025

    -0.009918-0.747018

    -0.010376-4.887635

    -0.010986-4.946329

    -0.010529-5.559951

    -0.010834-3.841809

    -0.0097661.435343

    -0.0108341.25926

    -0.010223-0.82172

    -0.010223-2.075644

    -0.010376-3.756436

    -0.010986-1.25926

    -0.0103761.648776

    -0.0102233.628375

    -0.0099180.69366

    -0.010834-1.942248

    -0.010529-2.187697

    -0.010834-2.369116

    -0.0103761.995606

    -0.0100715.453235

    -0.0115971.248588

    -0.0102230.50157

    -0.010376-1.990271

    -0.010681-1.787508

    -0.0100711.291275

    -0.0100713.446956

    -0.009465.490585

    -0.0100711.029818

    -0.010529-1.115192

    -0.011139-1.771501

    -0.010681-2.262399

    -0.0105295.170435

    -0.0106815.090397

    -0.0109864.492782

    -0.0105292.625236

    -0.0111392.598557

    -0.0100711.990271

    -0.0097663.4683

    -0.009467.640931

    -0.0109868.025112

    -0.0102235.997491

    -0.0102232.870685

    -0.0100715.250472

    -0.0099186.536411

    -0.0103769.113625

    -0.01007110.757065

    -0.0097668.238546

    -0.0108348.500003

    -0.0108345.133084

    -0.0102235.762714

    -0.01022312.54991

    -0.0094612.480544

    -0.01052911.749533

    -0.01068110.693035

    -0.0109865.810736

    -0.0102237.795671

    -0.00976611.16259

    -0.01037613.43566

    -0.01068113.745139

    -0.00976610.938484

    -0.0103768.558697

    -0.0106817.576901

    -0.0102239.519149

    -0.01052914.662905

    -0.01007113.617079

    -0.00991814.070626

    -0.01022311.274642

    -0.0109869.022915

    -0.0105299.305715

    -0.01083414.801637

    -0.01022316.626496

    -0.00976615.804776

    -0.00991814.684248

    -0.00991811.632144

    -0.00961311.023858

    -0.00930816.605153

    -0.01022317.891091

    -0.01068118.963596

    -0.01037617.656314

    -0.01022315.281863

    -0.01037614.561524

    -0.01037615.756753

    -0.01052918.718148

    -0.01083419.918713

    -0.00976620.772448

    -0.01052917.522918

    -0.01037613.894543

    -0.00976617.885756

    -0.01068118.494042

    -0.01022322.623987

    -0.01022320.815135

    -0.01083418.045831

    -0.00961316.893288

    -0.01068114.225365

    -0.01083417.72568

    -0.01083422.037044

    -0.01022321.41275

    -0.01083422.837421

    -0.01052918.931581

    -0.01098614.993727

    -0.01068118.979604

    -0.01007121.780923

    -0.01007124.715638

    -0.01068125.505344

    -0.01052922.538613

    -0.01037619.753302

    -0.01007120.318901

    -0.01022326.252362

    -0.01083427.586324

    -0.01022325.334597

    -0.01052927.463599

    -0.01083425.92154

    -0.01037622.45324

    -0.01068125.430642

    -0.01022329.677975

    -0.01037629.816707

    -0.01007130.307605

    -0.01037627.234158

    -0.01007122.880107

    -0.00976628.125244

    -0.01052928.941628

    -0.0094632.159144

    -0.01068131.630895

    -0.01037630.606412

    -0.01022327.415576

    -0.01068125.297246

    -0.01037629.283123

    -0.01037631.977725

    -0.01083433.055566

    -0.00976632.057762

    -0.01052928.781553

    -0.01037626.881992

    -0.0094630.521039

    -0.01037634.715014

    -0.01052935.13121

    -0.01068135.419345

    -0.01052932.980864

    -0.0094629.091032

    -0.01068131.16134

    -0.01007135.792855

    -0.01022336.785322

    -0.01022337.244205

    -0.01037639.389215

    -0.01037634.186765

    -0.01129231.72694

    -0.01037635.862221

    -0.01052939.607984

    -0.01037640.221607

    -0.01083440.861908

    -0.01037638.487457

    -0.01083435.38733

    -0.01068138.231336

    -0.00976644.170133

    -0.01052942.788149

    -0.01083442.163855

    -0.01098641.843704

    -0.01037637.703087

    -0.01083438.300702

    -0.00961340.707169

    -0.00976644.671702

    -0.01037645.930962

    -0.01022345.904283

    -0.01022341.881055

    -0.01113938.44477

    -0.01037641.459523

    -0.01052946.533913

    -0.00976646.70466

    -0.01037647.681119

    -0.01068145.760215

    -0.01068142.494677

    -0.00976642.243892

    -0.01037646.373837

    -0.01022347.537052

    -0.00976647.777165

    -0.01022349.057768

    -0.01037644.244835

    -0.01068143.753937

    -0.01037646.699324

    -0.01037649.740756

    -0.01022350.845276

    -0.01007152.216588

    -0.01098650.220982

    -0.01098643.657892

    -0.01068147.558395

    -0.01022353.171705

    -0.01068153.043645

    -0.01037653.571893

    -0.01068154.820481

    -0.01037649.009745

    -0.01022348.113323

    -0.01159752.686143

    -0.01037655.97836

    -0.00961354.489659

    -0.01068155.770262

    -0.00991854.217531

    -0.01037649.826129

    -0.01037654.014769

    -0.01007157.371016

    -0.00976658.395498

    -0.01068158.512887

    -0.01022357.050865

    -0.01007151.709683

    -0.01052954.158836

    -0.00991858.715649

    -0.01037659.131845

    -0.01022358.822366

    -0.01007160.935361

    -0.01113956.554631

    -0.01098652.451366

    -0.01037656.832095

    -0.01083461.132787

    -0.00900360.022931

    -0.00930862.119919

    -0.0094663.267125

    -0.00991855.460783

    -0.01037657.632472

    -0.01037663.048356

    -0.01007163.187088

    -0.01098664.08351

    -0.01022363.432537

    -0.01129258.68897

    -0.01083456.271831

    -0.01068164.414332

    -0.01037664.542393

    -0.01022362.584137

    -0.00976665.428143

    -0.01068160.828644

    -0.01068157.306985

    -0.01007163.699329

    -0.01068163.896755

    -0.01022365.780309

    -0.01022366.153818

    -0.01022366.548671

    -0.00961360.988719

    -0.01068160.946032

    -0.01022366.095124

    -0.01007166.959531

    -0.01022365.636241

    -0.00961370.753317

    -0.01144463.816718

    -0.01037661.132787

    -0.01068168.037372

    -0.01037668.394873

    -0.01068167.311697

    -0.01037670.449174

    -0.01098667.188972

    -0.01083460.769949

    -0.01007164.510378

    -0.01022368.576292

    -0.01037669.430027

    -0.01068169.200586

    -0.01098670.016971

    -0.00991864.195563

    -0.01068161.282191

    -0.0094667.247666

    -0.01068169.019167

    -0.01022367.791923

    -0.01022370.950744

    -0.01052967.108934

    -0.01037662.989661

    -0.01068167.701213

    -0.01037670.091672

    -0.01022370.758653

    -0.01083472.748924

    -0.00961370.742646

    -0.01037666.895501

    -0.00976667.012889

    -0.01037673.976168

    -0.01037675.432854

    -0.01052974.723187

    -0.01037677.561857

    -0.01037673.805421

    -0.01022368.405545

    -0.01007177.279057

    -0.01083477.156332

    -0.01007178.84246

    -0.01037683.100465

    -0.01037681.3343

    -0.01037674.024191

    -0.01098677.332415

    -0.00961380.976798

    -0.01052982.545537

    -0.01007184.610509

    -0.01098686.291301

    -0.01083480.325825

    -0.00976677.327079

    -0.01052983.015091

    -0.01007186.136561

    -0.01022384.482449

    -0.01007189.989042

    -0.01068185.064056

    -0.01068181.68113

    -0.00991883.970208

    -0.01037686.686153

    -0.01052988.041458

    -0.01022389.642212

    -0.01068189.941019

    -0.00976683.223189

    -0.0094683.831476

    -0.0094688.879186

    -0.01022389.386091

    -0.01022389.962363

    -0.01022392.096701

    -0.01083487.475858

    -0.01022383.82614

    -0.01037687.406492

    -0.01007188.148175

    -0.01007188.671088

    -0.01037692.011328

    -0.01098690.090423

    -0.01098683.666064

    -0.01037684.946667

    -0.01022386.942274

    -0.00976691.333675

    -0.01022391.248302

    -0.01052992.854391

    -0.01037685.693686

    -0.01098681.489039

    -0.00976688.457654

    -0.01068189.706242

    -0.01022388.601722

    -0.01037693.067825

    -0.01098687.26776

    -0.01052983.76211

    -0.00991886.296637

    -0.01052986.931602

    -0.01007188.612394

    -0.01098690.378559

    -0.01022390.293185

    -0.01052985.010698

    -0.01068185.570961

    -0.01022388.847171

    -0.01052989.023254

    -0.00976688.601722

    -0.01052990.656023

    -0.01052985.677678

    -0.00961381.793183

    -0.00961387.57724

    -0.01022387.166379

    -0.01068188.313586

    -0.01022393.398647

    -0.01052988.772469

    -0.01022385.117415

    -0.01007182.897703

    -0.01068186.808878

    -0.01007188.831163

    -0.01037690.031729

    -0.01037691.49375

    -0.01037684.807935

    -0.01052981.979937

    -0.00976686.494063

    -0.01022388.148175

    -0.0094686.803542

    -0.01068190.928151

    -0.00976688.206869

    -0.01022381.926579

    -0.01098685.421558

    -0.00976685.864433

    -0.01037687.257089

    -0.01022391.568452

    -0.01068187.55056

    -0.01052984.290358

    -0.01037681.489039

    -0.01007185.346856

    -0.01007189.535495

    -0.00976689.087284

    -0.01007189.514152

    -0.01052985.731037

    -0.01098683.559348

    -0.01052986.547421

    -0.01052986.285965

    -0.00991888.617729

    -0.01129289.471465

    -0.01037688.382952

    -0.01052982.668261

    -0.01007182.417477

    -0.01037685.586969

    -0.01052988.292243

    -0.01022391.920618

    -0.01083489.055269

    -0.01068183.559348

    -0.01037679.88295

    -0.00991886.686153

    -0.01037687.582575

    -0.01022387.646606

    -0.01098689.732921

    -0.01098687.651941

    -0.01129281.558405

    -0.00991884.71189

    -0.0094684.183642

    -0.00915587.369142

    -0.00991889.706242

    -0.00991887.683956

    -0.01068184.354389

    -0.01083481.446353

    -0.01068185.368199

    -0.01098688.93788

    -0.01083487.454515

    -0.01037688.959224

    -0.01052984.439762

    -0.00976683.111136

    -0.01007185.14943

    -0.01052986.760855

    -0.01052989.962363

    -0.00991888.964559

    -0.01022387.64127

    -0.01037682.614903

    -0.01037682.001281

    -0.01052986.03518

    -0.01083487.892054

    -0.00961390.901472

    -0.01068188.900529

    -0.01022385.512267

    -0.01052981.958594

    -0.01068184.733234

    -0.01068186.31798

    -0.01037687.369142

    -0.01007189.258031

    -0.01068186.333987

    -0.01052983.628714

    -0.01113985.234803

    -0.00991885.875105

    -0.00976687.89739

    -0.01068189.556838

    -0.01007186.440704

    -0.01068181.74516

    -0.01037682.620239

    -0.01037683.868827

    -0.01098687.710636

    -0.01068189.540831

    -0.01037688.836499

    -0.01068185.933799

    -0.01068182.043967

    -0.01037684.562487

    -0.01083485.661671

    -0.01007186.88358

    -0.01007188.756461

    -0.01037685.976486

    -0.01022382.300088

    -0.00976682.049303

    -0.00961385.192116

    -0.01007187.438508

    -0.01007188.713775

    -0.00976688.767133

    -0.01007182.817665

    -0.01083482.844344

    -0.01052984.439762

    -0.01129284.968011

    -0.01098687.838696

    -0.01129287.571904

    -0.01068186.269957

    -0.01083482.177363

    -0.01098681.328964

    -0.01068185.512267

    -0.01037687.475858

    -0.01037688.516348

    -0.01083486.152569

    -0.01113984.242336

    -0.01022382.043967

    -0.01037683.036435

    -0.01083486.984961

    -0.01037687.123693

    -0.01052989.332733

    -0.01022384.717226

    -0.01007181.254262

    -0.01052985.480252

    -0.01098685.256147

    -0.01052988.030786

    -0.01113987.785338

    -0.00976685.416222

    -0.00976681.798518

    -0.01068181.643779

    -0.01037684.423755

    -0.01052988.511013

    -0.01007188.537692

    -0.01022388.799148

    -0.01068182.534865

    -0.01068181.435681

    -0.01037683.223189

    -0.01022385.864433

    -0.00976687.321119

    -0.01083489.145978

    -0.01037684.10894

    -0.01083481.414337

    -0.01037682.801657

    -0.01037684.749241

    -0.01068186.408689

    -0.01007188.671088

    -0.01037684.978683

    -0.01022381.947922

    -0.01022383.623378

    -0.01037683.297891

    -0.00976687.26776

    -0.01037687.635934

    -0.01144487.61459

    -0.01022383.991551

    -0.01068182.732291

    -0.01052983.201846

    -0.01037684.946667

    -0.01007188.286907

    -0.01022388.991239

    -0.01052983.682072

    -0.01052981.915907

    -0.01022382.294752

    -0.01007184.487785

    -0.01129286.088539

    -0.00991888.596386

    -0.00976687.998771

    -0.01052983.159159

    -0.00976681.798518

    -0.01068184.306366

    -0.01068185.112079

    -0.00976688.260228

    -0.01098686.744848

    -0.00976684.909317

    -0.01083481.040828

    -0.01037682.332103

    -0.01007185.853761

    -0.01022387.635934

    -0.00976689.354076

    -0.01068183.724759

    -0.00976681.80919

    -0.01052984.354389

    -0.01052981.74516

    -0.00991886.019173

    -0.01052988.377616

    -0.01098687.625262

    -0.01007184.130283

    -0.01083483.19651

    -0.01052983.527332

    -0.01037685.416222

    -0.01007191.595132

    -0.01052986.494063

    -0.01083483.719423

    -0.01052983.239197

    -0.01052984.525136

    -0.01022386.760855

    -0.01083487.92407

    -0.01052991.547109

    -0.01068188.361609

    -0.01007182.817665

    -0.01052984.076925

    -0.01037683.82614

    -0.00976687.76933

    -0.01007190.549306

    -0.01098689.258031

    -0.01022386.296637

    -0.01098684.434426

    -0.01007184.658532

    -0.01037687.945413

    -0.01037690.341208

    -0.01022391.461735

    -0.01098687.395821

    -0.01037687.61459

    -0.01052987.529217

    -0.01022386.659474

    -0.01068190.869456

    -0.01052993.462678

    -0.01022390.282513

    -0.00976687.657277

    -0.01098688.815156

    -0.01037687.902726

    -0.01037693.211893

    -0.00976695.890488

    -0.01052992.523569

    -0.01083490.837441

    -0.01022388.735118

    -0.01083488.041458

    -0.01068191.072219

    -0.01007193.761485

    -0.00976696.957657

    -0.01083493.457342

    -0.01007190.880128

    -0.01083491.029532

    -0.01037691.787222

    -0.00976694.791303

    -0.01022398.830539

    -0.01098695.191492

    -0.01022391.52043

    -0.01052991.4564

    -0.00991892.608942

    -0.01068195.565001

    -0.01022398.104864

    -0.01052998.611769

    -0.01007196.178623

    -0.01037694.828654

    -0.01098695.031416

    -0.01052993.371968

    -0.01037698.55841

    -0.010223101.402416

    -0.01022398.158222

    -0.01068197.667324

    -0.01098695.191492

    -0.01129294.849998

    -0.0094699.742968

    -0.010071105.222882

    -0.010071102.46425

    -0.01083497.581951

    -0.01037696.621498

    -0.01098697.13374

    -0.00961398.14755

    -0.010376101.882643

    -0.009613105.201539

    -0.01022399.204048

    -0.01052998.787852

    -0.00976699.684274

    -0.00961398.334305

    -0.010529101.786597

    -0.010223106.759606

    -0.010834105.206875

    -0.01052999.182704

    -0.010223100.03644

    -0.01052999.417482

    -0.010376102.149435

    -0.009766104.26243

    -0.010681105.489674

    -0.010223101.188983

    -0.01037699.887036

    -0.010376101.738575

    -0.00976699.193376

    -0.010834103.947615

    -0.009766108.445733

    -0.010529102.517608

    -0.010834100.996892

    -0.010529101.370401

    -0.01007198.633112

    -0.009766101.594507

    -0.010376108.936631

    -0.010223104.966761

    -0.010681101.439767

    -0.010529100.260545

    -0.010223100.532673

    -0.010376101.071594

    -0.010223104.45452

    -0.009613110.249249

    -0.010376103.622128

    -0.010376100.591368

    -0.010834102.042718

    -0.010223101.028907

    -0.010376103.574106

    -0.010376109.897083

    -0.010223105.772474

    -0.010529103.398023

    -0.010681102.480257

    -0.009918102.538952

    -0.010681105.078814

    -0.010223108.349688

    -0.009766109.721

    -0.010376104.657282

    -0.010223102.24548

    -0.010529103.920936

    -0.011139101.42376

    -0.010681106.876994

    -0.010376111.551195

    -0.010223107.44793

    -0.010376105.265569

    -0.010376107.015726

    -0.010376101.658537

    -0.010834104.13437

    -0.009766109.075363

    -0.010529109.448872

    -0.010223103.526083

    -0.011597103.526083

    -0.010681105.532361

    -0.010681104.657282

    -0.009766109.4382

    -0.010223113.952326

    -0.010529106.530164

    -0.010529103.152574

    -0.010529104.60926

    -0.010376103.408694

    -0.010071104.646611

    -0.010071111.423135

    -0.010376107.186473

    -0.010986106.828972

    -0.010681103.82489

    -0.010681104.411833

    -0.010681104.241086

    -0.010071108.477748

    -0.010071113.06124

    -0.010834105.393629

    -0.010681104.641275

    -0.010681105.927214

    -0.010529103.061864

    -0.010834109.886411

    -0.010376113.381391

    -0.010986109.710329

    -0.010529106.876994

    -0.010071107.543975

    -0.010681105.84184

    -0.010223106.375425

    -0.010529114.629978

    -0.009766112.154146

    -0.010681108.371031

    -0.010529108.392375

    -0.010376109.267453

    -0.010376106.903674

    -0.010376110.830856

    -0.010529115.403676

    -0.009766110.083838

    -0.009613109.608947

    -0.010834108.739205

    -0.010834104.294445

    -0.011139109.048684

    -0.010986114.379194

    -0.010986111.524516

    -0.010834109.859732

    -0.010529108.74454

    -0.010071106.135312

    -0.010986106.311395

    -0.010529111.732614

    -0.010681113.045232

    -0.010223109.907755

    -0.010376107.35722

    -0.010529108.477748

    -0.009918105.500346

    -0.010681110.473354

    -0.010223114.411209

    -0.010223109.432865

    -0.010376109.619619

    -0.011139107.944164

    -0.009918107.170466

    -0.010529108.653831

    -0.010834114.29382

    -0.010834115.638453

    -0.010376110.788169

    -0.009918108.109575

    -0.010376107.634684

    -0.009766105.404301

    -0.010681112.527655

    -0.010071115.649125

    -0.010834111.316418

    -0.010681109.363499

    -0.010223110.121189

    -0.010681107.330541

    -0.010376110.238577

    -0.010681115.259608

    -0.009918113.354711

    -0.010986110.900222

    -0.011292107.912148

    -0.010223107.501288

    -0.010681109.694321

    -0.010376113.866953

    -0.010681116.193381

    -0.010681111.908697

    -0.010223109.913091

    -0.010681111.60989

    -0.010223106.220685

    -0.010223111.625897

    -0.009766115.104869

    -0.010986112.036757

    -0.010681111.177686

    -0.009766109.448872

    -0.010223109.064691

    -0.010223108.146926

    -0.010529115.019495

    -0.010376115.601102

    -0.010376111.369777

    -0.010986108.701854

    -0.010376111.001603

    -0.010223108.290993

    -0.010376113.568145

    -0.010681119.77907

    -0.010834112.597021

    -0.010376112.479633

    -0.010529111.39112

    -0.010529109.619619

    -0.009766112.063437

    -0.010223117.271222

    -0.009613116.406815

    -0.010376114.523262

    -0.010681111.919369

    -0.010376110.046487

    -0.011597110.500034

    -0.010223116.566891

    -0.010223118.188988

    -0.010223115.510393

    -0.010071111.58321

    -0.009766114.075051

    -0.010223110.692124

    -0.010529113.098591

    -0.010223118.749252

    -0.010986114.251133

    -0.010223115.158227

    -0.010681112.351572

    -0.010376109.859732

    -0.009918113.632175

    -0.010681117.020437

    -0.010376119.181455

    -0.010376115.152891

    -0.010681111.369777

    -0.010681112.116795

    -0.010376110.115853

    -0.010681115.867895

    -0.010071119.208134

    -0.009766113.146613

    -0.010681113.94699

    -0.010071112.645044

    -0.010681110.830856

    -0.010529113.06124

    -0.010376117.063124

    -0.010223118.007569

    -0.010681114.10173

    -0.010681111.289739

    -0.010529110.676117

    -0.009918113.029225

    -0.010529117.06846

    -0.010223118.679886

    -0.010681115.713155

    -0.009766112.815791

    -0.010681111.652576

    -0.010376109.907755

    -0.010223113.215979

    -0.010529118.562497

    -0.011749114.400537

    -0.009766114.645986

    -0.010223111.839331

    -0.010071111.022947

    -0.010071113.12527

    -0.010681117.015102

    -0.010376118.669214

    -0.010529114.411209

    -0.010681111.129664

    -0.010529111.006939

    -0.010376110.601415

    -0.010986116.15603

    -0.010223118.562497

    -0.010376115.889238

    -0.010223112.506312

    -0.010529111.26306

    -0.010376111.433807

    -0.010681112.079444

    -0.010376116.348121

    -0.010681116.903049

    -0.010681113.605496

    -0.010376111.070969

    -0.010681109.640963

    -0.010223110.500034

    -0.010071116.18271

    -0.010071118.333056

    -0.010681115.979948

    -0.010986113.632175

    -0.009766111.636569

    -0.010681111.26306

    -0.010834113.274674

    -0.009613117.121819

    -0.010681115.777185

    -0.010223113.525458

    -0.010223110.644102

    -0.010376112.250191

    -0.010681113.733556

    -0.010834117.516671

    -0.009766119.71504

    -0.011139114.645986

    -0.010071112.026086

    -0.010223111.113656

    -0.010681110.910894

    -0.010376116.476181

    -0.010681117.986226

    -0.010681115.915917

    -0.010986115.595767

    -0.010223112.693066

    -0.010376111.631233

    -0.010376114.240462

    -0.010376115.499721

    -0.010376116.796332

    -0.010529113.717549

    -0.010834112.010078

    -0.011292110.275928

    -0.010681112.949187

    -0.010376116.646928

    -0.010071117.964882

    -0.010681114.112401

    -0.010529112.042093

    -0.010681112.511648

    -0.010071111.465822

    -0.010681113.685534

    -0.010376118.258354

    -0.010681115.819872

    -0.010376113.802922

    -0.010529111.412463

    -0.009766110.953581

    -0.010529113.418741

    -0.010376116.02797

    -0.010681117.41529

    -0.010834116.054649

    -0.010681112.959859

    -0.010681111.844667

    -0.010376110.884215

    -0.010681115.958604

    -0.010223116.193381

    -0.010834114.123073

    -0.010376112.917172

    -0.010681110.126525

    -0.010681111.80198

    -0.010986114.880763

    -0.009918116.252076

    -0.010681116.598906

    -0.010681113.845609

    -0.010223109.347491

    -0.011444108.941967

    -0.010071112.27687

    -0.010376115.190242

    -0.009766116.833683

    -0.010681116.193381

    -0.010529113.194636

    -0.010834110.729475

    -0.010529112.234184

    -0.010376112.885157

    -0.009918116.348121

    -0.011139116.177374

    -0.010376113.34404

    -0.011292110.644102

    -0.010223109.843725

    -0.010681113.930983

    -0.009918117.602045

    -0.010376118.012905

    -0.010834114.560612

    -0.010986110.974924

    -0.010223110.494698

    -0.010529111.038954

    -0.010529115.74517

    -0.010223116.262747

    -0.010223115.862559

    -0.010376113.178628

    -0.010071109.758351

    -0.010376111.337762

    -0.010071114.875427

    -0.010681116.236068

    -0.010986116.348121

    -0.010529113.888296

    -0.010681112.202169

    -0.010529111.657912

    -0.010376111.58321

    -0.010376117.409954

    -0.010529117.409954

    -0.010529117.69809

    -0.010376113.605496

    -0.010529110.740147

    -0.010529113.94699

    -0.010681115.318303

    -0.009766118.73858

    -0.010376116.833683

    -0.010223112.794447

    -0.010071109.544917

    -0.010071111.679256

    -0.010681116.011963

    -0.009613117.207192

    -0.010986116.364128

    -0.010986114.98748

    -0.009766114.117737

    -0.010986111.32709

    -0.010529113.034561

    -0.010071116.198717

    -0.010681115.937261

    -0.010223116.577562

    -0.009613113.642847

    -0.011292110.574736

    -0.011292112.351572

    -0.010834117.079132

    -0.010376117.602045

    -0.010529117.948875

    -0.010071113.621504

    -0.010681110.745483

    -0.010223112.65038

    -0.010834114.453896

    -0.010376116.678943

    -0.009155118.349063

    -0.011139117.778128

    -0.010376113.813594

    -0.010834109.790366

    -0.010834112.479633

    -0.010529117.2232

    -0.010376116.550883

    -0.010376116.193381

    -0.010529114.117737

    -0.010376109.59294

    -0.010529112.292878

    -0.010834118.594512

    -0.010071116.534875

    -0.010223116.871034

    -0.011139115.958604

    -0.010529111.508509

    -0.010071110.612086

    -0.010376113.573481

    -0.010071117.815479

    -0.009613116.540211

    -0.010223118.007569

    -0.010376114.565948

    -0.010681109.230102

    -0.010071114.155088

    -0.009766118.466452

    -0.010223118.509138

    -0.010834118.156973

    -0.010071116.662936

    -0.010376113.706877

    -0.010376113.88296

    -0.010681115.48905

    -0.010071117.948875

    -0.010681116.929728

    -0.010986118.797274

    -0.011139114.517926

    -0.010986111.988735

    -0.010223117.13249

    -0.010376118.733244

    -0.009766118.952014

    -0.010071118.162309

    -0.010986118.631863

    -0.010681112.164818

    -0.010529113.81893

    -0.010376120.232617

    -0.010681117.975554

    -0.010986118.615855

    -0.010223119.010708

    -0.011444114.144417

    -0.010529110.782834

    -0.010681115.494386

    -0.010529118.156973

    -0.010681117.41529

    -0.010834120.595454

    -0.010071115.74517

    -0.010529110.526713

    -0.010376115.409012

    -0.010834118.482459

    -0.010376118.167644

    -0.011139117.244543

    -0.010376117.943539

    -0.010223112.949187

    -0.010529112.959859

    -0.010834116.87637

    -0.010681117.788799

    -0.010376117.532679

    -0.010986118.727908

    -0.010529115.446363

    -0.010223110.958916

    -0.010223113.568145

    -0.010223116.833683

    -0.010529117.495328

    -0.010376118.562497

    -0.010681117.383275

    -0.010376111.497837

    -0.010834114.651322

    -0.010529119.400225

    -0.010071118.188988

    -0.010529119.293508

    -0.010376121.065009

    -0.010529114.0377

    -0.010529111.599218

    -0.009918117.948875

    -0.010071119.160112

    -0.010376117.991561

    -0.010529121.673295

    -0.010376117.100475

    -0.010986111.481829

    -0.010834115.371661

    -0.010376118.285033

    -0.010681120.707507

    -0.010376119.208134

    -0.010376119.442912

    -0.010376115.040839

    -0.010376112.591685

    -0.010986119.245485

    -0.010529119.416232

    -0.010681118.498467

    -0.010071122.041469

    -0.010834118.781267

    -0.010376113.477436

    -0.009918118.354399

    -0.010681118.989365

    -0.010376120.147243

    -0.010071119.602987

    -0.010376117.516671

    -0.010223112.27687

    -0.010071114.896771

    -0.010376121.187733

    -0.010071121.369152

    -0.010681120.894262

    -0.010071122.11617

    -0.010681115.296959

    -0.010681111.775301

    -0.010529119.453583

    -0.010681120.077877

    -0.010681117.863501

    -0.010376121.817363

    -0.010376119.032051

    -0.010529113.546802

    -0.010223116.604241

    -0.010071120.419371

    -0.010529120.248624

    -0.009613121.251763

    -0.010681122.174865

    -0.010529117.111147

    -0.010986114.73136

    -0.010681120.072541

    -0.010071121.913408

    -0.009766120.291311

    -0.010071122.564381

    -0.011292118.925334

    -0.010681112.751761

    -0.009918120.984971

    -0.010529121.155718

    -0.010986121.934752

    -0.011292124.181143

    -0.010223119.837764

    -0.010681116.684279

    -0.010529116.753645

    -0.010834117.735441

    -0.010223122.302925

    -0.010071121.892065

    -0.010681124.437263

    -0.010223118.311712

    -0.010986115.104869

    -0.009613121.433182

    -0.009918122.025461

    -0.009155121.10236

    -0.009613123.780954

    -0.009766119.90713

    -0.009613115.094197

    -0.010071120.984971

    -0.010223121.171726

    -0.010223123.546177

    -0.010986124.00506

    -0.010071123.012592

    -0.009918117.383275

    -0.010681114.645986

    -0.010376119.736383

    -0.010376121.844042

    -0.010376121.177061

    -0.010376125.765889

    -0.010376120.093885

    -0.010223115.873231

    -0.009766120.920941

    -0.010529121.022322

    -0.010529121.315793

    -0.010376124.421256

    -0.011292122.655091

    -0.010376115.33431

    -0.010223116.689615

    -0.010681121.497212

    -0.010223121.657288

    -0.010223122.61774

    -0.010223123.903679

    -0.010529119.49627

    -0.010986113.728221

    -0.010529120.280639

    -0.010071122.190872

    -0.010071121.833371

    -0.010376123.759611

    -0.009613122.254902

    -0.010529114.22979

    -0.009613118.199659

    -0.010223119.469591

    -0.010376122.511023

    -0.010834123.396773

    -0.010834122.062812

    -0.011597117.644731

    -0.010071115.222257

    -0.010376119.667017

    -0.010834122.48968

    -0.010529119.506942

    -0.010681124.186479

    -0.010681119.010708

    -0.010223114.261805

    -0.010376121.257099

    -0.010681120.702171

    -0.010376122.446993

    -0.010529123.492819

    -0.010529123.039272

    -0.010223117.217864

    -0.010223115.494386

    -0.010223121.145046

    -0.010223120.504745

    -0.010376121.881393

    -0.010071124.858795

    -0.010986119.49627

    -0.010376113.648183

    -0.010376119.506942

    -0.010681119.784406

    -0.010071120.088549

    -0.010223125.317678

    -0.010681120.456722

    -0.010529114.395201

    -0.010681117.756784

    -0.010071120.024519

    -0.010834122.703113

    -0.010223122.703113

    -0.010223123.738268

    -0.010223117.623388

    -0.010376113.557473

    -0.010071121.833371

    -0.010376122.265574

    -0.010834120.53676

    -0.010071126.134062

    -0.010223120.974299

    -0.010376114.891435

    -0.010071118.477123

    -0.010834120.584783

    -0.010834121.774676

    -0.010223123.791626

    -0.011444122.777815

    -0.009766116.956407

    -0.010986116.193381

    -0.010986120.366013

    -0.010986122.516359

    -0.010529123.076623

    -0.010986124.303867

    -0.010681118.370406

    -0.011292115.579759

    -0.00946119.346866

    -0.009766120.269968

    -0.009766121.849378

    -0.010376125.339021

    -0.010986121.710646

    -0.011444115.227593

    -0.010834116.769653

    -0.010223120.333998

    -0.010681122.7458

    -0.010834124.592003

    -0.009766122.041469

    -0.010071120.195266

    -0.010071114.176432

    -0.010681118.631863

    -0.011292122.014789

    -0.010376120.526088

    -0.010376123.071287

    -0.010071120.419371

    -0.010376115.55308

    -0.010223120.248624

    -0.010529119.160112

    -0.009766121.76934

    -0.009766124.015732

    -0.010376121.038329

    -0.010529116.726966

    -0.010071114.934122

    -0.010376120.398028

    -0.010376121.214412

    -0.010834122.96457

    -0.010376123.812969

    -0.010834119.224142

    -0.012054115.798529

    -0.010529118.509138

    -0.010376121.081016

    -0.010071120.307319

    -0.009766123.716924

    -0.010376121.022322

    -0.010986116.566891

    -0.011139117.212528

    -0.010681121.000979

    -0.010529120.872918

    -0.009766123.24737

    -0.010681121.764005

    -0.009766117.281894

    -0.010376115.264944

    -0.010834118.711901

    -0.010376120.718179

    -0.010681120.899597

    -0.010376123.738268

    -0.009918119.923138

    -0.010681115.227593

    -0.009613118.253018

    -0.010986121.059673

    -0.010376122.281582

    -0.009918122.692442

    -0.011292121.699974

    -0.010986115.894574

    -0.010376114.912778

    -0.010986119.144104

    -0.010529120.03519

    -0.010529123.236698

    -0.010376121.961431

    -0.010223118.51981

    -0.010834115.814536

    -0.010223118.32772

    -0.009766119.864443

    -0.010529121.619937

    -0.010071121.764005

    -0.010986120.430043

    -0.010376115.675804

    -0.009766115.179571

    -0.010223119.458919

    -0.010681121.16639

    -0.010071125.45641

    -0.010986121.913408

    -0.010376117.54335

    -0.010681114.373858

    -0.010376118.829289

    -0.010376120.376685

    -0.010834120.888926

    -0.009918122.676434

    -0.010071119.512278

    -0.010529117.473984

    -0.009918116.24674

    -0.010529119.266829

    -0.010223122.393634

    -0.010681121.657288

    -0.010681119.629666

    -0.010376116.470845

    -0.010681116.241404

    -0.009766118.626527

    -0.010376121.134375

    -0.009766124.314539

    -0.010834122.393634

    -0.010529118.58384

    -0.010681116.022634

    -0.009613116.780324

    -0.010071118.594512

    -0.010681122.639083

    -0.010376122.190872

    -0.010681120.104556

    -0.010223116.257411

    -0.010223116.577562

    -0.010071119.837764

    -0.010071121.945423

    -0.009918123.674237

    -0.010529123.322072

    -0.009766116.630921

    -0.011292115.393004

    -0.010834119.032051

    -0.010834119.330859

    -0.009613122.628412

    -0.009766121.817363

    -0.009766119.197463

    -0.010223116.257411

    -0.010376116.454838

    -0.010223119.608323

    -0.009766122.884532

    -0.010376122.436321

    -0.010376120.888926

    -0.010376117.575365

    -0.010376116.3748

    -0.010376118.871976

    -0.010376121.23042

    -0.010376122.537702

    -0.010376121.027658

    -0.009613118.156973

    -0.011444117.228535

    -0.010834117.111147

    -0.010376120.099221

    -0.010986121.86005

    -0.010376120.510081

    -0.009766118.156973

    -0.010681115.33431

    -0.010223116.412151

    -0.010681119.421568

    -0.009766122.025461

    -0.010529123.775618

    -0.010529122.340276

    -0.010529117.164505

    -0.010834115.61711

    -0.010223115.403676

    -0.010376119.197463

    -0.010529122.046804

    -0.010681122.148185

    -0.010834120.184594

    -0.011597116.022634

    -0.010681117.868837

    -0.010529120.414035

    -0.010529122.68177

    -0.010681122.628412

    -0.010986118.877312

    -0.010223117.031109

    -0.009613116.753645

    -0.010223118.51981

    -0.010681121.23042

    -0.010681123.551513

    -0.00946120.611462

    -0.009766117.772792

    -0.009918115.841216

    -0.009613117.671411

    -0.010986120.328662

    -0.010681122.660427

    -0.010529121.897401

    -0.010986117.623388

    -0.010223116.342785

    -0.010223115.990619

    -0.010529117.052453

    -0.010223120.147243

    -0.010986122.030797

    -0.011444120.510081

    -0.010529116.929728

    -0.011139115.355654

    -0.009766118.439772

    -0.010681119.987168

    -0.009613122.793823

    -0.010529121.257099

    -0.010071118.204995

    -0.010681115.905246

    -0.010986117.057788

    -0.010529118.86664

    -0.010376123.161996

    -0.010376122.244231

    -0.010681116.52954

    -0.009766116.289427

    -0.010376117.815479

    -0.010986116.993758

    -0.009613121.486541

    -0.010223123.994388

    -0.009613120.03519

    -0.010529118.642535

    -0.010986117.111147

    -0.009766116.678943

    -0.010223119.768398

    -0.010071122.596396

    -0.010986121.326465

    -0.010529117.900852

    -0.010986115.61711

    -0.010376116.390808

    -0.010529117.788799

    -0.010376120.792881

    -0.010529122.020125

    -0.010223119.917802

    -0.010376116.668272

    -0.010223115.585095

    -0.010071116.043978

    -0.010529119.117425

    -0.00946123.839649

    -0.010529120.952956

    -0.010223117.906188

    -0.010223116.204053

    -0.010376116.87637

    -0.010223120.344669

    -0.00946121.870721

    -0.009308122.201544

    -0.00946117.159169

    -0.009766115.819872

    -0.011292119.000036

    -0.00946116.566891

    -0.010681121.657288

    -0.009918123.364758

    -0.010834119.266829

    -0.009918117.719433

    -0.010986116.342785

    -0.010376117.522007

    -0.010376120.723515

    -0.010681123.951701

    -0.010223120.088549

    -0.010529116.790996

    -0.010529116.492189

    -0.010376115.409012

    -0.010223115.563752

    -0.009918120.814224

    -0.010071122.516359

    -0.010834118.882648

    -0.010986116.919056

    -0.010376118.429101

    -0.009918115.126212

    -0.009766119.053395

    -0.00946123.476811

    -0.010376118.573169

    -0.010223118.557161

    -0.010681115.665133

    -0.010376117.708762

    -0.00946119.234814

    -0.010529121.918744

    -0.010529123.18334

    -0.010681116.764317

    -0.009613114.79539

    -0.010223116.705623

    -0.010071116.550883

    -0.010223120.995643

    -0.010376124.453271

    -0.010529120.248624

    -0.010223116.919056

    -0.010071115.947932

    -0.010376114.320499

    -0.010376119.256157

    -0.010681123.647558

    -0.010834119.864443

    -0.010071117.00443

    -0.010834116.24674

    -0.010986116.673607

    -0.011444119.458919

    -0.009918120.504745

    -0.011292122.254902

    -0.009613119.442912

    -0.010376115.867895

    -0.010681118.781267

    -0.010529115.393004

    -0.010376119.010708

    -0.010529123.732932

    -0.010376119.811085

    -0.010223115.702484

    -0.010681116.24674

    -0.009766117.69809

    -0.010071117.911524

    -0.010529121.865386

    -0.010681121.657288

    -0.010834118.770595

    -0.010834117.180513

    -0.010834119.138768

    -0.009613113.888296

    -0.010223119.389553

    -0.010376122.895204

    -0.010376117.799471

    -0.010681116.486853

    -0.010681115.862559

    -0.010376114.944793

    -0.010223117.303237

    -0.010376123.135317

    -0.010834120.66482

    -0.010071115.83588

    -0.010071112.97053

    -0.010529115.430355

    -0.010223111.951384

    -0.010071118.807946

    -0.010834121.315793

    -0.010529116.961743

    -0.010223113.973669

    -0.010376116.102672

    -0.010529111.935376

    -0.010681115.665133

    -0.010071121.79602

    -0.010681116.049314

    -0.010681113.60016

    -0.010529113.813594

    -0.00946114.389865

    -0.010376113.525458

    -0.010681116.385472

    -0.010376118.188988

    -0.010986113.183964

    -0.010986110.227906

    -0.010376113.050568

    -0.010376108.296329

    -0.010071114.005685

    -0.010376119.138768

    -0.010376112.511648

    -0.011292111.289739

    -0.010376110.644102

    -0.010834107.752073

    -0.010529109.704993

    -0.010529116.828347

    -0.010223112.23952

    -0.010071108.029537

    -0.010223107.218488

    -0.010529105.575048

    -0.010529106.642217

    -0.010529109.630291

    -0.010681113.701541

    -0.010681108.851257

    -0.010376104.502543

    -0.010834107.789424

    -0.010529103.558098

    -0.010986107.378564

    -0.010071113.077247

    -0.010376108.104239

    -0.009613108.082896

    -0.010071105.836504

    -0.010376104.155713

    -0.009766107.282519

    -0.010071110.772162

    -0.010681113.06124

    -0.011292108.723197

    -0.010376106.103297

    -0.010529107.591998

    -0.009613103.627464

    -0.010223109.24611

    -0.010681114.891435

    -0.010681109.320812

    -0.010986107.538639

    -0.010529110.0038

    -0.010223103.862241

    -0.010834106.482142

    -0.009613113.674862

    -0.010223111.337762

    -0.010071108.55245

    -0.009766106.482142

    -0.010223105.793818

    -0.010681108.082896

    -0.010376109.81171

    -0.009766113.589489

    -0.010223109.240774

    -0.010223106.290051

    -0.010376108.200284

    -0.009766103.627464

    -0.009613107.490617

    -0.010223112.532991

    -0.010223108.723197

    -0.010681107.634684

    -0.010223106.5355

    -0.010071105.009448

    -0.010529105.094822

    -0.010529110.660109

    -0.009766110.0038

    -0.010681105.49501

    -0.010223104.721313

    -0.010071106.594194

    -0.010376103.243283

    -0.010681108.509763

    -0.010071114.528597

    -0.010834106.610202

    -0.010834106.668896

    -0.011292104.977433

    -0.010376101.759918

    -0.010223103.360672

    -0.009766110.179883

    -0.010376111.156343

    -0.010223106.444791

    -0.010681104.689297

    -0.010529101.663873

    -0.010834101.968016

    -0.010223106.439455

    -0.010681109.214095

    -0.010223104.966761

    -0.010376101.231669

    -0.010223102.731042

    -0.01068199.897708

    -0.010834101.733239

    -0.010681106.967704

    -0.010681102.032046

    -0.010376102.554959

    -0.01022397.720683

    -0.00961396.456087

    -0.01098698.489044

    -0.010376101.535813

    -0.010223103.590113

    -0.01083496.882955

    -0.01037696.813589

    -0.01037696.162616

    -0.01037693.633425

    -0.00991898.403671

    -0.010223101.829284

    -0.01098697.603294

    -0.01037696.22131

    -0.01113995.170148

    -0.01022391.920618

    -0.01022394.876677

    -0.01037698.072849

    -0.01037697.048366

    -0.01068194.946043

    -0.01052992.288792

    -0.01022390.485276

    -0.01129293.441334

    -0.01022396.130601

    -0.01068198.526395

    -0.01037694.332421

    -0.01007192.320807

    -0.01098693.2279

    -0.01022389.00191

    -0.01037692.90775

    -0.00976697.203106

    -0.01037695.671718

    -0.01083493.782828

    -0.00976689.471465

    -0.01068187.529217

    -0.00976686.675482

    -0.01037694.604549

    -0.01037696.610827

    -0.01052991.008188

    -0.00991888.33493

    -0.01083489.279374

    -0.00976687.081006

    -0.01068190.76274

    -0.01007195.522314

    -0.00930889.876989

    -0.01098690.527962

    -0.00991888.062802

    -0.00991884.797264

    -0.00976686.931602

    -0.00991890.869456

    -0.01037693.078497

    -0.01022388.05213

    -0.01037685.880441

    -0.01068183.740766

    -0.01068183.900842

    -0.01007190.645351

    -0.01007191.989984

    -0.01068186.942274

    -0.01007185.096071

    -0.01068186.638131

    -0.00976683.511325

    -0.01052985.117415

    -0.01037689.56751

    -0.01068188.137503

    -0.00976684.482449

    -0.01022383.052442

    -0.01007182.113333

    -0.01037683.532668

    -0.00976688.206869

    -0.01022391.189607

    -0.01007185.554954

    -0.01037683.223189

    -0.01068183.634049

    -0.01052981.702473

    -0.01007185.352192

    -0.01068189.055269

    -0.00991887.134364

    -0.01052986.632795

    -0.01037682.673597

    -0.01098681.489039

    -0.00991882.166692

    -0.01037686.424697

    -0.01022388.372281

    -0.01052983.687408

    -0.01022380.219108

    -0.01144480.299146

    -0.01068180.341832

    -0.01007184.45577

    -0.00991886.291301

    -0.00976682.689605

    -0.01037679.79224

    -0.01098678.655705

    -0.01083477.903351

    -0.01037680.571274

    -0.01007182.598895

    -0.01037682.342775

    -0.00961381.104858

    -0.01098678.271524

    -0.01037675.390167

    -0.01068176.179873

    -0.01083478.837124

    -0.01068182.801657

    -0.01037677.716596

    -0.01068174.877926

    -0.01083473.757399

    -0.01007172.332728

    -0.01037676.398642

    -0.0094677.860664

    -0.01022375.203413

    -0.01083474.637813

    -0.00976673.22915

    -0.00961371.329589

    -0.01037673.143776

    -0.01037677.220363

    -0.01037676.430657

    -0.00976672.210003

    -0.01098669.312639

    -0.01083469.104541

    -0.01159769.611446

    -0.01007174.669828

    -0.01022376.041141

    -0.01113972.871648

    -0.01083471.105483

    -0.01068168.773718

    -0.01068167.791923

    -0.00976670.406487

    -0.01022372.012577

    -0.01052972.540826

    -0.01068170.166374

    -0.01113967.55181

    -0.01052966.377924

    -0.01068169.627454

    -0.01037673.591987

    -0.01113971.580373

    -0.01098671.34026

    -0.01052966.345909

    -0.01037665.657584

    -0.00976666.580686

    -0.01068167.658527

    -0.00976671.932539

    -0.00976668.170768

    -0.01083467.188972

    -0.01022364.638438

    -0.00976663.197759

    -0.01037666.185833

    -0.01052968.560285

    -0.01037670.118352

    -0.01052967.002218

    -0.01052964.734483

    -0.01068161.906485

    -0.01007164.574408

    -0.01068167.765244

    -0.01052968.480247

    -0.01174967.327704

    -0.01037664.537057

    -0.01007162.802907

    -0.01037663.587276

    -0.01007166.041765

    -0.01022368.811069

    -0.01083466.212512

    -0.01007164.382317

    -0.01007160.209686

    -0.01068160.316403

    -0.01083464.782506

    -0.01037665.855011

    -0.01022366.682067

    -0.01022365.150679

    -0.01037661.917156

    -0.01113960.572523

    -0.01022362.247979

    -0.01052963.752687

    -0.00976665.566875

    -0.01098664.851872

    -0.01022362.642831

    -0.01037659.377294

    -0.01052962.247979

    -0.0094665.625569

    -0.01037666.521991

    -0.00976666.436618

    -0.01052963.213767

    -0.01052960.380433

    -0.01022359.92155

    -0.01068161.762417

    -0.01007166.44729

    -0.01052968.112074

    -0.01068165.572211

    -0.01068162.151934

    -0.01022359.516026

    -0.01007160.972712

    -0.00976665.700271

    -0.01037665.609562

    -0.01083465.102656

    -0.01068163.053692

    -0.01129260.263044

    -0.01068159.377294

    -0.00976664.179555

    -0.01022363.896755

    -0.01007163.613955

    -0.01098664.857207

    -0.01007160.572523

    -0.01037660.102969

    -0.01068160.930025

    -0.01022363.560597

    -0.01068166.521991

    -0.01068165.465494

    -0.00976661.778424

    -0.01098657.696502

    -0.01007161.084764

    -0.01052964.499706

    -0.01007165.839003

    -0.01007165.53486

    -0.01052963.667314

    -0.01098663.075035

    -0.01083459.516026

    -0.01098663.080371

    -0.01052965.209373

    -0.01037663.720672

    -0.01007165.310754

    -0.01007161.511632

    -0.01068159.07315

    -0.01083461.687715

    -0.01022363.464552

    -0.01052967.253002

    -0.01052965.908369

    -0.01007162.786899

    -0.01052959.980244

    -0.01007161.111444

    -0.01052963.816718

    -0.01037665.038626

    -0.01052964.90523

    -0.01022366.063109

    -0.01037660.177671

    -0.00976660.188342

    -0.01052961.580998

    -0.01052965.065305

    -0.01022364.782506

    -0.00961365.935048

    -0.01068163.523246

    -0.01068157.952623

    -0.01022361.773089

    -0.01007165.956392

    -0.01007164.643774

    -0.01037664.21157

    -0.01083463.117722

    -0.01037660.967376

    -0.0094659.398637

    -0.0094661.661036

    -0.00976665.913705

    -0.00991864.835864

    -0.00976667.188972

    -0.01068162.472084

    -0.01037657.632472

    -0.01022360.647225

    -0.01037665.806988

    -0.01022365.785645

    -0.01083467.48778

    -0.01007165.604226

    -0.01068160.273716

    -0.01052961.394243

    -0.00961364.051495

    -0.01037665.53486

    -0.00991863.73668

    -0.01083466.42061

    -0.01037661.175474

    -0.01068158.587589

    -0.01037663.096378

    -0.00991865.438815

    -0.01022363.923434

    -0.00976665.412135

    -0.01068163.491231

    -0.01037656.51728

    -0.01083460.775285

    -0.01083465.481501

    -0.01007166.143146

    -0.01052966.714082

    -0.00961365.566875

    -0.01037661.645028

    -0.01022358.886396

    -0.00976661.746409

    -0.01068164.766498

    -0.01007164.883887

    -0.01174966.826135

    -0.01037663.859404

    -0.01022358.267438

    -0.01037662.119919

    -0.01037664.158212

    -0.00961364.435676

    -0.01037664.136868

    -0.01052964.078174

    -0.01068159.953565

    -0.00991859.350614

    -0.01068166.393931

    -0.01068165.140007

    -0.01022364.873215

    -0.01068167.402406

    -0.01098660.940697

    -0.01068158.395498

    -0.01068163.763359

    -0.01083466.047101

    -0.01022364.126197

    -0.01083466.570014

    -0.01037664.878551

    -0.01037658.166057

    -0.00976660.455135

    -0.01037663.571269

    -0.01037665.401464

    -0.01068165.161351

    -0.01007166.51132

    -0.01037660.972712

    -0.01083458.801022

    -0.00976664.585079

    -0.01083465.961728

    -0.0094663.224439

    -0.01052966.223184

    -0.00991862.306673

    -0.01068157.002842

    -0.01007164.051495

    -0.00976664.771834

    -0.01022366.650052

    -0.01052966.959531

    -0.00991864.473027

    -0.01083459.996252

    -0.01022358.736992

    -0.01022364.590415

    -0.01068164.771834

    -0.01037664.30228

    -0.01083467.48778

    -0.01037663.160408

    -0.01007158.790351

    -0.00961363.496567

    -0.01083464.307615

    -0.00976664.254257

    -0.01068165.433479

    -0.01052965.705607

    -0.00976656.885454

    -0.01022361.335549

    -0.00976665.310754

    -0.01037666.079116

    -0.00976666.788784

    -0.01037665.4068

    -0.01037662.050553

    -0.01022357.595121

    -0.01022361.981187

    -0.01037666.068445

    -0.01007163.539254

    -0.01037667.391734

    -0.01037662.578801

    -0.01098658.208743

    -0.01022362.082568

    -0.01068163.710001

    -0.01037665.396128

    -0.01037665.460158

    -0.01037665.566875

    -0.01037660.145656

    -0.01037659.211882

    -0.00961365.054634

    -0.01022364.8412

    -0.01037663.651306

    -0.0