diff --git a/ChangeLog.txt b/ChangeLog.txt index 2ce41df3..a1c0126f 100644 --- a/ChangeLog.txt +++ b/ChangeLog.txt @@ -133,7 +133,11 @@ Bug fixes - Return parameters in correct order from gp_pak if using hyperhyperpriors - Other bug fixes -2013-11-26 Version 4.3.1 +2014-01-01 Version 4.3.2 + +Big fixes + - Changed nested functions to subfunctions for compatibility with Octave 3.8.0 + - Fixed compilation of C source files with Octave. Improvements: - Updated cpsrf and psrf to follow BDA3: split each chain to two diff --git a/OCTAVEGPSTUFF_README b/OCTAVEGPSTUFF_README new file mode 100644 index 00000000..8d7a950e --- /dev/null +++ b/OCTAVEGPSTUFF_README @@ -0,0 +1,3 @@ +This is Octave version of the GPstuff toolbox for matlab. In order to use Octave GPstuff, the following packages are needed: +Statistics and gsl. Octave version of GPstuff doesn't have all the functionalities of the matlab-version at the moment, namely +piecewise-polynomial covariance functions. Octave GPstuff requires Octave version 3.6.3 or later. diff --git a/diag/aucs.m b/diag/aucs.m index ad303a0c..dfe3231b 100644 --- a/diag/aucs.m +++ b/diag/aucs.m @@ -23,9 +23,9 @@ % License.txt, included with the software, for details. ip=inputParser; -ip.addRequired('crit',@(x) ~isempty(x) && isreal(x) && all(isfinite(x(:)))) -ip.addRequired('z', @(x) isreal(x) && all(isfinite(x(:)))) -ip.parse(crit,z) +ip=iparser(ip,'addRequired','crit',@(x) ~isempty(x) && isreal(x) && all(isfinite(x(:)))) +ip=iparser(ip,'addRequired','z', @(x) isreal(x) && all(isfinite(x(:)))) +ip=iparser(ip,'parse',crit,z) ye=z; tps=0; diff --git a/diag/auct.m b/diag/auct.m index a29a8b12..0b1d694f 100644 --- a/diag/auct.m +++ b/diag/auct.m @@ -21,11 +21,11 @@ % License.txt, included with the software, for details. ip=inputParser; -ip.addRequired('crit',@(x) ~isempty(x) && isreal(x) && all(isfinite(x(:)))) -ip.addRequired('y', @(x) isreal(x) && all(isfinite(x(:)))) -ip.addRequired('z', @(x) isreal(x) && all(isfinite(x(:)))) -ip.addRequired('tt', @(x) isreal(x) && all(isfinite(x(:)))) -ip.parse(crit,y,z,tt) +ip=iparser(ip,'addRequired','crit',@(x) ~isempty(x) && isreal(x) && all(isfinite(x(:)))) +ip=iparser(ip,'addRequired','y', @(x) isreal(x) && all(isfinite(x(:)))) +ip=iparser(ip,'addRequired','z', @(x) isreal(x) && all(isfinite(x(:)))) +ip=iparser(ip,'addRequired','tt', @(x) isreal(x) && all(isfinite(x(:)))) +ip=iparser(ip,'parse',crit,y,z,tt) for i=1:size(tt,2) comp=bsxfun(@times,bsxfun(@and,y(:,i)<=tt(i),1-z(:,i)),bsxfun(@or,bsxfun(@and,y(:,i)<=tt(i),z(:,i)),y(:,i)>=tt(i))'); diff --git a/diag/diag_install.m b/diag/diag_install.m index 858e0bd5..7f1b191f 100644 --- a/diag/diag_install.m +++ b/diag/diag_install.m @@ -1,7 +1,15 @@ function diag_install if ispc % A windows version of Matlab + if ~exist('OCTAVE_VERSION','builtin') mex -O -output bbprctile winCsource\bbprctile.c + else + mex --output bbprctile.mex winCsource\bbprctile.c + end else + if ~exist('OCTAVE_VERSION','builtin') mex -O -output bbprctile linuxCsource/bbprctile.c + else + mex --output bbprctile.mex linuxCsource/bbprctile.c + end end \ No newline at end of file diff --git a/diag/ext_auc.m b/diag/ext_auc.m index 951cb22a..72ac550b 100644 --- a/diag/ext_auc.m +++ b/diag/ext_auc.m @@ -20,14 +20,14 @@ % License.txt, included with the software, for details. ip=inputParser; - ip.addRequired('P',@(x) ~isempty(x) && isreal(x) && all(isfinite(x(:)))) - ip.addRequired('tt', @(x) isreal(x) && all(isfinite(x(:)))) - ip.addRequired('t', @(x) isreal(x) && all(isfinite(x(:)))) - ip.parse(P,tt,t); + ip=iparser(ip,'addRequired','P',@(x) ~isempty(x) && isreal(x) && all(isfinite(x(:)))); + ip=iparser(ip,'addRequired','tt', @(x) isreal(x) && all(isfinite(x(:)))); + ip=iparser(ip,'addRequired','t', @(x) isreal(x) && all(isfinite(x(:)))); + ip=iparser(ip,'parse',P,tt,t); [n,nin]=size(P); S=1-P; - D=-diff([; ones(n,1) S],1,2); + D=-diff([ones(n,1) S],1,2); sd=tt(2)-tt(1); if isempty(find(tt==t,1)) diff --git a/diag/hcs.m b/diag/hcs.m index febf6842..fd32ce40 100644 --- a/diag/hcs.m +++ b/diag/hcs.m @@ -30,12 +30,12 @@ % License.txt, included with the software, for details. ip=inputParser; -ip.addRequired('riskscore',@(x) ~isempty(x) && isreal(x) && all(isfinite(x(:)))) -ip.addRequired('y', @(x) isreal(x) && all(isfinite(x(:)))) -ip.addRequired('z', @(x) isreal(x) && all(isfinite(x(:)))) -ip.addRequired('t', @(x) isreal(x) && isscalar(x) && ~isnan(x)) -ip.addParamValue('rsubstream',0,@(x) isreal(x) && isscalar(x) && isfinite(x) && x>0) -ip.parse(riskscore,y,z,t,varargin{:}) +ip=iparser(ip,'addRequired','riskscore',@(x) ~isempty(x) && isreal(x) && all(isfinite(x(:)))); +ip=iparser(ip,'addRequired','y', @(x) isreal(x) && all(isfinite(x(:)))); +ip=iparser(ip,'addRequired','z', @(x) isreal(x) && all(isfinite(x(:)))); +ip=iparser(ip,'addRequired','t', @(x) isreal(x) && isscalar(x) && ~isnan(x)); +ip=iparser(ip,'addParamValue','rsubstream',0,@(x) isreal(x) && isscalar(x) && isfinite(x) && x>=0); +ip=iparser(ip,'parse',riskscore,y,z,t,varargin{:}); rsubstream=ip.Results.rsubstream; diff --git a/diag/hct.m b/diag/hct.m index 67b83a0f..cfc92ab1 100644 --- a/diag/hct.m +++ b/diag/hct.m @@ -20,12 +20,12 @@ % License.txt, included with the software, for details. ip=inputParser; -ip.addRequired('crit',@(x) ~isempty(x) && isreal(x) && all(isfinite(x(:)))) -ip.addRequired('y',@(x) ~isempty(x) && isreal(x)) -ip.addRequired('z', @(x) ~isempty(x) && isreal(x)) -ip.addRequired('tt', @(x) ~isempty(x) && isreal(x)) +ip=iparser(ip,'addRequired','crit',@(x) ~isempty(x) && isreal(x) && all(isfinite(x(:)))) +ip=iparser(ip,'addRequired','y',@(x) ~isempty(x) && isreal(x)) +ip=iparser(ip,'addRequired','z', @(x) ~isempty(x) && isreal(x)) +ip=iparser(ip,'addRequired','tt', @(x) ~isempty(x) && isreal(x)) -ip.parse(crit,y,z,tt) +ip=iparser(ip,'parse',crit,y,z,tt) if size(y,2) ~= size(z,2) error('y and z dimensions must match') diff --git a/diag/idis.m b/diag/idis.m index 6f991edd..6fff1fd9 100644 --- a/diag/idis.m +++ b/diag/idis.m @@ -41,31 +41,31 @@ % model-based estimator model_based_estimator = true; - ip.addRequired('pt', @(x) ~isempty(x) && isreal(x) && all(isfinite(x(:)))) - ip.addRequired('pn', @(x) ~isempty(x) && isreal(x) && all(isfinite(x(:)))) - ip.addParamValue('rsubstream', 0, @(x) isreal(x) && isscalar(x) && isfinite(x) && x>0) + ip=iparser(ip,'addRequired','pt', @(x) ~isempty(x) && isreal(x) && all(isfinite(x(:)))); + ip=iparser(ip,'addRequired','pn', @(x) ~isempty(x) && isreal(x) && all(isfinite(x(:)))); + ip=iparser(ip,'addParamValue','rsubstream', 0, @(x) isreal(x) && isscalar(x) && isfinite(x) && x>=0); if nargin > 2 % if more than 2 input arguments, there must be four as only a % single optional parameter is implemented if nargin == 4 - ip.parse(pt, pn, y, z); + ip=iparser(ip,'parse',pt, pn, y, z); else error('Invalid number of arguments.'); end else - ip.parse(pt, pn); + ip=iparser(ip,'parse',pt, pn); end else % Pencina et al. estimator model_based_estimator = false; - ip.addRequired('pt', @(x) ~isempty(x) && isreal(x) && all(isfinite(x(:)))) - ip.addRequired('pn', @(x) ~isempty(x) && isreal(x) && all(isfinite(x(:)))) - ip.addRequired('y', @(x) isreal(x) && all(isfinite(x(:)))) - ip.addRequired('z', @(x) isreal(x) && all(isfinite(x(:)))) - ip.addRequired('t', @(x) isreal(x) && isscalar(x) && ~isnan(x)) - ip.addParamValue('rsubstream', 0, @(x) isreal(x) && isscalar(x) && isfinite(x) && x>0) - ip.parse(pt, pn, y, z, t, varargin{:}) + ip=iparser(ip,'addRequired','pt', @(x) ~isempty(x) && isreal(x) && all(isfinite(x(:)))); + ip=iparser(ip,'addRequired','pn', @(x) ~isempty(x) && isreal(x) && all(isfinite(x(:)))); + ip=iparser(ip,'addRequired','y', @(x) isreal(x) && all(isfinite(x(:)))); + ip=iparser(ip,'addRequired','z', @(x) isreal(x) && all(isfinite(x(:)))); + ip=iparser(ip,'addRequired','t', @(x) isreal(x) && isscalar(x) && ~isnan(x)); + ip=iparser(ip,'addParamValue','rsubstream', 0, @(x) isreal(x) && isscalar(x) && isfinite(x) && x>=0); + ip=iparser(ip,'parse',pt, pn, y, z, t, varargin{:}); end rsubstream=ip.Results.rsubstream; diff --git a/diag/rsqr.m b/diag/rsqr.m index 18307ddb..3317ef34 100644 --- a/diag/rsqr.m +++ b/diag/rsqr.m @@ -39,29 +39,29 @@ % model-based estimator model_based_estimator = true; - ip.addRequired('p', @(x) ~isempty(x) && isreal(x) && all(isfinite(x(:)))) - ip.addParamValue('rsubstream', 0, @(x) isreal(x) && isscalar(x) && isfinite(x) && x>0) + ip=iparser(ip,'addRequired','p', @(x) ~isempty(x) && isreal(x) && all(isfinite(x(:)))); + ip=iparser(ip,'addParamValue','rsubstream', 0, @(x) isreal(x) && isscalar(x) && isfinite(x) && x>=0); if nargin > 1 % if more than 1 input arguments, there must be 3 as only a % single optional parameter is implemented if nargin == 3 - ip.parse(p, y, z); + ip=iparser(ip,'parse',p, y, z); else error('Invalid number of arguments.'); end else - ip.parse(p); + ip=iparser(ip,'parse',p); end else % Pencina et al. estimator model_based_estimator = false; - ip.addRequired('p', @(x) ~isempty(x) && isreal(x) && all(isfinite(x(:)))) - ip.addRequired('y', @(x) isreal(x) && all(isfinite(x(:)))) - ip.addRequired('z', @(x) isreal(x) && all(isfinite(x(:)))) - ip.addRequired('t', @(x) isreal(x) && isscalar(x) && ~isnan(x)) - ip.addParamValue('rsubstream', 0, @(x) isreal(x) && isscalar(x) && isfinite(x) && x>0) - ip.parse(p, y, z, t, varargin{:}) + ip=iparser(ip,'addRequired','p', @(x) ~isempty(x) && isreal(x) && all(isfinite(x(:)))); + ip=iparser(ip,'addRequired','y', @(x) isreal(x) && all(isfinite(x(:)))); + ip=iparser(ip,'addRequired','z', @(x) isreal(x) && all(isfinite(x(:)))); + ip=iparser(ip,'addRequired','t', @(x) isreal(x) && isscalar(x) && ~isnan(x)); + ip=iparser(ip,'addParamValue','rsubstream', 0, @(x) isreal(x) && isscalar(x) && isfinite(x) && x>=0); + ip=iparser(ip,'parse',p, y, z, t, varargin{:}); end rsubstream=ip.Results.rsubstream; diff --git a/dist/dist_install.m b/dist/dist_install.m index 6052b4d2..175e9bc4 100644 --- a/dist/dist_install.m +++ b/dist/dist_install.m @@ -1,6 +1,7 @@ function dist_install if ispc % A windows version of Matlab + if ~exist('OCTAVE_VERSION','builtin') mex -O -output cond_invgam_invgam1 winCsource\cond_invgam_invgam1.c winCsource\ars.c winCsource\rand.c mex -O -output digamma1 winCsource\digamma1.c mex -O -output dirrand winCsource\dirrand.c @@ -11,7 +12,20 @@ mex -O -output invgamrand1 winCsource\invgamrand1.c winCsource\rand.c mex -O -output tanh_f winCsource\tanh_f.c mex -O -output trand winCsource\trand.c winCsource\rand.c + else + mex --output cond_invgam_invgam1.mex winCsource\cond_invgam_invgam1.c winCsource\ars.c winCsource\rand.c + mex --output digamma1.mex winCsource\digamma1.c + mex --output dirrand.mex winCsource\dirrand.c + mex --output exprand.mex winCsource\exprand.c + mex --output gamrand.mex winCsource\gamrand.c winCsource\rand.c + mex --output gamrand1.mex winCsource\gamrand1.c winCsource\rand.c + mex --output invgamrand.mex winCsource\invgamrand.c winCsource\rand.c + mex --output invgamrand1.mex winCsource\invgamrand1.c winCsource\rand.c + mex --output tanh_f.mex winCsource\tanh_f.c + mex --output trand.mex winCsource\trand.c winCsource\rand.c + end else + if ~exist('OCTAVE_VERSION','builtin') mex -O -output cond_invgam_invgam1 linuxCsource/cond_invgam_invgam1.c linuxCsource/ars.c linuxCsource/rand.c; mex -O -output digamma1 linuxCsource/digamma1.c; mex -O -output dirrand linuxCsource/dirrand.c; @@ -22,5 +36,17 @@ mex -O -output invgamrand1 linuxCsource/invgamrand1.c linuxCsource/rand.c; mex -O -output tanh_f linuxCsource/tanh_f.c; mex -O -output trand linuxCsource/trand.c linuxCsource/rand.c; + else + mex --output cond_invgam_invgam1.mex linuxCsource/cond_invgam_invgam1.c linuxCsource/ars.c linuxCsource/rand.c; + mex --output digamma1.mex linuxCsource/digamma1.c; + mex --output dirrand.mex linuxCsource/dirrand.c; + mex --output exprand.mex linuxCsource/exprand.c; + mex --output gamrand.mex linuxCsource/gamrand.c linuxCsource/rand.c; + mex --output gamrand1.mex linuxCsource/gamrand1.c linuxCsource/rand.c; + mex --output invgamrand.mex linuxCsource/invgamrand.c linuxCsource/rand.c; + mex --output invgamrand1.mex linuxCsource/invgamrand1.c linuxCsource/rand.c; + mex --output tanh_f.mex linuxCsource/tanh_f.c; + mex --output trand.mex linuxCsource/trand.c linuxCsource/rand.c; + end end \ No newline at end of file diff --git a/dist/prior_gamma.m b/dist/prior_gamma.m index 10bc29d5..a9dd0282 100644 --- a/dist/prior_gamma.m +++ b/dist/prior_gamma.m @@ -32,12 +32,12 @@ ip=inputParser; ip.FunctionName = 'PRIOR_GAMMA'; - ip.addOptional('p', [], @isstruct); - ip.addParamValue('sh',4, @(x) isscalar(x) && x>0); - ip.addParamValue('sh_prior',[], @(x) isstruct(x) || isempty(x)); - ip.addParamValue('is',1, @(x) isscalar(x) && x>0); - ip.addParamValue('is_prior',[], @(x) isstruct(x) || isempty(x)); - ip.parse(varargin{:}); + ip=iparser(ip,'addOptional','p', [], @isstruct); + ip=iparser(ip,'addParamValue','sh',4, @(x) isscalar(x) && x>0); + ip=iparser(ip,'addParamValue','sh_prior',[], @(x) isstruct(x) || isempty(x)); + ip=iparser(ip,'addParamValue','is',1, @(x) isscalar(x) && x>0); + ip=iparser(ip,'addParamValue','is_prior',[], @(x) isstruct(x) || isempty(x)); + ip=iparser(ip,'parse',varargin{:}); p=ip.Results.p; if isempty(p) diff --git a/dist/prior_gaussian.m b/dist/prior_gaussian.m index bee3fe76..fae59f02 100644 --- a/dist/prior_gaussian.m +++ b/dist/prior_gaussian.m @@ -29,12 +29,12 @@ ip=inputParser; ip.FunctionName = 'PRIOR_GAUSSIAN'; - ip.addOptional('p', [], @isstruct); - ip.addParamValue('mu',0, @(x) isscalar(x) && x>0); - ip.addParamValue('mu_prior',[], @(x) isstruct(x) || isempty(x)); - ip.addParamValue('s2',1, @(x) isscalar(x) && x>0); - ip.addParamValue('s2_prior',[], @(x) isstruct(x) || isempty(x)); - ip.parse(varargin{:}); + ip=iparser(ip,'addOptional','p', [], @isstruct); + ip=iparser(ip,'addParamValue','mu',0, @(x) isscalar(x) && x>=0); + ip=iparser(ip,'addParamValue','mu_prior',[], @(x) isstruct(x) || isempty(x)); + ip=iparser(ip,'addParamValue','s2',1, @(x) isscalar(x) && x>0); + ip=iparser(ip,'addParamValue','s2_prior',[], @(x) isstruct(x) || isempty(x)); + ip=iparser(ip,'parse',varargin{:}); p=ip.Results.p; if isempty(p) diff --git a/dist/prior_invgamma.m b/dist/prior_invgamma.m index 8de7dd52..eee16831 100644 --- a/dist/prior_invgamma.m +++ b/dist/prior_invgamma.m @@ -33,12 +33,12 @@ ip=inputParser; ip.FunctionName = 'PRIOR_INVGAMMA'; - ip.addOptional('p', [], @isstruct); - ip.addParamValue('sh',4, @(x) isscalar(x) && x>0); - ip.addParamValue('sh_prior',[], @(x) isstruct(x) || isempty(x)); - ip.addParamValue('s',1, @(x) isscalar(x) && x>0); - ip.addParamValue('s_prior',[], @(x) isstruct(x) || isempty(x)); - ip.parse(varargin{:}); + ip=iparser(ip,'addOptional','p', [], @isstruct); + ip=iparser(ip,'addParamValue','sh',4, @(x) isscalar(x) && x>0); + ip=iparser(ip,'addParamValue','sh_prior',[], @(x) isstruct(x) || isempty(x)); + ip=iparser(ip,'addParamValue','s',1, @(x) isscalar(x) && x>0); + ip=iparser(ip,'addParamValue','s_prior',[], @(x) isstruct(x) || isempty(x)); + ip=iparser(ip,'parse',varargin{:}); p=ip.Results.p; if isempty(p) diff --git a/dist/prior_invt.m b/dist/prior_invt.m index ebd6daa2..9a0d565e 100644 --- a/dist/prior_invt.m +++ b/dist/prior_invt.m @@ -36,14 +36,14 @@ ip=inputParser; ip.FunctionName = 'PRIOR_INVT'; - ip.addOptional('p', [], @isstruct); - ip.addParamValue('mu',0, @(x) isscalar(x)); - ip.addParamValue('mu_prior',[], @(x) isstruct(x) || isempty(x)); - ip.addParamValue('s2',1, @(x) isscalar(x) && x>0); - ip.addParamValue('s2_prior',[], @(x) isstruct(x) || isempty(x)); - ip.addParamValue('nu',4, @(x) isscalar(x) && x>0); - ip.addParamValue('nu_prior',[], @(x) isstruct(x) || isempty(x)); - ip.parse(varargin{:}); + ip=iparser(ip,'addOptional','p', [], @isstruct); + ip=iparser(ip,'addParamValue','mu',0, @(x) isscalar(x)); + ip=iparser(ip,'addParamValue','mu_prior',[], @(x) isstruct(x) || isempty(x)); + ip=iparser(ip,'addParamValue','s2',1, @(x) isscalar(x) && x>0); + ip=iparser(ip,'addParamValue','s2_prior',[], @(x) isstruct(x) || isempty(x)); + ip=iparser(ip,'addParamValue','nu',4, @(x) isscalar(x) && x>0); + ip=iparser(ip,'addParamValue','nu_prior',[], @(x) isstruct(x) || isempty(x)); + ip=iparser(ip,'parse',varargin{:}); p=ip.Results.p; if isempty(p) diff --git a/dist/prior_invunif.m b/dist/prior_invunif.m index 0b6d4064..1db2f983 100644 --- a/dist/prior_invunif.m +++ b/dist/prior_invunif.m @@ -17,8 +17,8 @@ ip=inputParser; ip.FunctionName = 'PRIOR_INVUNIFORM'; - ip.addOptional('p', [], @isstruct); - ip.parse(varargin{:}); + ip=iparser(ip,'addOptional','p', [], @isstruct); + ip=iparser(ip,'parse',varargin{:}); p=ip.Results.p; if isempty(p) diff --git a/dist/prior_laplace.m b/dist/prior_laplace.m index 5164770b..116c7e73 100644 --- a/dist/prior_laplace.m +++ b/dist/prior_laplace.m @@ -29,12 +29,12 @@ ip=inputParser; ip.FunctionName = 'PRIOR_LAPLACE'; - ip.addOptional('p', [], @isstruct); - ip.addParamValue('mu',0, @(x) isscalar(x) && x>0); - ip.addParamValue('mu_prior',[], @(x) isstruct(x) || isempty(x)); - ip.addParamValue('s',1, @(x) isscalar(x) && x>0); - ip.addParamValue('s_prior',[], @(x) isstruct(x) || isempty(x)); - ip.parse(varargin{:}); + ip=iparser(ip,'addOptional','p', [], @isstruct); + ip=iparser(ip,'addParamValue','mu',0, @(x) isscalar(x) && x>0); + ip=iparser(ip,'addParamValue','mu_prior',[], @(x) isstruct(x) || isempty(x)); + ip=iparser(ip,'addParamValue','s',1, @(x) isscalar(x) && x>0); + ip=iparser(ip,'addParamValue','s_prior',[], @(x) isstruct(x) || isempty(x)); + ip=iparser(ip,'parse',varargin{:}); p=ip.Results.p; if isempty(p) diff --git a/dist/prior_loggaussian.m b/dist/prior_loggaussian.m index 7e42d726..9953c996 100644 --- a/dist/prior_loggaussian.m +++ b/dist/prior_loggaussian.m @@ -29,12 +29,12 @@ ip=inputParser; ip.FunctionName = 'PRIOR_LOGGAUSSIAN'; - ip.addOptional('p', [], @isstruct); - ip.addParamValue('mu',0, @(x) isscalar(x)); - ip.addParamValue('mu_prior',[], @(x) isstruct(x) || isempty(x)); - ip.addParamValue('s2',1, @(x) isscalar(x) && x>0); - ip.addParamValue('s2_prior',[], @(x) isstruct(x) || isempty(x)); - ip.parse(varargin{:}); + ip=iparser(ip,'addOptional','p', [], @isstruct); + ip=iparser(ip,'addParamValue','mu',0, @(x) isscalar(x)); + ip=iparser(ip,'addParamValue','mu_prior',[], @(x) isstruct(x) || isempty(x)); + ip=iparser(ip,'addParamValue','s2',1, @(x) isscalar(x) && x>0); + ip=iparser(ip,'addParamValue','s2_prior',[], @(x) isstruct(x) || isempty(x)); + ip=iparser(ip,'parse',varargin{:}); p=ip.Results.p; if isempty(p) diff --git a/dist/prior_loglogunif.m b/dist/prior_loglogunif.m index f0203826..0d94d469 100644 --- a/dist/prior_loglogunif.m +++ b/dist/prior_loglogunif.m @@ -17,8 +17,8 @@ ip=inputParser; ip.FunctionName = 'PRIOR_LOGLOGUNIFORM'; - ip.addOptional('p', [], @isstruct); - ip.parse(varargin{:}); + ip=iparser(ip,'addOptional','p', [], @isstruct); + ip=iparser(ip,'parse',varargin{:}); p=ip.Results.p; if isempty(p) diff --git a/dist/prior_logt.m b/dist/prior_logt.m index 1591081c..88e441a8 100644 --- a/dist/prior_logt.m +++ b/dist/prior_logt.m @@ -33,14 +33,14 @@ ip=inputParser; ip.FunctionName = 'PRIOR_LOGT'; - ip.addOptional('p', [], @isstruct); - ip.addParamValue('mu',0, @(x) isscalar(x)); - ip.addParamValue('mu_prior',[], @(x) isstruct(x) || isempty(x)); - ip.addParamValue('s2',1, @(x) isscalar(x) && x>0); - ip.addParamValue('s2_prior',[], @(x) isstruct(x) || isempty(x)); - ip.addParamValue('nu',4, @(x) isscalar(x) && x>0); - ip.addParamValue('nu_prior',[], @(x) isstruct(x) || isempty(x)); - ip.parse(varargin{:}); + ip=iparser(ip,'addOptional','p', [], @isstruct); + ip=iparser(ip,'addParamValue','mu',0, @(x) isscalar(x)); + ip=iparser(ip,'addParamValue','mu_prior',[], @(x) isstruct(x) || isempty(x)); + ip=iparser(ip,'addParamValue','s2',1, @(x) isscalar(x) && x>0); + ip=iparser(ip,'addParamValue','s2_prior',[], @(x) isstruct(x) || isempty(x)); + ip=iparser(ip,'addParamValue','nu',4, @(x) isscalar(x) && x>0); + ip=iparser(ip,'addParamValue','nu_prior',[], @(x) isstruct(x) || isempty(x)); + ip=iparser(ip,'parse',varargin{:}); p=ip.Results.p; if isempty(p) diff --git a/dist/prior_logunif.m b/dist/prior_logunif.m index 3b714e93..4d4941e4 100644 --- a/dist/prior_logunif.m +++ b/dist/prior_logunif.m @@ -18,8 +18,8 @@ ip=inputParser; ip.FunctionName = 'PRIOR_LOGUNIFORM'; - ip.addOptional('p', [], @isstruct); - ip.parse(varargin{:}); + ip=iparser(ip,'addOptional','p', [], @isstruct); + ip=iparser(ip,'parse',varargin{:}); p=ip.Results.p; if isempty(p) diff --git a/dist/prior_sinvchi2.m b/dist/prior_sinvchi2.m index 0f095f4b..5eb527ae 100644 --- a/dist/prior_sinvchi2.m +++ b/dist/prior_sinvchi2.m @@ -32,12 +32,12 @@ ip=inputParser; ip.FunctionName = 'PRIOR_SINVCHI2'; - ip.addOptional('p', [], @isstruct); - ip.addParamValue('s2',1, @(x) isscalar(x) && x>0); - ip.addParamValue('s2_prior',[], @(x) isstruct(x) || isempty(x)); - ip.addParamValue('nu',4, @(x) isscalar(x) && x>0); - ip.addParamValue('nu_prior',[], @(x) isstruct(x) || isempty(x)); - ip.parse(varargin{:}); + ip=iparser(ip,'addOptional','p', [], @isstruct); + ip=iparser(ip,'addParamValue','s2',1, @(x) isscalar(x) && x>0); + ip=iparser(ip,'addParamValue','s2_prior',[], @(x) isstruct(x) || isempty(x)); + ip=iparser(ip,'addParamValue','nu',4, @(x) isscalar(x) && x>0); + ip=iparser(ip,'addParamValue','nu_prior',[], @(x) isstruct(x) || isempty(x)); + ip=iparser(ip,'parse',varargin{:}); p=ip.Results.p; if isempty(p) diff --git a/dist/prior_sqinvgamma.m b/dist/prior_sqinvgamma.m index e9f4b7e1..e0859118 100644 --- a/dist/prior_sqinvgamma.m +++ b/dist/prior_sqinvgamma.m @@ -32,12 +32,12 @@ ip=inputParser; ip.FunctionName = 'PRIOR_SQINVGAMMA'; - ip.addOptional('p', [], @isstruct); - ip.addParamValue('sh',4, @(x) isscalar(x) && x>0); - ip.addParamValue('sh_prior',[], @(x) isstruct(x) || isempty(x)); - ip.addParamValue('is',1, @(x) isscalar(x) && x>0); - ip.addParamValue('is_prior',[], @(x) isstruct(x) || isempty(x)); - ip.parse(varargin{:}); + ip=iparser(ip,'addOptional','p', [], @isstruct); + ip=iparser(ip,'addParamValue','sh',4, @(x) isscalar(x) && x>0); + ip=iparser(ip,'addParamValue','sh_prior',[], @(x) isstruct(x) || isempty(x)); + ip=iparser(ip,'addParamValue','is',1, @(x) isscalar(x) && x>0); + ip=iparser(ip,'addParamValue','is_prior',[], @(x) isstruct(x) || isempty(x)); + ip=iparser(ip,'parse',varargin{:}); p=ip.Results.p; if isempty(p) diff --git a/dist/prior_sqinvlogunif.m b/dist/prior_sqinvlogunif.m index 85ae983d..a1422930 100644 --- a/dist/prior_sqinvlogunif.m +++ b/dist/prior_sqinvlogunif.m @@ -18,8 +18,8 @@ ip=inputParser; ip.FunctionName = 'PRIOR_SQINVLOGUNIFORM'; - ip.addOptional('p', [], @(x) isstruct(x) || isempty(x)); - ip.parse(varargin{:}); + ip=iparser(ip,'addOptional','p', [], @(x) isstruct(x) || isempty(x)); + ip=iparser(ip,'parse',varargin{:}); p=ip.Results.p; if isempty(p) diff --git a/dist/prior_sqinvsinvchi2.m b/dist/prior_sqinvsinvchi2.m index 66b88563..82a696fd 100644 --- a/dist/prior_sqinvsinvchi2.m +++ b/dist/prior_sqinvsinvchi2.m @@ -33,12 +33,12 @@ ip=inputParser; ip.FunctionName = 'PRIOR_SQINVSINVCHI2'; - ip.addOptional('p', [], @isstruct); - ip.addParamValue('s2',1, @(x) isscalar(x) && x>0); - ip.addParamValue('s2_prior',[], @(x) isstruct(x) || isempty(x)); - ip.addParamValue('nu',4, @(x) isscalar(x) && x>0); - ip.addParamValue('nu_prior',[], @(x) isstruct(x) || isempty(x)); - ip.parse(varargin{:}); + ip=iparser(ip,'addOptional','p', [], @isstruct); + ip=iparser(ip,'addParamValue','s2',1, @(x) isscalar(x) && x>0); + ip=iparser(ip,'addParamValue','s2_prior',[], @(x) isstruct(x) || isempty(x)); + ip=iparser(ip,'addParamValue','nu',4, @(x) isscalar(x) && x>0); + ip=iparser(ip,'addParamValue','nu_prior',[], @(x) isstruct(x) || isempty(x)); + ip=iparser(ip,'parse',varargin{:}); p=ip.Results.p; if isempty(p) diff --git a/dist/prior_sqinvunif.m b/dist/prior_sqinvunif.m index 54049454..52c925e2 100644 --- a/dist/prior_sqinvunif.m +++ b/dist/prior_sqinvunif.m @@ -17,8 +17,8 @@ ip=inputParser; ip.FunctionName = 'PRIOR_SQINVUNIFORM'; - ip.addOptional('p', [], @isstruct); - ip.parse(varargin{:}); + ip=iparser(ip,'addOptional','p', [], @isstruct); + ip=iparser(ip,'parse',varargin{:}); p=ip.Results.p; if isempty(p) diff --git a/dist/prior_sqrtinvt.m b/dist/prior_sqrtinvt.m index 9875544f..d61a1936 100644 --- a/dist/prior_sqrtinvt.m +++ b/dist/prior_sqrtinvt.m @@ -33,14 +33,14 @@ ip=inputParser; ip.FunctionName = 'PRIOR_SQRTINVT'; - ip.addOptional('p', [], @isstruct); - ip.addParamValue('mu',0, @(x) isscalar(x)); - ip.addParamValue('mu_prior',[], @(x) isstruct(x) || isempty(x)); - ip.addParamValue('s2',1, @(x) isscalar(x) && x>0); - ip.addParamValue('s2_prior',[], @(x) isstruct(x) || isempty(x)); - ip.addParamValue('nu',4, @(x) isscalar(x) && x>0); - ip.addParamValue('nu_prior',[], @(x) isstruct(x) || isempty(x)); - ip.parse(varargin{:}); + ip=iparser(ip,'addOptional','p', [], @isstruct); + ip=iparser(ip,'addParamValue','mu',0, @(x) isscalar(x)); + ip=iparser(ip,'addParamValue','mu_prior',[], @(x) isstruct(x) || isempty(x)); + ip=iparser(ip,'addParamValue','s2',1, @(x) isscalar(x) && x>0); + ip=iparser(ip,'addParamValue','s2_prior',[], @(x) isstruct(x) || isempty(x)); + ip=iparser(ip,'addParamValue','nu',4, @(x) isscalar(x) && x>0); + ip=iparser(ip,'addParamValue','nu_prior',[], @(x) isstruct(x) || isempty(x)); + ip=iparser(ip,'parse',varargin{:}); p=ip.Results.p; if isempty(p) diff --git a/dist/prior_sqrtinvunif.m b/dist/prior_sqrtinvunif.m index 4abbbb0b..e278a3c2 100644 --- a/dist/prior_sqrtinvunif.m +++ b/dist/prior_sqrtinvunif.m @@ -18,8 +18,8 @@ ip=inputParser; ip.FunctionName = 'PRIOR_INVSQRTUNIFORM'; - ip.addOptional('p', [], @isstruct); - ip.parse(varargin{:}); + ip=iparser(ip,'addOptional','p', [], @isstruct); + ip=iparser(ip,'parse',varargin{:}); p=ip.Results.p; if isempty(p) diff --git a/dist/prior_sqrtt.m b/dist/prior_sqrtt.m index 737b4d05..800b88d3 100644 --- a/dist/prior_sqrtt.m +++ b/dist/prior_sqrtt.m @@ -33,14 +33,14 @@ ip=inputParser; ip.FunctionName = 'PRIOR_SQRTT'; - ip.addOptional('p', [], @isstruct); - ip.addParamValue('mu',0, @(x) isscalar(x)); - ip.addParamValue('mu_prior',[], @(x) isstruct(x) || isempty(x)); - ip.addParamValue('s2',1, @(x) isscalar(x) && x>0); - ip.addParamValue('s2_prior',[], @(x) isstruct(x) || isempty(x)); - ip.addParamValue('nu',4, @(x) isscalar(x) && x>0); - ip.addParamValue('nu_prior',[], @(x) isstruct(x) || isempty(x)); - ip.parse(varargin{:}); + ip=iparser(ip,'addOptional','p', [], @isstruct); + ip=iparser(ip,'addParamValue','mu',0, @(x) isscalar(x)); + ip=iparser(ip,'addParamValue','mu_prior',[], @(x) isstruct(x) || isempty(x)); + ip=iparser(ip,'addParamValue','s2',1, @(x) isscalar(x) && x>0); + ip=iparser(ip,'addParamValue','s2_prior',[], @(x) isstruct(x) || isempty(x)); + ip=iparser(ip,'addParamValue','nu',4, @(x) isscalar(x) && x>0); + ip=iparser(ip,'addParamValue','nu_prior',[], @(x) isstruct(x) || isempty(x)); + ip=iparser(ip,'parse',varargin{:}); p=ip.Results.p; if isempty(p) diff --git a/dist/prior_sqrtunif.m b/dist/prior_sqrtunif.m index 9147485f..fd49d05f 100644 --- a/dist/prior_sqrtunif.m +++ b/dist/prior_sqrtunif.m @@ -18,8 +18,8 @@ ip=inputParser; ip.FunctionName = 'PRIOR_SQRTUNIFORM'; - ip.addOptional('p', [], @isstruct); - ip.parse(varargin{:}); + ip=iparser(ip,'addOptional','p', [], @isstruct); + ip=iparser(ip,'parse',varargin{:}); p=ip.Results.p; if isempty(p) diff --git a/dist/prior_t.m b/dist/prior_t.m index eca0166a..7559ca20 100644 --- a/dist/prior_t.m +++ b/dist/prior_t.m @@ -35,14 +35,14 @@ ip=inputParser; ip.FunctionName = 'PRIOR_T'; - ip.addOptional('p', [], @isstruct); - ip.addParamValue('mu',0, @(x) isscalar(x)); - ip.addParamValue('mu_prior',[], @(x) isstruct(x) || isempty(x)); - ip.addParamValue('s2',1, @(x) isscalar(x) && x>0); - ip.addParamValue('s2_prior',[], @(x) isstruct(x) || isempty(x)); - ip.addParamValue('nu',4, @(x) isscalar(x) && x>0); - ip.addParamValue('nu_prior',[], @(x) isstruct(x) || isempty(x)); - ip.parse(varargin{:}); + ip=iparser(ip,'addOptional','p', [], @isstruct); + ip=iparser(ip,'addParamValue','mu',0, @(x) isscalar(x)); + ip=iparser(ip,'addParamValue','mu_prior',[], @(x) isstruct(x) || isempty(x)); + ip=iparser(ip,'addParamValue','s2',1, @(x) isscalar(x) && x>0); + ip=iparser(ip,'addParamValue','s2_prior',[], @(x) isstruct(x) || isempty(x)); + ip=iparser(ip,'addParamValue','nu',4, @(x) isscalar(x) && x>0); + ip=iparser(ip,'addParamValue','nu_prior',[], @(x) isstruct(x) || isempty(x)); + ip=iparser(ip,'parse',varargin{:}); p=ip.Results.p; if isempty(p) diff --git a/dist/prior_unif.m b/dist/prior_unif.m index 3be9630a..81d6076b 100644 --- a/dist/prior_unif.m +++ b/dist/prior_unif.m @@ -16,8 +16,8 @@ ip=inputParser; ip.FunctionName = 'PRIOR_UNIFORM'; - ip.addOptional('p', [], @isstruct); - ip.parse(varargin{:}); + ip=iparser(ip,'addOptional','p', [], @isstruct); + ip=iparser(ip,'parse',varargin{:}); p=ip.Results.p; if isempty(p) diff --git a/gp/cf_se_to_ss.m b/gp/cf_se_to_ss.m index d12b6d64..22bc4c23 100644 --- a/gp/cf_se_to_ss.m +++ b/gp/cf_se_to_ss.m @@ -141,8 +141,12 @@ % Solve the corresponding Lyapunov problem % F*Pinf + Pinf*F' + L*Qc*L' = 0 - Pinf = lyap(F,L*Qc*L'); - + if ~exist('OCTAVE_VERSION', 'builtin') + Pinf = lyap(F,L*Qc*L'); + else + F=real(F); + Pinf = lyap(F',L*Qc*L'); + end % The same thing can be solved as a solution to the % algebraic Riccati equation (less stable) %Pinf = are(F',zeros(size(F)),L*Qc*L'); diff --git a/gp/demo_binomial1.m b/gp/demo_binomial1.m index 67147095..e3b87f92 100644 --- a/gp/demo_binomial1.m +++ b/gp/demo_binomial1.m @@ -95,14 +95,14 @@ color1=ones(1,3)*0.8; color2=ones(1,3)*0.5; % GP 95% credible interval -h1=fill([xgrid' fliplr(xgrid')], [(Eyt_la+1.96*sqrt(Varyt_la))' fliplr((Eyt_la-1.96*sqrt(Varyt_la))')], color1, 'edgecolor', color1); +% h1=fill([xgrid' fliplr(xgrid')], [(Eyt_la+1.96*sqrt(Varyt_la))' fliplr((Eyt_la-1.96*sqrt(Varyt_la))')], color1, 'edgecolor', color1); % GP mean h2=plot(xgrid, Eyt_la, 'color', color2, 'linewidth', 3); % observations h3=plot(x, y, 'xk', 'markersize', 10, 'linewidth', 2); % true function h4=plot(xgrid, 1./(1+exp(-(-1.5.*xgrid.^3+0.5*xgrid.^2+0.75*xgrid)))*100, 'color', 'r', 'linewidth', 2); -legend([h1 h2 h3 h4], 'GP 95% CI', 'GP mean', 'observations', 'true latent function') +legend([h2 h3 h4], 'GP mean', 'observations', 'true latent function') title('Gaussian process prediction with a squared exponential covariance function') % To compute predictive densities at the test points xt, the total number diff --git a/gp/demo_binomial2.m b/gp/demo_binomial2.m index c768264a..2758699f 100644 --- a/gp/demo_binomial2.m +++ b/gp/demo_binomial2.m @@ -117,12 +117,13 @@ subplot('Position',[0.03 0.7 0.3 0.25]) hold on % GP 95% credible interval -h2=fill([xgrid' fliplr(xgrid')], [(Eft_la+1.96*sqrt(Varft_la))' fliplr((Eft_la-1.96*sqrt(Varft_la))')], color1, 'edgecolor', color1); +% h2=fill([xgrid' fliplr(xgrid')], [(Eft+1.96*sqrt(Varft))' fliplr((Eft-1.96*sqrt(Varft))')], color1, 'edgecolor', color1); % GP mean h1=plot(xgrid, Eft_la, 'color', color2, 'linewidth', 3); axis([-1.5 1.5 -14 14]) title('Laplace+grid approximation') -legend([h1 h2],'Mean of the latent','95% CI',2) +legend(h1,'Mean of the latent',2) +% legend([h1 h2],'Mean of the latent','95% CI',2) legend('boxoff') line(xlim,[0 0],'Linestyle','--','color','k') line([0 0],ylim,'Linestyle','--','color','k') @@ -132,12 +133,13 @@ subplot('Position',[0.03 0.38 0.3 0.25]) hold on % GP 95% credible interval -h2=fill([xgrid' fliplr(xgrid')], [(logitinv(Eft_la+1.96*sqrt(Varft_la)))' fliplr((logitinv(Eft_la-1.96*sqrt(Varft_la)))')], color1, 'edgecolor', color1); +% h2=fill([xgrid' fliplr(xgrid')], [(logitinv(Eft+1.96*sqrt(Varft)))' fliplr((logitinv(Eft-1.96*sqrt(Varft)))')], color1, 'edgecolor', color1); % GP mean h1=plot(xgrid, logitinv(Eft_la), 'color', color2, 'linewidth', 3); % observations h3=plot(x, y./5, 'xr', 'markersize', 10, 'linewidth', 2); -legend([h1 h2 h3],'Expected prob.','95% CI','Observations',2) +% legend([h1 h2 h3],'Expected prob.','95% CI','Observations',2) +legend([h1 h3],'Expected prob.','Observations',2) legend('boxoff') line(xlim,[.5 .5],'Linestyle','--','color','k') line([0 0],ylim,'Linestyle','--','color','k') @@ -152,10 +154,10 @@ set(gca,'ytick',[]) ylim([0 2000]) xlabel('LD50') -h1=text(prctile(ld50s,2.5),1850,'2.5%','HorizontalAlignment','center'); -h2=text(prctile(ld50s,50),1850,'50%','HorizontalAlignment','center'); -h3=text(prctile(ld50s,97.5),1850,'97.5%','HorizontalAlignment','center'); -hl=line(repmat(prctile(ld50s,[2.5 50 97.5]),2,1),repmat([0 1800]',1,3),'Color','k'); +% h1=text(prctile(ld50s,2.5),1850,'2.5%','HorizontalAlignment','center'); +% h2=text(prctile(ld50s,50),1850,'50%','HorizontalAlignment','center'); +% h3=text(prctile(ld50s,97.5),1850,'97.5%','HorizontalAlignment','center'); +% hl=line(repmat(prctile(ld50s,[2.5 50 97.5]),2,1),repmat([0 1800]',1,3),'Color','k'); fprintf('Elapsed time %.0fs\n',toc) % ------- EP approximation -------- @@ -197,12 +199,13 @@ subplot('Position',[0.36 0.7 0.3 0.25]) hold on % GP 95% credible interval -h2=fill([xgrid' fliplr(xgrid')], [(Eft_ep+1.96*sqrt(Varft_ep))' fliplr((Eft_ep-1.96*sqrt(Varft_ep))')], color1, 'edgecolor', color1); +% h2=fill([xgrid' fliplr(xgrid')], [(Eft+1.96*sqrt(Varft))' fliplr((Eft-1.96*sqrt(Varft))')], color1, 'edgecolor', color1); % GP mean h1=plot(xgrid, Eft_ep, 'color', color2, 'linewidth', 3); axis([-1.5 1.5 -14 14]) title('EP+grid approximation') -legend([h1 h2],'Mean of the latent','95% CI',2) +legend([h1],'Mean of the latent',2) +% legend([h1 h2],'Mean of the latent','95% CI',2) legend('boxoff') line(xlim,[0 0],'Linestyle','--','color','k') line([0 0],ylim,'Linestyle','--','color','k') @@ -212,12 +215,13 @@ subplot('Position',[0.36 0.38 0.3 0.25]) hold on % GP 95% credible interval -h2=fill([xgrid' fliplr(xgrid')], [(logitinv(Eft_ep+1.96*sqrt(Varft_ep)))' fliplr((logitinv(Eft_ep-1.96*sqrt(Varft_ep)))')], color1, 'edgecolor', color1); +% h2=fill([xgrid' fliplr(xgrid')], [(logitinv(Eft+1.96*sqrt(Varft)))' fliplr((logitinv(Eft-1.96*sqrt(Varft)))')], color1, 'edgecolor', color1); % GP mean h1=plot(xgrid, logitinv(Eft_ep), 'color', color2, 'linewidth', 3); % observations h3=plot(x, y./5, 'xr', 'markersize', 10, 'linewidth', 2); -legend([h1 h2 h3],'Expected prob.','95% CI','Observations',2) +legend([h1 h3],'Expected prob.','Observations',2) +% legend([h1 h2 h3],'Expected prob.','95% CI','Observations',2) legend('boxoff') line(xlim,[.5 .5],'Linestyle','--','color','k') line([0 0],ylim,'Linestyle','--','color','k') @@ -232,10 +236,10 @@ set(gca,'ytick',[]) ylim([0 2000]) xlabel('LD50') -h1=text(prctile(ld50s,2.5),1850,'2.5%','HorizontalAlignment','center'); -h2=text(prctile(ld50s,50),1850,'50%','HorizontalAlignment','center'); -h3=text(prctile(ld50s,97.5),1850,'97.5%','HorizontalAlignment','center'); -hl=line(repmat(prctile(ld50s,[2.5 50 97.5]),2,1),repmat([0 1800]',1,3),'Color','k'); +% h1=text(prctile(ld50s,2.5),1850,'2.5%','HorizontalAlignment','center'); +% h2=text(prctile(ld50s,50),1850,'50%','HorizontalAlignment','center'); +% h3=text(prctile(ld50s,97.5),1850,'97.5%','HorizontalAlignment','center'); +% hl=line(repmat(prctile(ld50s,[2.5 50 97.5]),2,1),repmat([0 1800]',1,3),'Color','k'); fprintf('Elapsed time %.0fs\n',toc) % ------- MCMC approximation -------- @@ -244,7 +248,7 @@ gp = gp_set(gp, 'latent_method', 'MCMC', 'jitterSigma2', 1e-4); -[rgp,g,opt] = gp_mc(gp, x, y, 'z', N, 'nsamples', 500, 'repeat', 4, 'display', 0); +[rgp,g,opt] = gp_mc(gp, x, y, 'z', N, 'nsamples', 500, 'repeat', 4, 'display', 10); rgp=thin(rgp,101); nmc=size(rgp.jitterSigma2,1); @@ -277,12 +281,13 @@ subplot('Position',[0.69 0.7 0.3 0.25]) hold on % GP 95% credible interval -h2=fill([xgrid' fliplr(xgrid')], [prctile(fs,97.5,2)' fliplr(prctile(fs,2.5,2)')], color1, 'edgecolor', color1); +% h2=fill([xgrid' fliplr(xgrid')], [prctile(fs,97.5,2)' fliplr(prctile(fs,2.5,2)')], color1, 'edgecolor', color1); % GP mean h1=plot(xgrid, Eft_mcmc, 'color', color2, 'linewidth', 3); axis([-1.5 1.5 -14 14]) title('MCMC approximation') -legend([h1 h2],'Mean of the latent','95% CI',2) +legend([h1],'Mean of the latent',2) +% legend([h1 h2],'Mean of the latent','95% CI',2) legend('boxoff') line(xlim,[0 0],'Linestyle','--','color','k') line([0 0],ylim,'Linestyle','--','color','k') @@ -292,12 +297,13 @@ subplot('Position',[0.69 0.38 0.3 0.25]) hold on % GP 95% credible interval -h2=fill([xgrid' fliplr(xgrid')], [(logitinv(prctile(fs,97.5,2)))' fliplr(logitinv(prctile(fs,2.5,2))')], color1, 'edgecolor', color1); +% h2=fill([xgrid' fliplr(xgrid')], [(logitinv(prctile(fs,97.5,2)))' fliplr(logitinv(prctile(fs,2.5,2))')], color1, 'edgecolor', color1); % GP mean h1=plot(xgrid, logitinv(Eft_mcmc), 'color', color2, 'linewidth', 3); % observations h3=plot(x, y./5, 'xr', 'markersize', 10, 'linewidth', 2); -legend([h1 h2 h3],'Expected prob.','95% CI','Observations',2) +% legend([h1 h2 h3],'Expected prob.','95% CI','Observations',2) +legend([h1 h3],'Expected prob.','Observations',2) legend('boxoff') line(xlim,[.5 .5],'Linestyle','--','color','k') line([0 0],ylim,'Linestyle','--','color','k') @@ -312,8 +318,8 @@ set(gca,'ytick',[]) ylim([0 2000]) xlabel('LD50') -h1=text(prctile(ld50s,2.5),1850,'2.5%','HorizontalAlignment','center'); -h2=text(prctile(ld50s,50),1850,'50%','HorizontalAlignment','center'); -h3=text(prctile(ld50s,97.5),1850,'97.5%','HorizontalAlignment','center'); -hl=line(repmat(prctile(ld50s,[2.5 50 97.5]),2,1),repmat([0 1800]',1,3),'Color','k'); +% h1=text(prctile(ld50s,2.5),1850,'2.5%','HorizontalAlignment','center'); +% h2=text(prctile(ld50s,50),1850,'50%','HorizontalAlignment','center'); +% h3=text(prctile(ld50s,97.5),1850,'97.5%','HorizontalAlignment','center'); +% hl=line(repmat(prctile(ld50s,[2.5 50 97.5]),2,1),repmat([0 1800]',1,3),'Color','k'); fprintf('Elapsed time %.0fs\n',toc) diff --git a/gp/demo_binomial_apc.m b/gp/demo_binomial_apc.m index 4d2296d5..18372400 100644 --- a/gp/demo_binomial_apc.m +++ b/gp/demo_binomial_apc.m @@ -161,8 +161,8 @@ set(gcf, 'color', 'w'), hold on color1=ones(1,3)*0.8; color2=ones(1,3)*0.5; % Estimate -h1=fill([xx1' fliplr(xx1')], [(Eft_1(ind1)+1.96*sqrt(Varft_1(ind1)))' ... - fliplr((Eft_1(ind1)-1.96*sqrt(Varft_1(ind1)))')], color1, 'edgecolor', color1); +% h1=fill([xx1' fliplr(xx1')], [(Eft_1(ind1)+1.96*sqrt(Varft_1(ind1)))' ... +% fliplr((Eft_1(ind1)-1.96*sqrt(Varft_1(ind1)))')], color1, 'edgecolor', color1); h2=plot(xx1, Eft_1(ind1), 'color', color2, 'linewidth', 3); % True function h4=plot(xx1, f1o(ind1), 'color', 'r', 'linewidth', 2); hold off @@ -173,8 +173,8 @@ % Time period effect subplot(3,1,2) set(gcf, 'color', 'w'), hold on -h1=fill([xx2' fliplr(xx2')], [(Eft_2(ind2)+1.96*sqrt(Varft_2(ind2)))' ... - fliplr((Eft_2(ind2)-1.96*sqrt(Varft_2(ind2)))')], color1, 'edgecolor', color1); +% h1=fill([xx2' fliplr(xx2')], [(Eft_2(ind2)+1.96*sqrt(Varft_2(ind2)))' ... +% fliplr((Eft_2(ind2)-1.96*sqrt(Varft_2(ind2)))')], color1, 'edgecolor', color1); h2=plot(xx2, Eft_2(ind2), 'color', color2, 'linewidth', 3); % true function h4=plot(xx2, f2o(ind2), 'color', 'r', 'linewidth', 2); @@ -185,8 +185,8 @@ % Cohort effect subplot(3,1,3) set(gcf, 'color', 'w'), hold on -h1=fill([xx3' fliplr(xx3')], [(Eft_3(ind3)+1.96*sqrt(Varft_3(ind3)))' ... - fliplr((Eft_3(ind3)-1.96*sqrt(Varft_3(ind3)))')], color1, 'edgecolor', color1); +% h1=fill([xx3' fliplr(xx3')], [(Eft_3(ind3)+1.96*sqrt(Varft_3(ind3)))' ... +% fliplr((Eft_3(ind3)-1.96*sqrt(Varft_3(ind3)))')], color1, 'edgecolor', color1); h2=plot(xx3, Eft_3(ind3), 'color', color2, 'linewidth', 3); % true function h4=plot(xx3, f3o(ind3), 'color', 'r', 'linewidth', 2); diff --git a/gp/demo_hierprior.m b/gp/demo_hierprior.m index 97b064e8..9c464d3a 100644 --- a/gp/demo_hierprior.m +++ b/gp/demo_hierprior.m @@ -112,8 +112,13 @@ end gpcf1 = gpcf_matern32('lengthScale', 1, 'magnSigma2', 0.03, ... 'lengthScale_prior', pl, 'magnSigma2_prior', prior_fixed()); -gpcf2 = gpcf_ppcs3('nin',nin,'lengthScale', 5, 'magnSigma2', 0.05,... - 'lengthScale_prior', pl, 'magnSigma2_prior', prior_fixed()); +if exist('ldlchol') + gpcf2 = gpcf_ppcs3('nin',nin,'lengthScale', 5, 'magnSigma2', 0.05,... + 'lengthScale_prior', pl, 'magnSigma2_prior', prior_fixed()); +else + gpcf2 = gpcf_matern52('lengthScale',5,'magnSigma2', 0.05, ... + 'lengthScale_prior',pl, 'magnSigma2_prior', prior_fixed()); +end lik = lik_negbin(); @@ -125,8 +130,13 @@ gp3 = gp_set('type', 'PIC', 'lik', lik, 'cf', gpcf1, 'X_u', Xu, 'Xu_prior', pxu, ... 'jitterSigma2', 1e-4, 'infer_params', 'covariance+likelihood+inducing',... 'tr_index', trindex); -gp4 = gp_set('type', 'CS+FIC', 'lik', lik, 'cf', {gpcf1 gpcf2}, 'X_u', Xu, 'Xu_prior', pxu, ... - 'jitterSigma2', 1e-4, 'infer_params', 'covariance+likelihood+inducing'); +if exist('ldlchol') + gp4 = gp_set('type', 'CS+FIC', 'lik', lik, 'cf', {gpcf1 gpcf2}, 'X_u', Xu, 'Xu_prior', pxu, ... + 'jitterSigma2', 1e-4, 'infer_params', 'covariance+likelihood+inducing'); +else + gp4 = gp_set('type', 'SOR', 'lik', lik, 'cf', {gpcf1 gpcf2}, 'X_u', Xu, 'Xu_prior', pxu, ... + 'jitterSigma2', 1e-4, 'infer_params', 'covariance+likelihood+inducing'); +end gp4.cf{1}.p.lengthScale=prior_fixed(); gp4.cf{1}.p.magnSigma2=prior_fixed(); @@ -152,9 +162,15 @@ gp3 = gp_set('type', 'PIC', 'lik', lik, 'cf', gpcf1, 'X_u', Xu, 'Xu_prior', pxu, ... 'jitterSigma2', 1e-4, 'infer_params', 'covariance+likelihood+inducing',... 'tr_index', trindex, 'latent_method', 'EP'); -gp4 = gp_set('type', 'CS+FIC', 'lik', lik, 'cf', {gpcf1 gpcf2}, 'X_u', Xu, 'Xu_prior', pxu, ... - 'jitterSigma2', 1e-4, 'infer_params', 'covariance+likelihood+inducing', ... - 'latent_method', 'EP'); +if exist('ldlchol') + gp4 = gp_set('type', 'CS+FIC', 'lik', lik, 'cf', {gpcf1 gpcf2}, 'X_u', Xu, 'Xu_prior', pxu, ... + 'jitterSigma2', 1e-4, 'infer_params', 'covariance+likelihood+inducing', ... + 'latent_method', 'EP'); +else + gp4 = gp_set('type', 'SOR', 'lik', lik, 'cf', {gpcf1 gpcf2}, 'X_u', Xu, 'Xu_prior', pxu, ... + 'jitterSigma2', 1e-4, 'infer_params', 'covariance+likelihood+inducing', ... + 'latent_method', 'EP'); +end gp4.cf{1}.p.lengthScale=prior_fixed(); gp4.cf{1}.p.magnSigma2=prior_fixed(); diff --git a/gp/demo_improvemarginals.m b/gp/demo_improvemarginals.m index f13b409e..7a2082cf 100644 --- a/gp/demo_improvemarginals.m +++ b/gp/demo_improvemarginals.m @@ -95,9 +95,9 @@ [pc_ep(:,i), fvec_ep(:,i), p_ep(:,i)] = gp_predcm(gp,x,y,'ind', ind(i), 'fcorr', 'fact'); tt_epfact=toc(start); s = plot(fvec_ep(:,i), p_ep(:,i), '-k', fvec_ep(:,i), norm_pdf(fvec_ep(:,i), Eft_ep(ind(i)), sqrt(Varft_ep(ind(i)))),'-m', fvec_ep(:,i), pc_ep(:,i), '-r'); set(s,'LineWidth',2) - set(get(get(b,'Annotation'),'LegendInformation'),... - 'IconDisplayStyle','off'); - legend('EP-L', 'EP-G', 'EP-FACT'); +% set(get(get(b,'Annotation'),'LegendInformation'),... +% 'IconDisplayStyle','off'); + legend('MCMC samples', 'EP-L', 'EP-G', 'EP-FACT'); title('Marginal corrections for probit likelihood (EP)'); subplot(2,1,2) @@ -153,9 +153,9 @@ s = plot(fvec_la(:,i), p_la(:,i), '-k', fvec_la(:,i), norm_pdf(fvec_la(:,i), Eft_la(ind(i)), sqrt(Varft_la(ind(i)))), '-m', ... fvec_la(:,i), pc_la2(:,i), '-r', fvec_la(:,i), pc_la(:,i), '-b'); set(s,'LineWidth',2) - set(get(get(b,'Annotation'),'LegendInformation'),... - 'IconDisplayStyle','off'); - legend('LA-L', 'LA-G', 'LA-FACT', 'LA-CM2'); +% set(get(get(b,'Annotation'),'LegendInformation'),... +% 'IconDisplayStyle','off'); + legend('MCMC samples', 'LA-L', 'LA-G', 'LA-FACT', 'LA-CM2'); title('Marginal corrections for probit likelihood (Laplace)'); % Predictive corrections diff --git a/gp/demo_improvemarginals2.m b/gp/demo_improvemarginals2.m index 427d087d..ef86506c 100644 --- a/gp/demo_improvemarginals2.m +++ b/gp/demo_improvemarginals2.m @@ -111,10 +111,14 @@ set(gca,'ytick',[]) ylim([0 2500]) xlabel('LD50') - h1=text(prctile(ld50s,2.5),2200,'2.5%','HorizontalAlignment','center'); - h2=text(prctile(ld50s,50),2350,'50%','HorizontalAlignment','center'); - h3=text(prctile(ld50s,97.5),2200,'97.5%','HorizontalAlignment','center'); - hl=line(repmat(prctile(ld50s,[2.5 50 97.5]),2,1),[0 0 0;2150 2300 2150],'Color','k'); + h1=text(prctile(ld50s',2.5),2200,'2.5%','HorizontalAlignment','center'); + h2=text(prctile(ld50s',50),2350,'50%','HorizontalAlignment','center'); + h3=text(prctile(ld50s',97.5),2200,'97.5%','HorizontalAlignment','center'); +% hl=line(repmat(prctile(ld50s',[2.5 50 97.5]),2,1),[0 0 0;2150 2300 2150],'Color','k'); + hl=line(repmat(prctile(ld50s',2.5),1,2),[0 2150],'Color','k'); + hl=line(repmat(prctile(ld50s',50),1,2),[0 2300],'Color','k'); + hl=line(repmat(prctile(ld50s',97.5),1,2),[0 2150],'Color','k'); + q2=qqplot(rmc.ld50s); drawnow % ------- Laplace approximation -------- @@ -156,14 +160,19 @@ set(gca,'ytick',[]) ylim([0 2500]) xlabel('LD50') - h1=text(prctile(ld50s,2.5),2200,'2.5%','HorizontalAlignment','center'); - h2=text(prctile(ld50s,50),2350,'50%','HorizontalAlignment','center'); - h3=text(prctile(ld50s,97.5),2200,'97.5%','HorizontalAlignment','center'); - hl=line(repmat(prctile(ld50s,[2.5 50 97.5]),2,1),[0 0 0;2150 2300 2150],'Color','k'); + h1=text(prctile(ld50s',2.5),2200,'2.5%','HorizontalAlignment','center'); + h2=text(prctile(ld50s',50),2350,'50%','HorizontalAlignment','center'); + h3=text(prctile(ld50s',97.5),2200,'97.5%','HorizontalAlignment','center'); + %hl=line(repmat(prctile(ld50s,[2.5 50 97.5]),2,1),[0 0 0;2150 2300 2150],'Color','k'); + hl=line(repmat(prctile(ld50s',2.5),1,2),[0 2150],'Color','k'); + hl=line(repmat(prctile(ld50s',50),1,2),[0 2300],'Color','k'); + hl=line(repmat(prctile(ld50s',97.5),1,2),[0 2150],'Color','k'); subplot('Position',[0.244 0.060 0.164 0.250]); - qqplot(rmc.ld50s,ld50s) + qqplot(ld50s); + %plot(q2(indn),q1); xlim([-.8 1.3]) ylim([-50 60]) + ylabel('') box on drawnow @@ -173,6 +182,8 @@ % in Gelman et al (2013) fprintf('Sampling from the posterior of alpha and beta\n') fs = gp_rnd(gpia, x, y, [0 1]', 'z', N, 'nsamp', 10000, 'fcorr', 'cm2'); + indn=isnan(fs(1,:)); + fs(:,indn)=[]; a=fs(1,:);b=fs(2,:)-fs(1,:); % compute samples from the LD50 given b>0 (see, Gelman et al (2013)) ld50s=-a(b>0)./b(b>0); @@ -199,12 +210,17 @@ set(gca,'ytick',[]) ylim([0 2500]) xlabel('LD50') - h1=text(prctile(ld50s,2.5),2200,'2.5%','HorizontalAlignment','center'); - h2=text(prctile(ld50s,50),2350,'50%','HorizontalAlignment','center'); - h3=text(prctile(ld50s,97.5),2200,'97.5%','HorizontalAlignment','center'); - hl=line(repmat(prctile(ld50s,[2.5 50 97.5]),2,1),[0 0 0;2150 2300 2150],'Color','k'); + h1=text(prctile(ld50s',2.5),2200,'2.5%','HorizontalAlignment','center'); + h2=text(prctile(ld50s',50),2350,'50%','HorizontalAlignment','center'); + h3=text(prctile(ld50s',97.5),2200,'97.5%','HorizontalAlignment','center'); + %hl=line(repmat(prctile(ld50s,[2.5 50 97.5]),2,1),[0 0 0;2150 2300 2150],'Color','k'); + hl=line(repmat(prctile(ld50s',2.5),1,2),[0 2150],'Color','k'); + hl=line(repmat(prctile(ld50s',50),1,2),[0 2300],'Color','k'); + hl=line(repmat(prctile(ld50s',97.5),1,2),[0 2150],'Color','k'); subplot('Position',[0.438 0.060 0.164 0.250]); - qqplot(rmc.ld50s,ld50s) + qqplot(ld50s); + %q2(indn)=[]; + %plot(q2,q1); xlim([-.8 1.3]) ylim([-50 60]) ylabel('') @@ -253,12 +269,16 @@ set(gca,'ytick',[]) ylim([0 2500]) xlabel('LD50') - h1=text(prctile(ld50s,2.5),2200,'2.5%','HorizontalAlignment','center'); - h2=text(prctile(ld50s,50),2350,'50%','HorizontalAlignment','center'); - h3=text(prctile(ld50s,97.5),2200,'97.5%','HorizontalAlignment','center'); - hl=line(repmat(prctile(ld50s,[2.5 50 97.5]),2,1),[0 0 0;2150 2300 2150],'Color','k'); + h1=text(prctile(ld50s',2.5),2200,'2.5%','HorizontalAlignment','center'); + h2=text(prctile(ld50s',50),2350,'50%','HorizontalAlignment','center'); + h3=text(prctile(ld50s',97.5),2200,'97.5%','HorizontalAlignment','center'); + %hl=line(repmat(prctile(ld50s,[2.5 50 97.5]),2,1),[0 0 0;2150 2300 2150],'Color','k'); + hl=line(repmat(prctile(ld50s',2.5),1,2),[0 2150],'Color','k'); + hl=line(repmat(prctile(ld50s',50),1,2),[0 2300],'Color','k'); + hl=line(repmat(prctile(ld50s',97.5),1,2),[0 2150],'Color','k'); subplot('Position',[0.632 0.060 0.164 0.250]); - qqplot(rmc.ld50s,ld50s) + qqplot(ld50s); + %plot(q2,q1); xlim([-.8 1.3]) ylim([-50 60]) ylabel('') @@ -271,6 +291,8 @@ % in Gelman et al (2013) fprintf('Sampling from the posterior of alpha and beta\n') fs = gp_rnd(gpia, x, y, [0 1]', 'z', N, 'zt', [5 5]', 'nsamp', 10000, 'fcorr', 'fact'); + indn=isnan(fs(1,:)); + fs(:,indn)=[]; a=fs(1,:);b=fs(2,:)-fs(1,:); % compute samples from the LD50 given b>0 (see, Gelman et al (2013)) ld50s=-a(b>0)./b(b>0); @@ -297,12 +319,17 @@ set(gca,'ytick',[]) ylim([0 2500]) xlabel('LD50') - h1=text(prctile(ld50s,2.5),2200,'2.5%','HorizontalAlignment','center'); - h2=text(prctile(ld50s,50),2350,'50%','HorizontalAlignment','center'); - h3=text(prctile(ld50s,97.5),2200,'97.5%','HorizontalAlignment','center'); - hl=line(repmat(prctile(ld50s,[2.5 50 97.5]),2,1),[0 0 0;2150 2300 2150],'Color','k'); + h1=text(prctile(ld50s',2.5),2200,'2.5%','HorizontalAlignment','center'); + h2=text(prctile(ld50s',50),2350,'50%','HorizontalAlignment','center'); + h3=text(prctile(ld50s',97.5),2200,'97.5%','HorizontalAlignment','center'); + %hl=line(repmat(prctile(ld50s,[2.5 50 97.5]),2,1),[0 0 0;2150 2300 2150],'Color','k'); + hl=line(repmat(prctile(ld50s',2.5),1,2),[0 2150],'Color','k'); + hl=line(repmat(prctile(ld50s',50),1,2),[0 2300],'Color','k'); + hl=line(repmat(prctile(ld50s',97.5),1,2),[0 2150],'Color','k'); subplot('Position',[0.826 0.060 0.164 0.250]); - qqplot(rmc.ld50s,ld50s) + qqplot(ld50s); + %q2(indn)=[]; + %plot(q2,q1); xlim([-.8 1.3]) ylim([-50 60]) ylabel('') diff --git a/gp/demo_inputdependentnoise.m b/gp/demo_inputdependentnoise.m index 71baf42e..9ae6c167 100644 --- a/gp/demo_inputdependentnoise.m +++ b/gp/demo_inputdependentnoise.m @@ -172,18 +172,30 @@ figure subplot(3,1,1),mesh(x1,x2,reshape(f1t,size(x1))),hold on, plot3(xt(:,1),xt(:,2), Ef(1:size(xt,1)), '*') title('Input dependent noise model'); -colormap hsv, alpha(.4) +colormap hsv, +if ~exist('OCTAVE_VERSION','builtin') + alpha(.4) +end subplot(3,1,2),mesh(x1,x2,reshape(f1t,size(x1))),hold on, plot3(xt(:,1),xt(:,2), Ef2(1:size(xt,1)), '*'); -colormap hsv, alpha(.4) +colormap hsv, +if ~exist('OCTAVE_VERSION','builtin') + alpha(.4) +end title('Gaussian noise model'); subplot(3,1,3),mesh(x1,x2,reshape(f1t,size(x1))),hold on, plot3(xt(:,1),xt(:,2), Ef3(1:size(xt,1)), '*'); -colormap hsv, alpha(.4) +colormap hsv, +if ~exist('OCTAVE_VERSION','builtin') + alpha(.4) +end title('Student-t noise model'); figure mesh(x1,x2,sigma2.*exp(reshape(f2t,size(x1)))),hold on, plot3(xt(:,1),xt(:,2), s2.*exp(Ef(size(xt,1)+1:end)), '*'); title('Real noise versus predicted noise'); -colormap hsv, alpha(.4) +colormap hsv, +if ~exist('OCTAVE_VERSION','builtin') + alpha(.4) +end %============================================ % Demonstration with homoscedastic noise @@ -274,4 +286,4 @@ plot(xt, s2.*exp(Ef12), '-b',x, sigma2.*exp(f2), '-k', xt, s2.*exp(Ef12 + 1.96.*sqrt(diag(Varf(nt+1:end, nt+1:end)))), '-r', xt,s2.*exp(Ef12 - 1.96.*sqrt(diag(Varf(nt+1:end, nt+1:end)))), '-r') ylim([0 2.5]) legend('Predicted noise variance', 'Real noise variance','95% CI',2); -setrandstream(prevstream); \ No newline at end of file +setrandstream(prevstream); diff --git a/gp/demo_inputdependentweibull.m b/gp/demo_inputdependentweibull.m index e92b1d9b..ca2a0c47 100644 --- a/gp/demo_inputdependentweibull.m +++ b/gp/demo_inputdependentweibull.m @@ -45,6 +45,7 @@ xt1=zeros(200,nin); xt1(:,2)=1; xt2=zeros(200,nin); xt2(:,2)=-1; +nt=200; xt1(:,1)=linspace(min(x(:,1)), max(x(:,1)), 200); xt2(:,1)=linspace(min(x(:,1)), max(x(:,1)), 200); diff --git a/gp/demo_kalman1.m b/gp/demo_kalman1.m index 18bd3e5e..1ebb6269 100644 --- a/gp/demo_kalman1.m +++ b/gp/demo_kalman1.m @@ -77,7 +77,7 @@ gp = gp_optim(gp, x, y); % Predict values at test inputs xt - [Eft,Varft] = gp_pred(gp, x, y, 'xt', xt); + [Eft,Varft] = gp_pred(gp, x, y, xt); %% Compare against full GP solution (table) diff --git a/gp/demo_kalman2.m b/gp/demo_kalman2.m index cc898533..26b116e9 100644 --- a/gp/demo_kalman2.m +++ b/gp/demo_kalman2.m @@ -89,7 +89,7 @@ 'lengthScale_prior',pl,'magnSigma2_prior',pl); % Finally create the GP structure - gp = gp_set('lik', lik, 'cf', {gpcf1,gpcf2,gpcf3}); + gp = gp_set('lik', lik, 'cf', {gpcf1,gpcf2,gpcf3}, 'jitterSigma2',1e-6); % Set type to KALMAN gp = gp_set(gp,'type','KALMAN'); @@ -101,13 +101,13 @@ opt=optimset('TolFun',1e-4,'TolX',1e-4,'Display','iter'); % Find hyperparameters by optimization (BFGS) - gp=gp_optim(gp,x,y,'opt',opt,'optimf',@fminlbfgs); + gp=gp_optim(gp,x,y,'opt',opt,'optimf',@fminscg); % Set the test points xt = (x(end):1/12:x(end)+10)'; % Predict values - [Eft,Varft] = gp_pred(gp, x, y,'xt',xt); + [Eft,Varft] = gp_pred(gp, x, y,xt); % Also predict the latent components separately [Eft1, Varft1] = gp_pred(gp, x, y, x, 'predcf', [1 3]); diff --git a/gp/demo_lgpdens.m b/gp/demo_lgpdens.m index 9c235729..302afd4b 100644 --- a/gp/demo_lgpdens.m +++ b/gp/demo_lgpdens.m @@ -201,8 +201,10 @@ xt=linspace(-6,6,200)'; [p,pq]=lgpdens(x,xt,'int_method','grid'); pla=p; -line(xt,p,'color','r','marker','none','linewidth',2) -line(xt,pq,'color','r','marker','none','linewidth',1,'linestyle','--') +if ~exist('OCTAVE_VERSION', 'builtin') + line(xt,p,'color','r','marker','none','linewidth',2) + line(xt,pq,'color','r','marker','none','linewidth',1,'linestyle','--') +end xlim([-7 7]) ylim([0 .5]) title('t_4 (Laplace)') @@ -214,19 +216,23 @@ subplot(2,1,2) [p,pq]=lgpdens(x,xt,'latent_method','MCMC'); pmc=p; -line(xt,p,'color','r','marker','none','linewidth',2) -line(xt,pq,'color','r','marker','none','linewidth',1,'linestyle','--') +if ~exist('OCTAVE_VERSION','builtin') + line(xt,p,'color','r','marker','none','linewidth',2) + line(xt,pq,'color','r','marker','none','linewidth',1,'linestyle','--') +end xlim([-7 7]) ylim([0 .5]) title('t_4 (MCMC)') line(xt,p0,'color','k') drawnow -[pks] = ksdensity(x,xt); - disp(['Laplace: ' num2str(sum(p0.*log(pla)))]) disp(['MCMC: ' num2str(sum(p0.*log(pmc)))]) -disp(['ksdensity: ' num2str(sum(p0.*log(pks)))]) + +if ~exist('OCTAVE_VERSION','builtin') + [pks] = ksdensity(x,xt); + disp(['ksdensity: ' num2str(sum(p0.*log(pks)))]) +end % Set back initial random stream setrandstream(prevstream); \ No newline at end of file diff --git a/gp/demo_memorysave.m b/gp/demo_memorysave.m index 8aa877b4..25656dda 100644 --- a/gp/demo_memorysave.m +++ b/gp/demo_memorysave.m @@ -167,32 +167,35 @@ pl = prior_t('s2',10); pm = prior_sqrtunif(); -gpcf1 = gpcf_ppcs3('nin',nin,'lengthScale', 1, 'magnSigma2', 0.1, 'lengthScale_prior', pl, 'magnSigma2_prior', pm); gpcf2 = gpcf_sexp('lengthScale', 5, 'magnSigma2', 0.05, 'lengthScale_prior', pl, 'magnSigma2_prior', pm); gpcf3 = gpcf_neuralnetwork('weightSigma2', [1 1], 'biasSigma2', 0.05, 'weightSigma2_prior', pl, 'biasSigma2_prior', pm); lik = lik_negbin(); -% GP without memory save -gp = gp_set('type', 'FIC', 'lik', lik, 'cf', gpcf1, 'X_u', Xu, ... - 'jitterSigma2', 1e-4, 'infer_params', 'covariance+inducing'); -% GP with memory saving option enabled -gp2 = gp_set('type', 'FIC', 'lik', lik, 'cf', gpcf1, 'X_u', Xu, ... - 'jitterSigma2', 1e-4, 'infer_params', 'covariance+inducing', 'savememory', 'on'); opt=optimset('TolFun',1e-2,'TolX',1e-2, 'Display', 'off'); - -fprintf('Spatial process (Laplace), FIC GP, PPCS3 covariance function, without and with memory saving (optimization and prediction)\n'); - -% Optimization and prediction without memory saving -tic,gp=gp_optim(gp,x,y,'z',ye,'opt',opt); -[Ef, Varf] = gp_pred(gp, x, y, x, 'z', ye, 'tstind', [1:n]); toc - -% Optimization and prediction with memory saving -tic,gp2=gp_optim(gp2,x,y,'z',ye,'opt',opt); -[Ef2, Varf2] = gp_pred(gp2, x, y, x, 'z', ye, 'tstind', [1:n]); toc - -% Check that predictions (and optimization) with and without memory saving are same -assert(all(Ef==Ef2)); assert(all(Varf==Varf2)); +if exist('ldlchol','file') + % GP without memory save + gp = gp_set('type', 'FIC', 'lik', lik, 'cf', gpcf1, 'X_u', Xu, ... + 'jitterSigma2', 1e-4, 'infer_params', 'covariance+inducing'); + % GP with memory saving option enabled + gp2 = gp_set('type', 'FIC', 'lik', lik, 'cf', gpcf1, 'X_u', Xu, ... + 'jitterSigma2', 1e-4, 'infer_params', 'covariance+inducing', 'savememory', 'on'); + + gpcf1 = gpcf_ppcs3('nin',nin,'lengthScale', 1, 'magnSigma2', 0.1, 'lengthScale_prior', pl, 'magnSigma2_prior', pm); + + fprintf('Spatial process (Laplace), FIC GP, PPCS3 covariance function, without and with memory saving (optimization and prediction)\n'); + + % Optimization and prediction without memory saving + tic,gp=gp_optim(gp,x,y,'z',ye,'opt',opt); + [Ef, Varf] = gp_pred(gp, x, y, x, 'z', ye, 'tstind', [1:n]); toc + + % Optimization and prediction with memory saving + tic,gp2=gp_optim(gp2,x,y,'z',ye,'opt',opt); + [Ef2, Varf2] = gp_pred(gp2, x, y, x, 'z', ye, 'tstind', [1:n]); toc + + % Check that predictions (and optimization) with and without memory saving are same + assert(all(Ef==Ef2)); assert(all(Varf==Varf2)); +end gp = gp_set('lik', lik, 'cf', gpcf2, 'jitterSigma2', 1e-4, 'latent_method', 'EP'); gp2 = gp_set('lik', lik, 'cf', gpcf2, 'jitterSigma2', 1e-4, 'latent_method', 'EP', 'savememory', 'on'); diff --git a/gp/demo_monotonic2.m b/gp/demo_monotonic2.m index 01a30d99..5767292c 100644 --- a/gp/demo_monotonic2.m +++ b/gp/demo_monotonic2.m @@ -31,7 +31,14 @@ % y is the number of insured who died S = which('demo_monotonic2'); L = strrep(S,'demo_monotonic2.m','demodata/broffit.txt'); -d=readtable(L,'Delimiter',';'); +if ~exist('OCTAVE_VERSION','builtin') + d=readtable(L,'Delimiter',';'); +else + dd=importdata(L); + d.age=dd.data(:,1); + d.N=dd.data(:,2); + d.y=dd.data(:,3); +end x=d.age; y=d.y; z=d.N.*(sum(d.y)./sum(d.N)); diff --git a/gp/demo_multiclass.m b/gp/demo_multiclass.m index b01119ac..8e3adade 100644 --- a/gp/demo_multiclass.m +++ b/gp/demo_multiclass.m @@ -110,9 +110,9 @@ plot(x(y(:,2)==1,1),x(y(:,2)==1,2),'x', 'linewidth', 2); plot(x(y(:,3)==1,1),x(y(:,3)==1,2),'kd', 'linewidth', 2); axis([-0.4 1.4 -0.4 1.4]) -contour(xtg1, xtg2, reshape(exp(pg(:,1)),30,30),'r', 'linewidth', 2) -contour(xtg1, xtg2, reshape(exp(pg(:,2)),30,30),'b', 'linewidth', 2) -contour(xtg1, xtg2, reshape(exp(pg(:,3)),30,30),'k', 'linewidth', 2) +contour(xtg1, xtg2, reshape(exp(pg(:,1)),30,30),0.1:0.1:1,'r', 'linewidth', 2) +contour(xtg1, xtg2, reshape(exp(pg(:,2)),30,30),0.1:0.1:1,'b', 'linewidth', 2) +contour(xtg1, xtg2, reshape(exp(pg(:,3)),30,30),0.1:0.1:1,'k', 'linewidth', 2) % MCMC approach @@ -162,9 +162,9 @@ plot(x(y(:,2)==1,1),x(y(:,2)==1,2),'x', 'linewidth', 2); plot(x(y(:,3)==1,1),x(y(:,3)==1,2),'kd', 'linewidth', 2); axis([-0.4 1.4 -0.4 1.4]) -contour(xtg1, xtg2, reshape(pg_mc(:,1),30,30),'r', 'linewidth', 2) -contour(xtg1, xtg2, reshape(pg_mc(:,2),30,30),'b', 'linewidth', 2) -contour(xtg1, xtg2, reshape(pg_mc(:,3),30,30),'k', 'linewidth', 2) +contour(xtg1, xtg2, reshape(pg_mc(:,1),30,30),10,'r', 'linewidth', 2) +contour(xtg1, xtg2, reshape(pg_mc(:,2),30,30),10,'b', 'linewidth', 2) +contour(xtg1, xtg2, reshape(pg_mc(:,3),30,30),10,'k', 'linewidth', 2) @@ -197,7 +197,7 @@ % re-set some of the sampling options hmc_opt.repeat=1; -hmc_opt.steps=4; +hmc_opt.steps=4;i_d hmc_opt.stepadj=0.02; latent_opt.repeat = 20; hmc2('state', sum(100*clock)); @@ -218,8 +218,8 @@ plot(x(y(:,2)==1,1),x(y(:,2)==1,2),'x', 'linewidth', 2); plot(x(y(:,3)==1,1),x(y(:,3)==1,2),'kd', 'linewidth', 2); axis([-0.4 1.4 -0.4 1.4]) -contour(xtg1, xtg2, reshape(pg_mc2(:,1),30,30),'r', 'linewidth', 2) -contour(xtg1, xtg2, reshape(pg_mc2(:,2),30,30),'b', 'linewidth', 2) -contour(xtg1, xtg2, reshape(pg_mc2(:,3),30,30),'k', 'linewidth', 2) +contour(xtg1, xtg2, reshape(pg_mc2(:,1),30,30),10,'r', 'linewidth', 2) +contour(xtg1, xtg2, reshape(pg_mc2(:,2),30,30),10,'b', 'linewidth', 2) +contour(xtg1, xtg2, reshape(pg_mc2(:,3),30,30),10,'k', 'linewidth', 2) diff --git a/gp/demo_multiclass_nested_ep.m b/gp/demo_multiclass_nested_ep.m index 755018e8..918f2e80 100644 --- a/gp/demo_multiclass_nested_ep.m +++ b/gp/demo_multiclass_nested_ep.m @@ -73,7 +73,7 @@ gpep = gp_set('lik', lik_multinomprobit, 'cf', {gpcf1}, 'jitterSigma2', 1e-6, 'latent_method', 'EP', 'latent_opt', latent_opt); % Optimization options -opt=optimset('TolX',1e-2,'TolFun',1e-2,'display','iter','derivativecheck','off'); +opt=optimset('TolX',1e-2,'TolFun',1e-2,'Display','iter','derivativecheck','off'); disp('Optimize the hyperparameters') gpep=gp_optim(gpep,x,y,'opt',opt, 'optimf', @fminlbfgs); diff --git a/gp/demo_neuralnetcov.m b/gp/demo_neuralnetcov.m index 90abc7ee..aea2793c 100644 --- a/gp/demo_neuralnetcov.m +++ b/gp/demo_neuralnetcov.m @@ -129,23 +129,25 @@ % Plot the predictions and data color1=ones(1,3)*0.8; color2=ones(1,3)*0.5; figure, set(gcf, 'color', 'w'), hold on -h1=fill([xgrid' fliplr(xgrid')], [(Eyt_map+1.96*sqrt(Varyt_map))' fliplr((Eyt_map-1.96*sqrt(Varyt_map))')], color1, 'edgecolor', color1); +% h1=fill([xgrid' fliplr(xgrid')], [(Eyt_map+1.96*sqrt(Varyt_map))' fliplr((Eyt_map-1.96*sqrt(Varyt_map))')], color1, 'edgecolor', color1); % GP mean h2=plot(xgrid, Eyt_map, 'color', color2, 'linewidth', 3); % observations h3=plot(x, y, 'xk', 'markersize', 10, 'linewidth', 2); % true function h4=plot(xgrid, norm_pdf(4*xgrid), 'color', 'r', 'linewidth', 2); -legend([h1 h2 h3 h4], 'GP 95% CI', 'GP mean', 'observations', 'true latent function') +% legend([h1 h2 h3 h4], 'GP 95% CI', 'GP mean', 'observations', 'true latent function') +legend([h2 h3 h4], 'GP mean', 'observations', 'true latent function') title('GP (squared exponential) predictions and the data points'); figure, set(gcf, 'color', 'w'), hold on -h1=fill([xgrid' fliplr(xgrid')], [(Eyt_map2+1.96*sqrt(Varyt_map2))' fliplr((Eyt_map2-1.96*sqrt(Varyt_map2))')], color1, 'edgecolor', color1); +% h1=fill([xgrid' fliplr(xgrid')], [(Eyt_map2+1.96*sqrt(Varyt_map2))' fliplr((Eyt_map2-1.96*sqrt(Varyt_map2))')], color1, 'edgecolor', color1); % GP mean h2=plot(xgrid, Eyt_map2, 'color', color2, 'linewidth', 3); % observations h3=plot(x, y, 'xk', 'markersize', 10, 'linewidth', 2); % true function h4=plot(xgrid, norm_pdf(4*xgrid), 'color', 'r', 'linewidth', 2); -legend([h1 h2 h3 h4], 'GP 95% CI', 'GP mean', 'observations', 'true latent function') +legend([h2 h3 h4], 'GP mean', 'observations', 'true latent function') +% legend([h1 h2 h3 h4], 'GP 95% CI', 'GP mean', 'observations', 'true latent function') title('GP (neural network) predictions and the data points'); diff --git a/gp/demo_periodic.m b/gp/demo_periodic.m index 3a125305..b68e0b45 100644 --- a/gp/demo_periodic.m +++ b/gp/demo_periodic.m @@ -300,5 +300,6 @@ plot(xtt(:,1),exp(Eft_full+1.96.*sqrt(Varft_full)).*mean(y),'b--') legend('Training data', 'Validation data','Predicted mean','95% CI', 'Location', 'NorthWest') -line(2008,0:80,'LineWidth',2) +line([2008 2008],[0 80],'LineWidth',2) +% line(2008,0:80,'LineWidth',2) axis tight diff --git a/gp/demo_regression_additive1.m b/gp/demo_regression_additive1.m index eddbe23c..8a2a990b 100644 --- a/gp/demo_regression_additive1.m +++ b/gp/demo_regression_additive1.m @@ -119,12 +119,12 @@ warning('GPstuff:SuiteSparseMissing',... ['SuiteSparse is not properly installed. (in BECS try ''use suitesparse'')\n' ... 'Using gpcf_sexp (non-compact support) instead of gpcf_ppcs2 (compact support)']); - gpcf2 = gpcf_sexp('lengthScale', 5, 'magnSigma2', 1, 'lengthScale_prior', pl2, 'magnSigma2_prior', pm); + gpcf2 = gpcf_sexp('lengthScale', 5, 'magnSigma2', 1, 'lengthScale_prior', pl2, 'magnSigma2_prior', pm2); end lik = lik_gaussian('sigma2', 0.1, 'sigma2_prior', pn); % Create the GP structure -gp = gp_set('lik', lik, 'cf', {gpcf1, gpcf2}, 'jitterSigma2', 1e-9) +gp = gp_set('lik', lik, 'cf', {gpcf1, gpcf2}, 'jitterSigma2', 1e-9); % ----------------------------- % --- Conduct the inference --- @@ -179,7 +179,7 @@ Xu = [min(x):24:max(x)+10]'; % Create the FIC GP structure -gp_fic = gp_set('type', 'FIC', 'lik', lik, 'cf', {gpcf1,gpcf2}, 'jitterSigma2', 1e-9, 'X_u', Xu) +gp_fic = gp_set('type', 'FIC', 'lik', lik, 'cf', {gpcf1,gpcf2}, 'jitterSigma2', 1e-9, 'X_u', Xu); % ----------------------------- % --- Conduct the inference --- @@ -227,7 +227,7 @@ trindex{i} = find(x>edges(i) & x0)) -ip.addParamValue('tstind', [], @(x) isempty(x) || iscell(x) ||... - (isvector(x) && isreal(x) && all(isfinite(x)&x>0))) -ip.addParamValue('nsamp', 500, @(x) isreal(x) && isscalar(x)) -ip.addParamValue('deltadist',[], @(x) isvector(x)); - -ip.parse(gp, x, y, varargin{:}); +ip=iparser(ip,'addRequired','gp',@(x) isstruct(x) || iscell(x)); +ip=iparser(ip,'addRequired','x', @(x) ~isempty(x) && isreal(x) && all(isfinite(x(:)))); +ip=iparser(ip,'addRequired','y', @(x) ~isempty(x) && isreal(x) && all(isfinite(x(:)))); +ip=iparser(ip,'addParamValue','z', [], @(x) isreal(x) && all(isfinite(x(:)))); +ip=iparser(ip,'addParamValue','predcf', [], @(x) isempty(x) || ... + isvector(x) && isreal(x) && all(isfinite(x)&x>0)); +ip=iparser(ip,'addParamValue','tstind', [], @(x) isempty(x) || iscell(x) ||... + (isvector(x) && isreal(x) && all(isfinite(x)&x>0))); +ip=iparser(ip,'addParamValue','nsamp', 500, @(x) isreal(x) && isscalar(x)); +ip=iparser(ip,'addParamValue','deltadist',[], @(x) isvector(x)); +ip=iparser(ip,'parse',gp, x, y, varargin{:}); options=struct(); options.predcf=ip.Results.predcf; options.tstind=ip.Results.tstind; diff --git a/gp/gp_cpred.m b/gp/gp_cpred.m index b3ed8912..1d8ac2f3 100644 --- a/gp/gp_cpred.m +++ b/gp/gp_cpred.m @@ -37,27 +37,29 @@ ip=inputParser; ip.FunctionName = 'GP_CPRED'; -ip.addRequired('gp',@(x) isstruct(x) || iscell(x)); -ip.addRequired('x', @(x) ~isempty(x) && isreal(x) && all(isfinite(x(:)))) -ip.addRequired('y', @(x) ~isempty(x) && isreal(x) && all(isfinite(x(:)))) -ip.addRequired('xt', @(x) ~isempty(x) && isreal(x) && all(isfinite(x(:)))) -ip.addParamValue('yt', [], @(x) isreal(x) && all(isfinite(x(:)))) -ip.addParamValue('zt', [], @(x) isreal(x) && all(isfinite(x(:)))) -ip.addRequired('ind', @(x) ~isempty(x) && isvector(x)) -ip.addParamValue('var', [], @(x) isreal(x)) -ip.addParamValue('z', [], @(x) isreal(x) && all(isfinite(x(:)))) -ip.addParamValue('predcf', [], @(x) isempty(x) || ... - isvector(x) && isreal(x) && all(isfinite(x)&x>0)) -ip.addParamValue('tstind', [], @(x) isempty(x) || iscell(x) ||... - (isvector(x) && isreal(x) && all(isfinite(x)&x>0))) -ip.addParamValue('method', 'median', @(x) ismember(x, {'median', 'mean' 'mode'})) -ip.addParamValue('plot', 'off', @(x) ismember(x, {'on', 'off'})) -ip.addParamValue('tr', 0.25, @(x) isreal(x) && all(isfinite(x(:)))) -ip.addParamValue('target', 'mu', @(x) ismember(x,{'f','mu','cdf'})) -ip.addParamValue('prct', [5 50 95], @(x) isreal(x) && all(isfinite(x(:)))) -ip.addParamValue('normdata', struct(), @(x) isempty(x) || isstruct(x)) -ip.addParamValue('xlabels', [], @(x) isempty(x) || iscell(x)); -ip.parse(gp, x, y, xt, ind, varargin{:}); + +ip=iparser(ip,'addRequired','gp',@(x) isstruct(x) || iscell(x)); +ip=iparser(ip,'addRequired','x', @(x) ~isempty(x) && isreal(x) && all(isfinite(x(:)))); +ip=iparser(ip,'addRequired','y', @(x) ~isempty(x) && isreal(x) && all(isfinite(x(:)))); +ip=iparser(ip,'addRequired','xt', @(x) ~isempty(x) && isreal(x) && all(isfinite(x(:)))); +ip=iparser(ip,'addRequired','ind', @(x) ~isempty(x) && isvector(x)); +ip=iparser(ip,'addParamValue','yt', [], @(x) isreal(x) && all(isfinite(x(:)))); +ip=iparser(ip,'addParamValue','var', [], @(x) isreal(x)); +ip=iparser(ip,'addParamValue','z', [], @(x) isreal(x) && all(isfinite(x(:)))); +ip=iparser(ip,'addParamValue','zt', [], @(x) isreal(x) && all(isfinite(x(:)))); +ip=iparser(ip,'addParamValue','predcf', [], @(x) isempty(x) || ... + isvector(x) && isreal(x) && all(isfinite(x)&x>0)); +ip=iparser(ip,'addParamValue','tstind', [], @(x) isempty(x) || iscell(x) ||... + (isvector(x) && isreal(x) && all(isfinite(x)&x>0))); +ip=iparser(ip,'addParamValue','method', 'median', @(x) ismember(x, {'median', 'mean' 'mode'})); +ip=iparser(ip,'addParamValue','normdata', struct(), @(x) isempty(x) || isstruct(x)); +ip=iparser(ip,'addParamValue','plot', 'off', @(x) ismember(x, {'on', 'off'})); +ip=iparser(ip,'addParamValue','tr', 0.25, @(x) isreal(x) && all(isfinite(x(:)))); +ip=iparser(ip,'addParamValue','target', 'mu', @(x) ismember(x,{'f','mu','cdf'})); +ip=iparser(ip,'addParamValue','prct', [5 50 95], @(x) isreal(x) && all(isfinite(x(:)))); +ip=iparser(ip,'addParamValue','xlabels', [], @(x) isempty(x) || iscell(x)); +ip=iparser(ip,'parse',gp, x, y, xt, ind, varargin{:}); + zt=ip.Results.zt; options=struct(); options.predcf=ip.Results.predcf; @@ -89,13 +91,13 @@ nd=ip.Results.normdata; ipnd=inputParser; ipnd.FunctionName = 'normdata'; -ipnd.addParamValue('xmean',zeros(1,size(x,2)),@(x) isempty(x) || (isreal(x) && all(isfinite(x(:))))); -ipnd.addParamValue('xstd',ones(1,size(x,2)),@(x) isempty(x) || (isreal(x) && all(isfinite(x(:))))); -ipnd.addParamValue('xlog',zeros(1,size(x,2)),@(x) isempty(x) || (isreal(x) && all(isfinite(x(:))))); -ipnd.addParamValue('ymean',0,@(x) isempty(x) || (isreal(x) && all(isfinite(x(:))))); -ipnd.addParamValue('ystd',1,@(x) isempty(x) || (isreal(x) && all(isfinite(x(:))))); -ipnd.addParamValue('ylog',0,@(x) isempty(x) || (isreal(x) && all(isfinite(x(:))))); -ipnd.parse(nd); +ipnd=iparser(ipnd,'addParamValue','xmean',zeros(1,size(x,2)),@(x) isempty(x) || (isreal(x) && all(isfinite(x(:))))); +ipnd=iparser(ipnd,'addParamValue','xstd',ones(1,size(x,2)),@(x) isempty(x) || (isreal(x) && all(isfinite(x(:))))); +ipnd=iparser(ipnd,'addParamValue','xlog',zeros(1,size(x,2)),@(x) isempty(x) || (isreal(x) && all(isfinite(x(:))))); +ipnd=iparser(ipnd,'addParamValue','ymean',0,@(x) isempty(x) || (isreal(x) && all(isfinite(x(:))))); +ipnd=iparser(ipnd,'addParamValue','ystd',1,@(x) isempty(x) || (isreal(x) && all(isfinite(x(:))))); +ipnd=iparser(ipnd,'addParamValue','ylog',0,@(x) isempty(x) || (isreal(x) && all(isfinite(x(:))))); +ipnd=iparser(ipnd,'parse',nd); nd=ipnd.Results; [tmp, nin] = size(x); @@ -166,7 +168,7 @@ end if isequal(plot_results, 'on') if ind>0 - if ind>=1&numel(nd.xmean)>=ind + if ind>=1 && numel(nd.xmean)>=ind xtnn=denormdata(xtnn,nd.xmean(ind),nd.xstd(ind)); end deltadist=gp_finddeltadist(gp); @@ -325,6 +327,7 @@ case 'f' [Ef, Varf] = gp_pred(gp, x, y, xt); case 'mu' + options prctmu = gp_predprctmu(gp, x, y, xt, options, 'prct', 50); Ef = prctmu; Varf = []; case 'cdf' diff --git a/gp/gp_dic.m b/gp/gp_dic.m index 63f131b8..e62f3a30 100644 --- a/gp/gp_dic.m +++ b/gp/gp_dic.m @@ -86,13 +86,13 @@ ip=inputParser; ip.FunctionName = 'GP_DIC'; - ip.addRequired('gp',@(x) isstruct(x) || iscell(x)); - ip.addRequired('x', @(x) ~isempty(x) && isreal(x) && all(isfinite(x(:)))) - ip.addRequired('y', @(x) ~isempty(x) && isreal(x) && all(isfinite(x(:)))) - ip.addParamValue('focus', 'all', @(x) ismember(x,{'hyper','all'})) - ip.addParamValue('form', 'mean', @(x) ismember(x,{'mean','all','sum','dic'})) - ip.addParamValue('z', [], @(x) isreal(x) && all(isfinite(x(:)))) - ip.parse(gp, x, y, varargin{:}); + ip=iparser(ip,'addRequired','gp',@(x) isstruct(x) || iscell(x)); + ip=iparser(ip,'addRequired','x', @(x) ~isempty(x) && isreal(x) && all(isfinite(x(:)))); + ip=iparser(ip,'addRequired','y', @(x) ~isempty(x) && isreal(x) && all(isfinite(x(:)))); + ip=iparser(ip,'addParamValue','focus', 'all', @(x) ismember(x,{'hyper','all'})); + ip=iparser(ip,'addParamValue','form', 'mean', @(x) ismember(x,{'mean','all','sum','dic'})); + ip=iparser(ip,'addParamValue','z', [], @(x) isreal(x) && all(isfinite(x(:)))); + ip=iparser(ip,'parse',gp, x, y, varargin{:}); focus=ip.Results.focus; form=ip.Results.form; % pass these forward diff --git a/gp/gp_e.m b/gp/gp_e.m index 003a025e..69986799 100755 --- a/gp/gp_e.m +++ b/gp/gp_e.m @@ -66,12 +66,12 @@ ip=inputParser; ip.FunctionName = 'GP_E'; -ip.addRequired('w', @(x) isempty(x) || isvector(x) && isreal(x)); -ip.addRequired('gp',@isstruct); -ip.addRequired('x', @(x) ~isempty(x) && isreal(x) && all(isfinite(x(:)))) -ip.addRequired('y', @(x) ~isempty(x) && isreal(x) && all(isfinite(x(:)))) -ip.addParamValue('z', [], @(x) isreal(x) && all(isfinite(x(:)))) -ip.parse(w, gp, x, y, varargin{:}); +ip=iparser(ip,'addRequired','w', @(x) isempty(x) || isvector(x) && isreal(x)); +ip=iparser(ip,'addRequired','gp',@isstruct); +ip=iparser(ip,'addRequired','x', @(x) ~isempty(x) && isreal(x) && all(isfinite(x(:)))); +ip=iparser(ip,'addRequired','y', @(x) ~isempty(x) && isreal(x) && all(isfinite(x(:)))); +ip=iparser(ip,'addParamValue','z', [], @(x) isreal(x) && all(isfinite(x(:)))); +ip=iparser(ip,'parse',w, gp, x, y, varargin{:}); z=ip.Results.z; gp=gp_unpak(gp, w); @@ -513,7 +513,7 @@ % % [3] Simo Sarkka (2006). Recursive Bayesian inference on stochastic % differential equations. Doctoral dissertation, Helsinki - % University of Technology, Filand. + % University of Technology, Finland. % % Ensure that this is a purely temporal problem @@ -658,6 +658,7 @@ end e = edata + eprior; +end function [edata, eprior, e] = set_output_for_notpositivedefinite() %instead of stopping to chol error, return NaN @@ -666,5 +667,4 @@ e = NaN; end -end diff --git a/gp/gp_g.m b/gp/gp_g.m index e1c683f3..8902ed26 100755 --- a/gp/gp_g.m +++ b/gp/gp_g.m @@ -46,12 +46,12 @@ ip=inputParser; ip.FunctionName = 'GP_G'; -ip.addRequired('w', @(x) isvector(x) && isreal(x)); -ip.addRequired('gp',@isstruct); -ip.addRequired('x', @(x) ~isempty(x) && isreal(x) && all(isfinite(x(:)))) -ip.addRequired('y', @(x) ~isempty(x) && isreal(x) && all(isfinite(x(:)))) -ip.addParamValue('z', [], @(x) isreal(x) && all(isfinite(x(:)))) -ip.parse(w, gp, x, y, varargin{:}); +ip=iparser(ip,'addRequired','w', @(x) isvector(x) && isreal(x)); +ip=iparser(ip,'addRequired','gp',@isstruct); +ip=iparser(ip,'addRequired','x', @(x) ~isempty(x) && isreal(x) && all(isfinite(x(:)))); +ip=iparser(ip,'addRequired','y', @(x) ~isempty(x) && isreal(x) && all(isfinite(x(:)))); +ip=iparser(ip,'addParamValue','z', [], @(x) isreal(x) && all(isfinite(x(:)))); +ip=iparser(ip,'parse',w, gp, x, y, varargin{:}); z=ip.Results.z; if ~all(isfinite(w(:))); % instead of stopping to error, return NaN @@ -221,15 +221,15 @@ if isfield(gp.lik, 'nondiagW') && ~ismember(gp.lik.type, {'LGP' 'LGPC'}) % check in which components the covariance function is present % for likelihoods with non-diagonal Hessian - do = false(nout,1); + doo = false(nout,1); if multicf for z1=1:nout if any(gp.comp_cf{z1}==i) - do(z1) = true; + doo(z1) = true; end end else - do = true(nout,1); + doo = true(nout,1); end end @@ -314,17 +314,17 @@ % Non-diagonalizable likelihoods Bdl=0; Cdl=0; if isfield(gp.lik,'xtime'); - if do(1) + if doo(1) Bdl = Bdl + b(1:ntime)'*(DKff*b(1:ntime)); Cdl = Cdl + sum(sum(invC(1:ntime,1:ntime).*DKff)); % help arguments end - if do(2) + if doo(2) Bdl = Bdl + b(ntime+1:end)'*(DKff*b(ntime+1:end)); Cdl = Cdl + sum(sum(invC(ntime+1:end,ntime+1:end).*DKff)); % help arguments end else for z1=1:nout - if do(z1) + if doo(z1) Bdl = Bdl + b(1+nl(z1):nl(z1+1))'*(DKff*b(1+nl(z1):nl(z1+1))); Cdl = Cdl + sum(sum(invC(:,:,z1).*DKff)); % help arguments end @@ -1527,7 +1527,7 @@ P = P - K*S*K'; end - + gdata=real(gdata); % Take all priors into account in the gradient gprior = []; if ~isempty(strfind(gp.infer_params, 'covariance')) diff --git a/gp/gp_ia.m b/gp/gp_ia.m index 84a0963d..779e1cd0 100644 --- a/gp/gp_ia.m +++ b/gp/gp_ia.m @@ -93,47 +93,49 @@ ip=inputParser; ip.FunctionName = 'GP_IA'; - ip.addRequired('gp',@(x) isstruct(x) || isempty(x)); - ip.addRequired('x', @(x) ~isempty(x) && isreal(x) && all(isfinite(x(:)))) - ip.addRequired('y', @(x) ~isempty(x) && isreal(x) && all(isfinite(x(:)))) - ip.addOptional('xt',[], @(x) isnumeric(x) && isreal(x) && all(isfinite(x(:)))) - ip.addParamValue('yt', [], @(x) isreal(x) && all(isfinite(x(:)))) - ip.addParamValue('z', [], @(x) isreal(x) && all(isfinite(x(:)))) - ip.addParamValue('int_method', 'CCD', @(x) ischar(x) && ... - ismember(x,{'CCD','grid','is_normal','is_t','hmc'})) - ip.addParamValue('predcf', [], @(x) isempty(x) || ... - isvector(x) && isreal(x) && all(isfinite(x)&x>0)) - ip.addParamValue('tstind', [], @(x) isempty(x) || ... - isvector(x) && isreal(x) && all(isfinite(x)&x>0)) - ip.addParamValue('rotate', true, @(x) islogical(x) && isscalar(x)) - ip.addParamValue('autoscale', 'on', @(x) (islogical(x) && isscalar(x))|| ... - ismember(x,{'on' 'off' 'full'})) - ip.addParamValue('validate', 1, @(x) ismember(x,[1 2])) - ip.addParamValue('threshold', 2.5, @(x) isscalar(x) && isreal(x) && ... - isfinite(x) && x>0) - ip.addParamValue('step_size', 1, @(x) isscalar(x) && isreal(x) && ... - isfinite(x) && x>0) - ip.addParamValue('t_nu', 4, @(x) isscalar(x) && isreal(x) && ... - isfinite(x) && x>=1) - ip.addParamValue('nsamples', 200, @(x) isscalar(x) && isreal(x) && ... - isfinite(x) && x>=1) - ip.addParamValue('repeat', 10, @(x) isscalar(x) && isreal(x) && ... - isfinite(x) && x>=1) - ip.addParamValue('f0', 1.1, @(x) isscalar(x) && isreal(x) && ... - isfinite(x) && x>0) - ip.addParamValue('qmc', true, @(x) islogical(x) && isscalar(x)) - ip.addParamValue('optimf', @fminscg, @(x) isa(x,'function_handle')||isempty(x)) - ip.addParamValue('opt_optim', [], @isstruct) - ip.addParamValue('opt_hmc', [], @isstruct); - ip.addParamValue('persistence_reset', 0, @(x) ~isempty(x) && isreal(x)); - ip.addParamValue('cache', 'off', @(x) ischar(x) && ismember(x,{'on','off'})); - ip.addParamValue('display', 'on', @(x) islogical(x) || isreal(x) || ... - ismember(x,{'on' 'off' 'iter'})) + + ip=iparser(ip,'addRequired','gp',@(x) isstruct(x) || isempty(x)); + ip=iparser(ip,'addRequired','x', @(x) ~isempty(x) && isreal(x) && all(isfinite(x(:)))); + ip=iparser(ip,'addRequired','y', @(x) ~isempty(x) && isreal(x) && all(isfinite(x(:)))); + ip=iparser(ip,'addOptional','xt',[], @(x) isnumeric(x) && isreal(x) && all(isfinite(x(:)))); + ip=iparser(ip,'addParamValue','yt', [], @(x) isreal(x) && all(isfinite(x(:)))); + ip=iparser(ip,'addParamValue','z', [], @(x) isreal(x) && all(isfinite(x(:)))); + ip=iparser(ip,'addParamValue','int_method', 'CCD', @(x) ischar(x) && ... + ismember(x,{'CCD','grid','is_normal','is_t','hmc'})); + ip=iparser(ip,'addParamValue','predcf', [], @(x) isempty(x) || ... + isvector(x) && isreal(x) && all(isfinite(x)&x>0)); + ip=iparser(ip,'addParamValue','tstind', [], @(x) isempty(x) || ... + isvector(x) && isreal(x) && all(isfinite(x)&x>0)); + ip=iparser(ip,'addParamValue','rotate', true, @(x) islogical(x) && isscalar(x)); + ip=iparser(ip,'addParamValue','autoscale', 'on', @(x) (islogical(x) && isscalar(x))|| ... + ismember(x,{'on' 'off' 'full'})); + ip=iparser(ip,'addParamValue','validate', 1, @(x) ismember(x,[1 2])); + ip=iparser(ip,'addParamValue','threshold', 2.5, @(x) isscalar(x) && isreal(x) && ... + isfinite(x) && x>0); + ip=iparser(ip,'addParamValue','step_size', 1, @(x) isscalar(x) && isreal(x) && ... + isfinite(x) && x>0); + ip=iparser(ip,'addParamValue','t_nu', 4, @(x) isscalar(x) && isreal(x) && ... + isfinite(x) && x>=1); + ip=iparser(ip,'addParamValue','nsamples', 40, @(x) isscalar(x) && isreal(x) && ... + isfinite(x) && x>=1); + ip=iparser(ip,'addParamValue','repeat', 10, @(x) isscalar(x) && isreal(x) && ... + isfinite(x) && x>=1); + ip=iparser(ip,'addParamValue','f0', 1.1, @(x) isscalar(x) && isreal(x) && ... + isfinite(x) && x>0); + ip=iparser(ip,'addParamValue','qmc', true, @(x) islogical(x) && isscalar(x)); + ip=iparser(ip,'addParamValue','optimf', @fminscg, @(x) isa(x,'function_handle')||isempty(x)); + ip=iparser(ip,'addParamValue','opt_optim', [], @isstruct); + ip=iparser(ip,'addParamValue','opt_hmc', [], @isstruct); + ip=iparser(ip,'addParamValue','persistence_reset', 0, @(x) ~isempty(x) && isreal(x)); + ip=iparser(ip,'addParamValue','cache', 'off', @(x) ischar(x) && ismember(x,{'on','off'})); + ip=iparser(ip,'addParamValue','display', 'on', @(x) islogical(x) || isreal(x) || ... + ismember(x,{'on' 'off' 'iter'})); + if numel(varargin)==0 || isnumeric(varargin{1}) % inputParser should handle this, but it doesn't - ip.parse(gp, x, y, varargin{:}); + ip=iparser(ip,'parse',gp, x, y, varargin{:}); else - ip.parse(gp, x, y, [], varargin{:}); + ip=iparser(ip,'parse',gp, x, y, [], varargin{:}); end if isempty(gp) gp=gp_set(); @@ -206,7 +208,20 @@ optdefault.GradObj='on'; optdefault.LargeScale='off'; optdefault.Display='off'; - opt_optim=optimset(optdefault,opt_optim); + if exist('OCTAVE_VERSION','builtin') + % Octave optimset works differently from matlab version + if ~isfield(opt_optim, 'GradObj') || isempty(opt_optim.GradObj) + opt_optim.GradObj=optdefault.GradObj; + end + if ~isfield(opt_optim, 'LargeScale') || isempty(opt_optim.LargeScale) + opt_optim.LargeScale=optdefault.LargeScale; + end + if ~isfield(opt_optim, 'Display') || isempty(opt_optim.Display) + opt_optim.Display=optdefault.Display; + end + else + opt_optim=optimset(optdefault,opt_optim); + end tall=tic; @@ -258,7 +273,7 @@ end tic for i2 = 1:nParam - H(:,i2) = hessianMultiplication(w, H(:,i2)); + H(:,i2) = hessianMultiplication(w, H(:,i2), fh_g, gp, x, y, options); end et=toc; if ismember(opt.display,{'on','iter'}) && et > 1 @@ -269,7 +284,7 @@ fprintf(' IA-%s: computing Hessian using finite difference\n',int_method); end tic - H = hessian(w); + H = hessian(w, fh_e, fh_g, gp, x, y, options); et=toc; if ismember(opt.display,{'on','iter'}) && et > 1 fprintf(' Elapsed time %.2f seconds\n',et); @@ -706,7 +721,7 @@ end tic for i2 = 1:nParam - H(:,i2) = hessianMultiplication(w, H(:,i2)); + H(:,i2) = hessianMultiplication(w, H(:,i2), fh_g, gp, x, y, options); end et=toc; if ismember(opt.display,{'on','iter'}) && et > 1 @@ -717,7 +732,7 @@ fprintf(' IA-%s: computing Hessian using finite difference\n',int_method); end tic - H = hessian(w); + H = hessian(w, fh_e, fh_g, gp, x, y, options); et=toc; if ismember(opt.display,{'on','iter'}) && et > 1 fprintf(' Elapsed time %.2f seconds\n',et); @@ -1172,11 +1187,11 @@ end end - function H = hessian(w0) + function H = hessian(w0, fh_e, fh_g, gp, x, y, options) % Compute Hessian using finite differences, which is can be slow % if number of parameters is high - m = length(w); + m = length(w0); e0 = fh_e(w0,gp,x,y,options); delta = 1e-4; H = -1*ones(m,m); @@ -1238,10 +1253,9 @@ end end +end - function vv = hessianMultiplication(w0, v) - % Pearlmutter, B. A. (1994). Fast exact multiplication by the - % Hessian. Neural computation, 6(1), 147-160. + function vv = hessianMultiplication(w0, v, fh_g, gp, x, y, options) if size(w0) ~= size(v) v = v'; end @@ -1250,5 +1264,3 @@ g1 = fh_g(w0+rr*v, gp, x, y, options); vv = (g1 - g2) / (2*rr); end - -end diff --git a/gp/gp_install.m b/gp/gp_install.m index 904facf0..63e22ec2 100644 --- a/gp/gp_install.m +++ b/gp/gp_install.m @@ -1,6 +1,6 @@ function gp_install(suiteSparse) % Matlab function to compile all the c-files to mex in the GPstuff/gp -% folder. The function is called from GPstuff/matlab_install.m but +% folder. The function is called from GPstuff/gpstuff_install.m but % can be run separately also. % % If you want to use GPstuff without compactly supported (CS) @@ -35,9 +35,17 @@ function gp_install(suiteSparse) % Compile the 'dist_euclidean' mex-function if (~isempty (strfind (computer, '64'))) % 64-bit MATLAB - mex -O -g -largeArrayDims -output private/dist_euclidean linuxCsource/dist_euclidean.c + if ~exist('OCTAVE_VERSION','builtin') + mex -O -g -largeArrayDims -output private/dist_euclidean linuxCsource/dist_euclidean.c + else + mex --output private/dist_euclidean.mex linuxCsource/dist_euclidean.c + end else - mex -O -output private/dist_euclidean linuxCsource/dist_euclidean.c + if ~exist('OCTAVE_VERSION','builtin') + mex -O -output private/dist_euclidean linuxCsource/dist_euclidean.c + else + mex --output private/dist_euclidean.mex linuxCsource/dist_euclidean.c + end end if nargin<1 || isempty(suiteSparse) @@ -48,9 +56,21 @@ function gp_install(suiteSparse) % Compile the 'trcov' mex-function if (~isempty (strfind (computer, '64'))) % 64-bit MATLAB - mex -O -g -largeArrayDims -output private/trcov linuxCsource/trcov.c + if ~exist('OCTAVE_VERSION', 'builtin') + mex -O -g -largeArrayDims -output private/trcov linuxCsource/trcov.c + mex -O -g -largeArrayDims -output private/dist_euclidean linuxCsource/dist_euclidean.c + else + mex --output private/trcov.mex linuxCsource/trcov.c + mex --output private/dist_euclidean.mex linuxCsource/dist_euclidean.c + end else - mex -O -output private/trcov linuxCsource/trcov.c + if ~exist('OCTAVE_VERSION', 'builtin') + mex -O -output private/trcov linuxCsource/trcov.c + mex -O -output private/dist_euclidean linuxCsource/dist_euclidean.c + else + mex --output private/trcov.mex linuxCsource/trcov.c + mex --output private/dist_euclidean.mex linuxCsource/dist_euclidean.c + end end fprintf ('\n GP package succesfully compiled ') ; @@ -145,7 +165,6 @@ function gp_install(suiteSparse) % This is exceedingly ugly. The MATLAB mex command needs to be told where to % fine the LAPACK and BLAS libraries, which is a real portability nightmare. - if (pc) if (v < 6.5) % MATLAB 6.1 and earlier: use the version supplied here @@ -264,7 +283,7 @@ function gp_install(suiteSparse) 'Lib/subdomains', ... 'Lib/timing', ... 'Lib/util' } ; - + for i = 1:length (metis_src) metis_src {i} = [metis_path '/' metis_src{i}] ; end @@ -339,12 +358,18 @@ function gp_install(suiteSparse) if (have_metis) source = [metis_src source] ; end - - source = strrep(source, '../../', suiteSparse); - source = strrep(source, '../', cholmod_path); + if exist('OCTAVE_VERSION', 'builtin') + for i1=1:length(source) + source{i1} = strrep(source{i1}, '../../', suiteSparse); + source{i1} = strrep(source{i1}, '../', cholmod_path); + end + else + source = strrep(source, '../../', suiteSparse); + source = strrep(source, '../', cholmod_path); + end kk = 0 ; - + for f = source ff = strrep (f {1}, '/', filesep) ; slash = strfind (ff, filesep) ; @@ -355,15 +380,23 @@ function gp_install(suiteSparse) end o = ff (slash:end) ; obj = [obj ' ' o obj_extension] ; %#ok - s = sprintf ('mex %s -DDLONG -O %s -c %s.c', d, include, ff) ; + if ~exist('OCTAVE_VERSION','builtin') + s = sprintf ('mex %s -DDLONG -O %s -c %s.c', d, include, ff) ; + else + s = sprintf ('mex %s -DDLONG %s -c %s.c', d, include, ff) ; + end kk = do_cmd (s, kk, details) ; end - + if pc % compile mexFunctions mex_src = 'winCsource\spinv'; outpath = 'private\spinv'; - s = sprintf ('mex %s -DDLONG -O %s -output %s %s.c', d, include, outpath, mex_src) ; + if ~exist('OCTAVE_VERSION','builtin') + s = sprintf ('mex %s -DDLONG -O %s -output %s %s.c', d, include, outpath, mex_src) ; + else + s = sprintf ('mex %s -DDLONG %s -output %s %s.c', d, include, outpath, mex_src) ; + end s = [s obj]; s = [s ' ']; s = [s lapack]; @@ -372,7 +405,11 @@ function gp_install(suiteSparse) %mex_src = 'linuxCsource/ldlrowupdate'; mex_src = 'winCsource\ldlrowupdate'; outpath = 'private\ldlrowupdate'; - s = sprintf ('mex %s -DDLONG -O %s -output %s %s.c', d, include, outpath, mex_src) ; + if ~exist('OCTAVE_VERSION','builtin') + s = sprintf ('mex %s -DDLONG -O %s -output %s %s.c', d, include, outpath, mex_src) ; + else + s = sprintf ('mex %s -DDLONG %s -output %s %s.c', d, include, outpath, mex_src) ; + end s = [s obj]; s = [s ' ']; s = [s lapack]; @@ -381,7 +418,11 @@ function gp_install(suiteSparse) % compile mexFunctions mex_src = 'linuxCsource/spinv'; outpath = 'private/spinv'; - s = sprintf ('mex %s -DDLONG -O %s -output %s %s.c', d, include, outpath, mex_src) ; + if ~exist('OCTAVE_VERSION','builtin') + s = sprintf ('mex %s -DDLONG -O %s -output %s %s.c', d, include, outpath, mex_src) ; + else + s = sprintf ('mex %s -DDLONG %s -output %s %s.c', d, include, outpath, mex_src) ; + end s = [s obj]; s = [s ' ']; s = [s lapack]; @@ -390,15 +431,19 @@ function gp_install(suiteSparse) %mex_src = 'linuxCsource/ldlrowupdate'; mex_src = 'linuxCsource/ldlrowupdate'; outpath = 'private/ldlrowupdate'; - s = sprintf ('mex %s -DDLONG -O %s -output %s %s.c', d, include, outpath, mex_src) ; + if ~exist('OCTAVE_VERSION','builtin') + s = sprintf ('mex %s -DDLONG -O %s -output %s %s.c', d, include, outpath, mex_src) ; + else + s = sprintf ('mex %s -DDLONG %s -output %s %s.c', d, include, outpath, mex_src) ; + end s = [s obj]; s = [s ' ']; s = [s lapack]; kk = do_cmd (s, kk, details) ; end - % clean up s = ['delete ' obj] ; + do_cmd (s, kk, details) ; fprintf ('\nGP package succesfully compiled \n') ; end @@ -415,7 +460,18 @@ function gp_install(suiteSparse) kk = kk + 1 ; fprintf ('.') ; end -eval (s) ; +if ~exist('OCTAVE_VERSION','builtin') + eval (s) ; +else + tmp=regexp(s,'\S+','match'); + if strcmp(tmp{1},'delete') + for i=1:length(tmp)-1 + eval([tmp{1} ' ' tmp{i+1}]); + end + else + eval (s) ; + end +end %------------------------------------------------------------------------------- function v = getversion diff --git a/gp/gp_jpred.m b/gp/gp_jpred.m index 4026dd38..a1f05a2d 100644 --- a/gp/gp_jpred.m +++ b/gp/gp_jpred.m @@ -109,22 +109,20 @@ ip=inputParser; ip.FunctionName = 'GP_JPRED'; -ip.addRequired('gp',@isstruct); -ip.addRequired('x', @(x) ~isempty(x) && isreal(x) && all(isfinite(x(:)))) -ip.addRequired('y', @(x) ~isempty(x) && isreal(x) && all(isfinite(x(:)))) -ip.addOptional('xt', [], @(x) isempty(x) || (isreal(x) && all(isfinite(x(:))))) -ip.addParamValue('yt', [], @(x) isreal(x) && all(isfinite(x(:)))) -ip.addParamValue('predcf', [], @(x) isempty(x) || ... - isvector(x) && isreal(x) && all(isfinite(x)&x>0)) -ip.addParamValue('tstind', [], @(x) isempty(x) || iscell(x) ||... - (isvector(x) && isreal(x) && all(isfinite(x)&x>0))) -ip.addParamValue('fcorr', 'off', @(x) ismember(x, {'off', 'fact', 'cm2', 'on'})) - +ip=iparser(ip,'addRequired','gp',@isstruct); +ip=iparser(ip,'addRequired','x', @(x) ~isempty(x) && isreal(x) && all(isfinite(x(:)))); +ip=iparser(ip,'addRequired','y', @(x) ~isempty(x) && isreal(x) && all(isfinite(x(:)))); +ip=iparser(ip,'addOptional','xt', [], @(x) isempty(x) || (isreal(x) && all(isfinite(x(:))))); +ip=iparser(ip,'addParamValue','yt', [], @(x) isreal(x) && all(isfinite(x(:)))); +ip=iparser(ip,'addParamValue','predcf', [], @(x) isempty(x) || ... + isvector(x) && isreal(x) && all(isfinite(x)&x>0)); +ip=iparser(ip,'addParamValue','tstind', [], @(x) isempty(x) || iscell(x) ||... + (isvector(x) && isreal(x) && all(isfinite(x)&x>0))); +ip=iparser(ip,'addParamValue','fcorr', 'off', @(x) ismember(x, {'off', 'fact', 'cm2', 'on'})); % Add z and zt for compatibility although not used -ip.addParamValue('z', [], @(x) isreal(x) && all(isfinite(x(:)))) -ip.addParamValue('zt', [], @(x) isreal(x) && all(isfinite(x(:)))) - -ip.parse(gp, x, y, varargin{:}); +ip=iparser(ip,'addParamValue','z', [], @(x) isreal(x) && all(isfinite(x(:)))) +ip=iparser(ip,'addParamValue','zt', [], @(x) isreal(x) && all(isfinite(x(:)))) +ip=iparser(ip,'parse',gp, x, y, varargin{:}); xt=ip.Results.xt; yt=ip.Results.yt; predcf=ip.Results.predcf; diff --git a/gp/gp_kfcv.m b/gp/gp_kfcv.m index f1346534..820181f0 100644 --- a/gp/gp_kfcv.m +++ b/gp/gp_kfcv.m @@ -204,27 +204,27 @@ ip=inputParser; ip.FunctionName = 'GP_KFCV'; - ip.addRequired('gp',@(x) isstruct(x) || iscell(x)); - ip.addRequired('x', @(x) ~isempty(x) && isreal(x) && all(isfinite(x(:)))) - ip.addRequired('y', @(x) ~isempty(x) && isreal(x) && all(isfinite(x(:)))) - ip.addParamValue('z', [], @(x) isreal(x) && all(isfinite(x(:)))) - ip.addParamValue('yt', [], @(x) isreal(x) && all(isfinite(x(:)))) - ip.addParamValue('inf_method', 'MAP', @(x) ... - ismember(x,{'MAP' 'LOO' 'KFCV' 'WAIC' 'WAICV' 'WAICG' 'MCMC' 'IA' 'fixed'})) - ip.addParamValue('optimf', @fminscg, @(x) isa(x,'function_handle')) - ip.addParamValue('opt', struct(), @isstruct) - ip.addParamValue('pred','f+lp+y',@ischar) - ip.addParamValue('k', 10, @(x) isreal(x) && isscalar(x) && isfinite(x) && x>0) - ip.addParamValue('rstream', 1, @(x) isreal(x) && isscalar(x) && isfinite(x) && x>0) - ip.addParamValue('trindex', [], @(x) isempty(x) || iscell(x)) - ip.addParamValue('tstindex', [], @(x) isempty(x) || iscell(x)) - ip.addParamValue('display', 'on', @(x) islogical(x) || ... - ismember(x,{'on' 'off' 'iter' 'fold'})) - ip.addParamValue('save_results', false, @(x) islogical(x)) - ip.addParamValue('folder', [], @(x) ischar(x) ) - ip.addParamValue('fcorr', 'off', @(x) ismember(x, {'off', 'fact', 'cm2', 'on', 'lr'})); - ip.addParamValue('joint', 'off', @(x) ismember(x, {'off', 'on'})); - ip.parse(gp, x, y, varargin{:}); + ip=iparser(ip,'addRequired','gp',@(x) isstruct(x) || iscell(x)); + ip=iparser(ip,'addRequired','x', @(x) ~isempty(x) && isreal(x) && all(isfinite(x(:)))); + ip=iparser(ip,'addRequired','y', @(x) ~isempty(x) && isreal(x) && all(isfinite(x(:)))); + ip=iparser(ip,'addParamValue','z', [], @(x) isreal(x) && all(isfinite(x(:)))); + ip=iparser(ip,'addParamValue','yt', [], @(x) isreal(x) && all(isfinite(x(:)))); + ip=iparser(ip,'addParamValue','inf_method', 'MAP', @(x) ... + ismember(x,{'MAP' 'LOO' 'KFCV' 'WAIC' 'WAICV' 'WAICG' 'MCMC' 'IA' 'fixed'})); + ip=iparser(ip,'addParamValue','optimf', @fminscg, @(x) isa(x,'function_handle')); + ip=iparser(ip,'addParamValue','opt', struct(), @isstruct); + ip=iparser(ip,'addParamValue','pred','f+lp+y',@ischar); + ip=iparser(ip,'addParamValue','k', 10, @(x) isreal(x) && isscalar(x) && isfinite(x) && x>0); + ip=iparser(ip,'addParamValue','rstream', 1, @(x) isreal(x) && isscalar(x) && isfinite(x) && x>0); + ip=iparser(ip,'addParamValue','trindex', [], @(x) isempty(x) || iscell(x)); + ip=iparser(ip,'addParamValue','tstindex', [], @(x) isempty(x) || iscell(x)); + ip=iparser(ip,'addParamValue','display', 'on', @(x) islogical(x) || ... + ismember(x,{'on' 'off' 'iter' 'fold'})); + ip=iparser(ip,'addParamValue','save_results', false, @(x) islogical(x)); + ip=iparser(ip,'addParamValue','folder', [], @(x) ischar(x) ); + ip=iparser(ip,'addParamValue','fcorr', 'off', @(x) ismember(x, {'off', 'fact', 'cm2', 'on', 'lr'})); + ip=iparser(ip,'addParamValue','joint', 'off', @(x) ismember(x, {'off', 'on'})); + ip=iparser(ip,'parse',gp, x, y, varargin{:}); z=ip.Results.z; yt=ip.Results.yt; inf_method=ip.Results.inf_method; diff --git a/gp/gp_kfcv_cdf.m b/gp/gp_kfcv_cdf.m index 4fb2900b..c636cb42 100644 --- a/gp/gp_kfcv_cdf.m +++ b/gp/gp_kfcv_cdf.m @@ -63,22 +63,22 @@ ip=inputParser; ip.FunctionName = 'GP_KFCV'; -ip.addRequired('gp',@(x) isstruct(x) || iscell(x)); -ip.addRequired('x', @(x) ~isempty(x) && isreal(x) && all(isfinite(x(:)))) -ip.addRequired('y', @(x) ~isempty(x) && isreal(x) && all(isfinite(x(:)))) -ip.addParamValue('z', [], @(x) isreal(x) && all(isfinite(x(:)))) -ip.addParamValue('yt', [], @(x) isreal(x) && all(isfinite(x(:)))) -ip.addParamValue('inf_method', 'MAP', @(x) ... - ismember(x,{'MAP' 'LOO' 'KFCV' 'WAIC' 'WAICV' 'WAICG' 'MCMC' 'IA' 'fixed'})) -ip.addParamValue('optimf', @fminscg, @(x) isa(x,'function_handle')) -ip.addParamValue('opt', struct(), @isstruct) -ip.addParamValue('k', 10, @(x) isreal(x) && isscalar(x) && isfinite(x) && x>0) -ip.addParamValue('rstream', 1, @(x) isreal(x) && isscalar(x) && isfinite(x) && x>0) -ip.addParamValue('trindex', [], @(x) isempty(x) || iscell(x)) -ip.addParamValue('tstindex', [], @(x) isempty(x) || iscell(x)) -ip.addParamValue('display', 'on', @(x) islogical(x) || ... - ismember(x,{'iter' 'fold'})) -ip.parse(gp, x, y, varargin{:}); +ip=iparser(ip,'addRequired','gp',@(x) isstruct(x) || iscell(x)); +ip=iparser(ip,'addRequired','x', @(x) ~isempty(x) && isreal(x) && all(isfinite(x(:)))); +ip=iparser(ip,'addRequired','y', @(x) ~isempty(x) && isreal(x) && all(isfinite(x(:)))); +ip=iparser(ip,'addParamValue','z', [], @(x) isreal(x) && all(isfinite(x(:)))); +ip=iparser(ip,'addParamValue','yt', [], @(x) isreal(x) && all(isfinite(x(:)))); +ip=iparser(ip,'addParamValue','inf_method', 'MAP', @(x) ... + ismember(x,{'MAP' 'LOO' 'KFCV' 'WAIC' 'WAICV' 'WAICG' 'MCMC' 'IA' 'fixed'})); +ip=iparser(ip,'addParamValue','optimf', @fminscg, @(x) isa(x,'function_handle')); +ip=iparser(ip,'addParamValue','opt', struct(), @isstruct); +ip=iparser(ip,'addParamValue','k', 10, @(x) isreal(x) && isscalar(x) && isfinite(x) && x>0); +ip=iparser(ip,'addParamValue','rstream', 1, @(x) isreal(x) && isscalar(x) && isfinite(x) && x>0); +ip=iparser(ip,'addParamValue','trindex', [], @(x) isempty(x) || iscell(x)); +ip=iparser(ip,'addParamValue','tstindex', [], @(x) isempty(x) || iscell(x)); +ip=iparser(ip,'addParamValue','display', 'on', @(x) islogical(x) || ... + ismember(x,{'on' 'iter' 'fold'})); +ip=iparser(ip,'parse',gp, x, y, varargin{:}); z=ip.Results.z; yt=ip.Results.yt; inf_method=ip.Results.inf_method; @@ -91,6 +91,7 @@ display = ip.Results.display; if isequal(display,'fold');display='iter';end + [n,nin] = size(x); gp_orig = gp; diff --git a/gp/gp_kfcve.m b/gp/gp_kfcve.m index da491395..e7b39eee 100644 --- a/gp/gp_kfcve.m +++ b/gp/gp_kfcve.m @@ -38,17 +38,17 @@ ip=inputParser; ip.FunctionName = 'GPEP_KFCVE'; -ip.addRequired('w', @(x) isempty(x) || ... +ip=iparser(ip,'addRequired','w', @(x) isempty(x) || ... isvector(x) && isreal(x) && all(isfinite(x))); -ip.addRequired('gp', @(x) isstruct(x) || iscell(x)); -ip.addRequired('x', @(x) ~isempty(x) && isreal(x) && all(isfinite(x(:)))) -ip.addRequired('y', @(x) ~isempty(x) && isreal(x) && all(isfinite(x(:)))) -ip.addParamValue('z', [], @(x) isreal(x) && all(isfinite(x(:)))) -ip.addParamValue('k', 10, @(x) isreal(x) && isscalar(x) && isfinite(x) && x>0) -ip.addParamValue('rstream', 1, @(x) isreal(x) && isscalar(x) && isfinite(x) && x>0) -ip.addParamValue('trindex', [], @(x) ~isempty(x) || iscell(x)) -ip.addParamValue('tstindex', [], @(x) ~isempty(x) || iscell(x)) -ip.parse(w, gp, x, y, varargin{:}); +ip=iparser(ip,'addRequired','gp', @(x) isstruct(x) || iscell(x)); +ip=iparser(ip,'addRequired','x', @(x) ~isempty(x) && isreal(x) && all(isfinite(x(:)))); +ip=iparser(ip,'addRequired','y', @(x) ~isempty(x) && isreal(x) && all(isfinite(x(:)))); +ip=iparser(ip,'addParamValue','z', [], @(x) isreal(x) && all(isfinite(x(:)))); +ip=iparser(ip,'addParamValue','k', 10, @(x) isreal(x) && isscalar(x) && isfinite(x) && x>0); +ip=iparser(ip,'addParamValue','rstream', 1, @(x) isreal(x) && isscalar(x) && isfinite(x) && x>0); +ip=iparser(ip,'addParamValue','trindex', [], @(x) ~isempty(x) || iscell(x)); +ip=iparser(ip,'addParamValue','tstindex', [], @(x) ~isempty(x) || iscell(x)); +ip=iparser(ip,'parse',w, gp, x, y, varargin{:}); k=ip.Results.k; rstream=ip.Results.rstream; trindex=ip.Results.trindex; diff --git a/gp/gp_looe.m b/gp/gp_looe.m index 4b827394..31d40702 100644 --- a/gp/gp_looe.m +++ b/gp/gp_looe.m @@ -28,11 +28,11 @@ % Nothing to parse, but check the arguments anyway ip=inputParser; ip.FunctionName = 'GP_LOOE'; -ip.addRequired('w', @(x) isvector(x) && isreal(x) && all(isfinite(x))); -ip.addRequired('gp',@isstruct); -ip.addRequired('x', @(x) ~isempty(x) && isreal(x) && all(isfinite(x(:)))) -ip.addRequired('y', @(x) ~isempty(x) && isreal(x) && all(isfinite(x(:)))) -ip.parse(w, gp, x, y); +ip=iparser(ip,'addRequired','w', @(x) isvector(x) && isreal(x) && all(isfinite(x))); +ip=iparser(ip,'addRequired','gp',@isstruct); +ip=iparser(ip,'addRequired','x', @(x) ~isempty(x) && isreal(x) && all(isfinite(x(:)))); +ip=iparser(ip,'addRequired','y', @(x) ~isempty(x) && isreal(x) && all(isfinite(x(:)))); +ip=iparser(ip,'parse',w, gp, x, y); if isfield(gp,'mean') & ~isempty(gp.mean.meanFuncs) error('GP_LOOE: Mean functions not yet supported'); diff --git a/gp/gp_looeg.m b/gp/gp_looeg.m index e45f1977..62908df4 100644 --- a/gp/gp_looeg.m +++ b/gp/gp_looeg.m @@ -37,11 +37,11 @@ % Nothing to parse, but check the arguments anyway ip=inputParser; ip.FunctionName = 'GP_LOOEG'; -ip.addRequired('w', @(x) isvector(x) && isreal(x) && all(isfinite(x))); -ip.addRequired('gp',@isstruct); -ip.addRequired('x', @(x) ~isempty(x) && isreal(x) && all(isfinite(x(:)))) -ip.addRequired('y', @(x) ~isempty(x) && isreal(x) && all(isfinite(x(:)))) -ip.parse(w, gp, x, y); +ip=iparser(ip,'addRequired','w', @(x) isvector(x) && isreal(x) && all(isfinite(x))); +ip=iparser(ip,'addRequired','gp',@isstruct); +ip=iparser(ip,'addRequired','x', @(x) ~isempty(x) && isreal(x) && all(isfinite(x(:)))); +ip=iparser(ip,'addRequired','y', @(x) ~isempty(x) && isreal(x) && all(isfinite(x(:)))); +ip=iparser(ip,'parse',w, gp, x, y); if isfield(gp,'mean') & ~isempty(gp.mean.meanFuncs) error('GP_LOOEG: Mean functions not yet supported'); diff --git a/gp/gp_loog.m b/gp/gp_loog.m index 28d45c4b..b9bf93f7 100644 --- a/gp/gp_loog.m +++ b/gp/gp_loog.m @@ -27,11 +27,11 @@ % Nothing to parse, but check the arguments anyway ip=inputParser; ip.FunctionName = 'GP_LOOG'; -ip.addRequired('w', @(x) isvector(x) && isreal(x) && all(isfinite(x))); -ip.addRequired('gp',@isstruct); -ip.addRequired('x', @(x) ~isempty(x) && isreal(x) && all(isfinite(x(:)))) -ip.addRequired('y', @(x) ~isempty(x) && isreal(x) && all(isfinite(x(:)))) -ip.parse(w, gp, x, y); +ip=iparser(ip,'addRequired','w', @(x) isvector(x) && isreal(x) && all(isfinite(x))); +ip=iparser(ip,'addRequired','gp',@isstruct); +ip=iparser(ip,'addRequired','x', @(x) ~isempty(x) && isreal(x) && all(isfinite(x(:)))); +ip=iparser(ip,'addRequired','y', @(x) ~isempty(x) && isreal(x) && all(isfinite(x(:)))); +ip=iparser(ip,'parse',w, gp, x, y); if isfield(gp,'mean') & ~isempty(gp.mean.meanFuncs) error('GP_LOOE: Mean functions not yet supported'); diff --git a/gp/gp_loopred.m b/gp/gp_loopred.m index 308774c7..abc36dc9 100644 --- a/gp/gp_loopred.m +++ b/gp/gp_loopred.m @@ -94,10 +94,10 @@ % Nothing to parse, but check the arguments anyway ip=inputParser; ip.FunctionName = 'GP_LOOPRED'; -ip.addRequired('gp',@isstruct); -ip.addRequired('x', @(x) ~isempty(x) && isreal(x) && all(isfinite(x(:)))) -ip.addRequired('y', @(x) ~isempty(x) && isreal(x) && all(isfinite(x(:)))) -ip.parse(gp, x, y); +ip=iparser(ip,'addRequired','gp',@isstruct); +ip=iparser(ip,'addRequired','x', @(x) ~isempty(x) && isreal(x) && all(isfinite(x(:)))); +ip=iparser(ip,'addRequired','y', @(x) ~isempty(x) && isreal(x) && all(isfinite(x(:)))); +ip=iparser(ip,'parse',gp, x, y); if isfield(gp,'meanf') && ~isempty(gp.meanf) error('GP_LOOPRED: Mean functions not yet supported'); diff --git a/gp/gp_mc.m b/gp/gp_mc.m index a2bde520..b7a01d98 100755 --- a/gp/gp_mc.m +++ b/gp/gp_mc.m @@ -79,23 +79,23 @@ ip=inputParser; ip.FunctionName = 'GP_MC'; - ip.addRequired('gp',@isstruct); - ip.addRequired('x', @(x) ~isempty(x) && isreal(x) && all(isfinite(x(:)))) - ip.addRequired('y', @(x) ~isempty(x) && isreal(x) && all(isfinite(x(:)))) - ip.addParamValue('z', [], @(x) isreal(x) && all(isfinite(x(:)))) - ip.addParamValue('nsamples', 1, @(x) isreal(x) && all(isfinite(x(:)))) - ip.addParamValue('repeat', 1, @(x) isreal(x) && all(isfinite(x(:)))) - ip.addParamValue('display', 1, @(x) isreal(x) && all(isfinite(x(:)))) - ip.addParamValue('record',[], @(x) isstruct(x) || isempty(x)); - ip.addParamValue('hmc_opt', [], @(x) isstruct(x) || isempty(x)); - ip.addParamValue('sls_opt', [], @(x) isstruct(x) || isempty(x)); - ip.addParamValue('ssls_opt', [], @(x) isstruct(x) || isempty(x)); - ip.addParamValue('latent_opt', [], @(x) isstruct(x) || isempty(x)); - ip.addParamValue('lik_hmc_opt', [], @(x) isstruct(x) || isempty(x)); - ip.addParamValue('lik_sls_opt', [], @(x) isstruct(x) || isempty(x)); - ip.addParamValue('lik_gibbs_opt', [], @(x) isstruct(x) || isempty(x)); - ip.addParamValue('persistence_reset', 0, @(x) ~isempty(x) && isreal(x)); - ip.parse(gp, x, y, varargin{:}); + ip=iparser(ip,'addRequired','gp',@isstruct); + ip=iparser(ip,'addRequired','x', @(x) ~isempty(x) && isreal(x) && all(isfinite(x(:)))); + ip=iparser(ip,'addRequired','y', @(x) ~isempty(x) && isreal(x) && all(isfinite(x(:)))); + ip=iparser(ip,'addParamValue','z', [], @(x) isreal(x) && all(isfinite(x(:)))); + ip=iparser(ip,'addParamValue','nsamples', 1, @(x) isreal(x) && all(isfinite(x(:)))); + ip=iparser(ip,'addParamValue','repeat', 1, @(x) isreal(x) && all(isfinite(x(:)))); + ip=iparser(ip,'addParamValue','display', 1, @(x) isreal(x) && all(isfinite(x(:)))); + ip=iparser(ip,'addParamValue','record',[], @(x) isstruct(x) || isempty(x)); + ip=iparser(ip,'addParamValue','hmc_opt', [], @(x) isstruct(x) || isempty(x)); + ip=iparser(ip,'addParamValue','sls_opt', [], @(x) isstruct(x) || isempty(x)); + ip=iparser(ip,'addParamValue','ssls_opt', [], @(x) isstruct(x) || isempty(x)); + ip=iparser(ip,'addParamValue','latent_opt', [], @(x) isstruct(x) || isempty(x)); + ip=iparser(ip,'addParamValue','lik_hmc_opt', [], @(x) isstruct(x) || isempty(x)); + ip=iparser(ip,'addParamValue','lik_sls_opt', [], @(x) isstruct(x) || isempty(x)); + ip=iparser(ip,'addParamValue','lik_gibbs_opt', [], @(x) isstruct(x) || isempty(x)); + ip=iparser(ip,'addParamValue','persistence_reset', 0, @(x) ~isempty(x) && isreal(x)); + ip=iparser(ip,'parse',gp, x, y, varargin{:}); z=ip.Results.z; opt.nsamples=ip.Results.nsamples; opt.repeat=ip.Results.repeat; @@ -198,7 +198,7 @@ % Initialize record if isempty(record) % No old record - record=recappend(); + [record,ri,lrej,indrej,hmcrej,lik_hmcrej]=recappend([],gp, x, y, z, opt); else ri=size(record.etr,1); end @@ -471,7 +471,7 @@ % --- Set record ------- ri=ri+1; - record=recappend(record); + record=recappend(record, gp, x, y, z, opt, ri, hmcrej, lik_hmcrej, lrej); % Display some statistics THIS COULD BE DONE NICER ALSO... if opt.display && rem(ri,opt.display)==0 @@ -495,9 +495,10 @@ fprintf('\n'); end end - +end + %------------------------ -function record = recappend(record) +function [record,ri,lrej,indrej,hmcrej,lik_hmcrej] = recappend(record, gp, x, y, z, opt, ri, hmcrej, lik_hmcrej, lrej) % RECAPPEND - Record append % Description % RECORD = RECAPPEND(RECORD, RI, GP, P, T, PP, TT, REJS, U) takes @@ -508,7 +509,7 @@ ncf = length(gp.cf); - if nargin == 0 % Initialize record structure + if isempty(record) % Initialize record structure record=gp; record.type = gp.type; record.lik = gp.lik; @@ -715,4 +716,3 @@ end end -end diff --git a/gp/gp_monotonic.m b/gp/gp_monotonic.m index 95bf901a..584c8ffa 100644 --- a/gp/gp_monotonic.m +++ b/gp/gp_monotonic.m @@ -66,21 +66,21 @@ % parse inputs ip=inputParser; ip.FunctionName = 'GP_MONOTONIC'; -ip.addRequired('gp',@isstruct); -ip.addOptional('x', [], @(x) isnumeric(x) && isreal(x) && all(isfinite(x(:)))) -ip.addOptional('y', [], @(x) isnumeric(x) && isreal(x) && all(isfinite(x(:)))) -ip.addParamValue('z', [], @(x) isnumeric(x) && isreal(x) && all(isfinite(x(:)))) -ip.addParamValue('nu', 1e-6, @(x) isreal(x) && isscalar(x) && (x>0)) -ip.addParamValue('nv', [], @(x) isreal(x) && isscalar(x)) -ip.addParamValue('init', 'sample', @(x) ismember(x, {'sample', 'kmeans'})); -ip.addParamValue('xv', [], @(x) isnumeric(x) && isreal(x) && all(isfinite(x(:)))) -ip.addParamValue('force', true, @(x) islogical(x)); -ip.addParamValue('display', true, @(x) islogical(x)); -ip.addParamValue('optimf', @fminscg, @(x) isa(x,'function_handle')) -ip.addParamValue('opt', [], @isstruct) -ip.addParamValue('optimize', 'off', @(x) ismember(x, {'on', 'off'})); -ip.addParamValue('nvd', [], @(x) isreal(x)); -ip.parse(gp, varargin{:}); +ip=iparser(ip,'addRequired','gp',@isstruct); +ip=iparser(ip,'addOptional','x', [], @(x) isnumeric(x) && isreal(x) && all(isfinite(x(:)))); +ip=iparser(ip,'addOptional','y', [], @(x) isnumeric(x) && isreal(x) && all(isfinite(x(:)))); +ip=iparser(ip,'addParamValue','z', [], @(x) isnumeric(x) && isreal(x) && all(isfinite(x(:)))); +ip=iparser(ip,'addParamValue','nu', 1e-6, @(x) isreal(x) && isscalar(x) && (x>0)); +ip=iparser(ip,'addParamValue','nv', [], @(x) isreal(x) && isscalar(x)); +ip=iparser(ip,'addParamValue','init', 'sample', @(x) ismember(x, {'sample', 'kmeans'})); +ip=iparser(ip,'addParamValue','xv', [], @(x) isnumeric(x) && isreal(x) && all(isfinite(x(:)))); +ip=iparser(ip,'addParamValue','force', true, @(x) islogical(x)); +ip=iparser(ip,'addParamValue','display', true, @(x) islogical(x)); +ip=iparser(ip,'addParamValue','optimf', @fminscg, @(x) isa(x,'function_handle')); +ip=iparser(ip,'addParamValue','opt', [], @isstruct); +ip=iparser(ip,'addParamValue','optimize', 'off', @(x) ismember(x, {'on', 'off'})); +ip=iparser(ip,'addParamValue','nvd', [], @(x) isreal(x)); +ip=iparser(ip,'parse',gp, varargin{:}); x=ip.Results.x; y=ip.Results.y; z=ip.Results.z; @@ -143,14 +143,10 @@ end gp.latent_opt.init_prev='off'; gp.latent_opt.maxiter=100; -gpep_e('clearcache',gp); if isequal(optimize, 'on') % Optimize the parameters gp=gp_optim(gp,x,y,'opt',opt, 'z', z, 'optimf', optimf); end - - - if force % Predict gradients at the training points n=size(x,1); diff --git a/gp/gp_optim.m b/gp/gp_optim.m index 827b934e..21725ba3 100644 --- a/gp/gp_optim.m +++ b/gp/gp_optim.m @@ -38,15 +38,15 @@ ip=inputParser; ip.FunctionName = 'GP_OPTIM'; -ip.addRequired('gp',@(x) isstruct(x) || isempty(x)); -ip.addRequired('x', @(x) ~isempty(x) && isreal(x) && all(isfinite(x(:)))) -ip.addRequired('y', @(x) ~isempty(x) && isreal(x) && all(isfinite(x(:)))) -ip.addParamValue('z', [], @(x) isreal(x) && all(isfinite(x(:)))) -ip.addParamValue('optimf', @fminscg, @(x) isa(x,'function_handle')) -ip.addParamValue('opt', [], @isstruct) -ip.addParamValue('loss', 'e', @(x) ismember(lower(x),{'e', 'loo', 'kfcv', 'waic' 'waic' 'waicv' 'waicg'})) -ip.addParamValue('k', 10, @(x) isreal(x) && isscalar(x) && isfinite(x) && x>0) -ip.parse(gp, x, y, varargin{:}); +ip=iparser(ip,'addRequired','gp',@(x) isstruct(x) || isempty(x)); +ip=iparser(ip,'addRequired','x', @(x) ~isempty(x) && isreal(x) && all(isfinite(x(:)))); +ip=iparser(ip,'addRequired','y', @(x) ~isempty(x) && isreal(x) && all(isfinite(x(:)))); +ip=iparser(ip,'addParamValue','z', [], @(x) isreal(x) && all(isfinite(x(:)))); +ip=iparser(ip,'addParamValue','optimf', @fminscg, @(x) isa(x,'function_handle')); +ip=iparser(ip,'addParamValue','opt', [], @isstruct); +ip=iparser(ip,'addParamValue','loss', 'e', @(x) ismember(lower(x),{'e', 'loo', 'kfcv', 'waic' 'waic' 'waicv' 'waicg'})); +ip=iparser(ip,'addParamValue','k', 10, @(x) isreal(x) && isscalar(x) && isfinite(x) && x>0); +ip=iparser(ip,'parse',gp, x, y, varargin{:}); if isempty(gp) gp=gp_set(); end @@ -150,7 +150,18 @@ function opt=setOpt(optdefault, opt) % Set default options - opttmp=optimset(optdefault,opt); + if ~exist('OCTAVE_VERSION','builtin') + opttmp=optimset(optdefault,opt); + else + opttmp=opt; + names=fieldnames(optdefault); + for i=1:length(names) + if ~isfield(opt,names{i}) + opttmp.(names{i})=optdefault.(names{i}); + end + end + + end % Set some additional options for @fminscg if isfield(opt,'lambda') diff --git a/gp/gp_peff.m b/gp/gp_peff.m index 6b5446fd..25a36473 100644 --- a/gp/gp_peff.m +++ b/gp/gp_peff.m @@ -53,11 +53,11 @@ ip=inputParser; ip.FunctionName = 'GP_PEFF'; - ip.addRequired('gp',@isstruct); - ip.addRequired('x', @(x) ~isempty(x) && isreal(x) && all(isfinite(x(:)))) - ip.addRequired('y', @(x) ~isempty(x) && isreal(x) && all(isfinite(x(:)))) - ip.addParamValue('z', [], @(x) isreal(x) && all(isfinite(x(:)))) - ip.parse(gp, x, y, varargin{:}); + ip=iparser(ip,'addRequired','gp',@isstruct); + ip=iparser(ip,'addRequired','x', @(x) ~isempty(x) && isreal(x) && all(isfinite(x(:)))); + ip=iparser(ip,'addRequired','y', @(x) ~isempty(x) && isreal(x) && all(isfinite(x(:)))); + ip=iparser(ip,'addParamValue','z', [], @(x) isreal(x) && all(isfinite(x(:)))); + ip=iparser(ip,'parse',gp, x, y, varargin{:}); z=ip.Results.z; tn = size(x,1); diff --git a/gp/gp_plot.m b/gp/gp_plot.m index ddfdce92..0c29b185 100644 --- a/gp/gp_plot.m +++ b/gp/gp_plot.m @@ -81,26 +81,27 @@ ip=inputParser; ip.FunctionName = 'GP_PLOT'; -ip.addRequired('gp',@(x) isstruct(x) || iscell(x)); -ip.addRequired('x', @(x) ~isempty(x) && isreal(x) && all(isfinite(x(:)))) -ip.addRequired('y', @(x) ~isempty(x) && isreal(x) && all(isfinite(x(:)))) -ip.addOptional('xt', [], @(x) isempty(x) || (isreal(x) && all(isfinite(x(:))))) -ip.addParamValue('zt', [], @(x) isreal(x) && all(isfinite(x(:)))) -ip.addParamValue('z', [], @(x) isreal(x) && all(isfinite(x(:)))) -ip.addParamValue('xlabels', [], @(x) isempty(x) || iscell(x)); -ip.addParamValue('predcf', [], @(x) isempty(x) || ... - isvector(x) && isreal(x) && all(isfinite(x)&x>=0)) -ip.addParamValue('tstind', [], @(x) isempty(x) || iscell(x) ||... - (isvector(x) && isreal(x) && all(isfinite(x)&x>0))) -ip.addParamValue('fcorr', 'off', @(x) ismember(x, {'off', 'fact', 'cm2', 'on'})); -ip.addParamValue('tr', 0.25, @(x) isreal(x) && all(isfinite(x(:)))) -ip.addParamValue('target', 'mu', @(x) ismember(x,{'f','mu'})) -ip.addParamValue('normdata', struct(), @(x) isempty(x) || isstruct(x)) + +ip=iparser(ip,'addRequired','gp',@(x) isstruct(x) || iscell(x)); +ip=iparser(ip,'addRequired','x', @(x) ~isempty(x) && isreal(x) && all(isfinite(x(:)))); +ip=iparser(ip,'addRequired','y', @(x) ~isempty(x) && isreal(x) && all(isfinite(x(:)))); +ip=iparser(ip,'addOptional','xt', [], @(x) isempty(x) || (isreal(x) && all(isfinite(x(:))))); +ip=iparser(ip,'addParamValue','zt', [], @(x) isreal(x) && all(isfinite(x(:)))); +ip=iparser(ip,'addParamValue','z', [], @(x) isreal(x) && all(isfinite(x(:)))); +ip=iparser(ip,'addParamValue','predcf', [], @(x) isempty(x) || ... + isvector(x) && isreal(x) && all(isfinite(x)&x>=0)); +ip=iparser(ip,'addParamValue','tstind', [], @(x) isempty(x) || iscell(x) ||... + (isvector(x) && isreal(x) && all(isfinite(x)&x>0))); +ip=iparser(ip,'addParamValue','fcorr', 'off', @(x) ismember(x, {'off', 'fact', 'cm2', 'on'})); +ip=iparser(ip,'addParamValue','tr', 0.25, @(x) isreal(x) && all(isfinite(x(:)))); +ip=iparser(ip,'addParamValue','target', 'mu', @(x) ismember(x,{'f','mu'})); +ip=iparser(ip,'addParamValue','normdata', struct(), @(x) isempty(x) || isstruct(x)); + if numel(varargin)==0 || isnumeric(varargin{1}) % inputParser should handle this, but it doesn't - ip.parse(gp, x, y, varargin{:}); + ip=iparser(ip,'parse',gp, x, y, varargin{:}); else - ip.parse(gp, x, y, [], varargin{:}); + ip=iparser(ip,'parse',gp, x, y, [], varargin{:}); end xt=ip.Results.xt; zt=ip.Results.zt; @@ -146,13 +147,13 @@ nd=ip.Results.normdata; ipnd=inputParser; ipnd.FunctionName = 'normdata'; -ipnd.addParamValue('xmean',0,@(x) isempty(x) || (isreal(x) && all(isfinite(x(:))))); -ipnd.addParamValue('xstd',1,@(x) isempty(x) || (isreal(x) && all(isfinite(x(:))))); -ipnd.addParamValue('xlog',0,@(x) isempty(x) || (isreal(x) && all(isfinite(x(:))))); -ipnd.addParamValue('ymean',0,@(x) isempty(x) || (isreal(x) && all(isfinite(x(:))))); -ipnd.addParamValue('ystd',1,@(x) isempty(x) || (isreal(x) && all(isfinite(x(:))))); -ipnd.addParamValue('ylog',0,@(x) isempty(x) || (isreal(x) && all(isfinite(x(:))))); -ipnd.parse(nd); +ipnd=iparser(ipnd,'addParamValue','xmean',0,@(x) isempty(x) || (isreal(x) && all(isfinite(x(:))))); +ipnd=iparser(ipnd,'addParamValue','xstd',1,@(x) isempty(x) || (isreal(x) && all(isfinite(x(:))))); +ipnd=iparser(ipnd,'addParamValue','xlog',0,@(x) isempty(x) || (isreal(x) && all(isfinite(x(:))))); +ipnd=iparser(ipnd,'addParamValue','ymean',0,@(x) isempty(x) || (isreal(x) && all(isfinite(x(:))))); +ipnd=iparser(ipnd,'addParamValue','ystd',1,@(x) isempty(x) || (isreal(x) && all(isfinite(x(:))))); +ipnd=iparser(ipnd,'addParamValue','ylog',0,@(x) isempty(x) || (isreal(x) && all(isfinite(x(:))))); +ipnd=iparser(ipnd,'parse',nd); nd=ipnd.Results; if iscell(gp) diff --git a/gp/gp_pred.m b/gp/gp_pred.m index f86bb52c..4404ff17 100644 --- a/gp/gp_pred.m +++ b/gp/gp_pred.m @@ -90,23 +90,23 @@ ip=inputParser; ip.FunctionName = 'GP_PRED'; -ip.addRequired('gp',@(x) isstruct(x) || iscell(x)); -ip.addRequired('x', @(x) ~isempty(x) && isreal(x) && all(isfinite(x(:)))) -ip.addRequired('y', @(x) ~isempty(x) && isreal(x) && all(isfinite(x(:)))) -ip.addOptional('xt', [], @(x) isempty(x) || (isreal(x) && all(isfinite(x(:))))) -ip.addParamValue('yt', [], @(x) isreal(x) && all(isfinite(x(:)))) -ip.addParamValue('zt', [], @(x) isreal(x) && all(isfinite(x(:)))) -ip.addParamValue('z', [], @(x) isreal(x) && all(isfinite(x(:)))) -ip.addParamValue('predcf', [], @(x) isempty(x) || ... - isvector(x) && isreal(x) && all(isfinite(x)&x>=0)) -ip.addParamValue('tstind', [], @(x) isempty(x) || iscell(x) ||... - (isvector(x) && isreal(x) && all(isfinite(x)&x>0))) -ip.addParamValue('fcorr', 'off', @(x) ismember(x, {'off', 'fact', 'cm2', 'on', 'lr'})); +ip=iparser(ip,'addRequired','gp',@(x) isstruct(x) || iscell(x)); +ip=iparser(ip,'addRequired','x', @(x) ~isempty(x) && isreal(x) && all(isfinite(x(:)))); +ip=iparser(ip,'addRequired','y', @(x) ~isempty(x) && isreal(x) && all(isfinite(x(:)))); +ip=iparser(ip,'addOptional','xt', [], @(x) isempty(x) || (isreal(x) && all(isfinite(x(:))))); +ip=iparser(ip,'addParamValue','yt', [], @(x) isreal(x) && all(isfinite(x(:)))); +ip=iparser(ip,'addParamValue','z', [], @(x) isreal(x) && all(isfinite(x(:)))); +ip=iparser(ip,'addParamValue','zt', [], @(x) isreal(x) && all(isfinite(x(:)))); +ip=iparser(ip,'addParamValue','predcf', [], @(x) isempty(x) || ... + isvector(x) && isreal(x) && all(isfinite(x)&x>=0)); +ip=iparser(ip,'addParamValue','tstind', [], @(x) isempty(x) || iscell(x) ||... + (isvector(x) && isreal(x) && all(isfinite(x)&x>0))); +ip=iparser(ip,'addParamValue','fcorr', 'off', @(x) ismember(x, {'off', 'fact', 'cm2', 'on', 'lr'})); if numel(varargin)==0 || isnumeric(varargin{1}) % inputParser should handle this, but it doesn't - ip.parse(gp, x, y, varargin{:}); + ip=iparser(ip,'parse',gp, x, y, varargin{:}); else - ip.parse(gp, x, y, [], varargin{:}); + ip=iparser(ip,'parse',gp, x, y, [], varargin{:}); end xt=ip.Results.xt; yt=ip.Results.yt; diff --git a/gp/gp_predcdf.m b/gp/gp_predcdf.m index b94d5fd1..00aa2907 100644 --- a/gp/gp_predcdf.m +++ b/gp/gp_predcdf.m @@ -34,24 +34,24 @@ ip=inputParser; ip.FunctionName = 'GP_PREDCDF'; - ip.addRequired('gp',@(x) isstruct(x) || iscell(x)); - ip.addRequired('x', @(x) ~isempty(x) && isreal(x) && all(isfinite(x(:)))) - ip.addRequired('y', @(x) ~isempty(x) && isreal(x) && all(isfinite(x(:)))) - ip.addOptional('xt', [], @(x) isempty(x) || (isreal(x) && all(isfinite(x(:))))) - ip.addParamValue('yt', [], @(x) isreal(x) && all(isfinite(x(:)))) - ip.addParamValue('z', [], @(x) isreal(x) && all(isfinite(x(:)))) - ip.addParamValue('zt', [], @(x) isreal(x) && all(isfinite(x(:)))) - ip.addParamValue('prct', [5 50 95], @(x) isreal(x) && all(isfinite(x(:)))) - ip.addParamValue('nsamp', 5000, @(x) isreal(x) && all(isfinite(x(:)))) - ip.addParamValue('predcf', [], @(x) isempty(x) || ... - isvector(x) && isreal(x) && all(isfinite(x)&x>0)) - ip.addParamValue('tstind', [], @(x) isempty(x) || iscell(x) ||... - (isvector(x) && isreal(x) && all(isfinite(x)&x>0))) + ip=iparser(ip,'addRequired','gp',@(x) isstruct(x) || iscell(x)); + ip=iparser(ip,'addRequired','x', @(x) ~isempty(x) && isreal(x) && all(isfinite(x(:)))); + ip=iparser(ip,'addRequired','y', @(x) ~isempty(x) && isreal(x) && all(isfinite(x(:)))); + ip=iparser(ip,'addOptional','xt', [], @(x) isempty(x) || (isreal(x) && all(isfinite(x(:))))); + ip=iparser(ip,'addParamValue','yt', [], @(x) isreal(x) && all(isfinite(x(:)))); + ip=iparser(ip,'addParamValue','z', [], @(x) isreal(x) && all(isfinite(x(:)))); + ip=iparser(ip,'addParamValue','zt', [], @(x) isreal(x) && all(isfinite(x(:)))); + ip=iparser(ip,'addParamValue','prct', [5 50 95], @(x) isreal(x) && all(isfinite(x(:)))); + ip=iparser(ip,'addParamValue','nsamp', 5000, @(x) isreal(x) && all(isfinite(x(:)))); + ip=iparser(ip,'addParamValue','predcf', [], @(x) isempty(x) || ... + isvector(x) && isreal(x) && all(isfinite(x)&x>0)); + ip=iparser(ip,'addParamValue','tstind', [], @(x) isempty(x) || iscell(x) ||... + (isvector(x) && isreal(x) && all(isfinite(x)&x>0))); if numel(varargin)==0 || isnumeric(varargin{1}) % inputParser should handle this, but it doesn't - ip.parse(gp, x, y, varargin{:}); + ip=iparser(ip,'parse',gp, x, y, varargin{:}); else - ip.parse(gp, x, y, [], varargin{:}); + ip=iparser(ip,'parse',gp, x, y, [], varargin{:}); end xt=ip.Results.xt; yt=ip.Results.yt; diff --git a/gp/gp_predcm.m b/gp/gp_predcm.m index e9c955c0..5477db68 100644 --- a/gp/gp_predcm.m +++ b/gp/gp_predcm.m @@ -43,21 +43,20 @@ % License.txt, included with the software, for details. ip=inputParser; -ip.addRequired('gp',@isstruct); -ip.addRequired('x', @(x) ~isempty(x) && isreal(x) && all(isfinite(x(:)))) -ip.addRequired('y', @(x) ~isempty(x) && isreal(x) && all(isfinite(x(:)))) -%ip.addRequired('fvec', @(x) ~isempty(x) && isreal(x) && all(isfinite(x(:)))) -ip.addOptional('xt', [], @(x) isreal(x) && all(isfinite(x(:)))) -ip.addParamValue('z', [], @(x) isreal(x) && all(isfinite(x(:)))) -ip.addParamValue('ind', 1, @(x) isreal(x) && all(isfinite(x(:)))) -ip.addParamValue('ng', 50, @(x) isreal(x) && all(isfinite(x(:))) && x > 1) -ip.addParamValue('fcorr', 'on', @(x) ismember(x, {'fact', 'cm2', 'on','lr'})) -ip.addParamValue('tstind', [], @(x) isempty(x) || iscell(x) ||... - (isvector(x) && isreal(x) && all(isfinite(x)&x>0))) +ip=iparser(ip,'addRequired','gp',@isstruct); +ip=iparser(ip,'addRequired','x', @(x) ~isempty(x) && isreal(x) && all(isfinite(x(:)))); +ip=iparser(ip,'addRequired','y', @(x) ~isempty(x) && isreal(x) && all(isfinite(x(:)))); +ip=iparser(ip,'addOptional','xt', [], @(x) isreal(x) && all(isfinite(x(:)))); +ip=iparser(ip,'addParamValue','z', [], @(x) isreal(x) && all(isfinite(x(:)))); +ip=iparser(ip,'addParamValue','ind', 1, @(x) isreal(x) && all(isfinite(x(:)))); +ip=iparser(ip,'addParamValue','ng', 50, @(x) isreal(x) && all(isfinite(x(:))) && x > 1); +ip=iparser(ip,'addParamValue','fcorr', 'on', @(x) ismember(x, {'fact', 'cm2', 'on','lr'})); +ip=iparser(ip,'addParamValue','tstind', [], @(x) isempty(x) || iscell(x) ||... + (isvector(x) && isreal(x) && all(isfinite(x)&x>0))); if rem(size(varargin,2), 2) == 0 - ip.parse(gp, x, y, [],varargin{:}); + ip=iparser(ip,'parse',gp, x, y, [],varargin{:}); else - ip.parse(gp, x, y, varargin{:}); + ip=iparser(ip,'parse',gp, x, y, varargin{:}); end tstind = ip.Results.tstind; z = ip.Results.z; diff --git a/gp/gp_predprctmu.m b/gp/gp_predprctmu.m index 84e7a355..742c46c7 100644 --- a/gp/gp_predprctmu.m +++ b/gp/gp_predprctmu.m @@ -42,23 +42,23 @@ ip=inputParser; ip.FunctionName = 'GP_PREDPRCTMU'; - ip.addRequired('gp',@(x) isstruct(x) || iscell(x)); - ip.addRequired('x', @(x) ~isempty(x) && isreal(x) && all(isfinite(x(:)))) - ip.addRequired('y', @(x) ~isempty(x) && isreal(x) && all(isfinite(x(:)))) - ip.addOptional('xt', [], @(x) isempty(x) || (isreal(x) && all(isfinite(x(:))))) - ip.addParamValue('z', [], @(x) isreal(x) && all(isfinite(x(:)))) - ip.addParamValue('zt', [], @(x) isreal(x) && all(isfinite(x(:)))) - ip.addParamValue('prct', [5 50 95], @(x) isreal(x) && all(isfinite(x(:)))) - ip.addParamValue('nsamp', 5000, @(x) isreal(x) && all(isfinite(x(:)))) - ip.addParamValue('predcf', [], @(x) isempty(x) || ... - isvector(x) && isreal(x) && all(isfinite(x)&x>0)) - ip.addParamValue('tstind', [], @(x) isempty(x) || iscell(x) ||... - (isvector(x) && isreal(x) && all(isfinite(x)&x>0))) + ip=iparser(ip,'addRequired','gp',@(x) isstruct(x) || iscell(x)); + ip=iparser(ip,'addRequired','x', @(x) ~isempty(x) && isreal(x) && all(isfinite(x(:)))); + ip=iparser(ip,'addRequired','y', @(x) ~isempty(x) && isreal(x) && all(isfinite(x(:)))); + ip=iparser(ip,'addOptional','xt', [], @(x) isempty(x) || (isreal(x) && all(isfinite(x(:))))); + ip=iparser(ip,'addParamValue','z', [], @(x) isempty(x) || (isreal(x) && all(isfinite(x(:))))); + ip=iparser(ip,'addParamValue','zt', [], @(x) isempty(x) || (isreal(x) && all(isfinite(x(:))))); + ip=iparser(ip,'addParamValue','prct', [5 50 95], @(x) isreal(x) && all(isfinite(x(:)))); + ip=iparser(ip,'addParamValue','nsamp', 5000, @(x) isreal(x) && all(isfinite(x(:)))); + ip=iparser(ip,'addParamValue','predcf', [], @(x) isempty(x) || ... + isvector(x) && isreal(x) && all(isfinite(x)&x>0)); + ip=iparser(ip,'addParamValue','tstind', [], @(x) isempty(x) || iscell(x) ||... + (isvector(x) && isreal(x) && all(isfinite(x)&x>0))); if numel(varargin)==0 || isnumeric(varargin{1}) % inputParser should handle this, but it doesn't - ip.parse(gp, x, y, varargin{:}); + ip=iparser(ip,'parse',gp, x, y, varargin{:}); else - ip.parse(gp, x, y, [], varargin{:}); + ip=iparser(ip,'parse',gp, x, y, [], varargin{:}); end xt=ip.Results.xt; z = ip.Results.z; diff --git a/gp/gp_predprcty.m b/gp/gp_predprcty.m index 901d0b81..f1f0dc70 100644 --- a/gp/gp_predprcty.m +++ b/gp/gp_predprcty.m @@ -40,23 +40,23 @@ ip=inputParser; ip.FunctionName = 'GP_PREDPRCTY'; - ip.addRequired('gp',@(x) isstruct(x) || iscell(x)); - ip.addRequired('x', @(x) ~isempty(x) && isreal(x) && all(isfinite(x(:)))) - ip.addRequired('y', @(x) ~isempty(x) && isreal(x) && all(isfinite(x(:)))) - ip.addOptional('xt', [], @(x) isempty(x) || (isreal(x) && all(isfinite(x(:))))) - ip.addParamValue('z', [], @(x) isreal(x) && all(isfinite(x(:)))) - ip.addParamValue('zt', [], @(x) isreal(x) && all(isfinite(x(:)))) - ip.addParamValue('prct', [5 50 95], @(x) isreal(x) && all(isfinite(x(:)))) - ip.addParamValue('nsamp', 5000, @(x) isreal(x) && all(isfinite(x(:)))) - ip.addParamValue('predcf', [], @(x) isempty(x) || ... - isvector(x) && isreal(x) && all(isfinite(x)&x>0)) - ip.addParamValue('tstind', [], @(x) isempty(x) || iscell(x) ||... - (isvector(x) && isreal(x) && all(isfinite(x)&x>0))) + ip=iparser(ip,'addRequired','gp',@(x) isstruct(x) || iscell(x)); + ip=iparser(ip,'addRequired','x', @(x) ~isempty(x) && isreal(x) && all(isfinite(x(:)))); + ip=iparser(ip,'addRequired','y', @(x) ~isempty(x) && isreal(x) && all(isfinite(x(:)))); + ip=iparser(ip,'addOptional','xt', [], @(x) isempty(x) || (isreal(x) && all(isfinite(x(:))))); + ip=iparser(ip,'addParamValue','z', [], @(x) isreal(x) && all(isfinite(x(:)))); + ip=iparser(ip,'addParamValue','zt', [], @(x) isreal(x) && all(isfinite(x(:)))); + ip=iparser(ip,'addParamValue','prct', [5 50 95], @(x) isreal(x) && all(isfinite(x(:)))); + ip=iparser(ip,'addParamValue','nsamp', 5000, @(x) isreal(x) && all(isfinite(x(:)))); + ip=iparser(ip,'addParamValue','predcf', [], @(x) isempty(x) || ... + isvector(x) && isreal(x) && all(isfinite(x)&x>0)); + ip=iparser(ip,'addParamValue','tstind', [], @(x) isempty(x) || iscell(x) ||... + (isvector(x) && isreal(x) && all(isfinite(x)&x>0))); if numel(varargin)==0 || isnumeric(varargin{1}) % inputParser should handle this, but it doesn't - ip.parse(gp, x, y, varargin{:}); + ip=iparser(ip,'parse',gp, x, y, varargin{:}); else - ip.parse(gp, x, y, [], varargin{:}); + ip=iparser(ip,'parse',gp, x, y, [], varargin{:}); end xt=ip.Results.xt; z = ip.Results.z; diff --git a/gp/gp_rnd.m b/gp/gp_rnd.m index 34d3cc1b..b8a7d7ab 100644 --- a/gp/gp_rnd.m +++ b/gp/gp_rnd.m @@ -65,28 +65,31 @@ ip=inputParser; ip.FunctionName = 'GP_RND'; -ip.addRequired('gp',@(x) isstruct(x) || iscell(x)); -ip.addRequired('x', @(x) ~isempty(x) && isreal(x) && all(isfinite(x(:)))) -ip.addRequired('y', @(x) ~isempty(x) && isreal(x) && all(isfinite(x(:)))) -ip.addOptional('xt', [], @(x) isempty(x) || (isreal(x) && all(isfinite(x(:))))) -ip.addParamValue('z', [], @(x) isreal(x) && all(isfinite(x(:)))) -ip.addParamValue('zt', [], @(x) isreal(x) && all(isfinite(x(:)))) -ip.addParamValue('predcf', [], @(x) isempty(x) || ... - isvector(x) && isreal(x) && all(isfinite(x)&x>0)) -ip.addParamValue('tstind', [], @(x) isempty(x) || iscell(x) ||... - (isvector(x) && isreal(x) && all(isfinite(x)&x>0))) -ip.addParamValue('nsamp', 1, @(x) isreal(x) && isscalar(x)) -ip.addParamValue('fcorr', 'off', @(x) ismember(x, {'fact','cm2','off','on','lr'})) -ip.addParamValue('splitnormal', 'on', @(x) (islogical(x) && isscalar(x))|| ... - ismember(x,{'on' 'off' 'full'})) -ip.addParamValue('n_scale',50, @(x) isnumeric(x) && x>=0); + +ip=iparser(ip,'addRequired','gp',@(x) isstruct(x) || iscell(x)); +ip=iparser(ip,'addRequired','x', @(x) ~isempty(x) && isreal(x) && all(isfinite(x(:)))); +ip=iparser(ip,'addRequired','y', @(x) ~isempty(x) && isreal(x) && all(isfinite(x(:)))); +ip=iparser(ip,'addRequired','xt', @(x) ~isempty(x) && isreal(x) && all(isfinite(x(:)))); +ip=iparser(ip,'addParamValue','z', [], @(x) isreal(x) && all(isfinite(x(:)))); +ip=iparser(ip,'addParamValue','zt', [], @(x) isreal(x) && all(isfinite(x(:)))); +ip=iparser(ip,'addParamValue','predcf', [], @(x) isempty(x) || ... + isvector(x) && isreal(x) && all(isfinite(x)&x>0)); +ip=iparser(ip,'addParamValue','tstind', [], @(x) isempty(x) || iscell(x) ||... + (isvector(x) && isreal(x) && all(isfinite(x)&x>0))); +ip=iparser(ip,'addParamValue','nsamp', 1, @(x) isreal(x) && isscalar(x)); +ip=iparser(ip,'addParamValue','fcorr', 'off', @(x) ismember(x, {'fact','cm2','off','on','lr'})); +ip=iparser(ip,'addParamValue','splitnormal', 'on', @(x) (islogical(x) && isscalar(x))|| ... + ismember(x,{'on' 'off' 'full'})); +ip=iparser(ip,'addParamValue','n_scale',50, @(x) isnumeric(x) && x>=0); + if numel(varargin)==0 || isnumeric(varargin{1}) % inputParser should handle this, but it doesn't - ip.parse(gp, x, y, varargin{:}); + ip=iparser(ip,'parse',gp, x, y, varargin{:}); else - ip.parse(gp, x, y, [], varargin{:}); + ip=iparser(ip,'parse',gp, x, y, [], varargin{:}); end xt=ip.Results.xt; +%ip=iparser(ip,'parse',gp, x, y, xt, varargin{:}); z=ip.Results.z; zt=ip.Results.zt; tn = size(x,1); diff --git a/gp/gp_set.m b/gp/gp_set.m index 1917b012..add3a394 100644 --- a/gp/gp_set.m +++ b/gp/gp_set.m @@ -202,29 +202,28 @@ ip=inputParser; ip.FunctionName = 'GP_SET'; - ip.addOptional('gp', [], @isstruct); - ip.addParamValue('cf',[], @(x) isempty(x) || isstruct(x) || iscell(x)); - ip.addParamValue('meanf',[], @(x) isempty(x) || isstruct(x) || iscell(x)); - ip.addParamValue('type','FULL', ... + ip=iparser(ip,'addOptional','gp', [], @isstruct); + ip=iparser(ip,'addParamValue','cf',[], @(x) isempty(x) || isstruct(x) || iscell(x)); + ip=iparser(ip,'addParamValue','meanf',[], @(x) isempty(x) || isstruct(x) || iscell(x)); + ip=iparser(ip,'addParamValue','type','FULL', ... @(x) ismember(x,{'FULL' 'FIC' 'PIC' 'PIC_BLOCK' 'VAR' ... - 'DTC' 'SOR' 'CS+FIC','KALMAN'})); - ip.addParamValue('lik',lik_gaussian(), @(x) isstruct(x)); - ip.addParamValue('jitterSigma2',1e-6, @(x) isscalar(x) && x>=0); - ip.addParamValue('infer_params','covariance+likelihood', @(x) ischar(x)); - ip.addParamValue('latent_method','Laplace', @(x) ischar(x) || iscell(x)); - ip.addParamValue('latent_opt',struct(), @isstruct); - ip.addParamValue('X_u',[], @(x) isreal(x) && all(isfinite(x(:)))); - ip.addParamValue('Xu_prior',prior_unif, @(x) isstruct(x) || isempty(x) || ... - iscell(x)); - ip.addParamValue('tr_index', [], @(x) ~isempty(x) || iscell(x)) - ip.addParamValue('comp_cf', [], @(x) iscell(x)) - ip.addParamValue('derivobs','off', @(x) islogical(x) || isscalar(x) || ... + 'DTC' 'SOR' 'CS+FIC' 'KALMAN'})); + ip=iparser(ip,'addParamValue','lik',lik_gaussian(), @(x) isstruct(x)); + ip=iparser(ip,'addParamValue','jitterSigma2',1e-6, @(x) isscalar(x) && x>=0); + ip=iparser(ip,'addParamValue','infer_params','covariance+likelihood', @(x) ischar(x)); + ip=iparser(ip,'addParamValue','latent_method','Laplace', @(x) ischar(x) || iscell(x)); + ip=iparser(ip,'addParamValue','latent_opt',struct(), @isstruct); + ip=iparser(ip,'addParamValue','X_u',[], @(x) isreal(x) && all(isfinite(x(:)))); + ip=iparser(ip,'addParamValue','Xu_prior',prior_unif, @(x) iscell(x) || isstruct(x) || isempty(x)); + ip=iparser(ip,'addParamValue','tr_index', [], @(x) ~isempty(x) || iscell(x)); + ip=iparser(ip,'addParamValue','comp_cf', [], @(x) iscell(x)); + ip=iparser(ip,'addParamValue','derivobs','off', @(x) islogical(x) || isscalar(x) || ... (ischar(x) && ismember(x,{'on' 'off'}))); - ip.addParamValue('savememory','off', @(x) islogical(x) || isscalar(x) || ... + ip=iparser(ip,'addParamValue','savememory','off', @(x) islogical(x) || isscalar(x) || ... (ischar(x) && ismember(x,{'on' 'off'}))); -% ip.addParamValue('optim_method', [], @(x) isreal(x) && (x==1 || x==2) && ... +% ip=iparser(ip,'addParamValue','optim_method', [], @(x) isreal(x) && (x==1 || x==2) && ... % isfinite(x)) - ip.parse(varargin{:}); + ip=iparser(ip,'parse',varargin{:}); gp=ip.Results.gp; @@ -401,7 +400,7 @@ % Remove traces of other latent methods if isfield(gp,'latent_opt'); gp=rmfield(gp,'latent_opt'); end if isfield(gp,'fh') && isfield(gp.fh,'ne') - gp.fh=rmfield(gp.fh,{'ne' 'e' 'g' 'pred' 'jpred' 'looe' 'loog'}); + gp.fh=rmfield(gp.fh,{'ne' 'e' 'g' 'pred' 'jpred' 'looe'}); end % Set latent method gp.latent_method=latent_method; @@ -452,9 +451,9 @@ % Handle latent_opt ipmc=inputParser; ipmc.FunctionName = 'GP_SET - latent method MCMC options'; - ipmc.addParamValue('method',@esls, @(x) isa(x,'function_handle')); - ipmc.addParamValue('f',[], @(x) isreal(x) && all(isfinite(x(:)))); - ipmc.parse(latent_opt); + ipmc=iparser(ipmc,'addParamValue','method',@esls, @(x) isa(x,'function_handle')); + ipmc=iparser(ipmc,'addParamValue','f',[], @(x) isreal(x) && all(isfinite(x(:)))); + ipmc=iparser(ipmc,'parse',latent_opt); if init || ~ismember('method',ipmc.UsingDefaults) || ~isfield(gp.fh,'mc') gp.fh.mc = ipmc.Results.method; end @@ -465,47 +464,47 @@ % Handle latent_opt ipep=inputParser; ipep.FunctionName = 'GP_SET - latent method EP options'; - ipep.addParamValue('optim_method',[], @(x) ischar(x)); - ipep.addParamValue('maxiter',20, @(x) isreal(x) && isscalar(x) && isfinite(x) && x>0); - ipep.addParamValue('display', 'off', @(x) ischar(x) && ismember(x,{'off', 'final', 'iter'})) - ipep.addParamValue('parallel','on', @(x) ischar(x) && ismember(x,{'off', 'on'})); % default on - ipep.addParamValue('init_prev', 'on', @(x) ischar(x) && ismember(x,{'off', 'on'})); % default on + ipep=iparser(ipep,'addParamValue','optim_method',[], @(x) ischar(x)); + ipep=iparser(ipep,'addParamValue','maxiter',20, @(x) isreal(x) && isscalar(x) && isfinite(x) && x>0); + ipep=iparser(ipep,'addParamValue','display', 'off', @(x) ischar(x) && ismember(x,{'off', 'final', 'iter'})); + ipep=iparser(ipep,'addParamValue','parallel','on', @(x) ischar(x) && ismember(x,{'off', 'on'})); % default on + ipep=iparser(ipep,'addParamValue','init_prev', 'on', @(x) ischar(x) && ismember(x,{'off', 'on'})); % default on % Following option is only for basic-EP % all changes in the log predictive densities and the log marginal % likelihood are smaller than tol. - ipep.addParamValue('tol',1e-4, @(x) isreal(x) && isscalar(x) && isfinite(x) && x>0); + ipep=iparser(ipep,'addParamValue','tol',1e-4, @(x) isreal(x) && isscalar(x) && isfinite(x) && x>0); % Following options are only for robust-EP % max number of initial parallel iterations - ipep.addParamValue('ninit', 10, @(x) isreal(x) && (x==1 || rem(1,x)==1) && isfinite(x)) + ipep=iparser(ipep,'addParamValue','ninit', 10, @(x) isreal(x) && (x==1 || rem(1,x)==1) && isfinite(x)); % max number of inner loop iterations in the double-loop algorithm - ipep.addParamValue('max_ninner', 4, @(x) isreal(x) && (x==1 || rem(1,x)==1) && isfinite(x)) + ipep=iparser(ipep,'addParamValue','max_ninner', 4, @(x) isreal(x) && (x==1 || rem(1,x)==1) && isfinite(x)); % converge tolerance with respect to the maximum change in E[f] and Var[f] - ipep.addParamValue('tolStop', 1e-4, @(x) isreal(x) && isfinite(x)) + ipep=iparser(ipep,'addParamValue','tolStop', 1e-4, @(x) isreal(x) && isfinite(x)); % tolerance for the EP site updates - ipep.addParamValue('tolUpdate', 1e-6, @(x) isreal(x) && isfinite(x)) + ipep=iparser(ipep,'addParamValue','tolUpdate', 1e-6, @(x) isreal(x) && isfinite(x)); % inner loop energy tolerance - ipep.addParamValue('tolInner', 1e-3, @(x) isreal(x) && isfinite(x)) + ipep=iparser(ipep,'addParamValue','tolInner', 1e-3, @(x) isreal(x) && isfinite(x)); % minimum gradient (g) decrease in the search direction, abs(g_new)0); - ipla.addParamValue('maxiter', 40, @(x) isreal(x) && isscalar(x) && isfinite(x) && x>0); - ipla.parse(latent_opt); + ipla=iparser(ipla,'addParamValue','optim_method',[], @(x) ischar(x)); + ipla=iparser(ipla,'addParamValue','tol',1e-4, @(x) isreal(x) && isscalar(x) && isfinite(x) && x>0); + ipla=iparser(ipla,'addParamValue','maxiter', 40, @(x) isreal(x) && isscalar(x) && isfinite(x) && x>0); + ipla=iparser(ipla,'parse',latent_opt); optim_method=ipla.Results.optim_method; if ~isempty(optim_method) gp.latent_opt.optim_method=optim_method; diff --git a/gp/gp_waic.m b/gp/gp_waic.m index e140fc21..b79e8f80 100644 --- a/gp/gp_waic.m +++ b/gp/gp_waic.m @@ -61,13 +61,13 @@ ip=inputParser; ip.FunctionName = 'GP_WAIC'; - ip.addRequired('gp',@(x) isstruct(x) || iscell(x)); - ip.addRequired('x', @(x) ~isempty(x) && isreal(x) && all(isfinite(x(:)))) - ip.addRequired('y', @(x) ~isempty(x) && isreal(x) && all(isfinite(x(:)))) - ip.addParamValue('method', 'V', @(x) ismember(x,{'V' 'G'})) - ip.addParamValue('form', 'mean', @(x) ismember(x,{'mean','all','sum','dic'})) - ip.addParamValue('z', [], @(x) isreal(x) && all(isfinite(x(:)))) - ip.parse(gp, x, y, varargin{:}); + ip=iparser(ip,'addRequired','gp',@(x) isstruct(x) || iscell(x)); + ip=iparser(ip,'addRequired','x', @(x) ~isempty(x) && isreal(x) && all(isfinite(x(:)))); + ip=iparser(ip,'addRequired','y', @(x) ~isempty(x) && isreal(x) && all(isfinite(x(:)))); + ip=iparser(ip,'addParamValue','method', 'V', @(x) ismember(x,{'V' 'G'})); + ip=iparser(ip,'addParamValue','form', 'mean', @(x) ismember(x,{'mean','all','sum','dic'})); + ip=iparser(ip,'addParamValue','z', [], @(x) isreal(x) && all(isfinite(x(:)))); + ip=iparser(ip,'parse',gp, x, y, varargin{:}); method=ip.Results.method; form=ip.Results.form; % pass these forward @@ -160,10 +160,10 @@ if ~isequal(gp.lik.type, 'Coxph') fmin = mean(Ef(i,:) - 9*sqrt(Varf(i,:))); fmax = mean(Ef(i,:) + 9*sqrt(Varf(i,:))); - Elog(i) = quadgk(@(f) mean(multi_npdf(f,Ef(i,:),(Varf(i,:))) ... - .*llvec(gp_array, y(i), f, z1).^2), fmin, fmax); - Elog2(i) = quadgk(@(f) mean(multi_npdf(f,Ef(i,:),(Varf(i,:))) ... - .*llvec(gp_array, y(i), f, z1)), fmin, fmax); + Elog(i) = quadgk(@(f) reshape(mean(multi_npdf(f(:),Ef(i,:),(Varf(i,:))) ... + .*llvec(gp_array, y(i), f(:), z1).^2),size(f,1),size(f,2)), fmin, fmax); + Elog2(i) = quadgk(@(f) reshape(mean(multi_npdf(f(:),Ef(i,:),(Varf(i,:))) ... + .*llvec(gp_array, y(i), f(:), z1)),size(f,1),size(f,2)), fmin, fmax); else ntime = size(gp.lik.xtime,1); for i2=1:nsamples @@ -192,8 +192,8 @@ for i=1:tn fmin = mean(Ef(i,:) - 9*sqrt(Varf(i,:))); fmax = mean(Ef(i,:) + 9*sqrt(Varf(i,:))); - GUt(i) = quadgk(@(f) mean(multi_npdf(f,Ef(i,:),(Varf(i,:))) ... - .*bsxfun(@minus,-bsxfun(@rdivide,(repmat((y(i)-f),nsamples,1)).^2,(2.*sigma2(i,:))'), 0.5*log(2*pi*sigma2(i,:))')), fmin, fmax); + GUt(i) = quadgk(@(f) reshape(mean(multi_npdf(f(:),Ef(i,:),(Varf(i,:))) ... + .*bsxfun(@minus,-bsxfun(@rdivide,(repmat((y(i)-f(:)'),nsamples,1)).^2,(2.*sigma2(i,:))'), 0.5*log(2*pi*sigma2(i,:))')),size(f,1),size(f,2)), fmin, fmax); end waic = BUt-2*(BUt-GUt); else @@ -206,8 +206,8 @@ end fmin = mean(Ef(i,:) - 9*sqrt(Varf(i,:))); fmax = mean(Ef(i,:) + 9*sqrt(Varf(i,:))); - GUt(i) = quadgk(@(f) mean(multi_npdf(f,Ef(i,:),(Varf(i,:))) ... - .*llvec(gp_array, y(i), f, z1)), fmin, fmax); + GUt(i) = quadgk(@(f) reshape(mean(multi_npdf(f(:),Ef(i,:),(Varf(i,:))) ... + .*llvec(gp_array, y(i), f(:), z1)), size(f,1),size(f,2)), fmin, fmax); end waic = BUt-2*(BUt-GUt); end @@ -413,10 +413,10 @@ end fmin = sum(weight.*Ef(i,:) - 9*weight.*sqrt(Varf(i,:))); fmax = sum(weight.*Ef(i,:) + 9*weight.*sqrt(Varf(i,:))); - Elog(i) = quadgk(@(f) sum(bsxfun(@times, multi_npdf(f,Ef(i,:),(Varf(i,:))),weight') ... - .*llvec(gp, y(i), f, z1).^2), fmin, fmax); - Elog2(i) = quadgk(@(f) sum(bsxfun(@times, multi_npdf(f,Ef(i,:),(Varf(i,:))),weight') ... - .*llvec(gp, y(i), f, z1)), fmin, fmax); + Elog(i) = quadgk(@(f) reshape(sum(bsxfun(@times, multi_npdf(f,Ef(i,:),(Varf(i,:))),weight') ... + .*llvec(gp, y(i), f, z1).^2),size(f,1),size(f,2)), fmin, fmax); + Elog2(i) = quadgk(@(f) reshape(sum(bsxfun(@times, multi_npdf(f,Ef(i,:),(Varf(i,:))),weight') ... + .*llvec(gp, y(i), f, z1)),size(f,1),size(f,2)), fmin, fmax); end Elog2 = Elog2.^2; Vn = (Elog-Elog2); @@ -449,8 +449,8 @@ end fmin = sum(weight.*Ef(i,:) - 9*weight.*sqrt(Varf(i,:))); fmax = sum(weight.*Ef(i,:) + 9*weight.*sqrt(Varf(i,:))); - GUt(i) = quadgk(@(f) sum(bsxfun(@times, multi_npdf(f,Ef(i,:),(Varf(i,:))),weight') ... - .*llvec(gp, y(i), f, z1)), fmin, fmax); + GUt(i) = quadgk(@(f) reshape(sum(bsxfun(@times, multi_npdf(f,Ef(i,:),(Varf(i,:))),weight') ... + .*llvec(gp, y(i), f, z1)),size(f,1),size(f,2)), fmin, fmax); end waic = BUt-2*(BUt-GUt); diff --git a/gp/gpcf_cat.m b/gp/gpcf_cat.m index 44f98e94..9b4070ac 100644 --- a/gp/gpcf_cat.m +++ b/gp/gpcf_cat.m @@ -30,10 +30,10 @@ ip=inputParser; ip.FunctionName = 'GPCF_CAT'; - ip.addOptional('gpcf', [], @isstruct); - ip.addParamValue('selectedVariables',[], ... + ip=iparser(ip,'addOptional','gpcf', [], @isstruct); + ip=iparser(ip,'addParamValue','selectedVariables',[], ... @(x) isempty(x) || (isvector(x) && all(x>0))); - ip.parse(varargin{:}); + ip=iparser(ip,'parse',varargin{:}); gpcf=ip.Results.gpcf; if isempty(gpcf) diff --git a/gp/gpcf_constant.m b/gp/gpcf_constant.m index 52026e84..8eab62a1 100644 --- a/gp/gpcf_constant.m +++ b/gp/gpcf_constant.m @@ -32,10 +32,10 @@ ip=inputParser; ip.FunctionName = 'GPCF_CONSTANT'; - ip.addOptional('gpcf', [], @isstruct); - ip.addParamValue('constSigma2',.1, @(x) isscalar(x) && x>0); - ip.addParamValue('constSigma2_prior',prior_sqrtt(), @(x) isstruct(x) || isempty(x)); - ip.parse(varargin{:}); + ip=iparser(ip,'addOptional','gpcf', [], @isstruct); + ip=iparser(ip,'addParamValue','constSigma2',0.1, @(x) isscalar(x) && x>0); + ip=iparser(ip,'addParamValue','constSigma2_prior',prior_sqrtt(), @(x) isstruct(x) || isempty(x)); + ip=iparser(ip,'parse',varargin{:}); gpcf=ip.Results.gpcf; if isempty(gpcf) diff --git a/gp/gpcf_exp.m b/gp/gpcf_exp.m index 0a159178..a0dd244b 100755 --- a/gp/gpcf_exp.m +++ b/gp/gpcf_exp.m @@ -47,17 +47,17 @@ ip=inputParser; ip.FunctionName = 'GPCF_EXP'; - ip.addOptional('gpcf', [], @isstruct); - ip.addParamValue('magnSigma2',0.1, @(x) isscalar(x) && x>0); - ip.addParamValue('lengthScale',1, @(x) isvector(x) && all(x>0)); - ip.addParamValue('metric',[], @isstruct); - ip.addParamValue('magnSigma2_prior', prior_logunif(), ... + ip=iparser(ip,'addOptional','gpcf', [], @isstruct); + ip=iparser(ip,'addParamValue','magnSigma2',0.1, @(x) isscalar(x) && x>0); + ip=iparser(ip,'addParamValue','lengthScale',1, @(x) isvector(x) && all(x>0)); + ip=iparser(ip,'addParamValue','metric',[], @isstruct); + ip=iparser(ip,'addParamValue','magnSigma2_prior', prior_logunif(), ... @(x) isstruct(x) || isempty(x)); - ip.addParamValue('lengthScale_prior',prior_t(), ... + ip=iparser(ip,'addParamValue','lengthScale_prior',prior_t(), ... @(x) isstruct(x) || isempty(x)); - ip.addParamValue('selectedVariables',[], @(x) isempty(x) || ... + ip=iparser(ip,'addParamValue','selectedVariables',[], @(x) isempty(x) || ... (isvector(x) && all(x>0))); - ip.parse(varargin{:}); + ip=iparser(ip,'parse',varargin{:}); gpcf=ip.Results.gpcf; if isempty(gpcf) diff --git a/gp/gpcf_linear.m b/gp/gpcf_linear.m index 4cf60925..223f57b1 100644 --- a/gp/gpcf_linear.m +++ b/gp/gpcf_linear.m @@ -38,11 +38,11 @@ ip=inputParser; ip.FunctionName = 'GPCF_LINEAR'; - ip.addOptional('gpcf', [], @isstruct); - ip.addParamValue('coeffSigma2',10, @(x) isvector(x) && all(x>0)); - ip.addParamValue('coeffSigma2_prior',prior_logunif, @(x) isstruct(x) || isempty(x)); - ip.addParamValue('selectedVariables',[], @(x) isvector(x) && all(x>0)); - ip.parse(varargin{:}); + ip=iparser(ip,'addOptional','gpcf', [], @isstruct); + ip=iparser(ip,'addParamValue','coeffSigma2',10, @(x) isvector(x) && all(x>0)); + ip=iparser(ip,'addParamValue','coeffSigma2_prior',prior_logunif, @(x) isstruct(x) || isempty(x)); + ip=iparser(ip,'addParamValue','selectedVariables',[], @(x) isvector(x) && all(x>0)); + ip=iparser(ip,'parse',varargin{:}); gpcf=ip.Results.gpcf; if isempty(gpcf) @@ -973,4 +973,4 @@ dQc = dQc(:,:,ind); dPinf = dPinf(:,:,ind); -end \ No newline at end of file +end diff --git a/gp/gpcf_mask.m b/gp/gpcf_mask.m index 3eb275e2..0348c9f9 100644 --- a/gp/gpcf_mask.m +++ b/gp/gpcf_mask.m @@ -30,10 +30,10 @@ ip=inputParser; ip.FunctionName = 'GPCF_MASK'; - ip.addOptional('gpcf', [], @isstruct); - ip.addParamValue('selectedVariables',[], ... + ip=iparser(ip,'addOptional','gpcf', [], @isstruct); + ip=iparser(ip,'addParamValue','selectedVariables',[], ... @(x) isempty(x) || (isvector(x) && all(x>0))); - ip.parse(varargin{:}); + ip=iparser(ip,'parse',varargin{:}); gpcf=ip.Results.gpcf; if isempty(gpcf) diff --git a/gp/gpcf_matern32.m b/gp/gpcf_matern32.m index 4aae46f8..7625a69e 100755 --- a/gp/gpcf_matern32.m +++ b/gp/gpcf_matern32.m @@ -47,17 +47,17 @@ ip=inputParser; ip.FunctionName = 'GPCF_MATERN32'; - ip.addOptional('gpcf', [], @isstruct); - ip.addParamValue('magnSigma2',0.1, @(x) isscalar(x) && x>0); - ip.addParamValue('lengthScale',1, @(x) isvector(x) && all(x>0)); - ip.addParamValue('metric',[], @isstruct); - ip.addParamValue('magnSigma2_prior', prior_logunif(), ... + ip=iparser(ip,'addOptional','gpcf', [], @isstruct); + ip=iparser(ip,'addParamValue','magnSigma2',0.1, @(x) isscalar(x) && x>0); + ip=iparser(ip,'addParamValue','lengthScale',1, @(x) isvector(x) && all(x>0)); + ip=iparser(ip,'addParamValue','metric',[], @isstruct); + ip=iparser(ip,'addParamValue','magnSigma2_prior', prior_logunif(), ... @(x) isstruct(x) || isempty(x)); - ip.addParamValue('lengthScale_prior',prior_t(), ... + ip=iparser(ip,'addParamValue','lengthScale_prior',prior_t(), ... @(x) isstruct(x) || isempty(x)); - ip.addParamValue('selectedVariables',[], @(x) isempty(x) || ... + ip=iparser(ip,'addParamValue','selectedVariables',[], @(x) isempty(x) || ... (isvector(x) && all(x>0))); - ip.parse(varargin{:}); + ip=iparser(ip,'parse',varargin{:}); gpcf=ip.Results.gpcf; if isempty(gpcf) diff --git a/gp/gpcf_matern52.m b/gp/gpcf_matern52.m index 1d0836ab..1bb4f3d8 100755 --- a/gp/gpcf_matern52.m +++ b/gp/gpcf_matern52.m @@ -47,17 +47,17 @@ ip=inputParser; ip.FunctionName = 'GPCF_MATERN52'; - ip.addOptional('gpcf', [], @isstruct); - ip.addParamValue('magnSigma2',0.1, @(x) isscalar(x) && x>0); - ip.addParamValue('lengthScale',1, @(x) isvector(x) && all(x>0)); - ip.addParamValue('metric',[], @isstruct); - ip.addParamValue('magnSigma2_prior', prior_logunif(), ... + ip=iparser(ip,'addOptional','gpcf', [], @isstruct); + ip=iparser(ip,'addParamValue','magnSigma2',0.1, @(x) isscalar(x) && x>0); + ip=iparser(ip,'addParamValue','lengthScale',1, @(x) isvector(x) && all(x>0)); + ip=iparser(ip,'addParamValue','metric',[], @isstruct); + ip=iparser(ip,'addParamValue','magnSigma2_prior', prior_logunif(), ... @(x) isstruct(x) || isempty(x)); - ip.addParamValue('lengthScale_prior',prior_t(), ... + ip=iparser(ip,'addParamValue','lengthScale_prior',prior_t(), ... @(x) isstruct(x) || isempty(x)); - ip.addParamValue('selectedVariables',[], @(x) isempty(x) || ... + ip=iparser(ip,'addParamValue','selectedVariables',[], @(x) isempty(x) || ... (isvector(x) && all(x>0))); - ip.parse(varargin{:}); + ip=iparser(ip,'parse',varargin{:}); gpcf=ip.Results.gpcf; if isempty(gpcf) diff --git a/gp/gpcf_neuralnetwork.m b/gp/gpcf_neuralnetwork.m index 02aa6610..7b3cb66f 100755 --- a/gp/gpcf_neuralnetwork.m +++ b/gp/gpcf_neuralnetwork.m @@ -39,13 +39,13 @@ ip=inputParser; ip.FunctionName = 'GPCF_NEURALNETWORK'; - ip.addOptional('gpcf', [], @isstruct); - ip.addParamValue('biasSigma2',0.1, @(x) isscalar(x) && x>0); - ip.addParamValue('weightSigma2',10, @(x) isvector(x) && all(x>0)); - ip.addParamValue('biasSigma2_prior',prior_logunif, @(x) isstruct(x) || isempty(x)); - ip.addParamValue('weightSigma2_prior',prior_logunif, @(x) isstruct(x) || isempty(x)); - ip.addParamValue('selectedVariables',[], @(x) isvector(x) && all(x>0)); - ip.parse(varargin{:}); + ip=iparser(ip,'addOptional','gpcf', [], @isstruct); + ip=iparser(ip,'addParamValue','biasSigma2',0.1, @(x) isscalar(x) && x>0); + ip=iparser(ip,'addParamValue','weightSigma2',10, @(x) isvector(x) && all(x>0)); + ip=iparser(ip,'addParamValue','biasSigma2_prior',prior_logunif, @(x) isstruct(x) || isempty(x)); + ip=iparser(ip,'addParamValue','weightSigma2_prior',prior_logunif, @(x) isstruct(x) || isempty(x)); + ip=iparser(ip,'addParamValue','selectedVariables',[], @(x) isvector(x) && all(x>0)); + ip=iparser(ip,'parse',varargin{:}); gpcf=ip.Results.gpcf; if isempty(gpcf) diff --git a/gp/gpcf_noise.m b/gp/gpcf_noise.m index b5162b0c..17b71c48 100644 --- a/gp/gpcf_noise.m +++ b/gp/gpcf_noise.m @@ -32,10 +32,10 @@ ip=inputParser; ip.FunctionName = 'GPCF_NOISE'; - ip.addOptional('gpcf', [], @isstruct); - ip.addParamValue('noiseSigma2',0.1, @(x) isscalar(x) && x>0); - ip.addParamValue('noiseSigma2_prior',prior_logunif, @(x) isstruct(x) || isempty(x)); - ip.parse(varargin{:}); + ip=iparser(ip,'addOptional','gpcf', [], @isstruct); + ip=iparser(ip,'addParamValue','noiseSigma2',0.1, @(x) isscalar(x) && x>0); + ip=iparser(ip,'addParamValue','noiseSigma2_prior',prior_logunif, @(x) isstruct(x) || isempty(x)); + ip=iparser(ip,'parse',varargin{:}); gpcf=ip.Results.gpcf; if isempty(gpcf) @@ -427,4 +427,4 @@ dQc = dQc(:,:,ind); dPinf = dPinf(:,:,ind); -end \ No newline at end of file +end diff --git a/gp/gpcf_periodic.m b/gp/gpcf_periodic.m index f6ab1d86..46f35918 100644 --- a/gp/gpcf_periodic.m +++ b/gp/gpcf_periodic.m @@ -47,6 +47,7 @@ % See also % GP_SET, GPCF_*, PRIOR_* % + % Copyright (c) 2009-2010 Heikki Peura % Copyright (c) 2010 Aki Vehtari % Copyright (c) 2014 Arno Solin and Jukka Koskenranta @@ -57,22 +58,22 @@ ip=inputParser; ip.FunctionName = 'GPCF_PERIODIC'; - ip.addOptional('gpcf', [], @isstruct); - ip.addParamValue('magnSigma2',0.1, @(x) isscalar(x) && x>0); - ip.addParamValue('lengthScale',10, @(x) isvector(x) && all(x>0)); - ip.addParamValue('period',1, @(x) isscalar(x) && x>0); - ip.addParamValue('lengthScale_sexp',10, @(x) isvector(x) && all(x>0)); - ip.addParamValue('decay',0, @(x) isscalar(x) && (x==0||x==1)); - ip.addParamValue('kalman_deg',[], @(x) isscalar(x) && mod(x,1)==0); - ip.addParamValue('kalman_deg_sexp',[], @(x) isscalar(x) && mod(x,1)==0); - ip.addParamValue('kalman_valid',[], @(x) isscalar(x) && (x==0||x==1)); - ip.addParamValue('magnSigma2_prior',prior_logunif, @(x) isstruct(x) || isempty(x)); - ip.addParamValue('lengthScale_prior',prior_t, @(x) isstruct(x) || isempty(x)); - ip.addParamValue('lengthScale_sexp_prior',[], @(x) isstruct(x) || isempty(x)); - ip.addParamValue('period_prior',[], @(x) isstruct(x) || isempty(x)); - ip.addParamValue('selectedVariables',[], @(x) isempty(x) || ... + ip=iparser(ip,'addOptional','gpcf', [], @isstruct); + ip=iparser(ip,'addParamValue','magnSigma2',0.1, @(x) isscalar(x) && x>0); + ip=iparser(ip,'addParamValue','lengthScale',10, @(x) isvector(x) && all(x>0)); + ip=iparser(ip,'addParamValue','period',1, @(x) isscalar(x) && x>0); + ip=iparser(ip,'addParamValue','lengthScale_sexp',10, @(x) isvector(x) && all(x>0)); + ip=iparser(ip,'addParamValue','decay',0, @(x) isscalar(x) && (x==0||x==1)); + ip=iparser(ip,'addParamValue','kalman_deg',[], @(x) isscalar(x) && mod(x,1)==0); + ip=iparser(ip,'addParamValue','kalman_deg_sexp',[], @(x) isscalar(x) && mod(x,1)==0); + ip=iparser(ip,'addParamValue','kalman_valid',[], @(x) isscalar(x) && (x==0||x==1)); + ip=iparser(ip,'addParamValue','magnSigma2_prior',prior_logunif, @(x) isstruct(x) || isempty(x)); + ip=iparser(ip,'addParamValue','lengthScale_prior',prior_t, @(x) isstruct(x) || isempty(x)); + ip=iparser(ip,'addParamValue','lengthScale_sexp_prior',[], @(x) isstruct(x) || isempty(x)); + ip=iparser(ip,'addParamValue','period_prior',[], @(x) isstruct(x) || isempty(x)); + ip=iparser(ip,'addParamValue','selectedVariables',[], @(x) isempty(x) || ... (isvector(x) && all(x>0))); - ip.parse(varargin{:}); + ip=iparser(ip,'parse',varargin{:}); gpcf=ip.Results.gpcf; if isempty(gpcf) @@ -142,7 +143,6 @@ gpcf.fh.cfg = @gpcf_periodic_cfg; gpcf.fh.ginput = @gpcf_periodic_ginput; gpcf.fh.cov = @gpcf_periodic_cov; - gpcf.fh.covvec = @gpcf_periodic_covvec; gpcf.fh.trcov = @gpcf_periodic_trcov; gpcf.fh.trvar = @gpcf_periodic_trvar; gpcf.fh.recappend = @gpcf_periodic_recappend; @@ -1125,13 +1125,6 @@ % df(t)/dt = F f(t) + L w(t), % where w(t) is a white noise process. The observation model now % corresponds to y_k = H f(t_k) + r_k, where r_k ~ N(0,sigma2). -% -% References: -% Arno Solin and Simo Sarkka (2014). Explicit link between periodic -% covariance functions and state space models. Accepted for -% publication in Proceedings of the Seventeenth International -% Conference on Artifcial Intelligence and Statistics (AISTATS 2014). -% % Check arguments if nargin < 2, x = []; end diff --git a/gp/gpcf_ppcs0.m b/gp/gpcf_ppcs0.m index 5ac8f467..e0a4aa71 100644 --- a/gp/gpcf_ppcs0.m +++ b/gp/gpcf_ppcs0.m @@ -62,19 +62,19 @@ ip=inputParser; ip.FunctionName = 'GPCF_PPCS0'; - ip.addOptional('gpcf', [], @isstruct); - ip.addParamValue('nin',[], @(x) isscalar(x) && x>0 && mod(x,1)==0); - ip.addParamValue('magnSigma2',0.1, @(x) isscalar(x) && x>0); - ip.addParamValue('lengthScale',1, @(x) isvector(x) && all(x>0)); - ip.addParamValue('l_nin',[], @(x) isscalar(x) && x>0 && mod(x,1)==0); - ip.addParamValue('metric',[], @isstruct); - ip.addParamValue('magnSigma2_prior', prior_logunif(), ... + ip=iparser(ip,'addOptional','gpcf', [], @isstruct); + ip=iparser(ip,'addParamValue','nin',[], @(x) isscalar(x) && x>0 && mod(x,1)==0); + ip=iparser(ip,'addParamValue','magnSigma2',0.1, @(x) isscalar(x) && x>0); + ip=iparser(ip,'addParamValue','lengthScale',1, @(x) isvector(x) && all(x>0)); + ip=iparser(ip,'addParamValue','l_nin',[], @(x) isscalar(x) && x>0 && mod(x,1)==0); + ip=iparser(ip,'addParamValue','metric',[], @isstruct); + ip=iparser(ip,'addParamValue','magnSigma2_prior', prior_logunif(), ... @(x) isstruct(x) || isempty(x)); - ip.addParamValue('lengthScale_prior',prior_t(), ... + ip=iparser(ip,'addParamValue','lengthScale_prior',prior_t(), ... @(x) isstruct(x) || isempty(x)); - ip.addParamValue('selectedVariables',[], @(x) isempty(x) || ... + ip=iparser(ip,'addParamValue','selectedVariables',[], @(x) isempty(x) || ... (isvector(x) && all(x>0))); - ip.parse(varargin{:}); + ip=iparser(ip,'parse',varargin{:}); gpcf=ip.Results.gpcf; if isempty(gpcf) diff --git a/gp/gpcf_ppcs1.m b/gp/gpcf_ppcs1.m index 5e7661fa..f07511c1 100644 --- a/gp/gpcf_ppcs1.m +++ b/gp/gpcf_ppcs1.m @@ -62,19 +62,19 @@ ip=inputParser; ip.FunctionName = 'GPCF_PPCS1'; - ip.addOptional('gpcf', [], @isstruct); - ip.addParamValue('nin',[], @(x) isscalar(x) && x>0 && mod(x,1)==0); - ip.addParamValue('magnSigma2',0.1, @(x) isscalar(x) && x>0); - ip.addParamValue('lengthScale',1, @(x) isvector(x) && all(x>0)); - ip.addParamValue('l_nin',[], @(x) isscalar(x) && x>0 && mod(x,1)==0); - ip.addParamValue('metric',[], @isstruct); - ip.addParamValue('magnSigma2_prior', prior_logunif(), ... + ip=iparser(ip,'addOptional','gpcf', [], @isstruct); + ip=iparser(ip,'addParamValue','nin',[], @(x) isscalar(x) && x>0 && mod(x,1)==0); + ip=iparser(ip,'addParamValue','magnSigma2',0.1, @(x) isscalar(x) && x>0); + ip=iparser(ip,'addParamValue','lengthScale',1, @(x) isvector(x) && all(x>0)); + ip=iparser(ip,'addParamValue','l_nin',[], @(x) isscalar(x) && x>0 && mod(x,1)==0); + ip=iparser(ip,'addParamValue','metric',[], @isstruct); + ip=iparser(ip,'addParamValue','magnSigma2_prior', prior_logunif(), ... @(x) isstruct(x) || isempty(x)); - ip.addParamValue('lengthScale_prior',prior_t(), ... + ip=iparser(ip,'addParamValue','lengthScale_prior',prior_t(), ... @(x) isstruct(x) || isempty(x)); - ip.addParamValue('selectedVariables',[], @(x) isempty(x) || ... + ip=iparser(ip,'addParamValue','selectedVariables',[], @(x) isempty(x) || ... (isvector(x) && all(x>0))); - ip.parse(varargin{:}); + ip=iparser(ip,'parse',varargin{:}); gpcf=ip.Results.gpcf; if isempty(gpcf) diff --git a/gp/gpcf_ppcs2.m b/gp/gpcf_ppcs2.m index aea2528d..bc610b4e 100755 --- a/gp/gpcf_ppcs2.m +++ b/gp/gpcf_ppcs2.m @@ -62,19 +62,19 @@ ip=inputParser; ip.FunctionName = 'GPCF_PPCS2'; - ip.addOptional('gpcf', [], @isstruct); - ip.addParamValue('nin',[], @(x) isscalar(x) && x>0 && mod(x,1)==0); - ip.addParamValue('magnSigma2',0.1, @(x) isscalar(x) && x>0); - ip.addParamValue('lengthScale',1, @(x) isvector(x) && all(x>0)); - ip.addParamValue('l_nin',[], @(x) isscalar(x) && x>0 && mod(x,1)==0); - ip.addParamValue('metric',[], @isstruct); - ip.addParamValue('magnSigma2_prior', prior_logunif(), ... + ip=iparser(ip,'addOptional','gpcf', [], @isstruct); + ip=iparser(ip,'addParamValue','nin',[], @(x) isscalar(x) && x>0 && mod(x,1)==0); + ip=iparser(ip,'addParamValue','magnSigma2',0.1, @(x) isscalar(x) && x>0); + ip=iparser(ip,'addParamValue','lengthScale',1, @(x) isvector(x) && all(x>0)); + ip=iparser(ip,'addParamValue','l_nin',[], @(x) isscalar(x) && x>0 && mod(x,1)==0); + ip=iparser(ip,'addParamValue','metric',[], @isstruct); + ip=iparser(ip,'addParamValue','magnSigma2_prior', prior_logunif(), ... @(x) isstruct(x) || isempty(x)); - ip.addParamValue('lengthScale_prior',prior_t(), ... + ip=iparser(ip,'addParamValue','lengthScale_prior',prior_t(), ... @(x) isstruct(x) || isempty(x)); - ip.addParamValue('selectedVariables',[], @(x) isempty(x) || ... + ip=iparser(ip,'addParamValue','selectedVariables',[], @(x) isempty(x) || ... (isvector(x) && all(x>0))); - ip.parse(varargin{:}); + ip=iparser(ip,'parse',varargin{:}); gpcf=ip.Results.gpcf; if isempty(gpcf) diff --git a/gp/gpcf_ppcs3.m b/gp/gpcf_ppcs3.m index 75cd2b2f..fa108a69 100644 --- a/gp/gpcf_ppcs3.m +++ b/gp/gpcf_ppcs3.m @@ -63,19 +63,19 @@ ip=inputParser; ip.FunctionName = 'GPCF_PPCS3'; - ip.addOptional('gpcf', [], @isstruct); - ip.addParamValue('nin',[], @(x) isscalar(x) && x>0 && mod(x,1)==0); - ip.addParamValue('magnSigma2',0.1, @(x) isscalar(x) && x>0); - ip.addParamValue('lengthScale',1, @(x) isvector(x) && all(x>0)); - ip.addParamValue('l_nin',[], @(x) isscalar(x) && x>0 && mod(x,1)==0); - ip.addParamValue('metric',[], @isstruct); - ip.addParamValue('magnSigma2_prior', prior_logunif(), ... + ip=iparser(ip,'addOptional','gpcf', [], @isstruct); + ip=iparser(ip,'addParamValue','nin',[], @(x) isscalar(x) && x>0 && mod(x,1)==0); + ip=iparser(ip,'addParamValue','magnSigma2',0.1, @(x) isscalar(x) && x>0); + ip=iparser(ip,'addParamValue','lengthScale',1, @(x) isvector(x) && all(x>0)); + ip=iparser(ip,'addParamValue','l_nin',[], @(x) isscalar(x) && x>0 && mod(x,1)==0); + ip=iparser(ip,'addParamValue','metric',[], @isstruct); + ip=iparser(ip,'addParamValue','magnSigma2_prior', prior_logunif(), ... @(x) isstruct(x) || isempty(x)); - ip.addParamValue('lengthScale_prior',prior_t(), ... + ip=iparser(ip,'addParamValue','lengthScale_prior',prior_t(), ... @(x) isstruct(x) || isempty(x)); - ip.addParamValue('selectedVariables',[], @(x) isempty(x) || ... + ip=iparser(ip,'addParamValue','selectedVariables',[], @(x) isempty(x) || ... (isvector(x) && all(x>0))); - ip.parse(varargin{:}); + ip=iparser(ip,'parse',varargin{:}); gpcf=ip.Results.gpcf; if isempty(gpcf) diff --git a/gp/gpcf_prod.m b/gp/gpcf_prod.m index 8f044e0f..2bf96f07 100644 --- a/gp/gpcf_prod.m +++ b/gp/gpcf_prod.m @@ -19,9 +19,9 @@ ip=inputParser; ip.FunctionName = 'GPCF_PROD'; - ip.addOptional('gpcf', [], @isstruct); - ip.addParamValue('cf',[], @iscell); - ip.parse(varargin{:}); + ip=iparser(ip,'addOptional','gpcf', [], @isstruct); + ip=iparser(ip,'addParamValue','cf',[], @iscell); + ip=iparser(ip,'parse',varargin{:}); gpcf=ip.Results.gpcf; if isempty(gpcf) diff --git a/gp/gpcf_rq.m b/gp/gpcf_rq.m index c1807629..b11fd575 100644 --- a/gp/gpcf_rq.m +++ b/gp/gpcf_rq.m @@ -51,22 +51,22 @@ ip=inputParser; ip.FunctionName = 'GPCF_RQ'; - ip.addOptional('gpcf', [], @isstruct); - ip.addParamValue('magnSigma2',0.1, @(x) isscalar(x) && x>0); - ip.addParamValue('lengthScale',1, @(x) isvector(x) && all(x>0)); - ip.addParamValue('alpha',20, @(x) isscalar(x) && x>0); - ip.addParamValue('metric',[], @isstruct); - ip.addParamValue('magnSigma2_prior', prior_logunif(), ... + ip=iparser(ip,'addOptional','gpcf', [], @isstruct); + ip=iparser(ip,'addParamValue','magnSigma2',0.1, @(x) isscalar(x) && x>0); + ip=iparser(ip,'addParamValue','lengthScale',1, @(x) isvector(x) && all(x>0)); + ip=iparser(ip,'addParamValue','alpha',20, @(x) isscalar(x) && x>0); + ip=iparser(ip,'addParamValue','metric',[], @isstruct); + ip=iparser(ip,'addParamValue','magnSigma2_prior', prior_logunif(), ... @(x) isstruct(x) || isempty(x)); - ip.addParamValue('lengthScale_prior',prior_t(), ... + ip=iparser(ip,'addParamValue','lengthScale_prior',prior_t(), ... @(x) isstruct(x) || isempty(x)); - ip.addParamValue('alpha_prior', prior_unif(), ... + ip=iparser(ip,'addParamValue','alpha_prior', prior_unif(), ... @(x) isstruct(x) || isempty(x)); - ip.addParamValue('selectedVariables',[], @(x) isempty(x) || ... + ip=iparser(ip,'addParamValue','selectedVariables',[], @(x) isempty(x) || ... (isvector(x) && all(x>0))); - ip.addParamValue('kalman_rq_deg',6, @(x) isscalar(x) && mod(x,1)==0); - ip.addParamValue('kalman_se_deg',6, @(x) isscalar(x) && mod(x,1)==0); - ip.parse(varargin{:}); + ip=iparser(ip,'addParamValue','kalman_rq_deg',6, @(x) isscalar(x) && mod(x,1)==0); + ip=iparser(ip,'addParamValue','kalman_se_deg',6, @(x) isscalar(x) && mod(x,1)==0); + ip=iparser(ip,'parse',varargin{:}); gpcf=ip.Results.gpcf; if isempty(gpcf) @@ -1014,4 +1014,4 @@ dQc = dQc(:,:,ind); dPinf = dPinf(:,:,ind); -end \ No newline at end of file +end diff --git a/gp/gpcf_scaled.m b/gp/gpcf_scaled.m index 6b6de898..ce59aa9a 100644 --- a/gp/gpcf_scaled.m +++ b/gp/gpcf_scaled.m @@ -29,10 +29,10 @@ ip=inputParser; ip.FunctionName = 'GPCF_SCALED'; - ip.addOptional('gpcf', [], @isstruct); - ip.addParamValue('cf',[], @isstruct); - ip.addParamValue('scaler',1, @(x) isscalar(x) && x>0); - ip.parse(varargin{:}); + ip=iparser(ip,'addOptional','gpcf', [], @isstruct); + ip=iparser(ip,'addParamValue','cf',[], @isstruct); + ip=iparser(ip,'addParamValue','scaler',1, @(x) isscalar(x) && x>0); + ip=iparser(ip,'parse',varargin{:}); gpcf=ip.Results.gpcf; if isempty(gpcf) diff --git a/gp/gpcf_sexp.m b/gp/gpcf_sexp.m index f5889e01..4d1f8fad 100755 --- a/gp/gpcf_sexp.m +++ b/gp/gpcf_sexp.m @@ -44,18 +44,18 @@ % inputParser checks the arguments and assigns some default values ip=inputParser; ip.FunctionName = 'GPCF_SEXP'; - ip.addOptional('gpcf', [], @isstruct); - ip.addParamValue('magnSigma2',0.1, @(x) isscalar(x) && x>0); - ip.addParamValue('lengthScale',1, @(x) isvector(x) && all(x>0)); - ip.addParamValue('kalman_deg',[], @(x) isscalar(x) && mod(x,1)==0); - ip.addParamValue('metric',[], @isstruct); - ip.addParamValue('magnSigma2_prior', prior_logunif(), ... + ip=iparser(ip,'addOptional','gpcf', [], @isstruct); + ip=iparser(ip,'addParamValue','magnSigma2',0.1, @(x) isscalar(x) && x>0); + ip=iparser(ip,'addParamValue','lengthScale',1, @(x) isvector(x) && all(x>0)); + ip=iparser(ip,'addParamValue','metric',[], @isstruct); + ip=iparser(ip,'addParamValue','kalman_deg',[], @(x) isscalar(x) && mod(x,1)==0); + ip=iparser(ip,'addParamValue','magnSigma2_prior', prior_logunif(), ... @(x) isstruct(x) || isempty(x)); - ip.addParamValue('lengthScale_prior',prior_t(), ... + ip=iparser(ip,'addParamValue','lengthScale_prior',prior_t(), ... @(x) isstruct(x) || isempty(x)); - ip.addParamValue('selectedVariables',[], @(x) isempty(x) || ... + ip=iparser(ip,'addParamValue','selectedVariables',[], @(x) isempty(x) || ... (isvector(x) && all(x>0))); - ip.parse(varargin{:}); + ip=iparser(ip,'parse',varargin{:}); gpcf=ip.Results.gpcf; if isempty(gpcf) diff --git a/gp/gpcf_squared.m b/gp/gpcf_squared.m index 712385e7..471e3395 100644 --- a/gp/gpcf_squared.m +++ b/gp/gpcf_squared.m @@ -41,12 +41,12 @@ ip=inputParser; ip.FunctionName = 'GPCF_SQUARED'; - ip.addOptional('gpcf', [], @isstruct); - ip.addParamValue('interactions', 'off', @(x) ismember(x,{'on' 'off'})) - ip.addParamValue('coeffSigma2',10, @(x) isvector(x) && all(x>0)); - ip.addParamValue('coeffSigma2_prior',prior_logunif, @(x) isstruct(x) || isempty(x)); - ip.addParamValue('selectedVariables',[], @(x) isvector(x) && all(x>0)); - ip.parse(varargin{:}); + ip=iparser(ip,'addOptional', 'gpcf', [], @isstruct); + ip=iparser(ip,'addParamValue', 'interactions', 'off', @(x) ismember(x,{'on' 'off'})); + ip=iparser(ip,'addParamValue', 'coeffSigma2',10, @(x) isvector(x) && all(x>0)); + ip=iparser(ip,'addParamValue', 'coeffSigma2_prior',prior_logunif, @(x) isstruct(x) || isempty(x)); + ip=iparser(ip,'addParamValue', 'selectedVariables',[], @(x) isvector(x) && all(x>0)); + ip=iparser(ip,'parse',w, gp, x, y, varargin{:}); gpcf=ip.Results.gpcf; if isempty(gpcf) diff --git a/gp/gpcf_sum.m b/gp/gpcf_sum.m index 78c47974..99e9c23c 100644 --- a/gp/gpcf_sum.m +++ b/gp/gpcf_sum.m @@ -19,9 +19,9 @@ ip=inputParser; ip.FunctionName = 'GPCF_SUM'; - ip.addOptional('gpcf', [], @isstruct); - ip.addParamValue('cf',[], @iscell); - ip.parse(varargin{:}); + ip=iparser(ip,'addOptional','gpcf', [], @isstruct); + ip=iparser(ip,'addParamValue','cf',[], @iscell); + ip=iparser(ip,'parse',varargin{:}); gpcf=ip.Results.gpcf; if isempty(gpcf) diff --git a/gp/gpep_e.m b/gp/gpep_e.m index 1d3acb87..d852dbce 100644 --- a/gp/gpep_e.m +++ b/gp/gpep_e.m @@ -69,23 +69,23 @@ % parse inputs ip=inputParser; ip.FunctionName = 'GPEP_E'; -ip.addRequired('w', @(x) ... +ip=iparser(ip,'addRequired','w', @(x) ... isempty(x) || ... (ischar(x) && ismember(x, {'init' 'clearcache'})) || ... (isvector(x) && isreal(x) && all(isfinite(x))) || ... all(isnan(x))); -ip.addRequired('gp',@isstruct); -ip.addOptional('x', [], @(x) isnumeric(x) && isreal(x) && all(isfinite(x(:)))) -ip.addOptional('y', [], @(x) isnumeric(x) && isreal(x) && all(isfinite(x(:)))) -ip.addParamValue('z', [], @(x) isnumeric(x) && isreal(x) && all(isfinite(x(:)))) -ip.parse(w, gp, varargin{:}); +ip=iparser(ip,'addRequired','gp',@isstruct); +ip=iparser(ip,'addOptional','x', [], @(x) isnumeric(x) && isreal(x) && all(isfinite(x(:)))); +ip=iparser(ip,'addOptional','y', [], @(x) isnumeric(x) && isreal(x) && all(isfinite(x(:)))); +ip=iparser(ip,'addParamValue','z', [], @(x) isnumeric(x) && isreal(x) && all(isfinite(x(:)))); +ip=iparser(ip,'parse',w, gp, varargin{:}); x=ip.Results.x; y=ip.Results.y; z=ip.Results.z; if strcmp(w, 'init') % intialize cache - ch = []; + %ch = []; % return function handle to the nested function ep_algorithm % this way each gp has its own peristent memory for EP @@ -108,34 +108,25 @@ % call ep_algorithm using the function handle to the nested function % this way each gp has its own peristent memory for EP [e, edata, eprior, param] = gp.fh.ne(w, gp, x, y, z); +end end - function [e, edata, eprior, param] = ep_algorithm(w, gp, x, y, z) - - if strcmp(w, 'clearcache') - ch=[]; - return - end - if isempty(z) - datahash=hash_sha512([x y]); - else - datahash=hash_sha512([x y z]); - end + function [e, edata, eprior, param] = ep_algorithm(w, gp, x, y, z) if isfield(gp.lik,'nondiagW') % non-diagonal W - if ~isempty(ch) && all(size(w)==size(ch.w)) && all(abs(w-ch.w)<1e-8) && isequal(datahash,ch.datahash) - % The covariance function parameters or data haven't changed - % so we can return the energy and the site parameters that are saved - e = ch.e; - edata = ch.edata; - eprior = ch.eprior; - param.tautilde = ch.tautilde; - param.nutilde = ch.nutilde; - param.BKnu=ch.BKnu; - param.B=ch.B; - param.cholP=ch.cholP; - param.invPBKnu=ch.invPBKnu; + if 0%~isempty(ch) && all(size(w)==size(ch.w)) && all(abs(w-ch.w)<1e-8) && isequal(datahash,ch.datahash) +% % The covariance function parameters or data haven't changed +% % so we can return the energy and the site parameters that are saved +% e = ch.e; +% edata = ch.edata; +% eprior = ch.eprior; +% param.tautilde = ch.tautilde; +% param.nutilde = ch.nutilde; +% param.BKnu=ch.BKnu; +% param.B=ch.B; +% param.cholP=ch.cholP; +% param.invPBKnu=ch.invPBKnu; else @@ -512,54 +503,55 @@ param.cholP=cholP; param.invPBKnu=invPBKnu; - % store values to the cache - ch.w = w; - ch.e = e; - ch.edata = edata; - ch.eprior = eprior; - ch.tautilde = tautilde; - ch.nutilde = nutilde; - ch.BKnu=BKnu; - ch.B=B; - ch.cholP=cholP; - ch.invPBKnu=invPBKnu; - - ch.datahash=datahash; +% % store values to the cache +% ch.w = w; +% ch.e = e; +% ch.edata = edata; +% ch.eprior = eprior; +% ch.tautilde = tautilde; +% ch.nutilde = nutilde; +% ch.BKnu=BKnu; +% ch.B=B; +% ch.cholP=cholP; +% ch.invPBKnu=invPBKnu; +% +% ch.datahash=datahash; end else % isfield(gp.lik,'nondiagW') % diagonal W - if ~isempty(ch) && all(size(w)==size(ch.w)) && all(abs(w-ch.w)<1e-8) && isequal(datahash,ch.datahash) - % The covariance function parameters or data haven't changed - % so we can return the energy and the site parameters that are saved - e = ch.e; - edata = ch.edata; - eprior = ch.eprior; - param.tautilde = ch.tautilde; - param.nutilde = ch.nutilde; - param.L = ch.L; - param.La2 = ch.La2; - param.b = ch.b; - param.muvec_i = ch.muvec_i; - param.sigm2vec_i = ch.sigm2vec_i; - param.logZ_i = ch.logZ_i; - param.eta = ch.eta; - if isfield(gp.lik, 'int_likparam') - if ~(isfield(gp.lik,'joint_mean_magnitude') && gp.lik.joint_mean_magnitude) - if isfield(gp.lik, 'int_likparam') && gp.lik.int_likparam - param.mf2=ch.mf2; - param.Sigm2=ch.La2; - end - if isfield(gp.lik, 'int_magnitude') && gp.lik.int_magnitude - param.mf3=ch.mf3; - param.La3=ch.La3; - end - else - param.mf=ch.mf; - param.Sigm=ch.Sigm; - param.C=ch.C; - end - end + + if 0%~isempty(ch) && all(size(w)==size(ch.w)) && all(abs(w-ch.w)<1e-8) && isequal(datahash,ch.datahash) +% % The covariance function parameters or data haven't changed +% % so we can return the energy and the site parameters that are saved +% e = ch.e; +% edata = ch.edata; +% eprior = ch.eprior; +% param.tautilde = ch.tautilde; +% param.nutilde = ch.nutilde; +% param.L = ch.L; +% param.La2 = ch.La2; +% param.b = ch.b; +% param.muvec_i = ch.muvec_i; +% param.sigm2vec_i = ch.sigm2vec_i; +% param.logZ_i = ch.logZ_i; +% param.eta = ch.eta; +% if isfield(gp.lik, 'int_likparam') +% if ~(isfield(gp.lik,'joint_mean_magnitude') && gp.lik.joint_mean_magnitude) +% if isfield(gp.lik, 'int_likparam') && gp.lik.int_likparam +% param.mf2=ch.mf2; +% param.Sigm2=ch.La2; +% end +% if isfield(gp.lik, 'int_magnitude') && gp.lik.int_magnitude +% param.mf3=ch.mf3; +% param.La3=ch.La3; +% end +% else +% param.mf=ch.mf; +% param.Sigm=ch.Sigm; +% param.C=ch.C; +% end +% end else switch gp.latent_opt.optim_method @@ -2085,9 +2077,9 @@ C=C(size(x2,1)+1:end,size(x2,1)+1:end); end - if isequal(gp.latent_opt.init_prev, 'on') && iter==1 && ~isempty(ch) && all(size(w)==size(ch.w)) && all(abs(w-ch.w)<1) && isequal(datahash,ch.datahash) - tautilde=ch.tautilde; - nutilde=ch.nutilde; + if 0%isequal(gp.latent_opt.init_prev, 'on') && iter==1 && ~isempty(ch) && all(size(w)==size(ch.w)) && all(abs(w-ch.w)<1) && isequal(datahash,ch.datahash) +% tautilde=ch.tautilde; +% nutilde=ch.nutilde; else if isequal(gp.latent_opt.parallel,'on') % parallel-EP @@ -2117,7 +2109,7 @@ [logM0, muhat, sigm2hat] = gp.lik.fh.tiltedMoments(gp.lik, y, 1:n, sigm2vec_i, muvec_i, z); end if any(isnan(logM0)) - [e, edata, eprior, param, ch] = set_output_for_notpositivedefinite(); + [e, edata, eprior, param] = set_output_for_notpositivedefinite(); return end % update site parameters @@ -2175,7 +2167,7 @@ % marginal moments [logM0(i1), muhat(i1), sigm2hat(i1)] = gp.lik.fh.tiltedMoments(gp.lik, y, i1, sigm2_i, mu_i, z); if isnan(logM0(i1)) - [e, edata, eprior, param, ch] = set_output_for_notpositivedefinite(); + [e, edata, eprior, param] = set_output_for_notpositivedefinite(); return end % update site parameters @@ -2227,7 +2219,7 @@ B(1:size(B,1)+1:end)=B(1:size(B,1)+1:end)+1; [L,notpositivedefinite] = chol(B,'lower'); if notpositivedefinite - [e, edata, eprior, param, ch] = set_output_for_notpositivedefinite(); + [e, edata, eprior, param] = set_output_for_notpositivedefinite(); return end %V=(L\Stildesqr)*C; @@ -2292,13 +2284,13 @@ % L to return, without the hBh term [L,notpositivedefinite]=chol(B,'lower'); if notpositivedefinite - [e, edata, eprior, param, ch] = set_output_for_notpositivedefinite(); + [e, edata, eprior, param] = set_output_for_notpositivedefinite(); return end % L for the calculation with mean term [L_m,notpositivedefinite]=chol(B_h,'lower'); if notpositivedefinite - [e, edata, eprior, param, ch] = set_output_for_notpositivedefinite(); + [e, edata, eprior, param] = set_output_for_notpositivedefinite(); return end @@ -2379,7 +2371,7 @@ % compute moments of tilted distributions [logM0, muhat, sigm2hat] = gp.lik.fh.tiltedMoments(gp.lik, y, 1:n, sigm2vec_i, muvec_i, z); if any(isnan(logM0)) - [e, edata, eprior, param, ch] = set_output_for_notpositivedefinite(); + [e, edata, eprior, param] = set_output_for_notpositivedefinite(); return end % update site parameters @@ -2441,7 +2433,7 @@ B = ssmult(sqrtS,KsqrtS) + Inn; [VD, notpositivedefinite] = ldlchol(B); if notpositivedefinite - [e, edata, eprior, param, ch] = set_output_for_notpositivedefinite(); + [e, edata, eprior, param] = set_output_for_notpositivedefinite(); return end Knutilde = K*nutilde; @@ -2485,7 +2477,7 @@ end [L, notpositivedefinite] = ldlchol(B); if notpositivedefinite - [e, edata, eprior, param, ch] = set_output_for_notpositivedefinite(); + [e, edata, eprior, param] = set_output_for_notpositivedefinite(); return end @@ -2494,7 +2486,7 @@ if isfield(gp, 'lik_mono') [La2,notpositivedefinite]=chol(Sigm); if notpositivedefinite - [e, edata, eprior, param, ch] = set_output_for_notpositivedefinite(); + [e, edata, eprior, param] = set_output_for_notpositivedefinite(); return end % iter @@ -2524,7 +2516,7 @@ K_uu = (K_uu+K_uu')./2; % ensure the symmetry of K_uu [Luu, notpositivedefinite] = chol(K_uu, 'lower'); if notpositivedefinite - [e, edata, eprior, param, ch] = set_output_for_notpositivedefinite(); + [e, edata, eprior, param] = set_output_for_notpositivedefinite(); return end % Evaluate the Lambda (La) @@ -2542,7 +2534,7 @@ A = K_uu+K_fu'*iLaKfu; A = (A+A')./2; % Ensure symmetry [A, notpositivedefinite] = chol(A); if notpositivedefinite - [e, edata, eprior, param, ch] = set_output_for_notpositivedefinite(); + [e, edata, eprior, param] = set_output_for_notpositivedefinite(); return end L = iLaKfu/A; @@ -2551,7 +2543,7 @@ [R0, notpositivedefinite] = chol(inv(K_uu)); if notpositivedefinite - [e, edata, eprior, param, ch] = set_output_for_notpositivedefinite(); + [e, edata, eprior, param] = set_output_for_notpositivedefinite(); return end R = R0; @@ -2580,7 +2572,7 @@ % compute moments of tilted distributions [logM0, muhat, sigm2hat] = gp.lik.fh.tiltedMoments(gp.lik, y, 1:n, sigm2vec_i, muvec_i, z); if any(isnan(logM0)) - [e, edata, eprior, param, ch] = set_output_for_notpositivedefinite(); + [e, edata, eprior, param] = set_output_for_notpositivedefinite(); return end % update site parameters @@ -2668,7 +2660,7 @@ AA = K_uu + (SsqrtKfu'./repmat(D',m,1))*SsqrtKfu; AA = (AA+AA')/2; [AA, notpositivedefinite] = chol(AA,'lower'); if notpositivedefinite - [e, edata, eprior, param, ch] = set_output_for_notpositivedefinite(); + [e, edata, eprior, param] = set_output_for_notpositivedefinite(); return end term41 = - 0.5*sum(log(1+tautilde.*sigm2vec_i)) - sum(log(diag(Luu))) + sum(log(diag(AA))) + 0.5.*sum(log(D)); @@ -2720,7 +2712,7 @@ K_uu = (K_uu+K_uu')./2; % ensure the symmetry of K_uu [Luu, notpositivedefinite] = chol(K_uu, 'lower'); if notpositivedefinite - [e, edata, eprior, param, ch] = set_output_for_notpositivedefinite(); + [e, edata, eprior, param] = set_output_for_notpositivedefinite(); return end % Evaluate the Lambda (La) @@ -2736,7 +2728,7 @@ Labl{i} = Cbl_ff - Qbl_ff; [Llabl, notpositivedefinite] = chol(Labl{i}); if notpositivedefinite - [e, edata, eprior, param, ch] = set_output_for_notpositivedefinite(); + [e, edata, eprior, param] = set_output_for_notpositivedefinite(); return end iLaKfu(ind{i},:) = Llabl\(Llabl'\K_fu(ind{i},:)); @@ -2745,7 +2737,7 @@ A = (A+A')./2; % Ensure symmetry [A, notpositivedefinite] = chol(A); if notpositivedefinite - [e, edata, eprior, param, ch] = set_output_for_notpositivedefinite(); + [e, edata, eprior, param] = set_output_for_notpositivedefinite(); return end L = iLaKfu/A; @@ -2753,7 +2745,7 @@ [R0, notpositivedefinite] = chol(inv(K_uu)); if notpositivedefinite - [e, edata, eprior, param, ch] = set_output_for_notpositivedefinite(); + [e, edata, eprior, param] = set_output_for_notpositivedefinite(); return end R = R0; @@ -2787,7 +2779,7 @@ % compute moments of tilted distributions [logM0, muhat, sigm2hat] = gp.lik.fh.tiltedMoments(gp.lik, y, 1:n, sigm2vec_i, muvec_i, z); if any(isnan(logM0)) - [e, edata, eprior, param, ch] = set_output_for_notpositivedefinite(); + [e, edata, eprior, param] = set_output_for_notpositivedefinite(); return end % update site parameters @@ -2856,7 +2848,7 @@ Dhat = sdtautilde*Labl{i}*sdtautilde + eye(size(Labl{i})); [Ldhat{i}, notpositivedefinite] = chol(Dhat); if notpositivedefinite - [e, edata, eprior, param, ch] = set_output_for_notpositivedefinite(); + [e, edata, eprior, param] = set_output_for_notpositivedefinite(); return end D{i} = Labl{i} - Labl{i}*sdtautilde*(Ldhat{i}\(Ldhat{i}'\sdtautilde*Labl{i})); @@ -2894,7 +2886,7 @@ AA = K_uu + SsqrtKfu'*iDSsqrtKfu; AA = (AA+AA')/2; [AA, notpositivedefinite] = chol(AA,'lower'); if notpositivedefinite - [e, edata, eprior, param, ch] = set_output_for_notpositivedefinite(); + [e, edata, eprior, param] = set_output_for_notpositivedefinite(); return end term41 = term41 - 0.5*sum(log(1+tautilde.*sigm2vec_i)) - sum(log(diag(Luu))) + sum(log(diag(AA))); @@ -2956,7 +2948,7 @@ K_uu = (K_uu+K_uu')./2; % ensure the symmetry of K_uu [Luu, notpositivedefinite] = chol(K_uu, 'lower'); if notpositivedefinite - [e, edata, eprior, param, ch] = set_output_for_notpositivedefinite(); + [e, edata, eprior, param] = set_output_for_notpositivedefinite(); return end @@ -2987,14 +2979,14 @@ [VD, notpositivedefinite] = ldlchol(La); if notpositivedefinite - [e, edata, eprior, param, ch] = set_output_for_notpositivedefinite(); + [e, edata, eprior, param] = set_output_for_notpositivedefinite(); return end iLaKfu = ldlsolve(VD,K_fu); A = K_uu+K_fu'*iLaKfu; A = (A+A')./2; % Ensure symmetry [A, notpositivedefinite] = chol(A); if notpositivedefinite - [e, edata, eprior, param, ch] = set_output_for_notpositivedefinite(); + [e, edata, eprior, param] = set_output_for_notpositivedefinite(); return end L = iLaKfu/A; @@ -3005,7 +2997,7 @@ sqrtS = sparse(1:n,1:n,0,n,n); [R0, notpositivedefinite] = chol(inv(K_uu)); if notpositivedefinite - [e, edata, eprior, param, ch] = set_output_for_notpositivedefinite(); + [e, edata, eprior, param] = set_output_for_notpositivedefinite(); return end R = R0; @@ -3018,7 +3010,7 @@ LasqrtS = La*sqrtS; [VD, notpositivedefinite] = ldlchol(Inn); if notpositivedefinite - [e, edata, eprior, param, ch] = set_output_for_notpositivedefinite(); + [e, edata, eprior, param] = set_output_for_notpositivedefinite(); return end @@ -3042,7 +3034,7 @@ % compute moments of tilted distributions [logM0, muhat, sigm2hat] = gp.lik.fh.tiltedMoments(gp.lik, y, 1:n, sigm2vec_i, muvec_i, z); if any(isnan(logM0)) - [e, edata, eprior, param, ch] = set_output_for_notpositivedefinite(); + [e, edata, eprior, param] = set_output_for_notpositivedefinite(); return end % update site parameters @@ -3116,7 +3108,7 @@ LasqrtS = ssmult(La,sqrtS); [VD, notpositivedefinite] = ldlchol(D2); if notpositivedefinite - [e, edata, eprior, param, ch] = set_output_for_notpositivedefinite(); + [e, edata, eprior, param] = set_output_for_notpositivedefinite(); return end @@ -3138,7 +3130,7 @@ AA = K_uu + SsqrtKfu'*iDSsqrtKfu; AA = (AA+AA')/2; [AA, notpositivedefinite] = chol(AA,'lower'); if notpositivedefinite - [e, edata, eprior, param, ch] = set_output_for_notpositivedefinite(); + [e, edata, eprior, param] = set_output_for_notpositivedefinite(); return end term41 = - 0.5*sum(log(1+tautilde.*sigm2vec_i)) - sum(log(diag(Luu))) + sum(log(diag(AA))) + 0.5*sum(log(diag(VD))); @@ -3204,7 +3196,7 @@ K_uu = (K_uu+K_uu')./2; % ensure the symmetry of K_uu [Luu, notpositivedefinite] = chol(K_uu, 'lower'); if notpositivedefinite - [e, edata, eprior, param, ch] = set_output_for_notpositivedefinite(); + [e, edata, eprior, param] = set_output_for_notpositivedefinite(); return end % Evaluate the Lambda (La) @@ -3240,7 +3232,7 @@ % compute moments of tilted distributions [logM0, muhat, sigm2hat] = gp.lik.fh.tiltedMoments(gp.lik, y, 1:n, sigm2vec_i, muvec_i, z); if any(isnan(logM0)) - [e, edata, eprior, param, ch] = set_output_for_notpositivedefinite(); + [e, edata, eprior, param] = set_output_for_notpositivedefinite(); return end % update site parameters @@ -3302,7 +3294,7 @@ AA = eye(m,m) + SsqrtPhi'*SsqrtPhi; AA = (AA+AA')/2; [AA, notpositivedefinite] = chol(AA,'lower'); if notpositivedefinite - [e, edata, eprior, param, ch] = set_output_for_notpositivedefinite(); + [e, edata, eprior, param] = set_output_for_notpositivedefinite(); return end term41 = - 0.5*sum(log(1+tautilde.*sigm2vec_i)) + sum(log(diag(AA))); @@ -3446,7 +3438,7 @@ [Kv_ff, Cv_ff] = gp_trvar(gp,x); [Luu, notpositivedefinite] = chol(K_uu, 'lower'); if notpositivedefinite - [e, edata, eprior, param, ch] = set_output_for_notpositivedefinite(); + [e, edata, eprior, param] = set_output_for_notpositivedefinite(); return end B=Luu\(K_fu'); @@ -4178,19 +4170,20 @@ end param.mf=mf; - % store values to the cache - ch=param; - ch.w = w; - ch.e = e; - ch.edata = edata; - ch.eprior = eprior; - ch.datahash = datahash; +% % store values to the cache +% ch=param; +% ch.w = w; +% ch.e = e; +% ch.edata = edata; +% ch.eprior = eprior; +% ch.datahash = datahash; end end - end + end - function [e, edata, eprior, param, ch] = set_output_for_notpositivedefinite() + + function [e, edata, eprior, param] = set_output_for_notpositivedefinite() % Instead of stopping to chol error, return NaN e = NaN; edata = NaN; @@ -4207,15 +4200,14 @@ param.mf3=NaN; param.La3=NaN; param.mf2=NaN; - ch=param; - ch.e = e; - ch.edata = edata; - ch.eprior = eprior; - ch.datahash = NaN; - ch.w = NaN; +% ch=param; +% ch.e = e; +% ch.edata = edata; +% ch.eprior = eprior; +% ch.datahash = NaN; +% ch.w = NaN; end -end function [m_q,S_q,lnZ_q,L1,L2]=evaluate_q(nu_q,tau_q,K,display) diff --git a/gp/gpep_g.m b/gp/gpep_g.m index 8927361b..2f7377d8 100644 --- a/gp/gpep_g.m +++ b/gp/gpep_g.m @@ -31,15 +31,13 @@ ip=inputParser; ip.FunctionName = 'GPEP_G'; - ip.addRequired('w', @(x) isvector(x) && isreal(x) && all(isfinite(x))); - ip.addRequired('gp',@isstruct); - ip.addRequired('x', @(x) ~isempty(x) && isreal(x) && all(isfinite(x(:)))) - ip.addRequired('y', @(x) ~isempty(x) && isreal(x) && all(isfinite(x(:)))) - ip.addParamValue('z', [], @(x) isreal(x) && all(isfinite(x(:)))) - ip.addOptional('method', '1', @(x) ismember(x,{'1','2'})) - ip.parse(w, gp, x, y, varargin{:}); + ip=iparser(ip,'addRequired','w', @(x) isvector(x) && isreal(x) && all(isfinite(x))); + ip=iparser(ip,'addRequired','gp',@isstruct); + ip=iparser(ip,'addRequired','x', @(x) ~isempty(x) && isreal(x) && all(isfinite(x(:)))); + ip=iparser(ip,'addRequired','y', @(x) ~isempty(x) && isreal(x) && all(isfinite(x(:)))); + ip=iparser(ip,'addParamValue','z', [], @(x) isreal(x) && all(isfinite(x(:)))); + ip=iparser(ip,'parse',w, gp, x, y, varargin{:}); z=ip.Results.z; - method = ip.Results.method; gp=gp_unpak(gp, w); % unpak the parameters [tmp,tmp,hier]=gp_pak(gp);% Hierarchy of the parameters @@ -148,15 +146,15 @@ gprior_cf = -feval(gpcf.fh.lpg, gpcf); % check in which components the covariance function is present - do = false(nout,1); + doo = false(nout,1); if multicf for z1=1:nout if any(gp.comp_cf{z1}==i) - do(z1) = true; + doo(z1) = true; end end else - do = true(nout,1); + doo = true(nout,1); end for i2 = 1:length(DKff) @@ -165,7 +163,7 @@ Cdl=0; DKffb=zeros(n*nout,1); for z1=1:nout - if do(z1) + if doo(z1) DKffb((1:n)+(z1-1)*n)=DKff{i2}*b((1:n)+(z1-1)*n); Cdl = Cdl + sum(sum( M(:,:,z1) .* DKff{i2} )); end @@ -1563,4 +1561,4 @@ end -end \ No newline at end of file +end diff --git a/gp/gpep_jpred.m b/gp/gpep_jpred.m index e55aa880..02010dbb 100644 --- a/gp/gpep_jpred.m +++ b/gp/gpep_jpred.m @@ -84,23 +84,23 @@ ip=inputParser; ip.FunctionName = 'GPEP_JPRED'; - ip.addRequired('gp', @isstruct); - ip.addRequired('x', @(x) ~isempty(x) && isreal(x) && all(isfinite(x(:)))) - ip.addRequired('y', @(x) ~isempty(x) && isreal(x) && all(isfinite(x(:)))) - ip.addOptional('xt', [], @(x) isempty(x) || (isreal(x) && all(isfinite(x(:))))) - ip.addParamValue('yt', [], @(x) isreal(x) && all(isfinite(x(:)))) - ip.addParamValue('z', [], @(x) isreal(x) && all(isfinite(x(:)))) - ip.addParamValue('zt', [], @(x) isreal(x) && all(isfinite(x(:)))) - ip.addParamValue('predcf', [], @(x) isempty(x) || ... - isvector(x) && isreal(x) && all(isfinite(x)&x>0)) - ip.addParamValue('tstind', [], @(x) isempty(x) || iscell(x) ||... - (isvector(x) && isreal(x) && all(isfinite(x)&x>0))) - ip.addParamValue('fcorr', 'off', @(x) ismember(x, {'off', 'fact', 'cm2', 'on'})) + ip=iparser(ip,'addRequired','gp', @isstruct); + ip=iparser(ip,'addRequired','x', @(x) ~isempty(x) && isreal(x) && all(isfinite(x(:)))); + ip=iparser(ip,'addRequired','y', @(x) ~isempty(x) && isreal(x) && all(isfinite(x(:)))); + ip=iparser(ip,'addOptional','xt', [], @(x) isempty(x) || (isreal(x) && all(isfinite(x(:))))); + ip=iparser(ip,'addParamValue','yt', [], @(x) isreal(x) && all(isfinite(x(:)))); + ip=iparser(ip,'addParamValue','z', [], @(x) isreal(x) && all(isfinite(x(:)))); + ip=iparser(ip,'addParamValue','zt', [], @(x) isreal(x) && all(isfinite(x(:)))); + ip=iparser(ip,'addParamValue','predcf', [], @(x) isempty(x) || ... + isvector(x) && isreal(x) && all(isfinite(x)&x>0)); + ip=iparser(ip,'addParamValue','tstind', [], @(x) isempty(x) || iscell(x) ||... + (isvector(x) && isreal(x) && all(isfinite(x)&x>0))); + ip=iparser(ip,'addParamValue','fcorr', 'off', @(x) ismember(x, {'off', 'fact', 'cm2', 'on'})); if numel(varargin)==0 || isnumeric(varargin{1}) % inputParser should handle this, but it doesn't - ip.parse(gp, x, y, varargin{:}); + ip=iparser(ip,'parse',gp, x, y, varargin{:}); else - ip.parse(gp, x, y, [], varargin{:}); + ip=iparser(ip,'parse',gp, x, y, [], varargin{:}); end xt=ip.Results.xt; yt=ip.Results.yt; diff --git a/gp/gpep_looe.m b/gp/gpep_looe.m index 2d9b58a0..8a71c967 100644 --- a/gp/gpep_looe.m +++ b/gp/gpep_looe.m @@ -41,13 +41,13 @@ ip=inputParser; ip.FunctionName = 'GPEP_LOOE'; -ip.addRequired('w', @(x) isempty(x) || ... +ip=iparser(ip,'addRequired','w', @(x) isempty(x) || ... isvector(x) && isreal(x) && all(isfinite(x))); -ip.addRequired('gp', @(x) isstruct(x) || iscell(x)); -ip.addRequired('x', @(x) ~isempty(x) && isreal(x) && all(isfinite(x(:)))) -ip.addRequired('y', @(x) ~isempty(x) && isreal(x) && all(isfinite(x(:)))) -ip.addParamValue('z', [], @(x) isreal(x) && all(isfinite(x(:)))) -ip.parse(w, gp, x, y, varargin{:}); +ip=iparser(ip,'addRequired','gp', @(x) isstruct(x) || iscell(x)); +ip=iparser(ip,'addRequired','x', @(x) ~isempty(x) && isreal(x) && all(isfinite(x(:)))); +ip=iparser(ip,'addRequired','y', @(x) ~isempty(x) && isreal(x) && all(isfinite(x(:)))); +ip=iparser(ip,'addParamValue','z', [], @(x) isreal(x) && all(isfinite(x(:)))); +ip=iparser(ip,'parse',w, gp, x, y, varargin{:}); z=ip.Results.z; gp=gp_unpak(gp, w); diff --git a/gp/gpep_loog.m b/gp/gpep_loog.m index 705e3d08..70a291a4 100644 --- a/gp/gpep_loog.m +++ b/gp/gpep_loog.m @@ -27,13 +27,13 @@ ip=inputParser; ip.FunctionName = 'GPEP_LOOG'; -ip.addRequired('w', @(x) isempty(x) || ... +ip=iparser(ip,'addRequired','w', @(x) isempty(x) || ... isvector(x) && isreal(x) && all(isfinite(x))); -ip.addRequired('gp', @(x) isstruct(x) || iscell(x)); -ip.addRequired('x', @(x) ~isempty(x) && isreal(x) && all(isfinite(x(:)))) -ip.addRequired('y', @(x) ~isempty(x) && isreal(x) && all(isfinite(x(:)))) -ip.addParamValue('z', [], @(x) isreal(x) && all(isfinite(x(:)))) -ip.parse(w, gp, x, y, varargin{:}); +ip=iparser(ip,'addRequired','gp', @(x) isstruct(x) || iscell(x)); +ip=iparser(ip,'addRequired','x', @(x) ~isempty(x) && isreal(x) && all(isfinite(x(:)))); +ip=iparser(ip,'addRequired','y', @(x) ~isempty(x) && isreal(x) && all(isfinite(x(:)))); +ip=iparser(ip,'addParamValue','z', [], @(x) isreal(x) && all(isfinite(x(:)))); +ip=iparser(ip,'parse',w, gp, x, y, varargin{:}); z=ip.Results.z; if isfield(gp,'mean') & ~isempty(gp.mean.meanFuncs) diff --git a/gp/gpep_loopred.m b/gp/gpep_loopred.m index ae3f9223..e89362d7 100644 --- a/gp/gpep_loopred.m +++ b/gp/gpep_loopred.m @@ -41,11 +41,11 @@ ip=inputParser; ip.FunctionName = 'GPEP_LOOPRED'; - ip.addRequired('gp', @(x) isstruct(x)); - ip.addRequired('x', @(x) ~isempty(x) && isreal(x) && all(isfinite(x(:)))) - ip.addRequired('y', @(x) ~isempty(x) && isreal(x) && all(isfinite(x(:)))) - ip.addParamValue('z', [], @(x) isreal(x) && all(isfinite(x(:)))) - ip.parse(gp, x, y, varargin{:}); + ip=iparser(ip,'addRequired','gp', @(x) isstruct(x)); + ip=iparser(ip,'addRequired','x', @(x) ~isempty(x) && isreal(x) && all(isfinite(x(:)))); + ip=iparser(ip,'addRequired','y', @(x) ~isempty(x) && isreal(x) && all(isfinite(x(:)))); + ip=iparser(ip,'addParamValue','z', [], @(x) isreal(x) && all(isfinite(x(:)))); + ip=iparser(ip,'parse',gp, x, y, varargin{:}); z=ip.Results.z; [tmp,tmp,tmp,param] = gpep_e(gp_pak(gp), gp, x, y, 'z', z); diff --git a/gp/gpep_pred.m b/gp/gpep_pred.m index 8d76255c..e9d5248a 100644 --- a/gp/gpep_pred.m +++ b/gp/gpep_pred.m @@ -81,62 +81,61 @@ % License (version 3 or later); please refer to the file % License.txt, included with the software, for details. - ip=inputParser; - ip.FunctionName = 'GPEP_PRED'; - ip.addRequired('gp', @isstruct); - ip.addRequired('x', @(x) ~isempty(x) && isreal(x) && all(isfinite(x(:)))) - ip.addRequired('y', @(x) ~isempty(x) && isreal(x) && all(isfinite(x(:)))) - ip.addOptional('xt', [], @(x) isempty(x) || (isreal(x) && all(isfinite(x(:))))) - ip.addParamValue('yt', [], @(x) isreal(x) && all(isfinite(x(:)))) - ip.addParamValue('z', [], @(x) isreal(x) && all(isfinite(x(:)))) - ip.addParamValue('zt', [], @(x) isreal(x) && all(isfinite(x(:)))) - ip.addParamValue('predcf', [], @(x) isempty(x) || ... - isvector(x) && isreal(x) && all(isfinite(x)&x>0)) - ip.addParamValue('tstind', [], @(x) isempty(x) || iscell(x) ||... - (isvector(x) && isreal(x) && all(isfinite(x)&x>0))) - ip.addParamValue('fcorr', 'off', @(x) ismember(x, {'off', ... - 'cm2', 'fact', 'on','lr'})) - if numel(varargin)==0 || isnumeric(varargin{1}) - % inputParser should handle this, but it doesn't - ip.parse(gp, x, y, varargin{:}); - else - ip.parse(gp, x, y, [], varargin{:}); - end - xt=ip.Results.xt; - yt=ip.Results.yt; - z=ip.Results.z; - zt=ip.Results.zt; - predcf=ip.Results.predcf; - tstind=ip.Results.tstind; - fcorr=ip.Results.fcorr; - if isempty(xt) - xt=x; - if isempty(tstind) - if iscell(gp) - gptype=gp{1}.type; - else - gptype=gp.type; - end - switch gptype - case {'FULL' 'VAR' 'DTC' 'SOR'} - tstind = []; - case {'FIC' 'CS+FIC'} - tstind = 1:size(x,1); - case 'PIC' - if iscell(gp) - tstind = gp{1}.tr_index; - else - tstind = gp.tr_index; - end - end - end - if isempty(yt) - yt=y; +ip=inputParser; +ip.FunctionName = 'GPEP_PRED'; +ip=iparser(ip,'addRequired','gp', @isstruct); +ip=iparser(ip,'addRequired','x', @(x) ~isempty(x) && isreal(x) && all(isfinite(x(:)))); +ip=iparser(ip,'addRequired','y', @(x) ~isempty(x) && isreal(x) && all(isfinite(x(:)))); +ip=iparser(ip,'addOptional','xt', [], @(x) isempty(x) || (isreal(x) && all(isfinite(x(:))))); +ip=iparser(ip,'addParamValue','yt', [], @(x) isreal(x) && all(isfinite(x(:)))); +ip=iparser(ip,'addParamValue','z', [], @(x) isreal(x) && all(isfinite(x(:)))); +ip=iparser(ip,'addParamValue','zt', [], @(x) isreal(x) && all(isfinite(x(:)))); +ip=iparser(ip,'addParamValue','predcf', [], @(x) isempty(x) || ... + isvector(x) && isreal(x) && all(isfinite(x)&x>0)); +ip=iparser(ip,'addParamValue','tstind', [], @(x) isempty(x) || iscell(x) ||... + (isvector(x) && isreal(x) && all(isfinite(x)&x>0))); +ip=iparser(ip,'addParamValue','fcorr', 'off', @(x) ismember(x, {'off', 'fact', 'cm2', 'on','lr'})); +if numel(varargin)==0 || isnumeric(varargin{1}) + % inputParser should handle this, but it doesn't + ip=iparser(ip,'parse',gp, x, y, varargin{:}); +else + ip=iparser(ip,'parse',gp, x, y, [], varargin{:}); +end +xt=ip.Results.xt; +yt=ip.Results.yt; +z=ip.Results.z; +zt=ip.Results.zt; +predcf=ip.Results.predcf; +tstind=ip.Results.tstind; +fcorr=ip.Results.fcorr; +if isempty(xt) + xt=x; + if isempty(tstind) + if iscell(gp) + gptype=gp{1}.type; + else + gptype=gp.type; end - if isempty(zt) - zt=z; + switch gptype + case {'FULL' 'VAR' 'DTC' 'SOR'} + tstind = []; + case {'FIC' 'CS+FIC'} + tstind = 1:size(x,1); + case 'PIC' + if iscell(gp) + tstind = gp{1}.tr_index; + else + tstind = gp.tr_index; + end end end + if isempty(yt) + yt=y; + end + if isempty(zt) + zt=z; + end +end [tn, tnin] = size(x); [n, nout] = size(y); @@ -835,6 +834,7 @@ end end + function [m,S]=pred_var(tau_q,K,A,b) % helper function for determining diff --git a/gp/gpep_predgrad.m b/gp/gpep_predgrad.m index 9faccca5..407dea3e 100644 --- a/gp/gpep_predgrad.m +++ b/gp/gpep_predgrad.m @@ -67,24 +67,24 @@ % License.txt, included with the software, for details. ip=inputParser; - ip.FunctionName = 'GPEP_PRED'; - ip.addRequired('gp', @isstruct); - ip.addRequired('x', @(x) ~isempty(x) && isreal(x) && all(isfinite(x(:)))) - ip.addRequired('y', @(x) ~isempty(x) && isreal(x) && all(isfinite(x(:)))) - ip.addOptional('xt', [], @(x) isempty(x) || (isreal(x) && all(isfinite(x(:))))) - ip.addParamValue('yt', [], @(x) isreal(x) && all(isfinite(x(:)))) - ip.addParamValue('z', [], @(x) isreal(x) && all(isfinite(x(:)))) - ip.addParamValue('zt', [], @(x) isreal(x) && all(isfinite(x(:)))) - ip.addParamValue('predcf', [], @(x) isempty(x) || ... - isvector(x) && isreal(x) && all(isfinite(x)&x>0)) - ip.addParamValue('tstind', [], @(x) isempty(x) || iscell(x) ||... - (isvector(x) && isreal(x) && all(isfinite(x)&x>0))) - ip.addParamValue('fcorr', 'off', @(x) ismember(x, {'off', 'fact', 'cm2', 'on'})) + ip.FunctionName = 'GPEP_PREDGRAD'; + ip=iparser(ip,'addRequired','gp', @isstruct); + ip=iparser(ip,'addRequired','x', @(x) ~isempty(x) && isreal(x) && all(isfinite(x(:)))); + ip=iparser(ip,'addRequired','y', @(x) ~isempty(x) && isreal(x) && all(isfinite(x(:)))); + ip=iparser(ip,'addOptional','xt', [], @(x) isempty(x) || (isreal(x) && all(isfinite(x(:))))); + ip=iparser(ip,'addParamValue','yt', [], @(x) isreal(x) && all(isfinite(x(:)))); + ip=iparser(ip,'addParamValue','z', [], @(x) isreal(x) && all(isfinite(x(:)))); + ip=iparser(ip,'addParamValue','zt', [], @(x) isreal(x) && all(isfinite(x(:)))); + ip=iparser(ip,'addParamValue','predcf', [], @(x) isempty(x) || ... + isvector(x) && isreal(x) && all(isfinite(x)&x>0)); + ip=iparser(ip,'addParamValue','tstind', [], @(x) isempty(x) || iscell(x) ||... + (isvector(x) && isreal(x) && all(isfinite(x)&x>0))); + ip=iparser(ip,'addParamValue','fcorr', 'off', @(x) ismember(x, {'off', 'fact', 'cm2', 'on'})); if numel(varargin)==0 || isnumeric(varargin{1}) % inputParser should handle this, but it doesn't - ip.parse(gp, x, y, varargin{:}); + ip=iparser(ip,'parse',gp, x, y, varargin{:}); else - ip.parse(gp, x, y, [], varargin{:}); + ip=iparser(ip,'parse',gp, x, y, [], varargin{:}); end xt=ip.Results.xt; yt=ip.Results.yt; diff --git a/gp/gpia_jpred.m b/gp/gpia_jpred.m index 468f83ba..7abfa43d 100644 --- a/gp/gpia_jpred.m +++ b/gp/gpia_jpred.m @@ -80,22 +80,22 @@ ip=inputParser; ip.FunctionName = 'GPIA_JPRED'; - ip.addRequired('gp_array', @iscell); - ip.addRequired('x', @(x) ~isempty(x) && isreal(x) && all(isfinite(x(:)))) - ip.addRequired('y', @(x) ~isempty(x) && isreal(x) && all(isfinite(x(:)))) - ip.addOptional('xt', [], @(x) isempty(x) || (isreal(x) && all(isfinite(x(:))))) - ip.addParamValue('yt', [], @(x) isreal(x) && all(isfinite(x(:)))) - ip.addParamValue('z', [], @(x) isreal(x) && all(isfinite(x(:)))) - ip.addParamValue('zt', [], @(x) isreal(x) && all(isfinite(x(:)))) - ip.addParamValue('predcf', [], @(x) isempty(x) || ... - isvector(x) && isreal(x) && all(isfinite(x)&x>0)) - ip.addParamValue('tstind', [], @(x) isempty(x) || iscell(x) ||... - (isvector(x) && isreal(x) && all(isfinite(x)&x>0))) + ip=iparser(ip,'addRequired','gp_array', @iscell); + ip=iparser(ip,'addRequired','x', @(x) ~isempty(x) && isreal(x) && all(isfinite(x(:)))); + ip=iparser(ip,'addRequired','y', @(x) ~isempty(x) && isreal(x) && all(isfinite(x(:)))); + ip=iparser(ip,'addOptional','xt', [], @(x) isempty(x) || (isreal(x) && all(isfinite(x(:))))); + ip=iparser(ip,'addParamValue','yt', [], @(x) isreal(x) && all(isfinite(x(:)))); + ip=iparser(ip,'addParamValue','z', [], @(x) isreal(x) && all(isfinite(x(:)))); + ip=iparser(ip,'addParamValue','zt', [], @(x) isreal(x) && all(isfinite(x(:)))); + ip=iparser(ip,'addParamValue','predcf', [], @(x) isempty(x) || ... + isvector(x) && isreal(x) && all(isfinite(x)&x>0)); + ip=iparser(ip,'addParamValue','tstind', [], @(x) isempty(x) || iscell(x) ||... + (isvector(x) && isreal(x) && all(isfinite(x)&x>0))); if numel(varargin)==0 || isnumeric(varargin{1}) % inputParser should handle this, but it doesn't - ip.parse(gp_array, x, y, varargin{:}); + ip=iparser(ip,'parse',gp_array, x, y, varargin{:}); else - ip.parse(gp_array, x, y, [], varargin{:}); + ip=iparser(ip,'parse',gp_array, x, y, [], varargin{:}); end xt=ip.Results.xt; yt=ip.Results.yt; diff --git a/gp/gpia_jpreds.m b/gp/gpia_jpreds.m index c345a159..8a36039e 100644 --- a/gp/gpia_jpreds.m +++ b/gp/gpia_jpreds.m @@ -69,22 +69,22 @@ ip=inputParser; ip.FunctionName = 'GPIA_JPREDS'; - ip.addRequired('gp_array', @iscell); - ip.addRequired('x', @(x) ~isempty(x) && isreal(x) && all(isfinite(x(:)))) - ip.addRequired('y', @(x) ~isempty(x) && isreal(x) && all(isfinite(x(:)))) - ip.addOptional('xt', [], @(x) isempty(x) || (isreal(x) && all(isfinite(x(:))))) - ip.addParamValue('yt', [], @(x) isreal(x) && all(isfinite(x(:)))) - ip.addParamValue('z', [], @(x) isreal(x) && all(isfinite(x(:)))) - ip.addParamValue('zt', [], @(x) isreal(x) && all(isfinite(x(:)))) - ip.addParamValue('predcf', [], @(x) isempty(x) || ... - isvector(x) && isreal(x) && all(isfinite(x)&x>0)) - ip.addParamValue('tstind', [], @(x) isempty(x) || iscell(x) ||... - (isvector(x) && isreal(x) && all(isfinite(x)&x>0))) + ip=iparser(ip,'addRequired','gp_array', @iscell); + ip=iparser(ip,'addRequired','x', @(x) ~isempty(x) && isreal(x) && all(isfinite(x(:)))); + ip=iparser(ip,'addRequired','y', @(x) ~isempty(x) && isreal(x) && all(isfinite(x(:)))); + ip=iparser(ip,'addOptional','xt', [], @(x) isempty(x) || (isreal(x) && all(isfinite(x(:))))); + ip=iparser(ip,'addParamValue','yt', [], @(x) isreal(x) && all(isfinite(x(:)))); + ip=iparser(ip,'addParamValue','z', [], @(x) isreal(x) && all(isfinite(x(:)))); + ip=iparser(ip,'addParamValue','zt', [], @(x) isreal(x) && all(isfinite(x(:)))); + ip=iparser(ip,'addParamValue','predcf', [], @(x) isempty(x) || ... + isvector(x) && isreal(x) && all(isfinite(x)&x>0)); + ip=iparser(ip,'addParamValue','tstind', [], @(x) isempty(x) || iscell(x) ||... + (isvector(x) && isreal(x) && all(isfinite(x)&x>0))); if numel(varargin)==0 || isnumeric(varargin{1}) % inputParser should handle this, but it doesn't - ip.parse(gp_array, x, y, varargin{:}); + ip=iparser(ip,'parse',gp_array, x, y, varargin{:}); else - ip.parse(gp_array, x, y, [], varargin{:}); + ip=iparser(ip,'parse',gp_array, x, y, [], varargin{:}); end xt=ip.Results.xt; yt=ip.Results.yt; diff --git a/gp/gpia_loopred.m b/gp/gpia_loopred.m index f2880780..5a0beffd 100644 --- a/gp/gpia_loopred.m +++ b/gp/gpia_loopred.m @@ -47,12 +47,12 @@ ip=inputParser; ip.FunctionName = 'GPIA_LOOPRED'; - ip.addRequired('gp_array',@iscell); - ip.addRequired('x', @(x) ~isempty(x) && isreal(x) && all(isfinite(x(:)))) - ip.addRequired('y', @(x) ~isempty(x) && isreal(x) && all(isfinite(x(:)))) - ip.addParamValue('z', [], @(x) isreal(x) && all(isfinite(x(:)))) - ip.addParamValue('is', 'on', @(x) ismember(x,{'on' 'off'})) - ip.parse(gp_array, x, y, varargin{:}); + ip=iparser(ip,'addRequired','gp_array',@iscell); + ip=iparser(ip,'addRequired','x', @(x) ~isempty(x) && isreal(x) && all(isfinite(x(:)))); + ip=iparser(ip,'addRequired','y', @(x) ~isempty(x) && isreal(x) && all(isfinite(x(:)))); + ip=iparser(ip,'addParamValue','z', [], @(x) isreal(x) && all(isfinite(x(:)))); + ip=iparser(ip,'addParamValue','is', 'on', @(x) ismember(x,{'on' 'off'})); + ip=iparser(ip,'parse',gp_array, x, y, varargin{:}); z=ip.Results.z; is=ip.Results.is; diff --git a/gp/gpia_pred.m b/gp/gpia_pred.m index bac7ef7d..d432879d 100644 --- a/gp/gpia_pred.m +++ b/gp/gpia_pred.m @@ -83,23 +83,23 @@ ip=inputParser; ip.FunctionName = 'GPIA_PRED'; - ip.addRequired('gp_array', @iscell); - ip.addRequired('x', @(x) ~isempty(x) && isreal(x) && all(isfinite(x(:)))) - ip.addRequired('y', @(x) ~isempty(x) && isreal(x) && all(isfinite(x(:)))) - ip.addOptional('xt', [], @(x) isempty(x) || (isreal(x) && all(isfinite(x(:))))) - ip.addParamValue('yt', [], @(x) isreal(x) && all(isfinite(x(:)))) - ip.addParamValue('z', [], @(x) isreal(x) && all(isfinite(x(:)))) - ip.addParamValue('zt', [], @(x) isreal(x) && all(isfinite(x(:)))) - ip.addParamValue('predcf', [], @(x) isempty(x) || ... - isvector(x) && isreal(x) && all(isfinite(x)&x>0)) - ip.addParamValue('tstind', [], @(x) isempty(x) || iscell(x) ||... - (isvector(x) && isreal(x) && all(isfinite(x)&x>0))) - ip.addParamValue('fcorr', 'off', @(x) ismember(x, {'off', 'fact', 'cm2', 'on'})); + ip=iparser(ip,'addRequired','gp_array', @iscell); + ip=iparser(ip,'addRequired','x', @(x) ~isempty(x) && isreal(x) && all(isfinite(x(:)))); + ip=iparser(ip,'addRequired','y', @(x) ~isempty(x) && isreal(x) && all(isfinite(x(:)))); + ip=iparser(ip,'addOptional','xt', [], @(x) isempty(x) || (isreal(x) && all(isfinite(x(:))))); + ip=iparser(ip,'addParamValue','yt', [], @(x) isreal(x) && all(isfinite(x(:)))); + ip=iparser(ip,'addParamValue','z', [], @(x) isreal(x) && all(isfinite(x(:)))); + ip=iparser(ip,'addParamValue','zt', [], @(x) isreal(x) && all(isfinite(x(:)))); + ip=iparser(ip,'addParamValue','predcf', [], @(x) isempty(x) || ... + isvector(x) && isreal(x) && all(isfinite(x)&x>0)); + ip=iparser(ip,'addParamValue','tstind', [], @(x) isempty(x) || iscell(x) ||... + (isvector(x) && isreal(x) && all(isfinite(x)&x>0))); + ip=iparser(ip,'addParamValue','fcorr', 'off', @(x) ismember(x, {'off', 'fact', 'cm2', 'on'})); if numel(varargin)==0 || isnumeric(varargin{1}) % inputParser should handle this, but it doesn't - ip.parse(gp_array, x, y, varargin{:}); + ip=iparser(ip,'parse',gp_array, x, y, varargin{:}); else - ip.parse(gp_array, x, y, [], varargin{:}); + ip=iparser(ip,'parse',gp_array, x, y, [], varargin{:}); end xt=ip.Results.xt; yt=ip.Results.yt; diff --git a/gp/gpla_e.m b/gp/gpla_e.m index 3c7d5719..46ffe3ec 100644 --- a/gp/gpla_e.m +++ b/gp/gpla_e.m @@ -67,16 +67,16 @@ % parse inputs ip=inputParser; ip.FunctionName = 'GPLA_E'; - ip.addRequired('w', @(x) ... - isempty(x) || ... - (ischar(x) && strcmp(w, 'init')) || ... - isvector(x) && isreal(x) && all(isfinite(x)) ... - || all(isnan(x))); - ip.addRequired('gp',@isstruct); - ip.addOptional('x', @(x) isnumeric(x) && isreal(x) && all(isfinite(x(:)))) - ip.addOptional('y', @(x) isnumeric(x) && isreal(x) && all(isfinite(x(:)))) - ip.addParamValue('z', [], @(x) isnumeric(x) && isreal(x) && all(isfinite(x(:)))) - ip.parse(w, gp, varargin{:}); + ip=iparser(ip,'addRequired','w', @(x) ... + isempty(x) || ... + (ischar(x) && strcmp(w, 'init')) || ... + isvector(x) && isreal(x) && all(isfinite(x)) ... + || all(isnan(x))); + ip=iparser(ip,'addRequired','gp',@isstruct); + ip=iparser(ip,'addOptional','x', @(x) isnumeric(x) && isreal(x) && all(isfinite(x(:)))); + ip=iparser(ip,'addOptional','y', @(x) isnumeric(x) && isreal(x) && all(isfinite(x(:)))); + ip=iparser(ip,'addParamValue','z', [], @(x) isnumeric(x) && isreal(x) && all(isfinite(x(:)))); + ip=iparser(ip,'parse',w, gp, varargin{:}); x=ip.Results.x; y=ip.Results.y; z=ip.Results.z; @@ -94,7 +94,7 @@ gp.fh.pred=@gpla_pred; gp.fh.jpred=@gpla_jpred; gp.fh.looe=@gpla_looe; - gp.fh.loog=@gpla_loog; +% gp.fh.loog=@gpla_loog; gp.fh.loopred=@gpla_loopred; e = gp; % remove clutter from the nested workspace @@ -109,33 +109,22 @@ [e, edata, eprior, param] = gp.fh.ne(w, gp, x, y, z); end +end function [e, edata, eprior, param] = laplace_algorithm(w, gp, x, y, z) - if strcmp(w, 'clearcache') - ch=[]; - return - end - % code for the Laplace algorithm - - % check whether saved values can be used - if isempty(z) - datahash=hash_sha512([x y]); - else - datahash=hash_sha512([x y z]); - end - if ~isempty(ch) && all(size(w)==size(ch.w)) && all(abs(w-ch.w)<1e-8) && ... - isequal(datahash,ch.datahash) - % The covariance function parameters or data haven't changed so we - % can return the energy and the site parameters that are - % saved in the cache - e = ch.e; - edata = ch.edata; - eprior = ch.eprior; - param.f = ch.f; - param.L = ch.L; - param.La2 = ch.La2; - param.a = ch.a; - param.p = ch.p; + if 0%~isempty(ch) && all(size(w)==size(ch.w)) && all(abs(w-ch.w)<1e-8) && ... +% isequal(datahash,ch.datahash) +% % The covariance function parameters or data haven't changed so we +% % can return the energy and the site parameters that are +% % saved in the cache +% e = ch.e; +% edata = ch.edata; +% eprior = ch.eprior; +% param.f = ch.f; +% param.L = ch.L; +% param.La2 = ch.La2; +% param.a = ch.a; +% param.p = ch.p; else % The parameters or data have changed since % the last call for gpla_e. In this case we need to @@ -212,7 +201,7 @@ [L, notpositivedefinite] = chol(L); end if notpositivedefinite - [edata,e,eprior,param,ch] = set_output_for_notpositivedefinite(); + [edata,e,eprior,param] = set_output_for_notpositivedefinite(); return end if ~isfield(gp,'meanf') @@ -226,7 +215,7 @@ a = b - sW.*(L\(L'\(sW.*(K*b)))); end if any(isnan(a)) - [edata,e,eprior,param,ch] = set_output_for_notpositivedefinite(); + [edata,e,eprior,param] = set_output_for_notpositivedefinite(); return end f = K*a; @@ -315,7 +304,7 @@ [L, notpositivedefinite] = chol(L); end if notpositivedefinite - [edata,e,eprior,param,ch] = set_output_for_notpositivedefinite(); + [edata,e,eprior,param] = set_output_for_notpositivedefinite(); return end b = W.*f+dlp; @@ -357,14 +346,14 @@ if issparse(K) [LD,notpositivedefinite] = ldlchol(K); if notpositivedefinite - [edata,e,eprior,param,ch] = set_output_for_notpositivedefinite(); + [edata,e,eprior,param] = set_output_for_notpositivedefinite(); return end fhm = @(W, f, varargin) (ldlsolve(LD,f) + repmat(W,1,size(f,2)).*f); % W*f; % else [LD,notpositivedefinite] = chol(K); if notpositivedefinite - [edata,e,eprior,param,ch] = set_output_for_notpositivedefinite(); + [edata,e,eprior,param] = set_output_for_notpositivedefinite(); return end fhm = @(W, f, varargin) (LD\(LD'\f) + repmat(W,1,size(f,2)).*f); % W*f; % @@ -403,7 +392,7 @@ case 'lik_specific' [f, a] = gp.lik.fh.optimizef(gp, y, K); if isnan(f) - [edata,e,eprior,param,ch] = set_output_for_notpositivedefinite(); + [edata,e,eprior,param] = set_output_for_notpositivedefinite(); return end otherwise @@ -436,7 +425,7 @@ edata = logZ + sum(log(diag(L))); % 0.5*log(det(eye(size(K)) + K*W)) ; % end if notpositivedefinite - [edata,e,eprior,param,ch] = set_output_for_notpositivedefinite(); + [edata,e,eprior,param] = set_output_for_notpositivedefinite(); return end else @@ -452,7 +441,7 @@ [L, notpositivedefinite] = chol(K); if notpositivedefinite - [edata,e,eprior,param,ch] = set_output_for_notpositivedefinite(); + [edata,e,eprior,param] = set_output_for_notpositivedefinite(); return end L1 = L; @@ -469,7 +458,7 @@ if ~isfield(gp.lik.fh,'upfact') % log-concave likelihood, this should not happen % let's just return NaN - [edata,e,eprior,param,ch] = set_output_for_notpositivedefinite(); + [edata,e,eprior,param] = set_output_for_notpositivedefinite(); return end @@ -487,7 +476,7 @@ if upfact > 0 [L,notpositivedefinite] = cholupdate(L, l.*sqrt(upfact), '-'); if notpositivedefinite - [edata,e,eprior,param,ch] = set_output_for_notpositivedefinite(); + [edata,e,eprior,param] = set_output_for_notpositivedefinite(); return end else @@ -712,7 +701,7 @@ Ltmp(1:(size(Dt,1)+1):end)=Ltmp(1:(size(Dt,1)+1):end)+1; [L,notpositivedefinite] = chol(Ltmp,'lower'); if notpositivedefinite - [edata,e,eprior,param,ch] = set_output_for_notpositivedefinite(); + [edata,e,eprior,param] = set_output_for_notpositivedefinite(); return end @@ -727,13 +716,13 @@ if size(x,2)==1 gge=zeros(2*n,1); gge(1:n)=b; - q=ifft(fftKcirc.*fft(gge')); + q=real(ifft(fftKcirc.*fft(gge'))); Kg=q(1:n)'; elseif size(x,2)==2 gge=zeros(2*n2,2*n1); gge(1:n2,1:n1)=reshape(b,n2,n1); - q=ifft2(fftKcirc.*fft2(gge)); + q=real(ifft2(fftKcirc.*fft2(gge))); q=q(1:n2,1:n1); Kg=q(:); else @@ -751,8 +740,8 @@ else [iSg,~]=pcg(@(z) mvm_fft(g2,ny,fftKcirc,[],[],z), v, gp.latent_opt.pcg_tol); end + iSg=real(iSg); a=b-sqrt(ny)*(g2sq.*iSg - g2*(g2'*(iSg./g2sq))); - else if strcmpi(gp.lik.type,'LGPC') R=zeros(n); @@ -769,7 +758,7 @@ [L,notpositivedefinite] = chol(RKR,'lower'); if notpositivedefinite - [edata,e,eprior,param,ch] = set_output_for_notpositivedefinite(); + [edata,e,eprior,param] = set_output_for_notpositivedefinite(); return end @@ -786,7 +775,7 @@ [L,notpositivedefinite] = chol(RKR,'lower'); if notpositivedefinite - [edata,e,eprior,param,ch] = set_output_for_notpositivedefinite(); + [edata,e,eprior,param] = set_output_for_notpositivedefinite(); return end @@ -818,7 +807,7 @@ if size(x,2)==1 a2=zeros(2*n,1); a2(1:n)=a; - f2=ifft(fftKcirc.*fft(a2')); + f2=real(ifft(fftKcirc.*fft(a2'))); f=f2(1:n)'; if isfield(gp,'meanf') f=f+H'*(B_m*(H*a)); @@ -827,7 +816,7 @@ a2=zeros(2*n2,2*n1); a2(1:n2,1:n1)=reshape(a,n2,n1); - f2=ifft2(fftKcirc.*fft2(a2)); + f2=real(ifft2(fftKcirc.*fft2(a2))); f2=f2(1:n2,1:n1); f=f2(:); if isfield(gp,'meanf') @@ -871,7 +860,7 @@ if size(x,2)==1 a2=zeros(2*n,1); a2(1:n)=a; - f2=ifft(fftKcirc.*fft(a2')); + f2=real(ifft(fftKcirc.*fft(a2'))); f=f2(1:n)'; if isfield(gp,'meanf') @@ -880,7 +869,7 @@ elseif size(x,2)==2 a2=zeros(2*n2,2*n1); a2(1:n2,1:n1)=reshape(a,n2,n1); - f2=ifft2(fftKcirc.*fft2(a2)); + f2=real(ifft2(fftKcirc.*fft2(a2))); f2=f2(1:n2,1:n1); f=f2(:); @@ -953,7 +942,7 @@ Ltmp(1:(size(Dt,1)+1):end)=Ltmp(1:(size(Dt,1)+1):end)+1; [L,notpositivedefinite]=chol(Ltmp,'lower'); if notpositivedefinite - [edata,e,eprior,param,ch] = set_output_for_notpositivedefinite(); + [edata,e,eprior,param] = set_output_for_notpositivedefinite(); return end @@ -974,7 +963,7 @@ RKR(1:(n+1):end)=RKR(1:(n+1):end)+1; [L,notpositivedefinite] = chol(RKR,'lower'); if notpositivedefinite - [edata,e,eprior,param,ch] = set_output_for_notpositivedefinite(); + [edata,e,eprior,param] = set_output_for_notpositivedefinite(); return end edata = logZ + sum(log(diag(L))); @@ -1004,7 +993,7 @@ RKR(1:(n+1):end)=RKR(1:(n+1):end)+1; [L,notpositivedefinite] = chol(RKR,'lower'); if notpositivedefinite - [edata,e,eprior,param,ch] = set_output_for_notpositivedefinite(); + [edata,e,eprior,param] = set_output_for_notpositivedefinite(); return end edata = logZ + sum(log(diag(L))); @@ -1066,7 +1055,7 @@ Lc(1:n+1:end)=Lc(1:n+1:end)+1; [Lc,notpositivedefinite]=chol(Lc); if notpositivedefinite - [edata,e,eprior,param,ch] = set_output_for_notpositivedefinite(); + [edata,e,eprior,param] = set_output_for_notpositivedefinite(); return end L(:,:,i1)=Lc; @@ -1078,7 +1067,7 @@ end [M, notpositivedefinite]=chol(sum(RER,3)); if notpositivedefinite - [edata,e,eprior,param,ch] = set_output_for_notpositivedefinite(); + [edata,e,eprior,param] = set_output_for_notpositivedefinite(); return end @@ -1127,7 +1116,7 @@ Lc(1:n+1:end)=Lc(1:n+1:end)+1; [Lc, notpositivedefinite]=chol(Lc); if notpositivedefinite - [edata,e,eprior,param,ch] = set_output_for_notpositivedefinite(); + [edata,e,eprior,param] = set_output_for_notpositivedefinite(); return end L(:,:,i1)=Lc; @@ -1144,7 +1133,7 @@ end [M, notpositivedefinite]=chol(sum(RER,3)); if notpositivedefinite - [edata,e,eprior,param,ch] = set_output_for_notpositivedefinite(); + [edata,e,eprior,param] = set_output_for_notpositivedefinite(); return end @@ -1341,8 +1330,12 @@ B=WK; B(1:sum(nl)+1:end) = B(1:sum(nl)+1:end) + 1; - [Ll,Lu]=lu(B); - edata = logZ + 0.5*det(Ll)*prod(sign(diag(Lu))).*sum(log(abs(diag(Lu)))); + [Ll,Lu,p]=lu(B); + if sum(diag(p))==size(p,1) + edata = logZ + 0.5*prod(sign(diag(Lu))).*sum(log(abs(diag(Lu)))); + else + edata = logZ + 0.5*det(p)*prod(sign(diag(Lu))).*sum(log(abs(diag(Lu)))); + end % Return help parameters for gradient and prediction % calculations @@ -1369,7 +1362,7 @@ K_uu = gp_trcov(gp, u); % u x u, noiseles covariance K_uu [Luu, notpositivedefinite] = chol(K_uu, 'lower'); if notpositivedefinite - [edata,e,eprior,param,ch] = set_output_for_notpositivedefinite(); + [edata,e,eprior,param] = set_output_for_notpositivedefinite(); return end % Evaluate the Lambda (La) @@ -1382,7 +1375,7 @@ A = K_uu+K_fu'*iLaKfu; A = (A+A')./2; % Ensure symmetry [A, notpositivedefinite] = chol(A); if notpositivedefinite - [edata,e,eprior,param,ch] = set_output_for_notpositivedefinite(); + [edata,e,eprior,param] = set_output_for_notpositivedefinite(); return end L = iLaKfu/A; @@ -1455,7 +1448,7 @@ case 'lik_specific' [f, a] = gp.lik.fh.optimizef(gp, y, K_uu, Lav, K_fu); if isnan(f) - [edata,e,eprior,param,ch] = set_output_for_notpositivedefinite(); + [edata,e,eprior,param] = set_output_for_notpositivedefinite(); return end otherwise @@ -1477,7 +1470,7 @@ A = K_uu + sWKfu'*(repmat(Lah,1,m).\sWKfu); A = (A+A')./2; [A, notpositivedefinite] = chol(A); if notpositivedefinite - [edata,e,eprior,param,ch] = set_output_for_notpositivedefinite(); + [edata,e,eprior,param] = set_output_for_notpositivedefinite(); return end edata = sum(log(Lah)) - 2*sum(log(diag(Luu))) + 2*sum(log(diag(A))); @@ -1491,7 +1484,7 @@ [L, notpositivedefinite] = chol(K); if notpositivedefinite - [edata,e,eprior,param,ch] = set_output_for_notpositivedefinite(); + [edata,e,eprior,param] = set_output_for_notpositivedefinite(); return end L1 = L; @@ -1543,7 +1536,7 @@ K_uu = (K_uu+K_uu')./2; % ensure the symmetry of K_uu [Luu, notpositivedefinite] = chol(K_uu, 'lower'); if notpositivedefinite - [edata,e,eprior,param,ch] = set_output_for_notpositivedefinite(); + [edata,e,eprior,param] = set_output_for_notpositivedefinite(); return end % Evaluate the Lambda (La) @@ -1559,7 +1552,7 @@ Labl{i} = Cbl_ff - Qbl_ff; [LLabl{i}, notpositivedefinite] = chol(Labl{i}); if notpositivedefinite - [edata,e,eprior,param,ch] = set_output_for_notpositivedefinite(); + [edata,e,eprior,param] = set_output_for_notpositivedefinite(); return end iLaKfu(ind{i},:) = LLabl{i}\(LLabl{i}'\K_fu(ind{i},:)); @@ -1568,7 +1561,7 @@ A = (A+A')./2; % Ensure symmetry [A, notpositivedefinite] = chol(A); if notpositivedefinite - [edata,e,eprior,param,ch] = set_output_for_notpositivedefinite(); + [edata,e,eprior,param] = set_output_for_notpositivedefinite(); return end L = iLaKfu/A; @@ -1611,7 +1604,7 @@ Lah{i} = eye(size(Labl{i})) + diag(sW(ind{i}))*Labl{i}*diag(sW(ind{i})); [LLah{i}, notpositivedefinite] = chol(Lah{i}); if notpositivedefinite - [edata,e,eprior,param,ch] = set_output_for_notpositivedefinite(); + [edata,e,eprior,param] = set_output_for_notpositivedefinite(); return end V2(ind{i},:) = LLah{i}\(LLah{i}'\V(ind{i},:)); @@ -1620,7 +1613,7 @@ A = K_uu + V'*V2; A = (A+A')./2; [A, notpositivedefinite] = chol(A); if notpositivedefinite - [edata,e,eprior,param,ch] = set_output_for_notpositivedefinite(); + [edata,e,eprior,param] = set_output_for_notpositivedefinite(); return end Lb = V2/A; @@ -1670,7 +1663,7 @@ Lahat = eye(size(Labl{i})) + diag(sqrtW(ind{i}))*Labl{i}*diag(sqrtW(ind{i})); [LLahat, notpositivedefinite] = chol(Lahat); if notpositivedefinite - [edata,e,eprior,param,ch] = set_output_for_notpositivedefinite(); + [edata,e,eprior,param] = set_output_for_notpositivedefinite(); return end iLahatWKfu(ind{i},:) = LLahat\(LLahat'\WKfu(ind{i},:)); @@ -1679,7 +1672,7 @@ A = K_uu + WKfu'*iLahatWKfu; A = (A+A')./2; [A, notpositivedefinite] = chol(A); if notpositivedefinite - [edata,e,eprior,param,ch] = set_output_for_notpositivedefinite(); + [edata,e,eprior,param] = set_output_for_notpositivedefinite(); return end edata = edata - 2*sum(log(diag(Luu))) + 2*sum(log(diag(A))); @@ -1718,7 +1711,7 @@ K_uu = (K_uu+K_uu')./2; % ensure the symmetry of K_uu [Luu, notpositivedefinite] = chol(K_uu, 'lower'); if notpositivedefinite - [edata,e,eprior,param,ch] = set_output_for_notpositivedefinite(); + [edata,e,eprior,param] = set_output_for_notpositivedefinite(); return end @@ -1747,7 +1740,7 @@ B = B(:,p); [VD, notpositivedefinite] = ldlchol(La); if notpositivedefinite - [edata,e,eprior,param,ch] = set_output_for_notpositivedefinite(); + [edata,e,eprior,param] = set_output_for_notpositivedefinite(); return end @@ -1757,7 +1750,7 @@ A = K_uu+K_fu'*iLaKfu; A = (A+A')./2; % Ensure symmetry [A, notpositivedefinite] = chol(A); if notpositivedefinite - [edata,e,eprior,param,ch] = set_output_for_notpositivedefinite(); + [edata,e,eprior,param] = set_output_for_notpositivedefinite(); return end L = iLaKfu/A; @@ -1801,7 +1794,7 @@ Lah = I + sqrtW*La*sqrtW; [VDh, notpositivedefinite] = ldlchol(Lah); if notpositivedefinite - [edata,e,eprior,param,ch] = set_output_for_notpositivedefinite(); + [edata,e,eprior,param] = set_output_for_notpositivedefinite(); return end V = repmat(sW,1,m).*K_fu; @@ -1809,7 +1802,7 @@ A = K_uu + V'*Vt; A = (A+A')./2; [A, notpositivedefinite] = chol(A); if notpositivedefinite - [edata,e,eprior,param,ch] = set_output_for_notpositivedefinite(); + [edata,e,eprior,param] = set_output_for_notpositivedefinite(); return end Lb = Vt/A; @@ -1847,13 +1840,13 @@ Lahat = sparse(1:n,1:n,1,n,n) + sqrtW*La*sqrtW; [LDh, notpositivedefinite] = ldlchol(Lahat); if notpositivedefinite - [edata,e,eprior,param,ch] = set_output_for_notpositivedefinite(); + [edata,e,eprior,param] = set_output_for_notpositivedefinite(); return end A = K_uu + WKfu'*ldlsolve(LDh,WKfu); A = (A+A')./2; [A, notpositivedefinite] = chol(A); if notpositivedefinite - [edata,e,eprior,param,ch] = set_output_for_notpositivedefinite(); + [edata,e,eprior,param] = set_output_for_notpositivedefinite(); return end edata = sum(log(diag(LDh))) - 2*sum(log(diag(Luu))) + 2*sum(log(diag(A))); @@ -1885,7 +1878,7 @@ K_uu = gp_trcov(gp, u); % u x u, noiseles covariance K_uu [Luu, notpositivedefinite] = chol(K_uu, 'lower'); if notpositivedefinite - [edata,e,eprior,param,ch] = set_output_for_notpositivedefinite(); + [edata,e,eprior,param] = set_output_for_notpositivedefinite(); return end % Evaluate the Lambda (La) @@ -1937,7 +1930,7 @@ A = K_uu + sWKfu'*sWKfu; A = (A+A')./2; [A, notpositivedefinite]=chol(A); if notpositivedefinite - [edata,e,eprior,param,ch] = set_output_for_notpositivedefinite(); + [edata,e,eprior,param] = set_output_for_notpositivedefinite(); return end Lb = sWKfu/A; @@ -1987,7 +1980,7 @@ A = K_uu + sWKfu'*sWKfu; A = (A+A')./2; [A, notpositivedefinite] = chol(A); if notpositivedefinite - [edata,e,eprior,param,ch] = set_output_for_notpositivedefinite(); + [edata,e,eprior,param] = set_output_for_notpositivedefinite(); return end edata = -sum(log(diag(Luu))) + sum(log(diag(A))); @@ -2008,7 +2001,7 @@ % % [L, notpositivedefinite] = chol(K); % if notpositivedefinite -% [edata,e,eprior,param,ch] = set_output_for_notpositivedefinite(); +% [edata,e,eprior,param] = set_output_for_notpositivedefinite(); % return % end % L1 = L; @@ -2101,14 +2094,14 @@ param.a = a; param.p=p; - % store values to the cache - ch = param; - ch.w = w; - ch.e = e; - ch.edata = edata; - ch.eprior = eprior; - ch.n = size(x,1); - ch.datahash=datahash; +% % store values to the cache +% ch = param; +% ch.w = w; +% ch.e = e; +% ch.edata = edata; +% ch.eprior = eprior; +% ch.n = size(x,1); +% ch.datahash=datahash; end % assert(isreal(edata)) @@ -2118,7 +2111,9 @@ % ============================================================== % Begin of the nested functions % ============================================================== -% +% +end + function [e, g, h] = egh(f, varargin) ikf = iKf(f'); e = 0.5*f*ikf - gp.lik.fh.ll(gp.lik, y, f', z); @@ -2138,8 +2133,8 @@ ikf = ldlsolve(VD,f) - L*(L'*f); end end -end -function [edata,e,eprior,param,ch] = set_output_for_notpositivedefinite() + +function [edata,e,eprior,param] = set_output_for_notpositivedefinite() % Instead of stopping to chol error, return NaN edata=NaN; e=NaN; @@ -2149,14 +2144,13 @@ param.a=NaN; param.La2=NaN; param.p=NaN; - w=NaN; - datahash = NaN; - ch=param; - ch.e = e; - ch.edata = edata; - ch.eprior = eprior; - ch.datahash=datahash; - ch.w = NaN; +% w=NaN; +% datahash = NaN; +% ch=param; +% ch.e = e; +% ch.edata = edata; +% ch.eprior = eprior; +% ch.datahash=datahash; +% ch.w = NaN; end -end diff --git a/gp/gpla_g.m b/gp/gpla_g.m index 4af802a6..90ee01e9 100644 --- a/gp/gpla_g.m +++ b/gp/gpla_g.m @@ -31,12 +31,12 @@ ip=inputParser; ip.FunctionName = 'GPLA_G'; - ip.addRequired('w', @(x) isvector(x) && isreal(x) && all(isfinite(x))); - ip.addRequired('gp',@isstruct); - ip.addRequired('x', @(x) ~isempty(x) && isreal(x) && all(isfinite(x(:)))) - ip.addRequired('y', @(x) ~isempty(x) && isreal(x) && all(isfinite(x(:)))) - ip.addParamValue('z', [], @(x) isreal(x) && all(isfinite(x(:)))) - ip.parse(w, gp, x, y, varargin{:}); + ip=iparser(ip,'addRequired','w', @(x) isvector(x) && isreal(x) && all(isfinite(x))); + ip=iparser(ip,'addRequired','gp',@isstruct); + ip=iparser(ip,'addRequired','x', @(x) ~isempty(x) && isreal(x) && all(isfinite(x(:)))); + ip=iparser(ip,'addRequired','y', @(x) ~isempty(x) && isreal(x) && all(isfinite(x(:)))); + ip=iparser(ip,'addParamValue','z', [], @(x) isreal(x) && all(isfinite(x(:)))); + ip=iparser(ip,'parse',w, gp, x, y, varargin{:}); z=ip.Results.z; gp = gp_unpak(gp, w); % unpak the parameters @@ -712,15 +712,15 @@ DKffba=zeros(n*nout,1); % check in which components the covariance function is present - do = false(nout,1); + doo = false(nout,1); if multicf for z1=1:nout if any(gp.comp_cf{z1}==i) - do(z1) = true; + doo(z1) = true; end end else - do = true(nout,1); + doo = true(nout,1); end i1=0; @@ -752,7 +752,7 @@ % Derivative of explicit terms trace_sum_tmp=0; for z1=1:nout - if do(z1) + if doo(z1) DKffba((1:n)+(z1-1)*n)=DKffb*a((1:n)+(z1-1)*n); trace_sum_tmp = trace_sum_tmp + sum(sum( inv_iWK(:,:,z1) .* DKffb )); end @@ -762,7 +762,7 @@ % Derivative of f w.r.t. theta for z1=1:nout - if do(z1) + if doo(z1) DKllg((1:n)+(z1-1)*n)=DKffb*llg((1:n)+(z1-1)*n); EDKllg((1:n)+(z1-1)*n)=E(:,:,z1)*DKllg((1:n)+(z1-1)*n); end @@ -928,10 +928,10 @@ gpcf = gp.cf{i}; % check in which components the covariance function is present - do = false(nlp,1); + doo = false(nlp,1); for z1=1:nlp if any(gp.comp_cf{z1}==i) - do(z1) = true; + doo(z1) = true; end end @@ -988,7 +988,7 @@ if ~isfield(gp,'meanf') dKnl = zeros(sum(nl)); if isfield(gp.lik,'xtime') - if ~isempty(intersect(gp.comp_cf{1},i)) %do(indnl) + if ~isempty(intersect(gp.comp_cf{1},i)) %doo(indnl) if savememory DKff=gpcf.fh.cfg(gpcf,xtime,[],[],i2); else @@ -1002,7 +1002,7 @@ else DKff=DKffc{i2}; end - %if do(indnl) + %if doo(indnl) dKnl(ntime+(1:n),ntime+(1:n)) = DKff; %end end @@ -1013,7 +1013,7 @@ DKff=DKffc{i2}; end for indnl=1:nlp - if do(indnl) + if doo(indnl) dKnl((1:n)+(indnl-1)*n,(1:n)+(indnl-1)*n) = DKff; end end diff --git a/gp/gpla_jpred.m b/gp/gpla_jpred.m index ff9890ad..ac747489 100644 --- a/gp/gpla_jpred.m +++ b/gp/gpla_jpred.m @@ -86,23 +86,23 @@ ip=inputParser; ip.FunctionName = 'GPLA_JPRED'; - ip.addRequired('gp', @isstruct); - ip.addRequired('x', @(x) ~isempty(x) && isreal(x) && all(isfinite(x(:)))) - ip.addRequired('y', @(x) ~isempty(x) && isreal(x) && all(isfinite(x(:)))) - ip.addOptional('xt', [], @(x) isempty(x) || (isreal(x) && all(isfinite(x(:))))) - ip.addParamValue('yt', [], @(x) isreal(x) && all(isfinite(x(:)))) - ip.addParamValue('z', [], @(x) isreal(x) && all(isfinite(x(:)))) - ip.addParamValue('zt', [], @(x) isreal(x) && all(isfinite(x(:)))) - ip.addParamValue('predcf', [], @(x) isempty(x) || ... - isvector(x) && isreal(x) && all(isfinite(x)&x>0)) - ip.addParamValue('tstind', [], @(x) isempty(x) || iscell(x) ||... - (isvector(x) && isreal(x) && all(isfinite(x)&x>0))) - ip.addParamValue('fcorr', 'off', @(x) ismember(x, {'off', 'fact', 'cm2', 'lr', 'on'})) + ip=iparser(ip,'addRequired','gp', @isstruct); + ip=iparser(ip,'addRequired','x', @(x) ~isempty(x) && isreal(x) && all(isfinite(x(:)))); + ip=iparser(ip,'addRequired','y', @(x) ~isempty(x) && isreal(x) && all(isfinite(x(:)))); + ip=iparser(ip,'addOptional','xt', [], @(x) isempty(x) || (isreal(x) && all(isfinite(x(:))))); + ip=iparser(ip,'addParamValue','yt', [], @(x) isreal(x) && all(isfinite(x(:)))); + ip=iparser(ip,'addParamValue','z', [], @(x) isreal(x) && all(isfinite(x(:)))); + ip=iparser(ip,'addParamValue','zt', [], @(x) isreal(x) && all(isfinite(x(:)))); + ip=iparser(ip,'addParamValue','predcf', [], @(x) isempty(x) || ... + isvector(x) && isreal(x) && all(isfinite(x)&x>0)); + ip=iparser(ip,'addParamValue','tstind', [], @(x) isempty(x) || iscell(x) ||... + (isvector(x) && isreal(x) && all(isfinite(x)&x>0))); + ip=iparser(ip,'addParamValue','fcorr', 'off', @(x) ismember(x, {'off', 'fact', 'cm2', 'on','lr'})) if numel(varargin)==0 || isnumeric(varargin{1}) % inputParser should handle this, but it doesn't - ip.parse(gp, x, y, varargin{:}); + ip=iparser(ip,'parse',gp, x, y, varargin{:}); else - ip.parse(gp, x, y, [], varargin{:}); + ip=iparser(ip,'parse',gp, x, y, [], varargin{:}); end xt=ip.Results.xt; yt=ip.Results.yt; diff --git a/gp/gpla_looe.m b/gp/gpla_looe.m index 38b665ec..7077a4df 100644 --- a/gp/gpla_looe.m +++ b/gp/gpla_looe.m @@ -33,13 +33,13 @@ ip=inputParser; ip.FunctionName = 'GPLA_LOOE'; -ip.addRequired('w', @(x) isempty(x) || ... +ip=iparser(ip,'addRequired','w', @(x) isempty(x) || ... isvector(x) && isreal(x) && all(isfinite(x))); -ip.addRequired('gp', @(x) isstruct(x) || iscell(x)); -ip.addRequired('x', @(x) ~isempty(x) && isreal(x) && all(isfinite(x(:)))) -ip.addRequired('y', @(x) ~isempty(x) && isreal(x) && all(isfinite(x(:)))) -ip.addParamValue('z', [], @(x) isreal(x) && all(isfinite(x(:)))) -ip.parse(w, gp, x, y, varargin{:}); +ip=iparser(ip,'addRequired','gp', @(x) isstruct(x) || iscell(x)); +ip=iparser(ip,'addRequired','x', @(x) ~isempty(x) && isreal(x) && all(isfinite(x(:)))); +ip=iparser(ip,'addRequired','y', @(x) ~isempty(x) && isreal(x) && all(isfinite(x(:)))); +ip=iparser(ip,'addParamValue','z', [], @(x) isreal(x) && all(isfinite(x(:)))); +ip=iparser(ip,'parse',w, gp, x, y, varargin{:}); z=ip.Results.z; gp=gp_unpak(gp, w); diff --git a/gp/gpla_loopred.m b/gp/gpla_loopred.m index 350ebb79..288131ce 100644 --- a/gp/gpla_loopred.m +++ b/gp/gpla_loopred.m @@ -36,13 +36,15 @@ ip=inputParser; ip.FunctionName = 'GPLA_LOOPRED'; - ip.addRequired('gp', @(x) isstruct(x)); - ip.addRequired('x', @(x) ~isempty(x) && isreal(x) && all(isfinite(x(:)))) - ip.addRequired('y', @(x) ~isempty(x) && isreal(x) && all(isfinite(x(:)))) - ip.addParamValue('z', [], @(x) isreal(x) && all(isfinite(x(:)))) - ip.addParamValue('method', 'cavity', @(x) ismember(x, {'lrs' 'cavity' 'inla'})) - ip.addParamValue('fcorr', 'off', @(x) ismember(x, {'off', 'fact', 'cm2', 'on'})); - ip.parse(gp, x, y, varargin{:}); + + ip=iparser(ip,'addRequired','gp', @(x) isstruct(x)); + ip=iparser(ip,'addRequired','x', @(x) ~isempty(x) && isreal(x) && all(isfinite(x(:)))); + ip=iparser(ip,'addRequired','y', @(x) ~isempty(x) && isreal(x) && all(isfinite(x(:)))); + ip=iparser(ip,'addParamValue','z', [], @(x) isreal(x) && all(isfinite(x(:)))); + ip=iparser(ip,'addParamValue','method', 'lrs', @(x) ismember(x, {'lrs' 'cavity' 'inla'})); + ip=iparser(ip,'addParamValue','fcorr', 'off', @(x) ismember(x, {'off', 'fact', 'cm2', 'on'})); + ip=iparser(ip,'parse',gp, x, y, varargin{:}); + z=ip.Results.z; method = ip.Results.method; fcorr=ip.Results.fcorr; diff --git a/gp/gpla_pred.m b/gp/gpla_pred.m index 6452b9e0..ba445372 100644 --- a/gp/gpla_pred.m +++ b/gp/gpla_pred.m @@ -83,24 +83,24 @@ ip=inputParser; ip.FunctionName = 'GPLA_PRED'; - ip.addRequired('gp', @isstruct); - ip.addRequired('x', @(x) ~isempty(x) && isreal(x) && all(isfinite(x(:)))) - ip.addRequired('y', @(x) ~isempty(x) && isreal(x) && all(isfinite(x(:)))) - ip.addOptional('xt', [], @(x) isempty(x) || (isreal(x) && all(isfinite(x(:))))) - ip.addParamValue('yt', [], @(x) isreal(x) && all(isfinite(x(:)))) - ip.addParamValue('z', [], @(x) isreal(x) && all(isfinite(x(:)))) - ip.addParamValue('zt', [], @(x) isreal(x) && all(isfinite(x(:)))) - ip.addParamValue('predcf', [], @(x) isempty(x) || ... - isvector(x) && isreal(x) && all(isfinite(x)&x>0)) - ip.addParamValue('tstind', [], @(x) isempty(x) || iscell(x) ||... - (isvector(x) && isreal(x) && all(isfinite(x)&x>0))) - ip.addParamValue('fcorr', 'off', @(x) ismember(x, {'off', ... - 'cm2', 'fact', 'on','lr'})) + ip=iparser(ip,'addRequired','gp', @isstruct); + ip=iparser(ip,'addRequired','x', @(x) ~isempty(x) && isreal(x) && all(isfinite(x(:)))); + ip=iparser(ip,'addRequired','y', @(x) ~isempty(x) && isreal(x) && all(isfinite(x(:)))); + ip=iparser(ip,'addOptional','xt', [], @(x) isempty(x) || (isreal(x) && all(isfinite(x(:))))); + ip=iparser(ip,'addParamValue','yt', [], @(x) isreal(x) && all(isfinite(x(:)))); + ip=iparser(ip,'addParamValue','z', [], @(x) isreal(x) && all(isfinite(x(:)))); + ip=iparser(ip,'addParamValue','zt', [], @(x) isreal(x) && all(isfinite(x(:)))); + ip=iparser(ip,'addParamValue','predcf', [], @(x) isempty(x) || ... + isvector(x) && isreal(x) && all(isfinite(x)&x>0)); + ip=iparser(ip,'addParamValue','tstind', [], @(x) isempty(x) || iscell(x) ||... + (isvector(x) && isreal(x) && all(isfinite(x)&x>0))); + ip=iparser(ip,'addParamValue','fcorr', 'off', @(x) ismember(x, {'off', ... + 'cm2', 'fact', 'on','lr'})); if numel(varargin)==0 || isnumeric(varargin{1}) % inputParser should handle this, but it doesn't - ip.parse(gp, x, y, varargin{:}); + ip=iparser(ip,'parse',gp, x, y, varargin{:}); else - ip.parse(gp, x, y, [], varargin{:}); + ip=iparser(ip,'parse',gp, x, y, [], varargin{:}); end xt=ip.Results.xt; yt=ip.Results.yt; diff --git a/gp/gpmc_jpreds.m b/gp/gpmc_jpreds.m index de7f48f9..a36111b9 100644 --- a/gp/gpmc_jpreds.m +++ b/gp/gpmc_jpreds.m @@ -103,22 +103,22 @@ ip=inputParser; ip.FunctionName = 'GPMC_JPREDS'; - ip.addRequired('gp',@isstruct); - ip.addRequired('x', @(x) ~isempty(x) && isreal(x) && all(isfinite(x(:)))) - ip.addRequired('y', @(x) ~isempty(x) && isreal(x) && all(isfinite(x(:)))) - ip.addOptional('xt', [], @(x) isempty(x) || (isreal(x) && all(isfinite(x(:))))) - ip.addParamValue('yt', [], @(x) isreal(x) && all(isfinite(x(:)))) - ip.addParamValue('zt', [], @(x) isreal(x) && all(isfinite(x(:)))) - ip.addParamValue('z', [], @(x) isreal(x) && all(isfinite(x(:)))) - ip.addParamValue('predcf', [], @(x) isempty(x) || ... - isvector(x) && isreal(x) && all(isfinite(x)&x>0)) - ip.addParamValue('tstind', [], @(x) isempty(x) || iscell(x) ||... - (isvector(x) && isreal(x) && all(isfinite(x)&x>0))) + ip=iparser(ip,'addRequired','gp',@isstruct); + ip=iparser(ip,'addRequired','x', @(x) ~isempty(x) && isreal(x) && all(isfinite(x(:)))); + ip=iparser(ip,'addRequired','y', @(x) ~isempty(x) && isreal(x) && all(isfinite(x(:)))); + ip=iparser(ip,'addOptional','xt', [], @(x) isempty(x) || (isreal(x) && all(isfinite(x(:))))); + ip=iparser(ip,'addParamValue','yt', [], @(x) isreal(x) && all(isfinite(x(:)))); + ip=iparser(ip,'addParamValue','zt', [], @(x) isreal(x) && all(isfinite(x(:)))); + ip=iparser(ip,'addParamValue','z', [], @(x) isreal(x) && all(isfinite(x(:)))); + ip=iparser(ip,'addParamValue','predcf', [], @(x) isempty(x) || ... + isvector(x) && isreal(x) && all(isfinite(x)&x>0)); + ip=iparser(ip,'addParamValue','tstind', [], @(x) isempty(x) || iscell(x) ||... + (isvector(x) && isreal(x) && all(isfinite(x)&x>0))); if numel(varargin)==0 || isnumeric(varargin{1}) % inputParser should handle this, but it doesn't - ip.parse(gp, x, y, varargin{:}); + ip=iparser(ip,'parse',gp, x, y, varargin{:}); else - ip.parse(gp, x, y, [], varargin{:}); + ip=iparser(ip,'parse',gp, x, y, [], varargin{:}); end xt=ip.Results.xt; yt=ip.Results.yt; diff --git a/gp/gpmc_loopred.m b/gp/gpmc_loopred.m index bf1085bf..22446bdb 100644 --- a/gp/gpmc_loopred.m +++ b/gp/gpmc_loopred.m @@ -65,12 +65,14 @@ ip=inputParser; ip.FunctionName = 'GPMC_LOOPRED'; -ip.addRequired('gp',@isstruct); -ip.addRequired('x', @(x) ~isempty(x) && isreal(x) && all(isfinite(x(:)))) -ip.addRequired('y', @(x) ~isempty(x) && isreal(x) && all(isfinite(x(:)))) -ip.addParamValue('z', [], @(x) isreal(x) && all(isfinite(x(:)))) -ip.addParamValue('is', 'on', @(x) ismember(x,{'on' 'off' 'psis' 'is'})) -ip.parse(gp, x, y, varargin{:}); + +ip=iparser(ip,'addRequired','gp',@isstruct); +ip=iparser(ip,'addRequired','x', @(x) ~isempty(x) && isreal(x) && all(isfinite(x(:)))); +ip=iparser(ip,'addRequired','y', @(x) ~isempty(x) && isreal(x) && all(isfinite(x(:)))); +ip=iparser(ip,'addParamValue','z', [], @(x) isreal(x) && all(isfinite(x(:)))); +ip=iparser(ip,'addParamValue','is', 'on', @(x) ismember(x,{'on' 'off'})); +ip=iparser(ip,'parse',gp, x, y, varargin{:}); + z=ip.Results.z; is=ip.Results.is; diff --git a/gp/gpmc_loopreds.m b/gp/gpmc_loopreds.m index 65d15fa5..efd0d77a 100644 --- a/gp/gpmc_loopreds.m +++ b/gp/gpmc_loopreds.m @@ -38,11 +38,11 @@ % Nothing to parse, but check the arguments anyway ip=inputParser; ip.FunctionName = 'GPMC_LOOPREDS'; -ip.addRequired('gp',@isstruct); -ip.addRequired('x', @(x) ~isempty(x) && isreal(x) && all(isfinite(x(:)))) -ip.addRequired('y', @(x) ~isempty(x) && isreal(x) && all(isfinite(x(:)))) -ip.addParamValue('z', [], @(x) isreal(x) && all(isfinite(x(:)))) -ip.parse(gp, x, y, varargin{:}); +ip=iparser(ip,'addRequired','gp',@isstruct); +ip=iparser(ip,'addRequired','x', @(x) ~isempty(x) && isreal(x) && all(isfinite(x(:)))); +ip=iparser(ip,'addRequired','y', @(x) ~isempty(x) && isreal(x) && all(isfinite(x(:)))); +ip=iparser(ip,'addParamValue','z', [], @(x) isreal(x) && all(isfinite(x(:)))); +ip=iparser(ip,'parse',gp, x, y, varargin{:}); z=ip.Results.z; if isfield(gp,'meanf') & ~isempty(gp.meanf) diff --git a/gp/gpmc_preds.m b/gp/gpmc_preds.m index 012581d1..17be1771 100644 --- a/gp/gpmc_preds.m +++ b/gp/gpmc_preds.m @@ -101,23 +101,23 @@ ip=inputParser; ip.FunctionName = 'GPMC_PREDS'; - ip.addRequired('gp',@isstruct); - ip.addRequired('x', @(x) ~isempty(x) && isreal(x) && all(isfinite(x(:)))) - ip.addRequired('y', @(x) ~isempty(x) && isreal(x) && all(isfinite(x(:)))) - ip.addOptional('xt', [], @(x) isempty(x) || (isreal(x) && all(isfinite(x(:))))) - ip.addParamValue('yt', [], @(x) isreal(x) && all(isfinite(x(:)))) - ip.addParamValue('zt', [], @(x) isreal(x) && all(isfinite(x(:)))) - ip.addParamValue('z', [], @(x) isreal(x) && all(isfinite(x(:)))) - ip.addParamValue('predcf', [], @(x) isempty(x) || ... - isvector(x) && isreal(x) && all(isfinite(x)&x>0)) - ip.addParamValue('tstind', [], @(x) isempty(x) || iscell(x) ||... - (isvector(x) && isreal(x) && all(isfinite(x)&x>0))) - ip.addParamValue('fcorr', 'off', @(x) ismember(x, {'off', 'fact', 'cm2', 'on'})); + ip=iparser(ip,'addRequired','gp',@isstruct); + ip=iparser(ip,'addRequired','x', @(x) ~isempty(x) && isreal(x) && all(isfinite(x(:)))); + ip=iparser(ip,'addRequired','y', @(x) ~isempty(x) && isreal(x) && all(isfinite(x(:)))); + ip=iparser(ip,'addOptional','xt', [], @(x) isempty(x) || (isreal(x) && all(isfinite(x(:))))); + ip=iparser(ip,'addParamValue','yt', [], @(x) isreal(x) && all(isfinite(x(:)))); + ip=iparser(ip,'addParamValue','zt', [], @(x) isreal(x) && all(isfinite(x(:)))); + ip=iparser(ip,'addParamValue','z', [], @(x) isreal(x) && all(isfinite(x(:)))); + ip=iparser(ip,'addParamValue','predcf', [], @(x) isempty(x) || ... + isvector(x) && isreal(x) && all(isfinite(x)&x>0)); + ip=iparser(ip,'addParamValue','tstind', [], @(x) isempty(x) || iscell(x) ||... + (isvector(x) && isreal(x) && all(isfinite(x)&x>0))); + ip=iparser(ip,'addParamValue','fcorr', 'off', @(x) ismember(x, {'off', 'fact', 'cm2', 'on'})); if numel(varargin)==0 || isnumeric(varargin{1}) % inputParser should handle this, but it doesn't - ip.parse(gp, x, y, varargin{:}); + ip=iparser(ip,'parse',gp, x, y, varargin{:}); else - ip.parse(gp, x, y, [], varargin{:}); + ip=iparser(ip,'parse',gp, x, y, [], varargin{:}); end xt=ip.Results.xt; yt=ip.Results.yt; diff --git a/gp/gpmf_constant.m b/gp/gpmf_constant.m index f1bb32b1..3a967187 100644 --- a/gp/gpmf_constant.m +++ b/gp/gpmf_constant.m @@ -38,13 +38,13 @@ ip=inputParser; ip.FunctionName = 'GPMF_CONSTANT'; - ip.addOptional('gpmf', [], @isstruct); - ip.addParamValue('constant',1, @(x) isvector(x)); - ip.addParamValue('prior_mean',0, @(x) isvector(x)); - ip.addParamValue('prior_cov',100, @(x) isvector(x)); - ip.addParamValue('mean_prior', [], @isstruct); - ip.addParamValue('cov_prior', [], @isstruct); - ip.parse(varargin{:}); + ip=iparser(ip,'addOptional','gpmf', [], @isstruct); + ip=iparser(ip,'addParamValue','constant',1, @(x) isvector(x)); + ip=iparser(ip,'addParamValue','prior_mean',0, @(x) isvector(x)); + ip=iparser(ip,'addParamValue','prior_cov',100, @(x) isvector(x)); + ip=iparser(ip,'addParamValue','mean_prior', [], @isstruct); + ip=iparser(ip,'addParamValue','cov_prior', [], @isstruct); + ip=iparser(ip,'parse',varargin{:}); gpmf=ip.Results.gpmf; if isempty(gpmf) diff --git a/gp/gpmf_linear.m b/gp/gpmf_linear.m index a370e413..4cb0cdef 100644 --- a/gp/gpmf_linear.m +++ b/gp/gpmf_linear.m @@ -37,13 +37,13 @@ ip=inputParser; ip.FunctionName = 'GPMF_LINEAR'; - ip.addOptional('gpmf', [], @isstruct); - ip.addParamValue('selectedVariables',[], @(x) isvector(x) && all(x>0)); - ip.addParamValue('prior_mean',0, @(x) isvector(x)); - ip.addParamValue('prior_cov',100, @(x) isvector(x)); - ip.addParamValue('mean_prior', [], @isstruct); - ip.addParamValue('cov_prior', [], @isstruct); - ip.parse(varargin{:}); + ip=iparser(ip,'addOptional','gpmf', [], @isstruct); + ip=iparser(ip,'addParamValue','selectedVariables',[], @(x) isvector(x) && all(x>0)); + ip=iparser(ip,'addParamValue','prior_mean',0, @(x) isvector(x)); + ip=iparser(ip,'addParamValue','prior_cov',100, @(x) isvector(x)); + ip=iparser(ip,'addParamValue','mean_prior', [], @isstruct); + ip=iparser(ip,'addParamValue','cov_prior', [], @isstruct); + ip=iparser(ip,'parse',varargin{:}); gpmf=ip.Results.gpmf; if isempty(gpmf) diff --git a/gp/gpmf_squared.m b/gp/gpmf_squared.m index c6032be4..36e23aff 100644 --- a/gp/gpmf_squared.m +++ b/gp/gpmf_squared.m @@ -33,14 +33,16 @@ ip=inputParser; ip.FunctionName = 'GPMF_SQUARED'; - ip.addOptional('gpmf', [], @isstruct); - ip.addParamValue('selectedVariables',[], @(x) isvector(x) && all(x>0)); - ip.addParamValue('interactions', 'off', @(x) ismember(x,{'on' 'off'})) - ip.addParamValue('prior_mean',0, @(x) isvector(x)); - ip.addParamValue('prior_cov',100, @(x) isvector(x)); - ip.addParamValue('mean_prior', [], @isstruct); - ip.addParamValue('cov_prior', [], @isstruct); - ip.parse(varargin{:}); + + ip=iparser(ip,'addOptional','gpmf', [], @isstruct); + ip=iparser(ip,'addParamValue','selectedVariables',[], @(x) isvector(x) && all(x>0)); + ip=iparser(ip,'addParamValue','interactions', 'off', @(x) islogical(x) || ismember(x,{'on' 'off'})); + ip=iparser(ip,'addParamValue','prior_mean',0, @(x) isvector(x)); + ip=iparser(ip,'addParamValue','prior_cov',100, @(x) isvector(x)); + ip=iparser(ip,'addParamValue','mean_prior', [], @isstruct); + ip=iparser(ip,'addParamValue','cov_prior', [], @isstruct); + ip=iparser(ip,'parse',varargin{:}); + gpmf=ip.Results.gpmf; if isempty(gpmf) diff --git a/gp/lgcp.m b/gp/lgcp.m index a8fea6f4..7cca3354 100644 --- a/gp/lgcp.m +++ b/gp/lgcp.m @@ -33,16 +33,16 @@ ip=inputParser; ip.FunctionName = 'LGCP'; - ip.addRequired('x', @(x) isnumeric(x) && size(x,2)==1 || size(x,2)==2); - ip.addOptional('xt',NaN, @(x) isnumeric(x) && size(x,2)==1 || size(x,2)==2); - ip.addParamValue('gridn',[], @(x) isscalar(x) && x>0 && mod(x,1)==0); - ip.addParamValue('range',[], @(x) isreal(x)&&(length(x)==2||length(x)==4)); - ip.addParamValue('gpcf',@gpcf_sexp,@(x) ischar(x) || isa(x,'function_handle')); - ip.addParamValue('latent_method','EP', @(x) ismember(x,{'EP' 'Laplace'})) - ip.addParamValue('int_method','mode', @(x) ismember(x,{'mode' 'CCD', 'grid'})) - ip.addParamValue('normalize',false, @islogical); + ip=iparser(ip,'addRequired','x', @(x) isnumeric(x) && size(x,2)==1 || size(x,2)==2); + ip=iparser(ip,'addOptional','xt',NaN, @(x) isnumeric(x) && size(x,2)==1 || size(x,2)==2); + ip=iparser(ip,'addParamValue','gridn',[], @(x) isscalar(x) && x>0 && mod(x,1)==0); + ip=iparser(ip,'addParamValue','range',[], @(x) isreal(x)&&(length(x)==2||length(x)==4)); + ip=iparser(ip,'addParamValue','gpcf',@gpcf_sexp,@(x) ischar(x) || isa(x,'function_handle')); + ip=iparser(ip,'addParamValue','latent_method','EP', @(x) ismember(x,{'EP' 'Laplace'})); + ip=iparser(ip,'addParamValue','int_method','mode', @(x) ismember(x,{'mode' 'CCD', 'grid'})); + ip=iparser(ip,'addParamValue','normalize',false, @islogical); - ip.parse(x,varargin{:}); + ip=iparser(ip,'parse',x,varargin{:}); x=ip.Results.x; xt=ip.Results.xt; gridn=ip.Results.gridn; diff --git a/gp/lgpdens.m b/gp/lgpdens.m index 1a505a83..93a07ab8 100644 --- a/gp/lgpdens.m +++ b/gp/lgpdens.m @@ -69,30 +69,30 @@ ip=inputParser; ip.FunctionName = 'LGPDENS'; - ip.addRequired('x', @(x) isnumeric(x) ... + ip=iparser(ip,'addRequired','x', @(x) isnumeric(x) ... && (size(x,2)==1 || size(x,2)==2)); - ip.addOptional('xt',NaN, @(x) isnumeric(x) && size(x,2)==1 || size(x,2)==2); - ip.addParamValue('gridn',[], @(x) isnumeric(x)); - ip.addParamValue('range',[], @(x) isempty(x)||isreal(x)&&(length(x)==2||length(x)==4)); - ip.addParamValue('gpcf',@gpcf_sexp,@(x) ischar(x) || isa(x,'function_handle')); - ip.addParamValue('latent_method','Laplace', @(x) ismember(x,{'EP' 'Laplace' 'MCMC'})) - ip.addParamValue('int_method','mode', @(x) ismember(x,{'mode' 'CCD', 'grid'})) - ip.addParamValue('normalize',false, @islogical); - ip.addParamValue('display', 'off', @(x) islogical(x) || ... - ismember(x,{'on' 'off' 'iter'})) - ip.addParamValue('speedup',[], @(x) ismember(x,{'on' 'off'})); - ip.addParamValue('rej_sampling','on', @(x) ismember(x,{'on' 'off'})); - ip.addParamValue('imp_sampling','on', @(x) ismember(x,{'on' 'off' 'is' 'psis'})); - ip.addParamValue('cond_dens',[], @(x) ismember(x,{'on' 'off'})); - ip.addParamValue('basis','gaussian', @(x) ismember(x,{'gaussian' 'exp' 'off'})); - ip.addParamValue('bounded',[0 0], @(x) isnumeric(x) && min(size(x))==1 && max(size(x))==2); - + ip=iparser(ip,'addOptional','xt',NaN, @(x) isnumeric(x) && size(x,2)==1 || size(x,2)==2); + ip=iparser(ip,'addParamValue','gridn',[], @(x) isnumeric(x)); + ip=iparser(ip,'addParamValue','range',[], @(x) isempty(x)||isreal(x)&&(length(x)==2||length(x)==4)); + ip=iparser(ip,'addParamValue','gpcf',@gpcf_sexp,@(x) ischar(x) || isa(x,'function_handle')); + ip=iparser(ip,'addParamValue','latent_method','Laplace', @(x) ismember(x,{'EP' 'Laplace' 'MCMC'})); + ip=iparser(ip,'addParamValue','int_method','mode', @(x) ismember(x,{'mode' 'CCD', 'grid'})); + ip=iparser(ip,'addParamValue','normalize',false, @islogical); + ip=iparser(ip,'addParamValue','display', 'off', @(x) islogical(x) || ... + ismember(x,{'on' 'off' 'iter'})); + ip=iparser(ip,'addParamValue','speedup',[], @(x) ismember(x,{'on' 'off'})); + ip=iparser(ip,'addParamValue','rej_sampling','on', @(x) ismember(x,{'on' 'off'})); + ip=iparser(ip,'addParamValue','imp_sampling','on', @(x) ismember(x,{'on' 'off'})); + ip=iparser(ip,'addParamValue','cond_dens',[], @(x) ismember(x,{'on' 'off'})); + ip=iparser(ip,'addParamValue','basis','gaussian', @(x) ismember(x,{'gaussian' 'exp' 'off'})); + ip=iparser(ip,'addParamValue','bounded',[0 0], @(x) isnumeric(x) && min(size(x))==1 && max(size(x))==2); + % additional undocumented parameters for importance sampling - ip.addParamValue('n_is',8000, @(x) isnumeric(x) && x>=0); - ip.addParamValue('n_scale',50, @(x) isnumeric(x) && x>=0); - ip.addParamValue('contSplit','on', @(x) ismember(x,{'on' 'off'})); + ip=iparser(ip,'addParamValue','n_is',8000, @(x) isnumeric(x) && x>=0); + ip=iparser(ip,'addParamValue','n_scale',50, @(x) isnumeric(x) && x>=0); + ip=iparser(ip,'addParamValue','contSplit','on', @(x) ismember(x,{'on' 'off'})); + ip=iparser(ip,'parse',x,varargin{:}); - ip.parse(x,varargin{:}); x=ip.Results.x; xt=ip.Results.xt; gridn=ip.Results.gridn; @@ -319,7 +319,11 @@ % Monte Carlo integration. Econometrica 57:1317-1339. nParam = size(Ef,1); - [V, D] = svd(Covf); + if exist('OCTAVE_VERSION','builtin') + [V,D,tmp]=svd(Covf); + else + [V, D] = svd(Covf); + end eig = diag(real(D)); T = real(V) * sqrt(real(D)); gpis=gp_set(gp,'latent_method','MCMC'); @@ -670,7 +674,11 @@ clear Covft end nParam = size(Ef,1); - [V, D] = svd(Covf); + if exist('OCTAVE_VERSION','builtin') + [V,D,tmp]=svd(Covf); + else + [V, D] = svd(Covf); + end T = real(V) * sqrt(real(D)); eig = diag(real(D)); gpis=gp_set(gp,'latent_method','MCMC'); diff --git a/gp/lgpdens_cum.m b/gp/lgpdens_cum.m index 0787089d..1c20a7f5 100644 --- a/gp/lgpdens_cum.m +++ b/gp/lgpdens_cum.m @@ -13,10 +13,10 @@ % License.txt, included with the software, for details. ip=inputParser; -ip.addRequired('bb',@(x) ~isempty(x) && isreal(x) && all(isfinite(x(:)))) -ip.addRequired('x1',@(x) ~isempty(x) && isreal(x)) -ip.addRequired('x2', @(x) ~isempty(x) && isreal(x)) -ip.parse(bb,x1,x2) +ip=iparser(ip,'addRequired','bb',@(x) ~isempty(x) && isreal(x) && all(isfinite(x(:)))); +ip=iparser(ip,'addRequired','x1',@(x) ~isempty(x) && isreal(x)); +ip=iparser(ip,'addRequired','x2', @(x) ~isempty(x) && isreal(x)); +ip=iparser(ip,'parse',bb,x1,x2); [p,pq,xt]=lgpdens(bb); I1=min(find(xt>x1)); diff --git a/gp/lik_binomial.m b/gp/lik_binomial.m index 37fb097c..c1b391a6 100644 --- a/gp/lik_binomial.m +++ b/gp/lik_binomial.m @@ -29,8 +29,8 @@ ip=inputParser; ip.FunctionName = 'LIK_BINOMIAL'; - ip.addOptional('lik', [], @isstruct); - ip.parse(varargin{:}); + ip=iparser(ip,'addOptional','lik', [], @isstruct); + ip=iparser(ip,'parse',varargin{:}); lik=ip.Results.lik; if isempty(lik) @@ -237,7 +237,7 @@ % % See also % GPEP_E - + % if isempty(z) % error(['lik_binomial -> lik_binomial_tiltedMoments: missing z!'... % 'Binomial likelihood needs the expected number of '... @@ -411,7 +411,7 @@ % ldconst = log(factorial(N)/(factorial(yy)*factorial(N-yy))-log(sigm2_i)/2 -log(2*pi)/2; % Create function handle for the function to be integrated - df = @binomial_norm; + df = @(f) binomial_norm(f, ldconst, yy, N, myy_i, sigm2_i); % use log to avoid underflow, and derivates for faster search ld = @log_binomial_norm; ldg = @log_binomial_norm_g; @@ -441,8 +441,8 @@ niter=3; % number of Newton iterations mindelta=1e-6; % tolerance in stopping Newton iterations for ni=1:niter - g = ldg(modef); - h = ldg2(modef); + g = ldg(modef, ldconst, yy, N, myy_i, sigm2_i); + h = ldg2(modef, ldconst, yy, N, myy_i, sigm2_i); delta=-g/h; modef=modef+delta; if abs(delta)0 + while ldg(b, ldconst, yy, N, myy_i, sigm2_i)>0 b=b+5.*sqrt(sigm2_i); end while delta > 0.1 modef=(a+b)/2; - if ldg(modef) > 0 + if ldg(modef, ldconst, yy, N, myy_i, sigm2_i) > 0 a=modef; else b=modef; end delta=b-a; end - h=ldg2(modef); + h=ldg2(modef, ldconst, yy, N, myy_i, sigm2_i); end % integrand limits based on Gaussian approximation at mode modes=sqrt(-1/h); minf=modef-4*modes; maxf=modef+4*modes; - modeld=ld(modef); + modeld=ld(modef, ldconst, yy, N, myy_i, sigm2_i); iter=0; % check that density at end points is low enough lddiff=12; % min difference in log-density between mode and end-points - minld=ld(minf); + minld=ld(minf, ldconst, yy, N, myy_i, sigm2_i); step=1; while minld>(modeld-lddiff) minf=minf-step*modes; - minld=ld(minf); + minld=ld(minf, ldconst, yy, N, myy_i, sigm2_i); iter=iter+1; step=step*2; if iter>100 @@ -491,12 +491,12 @@ 'even after looking hard!']) end end - maxld=ld(maxf); + maxld=ld(maxf, ldconst, yy, N, myy_i, sigm2_i); iter=0; step=1; while maxld>(modeld-lddiff) maxf=maxf+step*modes; - maxld=ld(maxf); + maxld=ld(maxf, ldconst, yy, N, myy_i, sigm2_i); iter=iter+1; step=step*2; if iter>100 @@ -505,9 +505,9 @@ 'even after looking hard!']) end end +end - - function integrand = binomial_norm(f) + function integrand = binomial_norm(f, ldconst, yy, N, myy_i, sigm2_i) % Logit * Gaussian integrand = exp(ldconst + yy*log(1./(1.+exp(-f)))+(N-yy)*log(1-1./(1.+exp(-f)))... - 0.5 * (f-myy_i).^2./sigm2_i); @@ -517,7 +517,7 @@ integrand(isnan(integrand)|isinf(integrand))=0; end - function log_int = log_binomial_norm(f) + function log_int = log_binomial_norm(f, ldconst, yy, N, myy_i, sigm2_i) % log(Binomial * Gaussian) % log_binomial_norm is used to avoid underflow when searching % integration interval @@ -530,7 +530,7 @@ log_int(isnan(log_int)|isinf(log_int))=-Inf; end - function g = log_binomial_norm_g(f) + function g = log_binomial_norm_g(f, ldconst, yy, N, myy_i, sigm2_i) % d/df log(Binomial * Gaussian) % derivative of log_binomial_norm g = -(f-myy_i)./sigm2_i - exp(-f).*(N-yy)./((1+exp(-f)).^2.*(1-1./(1+exp(-f)))) ... @@ -539,7 +539,7 @@ % + (myy_i - f)./sigm2_i; end - function g2 = log_binomial_norm_g2(f) + function g2 = log_binomial_norm_g2(f, ldconst, yy, N, myy_i, sigm2_i) % d^2/df^2 log(Binomial * Gaussian) % second derivate of log_binomial_norm g2 = - (1+exp(2.*f)+exp(f).*(2+N*sigm2_i)./((1+exp(f))^2*sigm2_i)); @@ -548,7 +548,7 @@ % -1/sigm2_i; end -end +% end function p = lik_binomial_invlink(lik, f, z) %LIK_BINOMIAL_INVLINK Returns values of inverse link function @@ -592,7 +592,7 @@ reclik.fh.invlink = @lik_binomial_invlink; reclik.fh.predprcty = @lik_binomial_predprcty; reclik.fh.predy = @lik_binomial_predy; - reclik.fh.recappend = @likelih_binomial_recappend; + reclik.fh.recappend = @lik_binomial_recappend; return end diff --git a/gp/lik_coxph.m b/gp/lik_coxph.m index 981ccb20..718d67a3 100644 --- a/gp/lik_coxph.m +++ b/gp/lik_coxph.m @@ -48,11 +48,11 @@ ip=inputParser; ip.FunctionName = 'LIK_COXPH'; - ip.addOptional('lik', [], @isstruct); - ip.addParamValue('S', linspace(0,1.001,50), @(x) isvector(x)); - ip.addParamValue('stratificationVariables', [], @(x) isvector(x) && all(rem(x,1)==0)); - ip.addParamValue('removeStratificationVariables', [], @(x) ismember(x, {'on' 'off'})); - ip.parse(varargin{:}); + ip=iparser(ip,'addOptional','lik', [], @isstruct); + ip=iparser(ip,'addParamValue','S', linspace(0,1.001,50), @(x) isvector(x)); + ip=iparser(ip,'addParamValue','stratificationVariables', [], @(x) isvector(x) && all(rem(x,1)==0)); + ip=iparser(ip,'addParamValue','removeStratificationVariables', [], @(x) ismember(x, {'on' 'off'})); + ip=iparser(ip,'parse',varargin{:}); lik=ip.Results.lik; if isempty(lik) @@ -93,12 +93,13 @@ lik.fh.llg = @lik_coxph_llg; lik.fh.llg2 = @lik_coxph_llg2; lik.fh.llg3 = @lik_coxph_llg3; - lik.fh.tiltedMoments = @lik_coxph_tiltedMoments; +% lik.fh.tiltedMoments = @lik_coxph_tiltedMoments; lik.fh.predy = @lik_coxph_predy; lik.fh.invlink = @lik_coxph_invlink; lik.fh.recappend = @lik_coxph_recappend; lik.fh.predcdf= @lik_coxph_predcdf; end +end function [w,s,h] = lik_coxph_pak(lik) %LIK_COXPH_PAK Combine likelihood parameters into one vector. @@ -1364,7 +1365,7 @@ reclik.fh.llg = @lik_coxph_llg; reclik.fh.llg2 = @lik_coxph_llg2; reclik.fh.llg3 = @lik_coxph_llg3; - reclik.fh.tiltedMoments = @lik_coxph_tiltedMoments; +% reclik.fh.tiltedMoments = @lik_coxph_tiltedMoments; reclik.fh.predy = @lik_coxph_predy; reclik.fh.invlink = @lik_coxph_invlink; reclik.fh.recappend = @lik_coxph_recappend; @@ -1383,6 +1384,3 @@ end end - -end - diff --git a/gp/lik_gaussian.m b/gp/lik_gaussian.m index 2c2f909c..2b63af03 100644 --- a/gp/lik_gaussian.m +++ b/gp/lik_gaussian.m @@ -48,11 +48,11 @@ ip=inputParser; ip.FunctionName = 'LIK_GAUSSIAN'; - ip.addOptional('lik', [], @(x) isstruct(x) || isempty(x)); - ip.addParamValue('sigma2',0.1, @(x) isscalar(x) && x>=0); - ip.addParamValue('sigma2_prior',prior_logunif(), @(x) isstruct(x) || isempty(x)); - ip.addParamValue('n',[], @(x) isreal(x) && all(x>0)); - ip.parse(varargin{:}); + ip=iparser(ip,'addOptional','lik', [], @(x) isstruct(x) || isempty(x)); + ip=iparser(ip,'addParamValue','sigma2',0.1, @(x) isscalar(x) && x>=0); + ip=iparser(ip,'addParamValue','sigma2_prior',prior_logunif(), @(x) isstruct(x) || isempty(x)); + ip=iparser(ip,'addParamValue','n',[], @(x) isreal(x) && all(x>0)); + ip=iparser(ip,'parse',varargin{:}); lik=ip.Results.lik; if isempty(lik) diff --git a/gp/lik_gaussiansmt.m b/gp/lik_gaussiansmt.m index 91a2f1f7..93f5708d 100644 --- a/gp/lik_gaussiansmt.m +++ b/gp/lik_gaussiansmt.m @@ -58,17 +58,17 @@ ip=inputParser; ip.FunctionName = 'LIK_GAUSSIANSMT'; - ip.addOptional('lik', [], @isstruct); - ip.addParamValue('ndata',[], @(x) isscalar(x) && x>0 && mod(x,1)==0); - ip.addParamValue('sigma2',[], @(x) isvector(x) && all(x>0)); - ip.addParamValue('U',[], @isvector); - ip.addParamValue('tau2',0.1, @isscalar); - ip.addParamValue('alpha',0.5, @isscalar); - ip.addParamValue('nu',4, @isscalar); - ip.addParamValue('nu_prior',[], @(x) isstruct(x) || isempty(x)); - ip.addParamValue('censored',[], @(x) isstruct); - ip.addParamValue('gibbs','on', @(x) ismember(x,{'on' 'off'})); - ip.parse(varargin{:}); + ip=iparser(ip,'addOptional','lik', [], @isstruct); + ip=iparser(ip,'addParamValue','ndata',[], @(x) isscalar(x) && x>0 && mod(x,1)==0); + ip=iparser(ip,'addParamValue','sigma2',[], @(x) isvector(x) && all(x>0)); + ip=iparser(ip,'addParamValue','U',[], @isvector); + ip=iparser(ip,'addParamValue','tau2',0.1, @isscalar); + ip=iparser(ip,'addParamValue','alpha',0.5, @isscalar); + ip=iparser(ip,'addParamValue','nu',4, @isscalar); + ip=iparser(ip,'addParamValue','nu_prior',[], @(x) isstruct(x) || isempty(x)); + ip=iparser(ip,'addParamValue','censored',[], @(x) isstruct); + ip=iparser(ip,'addParamValue','gibbs','on', @(x) ismember(x,{'on' 'off'})); + ip=iparser(ip,'parse',varargin{:}); lik=ip.Results.lik; if isempty(lik) @@ -333,7 +333,6 @@ reccf.fh.lp = @lik_gaussiansmt_lp; reccf.fh.lpg = @lik_gaussiansmt_lpg; reccf.fh.cfg = @lik_gaussiansmt_cfg; - reccf.fh.cov = @lik_gaussiansmt_cov; reccf.fh.trcov = @lik_gaussiansmt_trcov; reccf.fh.trvar = @lik_gaussiansmt_trvar; reccf.fh.gibbs = @lik_gaussiansmt_gibbs; diff --git a/gp/lik_inputdependentnoise.m b/gp/lik_inputdependentnoise.m index 44507414..94141797 100644 --- a/gp/lik_inputdependentnoise.m +++ b/gp/lik_inputdependentnoise.m @@ -42,10 +42,10 @@ ip=inputParser; ip.FunctionName = 'LIK_INPUTDEPENDENTNOISE'; - ip.addOptional('lik', [], @isstruct); - ip.addParamValue('sigma2',0.1, @(x) isscalar(x) && x>0); - ip.addParamValue('sigma2_prior',prior_logunif(), @(x) isstruct(x) || isempty(x)); - ip.parse(varargin{:}); + ip=iparser(ip,'addOptional','lik', [], @isstruct); + ip=iparser(ip,'addParamValue','sigma2',0.1, @(x) isscalar(x) && x>0); + ip=iparser(ip,'addParamValue','sigma2_prior',prior_logunif(), @(x) isstruct(x) || isempty(x)); + ip=iparser(ip,'parse',varargin{:}); lik=ip.Results.lik; if isempty(lik) @@ -86,6 +86,7 @@ lik.fh.predprcty = @lik_inputdependentnoise_predprcty; lik.fh.recappend = @lik_inputdependentnoise_recappend; end +end function [w,s,h] = lik_inputdependentnoise_pak(lik) %LIK_INPUTDEPENDENTNOISE_PAK Combine likelihood parameters into one vector. @@ -519,4 +520,3 @@ reclik.p.sigma2 = feval(lik.p.sigma2.fh.recappend, reclik.p.sigma2, ri, lik.p.sigma2); end end -end diff --git a/gp/lik_inputdependentweibull.m b/gp/lik_inputdependentweibull.m index bc7b185d..c0250806 100644 --- a/gp/lik_inputdependentweibull.m +++ b/gp/lik_inputdependentweibull.m @@ -52,10 +52,10 @@ ip=inputParser; ip.FunctionName = 'LIK_INPUTDEPENDENTWEIBULL'; - ip.addOptional('lik', [], @isstruct); - ip.addParamValue('shape',1, @(x) isscalar(x) && x>0); - ip.addParamValue('shape_prior',prior_logunif(), @(x) isstruct(x) || isempty(x)); - ip.parse(varargin{:}); + ip=iparser(ip,'addOptional','lik', [], @isstruct); + ip=iparser(ip,'addParamValue','shape',1, @(x) isscalar(x) && x>0); + ip=iparser(ip,'addParamValue','shape_prior',prior_logunif(), @(x) isstruct(x) || isempty(x)); + ip=iparser(ip,'parse',varargin{:}); lik=ip.Results.lik; if isempty(lik) diff --git a/gp/lik_lgp.m b/gp/lik_lgp.m index 66cdd8b7..a4306b41 100644 --- a/gp/lik_lgp.m +++ b/gp/lik_lgp.m @@ -27,8 +27,8 @@ ip=inputParser; ip.FunctionName = 'LIK_LGP'; - ip.addOptional('lik', [], @isstruct); - ip.parse(varargin{:}); + ip=iparser(ip,'addOptional','lik', [], @isstruct); + ip=iparser(ip,'parse',varargin{:}); lik=ip.Results.lik; if isempty(lik) diff --git a/gp/lik_lgpc.m b/gp/lik_lgpc.m index eac675a5..e6c55a69 100644 --- a/gp/lik_lgpc.m +++ b/gp/lik_lgpc.m @@ -24,8 +24,8 @@ ip=inputParser; ip.FunctionName = 'LIK_LGPC'; - ip.addOptional('lik', [], @isstruct); - ip.parse(varargin{:}); + ip=iparser(ip,'addOptional','lik', [], @isstruct); + ip=iparser(ip,'parse',varargin{:}); lik=ip.Results.lik; if isempty(lik) @@ -249,10 +249,9 @@ % GPLA_PRED, GPEP_PRED, GPMC_PRED error('Not implemented') - end -function mu = lik_lpgpc_invlink(lik, f, z) +function mu = lik_lgpc_invlink(lik, f, z) %LIK_LPGPC_INVLINK Returns values of inverse link function % % Description diff --git a/gp/lik_loggaussian.m b/gp/lik_loggaussian.m index 950480c2..76047eb6 100644 --- a/gp/lik_loggaussian.m +++ b/gp/lik_loggaussian.m @@ -48,10 +48,10 @@ ip=inputParser; ip.FunctionName = 'LIK_LOGGAUSSIAN'; - ip.addOptional('lik', [], @isstruct); - ip.addParamValue('sigma2',1, @(x) isscalar(x) && x>0); - ip.addParamValue('sigma2_prior',prior_logunif(), @(x) isstruct(x) || isempty(x)); - ip.parse(varargin{:}); + ip=iparser(ip,'addOptional','lik', [], @isstruct); + ip=iparser(ip,'addParamValue','sigma2',1, @(x) isscalar(x) && x>0); + ip=iparser(ip,'addParamValue','sigma2_prior',prior_logunif(), @(x) isstruct(x) || isempty(x)); + ip=iparser(ip,'parse',varargin{:}); lik=ip.Results.lik; if isempty(lik) @@ -540,10 +540,11 @@ m_0=norm_cdf(zi); % [m_0, fhncnt] = quadgk(tf, minf, maxf); end - [g_i, fhncnt] = quadgk(@(f) td(f).*tf(f)./m_0, minf, maxf); + [g_i, fhncnt] = quadgk(@(f) td(f, yy, yc, s2).*tf(f)./m_0, minf, maxf); g_i = g_i.*s2; +end - function g = deriv(f) + function g = deriv(f, yy, yc, s2) if yc==0 r=log(yy)-f; g = 1./(1-norm_cdf(r/sqrt(s2))) ... @@ -553,7 +554,6 @@ g = -1./(2.*s2) + r.^2./(2.*s2^2); end end -end function [lpy, Ey, Vary] = lik_loggaussian_predy(lik, Ef, Varf, yt, zt) %LIK_LOGGAUSSIAN_PREDY Returns the predictive mean, variance and density of y @@ -655,7 +655,7 @@ - log(sigm2_i)/2 - log(2*pi)/2; % Create function handle for the function to be integrated - df = @loggaussian_norm; + df = @(f) loggaussian_norm(f, ldconst, yy, yc, s2, myy_i, sigm2_i); % use log to avoid underflow, and derivates for faster search ld = @log_loggaussian_norm; ldg = @log_loggaussian_norm_g; @@ -684,8 +684,8 @@ niter=4; % number of Newton iterations mindelta=1e-6; % tolerance in stopping Newton iterations for ni=1:niter - g=ldg(modef); - h=ldg2(modef); + g=ldg(modef, ldconst, yy, yc, s2, myy_i, sigm2_i); + h=ldg2(modef, ldconst, yy, yc, s2, myy_i, sigm2_i); delta=-g/h; modef=modef+delta; if abs(delta)(modeld-lddiff) minf=minf-step*modes; - minld=ld(minf); + minld=ld(minf, ldconst, yy, yc, s2, myy_i, sigm2_i); iter=iter+1; step=step*2; if iter>100 @@ -718,12 +718,12 @@ 'even after looking hard!']) end end - maxld=ld(maxf); + maxld=ld(maxf, ldconst, yy, yc, s2, myy_i, sigm2_i); iter=0; step=1; while maxld>(modeld-lddiff) maxf=maxf+step*modes; - maxld=ld(maxf); + maxld=ld(maxf, ldconst, yy, yc, s2, myy_i, sigm2_i); iter=iter+1; step=step*2; if iter>100 @@ -733,7 +733,8 @@ end end - function integrand = loggaussian_norm(f) +end + function integrand = loggaussian_norm(f, ldconst, yy, yc, s2, myy_i, sigm2_i) % loggaussian * Gaussian if yc % observed @@ -747,7 +748,7 @@ -0.5*(f-myy_i).^2./sigm2_i); end - function log_int = log_loggaussian_norm(f) + function log_int = log_loggaussian_norm(f, ldconst, yy, yc, s2, myy_i, sigm2_i) % log(loggaussian * Gaussian) % log_loggaussian_norm is used to avoid underflow when searching % integration interval @@ -763,7 +764,7 @@ -0.5*(f-myy_i).^2./sigm2_i; end - function g = log_loggaussian_norm_g(f) + function g = log_loggaussian_norm_g(f, ldconst, yy, yc, s2, myy_i, sigm2_i) % d/df log(loggaussian * Gaussian) % derivative of log_loggaussian_norm if yc @@ -777,7 +778,7 @@ + (myy_i - f)./sigm2_i; end - function g2 = log_loggaussian_norm_g2(f) + function g2 = log_loggaussian_norm_g2(f, ldconst, yy, yc, s2, myy_i, sigm2_i) % d^2/df^2 log(loggaussian * Gaussian) % second derivate of log_loggaussian_norm if yc @@ -792,7 +793,6 @@ -1/sigm2_i; end -end function cdf = lik_loggaussian_predcdf(lik, Ef, Varf, yt) %LIK_LOGGAUSSIAN_PREDCDF Returns the predictive cdf evaluated at yt @@ -871,7 +871,6 @@ reclik.fh.tiltedMoments = @lik_loggaussian_tiltedMoments; reclik.fh.invlink = @lik_loggaussian_invlink; reclik.fh.predy = @lik_loggaussian_predy; - reclik.fh.predcdf = @lik_loggaussian_predcdf; reclik.fh.recappend = @lik_loggaussian_recappend; reclik.p=[]; reclik.p.sigma2=[]; diff --git a/gp/lik_logit.m b/gp/lik_logit.m index 101e8c02..94f7138e 100755 --- a/gp/lik_logit.m +++ b/gp/lik_logit.m @@ -26,9 +26,9 @@ ip=inputParser; ip.FunctionName = 'LIK_LOGIT'; - ip.addOptional('lik', [], @isstruct); - ip.addParamValue('moment_method','gh', @(x) ismember(x,{'gh' 'agk'})); - ip.parse(varargin{:}); + ip=iparser(ip,'addOptional','lik', [], @isstruct); + ip=iparser(ip,'addParamValue','moment_method','gh', @(x) ismember(x,{'gh' 'agk'})); + ip=iparser(ip,'parse',varargin{:}); lik=ip.Results.lik; if isempty(lik) @@ -405,7 +405,7 @@ ldconst = -log(sigm2_i)/2 -log(2*pi)/2; % Create function handle for the function to be integrated - df = @logit_norm; + df = @(f) logit_norm(f, ldconst, yy, myy_i, sigm2_i); % use log to avoid underflow, and derivates for faster search ld = @log_logit_norm; ldg = @log_logit_norm_g; @@ -428,8 +428,8 @@ niter=2; % number of Newton iterations mindelta=1e-6; % tolerance in stopping Newton iterations for ni=1:niter - g=ldg(modef); - h=ldg2(modef); + g=ldg(modef, ldconst, yy, myy_i, sigm2_i); + h=ldg2(modef, ldconst, yy, myy_i, sigm2_i); delta=-g/h; modef=modef+delta; if abs(delta)(modeld-lddiff) minf=minf-step*modes; - minld=ld(minf); + minld=ld(minf, ldconst, yy, myy_i, sigm2_i); iter=iter+1; step=step*2; if iter>100 @@ -461,12 +461,12 @@ 'even after looking hard!']) end end - maxld=ld(maxf); + maxld=ld(maxf, ldconst, yy, myy_i, sigm2_i); iter=0; step=1; while maxld>(modeld-lddiff) maxf=maxf+step*modes; - maxld=ld(maxf); + maxld=ld(maxf, ldconst, yy, myy_i, sigm2_i); iter=iter+1; step=step*2; if iter>100 @@ -475,15 +475,15 @@ 'even after looking hard!']) end end - - function integrand = logit_norm(f) +end + function integrand = logit_norm(f, ldconst, yy, myy_i, sigm2_i) % Logit * Gaussian integrand = exp(ldconst ... -log(1+exp(-yy.*f)) ... -0.5*(f-myy_i).^2./sigm2_i); end - function log_int = log_logit_norm(f) + function log_int = log_logit_norm(f, ldconst, yy, myy_i, sigm2_i) % log(Logit * Gaussian) % log_logit_norm is used to avoid underflow when searching % integration interval @@ -492,23 +492,21 @@ -0.5*(f-myy_i).^2./sigm2_i; end - function g = log_logit_norm_g(f) + function g = log_logit_norm_g(f, ldconst, yy, myy_i, sigm2_i) % d/df log(Logit * Gaussian) % derivative of log_logit_norm g = yy./(exp(f*yy)+1)... + (myy_i - f)./sigm2_i; end - function g2 = log_logit_norm_g2(f) + function g2 = log_logit_norm_g2(f, ldconst, yy, myy_i, sigm2_i) % d^2/df^2 log(Logit * Gaussian) % second derivate of log_logit_norm a=exp(f*yy); g2 = -a*(yy./(a+1)).^2 ... -1/sigm2_i; end - -end - + function p = lik_logit_invlink(lik, f, z) %LIK_LOGIT_INVLINK Returns values of inverse link function % diff --git a/gp/lik_loglogistic.m b/gp/lik_loglogistic.m index 8de87cf8..7cd98c46 100644 --- a/gp/lik_loglogistic.m +++ b/gp/lik_loglogistic.m @@ -48,10 +48,10 @@ ip=inputParser; ip.FunctionName = 'LIK_LOGLOGISTIC'; - ip.addOptional('lik', [], @isstruct); - ip.addParamValue('shape',1, @(x) isscalar(x) && x>0); - ip.addParamValue('shape_prior',prior_logunif(), @(x) isstruct(x) || isempty(x)); - ip.parse(varargin{:}); + ip=iparser(ip,'addOptional','lik', [], @isstruct); + ip=iparser(ip,'addParamValue','shape',1, @(x) isscalar(x) && x>0); + ip=iparser(ip,'addParamValue','shape_prior',prior_logunif(), @(x) isstruct(x) || isempty(x)); + ip=iparser(ip,'parse',varargin{:}); lik=ip.Results.lik; if isempty(lik) @@ -489,14 +489,15 @@ % and useful integration limits [tf,minf,maxf]=init_loglogistic_norm(yy,myy_i,sigm2_i,yc,r); % additionally get function handle for the derivative - td = @deriv; + td = @(f) deriv(f, yc, yy, r); % Integrate with quadgk [m_0, fhncnt] = quadgk(tf, minf, maxf); [g_i, fhncnt] = quadgk(@(f) td(f).*tf(f)./m_0, minf, maxf); g_i = g_i.*r; +end - function g = deriv(f) + function g = deriv(f, yc, yy, r) m = yy./exp(f); if yc==0 g = -1./(1+m.^r).*m.^r.*log(m); @@ -504,7 +505,6 @@ g = (1/r+log(m)) - 2./(1+m.^r).*m.^r.*log(m); end end -end function [lpy, Ey, Vary] = lik_loglogistic_predy(lik, Ef, Varf, yt, zt) %LIK_LOGLOGISTIC_PREDY Returns the predictive mean, variance and density of y @@ -587,7 +587,7 @@ - log(sigm2_i)/2 - log(2*pi)/2; % Create function handle for the function to be integrated - df = @loglogistic_norm; + df = @(f) loglogistic_norm(f, ldconst, yc, r, yy, myy_i, sigm2_i); % use log to avoid underflow, and derivates for faster search ld = @log_loglogistic_norm; ldg = @log_loglogistic_norm_g; @@ -617,8 +617,8 @@ niter=4; % number of Newton iterations mindelta=1e-6; % tolerance in stopping Newton iterations for ni=1:niter - g=ldg(modef); - h=ldg2(modef); + g=ldg(modef, ldconst, yc, r, yy, myy_i, sigm2_i); + h=ldg2(modef, ldconst, yc, r, yy, myy_i, sigm2_i); delta=-g/h; modef=modef+delta; if abs(delta)(modeld-lddiff) minf=minf-step*modes; - minld=ld(minf); + minld=ld(minf, ldconst, yc, r, yy, myy_i, sigm2_i); iter=iter+1; step=step*2; if iter>100 @@ -651,12 +651,12 @@ 'even after looking hard!']) end end - maxld=ld(maxf); + maxld=ld(maxf, ldconst, yc, r, yy, myy_i, sigm2_i); iter=0; step=1; while maxld>(modeld-lddiff) maxf=maxf+step*modes; - maxld=ld(maxf); + maxld=ld(maxf, ldconst, yc, r, yy, myy_i, sigm2_i); iter=iter+1; step=step*2; if iter>100 @@ -665,8 +665,9 @@ 'even after looking hard!']) end end +end - function integrand = loglogistic_norm(f) + function integrand = loglogistic_norm(f, ldconst, yc, r, yy, myy_i, sigm2_i) % loglogistic * Gaussian if yc % observed @@ -680,7 +681,7 @@ -0.5*(f-myy_i).^2./sigm2_i); end - function log_int = log_loglogistic_norm(f) + function log_int = log_loglogistic_norm(f, ldconst, yc, r, yy, myy_i, sigm2_i) % log(loglogistic * Gaussian) % log_loglogistic_norm is used to avoid underflow when searching % integration interval @@ -695,8 +696,8 @@ + lik ... -0.5*(f-myy_i).^2./sigm2_i; end - - function g = log_loglogistic_norm_g(f) + + function g = log_loglogistic_norm_g(f, ldconst, yc, r, yy, myy_i, sigm2_i) % d/df log(loglogistic * Gaussian) % derivative of log_loglogistic_norm if yc @@ -710,7 +711,7 @@ + (myy_i - f)./sigm2_i; end - function g2 = log_loglogistic_norm_g2(f) + function g2 = log_loglogistic_norm_g2(f, ldconst, yc, r, yy, myy_i, sigm2_i) % d^2/df^2 log(loglogistic * Gaussian) % second derivate of log_loglogistic_norm if yc @@ -724,7 +725,6 @@ -1/sigm2_i; end -end function cdf = lik_loglogistic_predcdf(lik, Ef, Varf, yt) %LIK_LOGLOGISTIC_PREDCDF Returns the predictive cdf evaluated at yt @@ -802,7 +802,6 @@ reclik.fh.tiltedMoments = @lik_loglogistic_tiltedMoments; reclik.fh.invlink = @lik_loglogistic_invlink; reclik.fh.predy = @lik_loglogistic_predy; - reclik.fh.predcdf=@lik_loglogistic_predcdf; reclik.fh.recappend = @lik_loglogistic_recappend; reclik.p=[]; reclik.p.shape=[]; diff --git a/gp/lik_multinom.m b/gp/lik_multinom.m index eb38a37c..9ad7a645 100644 --- a/gp/lik_multinom.m +++ b/gp/lik_multinom.m @@ -27,8 +27,8 @@ ip=inputParser; ip.FunctionName = 'LIK_MULTINOM'; - ip.addOptional('lik', [], @isstruct); - ip.parse(varargin{:}); + ip=iparser(ip,'addOptional','lik', [], @isstruct); + ip=iparser(ip,'parse',varargin{:}); lik=ip.Results.lik; if isempty(lik) diff --git a/gp/lik_multinomprobit.m b/gp/lik_multinomprobit.m index 1c953a86..d4150404 100644 --- a/gp/lik_multinomprobit.m +++ b/gp/lik_multinomprobit.m @@ -22,8 +22,8 @@ ip=inputParser; ip.FunctionName = 'LIK_MULTINOMPROBIT'; - ip.addOptional('lik', [], @isstruct); - ip.parse(varargin{:}); + ip=iparser(ip,'addOptional','lik', [], @isstruct); + ip=iparser(ip,'parse', varargin{:}); lik=ip.Results.lik; if isempty(lik) @@ -50,6 +50,7 @@ lik.fh.recappend = @lik_multinomprobit_recappend; end +end function [w,s,h] = lik_multinomprobit_pak(lik) %LIK_MULTINOMPROBIT_PAK Combine likelihood parameters into one vector. @@ -416,4 +417,3 @@ end end -end diff --git a/gp/lik_negbin.m b/gp/lik_negbin.m index 8f34854a..9ad06716 100644 --- a/gp/lik_negbin.m +++ b/gp/lik_negbin.m @@ -49,11 +49,11 @@ % inputParser checks the arguments and assigns some default values ip=inputParser; ip.FunctionName = 'LIK_NEGBIN'; - ip.addOptional('lik', [], @isstruct); - ip.addParamValue('disper',10, @(x) isscalar(x) && x>0); - ip.addParamValue('disper_prior',prior_gamma('sh',2,'is',.1), ... - @(x) isstruct(x) || isempty(x)); - ip.parse(varargin{:}); + ip=iparser(ip,'addOptional','lik', [], @isstruct); + ip=iparser(ip,'addParamValue','disper',10, @(x) isscalar(x) && x>0); + ip=iparser(ip,'addParamValue','disper_prior',prior_gamma('sh',2,'is',.1), ... + @(x) isstruct(x) || isempty(x)); + ip=iparser(ip,'parse',varargin{:}); lik=ip.Results.lik; if isempty(lik) @@ -431,14 +431,14 @@ % and useful integration limits [tf,minf,maxf]=init_negbin_norm(yy,myy_i,sigm2_i,avgE,r); % additionally get function handle for the derivative - td = @deriv; + td = @(f) deriv(f, r, avgE, yy); % Integrate with quadgk [m_0, fhncnt] = quadgk(tf, minf, maxf); [g_i, fhncnt] = quadgk(@(f) td(f).*tf(f)./m_0, minf, maxf); g_i = g_i.*r; - - function g = deriv(f) +end + function g = deriv(f, r, avgE, yy) mu = avgE.*exp(f); % Derivative using the psi function g = 1 + log(r./(r+mu)) - (r+yy)./(r+mu) + psi(r + yy) - psi(r); @@ -449,7 +449,6 @@ % g = g + 1 ./ (i2 + r); % end end -end function [lpy, Ey, Vary] = lik_negbin_predy(lik, Ef, Varf, yt, zt) %LIK_NEGBIN_PREDY Returns the predictive mean, variance and density of y @@ -585,7 +584,7 @@ ldconst = -gammaln(r)-gammaln(yy+1)+gammaln(r+yy)... - log(sigm2_i)/2 - log(2*pi)/2; % Create function handle for the function to be integrated - df = @negbin_norm; + df = @(f) negbin_norm(f, yy, ldconst, r, avgE, myy_i, sigm2_i); % use log to avoid underflow, and derivates for faster search ld = @log_negbin_norm; ldg = @log_negbin_norm_g; @@ -610,8 +609,8 @@ niter=4; % number of Newton iterations mindelta=1e-6; % tolerance in stopping Newton iterations for ni=1:niter - g=ldg(modef); - h=ldg2(modef); + g=ldg(modef, yy, ldconst, r, avgE, myy_i, sigm2_i); + h=ldg2(modef, yy, ldconst, r, avgE, myy_i, sigm2_i); delta=-g/h; modef=modef+delta; if abs(delta)(modeld-lddiff) minf=minf-step*modes; - minld=ld(minf); + minld=ld(minf, yy, ldconst, r, avgE, myy_i, sigm2_i); iter=iter+1; step=step*2; if iter>100 @@ -639,12 +638,12 @@ 'even after looking hard!']) end end - maxld=ld(maxf); + maxld=ld(maxf, yy, ldconst, r, avgE, myy_i, sigm2_i); iter=0; step=1; while maxld>(modeld-lddiff) maxf=maxf+step*modes; - maxld=ld(maxf); + maxld=ld(maxf, yy, ldconst, r, avgE, myy_i, sigm2_i); iter=iter+1; step=step*2; if iter>100 @@ -653,8 +652,8 @@ 'even after looking hard!']) end end - - function integrand = negbin_norm(f) +end + function integrand = negbin_norm(f, yy, ldconst, r, avgE, myy_i, sigm2_i) % Negative-binomial * Gaussian mu = avgE.*exp(f); integrand = exp(ldconst ... @@ -662,7 +661,7 @@ -0.5*(f-myy_i).^2./sigm2_i); end - function log_int = log_negbin_norm(f) + function log_int = log_negbin_norm(f, yy, ldconst, r, avgE, myy_i, sigm2_i) % log(Negative-binomial * Gaussian) % log_negbin_norm is used to avoid underflow when searching % integration interval @@ -672,7 +671,7 @@ -0.5*(f-myy_i).^2./sigm2_i; end - function g = log_negbin_norm_g(f) + function g = log_negbin_norm_g(f, yy, ldconst, r, avgE, myy_i, sigm2_i) % d/df log(Negative-binomial * Gaussian) % derivative of log_negbin_norm mu = avgE.*exp(f); @@ -680,15 +679,13 @@ + (myy_i - f)./sigm2_i; end - function g2 = log_negbin_norm_g2(f) + function g2 = log_negbin_norm_g2(f, yy, ldconst, r, avgE, myy_i, sigm2_i) % d^2/df^2 log(Negative-binomial * Gaussian) % second derivate of log_negbin_norm mu = avgE.*exp(f); g2 = -(r*(r + yy))/(mu + r)^2.*mu ... -1/sigm2_i; end - -end function mu = lik_negbin_invlink(lik, f, z) %LIK_NEGBIN_INVLINK Returns values of inverse link function diff --git a/gp/lik_negbinztr.m b/gp/lik_negbinztr.m index d748d81c..9503ea7c 100644 --- a/gp/lik_negbinztr.m +++ b/gp/lik_negbinztr.m @@ -51,10 +51,10 @@ ip=inputParser; ip.FunctionName = 'LIK_NEGBINZTR'; - ip.addOptional('lik', [], @isstruct); - ip.addParamValue('disper',10, @(x) isscalar(x) && x>0); - ip.addParamValue('disper_prior',prior_logunif(), @(x) isstruct(x) || isempty(x)); - ip.parse(varargin{:}); + ip=iparser(ip,'addOptional','lik', [], @isstruct); + ip=iparser(ip,'addParamValue','disper',10, @(x) isscalar(x) && x>0); + ip=iparser(ip,'addParamValue','disper_prior',prior_logunif(), @(x) isstruct(x) || isempty(x)); + ip=iparser(ip,'parse',varargin{:}); lik=ip.Results.lik; if isempty(lik) @@ -519,16 +519,9 @@ % Integrate with quadgk [m_0, fhncnt] = quadgk(tf, minf, maxf); - [g_i, fhncnt] = quadgk(@(f) td(f).*tf(f)./m_0, minf, maxf); + [g_i, fhncnt] = quadgk(@(f) td(f,avgE,r,yy).*tf(f)./m_0, minf, maxf); g_i = g_i.*r; - function g = deriv(f) - mu = avgE.*exp(f); - % Derivative using the psi function - g = 1 + log(r./(r+mu)) - (r+yy)./(r+mu) + psi(r + yy) - psi(r); - lp0=r.*(log(r) - log(r+mu)); - g = g -(1./(1 - exp(-lp0)).*(log(r./(mu + r)) - r./(mu + r) + 1)); - end end function [g_i] = lik_negbinztr_siteDeriv2(lik, y, i1, sigm2_i, myy_i, z, eta, lnZhat) @@ -566,21 +559,13 @@ % and useful integration limits [tf,minf,maxf]=init_negbinztr_norm(yy,myy_i,sigm2_i,avgE,r, eta); % additionally get function handle for the derivative - td = @deriv; + td = @(f) deriv(f, avgE, r, yy); % Integrate with quadgk [m_0, fhncnt] = quadgk(tf, minf, maxf); [g_i, fhncnt] = quadgk(@(f) td(f).*tf(f)./m_0, minf, maxf); g_i = g_i.*r; - function g = deriv(f) - mu = avgE.*exp(f); - % Derivative using the psi function - g = 1 + log(r./(r+mu)) - (r+yy)./(r+mu) + psi(r + yy) - psi(r); - lp0=r.*(log(r) - log(r+mu)); - g = g -(1./(1 - exp(-lp0)).*(log(r./(mu + r)) - r./(mu + r) + 1)); -% g = eta.*g; - end end function upfact = lik_negbinztr_upfact(gp, y, mu, ll, z) @@ -699,7 +684,7 @@ ldconst = eta*(-gammaln(r)-gammaln(yy+1)+gammaln(r+yy))... - log(sigm2_i)/2 - log(2*pi)/2; % Create function handle for the function to be integrated - df = @negbinztr_norm; + df = @(f) negbinztr_norm(f, ldconst,avgE,r,yy,myy_i,sigm2_i, eta); % use log to avoid underflow, and derivates for faster search ld = @log_negbinztr_norm; ldg = @log_negbinztr_norm_g; @@ -724,8 +709,8 @@ niter=4; % number of Newton iterations mindelta=1e-6; % tolerance in stopping Newton iterations for ni=1:niter - g=ldg(modef); - h=ldg2(modef); + g=ldg(modef,ldconst,avgE,r,yy,myy_i,sigm2_i,eta); + h=ldg2(modef,ldconst,avgE,r,yy,myy_i,sigm2_i,eta); delta=-g/h; modef=modef+delta; if abs(delta)(modeld-lddiff) minf=minf-step*modes; - minld=ld(minf); + minld=ld(minf,ldconst,avgE,r,yy,myy_i,sigm2_i,eta); iter=iter+1; step=step*2; if iter>100 @@ -758,12 +743,12 @@ 'even after looking hard!']) end end - maxld=ld(maxf); + maxld=ld(maxf,ldconst,avgE,r,yy,myy_i,sigm2_i,eta); iter=0; step=1; while maxld>(modeld-lddiff) maxf=maxf+step*modes; - maxld=ld(maxf); + maxld=ld(maxf,ldconst,avgE,r,yy,myy_i,sigm2_i,eta); iter=iter+1; step=step*2; if iter>100 @@ -772,8 +757,9 @@ 'even after looking hard!']) end end +end - function integrand = negbinztr_norm(f) + function integrand = negbinztr_norm(f,ldconst,avgE,r,yy,myy_i,sigm2_i,eta) % Negative-binomial * Gaussian mu = avgE.*exp(f); lp0=r.*(log(r) - log(r+mu)); @@ -794,7 +780,7 @@ end end - function log_int = log_negbinztr_norm(f) + function log_int = log_negbinztr_norm(f,ldconst,avgE,r,yy,myy_i,sigm2_i,eta) % log(Negative-binomial * Gaussian) % log_negbinztr_norm is used to avoid underflow when searching % integration interval @@ -817,7 +803,7 @@ end end - function g = log_negbinztr_norm_g(f) + function g = log_negbinztr_norm_g(f,ldconst,avgE,r,yy,myy_i,sigm2_i,eta) % d/df log(Negative-binomial * Gaussian) % derivative of log_negbinztr_norm mu = avgE.*exp(f); @@ -833,7 +819,7 @@ end end - function g2 = log_negbinztr_norm_g2(f) + function g2 = log_negbinztr_norm_g2(f,ldconst,avgE,r,yy,myy_i,sigm2_i,eta) % d^2/df^2 log(Negative-binomial * Gaussian) % second derivate of log_negbinztr_norm mu = avgE.*exp(f); @@ -848,8 +834,6 @@ + eta*(r^2 + r^2*exp(-lp0)*(mu - 1))/((mu + r)^2*(exp(-lp0) - 1)^2)*mu; end end - -end function prctys = lik_negbinztr_predprcty(lik, Ef, Varf, zt, prcty) %LIK_BINOMIAL_PREDPRCTY Returns the percentiled of predictive density of y @@ -907,22 +891,22 @@ prctys(i1,i2)=a; end end - - function expll = llvec(lik,yt,f,z) - % Compute vector of likelihoods of single predictions - n = length(yt); - if n>0 - for i=1:n - expll(i) = exp(lik.fh.ll(lik, yt(i), f, z)); - end - else - expll = 0; +end +function expll = llvec(lik,yt,f,z) + % Compute vector of likelihoods of single predictions + n = length(yt); + if n>0 + for i=1:n + expll(i) = exp(lik.fh.ll(lik, yt(i), f, z)); end + else + expll = 0; end - end + + function mu = lik_negbinztr_invlink(lik, f, z) %LIK_NEGBINZTR_INVLINK Returns values of inverse link function % @@ -992,3 +976,11 @@ end end end + +function g = deriv(f,avgE,r,yy) + mu = avgE.*exp(f); + % Derivative using the psi function + g = 1 + log(r./(r+mu)) - (r+yy)./(r+mu) + psi(r + yy) - psi(r); + lp0=r.*(log(r) - log(r+mu)); + g = g -(1./(1 - exp(-lp0)).*(log(r./(mu + r)) - r./(mu + r) + 1)); +end diff --git a/gp/lik_poisson.m b/gp/lik_poisson.m index 8768f44f..655121ec 100644 --- a/gp/lik_poisson.m +++ b/gp/lik_poisson.m @@ -30,8 +30,8 @@ ip=inputParser; ip.FunctionName = 'LIK_POISSON'; - ip.addOptional('lik', [], @isstruct); - ip.parse(varargin{:}); + ip=iparser(ip,'addOptional','lik', [], @isstruct); + ip=iparser(ip,'parse',varargin{:}); lik=ip.Results.lik; if isempty(lik) @@ -393,7 +393,7 @@ ldconst = -gammaln(yy+1) - log(sigm2_i)/2 - log(2*pi)/2; % Create function handle for the function to be integrated - df = @poisson_norm; + df = @(f) poisson_norm(f,avgE,ldconst,yy,myy_i,sigm2_i); % use log to avoid underflow, and derivates for faster search ld = @log_poisson_norm; ldg = @log_poisson_norm_g; @@ -418,8 +418,8 @@ niter=3; % number of Newton iterations mindelta=1e-6; % tolerance in stopping Newton iterations for ni=1:niter - g=ldg(modef); - h=ldg2(modef); + g=ldg(modef,avgE,ldconst,yy,myy_i,sigm2_i); + h=ldg2(modef,avgE,ldconst,yy,myy_i,sigm2_i); delta=-g/h; modef=modef+delta; if abs(delta)(modeld-lddiff) minf=minf-step*modes; - minld=ld(minf); + minld=ld(minf,avgE,ldconst,yy,myy_i,sigm2_i); iter=iter+1; step=step*2; if iter>100 @@ -447,12 +447,12 @@ 'even after looking hard!']) end end - maxld=ld(maxf); + maxld=ld(maxf,avgE,ldconst,yy,myy_i,sigm2_i); iter=0; step=1; while maxld>(modeld-lddiff) maxf=maxf+step*modes; - maxld=ld(maxf); + maxld=ld(maxf,avgE,ldconst,yy,myy_i,sigm2_i); iter=iter+1; step=step*2; if iter>100 @@ -461,8 +461,9 @@ 'even after looking hard!']) end end +end - function integrand = poisson_norm(f) + function integrand = poisson_norm(f,avgE,ldconst,yy,myy_i,sigm2_i) % Poisson * Gaussian mu = avgE.*exp(f); integrand = exp(ldconst ... @@ -470,7 +471,7 @@ -0.5*(f-myy_i).^2./sigm2_i); end - function log_int = log_poisson_norm(f) + function log_int = log_poisson_norm(f,avgE,ldconst,yy,myy_i,sigm2_i) % log(Poisson * Gaussian) % log_poisson_norm is used to avoid underflow when searching % integration interval @@ -480,7 +481,7 @@ -0.5*(f-myy_i).^2./sigm2_i; end - function g = log_poisson_norm_g(f) + function g = log_poisson_norm_g(f,avgE,ldconst,yy,myy_i,sigm2_i) % d/df log(Poisson * Gaussian) % derivative of log_poisson_norm mu = avgE.*exp(f); @@ -488,7 +489,7 @@ + (myy_i - f)./sigm2_i; end - function g2 = log_poisson_norm_g2(f) + function g2 = log_poisson_norm_g2(f,avgE,ldconst,yy,myy_i,sigm2_i) % d^2/df^2 log(Poisson * Gaussian) % second derivate of log_poisson_norm mu = avgE.*exp(f); @@ -496,7 +497,6 @@ -1/sigm2_i; end -end function mu = lik_poisson_invlink(lik, f, z) %LIK_POISSON_INVLINK Returns values of inverse link function diff --git a/gp/lik_probit.m b/gp/lik_probit.m index c3e1fd1a..eeb4b9e1 100644 --- a/gp/lik_probit.m +++ b/gp/lik_probit.m @@ -24,8 +24,8 @@ ip=inputParser; ip.FunctionName = 'LIK_PROBIT'; - ip.addOptional('lik', [], @isstruct); - ip.parse(varargin{:}); + ip=iparser(ip,'addOptional','lik', [], @isstruct); + ip=iparser(ip,'parse',varargin{:}); lik=ip.Results.lik; if isempty(lik) diff --git a/gp/lik_qgp.m b/gp/lik_qgp.m index fae85335..4b221152 100644 --- a/gp/lik_qgp.m +++ b/gp/lik_qgp.m @@ -50,11 +50,11 @@ ip=inputParser; ip.FunctionName = 'LIK_QGP'; - ip.addOptional('lik', [], @isstruct); - ip.addParamValue('sigma2',0.1, @(x) isscalar(x) && x>0); - ip.addParamValue('sigma2_prior',prior_logunif(), @(x) isstruct(x) || isempty(x)); - ip.addParamValue('quantile',0.5, @(x) isscalar(x) && x>0 && x<1); - ip.parse(varargin{:}); + ip=iparser(ip,'addOptional','lik', [], @isstruct); + ip=iparser(ip,'addParamValue','sigma2',0.1, @(x) isscalar(x) && x>0); + ip=iparser(ip,'addParamValue','sigma2_prior',prior_logunif(), @(x) isstruct(x) || isempty(x)); + ip=iparser(ip,'addParamValue','quantile',0.5, @(x) isscalar(x) && x>0 && x<1); + ip=iparser(ip,'parse',varargin{:}); lik=ip.Results.lik; if isempty(lik) @@ -408,15 +408,15 @@ % Integrate with quadgk [m_0, fhncnt] = quadgk(tf, minf, maxf); - [g_i, fhncnt] = quadgk(@(f) td(f).*tf(f)./m_0, minf, maxf); + [g_i, fhncnt] = quadgk(@(f) td(f, yy, sigma2, tau).*tf(f)./m_0, minf, maxf); g_i = g_i.*sigma2; +end - function g = deriv(f) + function g = deriv(f, yy, sigma2, tau) g = -1/(2.*sigma2) + (yy-f)./(2.*sigma2^(3/2)).*(tau-(yy<=f)); end -end function [lpy, Ey, Vary] = lik_qgp_predy(lik, Ef, Varf, yt, zt) %LIK_QGP_PREDY Returns the predictive mean, variance and density of y @@ -492,7 +492,7 @@ ldconst = log(tau*(1-tau)/sigma) ... - log(sigm2_i)/2 - log(2*pi)/2; % Create function handle for the function to be integrated - df = @qgp_norm; + df = @(f) qgp_norm(f, ldconst, yy, sigma2, tau, myy_i, sigm2_i); % use log to avoid underflow, and derivates for faster search ld = @log_qgp_norm; ldg = @log_qgp_norm_g; @@ -515,17 +515,17 @@ niter=8; % number of Newton iterations minf=modef-6*sigm2_i; - while ldg(minf) < 0 + while ldg(minf, ldconst, yy, sigma2, tau, myy_i, sigm2_i) < 0 minf=minf-2*sigm2_i; end maxf=modef+6*sigm2_i; - while ldg(maxf) > 0 + while ldg(maxf, ldconst, yy, sigma2, tau, myy_i, sigm2_i) > 0 maxf=maxf+2*sigm2_i; end for ni=1:niter % h=ldg2(modef); modef=0.5*(minf+maxf); - if ldg(modef) < 0 + if ldg(modef, ldconst, yy, sigma2, tau, myy_i, sigm2_i) < 0 maxf=modef; else minf=modef; @@ -534,15 +534,15 @@ % integrand limits based on Gaussian approximation at mode minf=modef-6*sqrt(sigm2_i); maxf=modef+6*sqrt(sigm2_i); - modeld=ld(modef); + modeld=ld(modef, ldconst, yy, sigma2, tau, myy_i, sigm2_i); iter=0; % check that density at end points is low enough lddiff=20; % min difference in log-density between mode and end-points - minld=ld(minf); + minld=ld(minf, ldconst, yy, sigma2, tau, myy_i, sigm2_i); step=1; while minld>(modeld-lddiff) minf=minf-step*sqrt(sigm2_i); - minld=ld(minf); + minld=ld(minf, ldconst, yy, sigma2, tau, myy_i, sigm2_i); iter=iter+1; step=step*2; if iter>100 @@ -551,12 +551,12 @@ 'even after looking hard!']) end end - maxld=ld(maxf); + maxld=ld(maxf, ldconst, yy, sigma2, tau, myy_i, sigm2_i); iter=0; step=1; while maxld>(modeld-lddiff) maxf=maxf+step*sqrt(sigm2_i); - maxld=ld(maxf); + maxld=ld(maxf, ldconst, yy, sigma2, tau, myy_i, sigm2_i); iter=iter+1; step=step*2; if iter>100 @@ -565,15 +565,15 @@ 'even after looking hard!']) end end - - function integrand = qgp_norm(f) +end + function integrand = qgp_norm(f, ldconst, yy, sigma2, tau, myy_i, sigm2_i) % Quantile-GP * Gaussian integrand = exp(ldconst ... -(yy-f)./sqrt(sigma2).*(tau-(yy<=f)) ... -0.5*(f-myy_i).^2./sigm2_i); end - function log_int = log_qgp_norm(f) + function log_int = log_qgp_norm(f, ldconst, yy, sigma2, tau, myy_i, sigm2_i) % log(Quantile-GP * Gaussian) % log_qgp_norm is used to avoid underflow when searching % integration interval @@ -582,16 +582,13 @@ -0.5*(f-myy_i).^2./sigm2_i; end - function g = log_qgp_norm_g(f) + function g = log_qgp_norm_g(f, ldconst, yy, sigma2, tau, myy_i, sigm2_i) % d/df log(Quantile-GP * Gaussian) % derivative of log_qgp_norm g = (tau-(yy<=f))/sqrt(sigma2) ... + (myy_i - f)./sigm2_i; end - -end - function mu = lik_qgp_invlink(lik, f, z) %LIK_QGP_INVLINK Returns values of inverse link function % diff --git a/gp/lik_softmax.m b/gp/lik_softmax.m index 9ff68496..06853cf5 100644 --- a/gp/lik_softmax.m +++ b/gp/lik_softmax.m @@ -26,8 +26,8 @@ ip=inputParser; ip.FunctionName = 'LIK_SOFTMAX'; - ip.addOptional('lik', [], @isstruct); - ip.parse(varargin{:}); + ip=iparser(ip,'addOptional','lik', [], @isstruct); + ip=iparser(ip,'parse',varargin{:}); lik=ip.Results.lik; if isempty(lik) diff --git a/gp/lik_t.m b/gp/lik_t.m index dab5c77d..758b06f0 100644 --- a/gp/lik_t.m +++ b/gp/lik_t.m @@ -42,12 +42,12 @@ ip=inputParser; ip.FunctionName = 'LIK_T'; - ip.addOptional('lik', [], @isstruct); - ip.addParamValue('sigma2',0.1, @(x) isscalar(x) && x>0); - ip.addParamValue('sigma2_prior',prior_logunif(), @(x) isstruct(x) || isempty(x)); - ip.addParamValue('nu',4, @(x) isscalar(x) && x>0); - ip.addParamValue('nu_prior',prior_fixed, @(x) isstruct(x) || isempty(x)); - ip.parse(varargin{:}); + ip=iparser(ip,'addOptional','lik', [], @isstruct); + ip=iparser(ip,'addParamValue','sigma2',0.1, @(x) isscalar(x) && x>0); + ip=iparser(ip,'addParamValue','sigma2_prior',prior_logunif(), @(x) isstruct(x) || isempty(x)); + ip=iparser(ip,'addParamValue','nu',4, @(x) isscalar(x) && x>0); + ip=iparser(ip,'addParamValue','nu_prior',prior_fixed, @(x) isstruct(x) || isempty(x)); + ip=iparser(ip,'parse',varargin{:}); lik=ip.Results.lik; if isempty(lik) @@ -390,8 +390,6 @@ % GPEP_E - zm = @zeroth_moment; - tol = 1e-8; nu = lik.nu; sigma2 = lik.sigma2; @@ -401,6 +399,7 @@ for i=i1 yy = y(i); + zm = @(f) zeroth_moment(f, yy, nu, sigma2, myy_i(i), sigm2_i(i)); % Set the limits for integration and integrate with quad % ----------------------------------------------------- @@ -492,15 +491,15 @@ % % See also % GPEP_G - - zm = @zeroth_moment; - znu = @deriv_nu; - zsigma2 = @deriv_sigma2; tol = 1e-8; yy = y(i1); nu = lik.nu; sigma2 = lik.sigma2; + + zm = @(f) zeroth_moment(f, yy, nu, sigma2, myy_i, sigm2_i); + znu = @(f) deriv_nu(f, yy, nu, sigma2, myy_i, sigm2_i); + zsigma2 = @(f) deriv_sigma2(f, yy, nu, sigma2, myy_i, sigm2_i); % Set the limits for integration and integrate with quad mean_app = myy_i; @@ -560,24 +559,6 @@ [g_i(2), fhncnt] = quadgk(@(f) znu(f).*zm(f) , lambdaconf(1), lambdaconf(2)); g_i(2) = g_i(2)/m_0.*nu.*log(nu); end - - function integrand = zeroth_moment(f) - r = yy-f; - term = gammaln((nu + 1) / 2) - gammaln(nu/2) -log(nu.*pi.*sigma2)/2; - integrand = exp(term + log(1 + r.^2./nu./sigma2) .* (-(nu+1)/2)); - integrand = integrand.*exp(- 0.5 * (f-myy_i).^2./sigm2_i - log(sigm2_i)/2 - log(2*pi)/2); - end - - function g = deriv_nu(f) - r = yy-f; - temp = 1 + r.^2./nu./sigma2; - g = psi((nu+1)/2)./2 - psi(nu/2)./2 - 1./(2.*nu) - log(temp)./2 + (nu+1)./(2.*temp).*(r./nu).^2./sigma2; - end - - function g = deriv_sigma2(f) - r = yy-f; - g = -1/sigma2/2 + (nu+1)./2.*r.^2./(nu.*sigma2.^2 + r.^2.*sigma2); - end end @@ -725,13 +706,13 @@ % lnZhat = log(m_0) -C; % end - function lpdf = lpt(f,C) - % logarithm of the tilted distribution - r = yy-f; - lpdf = gammaln((nu + 1) / 2) - gammaln(nu/2) -log(nu.*pi.*sigma2)/2; - lpdf = lpdf + log(1 + r.^2./nu./sigma2) .* (-(nu+1)/2); - lpdf = lpdf*eta - (0.5/sigm2_i) * (f-myy_i).^2 + (C-log(2*pi*sigm2_i)/2); - end +% function lpdf = lpt(f,C) +% % logarithm of the tilted distribution +% r = yy-f; +% lpdf = gammaln((nu + 1) / 2) - gammaln(nu/2) -log(nu.*pi.*sigma2)/2; +% lpdf = lpdf + log(1 + r.^2./nu./sigma2) .* (-(nu+1)/2); +% lpdf = lpdf*eta - (0.5/sigm2_i) * (f-myy_i).^2 + (C-log(2*pi*sigm2_i)/2); +% end end function [g_i] = lik_t_siteDeriv2(likelih, y, yi, sigm2_i, myy_i, z, eta, lnZhat) @@ -804,8 +785,8 @@ end np=numel(fvec); - logpt = lpt(fvec,0); - lpt_max = max([logpt lpt([myy_i mg],0)]); + logpt = lpt(fvec,0,yy,nu,sigma2,myy_i,sigm2_i,eta); + lpt_max = max([logpt lpt([myy_i mg],0,nu,sigma2,myy_i,sigm2_i,eta)]); lambdaconf=[fvec(1), fvec(end)]; for i1=2:np-1 if logpt(i1) < lpt_max+log(1e-7) %(exp(logpt(i1))/exp(lpt_max) < 1e-7) @@ -831,12 +812,12 @@ lambdaconf=[min(mg-6*sg,myy_i-6*sigm_i),myy_i+6*sigm_i]; fvec=linspace(mg,myy_i,np); end - lpt_max=max(lpt(fvec,0)); + lpt_max=max(lpt(fvec,0,yy,nu,sigma2,myy_i,sigm2_i,eta)); end C=log(1)-lpt_max; % scale the log-density for the quadrature tolerance else lambdaconf=[mg-6*sg,mg+6*sg]; - C=log(1)-lpt(mg,0); + C=log(1)-lpt(mg,0,yy,nu,sigma2,myy_i,sigm2_i,eta); end if nu>nu_lim @@ -860,47 +841,17 @@ % Use the normalization determined in the lik_t_tiltedMoments2 m_0=exp(lnZhat+C); - zm=@(f) deriv_sigma2(f).*exp(lpt(f,C))*sigma2; + zm=@(f) deriv_sigma2(f,yy,nu,sigma2).*exp(lpt(f,C,yy,nu,sigma2,myy_i,sigm2_i,eta))*sigma2; [g_i(1), fhncnt] = quadgk( zm, lambdaconf(1), lambdaconf(2),'AbsTol',ATOL,'RelTol',RTOL); g_i(1) = g_i(1)/m_0; if (isfield(likelih,'p') && ~isempty(likelih.p.nu)) - zm=@(f) deriv_nu(f).*exp(lpt(f,C)); + zm=@(f) deriv_nu(f,yy,nu,sigma2).*exp(lpt(f,C,yy,nu,sigma2,myy_i,sigm2_i,eta)); [g_i(2), fhncnt] = quadgk( zm, lambdaconf(1), lambdaconf(2),'AbsTol',ATOL,'RelTol',RTOL); g_i(2) = g_i(2)/m_0.*nu.*log(nu); end end - - function lpdf = lpt(f,C) - % logarithm of the tilted distribution - r = yy-f; - lpdf = gammaln((nu + 1) / 2) - gammaln(nu/2) -log(nu.*pi.*sigma2)/2; - lpdf = lpdf + log(1 + r.^2./nu./sigma2) .* (-(nu+1)/2); - lpdf = lpdf*eta - (0.5/sigm2_i) * (f-myy_i).^2 + (C-log(2*pi*sigm2_i)/2); - end - - function g = deriv_nu(f) - % derivative of the log-likelihood wrt nu - r = yy-f; - temp = r.^2 ./(nu*sigma2); - g = psi((nu+1)/2) - psi(nu/2) - 1/nu; - g = g + (1+1/nu).*temp./(1+temp); - - % for small values use a more accurate method for log(1+x) - ii = temp<1e3; - g(ii) = g(ii) - log1p(temp(ii)); - g(~ii) = g(~ii) - log(1+temp(~ii)); - g = g*0.5; - - end - - function g = deriv_sigma2(f) - % derivative of the log-likelihood wrt sigma2 - r = yy-f; - temp = r.^2 /sigma2; - g = -1/sigma2/2 + ((1+1/nu)/2) * temp ./ (1 + temp/nu) /sigma2; - end end @@ -1197,3 +1148,53 @@ end end + + +function integrand = zeroth_moment(f, yy, nu, sigma2, myy_i, sigm2_i) +r = yy-f; +term = gammaln((nu + 1) / 2) - gammaln(nu/2) -log(nu.*pi.*sigma2)/2; +integrand = exp(term + log(1 + r.^2./nu./sigma2) .* (-(nu+1)/2)); +integrand = integrand.*exp(- 0.5 * (f-myy_i).^2./sigm2_i - log(sigm2_i)/2 - log(2*pi)/2); % +end + + +function lpdf = lpt(f,C,yy,nu,sigma2,myy_i,sigm2_i,eta) +% logarithm of the tilted distribution +r = yy-f; +lpdf = gammaln((nu + 1) / 2) - gammaln(nu/2) -log(nu.*pi.*sigma2)/2; +lpdf = lpdf + log(1 + r.^2./nu./sigma2) .* (-(nu+1)/2); +lpdf = lpdf*eta - (0.5/sigm2_i) * (f-myy_i).^2 + (C-log(2*pi*sigm2_i)/2); +end + +function g = deriv_nu(f,yy,nu,sigma2) +% derivative of the log-likelihood wrt nu +r = yy-f; +temp = r.^2 ./(nu*sigma2); +g = psi((nu+1)/2) - psi(nu/2) - 1/nu; +g = g + (1+1/nu).*temp./(1+temp); + +% for small values use a more accurate method for log(1+x) +ii = temp<1e3; +g(ii) = g(ii) - log1p(temp(ii)); +g(~ii) = g(~ii) - log(1+temp(~ii)); +g = g*0.5; + +end + +function g = deriv_sigma2(f,yy,nu,sigma2) +% derivative of the log-likelihood wrt sigma2 +r = yy-f; +temp = r.^2 /sigma2; +g = -1/sigma2/2 + ((1+1/nu)/2) * temp ./ (1 + temp/nu) /sigma2; +end + +function g = deriv_nu2(f, yy, nu, sigma2, myy_i, sigm2_i) +r = yy-f; +temp = 1 + r.^2./nu./sigma2; +g = psi((nu+1)/2)./2 - psi(nu/2)./2 - 1./(2.*nu) - log(temp)./2 + (nu+1)./(2.*temp).*(r./nu).^2./sigma2; +end + +function g = deriv_sigma22(f, yy, nu, sigma2, myy_i, sigm2_i) +r = yy-f; +g = -1/sigma2/2 + (nu+1)./2.*r.^2./(nu.*sigma2.^2 + r.^2.*sigma2); +end diff --git a/gp/lik_weibull.m b/gp/lik_weibull.m index a7d2c992..3819e759 100644 --- a/gp/lik_weibull.m +++ b/gp/lik_weibull.m @@ -48,10 +48,10 @@ ip=inputParser; ip.FunctionName = 'LIK_WEIBULL'; - ip.addOptional('lik', [], @isstruct); - ip.addParamValue('shape',1, @(x) isscalar(x) && x>0); - ip.addParamValue('shape_prior',prior_logunif(), @(x) isstruct(x) || isempty(x)); - ip.parse(varargin{:}); + ip=iparser(ip,'addOptional','lik', [], @isstruct); + ip=iparser(ip,'addParamValue','shape',1, @(x) isscalar(x) && x>0); + ip=iparser(ip,'addParamValue','shape_prior',prior_logunif(), @(x) isstruct(x) || isempty(x)); + ip=iparser(ip,'parse',varargin{:}); lik=ip.Results.lik; if isempty(lik) @@ -438,21 +438,21 @@ % and useful integration limits [tf,minf,maxf]=init_weibull_norm(yy,myy_i,sigm2_i,yc,r); % additionally get function handle for the derivative - td = @deriv; + td = @(f) deriv(f, yc, r, yy); % Integrate with quadgk [m_0, fhncnt] = quadgk(tf, minf, maxf); [g_i, fhncnt] = quadgk(@(f) td(f).*tf(f)./m_0, minf, maxf); g_i = g_i.*r; +end - function g = deriv(f) + function g = deriv(f, yc, r, yy) if yc==0 g = -exp(-f).*yy.^r.*log(yy); else g = (1./r + log(yy)) - exp(-f).*yy.^r.*log(yy); end end -end function [lpy, Ey, Vary] = lik_weibull_predy(lik, Ef, Varf, yt, zt) %LIK_WEIBULL_PREDY Returns the predictive mean, variance and density of y @@ -555,7 +555,7 @@ - log(sigm2_i)/2 - log(2*pi)/2; % Create function handle for the function to be integrated - df = @weibull_norm; + df = @(f) weibull_norm(f, ldconst, yc, yy, r, myy_i, sigm2_i); % use log to avoid underflow, and derivates for faster search ld = @log_weibull_norm; ldg = @log_weibull_norm_g; @@ -585,8 +585,8 @@ niter=4; % number of Newton iterations mindelta=1e-6; % tolerance in stopping Newton iterations for ni=1:niter - g=ldg(modef); - h=ldg2(modef); + g=ldg(modef, ldconst, yc, yy, r, myy_i, sigm2_i); + h=ldg2(modef, ldconst, yc, yy, r, myy_i, sigm2_i); delta=-g/h; modef=modef+delta; if abs(delta)(modeld-lddiff) minf=minf-step*modes; - minld=ld(minf); + minld=ld(minf, ldconst, yc, yy, r, myy_i, sigm2_i); iter=iter+1; step=step*2; if iter>100 @@ -619,12 +619,12 @@ 'even after looking hard!']) end end - maxld=ld(maxf); + maxld=ld(maxf, ldconst, yc, yy, r, myy_i, sigm2_i); iter=0; step=1; while maxld>(modeld-lddiff) maxf=maxf+step*modes; - maxld=ld(maxf); + maxld=ld(maxf, ldconst, yc, yy, r, myy_i, sigm2_i); iter=iter+1; step=step*2; if iter>100 @@ -633,8 +633,9 @@ 'even after looking hard!']) end end - - function integrand = weibull_norm(f) +end + + function integrand = weibull_norm(f, ldconst, yc, yy, r, myy_i, sigm2_i) % Weibull * Gaussian if yc % observed @@ -648,7 +649,7 @@ -0.5*(f-myy_i).^2./sigm2_i); end - function log_int = log_weibull_norm(f) + function log_int = log_weibull_norm(f, ldconst, yc, yy, r, myy_i, sigm2_i) % log(Weibull * Gaussian) % log_weibull_norm is used to avoid underflow when searching % integration interval @@ -664,7 +665,7 @@ -0.5*(f-myy_i).^2./sigm2_i; end - function g = log_weibull_norm_g(f) + function g = log_weibull_norm_g(f, ldconst, yc, yy, r, myy_i, sigm2_i) % d/df log(Weibull * Gaussian) % derivative of log_weibull_norm if yc @@ -678,14 +679,13 @@ + (myy_i - f)./sigm2_i; end - function g2 = log_weibull_norm_g2(f) + function g2 = log_weibull_norm_g2(f, ldconst, yc, yy, r, myy_i, sigm2_i) % d^2/df^2 log(Weibull * Gaussian) % second derivate of log_weibull_norm g2 = -exp(-f).*yy.^r ... -1/sigm2_i; end -end function cdf = lik_weibull_predcdf(lik, Ef, Varf, yt) %LIK_WEIBULL_PREDCDF Returns the predictive cdf evaluated at yt diff --git a/gp/lik_zinegbin.m b/gp/lik_zinegbin.m index 010e399e..24c5f1c4 100644 --- a/gp/lik_zinegbin.m +++ b/gp/lik_zinegbin.m @@ -61,10 +61,10 @@ ip=inputParser; ip.FunctionName = 'LIK_ZINEGBIN'; - ip.addOptional('lik', [], @isstruct); - ip.addParamValue('disper',10, @(x) isscalar(x) && x>0); - ip.addParamValue('disper_prior',prior_logunif(), @(x) isstruct(x) || isempty(x)); - ip.parse(varargin{:}); + ip=iparser(ip,'addOptional','lik', [], @isstruct); + ip=iparser(ip,'addParamValue','disper',10, @(x) isscalar(x) && x>0); + ip=iparser(ip,'addParamValue','disper_prior',prior_logunif(), @(x) isstruct(x) || isempty(x)); + ip=iparser(ip,'parse',varargin{:}); lik=ip.Results.lik; if isempty(lik) @@ -104,6 +104,7 @@ lik.fh.invlink = @lik_zinegbin_invlink; lik.fh.recappend = @lik_zinegbin_recappend; end +end function [w,s,h] = lik_zinegbin_pak(lik) %LIK_ZINEGBIN_PAK Combine likelihood parameters into one vector. @@ -609,6 +610,5 @@ reclik.p.disper = feval(lik.p.disper.fh.recappend, reclik.p.disper, ri, lik.p.disper); end end -end diff --git a/gp/linuxCsource/dist_euclidean.c b/gp/linuxCsource/dist_euclidean.c index 77912945..df3213e7 100644 --- a/gp/linuxCsource/dist_euclidean.c +++ b/gp/linuxCsource/dist_euclidean.c @@ -24,7 +24,12 @@ #include #include #include "mex.h" +#ifndef HAVE_OCTAVE #include "matrix.h" +#endif +#ifndef true +#define true 1 +#endif #define max(a,b) (((a) > (b)) ? (a) : (b)) void mexFunction(const int nlhs, mxArray *plhs[], diff --git a/gp/linuxCsource/ldlrowmodify.c b/gp/linuxCsource/ldlrowmodify.c index e85e0eb8..23bb6274 100644 --- a/gp/linuxCsource/ldlrowmodify.c +++ b/gp/linuxCsource/ldlrowmodify.c @@ -31,7 +31,9 @@ #include #include #include "mex.h" +#ifndef HAVE_OCTAVE #include "matrix.h" +#endif #define max(a,b) (((a) > (b)) ? (a) : (b)) #define min(a,b) (((a) < (b)) ? (a) : (b)) diff --git a/gp/linuxCsource/trcov.c b/gp/linuxCsource/trcov.c index 611d2e59..4fb410b3 100644 --- a/gp/linuxCsource/trcov.c +++ b/gp/linuxCsource/trcov.c @@ -24,7 +24,9 @@ #include #include #include "mex.h" +#ifndef HAVE_OCTAVE #include "matrix.h" +#endif #define max(a, b) (((a) > (b)) ? (a) : (b)) #define PI (3.141592653589793) void cumsum2(mwIndex *p, mwIndex *c, mwIndex n); diff --git a/gp/metric_distancematrix.m b/gp/metric_distancematrix.m index d2b928fa..742a5ef3 100644 --- a/gp/metric_distancematrix.m +++ b/gp/metric_distancematrix.m @@ -38,19 +38,19 @@ ip=inputParser; ip.FunctionName = 'METRIC_DISTANCEMATRIX'; - ip.addOptional('metric', [], @isstruct); -% ip.addParamValue('nin', [], @(x) isreal(x)); - ip.addParamValue('components',[], @(x) isempty(x) || iscell(x)); - ip.addParamValue('lengthScales',[] , @(x) isvector(x)); - ip.addParamValue('Kstarstar',[], @(x) ismatrix(x)); - ip.addParamValue('lengthScales_prior',prior_unif, ... + ip=iparser(ip,'addOptional','metric', [], @isstruct); +% ip=iparser(ip,'addParamValue','nin', [], @(x) isreal(x)); + ip=iparser(ip,'addParamValue','components',[], @(x) isempty(x) || iscell(x)); + ip=iparser(ip,'addParamValue','lengthScales',[] , @(x) isvector(x)); + ip=iparser(ip,'addParamValue','Kstarstar',[], @(x) ismatrix(x)); + ip=iparser(ip,'addParamValue','lengthScales_prior',prior_unif, ... @(x) isstruct(x) || isempty(x)); -% ip.addParamValue('Kff', [], @(x) ismatrix(x)); -% ip.addParamValue('Kfu', [], @(x) ismatrix(x)); -% ip.addParamValue('Kffstar', [], @(x) ismatrix(x)); -% ip.addParamValue('Kfstaru', [], @(x) ismatrix(x)); -% ip.addParamValue('X_u', [], @(x) ismatrix(x)); - ip.parse(varargin{:}); +% ip=iparser(ip,'addParamValue','Kff', [], @(x) ismatrix(x)); +% ip=iparser(ip,'addParamValue','Kfu', [], @(x) ismatrix(x)); +% ip=iparser(ip,'addParamValue','Kffstar', [], @(x) ismatrix(x)); +% ip=iparser(ip,'addParamValue','Kfstaru', [], @(x) ismatrix(x)); +% ip=iparser(ip,'addParamValue','X_u', [], @(x) ismatrix(x)); + ip=iparser(ip,'parse',varargin{:}); metric=ip.Results.metric; if isempty(metric) diff --git a/gp/metric_euclidean.m b/gp/metric_euclidean.m index 55d0bbae..178ca076 100644 --- a/gp/metric_euclidean.m +++ b/gp/metric_euclidean.m @@ -47,13 +47,13 @@ ip=inputParser; ip.FunctionName = 'METRIC_EUCLIDEAN'; - ip.addOptional('metric', [], @isstruct); - ip.addParamValue('components',[], @(x) isempty(x) || iscell(x)); - ip.addParamValue('deltadist',[], @(x) isvector(x) || isempty(x)); - ip.addParamValue('lengthScale',[], @(x) isvector(x) && all(x>0)); - ip.addParamValue('lengthScale_prior',prior_unif, ... + ip=iparser(ip,'addOptional','metric', [], @isstruct); + ip=iparser(ip,'addParamValue','components',[], @(x) isempty(x) || iscell(x)); + ip=iparser(ip,'addParamValue','deltadist',[], @(x) isvector(x) || isempty(x)); + ip=iparser(ip,'addParamValue','lengthScale',[], @(x) isvector(x) && all(x>0)); + ip=iparser(ip,'addParamValue','lengthScale_prior',prior_unif, ... @(x) isstruct(x) || isempty(x)); - ip.parse(varargin{:}); + ip=iparser(ip,'parse',varargin{:}); metric=ip.Results.metric; if isempty(metric) diff --git a/gp/passgp.m b/gp/passgp.m index 6f309a9f..7a417416 100644 --- a/gp/passgp.m +++ b/gp/passgp.m @@ -49,22 +49,22 @@ ip=inputParser; ip.FunctionName = 'PASSGP'; - ip.addRequired('gp',@(x) isstruct(x) || iscell(x)); - ip.addRequired('x', @(x) ~isempty(x) && isreal(x) && all(isfinite(x(:)))) - ip.addRequired('y', @(x) ~isempty(x) && isreal(x) && all(isfinite(x(:)))) - ip.addParamValue('npass', 3, @(x) isscalar(x) && x > 0) - ip.addParamValue('ninit', 100, @(x) isscalar(x) && x > 0) - ip.addParamValue('nsub', 10, @(x) isscalar(x) && x > 0) - ip.addParamValue('pinc', 0.5, @(x) isscalar(x) && x > 0) - ip.addParamValue('pdel', 0.99, @(x) isscalar(x) && x > 0) - ip.addParamValue('pexc', 0.1, @(x) isscalar(x) && x > 0) - ip.addParamValue('opt', [], @(x) isstruct(x)) - ip.addParamValue('inf_method', 'MAP', @(x) ismember(x, {'MAP', 'MCMC', 'IA'})); - ip.addParamValue('fixed', 'off', @(x) ismember(x,{'on','off'})) - ip.addParamValue('display', 'off', @(x) ismember(x,{'on','off','iter'})) - ip.addParamValue('optimn', 1', @(x) isscalar(x) && x > 0 && rem(10*x,2)==0) - ip.addParamValue('z', [], @(x) isreal(x) && all(isfinite(x(:)))) - ip.parse(gp, x, y, varargin{:}); + ip=iparser(ip,'addRequired','gp',@(x) isstruct(x) || iscell(x)); + ip=iparser(ip,'addRequired','x', @(x) ~isempty(x) && isreal(x) && all(isfinite(x(:)))); + ip=iparser(ip,'addRequired','y', @(x) ~isempty(x) && isreal(x) && all(isfinite(x(:)))); + ip=iparser(ip,'addParamValue','npass', 3, @(x) isscalar(x) && x > 0); + ip=iparser(ip,'addParamValue','ninit', 100, @(x) isscalar(x) && x > 0); + ip=iparser(ip,'addParamValue','nsub', 10, @(x) isscalar(x) && x > 0); + ip=iparser(ip,'addParamValue','pinc', 0.5, @(x) isscalar(x) && x > 0); + ip=iparser(ip,'addParamValue','pdel', 0.99, @(x) isscalar(x) && x > 0); + ip=iparser(ip,'addParamValue','pexc', 0.1, @(x) isscalar(x) && x > 0); + ip=iparser(ip,'addParamValue','opt', [], @(x) isstruct(x)); + ip=iparser(ip,'addParamValue','inf_method', 'MAP', @(x) ismember(x, {'MAP', 'MCMC', 'IA'})); + ip=iparser(ip,'addParamValue','fixed', 'off', @(x) ismember(x,{'on','off'})); + ip=iparser(ip,'addParamValue','display', 'off', @(x) ismember(x,{'on','off'})); + ip=iparser(ip,'addParamValue','optimn', 1', @(x) isscalar(x) && x > 0 && rem(10*x,2)==0); + ip=iparser(ip,'addParamValue','z', [], @(x) isreal(x) && all(isfinite(x(:)))); + ip=iparser(ip,'parse',gp, x, y, varargin{:}); opt=ip.Results.opt; fixed=ip.Results.fixed; options.z = ip.Results.z; diff --git a/gp/pred_coxph.m b/gp/pred_coxph.m index c2daa0db..0d588cbd 100644 --- a/gp/pred_coxph.m +++ b/gp/pred_coxph.m @@ -14,18 +14,18 @@ ip=inputParser; ip.FunctionName = 'PRED_COXPH'; -ip.addRequired('gp',@(x) isstruct(x) || iscell(x)); -ip.addRequired('x', @(x) ~isempty(x) && isreal(x) && all(isfinite(x(:)))) -ip.addRequired('y', @(x) ~isempty(x) && isreal(x) && all(isfinite(x(:)))) -ip.addRequired('xt', @(x) ~isempty(x) && isreal(x) && all(isfinite(x(:)))) -ip.addParamValue('yt', [], @(x) isreal(x) && all(isfinite(x(:)))) -ip.addParamValue('z', [], @(x) isreal(x) && all(isfinite(x(:)))) -ip.addParamValue('zt', [], @(x) isreal(x) && all(isfinite(x(:)))) -ip.addParamValue('predcf', [], @(x) isempty(x) || ... - isvector(x) && isreal(x) && all(isfinite(x)&x>0)) -ip.addParamValue('tstind', [], @(x) isempty(x) || iscell(x) ||... - (isvector(x) && isreal(x) && all(isfinite(x)&x>0))) -ip.parse(gp, x, y, xt, varargin{:}); +ip=iparser(ip,'addRequired','gp',@(x) isstruct(x) || iscell(x)); +ip=iparser(ip,'addRequired','x', @(x) ~isempty(x) && isreal(x) && all(isfinite(x(:)))); +ip=iparser(ip,'addRequired','y', @(x) ~isempty(x) && isreal(x) && all(isfinite(x(:)))); +ip=iparser(ip,'addRequired','xt', @(x) ~isempty(x) && isreal(x) && all(isfinite(x(:)))); +ip=iparser(ip,'addParamValue','yt', [], @(x) isreal(x) && all(isfinite(x(:)))); +ip=iparser(ip,'addParamValue','z', [], @(x) isreal(x) && all(isfinite(x(:)))); +ip=iparser(ip,'addParamValue','zt', [], @(x) isreal(x) && all(isfinite(x(:)))); +ip=iparser(ip,'addParamValue','predcf', [], @(x) isempty(x) || ... + isvector(x) && isreal(x) && all(isfinite(x)&x>0)); +ip=iparser(ip,'addParamValue','tstind', [], @(x) isempty(x) || iscell(x) ||... + (isvector(x) && isreal(x) && all(isfinite(x)&x>0))); +ip=iparser(ip,'parse',gp, x, y, xt, varargin{:}); if iscell(gp) gp0=gp{1}; diff --git a/gp/scaled_hmc.m b/gp/scaled_hmc.m index 39998ec1..8ab2cc5b 100644 --- a/gp/scaled_hmc.m +++ b/gp/scaled_hmc.m @@ -107,21 +107,34 @@ % Transform the latent values switch gp.type case 'FULL' - getL(f, gp, x, y, u, z); % Evaluate the help matrix for transformation + output=getL(f, gp, x, y, u, z); % Evaluate the help matrix for transformation + L2=output.L2; w = (L2\f)'; % Rotate f towards prior case 'FIC' - getL(f, gp, x, y, u, z); % Evaluate the help matrix for transformation + output=getL(f, gp, x, y, u, z); % Evaluate the help matrix for transformation + Lp=output.Lp; + J=output.J; + U=output.U; + iJUU=output.iJUU; fs = f./Lp; % Rotate f towards prior w = fs + U*((J*U'-U')*fs); case {'PIC' 'PIC_BLOCK'} - getL(f, gp, x, y, u, z); % Evaluate the help matrix for transformation + output=getL(f, gp, x, y, u, z); % Evaluate the help matrix for transformation + Lp=output.Lp; + U=output.U; + J=output.J; + iJUU=output.iJUU; fs=zeros(size(f)); % Rotate f towards prior for i=1:length(ind) fs(ind{i}) = Lp{i}\f(ind{i}); end w = fs + U*((J*U'-U')*fs); case {'CS+FIC'} - getL(f, gp, x, y, u, z); % Evaluate the help matrix for transformation + output=getL(f, gp, x, y, u, z); % Evaluate the help matrix for transformation + Lp=output.Lp; + U=output.U; + J=output.J; + iJUU=output.iJUU; fs = Lp\f; % Rotate f towards prior w = fs + U*((J*U'-U')*fs); otherwise @@ -134,7 +147,7 @@ hmc2('state',latent_rstate) rej = 0; for li=1:opt.repeat - [w, energ, diagn] = hmc2(@f_e, w, opt, @f_g, gp, x, y, u, z); + [w, energ, diagn] = hmc2(@f_e, w, opt, @f_g, gp, x, y, u, z, output); w = w(end,:); % Find an optimal scaling during the first half of repeat if li +## +## This program is free software; you can redistribute it and/or modify it under +## the terms of the GNU General Public License as published by the Free Software +## Foundation; either version 3 of the License, or (at your option) any later +## version. +## +## This program is distributed in the hope that it will be useful, but WITHOUT +## ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or +## FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more +## details. +## +## You should have received a copy of the GNU General Public License along with +## this program; if not, see . + +## -*- texinfo -*- +## @deftypefn {Function File} {@var{parser} =} addOptional (@var{parser}, @var{argname}, @var{default}) +## @deftypefnx {Function File} {@var{parser} =} @var{parser}.addOptional (@var{argname}, @var{default}) +## @deftypefnx {Function File} {@var{parser} =} addOptional (@var{parser}, @var{argname}, @var{default}, @var{validator}) +## @deftypefnx {Function File} {@var{parser} =} @var{parser}.addOptional (@var{argname}, @var{default}, @var{validator}) +## Add new optional argument to the object @var{parser} of the class inputParser +## to implement an ordered arguments type of API +## +## @var{argname} must be a string with the name of the new argument. The order +## in which new arguments are added with @command{addOptional}, represents the +## expected order of arguments. +## +## @var{default} will be the value used when the argument is not specified. +## +## @var{validator} is an optional anonymous function to validate the given values +## for the argument with name @var{argname}. Alternatively, a function name +## can be used. +## +## See @command{help inputParser} for examples. +## +## @emph{Note}: if a string argument does not validate, it will be considered a +## ParamValue key. If an optional argument is not given a validator, anything +## will be valid, and so any string will be considered will be the value of the +## optional argument (in @sc{matlab}, if no validator is given and argument is +## a string it will also be considered a ParamValue key). +## +## @seealso{inputParser, @@inputParser/addParamValue, @@inputParser/addSwitch, +## @@inputParser/addParamValue, @@inputParser/addRequired, @@inputParser/parse} +## @end deftypefn + +function inPar = addOptional (inPar, name, def, val) + + ## check @inputParser/subsref for the actual code + if (nargin == 3) + inPar = subsref (inPar, substruct( + '.' , 'addOptional', + '()', {name, def} + )); + elseif (nargin == 4) + inPar = subsref (inPar, substruct( + '.' , 'addOptional', + '()', {name, def, val} + )); + else + print_usage; + endif + +endfunction diff --git a/inputparser/@inputParser/addParamValue.m b/inputparser/@inputParser/addParamValue.m new file mode 100644 index 00000000..95934f0b --- /dev/null +++ b/inputparser/@inputParser/addParamValue.m @@ -0,0 +1,55 @@ +## Copyright (C) 2011 Carnë Draug +## +## This program is free software; you can redistribute it and/or modify it under +## the terms of the GNU General Public License as published by the Free Software +## Foundation; either version 3 of the License, or (at your option) any later +## version. +## +## This program is distributed in the hope that it will be useful, but WITHOUT +## ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or +## FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more +## details. +## +## You should have received a copy of the GNU General Public License along with +## this program; if not, see . + +## -*- texinfo -*- +## @deftypefn {Function File} {@var{parser} =} addParamValue (@var{parser}, @var{argname}, @var{default}) +## @deftypefnx {Function File} {@var{parser} =} @var{parser}.addParamValue (@var{argname}, @var{default}) +## @deftypefnx {Function File} {@var{parser} =} addParamValue (@var{parser}, @var{argname}, @var{default}, @var{validator}) +## @deftypefnx {Function File} {@var{parser} =} @var{parser}.addParamValue (@var{argname}, @var{default}, @var{validator}) +## Add new parameter to the object @var{parser} of the class inputParser to implement +## a name/value pair type of API. +## +## @var{argname} must be a string with the name of the new parameter. +## +## @var{default} will be the value used when the parameter is not specified. +## +## @var{validator} is an optional function handle to validate the given values +## for the parameter with name @var{argname}. Alternatively, a function name +## can be used. +## +## See @command{help inputParser} for examples. +## +## @seealso{inputParser, @@inputParser/addOptional, @@inputParser/addSwitch, +## @@inputParser/addParamValue, @@inputParser/addRequired, @@inputParser/parse} +## @end deftypefn + +function inPar = addParamValue (inPar, name, def, val) + + ## check @inputParser/subsref for the actual code + if (nargin == 3) + inPar = subsref (inPar, substruct( + '.' , 'addParamValue', + '()', {name, def} + )); + elseif (nargin == 4) + inPar = subsref (inPar, substruct( + '.' , 'addParamValue', + '()', {name, def, val} + )); + else + print_usage; + endif + +endfunction diff --git a/inputparser/@inputParser/addRequired.m b/inputparser/@inputParser/addRequired.m new file mode 100644 index 00000000..bd8e7e5e --- /dev/null +++ b/inputparser/@inputParser/addRequired.m @@ -0,0 +1,60 @@ +## Copyright (C) 2011 Carnë Draug +## +## This program is free software; you can redistribute it and/or modify it under +## the terms of the GNU General Public License as published by the Free Software +## Foundation; either version 3 of the License, or (at your option) any later +## version. +## +## This program is distributed in the hope that it will be useful, but WITHOUT +## ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or +## FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more +## details. +## +## You should have received a copy of the GNU General Public License along with +## this program; if not, see . + +## -*- texinfo -*- +## @deftypefn {Function File} {@var{parser} =} addRequired (@var{parser}, @var{argname}) +## @deftypefnx {Function File} {@var{parser} =} @var{parser}.addRequired (@var{argname}) +## @deftypefnx {Function File} {@var{parser} =} addRequired (@var{parser}, @var{argname}, @var{validator}) +## @deftypefnx {Function File} {@var{parser} =} @var{parser}.addRequired (@var{argname}, @var{validator}) +## Add new mandatory argument to the object @var{parser} of inputParser class. +## +## This method belongs to the inputParser class and implements an ordered +## arguments type of API. +## +## @var{argname} must be a string with the name of the new argument. The order +## in which new arguments are added with @command{addrequired}, represents the +## expected order of arguments. +## +## @var{validator} is an optional function handle to validate the given values +## for the argument with name @var{argname}. Alternatively, a function name +## can be used. +## +## See @command{help inputParser} for examples. +## +## @emph{Note}: this can be used together with the other type of arguments but +## it must be the first (see @command{@@inputParser}). +## +## @seealso{inputParser, @@inputParser/addOptional, @@inputParser/addParamValue +## @@inputParser/addParamValue, @@inputParser/addSwitch, @@inputParser/parse} +## @end deftypefn + +function inPar = addRequired (inPar, name, val) + + ## check @inputParser/subsref for the actual code + if (nargin == 2) + inPar = subsref (inPar, substruct( + '.' , 'addRequired', + '()', {name} + )); + elseif (nargin == 3) + inPar = subsref (inPar, substruct( + '.' , 'addRequired', + '()', {name, val} + )); + else + print_usage; + endif + +endfunction diff --git a/inputparser/@inputParser/addSwitch.m b/inputparser/@inputParser/addSwitch.m new file mode 100644 index 00000000..518ff80e --- /dev/null +++ b/inputparser/@inputParser/addSwitch.m @@ -0,0 +1,48 @@ +## Copyright (C) 2011-2012 Carnë Draug +## +## This program is free software; you can redistribute it and/or modify it under +## the terms of the GNU General Public License as published by the Free Software +## Foundation; either version 3 of the License, or (at your option) any later +## version. +## +## This program is distributed in the hope that it will be useful, but WITHOUT +## ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or +## FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more +## details. +## +## You should have received a copy of the GNU General Public License along with +## this program; if not, see . + +## -*- texinfo -*- +## @deftypefn {Function File} {@var{parser} =} addSwitch (@var{parser}, @var{argname}) +## @deftypefnx {Function File} {@var{parser} =} @var{parser}.addSwitch (@var{argname}) +## Add new switch type of argument to the object @var{parser} of inputParser class. +## +## This method belongs to the inputParser class and implements a switch +## arguments type of API. +## +## @var{argname} must be a string with the name of the new argument. Arguments +## of this type can be specified at the end, after @code{Required} and @code{Optional}, +## and mixed between the @code{ParamValue}. They default to false. If one of the +## arguments supplied is a string like @var{argname}, then after parsing the value +## of @var{parse}.Results.@var{argname} will be true. +## +## See @command{help inputParser} for examples. +## +## @seealso{inputParser, @@inputParser/addOptional, @@inputParser/addParamValue +## @@inputParser/addParamValue, @@inputParser/addRequired, @@inputParser/parse} +## @end deftypefn + +function inPar = addSwitch (inPar, name) + + ## check @inputParser/subsref for the actual code + if (nargin == 2) + inPar = subsref (inPar, substruct( + '.' , 'addSwitch', + '()', {name} + )); + else + print_usage; + endif + +endfunction diff --git a/inputparser/@inputParser/createCopy.m b/inputparser/@inputParser/createCopy.m new file mode 100644 index 00000000..86e897a7 --- /dev/null +++ b/inputparser/@inputParser/createCopy.m @@ -0,0 +1,38 @@ +## Copyright (C) 2011 Carnë Draug +## +## This program is free software; you can redistribute it and/or modify it under +## the terms of the GNU General Public License as published by the Free Software +## Foundation; either version 3 of the License, or (at your option) any later +## version. +## +## This program is distributed in the hope that it will be useful, but WITHOUT +## ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or +## FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more +## details. +## +## You should have received a copy of the GNU General Public License along with +## this program; if not, see . + +## -*- texinfo -*- +## @deftypefn {Function File} {@var{new_parser} =} createCopy (@var{parser}) +## Creates a copy @var{new_parser} of the object @var{parser} of the inputParser +## class. +## +## @seealso{inputParser, @@inputParser/addOptional, @@inputParser/addParamValue +## @@inputParser/addParamValue, @@inputParser/addRequired, @@inputParser/addSwitch, +## @@inputParser/parse} +## @end deftypefn + +function outPar = createCopy (inPar) + + if ( nargin != 1 ) + print_usage; + elseif ( !isa (inPar, 'inputParser') ) + error ("object must be of the inputParser class but '%s' was used", class (inPar) ); + endif + + ## yes, it's a ridiculous function but exists for MatLab compatibility. In there + ## the inputParser class is a 'handle class' and this would just return a reference + outPar = inPar; + +endfunction diff --git a/inputparser/@inputParser/display.m b/inputparser/@inputParser/display.m new file mode 100644 index 00000000..230b8d0b --- /dev/null +++ b/inputparser/@inputParser/display.m @@ -0,0 +1,58 @@ +## Copyright (C) 2011-2012 Carnë Draug +## +## This program is free software; you can redistribute it and/or modify it under +## the terms of the GNU General Public License as published by the Free Software +## Foundation; either version 3 of the License, or (at your option) any later +## version. +## +## This program is distributed in the hope that it will be useful, but WITHOUT +## ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or +## FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more +## details. +## +## You should have received a copy of the GNU General Public License along with +## this program; if not, see . + +function display (inPar) + + if (inPar.FunctionName) + name = inPar.FunctionName(1:end-3); + else + name = ""; + endif + + required = arg_list (inPar.Required); + optional = arg_list (inPar.Optional); + paramvalue = arg_list (inPar.ParamValue); + switches = arg_list (inPar.Switch); + + printf ("Input Parser object with:\n"); + printf ("CaseSensitive: %s\n", binstr (inPar.CaseSensitive)); + printf ("StructExpand : %s\n", binstr (inPar.StructExpand)); + printf ("KeepUnmatched: %s\n", binstr (inPar.KeepUnmatched)); + printf ("FunctionName : '%s'\n", name); + printf ("\n"); + printf ("Required arguments : %s\n", required); + printf ("Optional arguments : %s\n", optional); + printf ("ParamValue arguments: %s\n", paramvalue); + printf ("Switch arguments : %s\n", switches); + +endfunction + +function [str] = binstr (bin) + if (bin) + str = "true"; + else + str = "false"; + endif +endfunction + +function [str] = arg_list (args) + str = strcat ("'", fieldnames (args), {"', "}); + if (!isempty (str)) + str = cstrcat (str{:}); + str = str(1:end-2); # remove the last comma and space + else + str = ""; + endif +endfunction diff --git a/inputparser/@inputParser/inputParser.m b/inputparser/@inputParser/inputParser.m new file mode 100644 index 00000000..19642795 --- /dev/null +++ b/inputparser/@inputParser/inputParser.m @@ -0,0 +1,228 @@ +## Copyright (C) 2011-2012 Carnë Draug +## +## This program is free software; you can redistribute it and/or modify it under +## the terms of the GNU General Public License as published by the Free Software +## Foundation; either version 3 of the License, or (at your option) any later +## version. +## +## This program is distributed in the hope that it will be useful, but WITHOUT +## ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or +## FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more +## details. +## +## You should have received a copy of the GNU General Public License along with +## this program; if not, see . +## +## Changelog: +## 12.03.2013, Ville Tolvanen - Added option to give inputparser optional +## parameter & value pairs in structure. + +## -*- texinfo -*- +## @deftypefn {Function File} {@var{parser} =} inputParser () +## Create object @var{parser} of the inputParser class. +## +## This class is designed to allow easy parsing of function arguments. This class +## supports four types of arguments: +## +## @enumerate +## @item mandatory (see @command{@@inputParser/addRequired}); +## @item optional (see @command{@@inputParser/addOptional}); +## @item named (see @command{@@inputParser/addParamValue}); +## @item switch (see @command{@@inputParser/addSwitch}). +## @end enumerate +## +## After defining the function API with this methods, the supplied arguments can +## be parsed with the @command{@@inputParser/parse} method and the parsing results +## accessed with the @command{Results} accessor. +## +## @deftypefnx {Accessor method} parser.Parameters +## Return list of parameters name already defined. +## +## @deftypefnx {Accessor method} parser.Results +## Return structure with argument names as fieldnames and corresponding values. +## +## @deftypefnx {Accessor method} parser.Unmatched +## Return structure similar to @command{Results} for unmatched parameters. See +## the @command{KeepUnmatched} property. +## +## @deftypefnx {Accessor method} parser.UsingDefaults +## Return cell array with the names of arguments that are using default values. +## +## @deftypefnx {Class property} parser.CaseSensitive = @var{boolean} +## Set whether matching of argument names should be case sensitive. Defaults to false. +## +## @deftypefnx {Class property} parser.FunctionName = @var{name} +## Set function name to be used on error messages. Defauls to empty string. +## +## @deftypefnx {Class property} parser.KeepUnmatched = @var{boolean} +## Set whether an error should be given for non-defined arguments. Defaults to +## false. If set to true, the extra arguments can be accessed through +## @code{Unmatched} after the @code{parse} method. Note that since @command{Switch} +## and @command{ParamValue} arguments can be mixed, it is not possible to know +## the unmatched type. If argument is found unmatched it is assumed to be of the +## @command{ParamValue} type and it is expected to be followed by a value. +## +## @deftypefnx {Class property} parser.StructExpand = @var{boolean} +## Set whether a structure can be passed to the function instead of parameter +## value pairs. Defaults to true. Not implemented yet. +## +## The following example shows how to use this class: +## +## @example +## @group +## function check (pack, path, mat, varargin) +## p = inputParser; # create object +## p.FunctionName = "check"; # set function name +## p = p.addRequired ("pack", @@ischar); # create mandatory argument +## +## p = p.addOptional ("path", pwd(), @@ischar); # create optional argument +## +## ## one can create a function handle to anonymous functions for validators +## val_mat = @@(x)isvector(x) && all( x <= 1) && all(x >= 0); +## p = p.addOptional ("mat", [0 0], @@val_mat); +## +## ## create two ParamValue type of arguments +## val_type = @@(x) ischar(x) && any(strcmp(x, @{"linear", "quadratic"@}); +## p = p.addParamValue ("type", "linear", @@val_type); +## val_verb = @@(x) ischar(x) && any(strcmp(x, @{"low", "medium", "high"@}); +## p = p.addParamValue ("tolerance", "low", @@val_verb); +## +## ## create a switch type of argument +## p = p.addSwitch ("verbose"); +## +## p = p.parse (pack, path, mat, varargin@{:@}); +## +## ## the rest of the function can access the input by accessing p.Results +## ## for example, to access the value of tolerance, use p.Results.tolerance +## endfunction +## +## check ("mech"); # valid, will use defaults for other arguments +## check (); # error since at least one argument is mandatory +## check (1); # error since !ischar +## check ("mech", "~/dev"); # valid, will use defaults for other arguments +## +## check ("mech", "~/dev", [0 1 0 0], "type", "linear"); # valid +## +## ## the following is also valid. Note how the Switch type of argument can be +## ## mixed into or before the ParamValue (but still after Optional) +## check ("mech", "~/dev", [0 1 0 0], "verbose", "tolerance", "high"); +## +## ## the following returns an error since not all optional arguments, `path' and +## ## `mat', were given before the named argument `type'. +## check ("mech", "~/dev", "type", "linear"); +## @end group +## @end example +## +## @emph{Note 1}: a function can have any mixture of the four API types but they +## must appear in a specific order. @command{Required} arguments must be the very +## first which can be followed by @command{Optional} arguments. Only the +## @command{ParamValue} and @command{Switch} arguments can be mixed together but +## must be at the end. +## +## @emph{Note 2}: if both @command{Optional} and @command{ParamValue} arguments +## are mixed in a function API, once a string Optional argument fails to validate +## against, it will be considered the end of @command{Optional} arguments and the +## first key for a @command{ParamValue} and @command{Switch} arguments. +## +## @seealso{@@inputParser/addOptional, @@inputParser/addSwitch, +## @@inputParser/addParamValue, @@inputParser/addRequired, +## @@inputParser/createCopy, @@inputParser/parse} +## @end deftypefn + +function inPar = inputParser + + if (nargin != 0) + print_usage; + endif + + inPar = struct; + + ## these are not to be accessed by users. Each will have a field whose names + ## are the argnames which will also be a struct with fieldnames 'validator' + ## and 'default' + inPar.ParamValue = struct; + inPar.Optional = struct; + inPar.Required = struct; + inPar.Switch = struct; + + ## this will be filled when the methodd parse is used and will be a struct whose + ## fieldnames are the argnames that return their value + inPar.Results = struct; + + ## an 1xN cell array with argnames. It is read only by the user and its order + ## showws the order that they were added to the object (which is the order they + ## will be expected) + inPar.Parameters = {}; + + inPar.CaseSensitive = false; + inPar.FunctionName = ''; # name of the function for the error message + inPar.KeepUnmatched = false; + inPar.StructExpand = true; + inPar.Unmatched = struct; + inPar.UsingDefaults = {}; + + inPar = class (inPar, 'inputParser'); + +endfunction + +%!shared p, out +%! p = inputParser; +%! p = p.addRequired ("req1", @(x) ischar (x)); +%! p = p.addOptional ("op1", "val", @(x) ischar (x) && any (strcmp (x, {"val", "foo"}))); +%! p = p.addOptional ("op2", 78, @(x) (x) > 50); +%! p = p.addSwitch ("verbose"); +%! p = p.addParamValue ("line", "tree", @(x) ischar (x) && any (strcmp (x, {"tree", "circle"}))); +%! ## check normal use, only required are given +%! out = p.parse ("file"); +%!assert ({out.Results.req1, out.Results.op1, out.Results.op2, out.Results.verbose, out.Results.line}, +%! {"file" , "val" , 78 , false , "tree"}); +%!assert (out.UsingDefaults, {"op1", "op2", "verbose", "line"}); +%! ## check normal use, but give values different than defaults +%! out = p.parse ("file", "foo", 80, "line", "circle", "verbose"); +%!assert ({out.Results.req1, out.Results.op1, out.Results.op2, out.Results.verbose, out.Results.line}, +%! {"file" , "foo" , 80 , true , "circle"}); +%! ## check optional is skipped and considered ParamValue if unvalidated string +%! out = p.parse ("file", "line", "circle"); +%!assert ({out.Results.req1, out.Results.op1, out.Results.op2, out.Results.verbose, out.Results.line}, +%! {"file" , "val" , 78 , false , "circle"}); +%! ## check case insensitivity +%! out = p.parse ("file", "foo", 80, "LiNE", "circle", "vERbOSe"); +%!assert ({out.Results.req1, out.Results.op1, out.Results.op2, out.Results.verbose, out.Results.line}, +%! {"file" , "foo" , 80 , true , "circle"}); +%! ## check KeepUnmatched +%! p.KeepUnmatched = true; +%! out = p.parse ("file", "foo", 80, "line", "circle", "verbose", "extra", 50); +%!assert (out.Unmatched.extra, 50) +%! ## check error when missing required +%!error(p.parse()) +%! ## check error when given required do not validate +%!error(p.parse(50)) +%! ## check error when given optional do not validate +%!error(p.parse("file", "no-val")) +%! ## check error when given ParamValue do not validate +%!error(p.parse("file", "foo", 51, "line", "round")) + +## check alternative method (obj), ...) API +%!shared p, out +%! p = inputParser; +%! p = addRequired (p, "req1", @(x) ischar (x)); +%! p = addOptional (p, "op1", "val", @(x) ischar (x) && any (strcmp (x, {"val", "foo"}))); +%! p = addOptional (p, "op2", 78, @(x) (x) > 50); +%! p = addSwitch (p, "verbose"); +%! p = addParamValue (p, "line", "tree", @(x) ischar (x) && any (strcmp (x, {"tree", "circle"}))); +%! ## check normal use, only required are given +%! out = parse (p, "file"); +%!assert ({out.Results.req1, out.Results.op1, out.Results.op2, out.Results.verbose, out.Results.line}, +%! {"file" , "val" , 78 , false , "tree"}); +%!assert (out.UsingDefaults, {"op1", "op2", "verbose", "line"}); +%! ## check normal use, but give values different than defaults +%! out = parse (p, "file", "foo", 80, "line", "circle", "verbose"); +%!assert ({out.Results.req1, out.Results.op1, out.Results.op2, out.Results.verbose, out.Results.line}, +%! {"file" , "foo" , 80 , true , "circle"}); + +## if we were matlab compatible... +%!shared p, out +%! p = inputParser; +%! p = p.addOptional ("op1", "val"); +%! p = p.addParamValue ("line", "tree"); +%!xtest assert (getfield (p.parse("line", "circle"), "Results"), struct ("op1", "val", "line", "circle")); diff --git a/inputparser/@inputParser/parse.m b/inputparser/@inputParser/parse.m new file mode 100644 index 00000000..2a7c407e --- /dev/null +++ b/inputparser/@inputParser/parse.m @@ -0,0 +1,37 @@ +## Copyright (C) 2011 Carnë Draug +## +## This program is free software; you can redistribute it and/or modify it under +## the terms of the GNU General Public License as published by the Free Software +## Foundation; either version 3 of the License, or (at your option) any later +## version. +## +## This program is distributed in the hope that it will be useful, but WITHOUT +## ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or +## FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more +## details. +## +## You should have received a copy of the GNU General Public License along with +## this program; if not, see . + +## -*- texinfo -*- +## @deftypefn {Function File} {@var{parser} =} parse (@var{parser}, @var{varargin}) +## @deftypefnx {Function File} {@var{parser} =} @var{parser}.parse (@var{varargin}) +## Parses and validates list of arguments according to object @var{parser} of the +## class inputParser. +## +## After parsing, the results can be accessed with the @command{Results} +## accessor. See @command{help inputParser} for a more complete description. +## +## @seealso{inputParser, @@inputParser/addOptional, @@inputParser/addParamValue +## @@inputParser/addParamValue, @@inputParser/addRequired, @@inputParser/addSwitch} +## @end deftypefn + +function inPar = parse (inPar, varargin) + + ## check @inputParser/subsref for the actual code + inPar = subsref (inPar, substruct( + '.' , 'parse', + '()', varargin + )); + +endfunction diff --git a/inputparser/@inputParser/subsasgn.m b/inputparser/@inputParser/subsasgn.m new file mode 100644 index 00000000..01250e33 --- /dev/null +++ b/inputparser/@inputParser/subsasgn.m @@ -0,0 +1,37 @@ +## Copyright (C) 2011 Carnë Draug +## +## This program is free software; you can redistribute it and/or modify it under +## the terms of the GNU General Public License as published by the Free Software +## Foundation; either version 3 of the License, or (at your option) any later +## version. +## +## This program is distributed in the hope that it will be useful, but WITHOUT +## ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or +## FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more +## details. +## +## You should have received a copy of the GNU General Public License along with +## this program; if not, see . + +function inPar = subsasgn (inPar, idx, rhs) + + if ( idx.type != '.' ) + error ("invalid index for class %s", class (inPar) ); + endif + + switch idx.subs + case {'CaseSensitive', 'KeepUnmatched', 'StructExpand'} + if ( !islogical (rhs) ) + error("Property '%s' of the class inputParser must be logical", idx.subs) + endif + inPar.(idx.subs) = rhs; + case 'FunctionName' + if ( !ischar (rhs) ) + error("Property 'FunctionName' of the class inputParser can only be set to a string") + endif + inPar.(idx.subs) = sprintf("%s : ", rhs); + otherwise + error ("invalid index for assignment of class %s", class (inPar) ); + endswitch + +endfunction diff --git a/inputparser/@inputParser/subsref.m b/inputparser/@inputParser/subsref.m new file mode 100644 index 00000000..aa35d57c --- /dev/null +++ b/inputparser/@inputParser/subsref.m @@ -0,0 +1,355 @@ +## Copyright (C) 2011-2012 Carnë Draug +## +## This program is free software; you can redistribute it and/or modify it under +## the terms of the GNU General Public License as published by the Free Software +## Foundation; either version 3 of the License, or (at your option) any later +## version. +## +## This program is distributed in the hope that it will be useful, but WITHOUT +## ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or +## FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more +## details. +## +## You should have received a copy of the GNU General Public License along with +## this program; if not, see . +## +## Changelog: +## 12.03.2013, Ville Tolvanen - Added option to give inputparser optional +## parameter & value pairs in structure. + + +function inPar = subsref (inPar, idx) + + if ( !isa (inPar, 'inputParser') ) + error ("object must be of the inputParser class but '%s' was used", class (inPar) ); + elseif ( idx(1).type != '.' ) + error ("invalid index for class %s", class (inPar) ); + endif + + ## the following at the end may allow to use the obj.method notation one day + ## jwe is very against this ugly hack + ## what would happen if the user has the obj inside a struct? Bad things! +# ori = inputname(1); +# assignin('caller', ori, inPar); + + method = idx(1).subs; + + switch method + case 'Results' + inPar = retrieve_results (inPar, idx) + case 'Parameters' + inPar = inPar.Parameters; + case 'parse' + inPar = parse_args (inPar, idx); + case 'Unmatched' + case 'UsingDefaults' + case {'addOptional', 'addParamValue', 'addRequired', 'addSwitch'} + inPar = check_methods (inPar, idx); + otherwise + error ("invalid index for reference of class %s", class (inPar) ); + endswitch + + ## TODO we should make inPar an object of the inputParser class again. At + ## least after running parse it becomes just a structure again. While that is + ## bad, at least allows for easy access to the Results and Unmatched fields + ## without extra coding. +# inPar = class (inPar, 'inputParser'); + +endfunction + +function out = retrieve_results (inPar, idx) + + if ( numel(idx) != 2 || idx(2).type != '.' ) + print_usage ("@inputParser/Results"); + endif + + out = inPar.Results.(idx(2).subs); + +endfunction + + +## when parsing options, here's the principle: Required options have to be the +## first ones. They are followed by Optional if any. In the end come the +## ParamValue mixed with Switch. Any other order makes no sense +function inPar = parse_args (inPar, idx) + + ## syntax is inPar.parse (arguments) + if ( numel(idx) != 2 || idx(2).type != '()' ) + print_usage ("@inputParser/parse"); + endif + + ## this makes it easier to read but may be memory instensive + args = idx(2).subs; + if ~isempty(args) && isstruct(args{1}) && isempty(fieldnames(args{1})) + args={}; + end + + ## make copy of ordered list of Parameters to keep the original intact and readable + inPar.copy = inPar.Parameters; + if ( numel (fieldnames (inPar.Required)) > numel (args) ) + error("%sNot enough arguments", inPar.FunctionName); + endif + + ## we take names out of 'copy' and values out of 'args', evaluate them and + ## store them into 'Results' + for i = 1 : numel (fieldnames (inPar.Required)) + [name, inPar.copy] = shift (inPar.copy); + [value, args] = shift (args); + if ( !feval (inPar.Required.(name).validator, value) ) + error_invalid (inPar.FunctionName, name, inPar.Required.(name).validator); + endif + inPar.Results.(name) = value; + endfor + + ## loop a maximum #times of the number of Optional, similarly to the required + ## loop. Once ran out of 'args', move their name into usingDefaults, place + ## their default values into 'Results', and break + + ## because if an argument is string and does not validate, should be considered + ## a ParamValue key + found_possible_key = false; + + for i = 1 : numel (fieldnames (inPar.Optional)) + if ( !numel (args) || found_possible_key) + ## loops the number of Optional options minus the number of them already processed + for n = 1 : (numel (fieldnames (inPar.Optional)) - i + 1 ) + [name, inPar.copy] = shift (inPar.copy); + inPar.UsingDefaults = push (inPar.UsingDefaults, name); + inPar.Results.(name) = inPar.Optional.(name).default; + endfor + break + endif + [name, inPar.copy] = shift (inPar.copy); + [value, args] = shift (args); + if ( !feval (inPar.Optional.(name).validator, value) ) + if (ischar (value) ) || (isstruct(value) && ~isempty(value)) + ## maybe the other optional are not defined, this can be Paramvalue + ## place this one on defaults and go back to the top with note to clean loop + inPar.UsingDefaults = push (inPar.UsingDefaults, name); + inPar.Results.(name) = inPar.Optional.(name).default; + found_possible_key = true; + args = unshift (args, value); + continue + else + error_invalid (inPar.FunctionName, name, inPar.Optional.(name).validator); + endif + else + inPar.Results.(name) = value; + endif + endfor + + ## loop a maximum #times of the number of ParamValue, taking pairs of keys and + ## values out 'args'. We no longer expect an order so we need the index in + ## 'copy' to remove it from there. Once ran out of 'args', move their name + ## into usingDefaults, place their default values into 'Results', and break + for i = 1 : (numel (fieldnames (inPar.ParamValue)) + numel (fieldnames (inPar.Switch))) + if numel(args)==1 && isstruct(args{1}) %&& isequal(fieldnames(args{1})(:), inPar.copy(:)) + ## input parser given structure containing ParamValues, modify args + tmpargs=args{1}; + args={}; + names=fieldnames(tmpargs); + for j = 1 : numel(names) + args{1,end+1} = names{j}; + args{1,end+1} = getfield(tmpargs, names{j}); + endfor + endif + if ( numel (args) < 2) + ## loops the number of times left in 'copy' since these are the last type + for n = 1 : numel (inPar.copy) + [name, inPar.copy] = shift (inPar.copy); + inPar.UsingDefaults = push (inPar.UsingDefaults, name); + if (isfield (inPar.ParamValue, name)) + inPar.Results.(name) = inPar.ParamValue.(name).default; + else + inPar.Results.(name) = inPar.Switch.(name).default; + endif + endfor + break + endif + [key, args] = shift (args); + if ( !ischar (key) ) + %keyboard + error("%sParameter/Switch names must be strings", inPar.FunctionName); + endif + if (inPar.CaseSensitive) + index = find( strcmp(inPar.copy, key)); + else + index = find( strcmpi(inPar.copy, key)); + endif + ## we can't use isfield here to support case insensitive + if (any (strcmpi (fieldnames (inPar.Switch), key))) + value = true; + method = "Switch"; + else + ## then it must be a ParamValue (even if unmatched), shift its value + if (numel (args) < 1 ) + error ("%sparameter '%s' does not have a value", inPar.FunctionName, key); + endif + [value, args] = shift (args); + method = "ParamValue"; + endif + + ## empty index means no match so either return error or move them into 'Unmatched' + if (!isempty (index)) + [name, inPar.copy] = shift (inPar.copy, index); + if ( !feval (inPar.(method).(name).validator, value)) + error_invalid (inPar.FunctionName, key, inPar.(method).(name).validator); + endif + ## we use the name shifted from 'copy' instead of the key from 'args' in case + ## the key is in the wrong case + inPar.Results.(name) = value; + elseif (isempty (index) && inPar.KeepUnmatched ) + inPar.Unmatched.(key) = value; + i = i - 1; # this time didn't count, go back one + else + error ("%sargument '%s' did not match any valid parameter of the parser", inPar.FunctionName, key); + endif + endfor + + ## if there's leftovers they must be unmatched. Note that some unmatched can + ## have already been processed in the ParamValue loop + if ( numel (args) && inPar.KeepUnmatched ) + for i = 1 : ( numel(args) / 2 ) + [key, args] = shift (args); + [value, args] = shift (args); + inPar.Unmatched.(key) = value; + endfor + elseif ( numel (args) ) && ~isempty(all(struct2cell(args{:}))) + error("%sfound unmatched parameters at end of arguments list", inPar.FunctionName); + endif + + ## remove copied field, keep it clean + inPar = rmfield (inPar, 'copy'); + +endfunction + + +function inPar = check_methods (inPar, idx) + + ## this makes it easier to read but is more memory intensive? + method = idx(1).subs; + args = idx(2).subs; + func = sprintf ("@inputParser/%s", method); + + if ( idx(2).type != '()' ) + print_usage (func); + endif + def_val = @() true; + [name, args] = shift (args); + ## a validator is optional but that complicates handling all the parsing with + ## few functions and conditions. If not specified @() true will always return + ## true. Simply using true is not enough because if the argument is zero it + ## return false and if it's too large, takes up memory + switch method + case {'addOptional', 'addParamValue'} + if ( numel (args) == 1 ) + args{2} = def_val; + elseif ( numel (args) == 2 ) + args{2} = validate_validator (args{2}); + else + print_usage(func); + endif + [def, val] = args{:}; + case {'addRequired'} + if ( numel (args) == 0 ) + val = def_val; + elseif ( numel (args) == 1 ) + val = validate_validator (args{1}); + else + print_usage(func); + endif + def = false; + case {'addSwitch'} + if ( numel (args) == 0 ) + val = def_val; + def = false; + else + print_usage(func); + endif + otherwise + error ("invalid index for reference of class %s", class (inPar) ); + endswitch + + inPar = validate_args (method(4:end), inPar, name, val, def); + +endfunction + +## because we are nice we also support using the name of a function and not only +## a function handle +function val = validate_validator (val) + if ( ischar (val) ) + val = str2func (val); + elseif ( !isa (val, 'function_handle') ) + error ("validator must be a function handle or the name of a valid function"); + end +endfunction + +## to have a single function that handles them all, something must be done with +## def value, because addRequire does not have those. That's why the order of +## the last two args is different from the rest and why 'def' has a default value +function inPar = validate_args (method, inPar, name, val, def = false) + + if ( !strcmp (class (inPar), 'inputParser') ) + error ("object must be of the inputParser class but '%s' was used", class (inPar) ); + elseif ( !isvarname (name) ) + error ("invalid variable name in argname"); + endif + + ## because the order arguments are specified are the order they are expected, + ## can't have ParamValue/Switch before Optional, and Optional before Required + n_optional = numel (fieldnames (inPar.Optional)); + n_params = numel (fieldnames (inPar.ParamValue)); + n_switch = numel (fieldnames (inPar.Switch)); + if ( strcmp (method, 'Required') && ( n_optional || n_params || n_switch) ) + error ("Can't specify 'Required' arguments after Optional, ParamValue or Switch"); + elseif ( strcmp (method, 'Optional') && ( n_params || n_switch) ) + error ("Can't specify 'Optional' arguments after ParamValue or Switch"); + endif + + ## even if CaseSensitive is turned on, we still shouldn't have two args with + ## the same. What if they decide to change in the middle of specifying them? + if ( any (strcmpi (inPar.Parameters, name)) ) + error ("argname '%s' has already been specified", name); + else + inPar.Parameters = push (inPar.Parameters, name); + inPar.(method).(name).default = def; + inPar.(method).(name).validator = val; + endif + + ## make sure that the given default value is actually valid + ## TODO make sure that when using the default, it's only validated once + ## allow empty default as in Matlab + if ( isa (val, 'function_handle') && !strcmpi (method, 'Required') && !isempty(def) && !feval (val, def) ) + error ("default value for '%s' failed validation with '%s'", name, func2str (val) ); + endif + +endfunction + +## this is just for consistency of error message +function error_invalid (prefix, name, val) + error("%sargument '%s' failed validation %s", prefix, name, func2str (val)); +endfunction + +################################################################################ +## very auxiliary functions +################################################################################ + +function [out, in] = shift (in, idx = 1) + out = in{idx}; + in(idx) = []; +endfunction + +function [in] = unshift (in, add) + if ( !iscell (add) ) + add = {add}; + endif + in (numel(add) + 1 : end + numel(add)) = in; + in (1:numel(add)) = add; +endfunction + +function [in] = push (in, add) + if ( !iscell (add) ) + add = {add}; + endif + in( end+1 : end+numel(add) ) = add; +endfunction diff --git a/inputparser/@inputParser/subsref.m~ b/inputparser/@inputParser/subsref.m~ new file mode 100644 index 00000000..86bd7612 --- /dev/null +++ b/inputparser/@inputParser/subsref.m~ @@ -0,0 +1,336 @@ +## Copyright (C) 2011-2012 Carnë Draug +## +## This program is free software; you can redistribute it and/or modify it under +## the terms of the GNU General Public License as published by the Free Software +## Foundation; either version 3 of the License, or (at your option) any later +## version. +## +## This program is distributed in the hope that it will be useful, but WITHOUT +## ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or +## FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more +## details. +## +## You should have received a copy of the GNU General Public License along with +## this program; if not, see . + +function inPar = subsref (inPar, idx) + + if ( !isa (inPar, 'inputParser') ) + error ("object must be of the inputParser class but '%s' was used", class (inPar) ); + elseif ( idx(1).type != '.' ) + error ("invalid index for class %s", class (inPar) ); + endif + + ## the following at the end may allow to use the obj.method notation one day + ## jwe is very against this ugly hack + ## what would happen if the user has the obj inside a struct? Bad things! +# ori = inputname(1); +# assignin('caller', ori, inPar); + + method = idx(1).subs; + + switch method + case 'Results' + inPar = retrieve_results (inPar, idx) + case 'Parameters' + inPar = inPar.Parameters; + case 'parse' + inPar = parse_args (inPar, idx); + case 'Unmatched' + case 'UsingDefaults' + case {'addOptional', 'addParamValue', 'addRequired', 'addSwitch'} + inPar = check_methods (inPar, idx); + otherwise + error ("invalid index for reference of class %s", class (inPar) ); + endswitch + + ## TODO we should make inPar an object of the inputParser class again. At + ## least after running parse it becomes just a structure again. While that is + ## bad, at least allows for easy access to the Results and Unmatched fields + ## without extra coding. +# inPar = class (inPar, 'inputParser'); + +endfunction + +function out = retrieve_results (inPar, idx) + + if ( numel(idx) != 2 || idx(2).type != '.' ) + print_usage ("@inputParser/Results"); + endif + + out = inPar.Results.(idx(2).subs); + +endfunction + + +## when parsing options, here's the principle: Required options have to be the +## first ones. They are followed by Optional if any. In the end come the +## ParamValue mixed with Switch. Any other order makes no sense +function inPar = parse_args (inPar, idx) + + ## syntax is inPar.parse (arguments) + if ( numel(idx) != 2 || idx(2).type != '()' ) + print_usage ("@inputParser/parse"); + endif + + ## this makes it easier to read but may be memory instensive + args = idx(2).subs; + + ## make copy of ordered list of Parameters to keep the original intact and readable + inPar.copy = inPar.Parameters; + + if ( numel (fieldnames (inPar.Required)) > numel (args) ) + error("%sNot enough arguments", inPar.FunctionName); + endif + + ## we take names out of 'copy' and values out of 'args', evaluate them and + ## store them into 'Results' + for i = 1 : numel (fieldnames (inPar.Required)) + [name, inPar.copy] = shift (inPar.copy); + [value, args] = shift (args); + if ( !feval (inPar.Required.(name).validator, value) ) + error_invalid (inPar.FunctionName, name, inPar.Required.(name).validator); + endif + inPar.Results.(name) = value; + endfor + + ## loop a maximum #times of the number of Optional, similarly to the required + ## loop. Once ran out of 'args', move their name into usingDefaults, place + ## their default values into 'Results', and break + + ## because if an argument is string and does not validate, should be considered + ## a ParamValue key + found_possible_key = false; + + for i = 1 : numel (fieldnames (inPar.Optional)) + if ( !numel (args) || found_possible_key) + ## loops the number of Optional options minus the number of them already processed + for n = 1 : (numel (fieldnames (inPar.Optional)) - i + 1 ) + [name, inPar.copy] = shift (inPar.copy); + inPar.UsingDefaults = push (inPar.UsingDefaults, name); + inPar.Results.(name) = inPar.Optional.(name).default; + endfor + break + endif + [name, inPar.copy] = shift (inPar.copy); + [value, args] = shift (args); + if ( !feval (inPar.Optional.(name).validator, value) ) + if (ischar (value) ) + ## maybe the other optional are not defined, this can be Paramvalue + ## place this one on defaults and go back to the top with note to clean loop + inPar.UsingDefaults = push (inPar.UsingDefaults, name); + inPar.Results.(name) = inPar.Optional.(name).default; + found_possible_key = true; + args = unshift (args, value); + continue + else + error_invalid (inPar.FunctionName, name, inPar.Optional.(name).validator); + endif + else + inPar.Results.(name) = value; + endif + endfor + + ## loop a maximum #times of the number of ParamValue, taking pairs of keys and + ## values out 'args'. We no longer expect an order so we need the index in + ## 'copy' to remove it from there. Once ran out of 'args', move their name + ## into usingDefaults, place their default values into 'Results', and break + for i = 1 : (numel (fieldnames (inPar.ParamValue)) + numel (fieldnames (inPar.Switch))) + if ( !numel (args) ) + ## loops the number of times left in 'copy' since these are the last type + for n = 1 : numel (inPar.copy) + [name, inPar.copy] = shift (inPar.copy); + inPar.UsingDefaults = push (inPar.UsingDefaults, name); + if (isfield (inPar.ParamValue, name)) + inPar.Results.(name) = inPar.ParamValue.(name).default; + else + inPar.Results.(name) = inPar.Switch.(name).default; + endif + endfor + break + endif + [key, args] = shift (args); + if ( !ischar (key) ) + error("%sParameter/Switch names must be strings", inPar.FunctionName); + endif + if (inPar.CaseSensitive) + index = find( strcmp(inPar.copy, key)); + else + index = find( strcmpi(inPar.copy, key)); + endif + ## we can't use isfield here to support case insensitive + if (any (strcmpi (fieldnames (inPar.Switch), key))) + value = true; + method = "Switch"; + else + ## then it must be a ParamValue (even if unmatched), shift its value + if (numel (args) < 1) + error ("%sparameter '%s' does not have a value", inPar.FunctionName, key); + endif + [value, args] = shift (args); + method = "ParamValue"; + endif + + ## empty index means no match so either return error or move them into 'Unmatched' + if (!isempty (index)) + [name, inPar.copy] = shift (inPar.copy, index); + if ( !feval (inPar.(method).(name).validator, value)) + error_invalid (inPar.FunctionName, key, inPar.(method).(name).validator); + endif + ## we use the name shifted from 'copy' instead of the key from 'args' in case + ## the key is in the wrong case + inPar.Results.(name) = value; + elseif (isempty (index) && inPar.KeepUnmatched ) + inPar.Unmatched.(key) = value; + i = i - 1; # this time didn't count, go back one + else + error ("%sargument '%s' did not match any valid parameter of the parser", inPar.FunctionName, key); + endif + endfor + + ## if there's leftovers they must be unmatched. Note that some unmatched can + ## have already been processed in the ParamValue loop + if ( numel (args) && inPar.KeepUnmatched ) + for i = 1 : ( numel(args) / 2 ) + [key, args] = shift (args); + [value, args] = shift (args); + inPar.Unmatched.(key) = value; + endfor + elseif ( numel (args) ) + error("%sfound unmatched parameters at end of arguments list", inPar.FunctionName); + endif + + ## remove copied field, keep it clean + inPar = rmfield (inPar, 'copy'); + +endfunction + + +function inPar = check_methods (inPar, idx) + + ## this makes it easier to read but is more memory intensive? + method = idx(1).subs; + args = idx(2).subs; + func = sprintf ("@inputParser/%s", method); + + if ( idx(2).type != '()' ) + print_usage (func); + endif + def_val = @() true; + [name, args] = shift (args); + ## a validator is optional but that complicates handling all the parsing with + ## few functions and conditions. If not specified @() true will always return + ## true. Simply using true is not enough because if the argument is zero it + ## return false and if it's too large, takes up memory + switch method + case {'addOptional', 'addParamValue'} + if ( numel (args) == 1 ) + args{2} = def_val; + elseif ( numel (args) == 2 ) + args{2} = validate_validator (args{2}); + else + print_usage(func); + endif + [def, val] = args{:}; + case {'addRequired'} + if ( numel (args) == 0 ) + val = def_val; + elseif ( numel (args) == 1 ) + val = validate_validator (args{1}); + else + print_usage(func); + endif + def = false; + case {'addSwitch'} + if ( numel (args) == 0 ) + val = def_val; + def = false; + else + print_usage(func); + endif + otherwise + error ("invalid index for reference of class %s", class (inPar) ); + endswitch + + inPar = validate_args (method(4:end), inPar, name, val, def); + +endfunction + +## because we are nice we also support using the name of a function and not only +## a function handle +function val = validate_validator (val) + if ( ischar (val) ) + val = str2func (val); + elseif ( !isa (val, 'function_handle') ) + error ("validator must be a function handle or the name of a valid function"); + end +endfunction + +## to have a single function that handles them all, something must be done with +## def value, because addRequire does not have those. That's why the order of +## the last two args is different from the rest and why 'def' has a default value +function inPar = validate_args (method, inPar, name, val, def = false) + + if ( !strcmp (class (inPar), 'inputParser') ) + error ("object must be of the inputParser class but '%s' was used", class (inPar) ); + elseif ( !isvarname (name) ) + error ("invalid variable name in argname"); + endif + + ## because the order arguments are specified are the order they are expected, + ## can't have ParamValue/Switch before Optional, and Optional before Required + n_optional = numel (fieldnames (inPar.Optional)); + n_params = numel (fieldnames (inPar.ParamValue)); + n_switch = numel (fieldnames (inPar.Switch)); + if ( strcmp (method, 'Required') && ( n_optional || n_params || n_switch) ) + error ("Can't specify 'Required' arguments after Optional, ParamValue or Switch"); + elseif ( strcmp (method, 'Optional') && ( n_params || n_switch) ) + error ("Can't specify 'Optional' arguments after ParamValue or Switch"); + endif + + ## even if CaseSensitive is turned on, we still shouldn't have two args with + ## the same. What if they decide to change in the middle of specifying them? + if ( any (strcmpi (inPar.Parameters, name)) ) + error ("argname '%s' has already been specified", name); + else + inPar.Parameters = push (inPar.Parameters, name); + inPar.(method).(name).default = def; + inPar.(method).(name).validator = val; + endif + + ## make sure that the given default value is actually valid + ## TODO make sure that when using the default, it's only validated once + if ( isa (val, 'function_handle') && !strcmpi (method, 'Required') && !feval (val, def) ) + error ("default value for '%s' failed validation with '%s'", name, func2str (val) ); + endif + +endfunction + +## this is just for consistency of error message +function error_invalid (prefix, name, val) + error("%sargument '%s' failed validation %s", prefix, name, func2str (val)); +endfunction + +################################################################################ +## very auxiliary functions +################################################################################ + +function [out, in] = shift (in, idx = 1) + out = in{idx}; + in(idx) = []; +endfunction + +function [in] = unshift (in, add) + if ( !iscell (add) ) + add = {add}; + endif + in (numel(add) + 1 : end + numel(add)) = in; + in (1:numel(add)) = add; +endfunction + +function [in] = push (in, add) + if ( !iscell (add) ) + add = {add}; + endif + in( end+1 : end+numel(add) ) = add; +endfunction diff --git a/inputparser/iparser.m b/inputparser/iparser.m new file mode 100644 index 00000000..baa48e57 --- /dev/null +++ b/inputparser/iparser.m @@ -0,0 +1,10 @@ +function ip = iparser(ip, action, varargin) + +if ~exist('OCTAVE_VERSION', 'builtin') + ip.(sprintf('%s', action))(varargin{:}) +else + ip=ip.(sprintf('%s', action))(varargin{:}); +end + +end + diff --git a/mc/hmc2.m b/mc/hmc2.m index b6f44f31..d8c34c0a 100755 --- a/mc/hmc2.m +++ b/mc/hmc2.m @@ -329,7 +329,9 @@ global HMC_MOM state.stream=setrandstream(); -state.streamstate = state.stream.State; +if ~exist('OCTAVE_VERSION','builtin') + state.streamstate = state.stream.State; +end state.mom = HMC_MOM; return @@ -347,12 +349,14 @@ function set_state(f, x) if ~isstruct(x) error('Second argument to hmc must be number or state structure'); end - if (~isfield(x, 'stream') | ~isfield(x, 'streamstate') ... + if (~isfield(x, 'stream') | (~exist('OCTAVE_VERSION','builtin') && ~isfield(x, 'streamstate')) ... | ~isfield(x, 'mom')) error('Second argument to hmc must contain correct fields') end setrandstream(x.stream); - x.State=x.streamstate; + if ~exist('OCTAVE_VERSION','builtin') + x.State=x.streamstate; + end HMC_MOM = x.mom; end return diff --git a/mc/hmc2_opt.m b/mc/hmc2_opt.m index 49115420..5274848d 100755 --- a/mc/hmc2_opt.m +++ b/mc/hmc2_opt.m @@ -54,19 +54,19 @@ if ~isfield(opt,'checkgrad') opt.checkgrad=0; end -if ~isfield(opt,'steps') | opt.steps < 1 +if ~isfield(opt,'steps') || opt.steps < 1 opt.steps=10; end -if ~isfield(opt,'nsamples') | opt.nsamples < 1 +if ~isfield(opt,'nsamples') || opt.nsamples < 1 opt.nsamples=1; end -if ~isfield(opt,'nomit') | opt.nomit < 0 +if ~isfield(opt,'nomit') || opt.nomit < 0 opt.nomit=0; end if ~isfield(opt,'persistence') opt.persistence=0; end -if ~isfield(opt,'decay') | opt.decay < 0 | opt.decay > 1 +if ~isfield(opt,'decay') || opt.decay < 0 || opt.decay > 1 opt.decay=0.9; end if ~isfield(opt,'stepadj') @@ -75,7 +75,7 @@ if ~isfield(opt,'stepsf') opt.stepsf=[]; end -if ~isfield(opt,'window') | opt.window < 0 +if ~isfield(opt,'window') || opt.window < 0 opt.window=1; end if opt.window > opt.steps diff --git a/mc/mc_install.m b/mc/mc_install.m index 64193724..ef0ffd4f 100644 --- a/mc/mc_install.m +++ b/mc/mc_install.m @@ -2,15 +2,31 @@ if ispc % A windows version of Matlab + if ~exist('OCTAVE_VERSION','builtin') mex -O -output bbmean winCSource\bbmean.c mex -O -output resampres winCsource\resampres.c winCsource\binsgeq.c mex -O -output resampsim winCsource\resampsim.c winCsource\binsgeq.c mex -O -output resampstr winCsource\resampstr.c winCsource\binsgeq.c mex -O -output resampdet winCsource\resampdet.c winCsource\binsgeq.c + else + mex --output bbmean.mex winCSource\bbmean.c + mex --output resampres.mex winCsource\resampres.c winCsource\binsgeq.c + mex --output resampsim.mex winCsource\resampsim.c winCsource\binsgeq.c + mex --output resampstr.mex winCsource\resampstr.c winCsource\binsgeq.c + mex --output resampdet.mex winCsource\resampdet.c winCsource\binsgeq.c + end else + if ~exist('OCTAVE_VERSION','builtin') mex -O -output bbmean linuxCsource/bbmean.c mex -O -output resampres linuxCsource/resampres.c linuxCsource/binsgeq.c mex -O -output resampsim linuxCsource/resampsim.c linuxCsource/binsgeq.c mex -O -output resampstr linuxCsource/resampstr.c linuxCsource/binsgeq.c mex -O -output resampdet linuxCsource/resampdet.c linuxCsource/binsgeq.c + else + mex --output bbmean.mex linuxCsource/bbmean.c + mex --output resampres.mex linuxCsource/resampres.c linuxCsource/binsgeq.c + mex --output resampsim.mex linuxCsource/resampsim.c linuxCsource/binsgeq.c + mex --output resampstr.mex linuxCsource/resampstr.c linuxCsource/binsgeq.c + mex --output resampdet.mex linuxCsource/resampdet.c linuxCsource/binsgeq.c + end end diff --git a/misc/fixFunctionHandles.m b/misc/fixFunctionHandles.m new file mode 100644 index 00000000..942ea692 --- /dev/null +++ b/misc/fixFunctionHandles.m @@ -0,0 +1,73 @@ +function gpo = fixFunctionHandles(gpo) +%FIXFUNCTIONHANDLES +% +% Syntax: +% gpo = fixFunctionHandles(gpo); +% +% Description: +% Fix the function handles that are broken when +% when octatve saves and loads gp structures +% +% Copyright (c) 2016 Markus Paasiniemi +% +% This software is distributed under the GNU General Public +% License (version 3 or later); please refer to the file +% License.txt, included with the software, for details. + +% list all subfields of the struct gpo +gpFields = fieldnamesRec(gpo); +gpFields = cellstr(horzcat(repmat(['gpo.'],length(gpFields),1),char(gpFields))); + +%Fix all function handles for all execpt *_rec +for k = 1:length(gpFields) + + %check if gpFields{k} is a function/subfunction handle + if strcmp(typeinfo(eval(gpFields{k})),'function handle') + + spl2 = strsplit(functions(eval(gpFields{k})).file,{'\' '/','.'}); + fn = func2str(eval(gpFields{k})); + sfn = strsplit(gpFields{k},'.'){end}; + + %check if gpFields{k} is a function handle + if strcmp(spl2{end-1},fn) + eval(strcat(gpFields{k},'=@',fn,';')); + + elseif strcmp(strsplit(gpFields{k},'.'){end},'ne') + eval(strcat(gpFields{k},'=',spl2{end-1},'("init",gpo).fh.ne;')); + + %gpFields{k} is a subfunction handle + elseif isfield(eval(spl2{end-1}).fh,sfn) + eval(strcat(gpFields{k},'=',spl2{end-1},'.fh.',sfn,';')); + + %gpFields{k} is a subfunction handle of type *_rec + else + eval(strcat(gpFields{k},'=',spl2{end-1},'.fh.recappend(',spl2{end-1},',',spl2{end-1},').fh.',sfn,';')); + end + end +end + + +% Helper function to recurse through +% a struct and find all subfields + function fNames = fieldnamesRec(s) + + fNames = fieldnames(s); + for i = 1:length(fNames) + + if isstruct(s.(fNames{i})) + newFields = fieldnamesRec(s.(fNames{i})); + fNames(end+1:end+length(newFields)) = cellstr(horzcat(repmat([fNames{i} '.'], length(newFields), 1),char(newFields))); + + elseif iscell(s.(fNames{i})) + for j = 1:length(s.(fNames{i})) + + if isstruct(s.(fNames{i}){j}) + newFields = fieldnamesRec(s.(fNames{i}){j}); + fNames(end+1:end+length(newFields)) = cellstr(horzcat(repmat([fNames{i} '{' num2str(j) '}.'],length(newFields), 1),char(newFields))); + end + end + end + end + end + +end \ No newline at end of file diff --git a/misc/psislw.m b/misc/psislw.m index 982f9858..24b47317 100644 --- a/misc/psislw.m +++ b/misc/psislw.m @@ -80,3 +80,24 @@ % warning('Following indeces have estimated tail index k>1'); % disp(ksi) % end + +end + +function x = gpinv(p,k,sigma) +x = NaN(size(p)); +if sigma <= 0 + return +end +ok = (p>0) & (p<1); +if abs(k) < eps + x(ok) = -log1p(-p(ok)); +else + x(ok) = expm1(-k * log1p(-p(ok))) ./ k; +end +x = sigma*x; +if ~all(ok) + x(p==0) = 0; + x(p==1 & k>=0) = Inf; + x(p==1 & k<0) = -sigma/k; +end +end diff --git a/misc/setrandstream.m b/misc/setrandstream.m index 859ffb9a..05d9fe04 100644 --- a/misc/setrandstream.m +++ b/misc/setrandstream.m @@ -35,45 +35,64 @@ % License (version 3 or later); please refer to the file % License.txt, included with the software, for details. -if nargin>=1 && ~isnumeric(seed) - % First argument is random stream object - stream=seed; - if str2double(regexprep(version('-release'), '[a-c]', '')) < 2012 - prevstream = RandStream.setDefaultStream(stream); +p=which('randn'); +p=strfind(p, 'RcppOctave'); +% Check if RcppOctave is active as the seed initialization does not work +% in RcppOctave +if isempty(p) + if nargin>=1 && ~isnumeric(seed) + % First argument is random stream object + stream=seed; + if str2double(regexprep(version('-release'), '[a-c]', '')) < 2012 + prevstream = RandStream.setDefaultStream(stream); + else + prevstream=rng(stream); + end else - prevstream=rng(stream); - end -else - if nargin<2 - if nargin<1 - % Get current random stream - if str2double(regexprep(version('-release'), '[a-c]', '')) < 2012 - prevstream = RandStream.getDefaultStream(); + if nargin<2 + if nargin<1 + % Get current random stream + if exist('OCTAVE_VERSION', 'builtin') + prevstream(1) = randn('seed'); + prevstream(2) = rand('seed'); + elseif str2double(regexprep(version('-release'), '[a-c]', '')) < 2012 + prevstream = RandStream.getDefaultStream(); + else + prevstream = rng; + end + return else - prevstream = rng; + % If stream is not provided, use Mersenne Twister + stream='mt19937ar'; end - return - else - % If stream is not provided, use Mersenne Twister - stream='mt19937ar'; end - end - if isempty(seed) - % Default seed - seed=0; - end - if str2double(regexprep(version('-release'), '[a-c]', '')) < 2012 - if ischar(stream) - stream = RandStream(stream,'Seed',seed); + if isempty(seed) + % Default seed + seed=0; end - prevstream = RandStream.setDefaultStream(stream); - else - if ischar(stream) - prevstream = rng(seed,stream); + if exist('OCTAVE_VERSION', 'builtin') + prevstream(1) = randn('seed'); + prevstream(2) = rand('seed'); + if length(seed)==1 + seed(2)=seed(1); + end + randn('seed', seed(1)); + rand('seed', seed(2)); + elseif str2double(regexprep(version('-release'), '[a-c]', '')) < 2012 + if ischar(stream) + stream = RandStream(stream,'Seed',seed); + end + prevstream = RandStream.setDefaultStream(stream); else - prevstream=rng(stream); + if ischar(stream) + prevstream = rng(seed,stream); + else + prevstream=rng(stream); + end end end +else + prevstream=[]; end end diff --git a/octave_compat/crosstab.m b/octave_compat/crosstab.m new file mode 100644 index 00000000..085a4ed3 --- /dev/null +++ b/octave_compat/crosstab.m @@ -0,0 +1,14 @@ +function y = crosstab(x) +% Count numer of occurences of elements of x in x + +ux=unique(x); +y=zeros(size(ux)); +for i=1:length(ux) + y(i) = sum(x==ux(i)); +end +if size(y,1)==1 + y=y'; +end + +end + diff --git a/octave_compat/fcnchk.m b/octave_compat/fcnchk.m new file mode 100644 index 00000000..ffcb2a08 --- /dev/null +++ b/octave_compat/fcnchk.m @@ -0,0 +1,5 @@ +function [f,m] = fcnchk(x,n) +f=x; +m=''; +end + diff --git a/octave_compat/mnpdf.m b/octave_compat/mnpdf.m new file mode 100644 index 00000000..fb1920e4 --- /dev/null +++ b/octave_compat/mnpdf.m @@ -0,0 +1,134 @@ +## Copyright (C) 2012 Arno Onken +## +## This program is free software: you can redistribute it and/or modify +## it under the terms of the GNU General Public License as published by +## the Free Software Foundation, either version 3 of the License, or +## (at your option) any later version. +## +## This program is distributed in the hope that it will be useful, +## but WITHOUT ANY WARRANTY; without even the implied warranty of +## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +## GNU General Public License for more details. +## +## You should have received a copy of the GNU General Public License +## along with this program. If not, see . + +## -*- texinfo -*- +## @deftypefn {Function File} {@var{y} =} mnpdf (@var{x}, @var{p}) +## Compute the probability density function of the multinomial distribution. +## +## @subheading Arguments +## +## @itemize @bullet +## @item +## @var{x} is vector with a single sample of a multinomial distribution with +## parameter @var{p} or a matrix of random samples from multinomial +## distributions. In the latter case, each row of @var{x} is a sample from a +## multinomial distribution with the corresponding row of @var{p} being its +## parameter. +## +## @item +## @var{p} is a vector with the probabilities of the categories or a matrix +## with each row containing the probabilities of a multinomial sample. +## @end itemize +## +## @subheading Return values +## +## @itemize @bullet +## @item +## @var{y} is a vector of probabilites of the random samples @var{x} from the +## multinomial distribution with corresponding parameter @var{p}. The parameter +## @var{n} of the multinomial distribution is the sum of the elements of each +## row of @var{x}. The length of @var{y} is the number of columns of @var{x}. +## If a row of @var{p} does not sum to @code{1}, then the corresponding element +## of @var{y} will be @code{NaN}. +## @end itemize +## +## @subheading Examples +## +## @example +## @group +## x = [1, 4, 2]; +## p = [0.2, 0.5, 0.3]; +## y = mnpdf (x, p); +## @end group +## +## @group +## x = [1, 4, 2; 1, 0, 9]; +## p = [0.2, 0.5, 0.3; 0.1, 0.1, 0.8]; +## y = mnpdf (x, p); +## @end group +## @end example +## +## @subheading References +## +## @enumerate +## @item +## Wendy L. Martinez and Angel R. Martinez. @cite{Computational Statistics +## Handbook with MATLAB}. Appendix E, pages 547-557, Chapman & Hall/CRC, 2001. +## +## @item +## Merran Evans, Nicholas Hastings and Brian Peacock. @cite{Statistical +## Distributions}. pages 134-136, Wiley, New York, third edition, 2000. +## @end enumerate +## @end deftypefn + +## Author: Arno Onken +## Description: PDF of the multinomial distribution + +function y = mnpdf (x, p) + + # Check arguments + if (nargin != 2) + print_usage (); + endif + + if (! ismatrix (x) || any (x(:) < 0 | round (x(:) != x(:)))) + error ("mnpdf: x must be a matrix of non-negative integer values"); + endif + if (! ismatrix (p) || any (p(:) < 0)) + error ("mnpdf: p must be a non-empty matrix with rows of probabilities"); + endif + + # Adjust input sizes + if (! isvector (x) || ! isvector (p)) + if (isvector (x)) + x = x(:)'; + endif + if (isvector (p)) + p = p(:)'; + endif + if (size (x, 1) == 1 && size (p, 1) > 1) + x = repmat (x, size (p, 1), 1); + elseif (size (x, 1) > 1 && size (p, 1) == 1) + p = repmat (p, size (x, 1), 1); + endif + endif + # Continue argument check + if (any (size (x) != size (p))) + error ("mnpdf: x and p must have compatible sizes"); + endif + + # Count total number of elements of each multinomial sample + n = sum (x, 2); + # Compute probability density function of the multinomial distribution + t = x .* log (p); + t(x == 0) = 0; + y = exp (gammaln (n+1) - sum (gammaln (x+1), 2) + sum (t, 2)); + # Set invalid rows to NaN + k = (abs (sum (p, 2) - 1) > 1e-6); + y(k) = NaN; + +endfunction + +%!test +%! x = [1, 4, 2]; +%! p = [0.2, 0.5, 0.3]; +%! y = mnpdf (x, p); +%! assert (y, 0.11812, 0.001); + +%!test +%! x = [1, 4, 2; 1, 0, 9]; +%! p = [0.2, 0.5, 0.3; 0.1, 0.1, 0.8]; +%! y = mnpdf (x, p); +%! assert (y, [0.11812; 0.13422], 0.001); diff --git a/octave_compat/mnrnd.m b/octave_compat/mnrnd.m new file mode 100644 index 00000000..1332faff --- /dev/null +++ b/octave_compat/mnrnd.m @@ -0,0 +1,184 @@ +## Copyright (C) 2012 Arno Onken +## +## This program is free software: you can redistribute it and/or modify +## it under the terms of the GNU General Public License as published by +## the Free Software Foundation, either version 3 of the License, or +## (at your option) any later version. +## +## This program is distributed in the hope that it will be useful, +## but WITHOUT ANY WARRANTY; without even the implied warranty of +## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +## GNU General Public License for more details. +## +## You should have received a copy of the GNU General Public License +## along with this program. If not, see . + +## -*- texinfo -*- +## @deftypefn {Function File} {@var{x} =} mnrnd (@var{n}, @var{p}) +## @deftypefnx {Function File} {@var{x} =} mnrnd (@var{n}, @var{p}, @var{s}) +## Generate random samples from the multinomial distribution. +## +## @subheading Arguments +## +## @itemize @bullet +## @item +## @var{n} is the first parameter of the multinomial distribution. @var{n} can +## be scalar or a vector containing the number of trials of each multinomial +## sample. The elements of @var{n} must be non-negative integers. +## +## @item +## @var{p} is the second parameter of the multinomial distribution. @var{p} can +## be a vector with the probabilities of the categories or a matrix with each +## row containing the probabilities of a multinomial sample. If @var{p} has +## more than one row and @var{n} is non-scalar, then the number of rows of +## @var{p} must match the number of elements of @var{n}. +## +## @item +## @var{s} is the number of multinomial samples to be generated. @var{s} must +## be a non-negative integer. If @var{s} is specified, then @var{n} must be +## scalar and @var{p} must be a vector. +## @end itemize +## +## @subheading Return values +## +## @itemize @bullet +## @item +## @var{x} is a matrix of random samples from the multinomial distribution with +## corresponding parameters @var{n} and @var{p}. Each row corresponds to one +## multinomial sample. The number of columns, therefore, corresponds to the +## number of columns of @var{p}. If @var{s} is not specified, then the number +## of rows of @var{x} is the maximum of the number of elements of @var{n} and +## the number of rows of @var{p}. If a row of @var{p} does not sum to @code{1}, +## then the corresponding row of @var{x} will contain only @code{NaN} values. +## @end itemize +## +## @subheading Examples +## +## @example +## @group +## n = 10; +## p = [0.2, 0.5, 0.3]; +## x = mnrnd (n, p); +## @end group +## +## @group +## n = 10 * ones (3, 1); +## p = [0.2, 0.5, 0.3]; +## x = mnrnd (n, p); +## @end group +## +## @group +## n = (1:2)'; +## p = [0.2, 0.5, 0.3; 0.1, 0.1, 0.8]; +## x = mnrnd (n, p); +## @end group +## @end example +## +## @subheading References +## +## @enumerate +## @item +## Wendy L. Martinez and Angel R. Martinez. @cite{Computational Statistics +## Handbook with MATLAB}. Appendix E, pages 547-557, Chapman & Hall/CRC, 2001. +## +## @item +## Merran Evans, Nicholas Hastings and Brian Peacock. @cite{Statistical +## Distributions}. pages 134-136, Wiley, New York, third edition, 2000. +## @end enumerate +## @end deftypefn + +## Author: Arno Onken +## Description: Random samples from the multinomial distribution + +function x = mnrnd (n, p, s) + + # Check arguments + if (nargin == 3) + if (! isscalar (n) || n < 0 || round (n) != n) + error ("mnrnd: n must be a non-negative integer"); + endif + if (! isvector (p) || any (p < 0 | p > 1)) + error ("mnrnd: p must be a vector of probabilities"); + endif + if (! isscalar (s) || s < 0 || round (s) != s) + error ("mnrnd: s must be a non-negative integer"); + endif + elseif (nargin == 2) + if (isvector (p) && size (p, 1) > 1) + p = p'; + endif + if (! isvector (n) || any (n < 0 | round (n) != n) || size (n, 2) > 1) + error ("mnrnd: n must be a non-negative integer column vector"); + endif + if (! ismatrix (p) || isempty (p) || any (p < 0 | p > 1)) + error ("mnrnd: p must be a non-empty matrix with rows of probabilities"); + endif + if (! isscalar (n) && size (p, 1) > 1 && length (n) != size (p, 1)) + error ("mnrnd: the length of n must match the number of rows of p"); + endif + else + print_usage (); + endif + + # Adjust input sizes + if (nargin == 3) + n = n * ones (s, 1); + p = repmat (p(:)', s, 1); + elseif (nargin == 2) + if (isscalar (n) && size (p, 1) > 1) + n = n * ones (size (p, 1), 1); + elseif (size (p, 1) == 1) + p = repmat (p, length (n), 1); + endif + endif + sz = size (p); + + # Upper bounds of categories + ub = cumsum (p, 2); + # Make sure that the greatest upper bound is 1 + gub = ub(:, end); + ub(:, end) = 1; + # Lower bounds of categories + lb = [zeros(sz(1), 1) ub(:, 1:(end-1))]; + + # Draw multinomial samples + x = zeros (sz); + for i = 1:sz(1) + # Draw uniform random numbers + r = repmat (rand (n(i), 1), 1, sz(2)); + # Compare the random numbers of r to the cumulated probabilities of p and + # count the number of samples for each category + x(i, :) = sum (r <= repmat (ub(i, :), n(i), 1) & r > repmat (lb(i, :), n(i), 1), 1); + endfor + # Set invalid rows to NaN + k = (abs (gub - 1) > 1e-6); + x(k, :) = NaN; + +endfunction + +%!test +%! n = 10; +%! p = [0.2, 0.5, 0.3]; +%! x = mnrnd (n, p); +%! assert (size (x), size (p)); +%! assert (all (x >= 0)); +%! assert (all (round (x) == x)); +%! assert (sum (x) == n); + +%!test +%! n = 10 * ones (3, 1); +%! p = [0.2, 0.5, 0.3]; +%! x = mnrnd (n, p); +%! assert (size (x), [length(n), length(p)]); +%! assert (all (x >= 0)); +%! assert (all (round (x) == x)); +%! assert (all (sum (x, 2) == n)); + +%!test +%! n = (1:2)'; +%! p = [0.2, 0.5, 0.3; 0.1, 0.1, 0.8]; +%! x = mnrnd (n, p); +%! assert (size (x), size (p)); +%! assert (all (x >= 0)); +%! assert (all (round (x) == x)); +%! assert (all (sum (x, 2) == n)); diff --git a/octave_compat/nanmean.m b/octave_compat/nanmean.m new file mode 100644 index 00000000..ed679507 --- /dev/null +++ b/octave_compat/nanmean.m @@ -0,0 +1,8 @@ +function m = nanmean(x) + +nnanx=~isnan(x); +x(~nnanx)=0; +m=sum(x)./sum(nnanx); +m(isinf(m))=NaN; +end + diff --git a/octave_compat/nanstd.m b/octave_compat/nanstd.m new file mode 100644 index 00000000..735caedf --- /dev/null +++ b/octave_compat/nanstd.m @@ -0,0 +1,10 @@ +function sd = nanstd(x) + +nanm=nanmean(x); +nnanx=~isnan(x); +x=bsxfun(@minus, x, nanm).^2; +x(~nnanx)=0; +sd=sqrt(sum(x)./(sum(nnanx)-1)); +sd(isinf(sd))=NaN; +end + diff --git a/optim/fminscg.m b/optim/fminscg.m index 19db555c..afd8917d 100644 --- a/optim/fminscg.m +++ b/optim/fminscg.m @@ -103,11 +103,16 @@ otherwise display=2; end -maxiter = optimget(opt,'MaxIter',defaultopt,'fast'); -tolfun = optimget(opt,'TolFun',defaultopt,'fast'); -tolx = optimget(opt,'TolX',defaultopt,'fast'); -lambda = optimget(opt,'lambda', defaultopt, 'fast'); -lambdalim = optimget(opt, 'lambdalim', defaultopt, 'fast'); +maxiter = optimget(opt,'MaxIter',400); +tolfun = optimget(opt,'TolFun',1e-6); +tolx = optimget(opt,'TolX',1e-6); +if ~exist('OCTAVE_VERSION', 'builtin') + lambda = optimget(opt,'lambda', defaultopt, 'fast'); + lambdalim = optimget(opt, 'lambdalim', defaultopt, 'fast'); +else + lambda = optimget(opt,'lambda', 10); + lambdalim = optimget(opt, 'lambdalim', 1e20); +end GradConstr = optimget(opt, 'GradConstr', defaultopt, 'fast'); nparams = length(x); diff --git a/startup.m b/startup.m index 4f45d547..e14b9753 100644 --- a/startup.m +++ b/startup.m @@ -3,9 +3,9 @@ F = mfilename; S = which(F); if exist('OCTAVE_VERSION', 'builtin') - subfolders={'diag' 'dist' 'gp' 'mc' 'misc' 'optim' 'tests', 'octave_compat', 'inputparser'}; + subfolders={'diag' 'dist' 'gp' 'mc' 'misc' 'optim' 'test_gpstuff' 'octave_compat', 'inputparser'}; else - subfolders={'diag' 'dist' 'gp' 'mc' 'misc' 'optim' 'tests'}; + subfolders={'diag' 'dist' 'gp' 'mc' 'misc' 'optim' 'test_gpstuff' 'inputparser'}; end for sf=subfolders addpath(strrep(S,[F '.m'],sf{:})) @@ -25,4 +25,4 @@ % If using Octave version of GPstuff, also add the following %addpath([gpstuffroot 'inputparser']) -%addpath([gpstuffroot 'octave_compat']) \ No newline at end of file +%addpath([gpstuffroot 'octave_compat']) diff --git a/test_gpstuff/README.txt b/test_gpstuff/README.txt new file mode 100644 index 00000000..c9963ad8 --- /dev/null +++ b/test_gpstuff/README.txt @@ -0,0 +1,4 @@ +This folder has tests for testing the GPstuff package with both octave and +matlab. The tests can be run by running the script run_tests. The script runs +specific demos to see that they run properly. Furthermore, the results from the +demos are compared to old results to check if the values have changed. \ No newline at end of file diff --git a/tests/realValues/binomial1.mat b/test_gpstuff/matlab/realValues_binomial1.mat similarity index 100% rename from tests/realValues/binomial1.mat rename to test_gpstuff/matlab/realValues_binomial1.mat diff --git a/tests/realValues/classific.mat b/test_gpstuff/matlab/realValues_classific.mat similarity index 100% rename from tests/realValues/classific.mat rename to test_gpstuff/matlab/realValues_classific.mat diff --git a/tests/realValues/derivativeobs.mat b/test_gpstuff/matlab/realValues_derivativeobs.mat similarity index 100% rename from tests/realValues/derivativeobs.mat rename to test_gpstuff/matlab/realValues_derivativeobs.mat diff --git a/tests/realValues/multinom.mat b/test_gpstuff/matlab/realValues_multinom.mat similarity index 100% rename from tests/realValues/multinom.mat rename to test_gpstuff/matlab/realValues_multinom.mat diff --git a/tests/realValues/neuralnetcov.mat b/test_gpstuff/matlab/realValues_neuralnetcov.mat similarity index 100% rename from tests/realValues/neuralnetcov.mat rename to test_gpstuff/matlab/realValues_neuralnetcov.mat diff --git a/tests/realValues/periodic.mat b/test_gpstuff/matlab/realValues_periodic.mat similarity index 100% rename from tests/realValues/periodic.mat rename to test_gpstuff/matlab/realValues_periodic.mat diff --git a/tests/realValues/regression1.mat b/test_gpstuff/matlab/realValues_regression1.mat similarity index 100% rename from tests/realValues/regression1.mat rename to test_gpstuff/matlab/realValues_regression1.mat diff --git a/tests/realValues/regression_additive1.mat b/test_gpstuff/matlab/realValues_regression_additive1.mat similarity index 100% rename from tests/realValues/regression_additive1.mat rename to test_gpstuff/matlab/realValues_regression_additive1.mat diff --git a/tests/realValues/regression_hier.mat b/test_gpstuff/matlab/realValues_regression_hier.mat similarity index 100% rename from tests/realValues/regression_hier.mat rename to test_gpstuff/matlab/realValues_regression_hier.mat diff --git a/tests/realValues/regression_sparse1.mat b/test_gpstuff/matlab/realValues_regression_sparse1.mat similarity index 100% rename from tests/realValues/regression_sparse1.mat rename to test_gpstuff/matlab/realValues_regression_sparse1.mat diff --git a/tests/realValues/survival_aft.mat b/test_gpstuff/matlab/realValues_survival_aft.mat similarity index 100% rename from tests/realValues/survival_aft.mat rename to test_gpstuff/matlab/realValues_survival_aft.mat diff --git a/test_gpstuff/octave/realValues_binomial1.mat b/test_gpstuff/octave/realValues_binomial1.mat new file mode 100644 index 00000000..2e04b934 --- /dev/null +++ b/test_gpstuff/octave/realValues_binomial1.mat @@ -0,0 +1,1219 @@ +# Created by Octave 3.8.1, Tue Jun 07 13:29:24 2016 EEST +# name: Eyt_la +# type: matrix +# rows: 400 +# columns: 1 + 44.20206073880297 + 46.4479408626664 + 58.32213514257558 + 44.82633934735057 + 70.72275172672887 + 56.25046780093382 + 58.92446433018452 + 65.31181124569022 + 51.88330812822785 + 55.63402111911024 + 58.59966653784585 + 60.04255569254464 + 51.98706751527258 + 62.08187905408974 + 45.65459239006969 + 47.21500908654119 + 59.74629358185784 + 48.5879999252677 + 64.46386583784995 + 52.60251845164025 + 47.76106441494931 + 51.59011757337827 + 46.766577086098 + 66.61956491684728 + 50.81367355086946 + 64.89225301369726 + 52.13990217463241 + 44.7052118393084 + 57.83451032404962 + 54.35715236172125 + 73.8910455551375 + 50.31877658988821 + 45.93265365670853 + 57.35744360136642 + 73.90690486496101 + 48.43052696326694 + 59.25184803750631 + 44.7435336962052 + 47.7237419565145 + 51.18347606058187 + 56.35482969557906 + 46.44260442357411 + 73.39723940089321 + 45.71436471867482 + 49.41474436913514 + 53.41856511906196 + 45.98082968684531 + 51.75876730664492 + 53.80043902121865 + 58.97817261186211 + 47.02128103025189 + 44.81106227570213 + 46.54893160055148 + 59.06335369059339 + 59.609387402515 + 59.95533696912416 + 48.33405245672163 + 47.18558867216415 + 44.71051809344806 + 44.75105116670849 + 50.26304634689318 + 51.77756748604681 + 54.45895630248703 + 47.93956493225785 + 58.45686056842759 + 71.23547179944708 + 45.60311150863991 + 45.75193146405479 + 59.48528834524495 + 47.01911350388771 + 44.97896041801726 + 45.68646150292046 + 59.96390470632622 + 52.40219933759813 + 56.15747184080219 + 59.52066154394684 + 44.83315107256249 + 48.21416145731373 + 48.57765324606514 + 53.2213445478108 + 59.03386757062005 + 62.51852563269308 + 45.72081202127477 + 47.91632044405814 + 59.936061472776 + 44.89075603603624 + 44.7128848303641 + 67.66011470170004 + 71.58485260023527 + 49.88501870392281 + 54.34830468530654 + 59.42295123191773 + 45.20262500749756 + 57.29821169998318 + 66.6200323667635 + 47.90419531868809 + 47.78746507161763 + 46.50336997133811 + 57.59970005576807 + 50.67883831423246 + 58.39610608656174 + 45.2243832345675 + 44.69951885590461 + 51.32782457310067 + 47.95293083954781 + 44.75711546846657 + 71.95676895957996 + 62.199169842327 + 50.80205849545421 + 72.25175717906842 + 44.68706318972697 + 59.62394744452595 + 59.68994011112557 + 59.92702259547033 + 68.1096155739543 + 59.30932465753193 + 44.98011469699144 + 47.26783935203089 + 59.91931163689112 + 57.47383335029468 + 56.87268216034118 + 59.52702826001358 + 52.71280497610496 + 45.10682694548787 + 44.75991520661378 + 58.29204377028967 + 52.03813850133064 + 45.86929758595904 + 59.92030850036198 + 59.82096947817778 + 57.16937684274421 + 56.53821155833239 + 59.71331330366461 + 70.65552348528028 + 58.24968800394291 + 44.90460010150359 + 58.73226218223112 + 70.41675966434079 + 45.25292148513518 + 47.33639602927263 + 66.25543471551592 + 58.29943534928663 + 72.26552438849897 + 49.92253274410344 + 46.32147111059129 + 57.94355250323784 + 44.73730122934837 + 53.18288104824352 + 56.53390672184648 + 45.32310047151131 + 44.7386094215938 + 57.26450913099126 + 54.01753923938284 + 47.42867424366566 + 72.69713133510244 + 66.91797739556372 + 53.46768728333568 + 48.96662846405233 + 58.72319285780519 + 44.74845413516444 + 53.17046216770023 + 57.03611318815511 + 48.84207612177025 + 58.9914299538758 + 59.96746162708088 + 50.29258407387454 + 45.99333431884183 + 52.79164466248317 + 47.60115104450547 + 68.29981336828762 + 46.41634243169414 + 47.64976464926342 + 50.05781476930264 + 48.00691637598055 + 59.87583074120824 + 44.96720353019226 + 58.12403682258728 + 59.35391961020063 + 64.80196637076547 + 58.80569662012912 + 69.8791376830106 + 59.41213956092626 + 45.40497331768866 + 59.70446343335718 + 57.17919991066801 + 64.20669165601021 + 56.64137293032815 + 47.51443822357121 + 46.74919202047759 + 63.82944218261759 + 59.07225250338602 + 56.48033386527206 + 55.37316553119027 + 44.91210825067928 + 51.75599310172628 + 48.68518847843621 + 47.48206491376516 + 45.24877051523814 + 68.87925397869172 + 58.95630694529248 + 62.29010133136583 + 51.27926753872951 + 58.8027000714088 + 61.17966629548623 + 44.68635059472014 + 49.71368787741008 + 44.94855489831561 + 46.72412735672638 + 59.46670429149967 + 59.96865485357001 + 59.00536069092345 + 55.10830222281373 + 59.93805823970376 + 45.22446381126396 + 59.73861717014217 + 57.44492690809761 + 44.96001413496103 + 56.74641530728765 + 58.48741489248741 + 44.98012428192547 + 55.12315845544677 + 51.82325882551098 + 56.00240570881501 + 47.43944095762937 + 58.69039524946784 + 49.47850664261367 + 58.77986274171334 + 48.98340220443733 + 47.90994757502087 + 52.82465578889448 + 58.64055451460345 + 48.35279302002771 + 59.84210866842403 + 58.76462239395783 + 44.72696999706315 + 59.09297941193643 + 49.2337552872843 + 54.52637302970265 + 50.57463332835983 + 45.13855653764715 + 71.53132003627735 + 53.46137560792845 + 56.78871955989679 + 58.69027915003239 + 53.57003208412839 + 62.53735689402875 + 51.57548838560039 + 67.45747711697068 + 47.85795647813374 + 59.56964398718333 + 52.25946876191268 + 59.73417280492028 + 55.45528674586635 + 46.31507964248201 + 61.09048811918112 + 61.94322462146982 + 45.65987782458625 + 59.78972462767973 + 49.02391591087567 + 46.29946340863062 + 52.20615229432396 + 44.72224609571528 + 45.60631867329303 + 44.68719378961607 + 58.41611764197301 + 46.85603435444457 + 49.44264026405745 + 44.79602653959964 + 44.53306262165685 + 54.50663394517905 + 71.12531565288938 + 50.11651145046775 + 47.26703801624992 + 58.84745833160101 + 50.05259384115429 + 55.23722510934212 + 55.27578900249671 + 49.02537625088608 + 63.86497812560654 + 59.69975362043544 + 54.19903133216776 + 56.04155590129159 + 69.11459654640923 + 55.62371889345827 + 45.34388068620228 + 47.47055196008196 + 72.26469679644369 + 59.52984074461713 + 57.85032864507963 + 59.61846693255615 + 70.88840458856397 + 51.58160499612826 + 55.4634741464012 + 59.03131683555437 + 62.91174684913329 + 49.58797670649695 + 56.94027697332142 + 59.27030582003773 + 58.44998060954039 + 59.96994894151261 + 71.87511622125099 + 68.61799415503015 + 60.3438478955597 + 51.56070765505353 + 56.23607241038879 + 47.50423657522726 + 48.19534216380789 + 46.45539397420172 + 53.70741094992945 + 52.79246081924619 + 52.6754251551907 + 44.81477176999692 + 44.77723943221376 + 51.00550416591826 + 59.1889446074865 + 47.19736966794952 + 51.64077188558754 + 59.88023452649019 + 62.91949809567436 + 51.54288556285033 + 49.77817397925926 + 48.01317451415224 + 52.50733968283323 + 57.59510852320638 + 62.17069920605417 + 59.73651719542806 + 59.47670534532853 + 48.03813011373422 + 59.71902411884838 + 49.79202335310278 + 45.38020962808626 + 66.30909677452027 + 49.86455284648525 + 47.70583775049244 + 56.23358860120593 + 47.35493217118108 + 56.25864156740634 + 47.20696057796933 + 58.96872713492959 + 53.77053539228357 + 59.93183036675553 + 53.51715960883332 + 53.98100288325132 + 55.6548550925257 + 56.08862368928628 + 49.83240112040323 + 58.98002582866955 + 59.37394711540911 + 50.09442807601768 + 50.74501751986912 + 71.69809183749126 + 56.00397779279114 + 58.81561115141297 + 65.71431204092225 + 62.48016085463195 + 46.64987875740644 + 55.39368342222142 + 47.61388431263384 + 53.04631367871934 + 71.56069885342259 + 57.01547235485875 + 55.69073633213443 + 50.60673420197384 + 57.48154263851182 + 54.72639173257403 + 59.88732885166366 + 69.09452370249483 + 49.23107263829448 + 47.18931681168486 + 44.6995850123718 + 47.0240439542629 + 55.67900572916187 + 68.27202455555363 + 58.77239367284164 + 58.38422239595155 + 59.45492696894271 + 45.49986399514015 + 57.22354422415825 + 46.88857122567232 + 45.45186806992277 + 59.91801162748774 + 44.68690775159499 + 61.82934456524428 + 67.27249429841076 + 52.78439170324427 + 54.55921671247044 + 58.24198850554734 + 50.28353704032747 + 45.37847551556352 + 46.80294498865499 + 52.10667655091567 + 44.89949801329042 + 51.13183064238371 + 53.07802313740648 + 53.53573510158584 + 59.60511864346667 + 52.8907984519743 + 45.92866895818143 + 46.88573339568527 + 58.45422799257836 + + +# name: Varyt_la +# type: matrix +# rows: 400 +# columns: 1 + 39.43056578542844 + 35.01405902601448 + 26.08937296175381 + 26.80814860473217 + 23.6309258352408 + 26.54370259880869 + 25.87125528250942 + 24.50155713326298 + 27.07900152098345 + 26.6469395124794 + 25.99087616421091 + 25.76162858240466 + 28.94249103146762 + 25.27440287923675 + 26.90127331963471 + 27.05514723527873 + 25.54293808967137 + 32.02473668216206 + 24.69811070551264 + 28.53992739149165 + 33.06210913336922 + 29.22306476828338 + 27.27301744401465 + 24.2180398928481 + 29.82490362943343 + 24.59783890994667 + 28.83896912375403 + 26.82907092648707 + 26.24431454951107 + 27.57247711888471 + 23.78682705624757 + 27.14524031757957 + 35.8963150656333 + 26.32342013491472 + 23.78973962630241 + 27.12610416512081 + 25.65631367170944 + 26.8038124398093 + 27.39625848820737 + 27.5034168996766 + 26.52544317445485 + 35.02283822995665 + 23.70879981638083 + 27.08721703375833 + 27.14987356650398 + 27.29492158488873 + 26.938415535325 + 27.08690409461555 + 27.23766780721922 + 25.75016364028534 + 27.03966908815017 + 26.80703054336042 + 26.99733834966161 + 25.72085842944666 + 25.60114258549321 + 25.43087589916691 + 27.12214653115849 + 27.33210052348899 + 26.83169463500345 + 26.84828697156932 + 27.52607607224821 + 27.46917536115854 + 27.52315327062894 + 27.41834229976093 + 25.93106551817904 + 23.60835545375096 + 27.0641048153717 + 36.22283858454961 + 25.65229223602833 + 27.30959531989759 + 26.82255189108484 + 36.34340096161283 + 25.42997040985076 + 27.41661269657273 + 26.55978644616987 + 25.56532178299758 + 26.87552311803611 + 32.47691366684082 + 27.47155626334934 + 26.96665920042255 + 25.82985411229002 + 25.16790947644493 + 26.90896674793599 + 27.1016615796529 + 25.43475893202029 + 26.81368211031676 + 26.80441273689792 + 24.01701105280543 + 23.60193245310143 + 27.52466502581109 + 27.14458040065691 + 25.67754150794924 + 26.97393435610537 + 26.34513986259394 + 24.21794404624414 + 27.41486521495177 + 27.40299480350707 + 27.23171056090695 + 26.33038890869475 + 27.52041870596744 + 25.95232315019361 + 26.97916085563974 + 26.82598424563989 + 27.49651113596693 + 27.10367391974519 + 26.80413150122694 + 23.60376352290426 + 25.24581980573333 + 27.13253860409364 + 23.61202357853182 + 26.81596827794867 + 25.59505300427216 + 25.50926147085737 + 25.45984980017351 + 23.93890495757559 + 25.63673245758147 + 26.82267433847155 + 27.34275297477921 + 25.43889699588191 + 26.28094963490401 + 26.43164976528219 + 25.87973535823406 + 27.38416877217365 + 26.95035902206079 + 26.85149546986555 + 25.9888272008174 + 28.90762748168419 + 26.92594611789394 + 25.43863924681499 + 25.5099873791162 + 26.46357682336509 + 26.63132673134375 + 25.83737720164277 + 23.63497375401203 + 26.00372034460412 + 26.81499720861303 + 25.8351716767528 + 23.65127882126699 + 26.98595016920388 + 27.0642723854812 + 24.29401797643984 + 26.09728187820232 + 23.61256305987327 + 27.15036336479504 + 27.20121892321094 + 26.11203079596222 + 26.84308975093117 + 26.97057148906708 + 26.63299300123409 + 27.00234693068234 + 26.80376248404927 + 26.43479644484421 + 26.87698745431339 + 27.36269692318277 + 23.63679960809546 + 24.15779505117382 + 26.94067419462484 + 31.593349046012 + 25.83831787625893 + 26.84732769327694 + 28.19999942929062 + 26.44217881341264 + 27.48834649079608 + 25.74559763380275 + 25.43013071283306 + 30.27230763089154 + 35.78871429505801 + 27.00810941540782 + 27.38278882583318 + 23.90768121373487 + 26.98432983683104 + 27.38821068964832 + 27.14915408251636 + 32.73938032507229 + 25.45096872676846 + 26.91397934627523 + 26.1576520183156 + 25.62157942566897 + 24.61882046581381 + 25.80972556591701 + 23.69839701085399 + 25.90566698885333 + 26.87180873979839 + 25.50453388840424 + 26.46062248652765 + 24.75909521626633 + 26.61646410518322 + 27.37285471735327 + 27.01606497633885 + 24.84941558973448 + 25.81518915894701 + 26.65377743483031 + 26.68815984857968 + 26.89873057164523 + 27.08707505293487 + 31.91151428583156 + 27.07463362616431 + 26.98496717197417 + 23.81993000485258 + 25.75769839272147 + 25.22364583018558 + 27.49893550934178 + 25.91666554149086 + 25.49288751885956 + 26.81420279598581 + 27.5219680810395 + 26.9088871780998 + 27.2665772159799 + 25.65984812433902 + 25.77872462220668 + 25.74080166168314 + 27.22273846133913 + 25.43429973258159 + 26.85040327051552 + 25.49349205656508 + 26.32214440436066 + 26.82056161418151 + 26.55139724875887 + 26.03111824552123 + 26.91747006440435 + 26.99101550607496 + 27.08286745981296 + 26.7859132750621 + 27.36399029938343 + 25.9579430985801 + 27.15037285289203 + 25.81867155802152 + 27.14317638892263 + 27.41543448955917 + 27.37146145691782 + 25.86702168037069 + 27.12293806217036 + 25.50041817510612 + 25.82395209175167 + 26.83895007565967 + 25.8072397058533 + 27.147768582 + 27.11155609535232 + 30.02554871552579 + 26.84037162281727 + 23.60241946620507 + 26.94135989708618 + 26.53530886586287 + 25.84974239004236 + 27.27296399352347 + 25.16331347475066 + 27.09772091012023 + 24.05407105149118 + 32.93342016589299 + 25.54895680381111 + 27.43011774036783 + 25.54818934543114 + 26.91737797151102 + 27.20011803361996 + 25.51428770033818 + 25.3081566935325 + 26.90188981031343 + 25.52391472776918 + 27.49811011379349 + 27.19741972551333 + 27.43493555731148 + 26.83696726000681 + 27.06478170302258 + 26.81618655734566 + 26.05639256802566 + 27.2863133010658 + 27.15010752050904 + 26.80603371516858 + 38.67986773072236 + 27.11528366996004 + 23.61192671228261 + 30.43206328145249 + 27.05911287525073 + 25.90005392307537 + 30.49117570028437 + 26.70903947692627 + 26.95775545917761 + 31.52871520795721 + 24.84086970768849 + 25.56298410053058 + 27.650381979689 + 26.77602298612483 + 23.78771325725599 + 26.87825077334064 + 27.00712481237332 + 27.07383823907695 + 23.61253023381287 + 25.56224814374508 + 26.24926013123772 + 25.59734759406877 + 23.62200323227894 + 27.48216890696571 + 26.91550373417863 + 25.73187111529779 + 25.07196778148819 + 30.93946564057543 + 26.41902670024244 + 25.73831013432169 + 26.04441591850622 + 25.43143698249837 + 23.60256216743614 + 23.85806657272397 + 25.69140699866899 + 27.48345588862426 + 26.72592964871999 + 27.07615397975119 + 27.44183480553828 + 27.22382472482628 + 27.90332758128539 + 28.4230531155742 + 27.38829464025618 + 26.80729305578949 + 26.85752344720423 + 29.66929284610141 + 25.95560424378374 + 27.05378429077014 + 27.09397938938234 + 25.44969139444527 + 25.0700780085255 + 29.257616952337 + 27.15103375021329 + 32.73132791851776 + 27.4060988450544 + 26.33185072850368 + 25.25276007316774 + 25.54717542996323 + 25.58007925605996 + 32.6992964973492 + 25.83607274888801 + 27.15099725441109 + 27.01539723450511 + 24.28266109849141 + 30.66861541182495 + 27.08928682402147 + 26.75070369047272 + 27.35369791606465 + 26.74076925141679 + 33.83703978300315 + 25.85457476560082 + 27.86989639244335 + 25.45735711159201 + 27.28074106939496 + 27.76049485037646 + 26.87088658989227 + 26.80862282260297 + 30.69949095024323 + 25.74952525891438 + 25.91425390214578 + 30.45241839937326 + 27.51882200664908 + 23.6015137653319 + 26.78551736919612 + 25.80629395316546 + 24.41134212241341 + 25.17727264058371 + 27.2551086727753 + 26.93138913086078 + 27.0834515340304 + 28.27190103637461 + 23.60212942700199 + 26.44988924832253 + 26.862349418337 + 27.52194076333984 + 26.36772737386008 + 26.78370701404593 + 25.44765427399089 + 23.79037925308598 + 27.50746532848507 + 27.05315896743207 + 26.82602231307615 + 34.10803581910379 + 26.97659462295475 + 23.91217204981285 + 25.82125919454069 + 26.13033287629768 + 25.58741258972834 + 27.04196206976909 + 26.36520918248022 + 27.29105674106843 + 26.87738072493094 + 25.43923490149304 + 26.81568687476925 + 25.33584367456746 + 24.08883606576251 + 28.42795121657434 + 26.80680895935089 + 26.1602701788537 + 27.52597414077729 + 26.86865806001347 + 27.27846780641813 + 27.06371745713313 + 26.81450845301964 + 27.50566705436988 + 26.98103651648914 + 26.93321536323053 + 25.53716773885126 + 28.36382827467908 + 26.93261641806886 + 27.29064498041357 + 26.04291019599971 + + +# name: lpyt_la +# type: matrix +# rows: 400 +# columns: 1 + -2.773237700606921 + -4.928225194356058 + -2.772292696229674 + -2.758303952561347 + -2.686156841781648 + -2.613697369185075 + -2.566409791405446 + -2.525791757119282 + -2.637474128383259 + -3.089774169078412 + -4.3089865071001 + -2.61155571231748 + -2.622470844471451 + -2.632372407637611 + -3.856024731436778 + -2.596362248165657 + -4.773775319603978 + -2.977579250324629 + -2.946544621589733 + -2.60014349447493 + -2.782896770040498 + -2.706238273019102 + -2.629039420484748 + -2.977818030978525 + -3.005212086992868 + -2.598705203270144 + -2.614971365481998 + -3.843128248676107 + -3.722771822127797 + -2.700909634100729 + -2.569782389354937 + -2.580846455316356 + -3.07449608915415 + -2.796605815218375 + -2.806137942691224 + -2.678265843876117 + -2.965491415119735 + -2.90817958113549 + -3.538134631999488 + -2.579829798133281 + -3.105779441497837 + -3.000342946998196 + -2.515344823981858 + -2.817540294776864 + -2.608662797173954 + -3.328013672535613 + -2.72711347051525 + -2.712234354589375 + -2.635949476066981 + -2.862603106140565 + -2.570533559600261 + -2.897507906078682 + -3.129355258669282 + -3.517843727598605 + -2.807556727733632 + -4.963715674647821 + -2.603557948989811 + -2.576386333109118 + -3.160670371162227 + -2.568739007402188 + -3.078029679148992 + -2.604446159974986 + -2.692619179693407 + -2.730972092735103 + -4.26071566136187 + -2.632433213833985 + -2.61498012126976 + -2.72493765614745 + -4.66208724287609 + -2.646838318263492 + -2.85147176969056 + -2.725466744928382 + -2.539714910114899 + -2.930762238688683 + -4.488066797099366 + -2.951990684948461 + -2.709399224947215 + -3.175117300129196 + -3.110552047713099 + -2.579223381626803 + -3.006730957435167 + -2.543049924599622 + -2.771030894590603 + -3.04690733356056 + -3.028890217056675 + -3.263365202860737 + -3.30439320838818 + -4.061932589084925 + -2.574624827536645 + -2.659919639178669 + -3.374479499452255 + -2.935399090730396 + -3.995971997375531 + -2.770821722666573 + -4.040188207769206 + -3.49067171680402 + -2.578311868133095 + -2.684338321928813 + -2.589522975671076 + -2.914046514327556 + -3.118131317249323 + -2.837293579284823 + -4.528749405196697 + -2.819698681024501 + -3.482812599744997 + -2.619249669300849 + -2.993533378267112 + -2.544505251640607 + -3.272633810077204 + -2.506054971047188 + -2.775444628966228 + -2.642787597027141 + -2.541948775079124 + -4.456002322508407 + -2.973559625001494 + -5.003902033266817 + -3.243168643705026 + -3.284021778911634 + -2.560388351678955 + -2.944138903507733 + -3.215614043081847 + -4.664275430015492 + -2.578100109475283 + -3.016029005560523 + -2.766856035541775 + -2.658390273297148 + -2.66829582850804 + -3.266002079269859 + -2.539793182493332 + -4.413467916921183 + -3.282644347774168 + -2.689243036275184 + -2.548202526198044 + -3.064217848306554 + -3.088106285152206 + -2.590899692211389 + -2.573749358044119 + -2.505166628275742 + -3.182860029624843 + -4.285930620204254 + -4.64170424431754 + -3.098119158446327 + -3.744378566091785 + -3.014241027125995 + -3.083286967608891 + -3.028267619510852 + -2.699188267714792 + -6.143650767125717 + -2.803441681731632 + -2.977754671825931 + -2.665347354925617 + -2.76761714904104 + -2.567562741468688 + -2.622851857016886 + -2.693406336211552 + -2.709888449995907 + -2.793894732176643 + -2.785192944456139 + -2.610928315084399 + -2.665174516051178 + -2.844235856765094 + -3.044808397631469 + -2.638948955569812 + -2.568727370046805 + -2.61171403162262 + -2.74675259394564 + -2.724228437849771 + -2.755031994730228 + -2.696528273708653 + -2.637310537841447 + -2.61784788135767 + -2.611266565522193 + -2.592958258907893 + -2.804927486565485 + -3.519017484341438 + -3.456278828462123 + -2.826802298975373 + -2.584360575939423 + -2.606439405813767 + -2.547235904083329 + -2.504443835244011 + -2.783494486562866 + -3.870977199004659 + -2.634319356623239 + -2.589372457328858 + -4.222159541403492 + -2.817923471282676 + -2.616534224424949 + -3.080303592113931 + -4.84474700236651 + -2.637391428206668 + -3.353110458428043 + -2.673474020219154 + -2.592093180278706 + -2.831397227022362 + -2.661297593763565 + -2.689489707198183 + -2.581460291354614 + -3.019625023995824 + -2.563113591345546 + -2.952180307782312 + -2.609152030167434 + -2.733593139959984 + -3.556198588342335 + -2.91742997890219 + -3.651750817098514 + -4.431651226057042 + -3.085136754294926 + -4.314457086476438 + -3.783085674214054 + -2.866787545783435 + -2.71994793363987 + -2.719096999694358 + -2.836106008847318 + -2.55479278726285 + -2.562282781479155 + -2.722193731568256 + -2.832049456524581 + -2.557878556177962 + -2.852346119968111 + -2.837954836945046 + -2.584349396231503 + -2.56588989526012 + -2.582875609824939 + -2.982487331139273 + -3.606915444611134 + -2.547517285210759 + -4.061177110920185 + -3.009459306396097 + -2.63898854846041 + -3.170294623451952 + -2.604487230346064 + -3.010946032827879 + -2.613617682916308 + -3.55029277274279 + -2.574396761472221 + -2.599848251028294 + -2.578028704461727 + -4.091997145550821 + -3.046489506249134 + -6.024567197420788 + -2.573314820148786 + -3.057493879511655 + -2.548694962604478 + -2.698306736971298 + -2.568585812603278 + -2.956271509248328 + -2.548360437277694 + -2.720064402105368 + -3.391967180879786 + -2.908254453641181 + -3.434336192347576 + -3.343064012166588 + -2.708508495417273 + -2.569971534201374 + -3.246224105771692 + -2.570770168574587 + -2.703214807631074 + -3.031761865804812 + -2.66610303402016 + -2.716050432205291 + -2.574765537323948 + -2.78707038896786 + -3.31030259925024 + -3.122114901604713 + -3.192815310501382 + -5.025386778408753 + -2.983065568905609 + -2.914757915281241 + -3.132559244409798 + -2.780722111465765 + -2.905274024649649 + -2.581583447282073 + -2.713703062359694 + -2.631432717453464 + -2.595478637436079 + -2.61972928921905 + -2.648376694685953 + -2.706198260904838 + -2.554888780908396 + -2.77004374242635 + -3.491206155279996 + -2.969913982902917 + -2.969584849005749 + -2.768801024101134 + -2.609087385010846 + -2.545042512080812 + -3.959167322634673 + -4.039387832873659 + -2.57428627084354 + -2.70708997425366 + -2.682351978183104 + -3.345036753730823 + -3.046232214112978 + -2.853096071976041 + -6.489567551576688 + -6.721624248395974 + -2.553161190231116 + -2.666522947268379 + -3.492807009322188 + -2.572707798811056 + -2.807391240381756 + -6.282942386276809 + -3.109256699750481 + -2.662953500180876 + -3.89639978036338 + -2.590288896949275 + -2.679914867566302 + -2.613940278144595 + -3.184364898173508 + -3.646772927936823 + -3.527362329286409 + -2.903180024560304 + -2.886012972174607 + -2.814181563948054 + -2.888982624589969 + -2.96736879732585 + -2.712520104341638 + -2.616264680185836 + -11.55832536989166 + -2.573516431186857 + -2.909840086840133 + -2.947826486599397 + -2.691649228300912 + -2.748431886733546 + -2.697623107444813 + -2.545913224187214 + -4.838993574550014 + -4.602923545677697 + -2.583945392120162 + -3.380337007485623 + -2.521539145570877 + -2.909573695243877 + -2.573337046098293 + -3.29382427063937 + -2.608012601576058 + -2.697098198610826 + -2.694635442241706 + -3.781525833599368 + -2.64430541067021 + -2.854497810379234 + -2.790300681579973 + -3.032250738700202 + -2.663185309903177 + -2.840012783763985 + -2.914148743186882 + -2.843991528454382 + -2.66595370279024 + -2.65016817660838 + -2.670028092749022 + -2.685202144733623 + -2.739448058090268 + -2.563046563255842 + -2.535391646137224 + -2.948078670885573 + -4.653770288475355 + -3.870475481853365 + -2.574477524576601 + -2.883816501232159 + -2.572739971367297 + -2.641317904966459 + -2.577799394016009 + -4.534452084800574 + -2.561337270986384 + -3.179217950768946 + -2.539951338012013 + -2.542666017054761 + -3.179459695880147 + -3.26837478890558 + -2.915367607023614 + -3.613833239135603 + -4.293403511174498 + -2.75627021478252 + -2.561839139106225 + -5.001570628494543 + -2.658392540867351 + -2.576188565670695 + -2.903037235697424 + -4.360639112519747 + -2.603508076220647 + -2.852185912855215 + -3.095658576279844 + -2.707791975800105 + -2.644594445301816 + -2.59642932747172 + -2.80588546602991 + -4.539159790465598 + -2.632217671302617 + -2.814910838258961 + -2.575985539956187 + -2.845147041624787 + -2.591110808621037 + -2.846596812678655 + -2.847220877086732 + -2.690167646357695 + -2.543307001338599 + -2.594817894044726 + -3.209062828416729 + -2.754661479618983 + -2.557381470537583 + + diff --git a/test_gpstuff/octave/realValues_classific.mat b/test_gpstuff/octave/realValues_classific.mat new file mode 100644 index 00000000..4655960a --- /dev/null +++ b/test_gpstuff/octave/realValues_classific.mat @@ -0,0 +1,2437 @@ +# Created by Octave 3.8.1, Tue Jun 07 13:32:48 2016 EEST +# name: Efs_mc +# type: matrix +# rows: 400 +# columns: 100 + -0.5501765639246514 -3.259305630544986 -1.373340339490824 -4.238993405142537 -5.508324176187671 -3.070568572151387 -7.396446914175613 -8.032535840429773 -3.673529384083849 -1.121352195693362 2.749357057379711 2.165364310912992 4.358978758707053 0.1271789705648416 -0.09311992128129987 -2.002684795811206 2.881175407899917 -1.919456031198706 -5.663625764584594 -5.408664332338503 -4.878764179205973 -7.222946477235382 -5.199371422249897 -4.584367261503644 -7.284512516620453 -5.90500297314793 -6.486911451902415 -1.895198057620291 -2.323056801099938 -5.931135578751082 -3.418836024739903 -3.683726447058575 -5.578115490012692 -2.652267721938699 -0.5527637898529179 -3.488163772795701 -2.434526968498417 -8.06558830864531 -5.609850158280992 -4.332833888349342 -1.711160712516403 0.4915215378035782 1.068194125665286 2.419505034442281 1.993084069095728 -2.159429053805778 -1.986949831183175 -2.649665802746654 -2.004281511529598 -2.479630076044373 -3.74722427829613 -5.870916565321011 -7.438490561789877 -11.24999505051323 -8.344530953695198 -7.508606302280214 -10.01689608373681 -13.50261646385479 -9.018483581055989 -8.346262712417683 -8.017704558590893 -4.483838596954683 -3.280260147790159 -4.72715258770404 -10.2077592408732 -12.57678861902514 -8.074908492525083 -7.884501031455102 -9.848207090091819 -14.51966201202868 -6.581683496409823 -10.98555174802459 -6.340640099519078 -7.299425801157668 -9.263478749830028 -8.920659065345149 -9.084741074488988 -12.59968575651601 -12.76650360041185 -6.236273905225858 -8.002532495915489 -4.735267490366937 -4.479303606044027 -7.311681244529211 -6.381584979880643 -2.043604201619928 -3.154494458689385 0.05504030048155073 -2.530871330417995 -2.098218557426662 -2.520317662403613 -3.769613282341197 -7.66500273312613 -7.161984755335652 -3.478737465018639 1.922150586651696 -0.6446212661307982 -3.890102344121942 1.648576453569831 2.390941491399763 + -2.167461842854209 -4.607952756523446 -3.433773505814315 -6.946673597449262 -7.965139018420814 -5.637755539053614 -10.49114432200076 -10.74053663693485 -8.851048326319869 -5.540586314881693 -1.818571972997233 -0.7419313419222817 2.03698985273104 -2.061818569737625 -2.502927683063149 -2.279593981052926 1.32107921902724 -3.191584913604629 -5.381264406847549 -5.553546348042801 -5.077786577878214 -6.204973677395174 -4.647336696882121 -4.599901342433242 -7.340332119863888 -6.189867740751652 -7.211759928271931 -3.249418595155475 -2.749736419127203 -6.77052411770228 -4.730302466288322 -4.842849199744364 -6.766904249938307 -4.26097986344223 -2.767004933847602 -5.764193929594171 -3.265591224172681 -10.17220833347122 -7.879606164798446 -5.136753980721778 -2.133739376220547 -0.2373829501503906 0.5981079660072055 1.278766727108859 0.7357607377141715 -1.643367882161069 -3.542837973330519 -3.371947944173428 -2.102467077374968 -2.110388949375647 -4.146990133862914 -6.431264121938369 -7.874966065108765 -10.14043647521521 -8.177801661411877 -8.169285908948041 -10.32396369057733 -12.83812253046563 -8.64222165142678 -7.471310591609097 -7.511751239758581 -4.998496501857744 -4.113831992195855 -5.655655947526611 -10.27997935691201 -12.88356979500713 -8.865664221911175 -7.942901408572652 -9.093035977472482 -13.05358670419992 -7.010582228896965 -10.44630756256811 -5.450792360890773 -6.238324109587666 -8.951754584206356 -8.840028532391443 -9.567818019202377 -12.14098786007526 -12.50271918384851 -6.017716085163215 -8.202256811826487 -5.316443611512682 -5.024654039340248 -6.268157036998446 -5.791198047268608 -2.646676910331962 -3.667634647772047 -0.7389632744634014 -3.500479852460558 -2.575680519192247 -3.015681308457715 -4.641599248170678 -7.893644155395123 -7.643929172976641 -5.157738802265158 0.1379645449032978 -2.525815702330419 -4.632448067351561 0.4736031744989759 1.153993202573274 + -3.712480319734823 -5.992988908827101 -5.432040181396587 -9.206569837981078 -9.732672864987762 -7.572024954177323 -12.76576809569087 -12.77694838804382 -12.87448400882022 -9.021479068365807 -5.600274026752231 -3.361674468234924 -0.3069068236718522 -4.060659449668947 -4.418076947768895 -2.156463650652768 -1.153000510854326 -4.09227649152831 -4.915739961004874 -5.067270700950758 -4.814212244576083 -4.998678518886663 -4.027452931077278 -4.361501123779533 -7.334561098636186 -6.270915852808685 -7.631725976425514 -4.711099557833222 -3.328501316153961 -7.561455699559701 -5.690054746772148 -5.604278602674412 -7.189148364172524 -5.706063178454542 -5.076787356638079 -7.605003662206173 -4.099605825512299 -10.35385447608795 -9.171289693500796 -5.441296838974267 -2.265565447284644 -1.177755436990992 -0.3779661624914752 -0.002835501915626537 -1.261766307563274 -2.094731774751146 -4.920634629841311 -4.125465730333417 -2.319506638261373 -1.896914622919667 -4.424939627506546 -6.835784244255194 -7.912369438202859 -8.818124644131785 -7.625073264975526 -8.303770203501699 -10.05826604777758 -11.63464705170554 -7.952436745533532 -6.487997414982772 -6.786529981032587 -5.42617333865951 -4.880452160948607 -6.646391850023065 -9.828148279211746 -12.42986279792967 -9.008575310107517 -7.338297300500926 -7.735065331422447 -10.9358576194827 -6.803509927045525 -9.450958919667755 -4.377204947806604 -5.010384832816271 -8.415260740814119 -7.835859663709925 -9.425750665330725 -11.04004924198853 -11.54996738396676 -5.709659236228845 -8.020748940930389 -5.557483792807716 -5.05008878163585 -4.685380525343589 -5.103257104165323 -3.098926520290661 -3.698848815759902 -1.182342121336205 -3.965801306829235 -2.715134695896268 -3.19944952251808 -4.882504801047617 -7.795052321236653 -7.639339246958116 -6.071454701683251 -1.120603832703637 -3.762386547387905 -4.627486159894943 -0.3979590524259038 0.2963462021916521 + -4.968019187559548 -7.264695575442602 -7.154977304468048 -10.87246374346432 -10.75996119390766 -8.886227766957745 -14.18882540979757 -14.12832869270278 -15.42180604785062 -11.41332100932595 -8.181109334527719 -5.33525447007014 -2.336632960151292 -5.583197215361452 -5.490016022000191 -1.828000241403856 -3.441073404168037 -4.513911848247062 -4.351722943071763 -4.118175644942312 -4.227500881297601 -3.838716421485515 -3.413451017961052 -4.020637861801958 -7.2437901092635 -6.088747661437083 -7.638086434722936 -5.77873264745358 -3.840861319990836 -8.022690971012707 -6.1174335194587 -5.943049171298753 -7.294959733572341 -6.89653936414652 -7.127624828020544 -8.546562382779939 -4.923579001800647 -9.122330279811706 -9.307325848391315 -5.227784995860929 -2.128102276887603 -2.124181244471856 -1.621260426695699 -1.196350919800352 -2.907342093286616 -3.057355653957814 -5.850244922942426 -4.813131520476986 -2.626879619006104 -1.88535119197104 -4.523932047817198 -6.943318065285951 -7.543365894094222 -7.543609639217721 -6.73245042354074 -7.759132523866356 -9.185356746464095 -10.04886229615295 -7.020785705759749 -5.517741794455333 -5.893631841792001 -5.701291215112178 -5.40861795581759 -7.466643369321901 -8.744559732484049 -11.19762034441737 -8.474769871339959 -6.053816850721887 -5.801162952144296 -8.33255855376774 -5.976982424712332 -7.920160330322688 -3.175066950600012 -3.786565470252754 -7.684711756563047 -6.128455954572019 -8.556774928052164 -9.325754432848044 -9.885717052531618 -5.227794467646845 -7.420832509618776 -5.448848210840197 -4.547718296214043 -3.18519475610492 -4.481001315784283 -3.418921365563847 -3.390467332177877 -1.387306544629155 -3.957885649655509 -2.598060189809985 -3.10816402043929 -4.619369992695283 -7.428360732234069 -7.17495755368509 -6.30937592131886 -1.962587067766435 -4.463988981598959 -4.270564510591612 -0.9203896478802562 0.00359961211323867 + -5.791394034522455 -8.276717208864284 -8.440727644177969 -11.88494583991269 -11.12996734545595 -9.660756118842983 -14.8187993660722 -14.84291327777828 -16.49143233162249 -12.75124654352476 -9.419957321577385 -6.504825798458114 -3.869060620676464 -6.462147827745866 -5.635119086457507 -1.551355618392563 -4.580568595408067 -4.515101649360531 -3.782121097478921 -3.090243942726374 -3.530646761533717 -2.904407639449346 -2.852977269409166 -3.734885569785263 -7.063420958118513 -5.626525638843304 -7.209813085552014 -5.996108555107639 -4.0127916946185 -7.865215232415721 -5.951425332572853 -5.924867033582814 -7.347612272013976 -7.535963596192687 -8.385747468999853 -8.37547578927115 -5.573573940469714 -7.414692158514299 -8.495327759422821 -4.563143934261007 -1.817308253422198 -2.863835198307243 -2.77625977415164 -2.150971064004125 -3.442288379355048 -3.697066669475021 -6.16818145831899 -5.330021971471524 -2.933807762497963 -2.042169171062142 -4.463241928330717 -6.697987325281929 -6.843758130537935 -6.381890013484735 -5.551038033354871 -6.540213123461399 -7.820864117526071 -8.304512567239726 -5.962162404885362 -4.67476525158645 -4.929729594928844 -5.787981325900546 -5.589378213449891 -7.898099640875444 -7.116679336242669 -9.344932921332656 -7.420880934369052 -4.328264894966651 -3.590759891651032 -5.58670545458881 -4.760161418707867 -6.026058174087666 -1.965143472458294 -2.712990181713394 -6.843357879617542 -4.165751091011771 -7.031754992799506 -7.168702358185328 -7.658394646387933 -4.512628720440716 -6.461153565294353 -5.013639227685871 -3.600268491941733 -2.154053367873985 -4.009109190792969 -3.620143434764714 -2.965300035119981 -1.483538066695019 -3.593358988870932 -2.342761731013525 -2.825593603914967 -4.033184493626322 -6.898169051029981 -6.345777831767919 -6.052051265876798 -2.577052159558662 -4.937146061084604 -4.074539211503179 -1.379833937555304 -0.06646269173776087 + -6.15053203903517 -8.916066154190048 -9.201052194301155 -12.25379675803561 -11.00317624287345 -10.00541585752217 -14.77574106373504 -15.00891761264938 -16.35504701933314 -13.20530561610394 -9.463374298244162 -6.935605499969824 -4.909968465583006 -6.711894094593163 -5.029238904398426 -1.542150194613214 -4.437357421559 -4.261594059581057 -3.290927053280029 -2.372773428360233 -2.918262255088848 -2.268548853357061 -2.370320491067105 -3.561778625059446 -6.816216129853274 -4.937325064631295 -6.432528208599251 -5.252277164581756 -3.690055362041676 -7.025137085069218 -5.27782919533729 -5.653832220778895 -7.328839189895007 -7.310218676963814 -8.431676896411773 -7.286029355506798 -5.854615449477024 -5.756334317326491 -7.138827244946242 -3.590105759858034 -1.474379124771986 -3.279489724222003 -3.502879848880184 -2.685246106804698 -2.848102211864287 -3.491278325397843 -5.877450667548246 -5.49495673983256 -3.155658214447612 -2.284500478274822 -4.336191495601724 -6.148470040153256 -5.958624721456545 -5.214586803926068 -4.210711376098516 -4.864556621817428 -6.219831621234334 -6.642667683583568 -4.909380675282591 -4.046396754282569 -4.021811831085984 -5.702290265395277 -5.424441174813637 -7.828942612999526 -5.260267475608998 -7.187272463721456 -6.135618548054481 -2.565274370925636 -1.615176205732496 -3.168815551438456 -3.521760076364444 -4.1375786823628 -0.9163731180597097 -1.909020156908809 -6.015242238143401 -2.401902512482593 -5.124062533837332 -4.87105544221231 -5.185987409018708 -3.590320282457014 -5.299544106799431 -4.338080120775203 -2.38424165583001 -1.613428730675423 -3.701255595459543 -3.709157656601747 -2.626522233340438 -1.58822899459517 -3.045736683719042 -2.074745003754288 -2.46345132564602 -3.328706766507821 -6.32850604608393 -5.311215695779538 -5.438440275720495 -3.05180966626358 -5.363881371713433 -4.270849936308878 -1.999087889151269 -0.3724637957994084 + -6.120689148165184 -9.129139061384194 -9.428334955693572 -12.0365636334609 -10.55553583651272 -10.02737426804379 -14.2125064679276 -14.73331689698898 -15.43698977528038 -13.00884399565439 -8.697664006984269 -6.858502532079001 -5.615474205727878 -6.528817609484804 -4.042178005611277 -1.904688093402001 -3.635953622150737 -3.932236079963332 -2.940131202993143 -2.121505905019148 -2.493135701388383 -1.900323817029857 -1.98051335314085 -3.425340356619813 -6.55119011134957 -4.149335412199434 -5.483158050083148 -3.88306135239327 -2.971362592954392 -5.758197939116144 -4.30151337940606 -5.181656320700313 -7.106358025004738 -6.208007754876235 -7.326841853489896 -5.816126500321843 -5.724390183925379 -4.142635028594896 -5.639907113896243 -2.513008645951231 -1.244496728549166 -3.407755015042767 -3.613032076648778 -2.618447433808115 -1.685980460768093 -2.517678803459603 -5.147799981735769 -5.123902650283071 -3.277661256206557 -2.53952560975722 -4.274293275800574 -5.428188008614541 -5.069854609764661 -3.936080535422661 -2.970862835254593 -3.130989200728436 -4.700122696611288 -5.268128111663827 -3.984785853287008 -3.679363983062331 -3.292585681768216 -5.50549716081332 -5.016590970737525 -7.289015756789013 -3.59516102935595 -5.107525860112219 -4.947250363802596 -1.169168683137741 -0.3781039315817907 -1.524471745229675 -2.638882534811273 -2.675525679631392 -0.1959741772152483 -1.460633219132433 -5.33092068410042 -1.146670577700206 -3.259950482634849 -2.802251792829338 -2.884867229686279 -2.592410563714566 -4.15741720815322 -3.580683618981084 -1.144358646354249 -1.36128958436484 -3.536477498683325 -3.699740497057974 -2.48855413673391 -1.799423579549511 -2.503699247825352 -1.895588091958416 -2.13380049099942 -2.703987195742229 -5.831816481804708 -4.274293534261233 -4.576281085057417 -3.364402693579905 -5.664243186271051 -4.669540504808538 -2.637115043458834 -1.055736094196678 + -5.845852024825945 -8.942479878809536 -9.189653942477889 -11.325596434006 -9.935391681436158 -9.813387378686457 -13.2913213537031 -14.12490051357236 -14.16774446761337 -12.39026532647404 -7.624244474576699 -6.556077428871504 -6.18642373032344 -6.206353699636793 -3.126201321336794 -2.617904544613339 -2.9578204768859 -3.653638982207212 -2.763540480063966 -2.211053924977023 -2.251235252206243 -1.718698641212541 -1.704459059517831 -3.199255273212657 -6.331129804733791 -3.440172083981452 -4.581404821539763 -2.50913561003108 -2.20199698147735 -4.521521967017179 -3.275114671519987 -4.49495655211922 -6.608720273761719 -4.633256348603027 -5.684749667736469 -4.575329872222028 -5.353281468983823 -2.557028896928387 -4.308779951177257 -1.567541329133746 -1.234941881118175 -3.409908332199393 -3.156210610248309 -1.97612598702608 -0.6645180581249406 -1.59105540613109 -4.252455455587977 -4.260811066003043 -3.363851129146497 -2.788610125256128 -4.39532149880506 -4.708228759468625 -4.352504994387346 -2.683005423605209 -2.172941201110916 -1.793494106394064 -3.534954837215992 -4.308923004871758 -3.277861073825761 -3.575217203519173 -2.823111077413103 -5.27456626446974 -4.513198310734879 -6.420477908068278 -2.445193409083004 -3.436993358991458 -4.125491984494147 -0.3889046461335965 -0.1215148563496768 -0.8796550451224903 -2.358646260261594 -1.938778291310882 0.09403138938068878 -1.395444720565138 -4.881997165088251 -0.5628166123751726 -1.889971977744153 -1.293622973586025 -1.146102457434608 -1.714129444217178 -3.253636378076635 -2.937364245932713 -0.137958441020146 -1.226995655898463 -3.491764021339122 -3.627504115293959 -2.565084850198218 -2.193197471106942 -2.125039281858335 -1.856881013325619 -1.919236401263333 -2.316694472494419 -5.481621681530669 -3.438247798465454 -3.642175094646518 -3.518280902979313 -5.65115232232165 -4.906965194330041 -2.924425492687988 -1.91569618350135 + -5.482873961673249 -8.465648423902167 -8.609609981715039 -10.24513215580373 -9.248262464432628 -9.426664273451024 -12.16662446911505 -13.2827764467329 -12.86472755651266 -11.52620417532125 -6.681201293049526 -6.240585418847331 -6.734558228376045 -5.993077557194056 -2.654626508485762 -3.56685827928527 -2.82772393567393 -3.48937396626161 -2.76764285777972 -2.410945810333942 -2.124329442078306 -1.65998294948804 -1.573675829946296 -2.845228803381701 -6.211564301556791 -2.984429070733313 -3.922605559688236 -1.716746005309687 -1.805540587076393 -3.728537992925339 -2.417444568138308 -3.619580877145381 -5.897480608353362 -3.186159364535342 -4.320048045599833 -3.931655580764527 -5.005787050587855 -1.321611547304883 -3.326906281648689 -0.9706793288141853 -1.485324581822169 -3.472601587121517 -2.405817764059975 -1.113871193646446 -0.2035250680442573 -1.037352606553213 -3.471040549376823 -3.299963073267918 -3.503944105823393 -3.064169027171374 -4.755898365024677 -4.141015462786868 -3.929872268698091 -1.854784675186238 -2.091165130863374 -1.187961838786578 -2.869783035923319 -3.80005086397432 -2.834541592337132 -3.695494607352202 -2.632871225775432 -5.071199117261585 -4.041847730789414 -5.415939723428892 -1.908871367297252 -2.36870415496378 -3.806538014148828 -0.2432837183318952 -0.6949342704174342 -1.111953345149232 -2.709452227514703 -1.979850034724222 -0.0375012749718735 -1.650215528465196 -4.684199640018051 -0.7074645700586188 -1.324655397084371 -0.5287206407156191 -0.2052624567577368 -1.12711392814208 -2.732285023158511 -2.569346523416698 0.4364426655752141 -1.213821475012537 -3.546692216834799 -3.546452200081148 -2.803377029050353 -2.802738718657565 -1.996825420275854 -1.94588590595049 -1.849178608721559 -2.249499437391933 -5.296515447906131 -2.948631406146887 -2.915260315749038 -3.647086264609243 -5.286439139797949 -4.829500713418383 -2.711236607718092 -2.714596573666446 + -5.150605015847759 -7.854438789327105 -7.84208433891763 -8.949102894424868 -8.561156191881309 -8.912310505620553 -10.97200062677439 -12.28967061335061 -11.67705732524701 -10.52387167873712 -6.087238046511629 -5.979492377817223 -7.192791058503644 -5.97099479816211 -2.7602533540894 -4.593010443216372 -3.174299918644465 -3.459664625483583 -2.937152666438124 -2.590236003848986 -2.043018855049013 -1.714418589537672 -1.619200915665715 -2.481479689995012 -6.218140233686427 -2.891998291772325 -3.615629253312363 -1.765070620094775 -2.03620947352465 -3.536296909232988 -1.857895708333672 -2.717036741026277 -5.137946222655955 -2.304134099344992 -3.726129772780041 -3.862286622950705 -4.870103092354157 -0.8887453668471608 -2.714694447011198 -0.8645981463778298 -1.960815484269915 -3.705285648335121 -1.742979411177657 -0.551324323805602 -0.3135990486464948 -0.3367034211692044 -3.004343050852324 -2.768366522178439 -3.739094282649603 -3.402623122538898 -5.323132099918894 -3.8120708781384 -3.838830868555306 -1.842051803063441 -2.766504680415892 -1.39524620764314 -2.703092004767313 -3.692456753375154 -2.658329255615968 -3.974524974982842 -2.686585112736822 -4.929109148948555 -3.675124026908634 -4.462936488020205 -1.885411236806249 -1.943919365599868 -3.963899446964206 -0.5567699211351282 -1.637867356377683 -1.789831557394791 -3.499139818595722 -2.587826594419312 -0.4699086236796575 -2.065352369652828 -4.667843037528655 -1.493512745286353 -1.606751245993109 -0.47673828725965 -0.06207046367126168 -0.89355116641309 -2.614371285594189 -2.531021060251533 0.5003488324573482 -1.433028902144542 -3.662094488349567 -3.502146511533738 -3.123664324944912 -3.579749099235187 -2.113073675058331 -2.088762747338478 -1.890852299802646 -2.48526169282195 -5.239839820165798 -2.844293766276678 -2.657568679380347 -3.94986900013464 -4.761296936077997 -4.631391836250259 -2.32846944013454 -3.394199342612026 + -4.90134295144162 -7.231829541960906 -7.032955244801997 -7.607229956731317 -7.910374991377466 -8.303315121745982 -9.80899777286686 -11.20888437272515 -10.60129539974514 -9.430536775364089 -5.795436582873663 -5.702127869317337 -7.339602062431368 -6.030660105017432 -3.283192435309502 -5.537763229741586 -3.621281681525033 -3.554453712822578 -3.24174219521592 -2.762602614184289 -1.979381845289026 -1.910567986440583 -1.849206541541207 -2.308919269743797 -6.331146322423592 -3.161970140099584 -3.649569774628617 -2.477569165221212 -2.805045740125934 -3.785600680579591 -1.626266265685445 -2.040993726380293 -4.490121135275331 -2.053382025367682 -3.801589180463452 -4.073486722177222 -4.986452136957723 -1.417782985404301 -2.366155505916026 -1.275794466698244 -2.570876546789805 -4.096840925988545 -1.487755731819561 -0.6400656489356606 -0.865098364646343 0.1489028457710901 -2.932444868785598 -2.919308965603477 -4.021836128534233 -3.786487185202532 -5.973031043298761 -3.714354562182166 -4.017107404056333 -2.666043090477615 -3.940910910885577 -2.212903502982044 -2.929779567359219 -3.878759099152376 -2.718295808292282 -4.335775742520241 -2.919514852977628 -4.861919270757426 -3.433256023366539 -3.709168136050721 -2.207865673495689 -2.102797686595295 -4.436906538805488 -1.077757926372215 -2.438224866235032 -2.400122894803644 -4.399786165566184 -3.386002913146513 -1.019915573662729 -2.43730642196897 -4.703251942217321 -2.61216118587754 -2.486300226356889 -0.9040944465687062 -0.4890226846582664 -0.9329972743539656 -2.794444183899031 -2.742666278811612 0.1196971141562244 -1.925076313182217 -3.75900115066429 -3.497200547598823 -3.428131338923777 -4.368313141554154 -2.37939890200596 -2.174290988908979 -1.960581729312253 -2.90719348253333 -5.234755274184863 -3.045143628463848 -2.925877198671515 -4.507158562570112 -4.333731113722024 -4.629707360125394 -2.312558818113757 -4.003177586242003 + -4.722654827968654 -6.611002860739973 -6.28211701624241 -6.374647063836164 -7.302161053947202 -7.621960181997565 -8.738203181317658 -10.08430688228327 -9.547379236668348 -8.261534435214344 -5.585772924481716 -5.278463531387388 -6.943189912622984 -5.958605634639753 -3.888016736026657 -6.265769763939034 -3.848859592769259 -3.731709878995844 -3.641207703583859 -2.992697350295202 -1.953995597788889 -2.265281887586752 -2.22811783033103 -2.451536706491538 -6.484231381487916 -3.673554414846876 -3.903057600524335 -3.376322329320828 -3.707941147409656 -4.121509072350818 -1.682088386888154 -1.793590012755885 -4.039589795713255 -2.217869542176231 -4.069220665918692 -4.295915136542135 -5.287256248996528 -2.581179650897525 -2.172633085253096 -2.103160641372142 -3.203915836674241 -4.54276064527221 -1.753432895894548 -1.37186119173748 -1.738741137186949 -0.5701711244980743 -3.21788055954174 -3.542880138317514 -4.23770888965646 -4.119031435378929 -6.519574543807266 -3.755231744505181 -4.320347064467569 -3.855933230313894 -5.152316309552134 -3.252059658784674 -3.409159276963692 -4.223054384270654 -2.957293687671608 -4.707054517004053 -3.261958897376502 -4.876630694171581 -3.304054842671121 -3.237862957146717 -2.75145418597458 -2.742757510241063 -5.005766722539192 -1.607891335130262 -2.814660681686291 -2.648420286121109 -5.080920223299472 -3.995222917350475 -1.518914157226391 -2.619169462948776 -4.652020471337892 -3.579115241090221 -3.519499560268741 -1.465936894674087 -1.128154135176374 -1.064087697457126 -3.083194382518059 -3.029998342915633 -0.5211478938313121 -2.547747040651075 -3.727452906116241 -3.476738404833895 -3.591875806612734 -4.930746649732782 -2.647942093391976 -2.095174956295523 -1.954772443725233 -3.333739063773464 -5.189877497861744 -3.390932072776195 -3.495682417385979 -5.165745302245341 -4.114088706141047 -4.927626046028308 -2.870696026680889 -4.538414891677091 + -4.567757551088107 -5.894867138598784 -5.619721605267841 -5.35410110054363 -6.708542415115517 -6.877071116785373 -7.775912592562236 -8.943522419358487 -8.420410230344714 -7.035098483278489 -5.236599911928352 -4.622225581128077 -5.939483655919503 -5.575304595650778 -4.270978875334549 -6.670353155334169 -3.836582749980153 -3.92307499392291 -4.088411041768268 -3.312756239318333 -2.01787650703227 -2.740372703268804 -2.671230830834247 -2.849161676641302 -6.579519221108058 -4.221670759325207 -4.193532902485458 -3.978685516711266 -4.256818646472311 -4.225615219523206 -1.959078475789738 -2.026129972582567 -3.877028390696978 -2.573062282872343 -4.193419121947954 -4.494539822850129 -5.649839551537809 -3.72709478185476 -2.108887031583436 -3.139321778025078 -3.761449402807557 -4.907202165235503 -2.398453026556126 -2.461895370011348 -2.64869209325812 -2.001891241860108 -3.736397159235157 -4.176180471124098 -4.271492248000868 -4.260815403318702 -6.772612198695015 -3.796759754922277 -4.567640803464656 -4.711519987595238 -5.944917740332585 -4.107109081151066 -4.01271063715285 -4.584826452643028 -3.296039268060895 -5.030825319866551 -3.647707509489507 -4.975340603246877 -3.254108658059977 -3.044017727117534 -3.42533573613764 -3.723595874580496 -5.475365259782848 -2.066789539676392 -2.839659864810528 -2.623506192074274 -5.332792226894526 -4.182655993892695 -1.879631395204342 -2.608791823160573 -4.421783069188677 -3.962206384073397 -4.249157960288812 -1.840584450863389 -1.631952597760574 -1.09757364003849 -3.276711450248058 -3.212773262957398 -1.188605000855659 -3.034760151672344 -3.473303446700243 -3.352261627863982 -3.488863402445304 -5.038870095105494 -2.775323952543658 -1.79624477895959 -1.792144947798079 -3.583005441183559 -5.027560781591092 -3.718303497829766 -3.996051517198794 -5.626937831904797 -4.019676589771734 -5.303525914911916 -3.706990601553116 -4.941269546836812 + -4.402916332893255 -4.988606082548358 -5.011411838560889 -4.569975215315935 -6.070572758784692 -6.062057801711489 -6.900517231788399 -7.803967987802025 -7.187219440938861 -5.801708341536141 -4.667266520391422 -3.760721485341492 -4.519250849098171 -4.831948413797249 -4.30230271696405 -6.676080952305483 -3.774766870414567 -4.063011872392735 -4.531479697126088 -3.714055051546893 -2.224649790146941 -3.237460248976276 -3.061734152102872 -3.294337376323426 -6.515164317432209 -4.586215752657154 -4.347679285812774 -4.062623411837194 -4.16885336996711 -4.021030918233919 -2.397893143015608 -2.636544464063491 -4.156997425033751 -3.050913644753791 -4.26049238110204 -4.789176544700922 -5.901763911332353 -4.298172373975149 -2.17114478345502 -4.125499855096905 -4.179715839830806 -5.080387207271542 -3.115180694913533 -3.560161166837361 -3.25981114617969 -2.742400270075713 -4.319133186354881 -4.467513791669376 -4.072876186859503 -4.11416409160347 -6.609600706351102 -3.714834471910592 -4.6019805236906 -4.771456966040205 -6.072585506473843 -4.508550024159376 -4.63165055999616 -4.834214451988373 -3.633765325882678 -5.26800561251315 -4.007270003931566 -5.142602638370136 -3.225536578514948 -3.025036372211616 -4.082182978459969 -4.814255975346896 -5.723313184029394 -2.458842426516412 -2.81299533778656 -2.676002236159547 -5.128756789992622 -3.927496216390864 -2.11864092155156 -2.551797413763779 -4.000150060554006 -3.628156434027233 -4.38063722931588 -1.847547792738624 -1.782689709848455 -0.9250191450234979 -3.223004268108298 -3.194586746944196 -1.686261049642326 -3.173565098887707 -2.979758789222501 -3.056073700286333 -3.076357133294209 -4.595981295613683 -2.684879978741264 -1.312459075447805 -1.452673807098108 -3.544577024806131 -4.706209146579567 -3.938870570760628 -4.170296058688109 -5.684655469623976 -3.919585675741473 -5.416287835126241 -4.356897519280892 -5.192228475802356 + -4.251387250731568 -3.963597240473973 -4.396438836043671 -3.971682200299256 -5.319585070459652 -5.159346287891822 -6.070104843423906 -6.681077566034219 -5.909664609949687 -4.657008323133596 -3.970841573896905 -2.837282177079032 -3.057853156280544 -3.814567803187174 -4.022083153587232 -6.254024713742183 -3.789693018235937 -4.124764184793094 -4.917593228447004 -4.152671347220348 -2.599318484341893 -3.630798096328363 -3.285377763681026 -3.576873809858796 -6.216462300013518 -4.609055443175748 -4.2656259201176 -3.724247297574038 -3.52104449556191 -3.71051836727429 -2.952676378477008 -3.397200218460284 -4.882396081758088 -3.624271543573627 -4.50024527511664 -5.177366795211583 -5.826220542711269 -4.211187392545241 -2.250118533084645 -4.831399195225458 -4.437593373642358 -5.018239090516772 -3.607807715695913 -4.380000754567391 -3.594998780730927 -2.814680459499 -4.797722086217105 -4.344008527675442 -3.680428963399208 -3.69151955097891 -6.03048325300847 -3.449215975464142 -4.34318832402505 -4.125815450589016 -5.581200409724943 -4.388598315573745 -5.15939506529503 -4.862794480992306 -3.850807539261268 -5.396049228327342 -4.261608126897009 -5.333710778347495 -3.136793176731544 -3.011972082702414 -4.472510407569644 -5.653816184927564 -5.694080166036656 -2.775574442194284 -2.970969815979515 -3.072472429625122 -4.60644783591124 -3.38268509147747 -2.325625963771017 -2.639027846669705 -3.454122888466372 -2.783031166522733 -3.871646165114953 -1.498190284438351 -1.538581956056532 -0.5521483565520384 -2.861329153762995 -3.005552935113087 -1.924702315279319 -2.948325524926986 -2.342555143513891 -2.593785585169599 -2.476658613908398 -3.719773492776994 -2.408117993073574 -0.778901800001222 -0.9976770411558391 -3.227824880365006 -4.229945010801202 -4.075828602071851 -4.063036874189493 -5.419730448546034 -3.799455750384823 -5.120465813803094 -4.553170414362057 -5.309498083890904 + -4.209545945358059 -3.13525103444772 -3.744588907262369 -3.469646954967175 -4.414407845888491 -4.153129162466939 -5.247657963736856 -5.595973827683338 -4.739632192849967 -3.731284320706436 -3.32875561390756 -2.050113883954509 -1.932090708969554 -2.675921006377052 -3.541693060272507 -5.449147943323908 -3.776916264948127 -4.129200195182193 -5.199663585553026 -4.528517200916212 -3.10845294722003 -3.812308950103215 -3.268389117982224 -3.612416183133064 -5.660042090356001 -4.248809045104281 -3.954499786468659 -3.218153073521535 -2.67714473977594 -3.611052823948285 -3.574979592330919 -3.976081807633705 -5.60467459024801 -4.099984168645165 -4.799776600421296 -5.387364497058684 -5.230128564886343 -3.807195427327869 -2.114078208736416 -5.131809726916458 -4.55605687861771 -4.765937987964094 -3.729758834872257 -4.704317155879465 -3.809975236582545 -3.357040859840404 -5.043635486135495 -3.913490909556486 -3.192015993810855 -3.101574602984329 -5.162408298521882 -3.016810029552573 -3.811687987594269 -3.325873955821635 -4.736852330653392 -3.84889087538545 -5.481651105990295 -4.596218348435286 -3.81978523395685 -5.403979773781089 -4.333299276136771 -5.483002273210786 -2.908862016279954 -2.8472801990265 -4.334831709460559 -5.820087782980409 -5.362191023907144 -2.913767688695884 -3.248953797334707 -3.68712724215402 -3.985233178322233 -2.766621979273623 -2.599300522491831 -2.959927835388953 -2.898649180771827 -1.766635173241411 -2.905631022544526 -0.9636257398115049 -0.9979477108786341 -0.06469824680596048 -2.225596339788353 -2.778240035313161 -1.94804806830075 -2.525669341548337 -1.748072026606849 -2.058960973347098 -1.956312693522591 -2.725498847949098 -2.084646652824631 -0.4025842456258033 -0.5611399275148869 -2.762340820008831 -3.643025010424935 -4.23646613787605 -3.988709953529906 -5.187976793882626 -3.780885133541005 -4.608959048456882 -4.273746719085523 -5.253591937612757 + -4.418396834920713 -2.950912987935226 -3.103300047525408 -2.988191124175501 -3.37760668158171 -3.046603263757788 -4.425361831110422 -4.579542906103597 -3.878988505782218 -3.155592491414609 -2.863718399881236 -1.559702806382575 -1.33989192895956 -1.557878014126686 -2.955502633231447 -4.397386721742947 -3.444741788100316 -4.114649037774598 -5.344925040305498 -4.692653599625828 -3.647211604506538 -3.722428988194224 -3.002034190998529 -3.458796180184606 -4.883105463704851 -3.592649326048559 -3.520127659787249 -2.748862921448108 -2.061547901252652 -3.902350417952903 -4.192174027646615 -4.007381054875282 -5.555150911119654 -4.152067636629056 -4.668400581916472 -5.0641485481828 -4.047558800280633 -3.374519661461147 -1.539145550724367 -5.039332719354206 -4.591280393611669 -4.455394703239676 -3.483003107570568 -4.388096062942374 -3.593312524014574 -3.792485284757936 -4.98989367945134 -3.281879181314238 -2.704488186244589 -2.45776707034122 -4.20291836654809 -2.480396639729037 -3.113566579294229 -2.945282722975548 -3.857975227026031 -3.072749919868784 -5.495668429255147 -4.011297705017569 -3.428714453470832 -5.287664760523796 -4.177671645618823 -5.536018350788027 -2.514989786287742 -2.47441865003384 -3.57387867679472 -5.020095903692891 -4.707704305044444 -2.679609317380596 -3.283726268585497 -3.990605853746274 -3.463609257365533 -2.249287284888851 -2.986149953590939 -3.414746566846134 -2.452097605415474 -0.7958701357801488 -1.783185193794907 -0.4862287196028774 -0.3174844782463424 0.4402176782027141 -1.419708468225167 -2.67547233376564 -1.908596180652012 -2.100967500497205 -1.397054567143982 -1.596110873214457 -1.778741854733454 -2.002486994734568 -1.915357938015404 -0.4003323992333208 -0.3130386499105953 -2.34651958872837 -3.011337998419549 -4.532801010938783 -4.304954316855401 -5.40044347390176 -3.990469779690102 -4.265665982050336 -3.642312101229322 -4.907064617774648 + -4.994359918009877 -3.723185165948507 -2.606066331016336 -2.508142143073201 -2.30805175515161 -1.875594048353378 -3.637914240420287 -3.670442995988196 -3.513562010409714 -3.013890774970605 -2.513105520166391 -1.405966017200171 -1.221700716357191 -0.5528151068503462 -2.313972331371161 -3.304155442974064 -2.520823680446561 -4.094227702569754 -5.342324332147655 -4.530613590324947 -4.062897590130433 -3.358931356745416 -2.543504031236807 -3.227302542483322 -3.97508424271291 -2.822388247972413 -3.123028511770826 -2.395811383506498 -1.949725304188405 -4.483343924083329 -4.699912817104632 -3.249881629583086 -4.255417697801988 -3.605526395203711 -3.76070087887345 -4.119665416750195 -2.392020959006729 -2.812617629447413 -0.4537441926896282 -4.672373777776329 -4.617723676255082 -4.257529522713526 -2.923255703604298 -3.438100501868554 -2.466630439867813 -2.297237320926598 -4.63025563446475 -2.451653886741106 -2.264187372002652 -1.794519625302883 -3.327871482167552 -1.894157880761917 -2.395063938196017 -3.105803631507342 -3.151886797583472 -2.236454230833147 -5.151727838583156 -3.153081029535315 -2.612784954512847 -5.047865149233189 -3.817315918605161 -5.487224458821515 -2.0234062965352 -1.981957160036018 -2.371514294583903 -3.293399958001828 -3.728909167511574 -1.88651526173652 -2.658550638589418 -3.366474718441168 -3.143220059961095 -1.888845908710209 -3.453093807702317 -3.74933532907562 -2.199733123678925 0.1147903243891619 -0.8015744731546874 -0.2843930305289177 0.3604790501544812 0.9055255512993199 -0.5812131263342053 -2.812170720049551 -2.001875389821635 -1.748672355010768 -1.411093906809185 -1.331186481563236 -2.031457798262053 -1.842310315693254 -2.084377463870396 -0.9224807646478439 -0.4067344459199376 -2.164822728719628 -2.397561147829947 -4.992345658103659 -5.153716236371565 -6.244213653971201 -4.41208889819859 -4.349472726346164 -2.885156052482714 -4.173618237834227 + -5.948553737926204 -5.379798820815495 -2.430364327263305 -2.075935818676953 -1.356212567167859 -0.710486147328993 -2.957883337765452 -2.906780954446731 -3.737852597768324 -3.298524672599342 -1.994263559099636 -1.470828756138644 -1.309067009021192 0.2925915252942985 -1.636180271357702 -2.378108332669768 -1.00992060367098 -4.039949321062608 -5.205063095334481 -4.057994249672788 -4.216141659850564 -2.772548740673756 -1.993841964086641 -2.976673252041198 -3.055173057728098 -2.15050459055783 -2.918423519769931 -2.195142505237186 -2.397103600528681 -5.046597561545127 -4.979138419037668 -1.754291531519954 -1.977156710417546 -2.626811617160769 -2.336838496600841 -2.886577547328464 -0.5219194095383628 -1.863780135227273 1.019724500772366 -4.181532377271623 -4.699502037151888 -4.29392521503479 -2.10554320905036 -2.097415279161543 -0.7075727247009691 0.7776284914511359 -4.005965208828153 -1.356380259098183 -1.860257793447659 -1.073939427842873 -2.61648764538495 -1.264625504126052 -1.788148692675918 -3.329490655777647 -2.636835081559411 -1.452063351430184 -4.487918248820051 -2.142018630233906 -1.38496556344387 -4.691856874298594 -3.354647412388665 -5.39505938830672 -1.595507636061484 -1.566173979554151 -1.113208927711867 -1.069270989364441 -2.478713252374519 -0.4845901862636879 -1.207667428350248 -1.524491415830653 -3.007343230073275 -1.638037534790783 -3.903776583356375 -3.688459446465231 -2.17812359612708 1.017712077687904 -0.1795385142323767 -0.4929138317943398 0.9347508433820622 1.316617177484687 0.152327147451274 -3.210012954938719 -2.388935266106671 -1.410961801743944 -1.771588073603453 -1.309457656763186 -2.567662625086712 -2.309170993209705 -2.681003380828997 -1.990832235737798 -0.9292586219653458 -2.309929295208349 -1.838631527195503 -5.508105407092899 -6.342676493726913 -7.525481280908252 -4.855990918548287 -4.762165632801384 -2.247346441500287 -3.062309606339081 + -7.137777412507489 -7.413234161575474 -2.719895714752056 -1.773864713549301 -0.668316795561168 0.35694299170882 -2.473126775917081 -2.313994302323408 -4.495758239384486 -3.888710178078099 -0.8960518573541094 -1.50743775244166 -1.25995019061429 0.9585374209193631 -0.924801924970609 -1.749715531930626 0.7158485542819334 -3.906745430988337 -4.966214784509475 -3.419224970888905 -4.049462580387399 -2.058807114548017 -1.463406317958743 -2.674462401043336 -2.243542372880256 -1.752147350286577 -3.004122268126594 -2.241401082663401 -3.298860831852835 -5.30124141125782 -4.932939859700411 0.09874080891743375 0.4513349690159636 -1.591052468681532 -1.106211094935695 -1.913452459310946 1.23854035491922 -0.5775819075934108 2.606286334559366 -3.685060019608116 -4.858899697747916 -4.554751113906889 -1.128135951973222 -0.7991974412093525 0.6475392920277242 2.854922591090285 -3.195405704376296 -0.01028463212178909 -1.460577545982005 -0.2732411870228617 -2.037337486423851 -0.5556797177091397 -1.370676123464136 -2.868712254855552 -2.175640596987265 -0.7502544796036545 -3.630218722247832 -1.161514082960821 0.1473131360204718 -4.237463790233136 -2.946599307798433 -5.35797479447416 -1.426266683002154 -1.428802575860232 -0.1691590627717687 0.995369248322163 -1.087742814020658 1.365210903591702 0.8383513950088854 1.287304651225895 -2.95304197047426 -1.40010891701786 -4.224509050479355 -3.079677077051883 -2.380051869431554 1.849621827712632 -0.03966512302278602 -1.151981564259131 1.328252067373171 1.664057965879664 0.667873836696856 -3.799563638569509 -3.135353903788939 -1.019686520373302 -2.323508520039255 -1.475404838928512 -3.106880696988249 -3.2199338483383 -3.654801080200514 -3.476140060266061 -1.872259560198927 -2.744125759130156 -1.333325712203077 -5.85715730964921 -7.431717003266613 -8.730609444063703 -5.066459323743572 -5.087102489831793 -1.814652166995069 -1.674695615060962 + -1.058928163868586 -3.496361599876764 -1.595735313767364 -4.157185589123401 -5.285669251004947 -3.118066375725903 -6.868216467591992 -7.28168428067147 -3.411610118059798 -1.210326547482509 2.752112640664564 2.071985097964898 3.933993986087899 -0.3078977126371001 -0.3832708613625186 -2.640153051157199 2.603946349472764 -2.133091217443507 -6.257872819413024 -5.776400510338135 -5.089107359458467 -7.631608598756429 -5.446417810408093 -4.629927242866643 -7.146663156832801 -5.864434220336989 -6.320877173300687 -1.724446535781681 -2.319301538898799 -5.869790897309485 -3.082133058130694 -3.296104772049375 -5.383090794367831 -2.635612864186385 -0.485885484056098 -3.899908865554153 -2.623443673161887 -8.160612553395943 -6.119123262128838 -4.728287026419935 -1.871607440474918 0.2987135461837624 0.679419979974341 1.612304704999005 1.674433892993361 -2.173310167896368 -2.232863684896532 -2.720228329736699 -2.303481659465433 -2.766320911608318 -3.825644428735473 -5.934282249976661 -7.298072281532313 -11.30596656016337 -8.277010209052492 -7.399766495680979 -10.0435301101902 -13.51860520631453 -9.111914330981335 -8.59891054199386 -8.230561285799261 -4.858238241730987 -3.909791615084032 -5.280666435339299 -10.33519470412284 -12.65353890758888 -8.473023035513506 -8.41824420602984 -10.34356234726329 -14.96908473562962 -7.094755427784548 -11.69997401978617 -7.21584887737481 -8.594722611596808 -9.861654289779835 -9.738782864310679 -9.410152375810412 -12.87828265460939 -13.31198078255261 -7.016645283155299 -8.494511951477534 -5.150534628879768 -5.194167365262501 -7.473547641198707 -7.050517673922911 -2.520188707269085 -3.264322434999315 -1.148628154513631 -3.476601816602852 -3.127827600143064 -3.769385406526453 -4.913710900582373 -7.876046578365276 -7.731654311926832 -3.967281892517349 1.383571787140681 -1.086562625280067 -4.13863497328316 1.478153564684703 1.999407474776826 + -2.607429682662769 -4.76228401903245 -3.570391608631326 -6.750309042818117 -7.615859837720564 -5.572687555846642 -9.943109348729195 -9.924252538388828 -8.485703058173385 -5.528450213167162 -1.731613841602666 -0.8309801570931086 1.62255916862523 -2.458240844946431 -2.869938549431708 -2.934700533850105 1.219204636683031 -3.364342807901494 -5.93670080380889 -5.944099014623134 -5.302744621666534 -6.644707777049916 -4.950698509728682 -4.690252289774776 -7.140763660063385 -6.106123817280604 -7.001221746279043 -3.085686606007584 -2.799305783397358 -6.688436570707836 -4.524194982857352 -4.643375668321823 -6.579887333932902 -4.167466883400493 -2.658528941047962 -6.132387923107217 -3.473035238630644 -10.30404551056904 -8.318027815078636 -5.618843613051922 -2.353863111094597 -0.4784982938671192 0.1230213516273579 0.3735547714132395 0.1841414081367763 -1.635432257011885 -3.7719915215727 -3.551843058605755 -2.439521549856636 -2.437430837520424 -4.219639559406687 -6.472626434956965 -7.70833831021514 -10.16753419458246 -8.143285654594138 -8.098014869773124 -10.36486478211918 -12.81301327650181 -8.697274264379303 -7.681680077385067 -7.698843730083233 -5.321126642929357 -4.709551483009591 -6.157408848333034 -10.3813912143778 -12.89543458227672 -9.198283135781821 -8.480461761527295 -9.575272925944773 -13.48841549090321 -7.511381608586817 -11.18166940826632 -6.307432902431174 -7.540195948544351 -9.461851472839044 -9.654721621498652 -9.862164518656755 -12.3793685859473 -13.02430978082657 -6.744436627879509 -8.640055493569434 -5.691041780556702 -5.720202914459378 -6.517009428447864 -6.416253102164887 -3.089753895196736 -3.863219444519586 -1.950175424667123 -4.40250418751566 -3.615547922568112 -4.190203542709241 -5.74962919310201 -8.030384983557269 -8.095835871952659 -5.605316455403226 -0.380616961456326 -2.970616046186024 -4.89815450290962 0.2595053837839032 0.6534044042925937 + -4.04288028047813 -5.980504148814362 -5.423465934065462 -8.850814433579217 -9.234846747462143 -7.383124393840262 -12.18343103836378 -11.87653268258146 -12.33715753955948 -8.845371917359444 -5.380722277022869 -3.398280120258278 -0.657299029627211 -4.363980076051348 -4.802531364452989 -2.783636025332612 -1.206780222901159 -4.23129029841607 -5.406895826668006 -5.456835826820679 -5.046766924760959 -5.445243608484816 -4.355165987592045 -4.451603667882978 -7.04957794744405 -6.123882656454953 -7.362100266072957 -4.550201848023789 -3.417317045163145 -7.443242596305026 -5.588605017696409 -5.577333535618436 -7.008161549563738 -5.557934439355904 -4.960612108191299 -7.934510227869168 -4.304693277870342 -10.5206855281053 -9.499385056885671 -5.98190640272378 -2.519019173738343 -1.427669190766665 -0.8974977307664176 -0.8756561989765146 -2.04210625101954 -2.28752065691237 -5.090789957607369 -4.348157966839722 -2.643717635619396 -2.240466758314597 -4.478309792176333 -6.845676024468162 -7.715255449013512 -8.817833732425242 -7.622291266038701 -8.272440606786404 -10.09319225631498 -11.56104356853757 -7.965943898164142 -6.64631473512253 -6.926450057574826 -5.651636593622015 -5.379892877104339 -7.039435873801267 -9.88967363653137 -12.39718811656167 -9.277224946501519 -7.876415429739382 -8.228048702225351 -11.37814128063837 -7.263616771320812 -10.15854576659331 -5.167713476723293 -6.239101204697363 -8.791982070193626 -8.555920616009871 -9.666599158852478 -11.22573498813108 -12.0354038342989 -6.343762050689975 -8.376012173217532 -5.864159058044606 -5.695235267461612 -4.93277227799058 -5.624684099131855 -3.468189128539279 -3.855756109072217 -2.308970908611286 -4.767884219236294 -3.712439770164565 -4.244824050003444 -5.902199714633753 -7.838336089071163 -7.947818148797523 -6.46395900034986 -1.593325444016955 -4.168135585857272 -4.905427859684096 -0.7155013491767477 -0.3094638143623736 + -5.160240818251623 -7.035126256712829 -6.96078433933144 -10.33541373742628 -10.11319474198535 -8.57219164246635 -13.55908698517305 -13.13091708553475 -14.67186893172402 -11.03044770493398 -7.802126397609754 -5.287442956388986 -2.579287411493169 -5.758219994539104 -5.822804420513421 -2.378311426680739 -3.597404162054545 -4.617298991962798 -4.754245864791301 -4.474813725024433 -4.456750137429481 -4.26685612833171 -3.73131311454199 -4.062198546243962 -6.861831776164763 -5.868982903171855 -7.304697645697161 -5.614472198751173 -3.939545624364655 -7.858123854943187 -6.079677018496568 -6.029855007715469 -7.125999606799269 -6.720897179141502 -7.040985271426962 -8.839668676823749 -5.111709751585522 -9.320016932097644 -9.582481648722705 -5.787387203200524 -2.386037420906177 -2.337830192681849 -2.130166596806703 -1.935611903297286 -3.77566898981356 -3.493883306351307 -5.929085462297653 -4.992419494059959 -2.883705215492228 -2.206539315172904 -4.53713078584201 -6.9042536576668 -7.308389309559516 -7.516193348859815 -6.74235231300645 -7.752384815074038 -9.193568038010199 -9.920281586211786 -6.99026348667951 -5.616744729267509 -5.966729066171538 -5.795541081363353 -5.759325821455604 -7.704514825836668 -8.749794972281961 -11.13330519122974 -8.670982233445102 -6.568263946598108 -6.306640501667061 -8.783478606736026 -6.364461214252515 -8.542821124807233 -3.853168192421435 -4.859685033257847 -7.897751002445148 -6.694148978489011 -8.731341867956871 -9.453203591890997 -10.32536322013766 -5.742114422936083 -7.675162268071972 -5.667229326963479 -5.121229720630708 -3.369792930259791 -4.86196049998739 -3.686115689797816 -3.426982597815595 -2.342834654989247 -4.617907257018487 -3.504746855363919 -3.984510583581141 -5.499868567429075 -7.364095623081084 -7.319921984515531 -6.611330657651706 -2.340685415048938 -4.773304647537771 -4.523377372142932 -1.351214787569006 -0.6543277593272112 + -5.833684128729146 -7.826893286612176 -8.04698527965229 -11.17147495609242 -10.35476076980558 -9.228073307480372 -14.13039149880933 -13.74463030563129 -15.52212846202383 -12.14561714677257 -8.880463834022521 -6.363653208318283 -3.979172675910377 -6.494850864654836 -5.856585763268868 -1.981358263129323 -4.889343876094472 -4.56863770385462 -4.07535938500223 -3.379356820503745 -3.74385631772202 -3.292264411233191 -3.13100954300171 -3.695503000294536 -6.586461208178662 -5.336605044663884 -6.818019527767319 -5.82466804791693 -4.085104454272368 -7.652455665302114 -5.931698368339312 -6.036728839965235 -7.166273881765846 -7.332289577907886 -8.318512971109158 -8.600572268489032 -5.718382979276953 -7.627902491027157 -8.795841229117286 -5.095133581403388 -2.054085931974441 -3.003988387928075 -3.222469718141383 -2.723685820695437 -4.21808961635827 -4.161705614651964 -6.144602990494338 -5.401304208140118 -3.076533056187145 -2.296371871947485 -4.412168162054513 -6.589322097094566 -6.563097011728132 -6.322010474801573 -5.541135334850424 -6.531377483196593 -7.786254379041566 -8.116884052960813 -5.886575645294783 -4.710390605097928 -4.922195271770292 -5.736862067983111 -5.76226814750089 -7.958048493826936 -7.051896930079238 -9.24950955141685 -7.526928726951155 -4.77971091517702 -4.077042522334523 -6.016645517927827 -5.045562092615 -6.510267429286614 -2.49527870673046 -3.558140755674685 -6.882885148315836 -4.558903247859689 -7.138090371748604 -7.240557137291034 -8.047687104643046 -4.899930749404575 -6.609976097581693 -5.133736586597024 -4.093145144020127 -2.251651981277064 -4.240698703712269 -3.77332397791497 -2.876150556239736 -2.205489599051816 -4.090354255277816 -3.122775560141235 -3.513430314833386 -4.734762473417504 -6.720356519759662 -6.319394225218275 -6.218343040898617 -2.804050544826168 -5.096085458711968 -4.240282320131882 -1.855330156444325 -0.6857664548791966 + -6.048567454203294 -8.28424570705829 -8.621648416490643 -11.39319754658209 -10.13467930369734 -9.465460339910351 -14.01989865204087 -13.8169673137163 -15.1905397171613 -12.38943659835422 -8.783720143463142 -6.711292626583599 -4.881890202230352 -6.604829704994017 -5.107782624505489 -1.822426998035098 -4.815625988267129 -4.243547344026865 -3.461120831248991 -2.565304253526847 -3.104579779090272 -2.601539681334543 -2.588054963580362 -3.437014718458954 -6.258180253804312 -4.589892088704801 -5.995188846514793 -5.07663056887759 -3.703942786947664 -6.770447967290238 -5.238261467678058 -5.705485695580137 -7.074871384311336 -7.048669994678676 -8.319294405583605 -7.378963009371546 -5.910955530953629 -5.952530942371482 -7.474455142242391 -4.048814398553986 -1.670942024576107 -3.325502227669858 -3.852582909125886 -3.11339124612573 -3.429716754188689 -3.809326324276753 -5.764641610216682 -5.436887771127886 -3.15562836702702 -2.432918036837691 -4.199227124994195 -5.953693281520032 -5.627656533161371 -5.112929739292667 -4.145982423438909 -4.826748495149332 -6.134316138111899 -6.395703042162495 -4.789791112843773 -4.017957106005838 -3.928776745588678 -5.515449304863068 -5.422076403661777 -7.720683238992933 -5.122071638266789 -7.054826356004924 -6.133505995894666 -2.913365201877696 -2.025349824963996 -3.524866247000318 -3.684686969354516 -4.44608655187767 -1.282166936332942 -2.479704802004562 -5.893461711890268 -2.634528545174362 -5.169113803429809 -4.897488415530461 -5.527066206207564 -3.867420790237247 -5.352805118661536 -4.363147422553993 -2.799169922114743 -1.629006804421351 -3.799965471020641 -3.753212230947611 -2.473254676624038 -2.050920779496209 -3.381613787316383 -2.708773269285302 -2.965719787920534 -3.831350645661587 -6.041022279703611 -5.124078740431287 -5.437625128353829 -3.087160053684784 -5.345417424798143 -4.292062657574206 -2.405383941500077 -0.8570925787440196 + -5.894159084511557 -8.376273529691389 -8.700412537771626 -11.07524796436337 -9.634381150368426 -9.393919619025837 -13.38427421786037 -13.46649056227761 -14.12341031062897 -12.02071931917999 -7.911447304904868 -6.569393051497173 -5.45568994189307 -6.294056277949949 -3.979893300221192 -2.022349374589339 -3.942909681842139 -3.824156494407816 -2.983220834796157 -2.199534247509291 -2.647474192268419 -2.173317396918719 -2.129643958323868 -3.237538932382108 -5.933985184761696 -3.76264887987054 -5.016533824913495 -3.712644952236587 -2.907757229813797 -5.471871489089608 -4.222859570828405 -5.127632269241985 -6.728844316505274 -5.863907064969681 -7.10184126934746 -5.719002464265031 -5.645603983713841 -4.278445063093159 -5.941065550353869 -2.863821669678146 -1.389116240557996 -3.356675289266605 -3.861319584293597 -2.942741395003168 -2.067971472334222 -2.769054931469327 -4.976113146743636 -4.952185524730794 -3.130268692886602 -2.558692873351902 -4.03716102509452 -5.141654718550058 -4.690131051404023 -3.785068350896836 -2.825531188963396 -3.046132448109347 -4.563783453257201 -4.966066045304615 -3.824564045908801 -3.589161142328066 -3.118997458585056 -5.213559366097343 -4.872377385430809 -7.053995839083655 -3.395577230512572 -4.936835902415623 -4.83080463497754 -1.389169393460634 -0.6555025030556862 -1.753705512623128 -2.67316754264175 -2.796890067926142 -0.4048525892139878 -1.750148887866089 -5.079316500850837 -1.241981873244185 -3.255686105899258 -2.798543077784416 -3.186267201230294 -2.797422683904642 -4.136652239982823 -3.527772829645528 -1.492168091163876 -1.315089924306903 -3.535471901971277 -3.653361300604956 -2.356378195244815 -2.016074152046713 -2.699406870093298 -2.382278464954652 -2.473698243566105 -3.010937390383333 -5.44839445312391 -3.957348243879096 -4.409988545521628 -3.201727241648769 -5.482390460720126 -4.523518245880041 -2.885878606848564 -1.339918173886007 + -5.522652243951597 -8.13246204340976 -8.364992353395792 -10.31736280267796 -8.999095185263286 -9.101340657703986 -12.39150466278079 -12.81223428853991 -12.76248133399713 -11.28669670263662 -6.77150320268629 -6.217687673783075 -5.905387576714929 -5.859556401871487 -2.945809354375342 -2.570450265680847 -3.091020626326554 -3.451414100732109 -2.686318180087255 -2.171375576792343 -2.376520110556157 -1.935584193339309 -1.788146669256093 -2.984547564211312 -5.679498448909726 -3.03274293186405 -4.101022478120285 -2.35338139331725 -2.058671295750173 -4.213375842353344 -3.161498010250398 -4.346897746173454 -6.120136289269794 -4.223969402907642 -5.340009342919984 -4.281879975618722 -5.120189773895959 -2.595473692754695 -4.498570933020346 -1.794929151858923 -1.321931521380066 -3.271655855533027 -3.327709599199807 -2.235025598153243 -0.8844938105436313 -1.908062149566831 -4.055826216521027 -4.009254173637146 -3.088736290694214 -2.675906920643683 -4.053383940451113 -4.338471738238809 -3.932598360412157 -2.480569783974715 -1.937124939323439 -1.654710544793488 -3.352875796861554 -3.960310184378613 -3.082282046746855 -3.427672436584203 -2.581908552839252 -4.919894934241256 -4.28093974200965 -6.120402403721528 -2.209381289882003 -3.237576703359082 -3.907893336214329 -0.4835884053745758 -0.2391063621180365 -0.9567585271652206 -2.274343510565814 -1.890664084203308 0.01214194695057813 -1.442494533610443 -4.544825694523752 -0.5442829742587492 -1.849156164174474 -1.276611437824613 -1.420185411808234 -1.896541602200159 -3.186207800731381 -2.834210088002237 -0.4322821939117603 -1.142910431163273 -3.429477405143416 -3.517659076338077 -2.515176800814515 -2.206892768440184 -2.212903468142031 -2.210702554324598 -2.134371160998853 -2.451115656302136 -5.023949372047355 -3.038132659865369 -3.347708213994338 -3.188373991157277 -5.357058536452314 -4.615545060112709 -2.998744872518728 -1.98496271085234 + -5.093014936526743 -7.653813784861995 -7.744477834043209 -9.241735463263467 -8.325901452317339 -8.652155808253156 -11.20391218367877 -11.96046444228705 -11.42743695062745 -10.37411699249787 -5.805047714322427 -5.861286018651299 -6.343709915050567 -5.550510212056906 -2.376195768607431 -3.351814106476922 -2.762569301099575 -3.208452547446541 -2.586327098777474 -2.270275299008063 -2.230394149799395 -1.830283525210689 -1.602809839539987 -2.636371739512583 -5.548191007896094 -2.570508187185624 -3.440411470583058 -1.576742223762267 -1.596047214539794 -3.406971751997844 -2.291968558726694 -3.434140230418961 -5.381268676674154 -2.772223365755053 -3.923120961348104 -3.499867828361857 -4.640853095685998 -1.248913138028911 -3.391023988685674 -1.079505434292514 -1.51249752147578 -3.26342982527467 -2.540783681574794 -1.339543758600939 -0.3109732899658013 -1.407285102726291 -3.274463225723537 -3.006545428293521 -3.139561122447049 -2.839183609518841 -4.313792292542075 -3.709266944219848 -3.48364309005683 -1.603561855641601 -1.770124576758462 -0.9960324419789686 -2.647143120550027 -3.416513370702887 -2.609805313372249 -3.495993149209767 -2.341030079765915 -4.695267425734528 -3.77938790744156 -5.11464409466862 -1.664802382700145 -2.155464035029581 -3.518291213847988 -0.2444432005700037 -0.6716656647895434 -1.055718713723763 -2.530734773717995 -1.804635910666548 -0.03726854520209599 -1.531495817151153 -4.309587798939901 -0.5995208810973054 -1.257481503224426 -0.513069963628368 -0.4642060229925846 -1.333778433836414 -2.644620080424374 -2.447818929729692 0.1840711893869411 -1.110627359525097 -3.457063075611359 -3.40200502074822 -2.846934335879723 -2.67075426962424 -2.011967135578743 -2.192859567468986 -1.98351900241687 -2.24573836948548 -4.790865804065106 -2.517134515044745 -2.550653766520554 -3.205961470383045 -4.949026594782481 -4.442788674732583 -2.65328835431319 -2.603987527934025 + -4.721242314490155 -7.085181392627419 -6.98793182776717 -7.993180125871731 -7.672207863553922 -8.093602556349651 -9.964426741236821 -10.99674019523809 -10.26388162757212 -9.391095345654321 -5.232333031050075 -5.564952400305629 -6.708878305043982 -5.449868360829896 -2.385404677214865 -4.202673407370639 -2.944864680548562 -3.131226113430785 -2.673427016532514 -2.388284991196997 -2.141249963089649 -1.847562501658103 -1.606863526249072 -2.295057976037128 -5.560210514406208 -2.479197391905473 -3.139066492862185 -1.629932928277412 -1.785145521285813 -3.210767361442777 -1.749649338678864 -2.561778349570886 -4.697791218277416 -1.951533746252608 -3.371422201448695 -3.382000378543125 -4.423525972473385 -0.7192506852040879 -2.699956292051411 -0.8730267162327436 -1.926424061928628 -3.442608146678594 -1.873341988039101 -0.7625088569477612 -0.3583805799034963 -0.6897197032712938 -2.81858158983977 -2.469596927483508 -3.333216546348922 -3.103732308137296 -4.793138271323642 -3.346767047127969 -3.381927336308763 -1.547578759615135 -2.374901181308815 -1.153659453808359 -2.441008981508276 -3.28673018074187 -2.410260221159319 -3.728241082031786 -2.360457619095058 -4.561047390712247 -3.428523668305388 -4.209238304509199 -1.650560818743543 -1.724136618548073 -3.642410915024811 -0.5152397699166613 -1.531905482144793 -1.657830252646818 -3.258473427122226 -2.341378428594908 -0.4352986152953235 -1.875097387892311 -4.29842574223585 -1.325339083482504 -1.518931764246645 -0.4720150923858455 -0.3140976389131538 -1.15593792518257 -2.526407509732053 -2.419338441646687 0.2827202442808812 -1.318331226879764 -3.569852053140266 -3.3484574449717 -3.225533493162402 -3.358400484997674 -2.0867488032236 -2.261747102078516 -1.986483109300025 -2.378835799096123 -4.713019910352159 -2.425538891078759 -2.279608679171361 -3.45996895062126 -4.443453307907475 -4.198867011584298 -2.195634712059473 -3.167188446133755 + -4.453161955649193 -6.539706396943075 -6.229614097719605 -6.728492128917424 -7.066729248719639 -7.461602280614898 -8.783845995647425 -9.982444065779418 -9.261831883271952 -8.377541138623201 -5.005521302904526 -5.265238954190863 -6.792937962683936 -5.452264991013635 -2.799511506115323 -4.965861561804331 -3.284260468079538 -3.214034368294961 -2.917477183309529 -2.551382420664595 -2.074261520425353 -2.009652905962866 -1.805140159049188 -2.14145262943623 -5.688987299392466 -2.751411087039742 -3.182374080453883 -2.32860964556312 -2.540898370265495 -3.467756191559602 -1.553682732311245 -1.957552071352438 -4.180915923920111 -1.789822954000556 -3.544032213208993 -3.613832195088435 -4.506583314178101 -1.18304341564874 -2.325368624289808 -1.202985513121348 -2.470976032220278 -3.795676207944325 -1.617040874335089 -0.829065344002629 -0.8702140440359756 -0.1399884915167604 -2.756492040415218 -2.64536273981912 -3.620340180857966 -3.461313192956368 -5.373888636497213 -3.244137241157375 -3.563295052370449 -2.337561173337235 -3.49655914779305 -1.925503962192124 -2.624009124137956 -3.462460189468402 -2.451095419375292 -4.046745065910955 -2.571096106982651 -4.512256728896773 -3.227442359789165 -3.5274613825095 -1.980984154139151 -1.866638789222634 -4.11391852306042 -1.046009062918984 -2.320299852801327 -2.262489594450017 -4.130017116352974 -3.122745282191318 -0.9884393519168952 -2.259621003147913 -4.36852453994652 -2.41561889923014 -2.378907008267561 -0.9134854644580628 -0.7366459472414135 -1.260755338199488 -2.716987632977407 -2.659449177968327 -0.06745165266556796 -1.796693408388364 -3.680938723445252 -3.353163811576906 -3.5307944246033 -4.104252120856927 -2.335877178129522 -2.309160520384467 -2.051165339169529 -2.728047383650846 -4.71029216513125 -2.665252373219118 -2.573203257808927 -4.020350166974822 -4.07491999292688 -4.178632247130736 -2.146169917041334 -3.722762761182656 + -4.267262153884076 -6.019901854633645 -5.554287320992444 -5.589171587271267 -6.511303867853712 -6.781194507864711 -7.729759103567631 -8.955275059342966 -8.322971533376403 -7.335274056678827 -4.899036510600126 -4.84793396052919 -6.383099967557428 -5.35254420308388 -3.290817982514454 -5.523585708431028 -3.459044473529275 -3.405918052369088 -3.273880241631559 -2.808585133447195 -2.035433379392998 -2.323053296637227 -2.154959832409077 -2.28386862941818 -5.861962251670775 -3.26202932898741 -3.446959067012358 -3.195991288783262 -3.455100000568564 -3.820908141553446 -1.640396819318994 -1.777540871047222 -3.834181629682462 -2.017922717233887 -3.894455908397504 -3.871925605570596 -4.798997867655771 -2.309931848223073 -2.119483345761296 -1.958419017480992 -3.031401605045176 -4.212702165536029 -1.852880464456121 -1.501986458899864 -1.689265405487433 -0.7397385392222304 -3.044389741527603 -3.309060156685064 -3.874208533355159 -3.809778179434034 -5.876377792531002 -3.303420062354292 -3.879158594682394 -3.507290865452887 -4.672461138995459 -2.923800871460116 -3.052204683699529 -3.804724352761696 -2.672701408278499 -4.377693531851719 -2.897195885296426 -4.537846461003937 -3.142380470657827 -3.128459045135969 -2.514907456079527 -2.466306125345 -4.699194081196765 -1.622477192426231 -2.735810945132471 -2.553463458865735 -4.807652324132505 -3.754042448941618 -1.507743023626972 -2.503208654547052 -4.364336581307725 -3.381286245854881 -3.390786132380526 -1.487020513623065 -1.369364269830839 -1.446981241573667 -3.018710581300184 -2.982297428141464 -0.6829495368829157 -2.406564344606977 -3.677574054313709 -3.354734245483996 -3.645527767160274 -4.660239490684603 -2.604792702928535 -2.228268661863694 -2.061885459284895 -3.105081276320561 -4.685221513833312 -3.053643577070034 -3.181942305294797 -4.712105191360024 -3.923495682023713 -4.460290623207584 -2.688732487486959 -4.243663415386463 + -4.106226952319048 -5.414726695446006 -4.976705929853779 -4.665902796470618 -5.976060509896342 -6.062418096669717 -6.821059335830796 -7.933594047961378 -7.342509028650966 -6.265667243020289 -4.67984638758935 -4.243162924296485 -5.430772971989427 -4.981664334875177 -3.585844501978954 -5.801046710460923 -3.437075227307446 -3.621160750819854 -3.689163344090957 -3.149287033258588 -2.059570257946689 -2.739866120646184 -2.563652466607891 -2.655490516566601 -5.977052800612 -3.80469372823427 -3.749885158053075 -3.757833047951863 -4.029089077372191 -3.941756955210622 -1.918501472546723 -2.032259176713978 -3.692055430320579 -2.378855812378333 -4.041254351695443 -4.074233994488168 -5.153507675217554 -3.431467353629785 -2.019200520696018 -2.919031980628461 -3.507796325719028 -4.55006921622703 -2.420996486509466 -2.484242139352887 -2.523734239323659 -2.021812658926137 -3.554997984727109 -3.975103517729849 -3.960350947509141 -3.990262293526939 -6.116881295604117 -3.379224293011362 -4.143981883069955 -4.357263449644051 -5.44522404215104 -3.745615865481341 -3.59807876364539 -4.16866490350003 -2.993121159933025 -4.661983383626648 -3.267035879522425 -4.627897488900999 -3.12486817890067 -2.989988101289782 -3.156684350447904 -3.383265862797998 -5.187997690562042 -2.137702816168257 -2.809990355350237 -2.572939041136124 -5.06934234770597 -3.97808462602552 -1.881742974495864 -2.556956448657729 -4.177074469778745 -3.780119693440156 -4.098232242461563 -1.867921477836717 -1.863832363290385 -1.51378547323111 -3.222710305040437 -3.198001763403909 -1.334519517297394 -2.902529798245723 -3.467650062674011 -3.260202733136339 -3.476314146230834 -4.791815224863512 -2.745525810983963 -1.962406829956308 -1.924569972374229 -3.324498863619738 -4.552749727577975 -3.407246319995465 -3.710426694709895 -5.209434881297057 -3.877478408466231 -4.810634032372946 -3.50604162205309 -4.638662643756639 + -3.926561974565629 -4.612920021045284 -4.449438680225285 -3.973864141709782 -5.401116379445739 -5.297250707033527 -6.032862209434825 -6.92422526764858 -6.2754148665299 -5.201870331562532 -4.250752752523113 -3.484378443656169 -4.127891488316891 -4.297836211925983 -3.590352163216721 -5.75519697511902 -3.39811484581827 -3.777330640200034 -4.106732167704649 -3.522407897351513 -2.191576301689565 -3.157963837013085 -2.908615741122048 -3.051984900186199 -5.930608108159504 -4.160725255809666 -3.918299154509441 -3.801318070749403 -3.966606195330314 -3.737985532497987 -2.314174676020684 -2.603417088231481 -3.912219355383058 -2.807364957014897 -4.072477872736044 -4.330863823536447 -5.387107781211114 -3.97860407885571 -2.021639318923462 -3.820152457174117 -3.839319577370588 -4.69062011732376 -3.019980994878551 -3.441269690387003 -3.063800359469631 -2.648448689166685 -4.117057472330949 -4.270043654793653 -3.807650481578094 -3.880183365974517 -5.977855470851864 -3.341250479755274 -4.197320584889439 -4.41949907604976 -5.567460087285326 -4.124377621227268 -4.157977962499899 -4.419722836868459 -3.309356132209132 -4.859506858095131 -3.607723010586241 -4.763248808019398 -3.110783899180205 -3.000213825000174 -3.767744023250998 -4.402434335901489 -5.446401156495995 -2.569629420438787 -2.801393727319919 -2.623121701735727 -4.87509582214625 -3.748948889566236 -2.106457349094853 -2.526254470860295 -3.783078519743867 -3.470691457505382 -4.211889350779757 -1.87611581962301 -2.00559015141198 -1.350978028487589 -3.176249490227065 -3.204351711405934 -1.830327110704047 -3.099194669908684 -3.03689805214708 -2.999745417166196 -3.023883378013579 -4.39913970198063 -2.678636882038518 -1.542428247790667 -1.607725294281408 -3.275970803342716 -4.264025463646249 -3.624557229795755 -3.881264099705731 -5.279689612016227 -3.782824000923029 -4.894278656697679 -4.118805940790935 -4.863882321880513 + -3.745920901867976 -3.6700174122725 -3.902562687151658 -3.456564865806286 -4.716532215950792 -4.463748132580804 -5.313879440698656 -5.932221029739594 -5.169862757651572 -4.223999798920886 -3.685327878642056 -2.703002730970184 -2.830346061317869 -3.383532387787 -3.361673450420085 -5.372669901249765 -3.463015250975445 -3.839125871156511 -4.473553843644368 -3.87621032811694 -2.462217506645175 -3.457164244897285 -3.074131727960776 -3.273968807746655 -5.64803248494718 -4.174853206426633 -3.852618097786035 -3.426445812669044 -3.332480561653028 -3.398992563646516 -2.785044330332767 -3.276221486207305 -4.543632224692374 -3.304011723149642 -4.251803653221941 -4.668114145869595 -5.289171445817175 -3.875232848518067 -2.059652863309196 -4.439448004117594 -4.013011447831559 -4.587834783269045 -3.384296597274556 -4.124979937725811 -3.353087618515394 -2.64758781054751 -4.561442695799286 -4.113232350055512 -3.438469646342128 -3.473596225870324 -5.460239280801716 -3.125886194775148 -3.957405101349877 -3.774742831716594 -5.084431129939503 -3.994215266231549 -4.632515359235185 -4.445343884059184 -3.500463320388633 -4.94757335946889 -3.839480203066067 -4.90282757309933 -3.019102686004771 -2.986757709601079 -4.115290857773289 -5.185579544162465 -5.41262781900241 -2.893656953813661 -2.925025129084133 -2.945135449497684 -4.352197357638943 -3.201802420589956 -2.260886940966884 -2.583797516950654 -3.245907507243828 -2.657212073092069 -3.697800291897011 -1.526199529274891 -1.758536158984953 -0.9690758780275246 -2.820998480019966 -3.029011306124744 -2.081493364991957 -2.99061192427996 -2.478264030344008 -2.577680772280019 -2.443560096871352 -3.595128438112965 -2.432781769151916 -1.09509413102478 -1.163161427615705 -2.96895101769951 -3.817245072837977 -3.724311928404859 -3.725086404432659 -4.984961884547374 -3.612290312372352 -4.580651569860947 -4.264043431487949 -4.93348498550476 + -3.662315539674637 -2.888052444772256 -3.301088006744976 -3.021656579727278 -3.879071907242178 -3.539485158133175 -4.612847198935924 -4.969790588449541 -4.163251672633123 -3.449830829452367 -3.145892128705782 -2.067361331417487 -1.877743370593635 -2.373166342533182 -2.996870241164402 -4.687694043582894 -3.515338550940939 -3.829929088318067 -4.747689406161953 -4.145342273248389 -2.858277789172462 -3.543693843502297 -2.989877587160663 -3.251819790608238 -5.106960085198807 -3.808418643780897 -3.559317798288248 -2.88517084850173 -2.482513947245025 -3.237496273359739 -3.30261933870861 -3.751806757552117 -5.184054038506474 -3.709345991443229 -4.503848131345308 -4.857861342364572 -4.683750950371675 -3.481384094160362 -1.946819511249245 -4.672767511504389 -4.061432457358706 -4.292668947630659 -3.409050891033246 -4.36180478687001 -3.557266726769537 -3.132379293723405 -4.764471453240873 -3.627574959696602 -2.943862889236243 -2.874882616165792 -4.68598485147902 -2.748637793170531 -3.444725708627857 -2.971681178230256 -4.262457163904628 -3.457861735331107 -4.914044031391313 -4.168402740968304 -3.439011522229748 -4.916068577015437 -3.886515713330574 -4.989262430678764 -2.7742754560702 -2.792605473679941 -3.954198027080565 -5.328840668752491 -5.060645996944913 -3.006682626201041 -3.125075412971 -3.42476668895597 -3.715499086512864 -2.549995772715192 -2.445856649155758 -2.828465117884662 -2.684861487798116 -1.682157834109717 -2.747245582186565 -0.9933956443674106 -1.225794138564197 -0.4598343732841386 -2.194239009468902 -2.803871952013765 -2.125885057360392 -2.719116467552169 -1.966425052508157 -2.084950236558825 -2.003764928271551 -2.683713393626022 -2.142409103073987 -0.8133862837385095 -0.7168075134923129 -2.527878477105332 -3.252719572665228 -3.817135290380975 -3.554633691903291 -4.678058830455484 -3.490906170323342 -4.0741222016552 -3.946810776047641 -4.826839014235905 + -3.826116301525872 -2.702636129599341 -2.691682569511613 -2.593195457475304 -2.908714461404088 -2.520200233841024 -3.905307154298498 -4.061048522626152 -3.443871903346007 -3.00107083310013 -2.740735201707594 -1.698972910449356 -1.425196902274365 -1.378217440687649 -2.550880589472683 -3.803298936738486 -3.229658839794489 -3.79850318864635 -4.905170927073868 -4.231328409111939 -3.30186589440973 -3.376574254812112 -2.654449115769239 -3.057622609987732 -4.345433571703325 -3.149911537573644 -3.142409651514754 -2.377670101143394 -1.839081676472915 -3.44120180898517 -3.821283411461309 -3.702705720782831 -5.086124181177297 -3.724527183673899 -4.363646640912634 -4.574193709980307 -3.523656948792123 -3.094204472078594 -1.455657060639936 -4.557863179918286 -4.051681102846487 -3.94969350936168 -3.128262698040004 -4.030951851314036 -3.377695330139536 -3.508029845963854 -4.671484641010721 -2.951977665559269 -2.424813667974149 -2.206030447721787 -3.840810851512174 -2.270507840669254 -2.766548068457951 -2.591842304241482 -3.4211679565434 -2.699985348712289 -4.90416245543247 -3.564837684249142 -3.014229447090202 -4.762634169768432 -3.707457544454329 -4.978380428373157 -2.353234303945328 -2.366183811065639 -3.199744826916231 -4.547749805494277 -4.376416988747224 -2.730858861197362 -3.07295616207125 -3.57698470266314 -3.165639960163389 -1.972083012420626 -2.721522138530418 -3.190465651303384 -2.22777800356198 -0.7653269169955479 -1.663949223180907 -0.5226733007630173 -0.5649068602597254 0.07614981973654267 -1.40199446454119 -2.691899764557832 -2.10352577398055 -2.428259858432682 -1.682783204511736 -1.660940321011481 -1.932878675580582 -2.035440808172268 -1.999755503194137 -0.8943823990257442 -0.4312401290299022 -2.137564288784233 -2.634483673943578 -4.024137275158864 -3.74383897556072 -4.787121078150449 -3.569132783607074 -3.758781080869767 -3.317071926874831 -4.458478089768006 + -4.367395468041877 -3.415438352082219 -2.210134916171228 -2.153285124470131 -1.901658903654607 -1.434972250392093 -3.210044942554305 -3.240163472397398 -3.186734921158859 -2.954999139941265 -2.40200275285406 -1.603521757915132 -1.380348486676439 -0.4587349276040413 -2.030437747598427 -2.884046505030597 -2.294281232418824 -3.770148858787195 -4.943736606585389 -4.049499208576663 -3.662957693710496 -2.970185959064565 -2.134075725618459 -2.812542876703844 -3.452885406175483 -2.380565969986492 -2.759789607225684 -1.984718532581383 -1.682854305070123 -3.928480242791011 -4.258822045060242 -2.916148927069457 -3.773959666989356 -3.189912078015894 -3.496611954826889 -3.727392494952511 -1.932303911321299 -2.598252650200063 -0.4494034819132349 -4.229298561033602 -4.064012074189804 -3.743060979535755 -2.602496089595789 -3.129274903046298 -2.331145868629808 -1.960213802349217 -4.292026422520387 -2.119309129307759 -1.940550455662787 -1.515628114017204 -3.083994200270922 -1.741551100374679 -2.0709118237653 -2.768494488776412 -2.769314406979674 -1.898707553657005 -4.554937804542305 -2.680980546255341 -2.163627890074451 -4.490444510137763 -3.32912530157364 -4.875210006935845 -1.82770948418522 -1.807009969215869 -2.037221990335638 -2.881623257108913 -3.370828406866167 -1.90482840917997 -2.395311154420369 -2.841439500721663 -2.811803945789507 -1.544740928526153 -3.075312795377613 -3.450473785418126 -1.970312222394568 0.078098204239609 -0.7411509343706939 -0.331893265331928 0.08605613626718878 0.5809824791631968 -0.5814671135813114 -2.80943598114419 -2.195970655894143 -2.142033111562426 -1.72807845971559 -1.424864971398165 -2.264282791041296 -1.920182255761716 -2.177543606232575 -1.465350560630213 -0.4529962039277962 -1.9619197989241 -2.025150344839858 -4.385512926615775 -4.468572458199105 -5.532798030743834 -3.87087864553348 -3.883229515913911 -2.593696675091721 -3.757022664858214 + -5.308865648278015 -4.947106783733034 -2.03813550167979 -1.750034530128687 -1.005725480124056 -0.3492477966738079 -2.587453472060588 -2.542827399081943 -3.479673133279903 -3.299470569792902 -1.85369834665471 -1.645635242407707 -1.463164455354104 0.3598357754816703 -1.42633500392111 -2.104969024827497 -0.7137357742542561 -3.725494106659937 -4.881269083843563 -3.610530403310804 -3.812485888425726 -2.384682294710728 -1.538077717085798 -2.578545562826111 -2.547601370239136 -1.710808164560149 -2.564027846259705 -1.753512347820447 -2.082188240302116 -4.418802009170577 -4.505387282070501 -1.451732800746797 -1.517604841287479 -2.272107193941729 -2.156404553664132 -2.62248425523606 -0.1617219229772893 -1.706270552117529 1.025665457390549 -3.835043352118134 -4.160670870952686 -3.800464938443724 -1.863374146933602 -1.864182980136851 -0.6517198540510729 1.073088589887481 -3.678562251732493 -1.069415933089397 -1.497105490426179 -0.7784152348864097 -2.477197251548944 -1.161856536145727 -1.491845374625314 -3.028294253655247 -2.32498644022732 -1.167012557893315 -3.904471167797965 -1.640627532350663 -0.903322090621316 -4.109448968981326 -2.858418194133915 -4.748054335060999 -1.363540305348977 -1.327944613129603 -0.8489639268805149 -0.7536417372291453 -2.113397615790063 -0.5027074243842549 -0.9567270108041726 -0.9685944305322209 -2.647455159079982 -1.242447876382357 -3.431867552651966 -3.356917300218583 -1.95634960177722 0.9026444566063958 -0.1873663839263031 -0.5522597424901505 0.6337716450149173 1.039081577406336 0.132418975237556 -3.182025702069438 -2.55451010720185 -1.784448743689467 -2.069537519123116 -1.416289616126619 -2.810375926483445 -2.385621741719717 -2.753617754332026 -2.526451096117853 -0.8640802617555892 -2.07229763193709 -1.462869338683959 -4.808517359354937 -5.577874950585283 -6.759180550596511 -4.247985576320218 -4.335434471085421 -1.979809808045303 -2.729898872824166 + -6.510832679726946 -6.794219661182296 -2.32442147461461 -1.46678747864371 -0.3642426831106604 0.6480381190813205 -2.119108652195791 -1.993817968927033 -4.264683062910763 -3.911422716848392 -0.7019183623123126 -1.583259997617574 -1.34294005649167 1.058843715166695 -0.7349344725376739 -1.578515305985455 1.086556916002627 -3.622275761722321 -4.748544333870768 -3.03393482255791 -3.689372430430808 -1.715619790032406 -0.9823814872506773 -2.319665447853815 -1.748427475364224 -1.313377487367688 -2.651182411207628 -1.795946371493869 -2.950736370252002 -4.648272523784641 -4.459738750320923 0.320730522808077 0.858018147671757 -1.330271487407757 -1.028771288285974 -1.773820544004192 1.485066963594525 -0.4453129394691533 2.713018907663792 -3.471543084791293 -4.355200958723572 -4.107080222604409 -0.9740578505558197 -0.6336173813033157 0.6681106333418949 2.976775647732849 -2.910066108113508 0.2035394107294435 -1.077910708211959 0.02076908118668541 -1.975007103079662 -0.4888357513851886 -1.109102860350561 -2.617658957291752 -1.947308111456678 -0.5333951493747975 -3.07786395771484 -0.6321201564114745 0.6556555329489129 -3.639998894323583 -2.456304922354752 -4.703547204872791 -1.161944785585206 -1.149013966645271 0.004204580367968447 1.190370318596592 -0.7491170580350399 1.302045710427706 1.010068875643668 1.786967692674466 -2.579239019491979 -0.9862049604798813 -3.693231085031584 -2.761303100678788 -2.180642616541263 1.651407605589498 -0.1127643661276636 -1.21906944873399 1.009290228018415 1.436856091680369 0.6303093255791055 -3.746921947402171 -3.243779282223386 -1.311813734623712 -2.550831065644573 -1.577874177265613 -3.287697427542902 -3.24478516458116 -3.669802557013099 -3.934077245568687 -1.655238551992625 -2.417245986890066 -0.948377318319217 -5.083936396109493 -6.663591849642444 -7.979174606941683 -4.469635029264595 -4.6889657476369 -1.523777155882962 -1.447424661476374 + -1.732137650836194 -3.783804857868745 -1.844866909534176 -4.081292699014739 -5.064403054722789 -3.214522120812035 -6.412771297302243 -6.502441645210638 -3.140519767233855 -1.273887222004305 2.71880406942546 1.957052138489416 3.501502217202869 -0.7241298465267505 -0.6109974220338472 -3.291779175810348 2.261593564004215 -2.3395050632721 -6.726852323583444 -6.080610983463885 -5.23310818903883 -7.978854368670909 -5.64786410267152 -4.661151956485497 -6.994414441098343 -5.821685185997922 -6.136740883870516 -1.567477707767466 -2.334513915670868 -5.81072113319442 -2.70254798942824 -2.900730973926102 -5.210514048445134 -2.608466197079565 -0.4421499474216262 -4.282494265944706 -2.800256633146205 -8.221683808325267 -6.589087787956544 -5.083040552367038 -2.016191609985754 0.1123308990698888 0.3164914106862966 0.787267947217174 1.313329311681909 -2.17978957446675 -2.505679894076786 -2.769184766592815 -2.586814930657511 -3.044000357291679 -3.90288934166324 -5.978484747448789 -7.153155577302414 -11.342921514007 -8.195689105133624 -7.274034146890472 -10.03937688391989 -13.51140584275345 -9.191257348347108 -8.822105010306245 -8.443996285219463 -5.253748882928676 -4.577498191670884 -5.852590610037623 -10.44163519621998 -12.69399831351529 -8.891158232879206 -8.942410881367323 -10.83724277539068 -15.40865427722201 -7.602582628325763 -12.41792418617115 -8.094231433631649 -9.886118132824777 -10.44469712012506 -10.51054102241653 -9.698901049983647 -13.11766401946443 -13.78294204374879 -7.754819601926556 -8.952197451623192 -5.551655861107633 -5.948078493329831 -7.70004835615191 -7.806613936348526 -3.040691402556035 -3.407481589100371 -2.414449298563397 -4.479643727780513 -4.167538713782051 -5.003940887934732 -6.051455001728755 -8.075710502638685 -8.304205434447795 -4.472150296489417 0.8333316821754124 -1.57348628818977 -4.412419723898893 1.259173468436927 1.599064529124725 + -3.196207339846296 -4.98615108683407 -3.724681094849075 -6.542201905213005 -7.252251522450024 -5.518547891908383 -9.401497994087549 -9.047763519192813 -8.076272315616734 -5.457936955579498 -1.674756028779484 -0.9170625536698935 1.216399064571306 -2.813056804644248 -3.128323312399289 -3.592451316937854 1.072666981112093 -3.524919795414462 -6.382999902857591 -6.270987176127164 -5.462573715728468 -7.030471340631266 -5.210904441624734 -4.767741427597144 -6.92867997304711 -6.022283789789071 -6.774331462358532 -2.9246289556595 -2.858623401373734 -6.598654113994598 -4.269111663203148 -4.418715657163148 -6.41342130999351 -4.058362029872455 -2.552270117798116 -6.4581797624503 -3.669692103989291 -10.39790275936221 -8.716024479096404 -6.060590860724915 -2.558455324819079 -0.7158662010861008 -0.3228341462569233 -0.5513899511277032 -0.4050317363360305 -1.643663050350993 -4.005320132698079 -3.708967336031947 -2.762507961042957 -2.757460820407687 -4.288225229826821 -6.488298339330981 -7.53421095832141 -10.17770669482479 -8.096216299166599 -8.008726653640224 -10.3705478407519 -12.76125159739422 -8.735227230851365 -7.859058653871784 -7.883422374646536 -5.649550143980832 -5.322728536819341 -6.654307080478247 -10.46045120681083 -12.86890814375329 -9.532751270684457 -8.997962641545428 -10.04876367233237 -13.90895531970455 -7.996501542911574 -11.91179116537387 -7.160705582486116 -8.841528707580437 -9.95354793230581 -10.42568683020295 -10.11817682797505 -12.57422165994831 -13.46773488718463 -7.430144968635091 -9.038344147617408 -6.044864982574609 -6.43695401619857 -6.841178491054393 -7.12184491579103 -3.568178992316007 -4.117516037824885 -3.211414884839769 -5.340343048469549 -4.639828097169811 -5.342050175809163 -6.821332823683406 -8.153712067394736 -8.548545966699749 -6.060047105245758 -0.9073412308116531 -3.436094547537778 -5.169242790606859 0.02270394156369093 0.165032624234517 + -4.49007085492849 -6.03943983307181 -5.414357033645501 -8.4577229211136 -8.699414326572878 -7.161315733210358 -11.53593947923946 -10.88571526488158 -11.72000306361224 -8.57832788678752 -5.183880062319076 -3.403632225772526 -0.9817188645665738 -4.60537092292634 -5.048278188525956 -3.406375719337348 -1.278467303396042 -4.35437902107401 -5.807191725056327 -5.78976252067514 -5.218650418095422 -5.84465464863024 -4.640844709665544 -4.529730221351883 -6.753516620032315 -5.978754806819779 -7.077982558614167 -4.379650124881664 -3.505117055047776 -7.307283744876258 -5.432242091395437 -5.503627730703101 -6.840124019917766 -5.387590293604035 -4.821128657521058 -8.208286568574977 -4.492049788007819 -10.64626094755567 -9.763820958050985 -6.478571472451222 -2.755616249618015 -1.673769692576116 -1.378834683510604 -1.758622652235033 -2.842487924692033 -2.514790379398043 -5.238369075292646 -4.544371904211403 -2.954003634042238 -2.577363340518787 -4.523094595370594 -6.821459325343881 -7.508451754209545 -8.802337167325277 -7.607999957652282 -8.221969507099857 -10.0893548963295 -11.45854403304475 -7.959753313621604 -6.7687168454828 -7.060927031526802 -5.867772187203627 -5.874533963677095 -7.401000415891758 -9.928015132298242 -12.32562522818262 -9.530108711176581 -8.386811641445547 -8.705795456128726 -11.8011050473051 -7.699964270221244 -10.85261541101499 -5.949065232824069 -7.466563547241094 -9.146118021119037 -9.237394091620217 -9.867171481090509 -11.36389927787604 -12.4389461924452 -6.934314647676956 -8.686789693163746 -6.142747846302882 -6.343801120026455 -5.263441935666833 -6.213083559135384 -3.859333290159157 -4.085095491954007 -3.468950139126491 -5.580763565711095 -4.665670647907973 -5.257223305483421 -6.857655046018408 -7.865865895417301 -8.254504479169555 -6.856948907952756 -2.073002156383154 -4.572752565864903 -5.173973187650063 -1.028904116853482 -0.8852241411459603 + -5.425260102250832 -6.859286880306172 -6.741737812139036 -9.730769029942167 -9.39974247666396 -8.179358623805456 -12.79401086465805 -12.01659906333953 -13.8090141521534 -10.52685920884505 -7.436405044203639 -5.177375670156835 -2.775813745129199 -5.854850687712315 -6.009428682467842 -2.916338913711343 -3.74588796753244 -4.701043430406116 -5.083926230920042 -4.785477402776451 -4.630463894633067 -4.651875492254476 -4.006645465789916 -4.091539173381364 -6.469770787887683 -5.65305499315582 -6.958828162438294 -5.43046800668526 -4.027413679586971 -7.668093624195535 -5.982017103245653 -6.049372861995835 -6.958041842506645 -6.515345469069871 -6.906678898556493 -9.067078603982281 -5.269091112152466 -9.47036371690541 -9.748451307150049 -6.295021370943232 -2.623688332856545 -2.543927904104066 -2.585334578862785 -2.660176052476118 -4.639734292455252 -3.949546121750188 -5.959512916056894 -5.139094063525476 -3.124831226930837 -2.519144909699207 -4.536189136508256 -6.822221410710597 -7.062623515312225 -7.473902092608114 -6.74118004841057 -7.725454987075864 -9.160954729723016 -9.761967555896263 -6.938097039202489 -5.677626347453781 -6.03195274556154 -5.867237447881053 -6.084094188800464 -7.884244567414498 -8.73179719566906 -11.03112203181809 -8.836506714933421 -7.051295126858804 -6.792001684661045 -9.210135927311057 -6.722736126415839 -9.145107726872084 -4.517820907261921 -5.926967352104839 -8.083707400743151 -7.227461690206837 -8.864113738252854 -9.530381562573893 -10.68008393878699 -6.207406339924773 -7.880942586001538 -5.850154942695781 -5.681904311680682 -3.639676280088224 -5.290177955238278 -3.957470182954921 -3.529034391747473 -3.309798849016943 -5.261330727426866 -4.337499850706081 -4.815642847284835 -6.291009398128153 -7.281598078832758 -7.459920323595725 -6.909190899466921 -2.724498440325988 -5.062716124132749 -4.756257215545702 -1.753862661318635 -1.270454814671741 + -5.90003383995645 -7.397406032228901 -7.602616247881087 -10.36032229154807 -9.481635554839158 -8.673667029244825 -13.24541033493733 -12.5088067728866 -14.41293178416163 -11.39487639446452 -8.342814867308334 -6.128015296359081 -4.020168645858575 -6.436654384120175 -5.94510275417133 -2.385537430404156 -5.167040831455324 -4.597625453980527 -4.311700741793175 -3.631511846564536 -3.904607391390527 -3.637058166525094 -3.364635189533146 -3.642375127269133 -6.099927591436426 -5.052353569837578 -6.415884628549975 -5.628444468125963 -4.13997482022387 -7.410082517848423 -5.848623447885075 -6.065017359625926 -6.972740235332822 -7.092173484795694 -8.185654454617179 -8.755876385328975 -5.818889002609126 -7.784216525866896 -8.933759012026485 -5.564721239053142 -2.265258526691468 -3.129388819010728 -3.594749466817575 -3.24478894716367 -4.96761333576643 -4.595262375167977 -6.051924808834766 -5.433057735258217 -3.200294993011994 -2.537960833918078 -4.341172711224772 -6.430228384452505 -6.27168209202955 -6.246082742378348 -5.519995952050976 -6.501717928303151 -7.710594245494576 -7.90008612012025 -5.788218554890932 -4.706457976367801 -4.905085817851003 -5.652948309337717 -5.891374914292101 -7.93638418991759 -6.964810736164509 -9.118578202909703 -7.591370976520921 -5.199816416252816 -4.539941666613231 -6.417964755419234 -5.29836129227624 -6.968890257558087 -3.009433985796932 -4.390764921423397 -6.891113085806865 -4.925668548557951 -7.202202134474646 -7.261319850791551 -8.350497607590114 -5.231447949071708 -6.707539356695179 -5.211777219160467 -4.559581598668501 -2.429097232933145 -4.49568257914143 -3.910486680162649 -2.821680808071051 -2.912805244677656 -4.54302535232182 -3.799884187439602 -4.142753452742909 -5.325798793110152 -6.521905927600528 -6.284573663135234 -6.377157689916203 -3.033178681860591 -5.217903241153181 -4.376339838142485 -2.28162028305178 -1.256625749795408 + -5.925421866402758 -7.632319883574382 -7.969593738787808 -10.4104936459189 -9.139857832080452 -8.769310944619065 -13.02244183373841 -12.4746679352902 -13.86838957792133 -11.41204351381748 -8.093788303038309 -6.361765844263573 -4.759899090207909 -6.398010182233747 -5.079450433401689 -2.056276513775629 -5.14072642401652 -4.194643021693537 -3.587458761410744 -2.724010474532406 -3.237674478819827 -2.887734172807541 -2.758821162882668 -3.295957088884734 -5.690698207356036 -4.249760676037113 -5.549668723819195 -4.876851639612141 -3.697768868491039 -6.484872733668453 -5.133840005003549 -5.662066748161124 -6.796294784755446 -6.747761918537435 -8.13194095417839 -7.403631817883252 -5.913952134642614 -6.082348724029998 -7.608677451335552 -4.436035994986923 -1.835567698220984 -3.347422582776289 -4.10806118547498 -3.451130530278306 -3.970801483258612 -4.049799408755234 -5.569359536741892 -5.334048121806518 -3.132730422974419 -2.56351106011607 -4.037187607961187 -5.70423311318541 -5.286937486796887 -4.99351957982617 -4.06960978949428 -4.768266564641635 -6.009358099290694 -6.121351584501099 -4.647202748251402 -3.949293038602718 -3.825291184654958 -5.288855111392877 -5.362684061361961 -7.513001461695239 -4.963464534841478 -6.890395181828353 -6.083192347989097 -3.232644702356083 -2.40979006143607 -3.848816612306109 -3.812484031746862 -4.725016254436923 -1.630927198712016 -3.03155975878326 -5.736874191825336 -2.846089684565413 -5.172808665570301 -4.874079334760609 -5.78193942530288 -4.082351597862271 -5.35350198236506 -4.340974595232638 -3.177305661584342 -1.712732545933704 -3.896778885834465 -3.761313827677895 -2.304835460805862 -2.471700761804868 -3.647864111804665 -3.214709000190851 -3.396626945183016 -4.207886380685522 -5.730781595704684 -4.925268263374164 -5.426681031814951 -3.118032679049065 -5.273087424322512 -4.272406199901525 -2.744748218548921 -1.289266287822823 + -5.611861869430868 -7.566001510182105 -7.886046218700358 -9.977979358300217 -8.566502584984846 -8.583122855612601 -12.29103695391677 -12.045640909746 -12.6460352616341 -10.86478942257418 -7.104359821092658 -6.129887848088401 -5.178527820935415 -5.954707344437793 -3.841035160826323 -2.069130633090026 -4.176721277023717 -3.678695353489275 -2.992766656545427 -2.239915570251469 -2.743943795710948 -2.393435758236592 -2.229512768128188 -3.03040185941029 -5.307151145141688 -3.384544262175041 -4.543750200042268 -3.522517184435856 -2.824502925221168 -5.154252309486765 -4.080090565224054 -4.971761493698978 -6.31515986161503 -5.481652408333503 -6.799306205755784 -5.557855969260345 -5.510595530763794 -4.343394909044036 -6.033650985861414 -3.139461752640273 -1.495789226086345 -3.27202392317713 -4.000204554730772 -3.148202768461488 -2.400941608803492 -2.9243227049692 -4.71585625084289 -4.73404115200583 -2.956326226787496 -2.554896422559978 -3.771172346282583 -4.800703073047885 -4.302316774432256 -3.615502806414952 -2.668321349558937 -2.941757004526153 -4.391122874527355 -4.6393023025812 -3.641990104934166 -3.458796785732147 -2.934886361508461 -4.87780140611676 -4.66285288967083 -6.708783291378495 -3.178165415847616 -4.738629630133801 -4.663152256638568 -1.583442167057001 -0.9050407673403242 -1.948393181133724 -2.669382317108102 -2.885140871017938 -0.5964188023790484 -2.01694039267386 -4.790307738163392 -1.320915655808676 -3.211771759623389 -2.747829292293318 -3.403280589011956 -2.935113413939689 -4.063087282704146 -3.423997188024714 -1.796090530973743 -1.322055195517805 -3.508584982290131 -3.554254421257156 -2.152861381001458 -2.166360553925415 -2.805528737701025 -2.722471559822225 -2.73170393543478 -3.183758418428624 -5.040561187768617 -3.626272325011087 -4.231773186642386 -3.026143659284571 -5.231211672286008 -4.325487088706723 -3.056233544080897 -1.568903189414931 + -5.124156518180826 -7.239098634017864 -7.450988742144546 -9.172960819945729 -7.907659964570485 -8.207208047955646 -11.22726427147427 -11.35127133173228 -11.20000350040937 -10.02025866786789 -5.891180598318897 -5.714142743003322 -5.489674352485963 -5.408785969607379 -2.71801150481042 -2.429992526797378 -3.136169005218562 -3.207102425500125 -2.583979868773895 -2.085432387750188 -2.43719421042988 -2.093268524906307 -1.821484739579319 -2.747584842514698 -5.017894384858664 -2.634681389863545 -3.616213427223556 -2.182746581253014 -1.896942763434708 -3.872642524052935 -2.986995018790367 -4.096058726381671 -5.58457061779518 -3.779972007713695 -4.917322999446696 -3.92810714479765 -4.832801377797182 -2.566334199603489 -4.505326932329126 -1.951698595475136 -1.366687004401683 -3.092234953379375 -3.383262969695352 -2.364480838261443 -1.048040232913564 -2.119750466804362 -3.770541766534286 -3.713318391209214 -2.784174255973994 -2.53623060001064 -3.68066070374698 -3.919509158716437 -3.506546245457685 -2.260550119066465 -1.689562434109575 -1.498406172955583 -3.13860763950106 -3.590193949497916 -2.865757505589386 -3.240687691514267 -2.330803638543088 -4.519460602804429 -3.979656889855505 -5.706623956226395 -1.958547409449238 -3.015627763234079 -3.637990667390113 -0.5542398825036798 -0.3266614371477772 -0.9979042685736204 -2.147740948414139 -1.805676476302324 -0.05207457514188718 -1.465983027137554 -4.168577510492469 -0.5129775043233167 -1.770303443204284 -1.216098377768503 -1.612411876732949 -2.007558182366211 -3.066259442514365 -2.677678129261039 -0.6783848171767204 -1.096492231981756 -3.320730310544604 -3.343710832568377 -2.347091376163917 -2.136340458617042 -2.198895963350878 -2.408745767128494 -2.261175254394402 -2.452454310317989 -4.54079416265995 -2.622520805314707 -3.040545916570409 -2.837351899856003 -4.981573108507291 -4.265084474158357 -2.992786473949309 -1.99765333087038 + -4.624281351139871 -6.748027990433911 -6.798214655471384 -8.115868134067568 -7.253549897955963 -7.707664484420093 -9.999738545411674 -10.50398427701293 -9.851613418260968 -9.074776321609534 -4.899850227862771 -5.316418211150449 -5.812018171705859 -5.011799434101249 -2.077359827409055 -3.030012611325219 -2.601927654411156 -2.884253497456484 -2.387376348571706 -2.073791121911199 -2.265938914439175 -1.936762016441207 -1.582385837413312 -2.403044507049799 -4.874548973704805 -2.1661839954686 -2.955160265621089 -1.424280440085568 -1.368131814604567 -3.050499784134445 -2.111279376917082 -3.152205294180021 -4.809599287060337 -2.326881138927092 -3.445648697928846 -3.010087157540511 -4.226615712220109 -1.119435590590228 -3.316330242321783 -1.130998407707011 -1.495907322270796 -3.0088300300622 -2.562501741217602 -1.442197081002178 -0.3564444047292454 -1.66882420861657 -2.993768102433876 -2.672610802555027 -2.743766241010235 -2.584820706939354 -3.84090994134931 -3.237798386686904 -3.033134188030999 -1.33718914709425 -1.437702881851692 -0.7888967817307275 -2.396928415122602 -3.014785354724154 -2.366103345433999 -3.258343942974875 -2.040437432420362 -4.272959153042393 -3.447887643807917 -4.702521920182335 -1.408184900363267 -1.924393421941204 -3.17632795069585 -0.2202673680803855 -0.6161017598624312 -0.9628771655916353 -2.304064416035544 -1.588322297262494 -0.01820547155512031 -1.390562348376989 -3.895079260109924 -0.4800499795092037 -1.152864573230545 -0.4571049764963391 -0.64355780158985 -1.465293318126896 -2.504712035917919 -2.270717583616715 -0.01769935805532441 -1.030233053247684 -3.304921787750345 -3.188288230674061 -2.7470573484743 -2.445405387098162 -1.921654719986691 -2.284822276205887 -2.028392745136443 -2.119404487821157 -4.259303268141593 -2.069838826428168 -2.173238850133203 -2.737294609294622 -4.523233501453433 -3.997314844125867 -2.522099025387433 -2.436975815039597 + -4.222999861472999 -6.226006704608153 -6.069743155807373 -6.939658022609365 -6.650622975554143 -7.131405285392248 -8.755339642419131 -9.589966259736684 -8.740225050452864 -8.134950844376363 -4.351729132769833 -4.999746318022517 -6.092068723013654 -4.848299484634936 -2.01630270449823 -3.703391970127541 -2.623412554839433 -2.762165538188128 -2.399044665489782 -2.123876064615615 -2.166764376892388 -1.915145462840883 -1.547894239411107 -2.083163271234753 -4.891999799525365 -2.075724355774582 -2.660480255050061 -1.481638970559288 -1.513610457863251 -2.848551369997949 -1.593556908295795 -2.322590656936882 -4.198790800755887 -1.570081068853142 -2.930543053054862 -2.846931617441442 -3.935227044478438 -0.5091481740071231 -2.591740913189824 -0.8436629373527467 -1.849848103935983 -3.134097764970193 -1.900507570693662 -0.8676837098760188 -0.343416517643476 -0.9577699482947537 -2.556618257099757 -2.133305737535466 -2.894714823612958 -2.774434712949187 -4.233965152759993 -2.85378006855376 -2.922220585573996 -1.24073235603646 -1.97218244827036 -0.8988398151868751 -2.155993082295026 -2.865891402874695 -2.145552592807462 -3.445578557256113 -2.027067885782699 -4.146738084514254 -3.115437908668355 -3.852133247604797 -1.404758494973066 -1.489846170887176 -3.263460613430652 -0.4430009589709698 -1.39101168113848 -1.488731194018328 -2.963435973673768 -2.049480027199024 -0.3795396509813145 -1.664336995305348 -3.889067429117858 -1.143376226047621 -1.392816351733018 -0.4291719700631802 -0.4878728731064257 -1.339112047958224 -2.386192291742645 -2.249477782430404 0.1170228818918986 -1.211930495971956 -3.403715637676214 -3.125650128862162 -3.183919103790231 -3.043375079462066 -1.959430836610409 -2.289551208361445 -1.997107966084513 -2.168620881922834 -4.160521540887203 -1.991479070369678 -1.88863672107982 -2.938389244860446 -4.03556337227019 -3.71489607707008 -1.999794651372213 -2.884994637427646 + -3.954991111992058 -5.77212115569273 -5.384197251216392 -5.783043108356651 -6.11607650791484 -6.512399555671436 -7.605986312912137 -8.665631946292706 -7.844663651001611 -7.229290943745582 -4.195708925042709 -4.704632651621068 -6.134650396714278 -4.815267163657154 -2.347177107527386 -4.293737967414472 -2.873993123173022 -2.83820472023308 -2.588622335968466 -2.276556301600067 -2.099541481413326 -2.044491522770841 -1.71931152077741 -1.949112136681606 -5.037023500757641 -2.349575786705827 -2.713952579746547 -2.16416812152238 -2.253122484575215 -3.114016693301892 -1.440605040021183 -1.804546982028114 -3.816011959454045 -1.500450658331829 -3.194968002044334 -3.106289755544822 -3.994887172106473 -0.9254993659906177 -2.228312240925789 -1.112958865333894 -2.333124629079066 -3.451642162920962 -1.657218359228864 -0.9326568969859181 -0.8270119643528062 -0.3810289490124887 -2.513902263423937 -2.334409756984314 -3.185448421061665 -3.105350714054111 -4.748045378364168 -2.758416394011647 -3.107536747048471 -1.998830293214269 -3.040973130458951 -1.626033441886648 -2.299620802097706 -3.033639529774518 -2.169704345695095 -3.723491097527585 -2.217035642521765 -4.116898366235091 -2.959069772331532 -3.251784520412912 -1.74344764516718 -1.616875876927224 -3.726395488101844 -0.9737207673047124 -2.16365484402013 -2.086661420817109 -3.799904824052646 -2.810379818256479 -0.9323697469953913 -2.06155539656902 -3.994533121636778 -2.199868475373478 -2.231184972462415 -0.8857666853073169 -0.9063488979727481 -1.504954233689659 -2.587005843714905 -2.514722022466685 -0.2015104209544916 -1.661994326570948 -3.521638227373387 -3.143212314740595 -3.509548513538903 -3.753099074095189 -2.201598594043389 -2.314820728732229 -2.066059242531992 -2.469420158893627 -4.161068684416023 -2.271061858489702 -2.206865333464521 -3.499922839844658 -3.728994343833619 -3.687016201591177 -1.923985011456352 -3.388870435025503 + -3.783958431924475 -5.372337756314664 -4.806489839313144 -4.767645315143454 -5.641998268150928 -5.872233386107837 -6.617214262012567 -7.759188679268846 -7.052658144053567 -6.341180427049039 -4.197112377780286 -4.325541073256318 -5.74091412706548 -4.711644180935309 -2.747122200059039 -4.697139194792044 -3.027163570094444 -3.050118064511025 -2.905871862702043 -2.565719993639505 -2.055261798703214 -2.320274895930197 -2.046298064218718 -2.093662200144195 -5.230953145786771 -2.858485693657713 -2.99029741713457 -2.998559674320859 -3.176250836939289 -3.488732687321317 -1.563138209840872 -1.701668996965054 -3.580601075652339 -1.796454317435746 -3.627347049213313 -3.410384298187182 -4.289045800717417 -2.030162520768272 -2.039925999864295 -1.811552600735013 -2.826721303373233 -3.844860197947582 -1.877374026911639 -1.565521808312269 -1.603641907943398 -0.8824752263990376 -2.812635376494203 -3.036658965608694 -3.476740762204827 -3.469247400547829 -5.208961429078045 -2.845917366656181 -3.436118114423607 -3.149663480635354 -4.1808127421873 -2.583754629110445 -2.680347448722387 -3.375847958654049 -2.376298404696286 -4.016569378774307 -2.528338052233764 -4.154210580069048 -2.92236827352508 -2.9339060668608 -2.266550298332731 -2.174240420892602 -4.318147281452184 -1.582681866193525 -2.612444297938055 -2.41808544664309 -4.469858208103688 -3.46179411112098 -1.46774647651182 -2.363976505126629 -4.038719073727407 -3.157713405361847 -3.219277770721874 -1.471030015125507 -1.532383310161094 -1.742344427612807 -2.901391476084655 -2.869165786107942 -0.7898228419239786 -2.244285581959048 -3.541961739026192 -3.170203216607661 -3.603627516096367 -4.313053767453994 -2.483551895071287 -2.249890568318733 -2.105841908478396 -2.822967526266439 -4.157447262678033 -2.703464945429005 -2.8541136706408 -4.225163815521228 -3.652603762457147 -3.962807967387562 -2.453622371905112 -3.897677783299972 + -3.636535474728589 -4.895925564280333 -4.331772097393696 -3.966416011033289 -5.191389830193657 -5.216051367322507 -5.802591768901038 -6.876878303566627 -6.244155267842871 -5.450402351338198 -4.108044227075879 -3.800145977415013 -4.869689925377315 -4.373667843958174 -2.96787118975044 -4.865908041526609 -3.023433035231619 -3.29230946960115 -3.289289176571401 -2.935966012915742 -2.050095721024263 -2.683748650815687 -2.427448020123848 -2.443045602960467 -5.367436166590778 -3.394960330304457 -3.306226196451462 -3.520402256319358 -3.775359837540236 -3.633313316453496 -1.842579837259109 -1.978463761081912 -3.465069299262723 -2.166912603426681 -3.800764527691172 -3.62599447481216 -4.642133776663115 -3.133597065979757 -1.928146895936948 -2.70098106439309 -3.22793047947107 -4.16083437880593 -2.378911667167813 -2.452005384903146 -2.364954344883664 -2.021505191759445 -3.318975667906301 -3.733453520142348 -3.614831206270537 -3.687519726014216 -5.438562255330453 -2.961475564300599 -3.717737257336466 -3.994861143493836 -4.932932186879498 -3.37207295240205 -3.17145174176585 -3.743324649251008 -2.680582738034332 -4.264073937570856 -2.883566404350617 -4.236676781937149 -2.941085970408949 -2.857070803658644 -2.873887018304231 -3.022788422033045 -4.815037322652643 -2.137773680852661 -2.727829265805667 -2.478733684052713 -4.740014799361234 -3.723036594499717 -1.850482282454323 -2.475310302379512 -3.896279274940753 -3.567016902610249 -3.902364539446808 -1.85759057912037 -2.017186226292324 -1.839660188142034 -3.115792122642688 -3.113645206582987 -1.422084477386306 -2.733887751022621 -3.373006509708148 -3.106598985807523 -3.394547640517885 -4.478987467314596 -2.649094360771414 -2.031658320449424 -2.007379702043181 -3.036197811128659 -4.057249274967035 -3.085202730741003 -3.411967303356505 -4.761601038841036 -3.665108184980454 -4.29504991295471 -3.253160308542192 -4.287659637599092 + -3.455101359623768 -4.210905782489135 -3.896813068982738 -3.381686089102004 -4.699687509481009 -4.529741639817075 -5.128895514171745 -6.012965824833373 -5.358670545469067 -4.569312119052483 -3.812681792163858 -3.160631945003843 -3.705934309367876 -3.762805827786792 -2.947209783764492 -4.785421209895503 -3.014543751669862 -3.4636002179966 -3.676025017975917 -3.290206298897829 -2.11674667159059 -3.027825804394524 -2.733547442298004 -2.795240540797352 -5.340772328680032 -3.741770333414024 -3.489255377862719 -3.525838568306426 -3.741177924297517 -3.437804743249217 -2.189517674084072 -2.499061738082219 -3.624283684027432 -2.546039153475249 -3.800463358759316 -3.848903511140406 -4.858196130157125 -3.654412882198471 -1.888254333367342 -3.509260965365229 -3.477627090655915 -4.273742606352243 -2.864207337068365 -3.268650372784577 -2.823838139941596 -2.540173301115274 -3.856609563695764 -4.031055629764182 -3.507962828046402 -3.612952605355076 -5.323629232799931 -2.967676072154518 -3.788522638507857 -4.060264888843449 -5.04901337901947 -3.727886044749994 -3.674273950670795 -3.996935933497298 -2.977285950518535 -4.424814541827629 -3.206306009212469 -4.341331411342253 -2.944677423699432 -2.899636387764986 -3.436375516828775 -3.964670356344868 -5.073759840173807 -2.592782219873698 -2.728241511497799 -2.523357883746939 -4.557484708402626 -3.523512927131378 -2.056497408178984 -2.460978138058636 -3.532054632942163 -3.279253243323183 -3.996702336984299 -1.866001636373767 -2.149853853299646 -1.685297827409386 -3.076873556879946 -3.140363029036962 -1.910038558373344 -2.970734647641393 -3.001128199250161 -2.878793086843189 -2.918684273622603 -4.144968555335822 -2.612863249823931 -1.682388729685044 -1.725329535207493 -2.995289555263298 -3.804426143709861 -3.301789307130093 -3.58342528252615 -4.850170936620998 -3.587994072968286 -4.35365322367943 -3.831351714385164 -4.489536294803075 + -3.249141605118893 -3.354994589451962 -3.421722076440346 -2.950212940533675 -4.094168559251557 -3.78467340966381 -4.534162427455158 -5.161410840817553 -4.429788792929685 -3.761060469381846 -3.365312193178397 -2.523283905738936 -2.581162711589968 -2.957589040794801 -2.7610548186899 -4.455729132830925 -3.113905072119849 -3.519487283460649 -4.012073354793756 -3.565486494120705 -2.288651008511806 -3.236921282528783 -2.846681118662673 -2.960568760811384 -5.076091915798315 -3.746412258649798 -3.439900226389 -3.117427916724409 -3.125514750414368 -3.07586483668365 -2.565779848808688 -3.064920715766903 -4.152249870366632 -2.960711510070496 -3.919361698924604 -4.133821168071108 -4.734677322154624 -3.52753479338034 -1.890219908291584 -4.025395491929658 -3.570335899497422 -4.133890877613339 -3.098483774883903 -3.806537171672005 -3.049970653513064 -2.46271140497468 -4.255663051805946 -3.841542890933283 -3.162574728338313 -3.221862869396773 -4.865719825512315 -2.797891291745799 -3.565202861943817 -3.417367825710244 -4.574025479260399 -3.587735571042685 -4.096581444548065 -4.020190668163195 -3.144216429754294 -4.475907803000155 -3.415993629341543 -4.430572083118932 -2.852968483127142 -2.886775223769291 -3.738904316251137 -4.686088277876479 -5.028152925069662 -2.909854339097137 -2.809667938570783 -2.769186234385415 -4.038979579418083 -2.980542492266977 -2.154474946830305 -2.476716682531332 -3.005870899647562 -2.495969974785339 -3.476450198860221 -1.514047945200218 -1.899839908393005 -1.294236462769277 -2.728701681464145 -2.974410164881988 -2.16434255987906 -2.95573379455584 -2.514581598464019 -2.489368511945713 -2.359427482699857 -3.416899948111222 -2.398554973638056 -1.317398788216451 -1.299792447929576 -2.70725104037956 -3.391255246709989 -3.367455949033683 -3.384727522134199 -4.533384558000762 -3.37833187006936 -4.023002068063761 -3.928298532620829 -4.511501093007812 + -3.11786987164578 -2.617527101450833 -2.867728431596333 -2.578684192485525 -3.330220789757732 -2.952047838727594 -3.95520876905357 -4.326008726111468 -3.582221098573427 -3.131756782714547 -2.911807281847359 -2.028641226673244 -1.798229057204026 -2.077191487637265 -2.498284187278614 -3.899869074269873 -3.207545008782418 -3.486643575256835 -4.261041948850107 -3.729921114521858 -2.571426155222071 -3.231072830142693 -2.699441908158406 -2.883201215584165 -4.551608356799989 -3.372790456720395 -3.163778152469604 -2.543374231067901 -2.274693545487935 -2.854461623458519 -2.96523807413314 -3.417327797962571 -4.699108961851152 -3.287959918453566 -4.120888824736312 -4.301024261432076 -4.118340370821571 -3.137598200625504 -1.793945369843883 -4.172949255510275 -3.550151624230011 -3.797807868766199 -3.022101441565326 -3.944097444776673 -3.228153702853243 -2.870519856426715 -4.400618302077181 -3.302837775123947 -2.66320521337002 -2.615044502263231 -4.181646115096669 -2.467779567674626 -3.068531885361153 -2.612104716729391 -3.774775297103588 -3.055750745954583 -4.337436570702266 -3.7333834819201 -3.053965222484976 -4.408056292264916 -3.438482606622962 -4.455079111320401 -2.5944347279044 -2.6640364791092 -3.553568965845443 -4.803143756027566 -4.652822833914797 -2.988869501679346 -2.927837913213352 -3.115124179266786 -3.394069607558777 -2.301865251123672 -2.247614861767943 -2.632827418108718 -2.441098906536354 -1.560535932768971 -2.540166023115603 -0.9808476766274907 -1.374670513883302 -0.7635248139075657 -2.111794181397727 -2.746623659710622 -2.215896870075539 -2.805098663710055 -2.074976570262834 -2.027355677285755 -1.984340775463579 -2.586055895946458 -2.134623418971387 -1.114447282026049 -0.8468673595862128 -2.290132522517524 -2.854011674238791 -3.395822873368161 -3.124840179703824 -4.159064719673552 -3.161056596897197 -3.5181969400453 -3.57284917077277 -4.350729557489957 + -3.222700265979711 -2.425467958032641 -2.282913123977778 -2.194445052668016 -2.427452502870437 -2.022503360578412 -3.355813961836247 -3.525520933755615 -2.994346468640288 -2.796619643795566 -2.550581909784341 -1.765788316852195 -1.474934755001186 -1.207390713573602 -2.181721115611879 -3.188355685933516 -2.951291658083342 -3.426397668964 -4.40935482228997 -3.736735093879815 -2.915038397937224 -2.988001924183664 -2.297479745315286 -2.649148705771822 -3.80585813747166 -2.710584111424396 -2.762961233020178 -1.999369828061845 -1.607598687143081 -2.96911485758892 -3.372487952693973 -3.274847315030058 -4.548021077892543 -3.261275505360288 -3.973009651347297 -4.059128268743734 -2.985767984260697 -2.794158608365731 -1.378016929365693 -4.021510262635729 -3.49549758301464 -3.422780038501003 -2.705948774247616 -3.596703372372858 -3.083682027830855 -3.175484014290791 -4.254636574781268 -2.586909510389418 -2.115235835679869 -1.923707080529766 -3.445929478287667 -2.038957427449787 -2.40728806425841 -2.233887861176299 -2.972275033992219 -2.318021824518382 -4.302947441048218 -3.111710331837457 -2.597047291261504 -4.220626611694001 -3.235745412472873 -4.380680865386239 -2.150047749877331 -2.186942324147822 -2.806547499488261 -4.040837003489287 -3.940256529115686 -2.670084040721122 -2.790876291606764 -3.121334741173087 -2.824479275121121 -1.673684688634239 -2.409929509172798 -2.891831265812471 -1.974837292216762 -0.6943251813169127 -1.494179313042309 -0.5137790711878552 -0.7323760154297361 -0.196669843776931 -1.3341413633716 -2.619812076667017 -2.192406574864549 -2.613071105591871 -1.844194234053759 -1.628636053325977 -1.987518790967954 -2.003939127707497 -2.005040316186751 -1.251742952360473 -0.5205278996218112 -1.915218362430096 -2.254663644784159 -3.516536741462915 -3.191286296771978 -4.170104478356734 -3.10832047699455 -3.222408873300992 -2.940068555115005 -3.955126679820371 + -3.710736073743647 -3.074002924624438 -1.807944446065449 -1.784888683425379 -1.482170826104266 -1.021934319553111 -2.744678788927558 -2.791520800970829 -2.834623743509837 -2.830458439369522 -2.213872611031093 -1.714743480966263 -1.494132077567201 -0.3794497864577693 -1.778568882636705 -2.445334907821149 -1.99832811466505 -3.379235075177007 -4.466028528261631 -3.53361330178268 -3.214877648941638 -2.539397238741913 -1.716067800058227 -2.389898371906668 -2.928115532839001 -1.940434760243079 -2.392758663572749 -1.568038188252785 -1.409119483959557 -3.358617907897496 -3.730267643403067 -2.458255885607514 -3.230923151328426 -2.739785783625777 -3.158175983587455 -3.31729506491169 -1.470521096326472 -2.366770232340325 -0.452609151327767 -3.725397846534634 -3.492954559405575 -3.206260727295671 -2.218775294397034 -2.757263188027171 -2.134203586596469 -1.595479630420851 -3.848394329581732 -1.75736865763119 -1.591019112043796 -1.211186557943904 -2.802477250360482 -1.560038757009664 -1.731780591833171 -2.427849510856106 -2.376832124151633 -1.554427538595064 -3.947202593273005 -2.202801579553125 -1.713326893783119 -3.919146299623833 -2.838873212244625 -4.222716649056565 -1.594867135734034 -1.567251265354116 -1.686272837421257 -2.438211490737103 -2.914233954600149 -1.818150797745773 -2.069354925831931 -2.283273146942065 -2.445856629665286 -1.190074804166215 -2.649480381805915 -3.071253930648709 -1.713023467116727 0.08671637758615702 -0.6275005654990196 -0.3301861245286091 -0.1067318047146273 0.3476225553465042 -0.5325064179934884 -2.711882768779788 -2.262400302253582 -2.361056510383349 -1.903572929689801 -1.407896693180248 -2.354739984308452 -1.91971804977544 -2.172527187880405 -1.836197776154677 -0.4599412670959282 -1.727091799869413 -1.655436822171396 -3.781950328462699 -3.792115152029965 -4.819259842434349 -3.285014787868704 -3.374451504247418 -2.243905217999725 -3.281688499802812 + -4.620576715516336 -4.480775401150822 -1.631030179101799 -1.403095399306039 -0.6420069805581079 -0.01454925313919375 -2.175165482660304 -2.159198318424387 -3.187939057888798 -3.221321051419636 -1.637033326794381 -1.730547134574181 -1.571242594756882 0.4018508399093577 -1.250473548060214 -1.812457127185041 -0.3509280720733861 -3.33737251295247 -4.456479161634434 -3.128693866300068 -3.355522834445082 -1.955890469676888 -1.073071465340945 -2.171619954237809 -2.035845927981427 -1.270848062216828 -2.203303850998054 -1.30790225425892 -1.760134124514479 -3.7709969003987 -3.939522132024535 -1.036748914092101 -1.014131049912031 -1.889534965081914 -1.922218925483939 -2.347699183817966 0.1867507668445203 -1.535745535484399 1.005747631833225 -3.429238866678503 -3.603283723519667 -3.282125549409272 -1.568853084828355 -1.592035568171735 -0.5610732183949532 1.355122737075373 -3.248540566349297 -0.7605239894713307 -1.113634685145826 -0.4651188534670041 -2.296947324347741 -1.027012743463992 -1.178639070494228 -2.725761809310285 -2.006402217663265 -0.8787017545756157 -3.308596968824304 -1.133687999678841 -0.4220289690198911 -3.516162125581161 -2.359277663613383 -4.059254602536612 -1.098480849959174 -1.034409926857279 -0.5712303368031826 -0.4113933515229746 -1.660884740486154 -0.4303357002618213 -0.6569073781208772 -0.3906787860119039 -2.26096754844184 -0.8461340799331083 -2.911950847150365 -2.944251608121476 -1.706836119874424 0.8379254781001606 -0.1386098113624712 -0.5579462966925348 0.4164577650693673 0.8522372518156942 0.1608374530634364 -3.053008323916231 -2.569428173116421 -1.965316393353163 -2.209146311264732 -1.401436387004139 -2.869847834211924 -2.366824602450833 -2.705615055424687 -2.850352924462641 -0.7422713802784529 -1.777988120544705 -1.09530725915829 -4.113336974367485 -4.817967953752941 -5.988812208061745 -3.588513234016887 -3.851979405467489 -1.649560806211419 -2.339593746212688 + -5.820217285874946 -6.148433272890998 -1.907559838269663 -1.135345388343922 -0.04897822225393611 0.9106386303228646 -1.72584114174424 -1.654242085982332 -3.996910623339318 -3.848127382091207 -0.4460451189687547 -1.580450320907289 -1.390247154943665 1.121335935288492 -0.5829689442817596 -1.384480297288221 1.512430164442147 -3.263276687144881 -4.411825478256105 -2.618006943736759 -3.274870678809179 -1.33407838834637 -0.490455953548917 -1.955844352230766 -1.246894308653282 -0.8724017526546959 -2.289246173813808 -1.347740921930836 -2.592859404222281 -3.971040898127882 -3.894829437859869 0.6338279858452651 1.287578639690999 -1.050265536177701 -0.9191987814808549 -1.624110898221417 1.710862234018133 -0.302215445567571 2.761797753777094 -3.203790610348264 -3.831436408651996 -3.63082829431454 -0.7812182801609637 -0.4509809158869293 0.7052554557237866 3.052780242989807 -2.534238641911624 0.4300596516129982 -0.6819937453903435 0.3225144933134629 -1.871339815329918 -0.3922187235706502 -0.8300006065263688 -2.368355524602734 -1.716263760526047 -0.3169212285916956 -2.511656116312338 -0.09744722886262025 1.162321606118468 -3.034460715049136 -1.961994015875609 -4.005288352003845 -0.8674793050523135 -0.8256017236503794 0.1878759467762166 1.406373319918885 -0.3390398534653514 1.309724694285052 1.214320797463387 2.297424643238855 -2.185457564658464 -0.5796764581937168 -3.115082254210392 -2.366148631733381 -1.953025509260897 1.506981511647027 -0.125714301407811 -1.227891754385155 0.7757991736352778 1.298668908499678 0.6401759909367968 -3.588364697414505 -3.180015266301666 -1.414126599286824 -2.607048704284907 -1.552330160712103 -3.260110225975858 -3.15763847307727 -3.540985345450281 -4.140916265445867 -1.358344787121496 -2.005685566558896 -0.5765916048590043 -4.315376156202092 -5.894683912790697 -7.220157011699598 -3.817640683241649 -4.224260049300611 -1.170724706213731 -1.169066062915297 + -2.537160818705161 -4.097874334269363 -2.113844864237763 -4.019376087333512 -4.860864417552875 -3.353313339986926 -6.018509045708925 -5.718628336318943 -2.866346851285925 -1.327897773806399 2.645769021655724 1.810450876545474 3.057200371039471 -1.11061864375705 -0.7581513070298342 -3.929341192685115 1.870495556467517 -2.537217913245968 -7.062856755026587 -6.319438320303561 -5.311036510490339 -8.256151641106044 -5.800103161280276 -4.678271933392182 -6.833214282989502 -5.779073024161335 -5.938202595680195 -1.424416308836044 -2.368772384371823 -5.754469698530102 -2.292166924738012 -2.516361385950404 -5.06509533087592 -2.57159012494833 -0.4226276763026817 -4.628098553331483 -2.959584703711755 -8.242683455516165 -7.006848104154372 -5.389739714352118 -2.144933061415941 -0.06754547295008706 -0.01355771046399923 -0.02386790639863534 0.9207327753445418 -2.172138021071318 -2.788657138013471 -2.795063045333677 -2.848218824065043 -3.307430781432345 -3.98088106384489 -6.007480271648916 -7.00300229646723 -11.36006494793878 -8.100467201182482 -7.131160377805145 -10.00360930009447 -13.48088306806676 -9.256400628062011 -9.01556399410282 -8.657539860548297 -5.667453780918549 -5.278792220886544 -6.441313382169938 -10.52663060472241 -12.69659551912355 -9.31227954172482 -9.442416883995747 -11.31746645288649 -15.82964674499817 -8.095352740510862 -13.13021418615244 -8.962861691572471 -11.14802594757748 -11.00359332126754 -11.22232258104361 -9.947147317777535 -13.31473320600162 -14.17339105947167 -8.437700641547735 -9.370175015347968 -5.936076163682969 -6.724653658769057 -7.988654790766816 -8.632762319107542 -3.602609456855362 -3.604864127405563 -3.708886979032911 -5.513336602462005 -5.187234375787739 -6.195064697489215 -7.151191267581453 -8.261844527958601 -8.873472638566454 -4.988943251570163 0.2776098874874151 -2.096390312552103 -4.711011456444567 0.9944505012873606 1.197257264021991 + -3.901339087897213 -5.257941940715682 -3.892830721335486 -6.334053449747444 -6.896793092968437 -5.475751815381955 -8.863687771652621 -8.139007506691996 -7.635441796377563 -5.350139261227014 -1.65226599824382 -1.012510776450654 0.8128920412736989 -3.117570582966437 -3.258036412915317 -4.221720877896132 0.8894654096487216 -3.672692907664896 -6.711373384708168 -6.532496148302926 -5.556479683063117 -7.352373353287476 -5.423297056069714 -4.832413474875437 -6.709869909820554 -5.940721465318347 -6.535079542605672 -2.767282932936723 -2.927936707876142 -6.502335976658287 -3.974923034776566 -4.182779003347605 -6.272674572581309 -3.935572074479069 -2.451629457065337 -6.735102250260525 -3.850585266077985 -10.44707101359737 -9.07584144383955 -6.455464270834455 -2.746820400346223 -0.948808040641552 -0.7330242908367381 -1.466780528964421 -1.01617140933042 -1.659142836043848 -4.229040363162557 -3.84096557136229 -3.064938285666813 -3.064427737563847 -4.355073763213795 -6.483212534599005 -7.351990916608202 -10.17016292460357 -8.036391398809656 -7.901031700914245 -10.34005067964608 -12.68285096375621 -8.756095332083305 -8.003271300000563 -8.065039105612925 -5.980711749515194 -5.948372524377874 -7.145189321145153 -10.51674960789205 -12.80250257974512 -9.853127507785757 -9.480120648899401 -10.50129753032525 -14.30602632628324 -8.456278174773615 -12.62730442287284 -7.997545610800444 -10.11552783802654 -10.41857847424035 -11.13921610476132 -10.33254748420268 -12.72271042206557 -13.82645953966176 -8.061553719247058 -9.391806317571877 -6.375451695658057 -7.158601315916258 -7.234003796758088 -7.892801974815029 -4.081307012322895 -4.450670959396348 -4.491272040560034 -6.291745814639398 -5.621887741459432 -6.444285325496821 -7.827793627202482 -8.262048169084665 -8.996646618747036 -6.516999638077323 -1.435794537259426 -3.913649134105526 -5.444116677602324 -0.2339249887522783 -0.3022001019478013 + -5.024381064202316 -6.15422662443234 -5.405874010772095 -8.044334099788102 -8.155689011586219 -6.9149645682337 -10.83144793546671 -9.837010641327652 -11.04453674077013 -8.247869957327566 -5.015165816948866 -3.393488781324777 -1.287970496176968 -4.780384865316364 -5.137948983623346 -3.995782313346581 -1.364421753512488 -4.461241402000041 -6.106876434349033 -6.064043234939163 -5.32738223279739 -6.185911171407497 -4.879055774770677 -4.595889865354422 -6.452517668541986 -5.837945240291447 -6.783596331209992 -4.201473331990201 -3.592411162424469 -7.155664868208987 -5.228851729762482 -5.39306939971766 -6.690677070223956 -5.197632230248473 -4.662827137979548 -8.420468514715139 -4.656479128201113 -10.7236884488172 -9.979191515474156 -6.925561379661758 -2.974057972894116 -1.914950293216862 -1.816876791977393 -2.630202862937267 -3.64420279440284 -2.763121840359887 -5.35412573403347 -4.711571410577449 -3.244268852754431 -2.900956261281408 -4.561943593540491 -6.768961499976058 -7.291616442837039 -8.770888545046546 -7.581930305374044 -8.151871705571466 -10.04579596842086 -11.3273600456705 -7.9340196153546 -6.855170247678416 -7.189582555081842 -6.071911183864358 -6.359796764289968 -7.731124425847156 -9.94280833652374 -12.21359549143017 -9.753012715624209 -8.853889709116856 -9.155777954159021 -12.19527815441688 -8.103510918695974 -11.5241906564479 -6.708692448162765 -8.666417734310016 -9.470726079875021 -9.867777449394225 -10.0250350504175 -11.45221187072093 -12.75365424602296 -7.468374022731041 -8.948187176779584 -6.391125472122894 -6.980246761922444 -5.669269745669453 -6.85664393325419 -4.274087658295457 -4.411025035809871 -4.635746782351589 -6.388199606040871 -5.553370267385617 -6.212782091795816 -7.724422054767274 -7.876821806676162 -8.554994611567963 -7.244927868963714 -2.553214651288727 -4.96879756276212 -5.430105415240178 -1.334426299571533 -1.420618299998515 + -5.73852592514595 -6.730857307240512 -6.505406680189481 -9.082110921648564 -8.655784587059316 -7.724323484675551 -11.91337174189539 -10.82264986549853 -12.86469355247027 -9.937046501623627 -7.090979102518759 -5.024721107973164 -2.936807255100575 -5.874097309841545 -6.039394463484314 -3.421034459397788 -3.881254428761395 -4.764851424937206 -5.330479346914217 -5.047394375676959 -4.744150915010323 -4.982083594128198 -4.23359054624234 -4.108804354981032 -6.074017126185936 -5.443352975875314 -6.604814499180065 -5.229498767846962 -4.105270173740792 -7.455699291856945 -5.830817357043998 -6.009800579508465 -6.796918239540901 -6.282710338066408 -6.728572060210354 -9.222985497652644 -5.389441081809821 -9.566707088891121 -9.822590389484617 -6.745532883018768 -2.839349195397517 -2.74120887470076 -2.983348639651012 -3.35873395712531 -5.481137549898648 -4.410340384885671 -5.937501040852354 -5.25121483876228 -3.345333510273122 -2.816318461785158 -4.524038373956046 -6.703895829471946 -6.806081926858042 -7.416086758656093 -6.728691071607045 -7.677865748300974 -9.086715817964432 -9.574380330977874 -6.864593263498136 -5.70052469440634 -6.089043948796402 -5.914602203922186 -6.379575124110033 -8.007806490029907 -8.690279381695291 -10.88938121869433 -8.959569739819926 -7.487703099651299 -7.244759127025645 -9.603141320960276 -7.043869211986021 -9.719051004984067 -5.157589345981251 -6.964332257663045 -8.237396352789801 -7.717960911597402 -8.953793316393558 -9.555680765695797 -10.94279418385122 -6.611616291548899 -8.033977093164594 -5.996094169393928 -6.215395156385512 -3.98704175641069 -5.757852351297743 -4.23723034855675 -3.726918345983449 -4.268712065864065 -5.878756006490221 -5.081214534380706 -5.581499749063369 -6.974183869318949 -7.180969050727072 -7.591781132650794 -7.19722293200175 -3.108131214466994 -5.326887862588592 -4.965375130025677 -2.123335279658932 -1.833777621459914 + -5.972639249990607 -6.992906475352356 -7.1222445860476 -9.482024230448587 -8.55295077053961 -8.021965762141917 -12.19502952131734 -11.17730585794197 -13.20502143134217 -10.5402087137154 -7.815936485985731 -5.821026568435627 -4.005507795280209 -6.294128980021014 -5.898962178887814 -2.755226060320183 -5.403861963853842 -4.601890844313857 -4.481041355193156 -3.842999212411087 -4.006523857293359 -3.926960154141852 -3.547940069853212 -3.575894841173408 -5.610321228639805 -4.776027299456473 -6.007687285564316 -5.410424770088866 -4.178442972690391 -7.142012584683471 -5.707579766008166 -6.01896518765534 -6.773019514914267 -6.8186459023118 -7.989856442545715 -8.836203523266249 -5.867522921119189 -7.877676671959875 -8.919589316504243 -5.967041491475356 -2.448961776417491 -3.238901008557605 -3.891310294121922 -3.711848747700742 -5.675394373503778 -4.990698759271595 -5.89087810516714 -5.424441533840309 -3.301919334780905 -2.760374922343544 -4.253477490867681 -6.228177397841421 -5.969957446000535 -6.153619420945688 -5.487536256683143 -6.450895497854617 -7.593378897747243 -7.654870032358303 -5.667558866122477 -4.663298382656535 -4.878304499935751 -5.53573512897583 -5.975208970861786 -7.837508860378875 -6.855272243476065 -8.95052060063972 -7.605575063395008 -5.574651669023751 -4.967697657128156 -6.781956843296939 -5.512145875698479 -7.395519933023024 -3.497830559819704 -5.190740959817049 -6.864833949155582 -5.258057510533035 -7.224056783714332 -7.230237043011584 -8.559923573929154 -5.496396865512907 -6.750511860627057 -5.247033908346111 -4.986528142437237 -2.679350478130345 -4.770079918007013 -4.038124272262394 -2.836479941821835 -3.594147590750254 -4.948732778930207 -4.365821467174101 -4.697596432431965 -5.794285183455941 -6.303955613884682 -6.239511083560501 -6.523155930422945 -3.259770916149137 -5.300229486649187 -4.479431271769499 -2.653029827697537 -1.768465811330605 + -5.770671514972491 -6.975747141310421 -7.266232398033026 -9.342647192468576 -8.065923820220632 -7.948205520449847 -11.82471620770957 -11.0278909750923 -12.43810753096113 -10.31991747970824 -7.404446150849253 -5.912356936234573 -4.559837168124432 -6.102714856695911 -4.949987087236877 -2.249653833498542 -5.400614041193876 -4.115340688193555 -3.660887477879442 -2.84464637696874 -3.309851277281268 -3.115769621901563 -2.876970738470845 -3.139242197137719 -5.120109716648585 -3.918914800662606 -5.099995915421459 -4.655428904887231 -3.672665477324699 -6.172736657203131 -4.969398675065349 -5.53567266320988 -6.499674432579923 -6.411156262370241 -7.872385460946134 -7.357109210288399 -5.855650228460036 -6.141045331357532 -7.541885786980856 -4.746925879298033 -1.966502996731833 -3.344493052510643 -4.268769666201479 -3.700983923228478 -4.458909647593316 -4.213027763639275 -5.295641560860183 -5.186841248504152 -3.085824234014581 -2.670489172593989 -3.853654853636726 -5.408252056349966 -4.937366074327656 -4.856089398199401 -3.981802199821686 -4.689025726889668 -5.844853881468225 -5.820680894750694 -4.482245314059696 -3.840938391970099 -3.711449376515205 -5.023470615936276 -5.246926055266158 -7.212794415849203 -4.784506521107687 -6.692741937105893 -5.979694023535558 -3.51130607655341 -2.758373602320717 -4.133364003373572 -3.900558016874129 -4.96990918557276 -1.954847820772557 -3.549550827330677 -5.544213339177077 -3.031125557527957 -5.136341815200922 -4.800932178681251 -5.944189463128168 -4.225655920179179 -5.299193358018329 -4.271726109088377 -3.506722869304667 -1.85782771396407 -3.990700895160217 -3.741587939004603 -2.155396793038108 -2.847206701847654 -3.847683340944059 -3.590870280393574 -3.74412978903456 -4.452898187595565 -5.400007987380377 -4.714337403689569 -5.401375617038866 -3.141623079005512 -5.147918227638002 -4.210631185336752 -3.012205768900458 -1.660068506494255 + -5.270358691237561 -6.7226178056153 -7.011995357213891 -8.786719871852256 -7.402197531613638 -7.631499373390398 -10.98228682213812 -10.51965721204033 -11.06047626846703 -9.591694715421909 -6.289044954275596 -5.566038481269061 -4.801406813727226 -5.525386802145022 -3.635037430587545 -2.065468910136133 -4.328201633955814 -3.497603069968136 -2.961595935177684 -2.238867509367992 -2.77435331916422 -2.550328090699622 -2.274969905156468 -2.804680609748289 -4.676582045940449 -3.016593750078755 -4.068405794030696 -3.314012187613116 -2.722643877479641 -4.809616304481096 -3.877706731223952 -4.729041486042661 -5.872659065760672 -5.065887396470316 -6.424152343921378 -5.333696381796472 -5.312583570008997 -4.334306279781458 -5.911685554985979 -3.334869072811671 -1.563134075690868 -3.153605412276193 -4.029701085008128 -3.237904921953486 -2.674126343858603 -2.982451251658858 -4.372468015828289 -4.471065059794 -2.756706946465783 -2.523514497173892 -3.4804139183193 -4.41399246577032 -3.907728298329857 -3.427368799040778 -2.499831357255971 -2.818105065469354 -4.182500777824316 -4.289220616839884 -3.437847017688796 -3.289004656074326 -2.740549100008707 -4.500653507438528 -4.390751411906422 -6.262357073566818 -2.943243386733229 -4.512335370134679 -4.443091515680862 -1.742857306102906 -1.119067234370959 -2.103253814726486 -2.624873892760661 -2.937909247702919 -0.7648876943712821 -2.251293713165069 -4.464290576746862 -1.380514261274584 -3.130427814373434 -2.650932215572539 -3.530169570472935 -2.997028088505886 -3.935063723868097 -3.270328695948592 -2.04501204918688 -1.374945253868646 -3.456713915289129 -3.411375612890424 -1.906686575778622 -2.253588406975041 -2.829555534461178 -2.920152127295296 -2.899118890767568 -3.222853493833099 -4.611595019159722 -3.281802963945665 -4.039035282730765 -2.837021255400032 -4.914893089500765 -4.077107721695938 -3.145262236774215 -1.736427026531583 + -4.65271909833973 -6.29223504960828 -6.477767447591759 -7.937265477863548 -6.712517944702995 -7.170918569725472 -9.853715936813387 -9.792566261261527 -9.539387831064232 -8.643256374449265 -4.997351507125131 -5.070983714143949 -4.957481395736977 -4.870632442120041 -2.452018748773298 -2.230006527205205 -3.090922943461464 -2.924184003853952 -2.451834783514641 -1.95114399119484 -2.425371206150885 -2.182802231618552 -1.79994788649492 -2.489032821318233 -4.351503128695185 -2.247042906732531 -3.130018398289394 -1.997032735736866 -1.717618041264359 -3.503206299901649 -2.755738819226281 -3.75876528624849 -5.009651909804234 -3.306646328628631 -4.424832471795526 -3.519520415409715 -4.486784134924164 -2.467957181786915 -4.323060238198195 -2.032388768729106 -1.368423562854332 -2.872138024099058 -3.322495985299611 -2.364760854176893 -1.14499911403351 -2.21752238121644 -3.401767254634535 -3.375697214832144 -2.452772255839591 -2.366387439586106 -3.281968312579011 -3.460216480879581 -3.075997037743036 -2.023180760630567 -1.43128244145646 -1.325181268472079 -2.892996063812461 -3.200244794916216 -2.629204524465877 -3.015181861455858 -2.070291352195582 -4.077013263431127 -3.613780076928379 -5.189420009541209 -1.693271162563178 -2.771368696638092 -3.318044270483369 -0.594503191729018 -0.3794120905768068 -1.000103030390164 -1.978055549014243 -1.683412438054802 -0.09464182589726988 -1.46073731803699 -3.75485031651624 -0.4682684197487106 -1.656324837605098 -1.11336537450552 -1.717774129896497 -2.039128822133989 -2.892725419312228 -2.469299920730464 -0.865696989143089 -1.079722077981842 -3.167377326596807 -3.114650875672396 -2.081299284617671 -1.989513122559856 -2.092969284962237 -2.459253509769042 -2.293416378497568 -2.32556287994521 -4.036378748960487 -2.193019067162822 -2.719876338094764 -2.466619126986188 -4.531148928173934 -3.860086398863132 -2.906319243969847 -1.950656177709217 + -4.083254978853802 -5.779851686485927 -5.801905263986555 -6.912938658773783 -6.081898577598622 -6.634536498291709 -8.612142220939859 -8.963941193927894 -8.197132530571253 -7.679826509887789 -3.980624327596161 -4.630338353777915 -5.157887947782001 -4.394524674093645 -1.765367346905805 -2.646746061576323 -2.351205698254034 -2.521940817518043 -2.168841508830155 -1.821948853663343 -2.223925226680876 -1.972057212689833 -1.508534861284716 -2.145639535482587 -4.194924323935993 -1.771955436750432 -2.469280699995579 -1.25767594538047 -1.122287606507598 -2.662456729329278 -1.878987842012975 -2.789345809722363 -4.18920915522358 -1.855467448231138 -2.898280635185074 -2.471455236480324 -3.761536599498413 -0.9325595106165565 -3.101239583981396 -1.119247839510535 -1.435538711919435 -2.71005428066519 -2.469277067862095 -1.417702804818418 -0.3297463860873791 -1.808153551607575 -2.632903525934303 -2.301785427214327 -2.320434342971566 -2.299382590034838 -3.343069615712011 -2.735367726192749 -2.580215580871482 -1.056123664009647 -1.095348190507138 -0.5675182667455374 -2.120462363354818 -2.596767148228537 -2.104459201184909 -2.98362723288858 -1.73177192880145 -3.80912759499779 -3.052949478422306 -4.190216253104154 -1.139820895230514 -1.676458356640069 -2.785682896799699 -0.1668026368261053 -0.5261300948786811 -0.8325117852436961 -2.030291457449493 -1.332124625565484 0.02225039582117461 -1.225202567606175 -3.442930730365333 -0.3502615159050038 -1.014011875791311 -0.3622527431762137 -0.738971142634 -1.513383675089699 -2.311888871225165 -2.039793703658233 -0.158760004155738 -0.964261967749735 -3.092579960167086 -2.913712653075436 -2.51636278101978 -2.137181095139795 -1.736491511737768 -2.232590770870956 -1.979000790895952 -1.878118428434391 -3.706818914099131 -1.60883936148457 -1.783740053877409 -2.243963741078915 -4.01648126139844 -3.499621467022735 -2.319943628948749 -2.213528940123631 + -3.665228542813566 -5.306666581207537 -5.11726135778008 -5.832214366731932 -5.544753892587323 -6.066543900160468 -7.403089571445889 -8.118264148455637 -7.164299929769186 -6.804220418191107 -3.46077323348436 -4.306824114766641 -5.360598132061568 -4.184299583371285 -1.659482257591662 -3.152138244083744 -2.221765588746621 -2.358780988507533 -2.114718944565539 -1.799889787027496 -2.113591093700961 -1.911405569575436 -1.439052755529701 -1.845820304435847 -4.216811594553292 -1.681563502308563 -2.181714278216532 -1.317480948273442 -1.221784451168787 -2.452417691831215 -1.392663656519289 -2.012974770291294 -3.645838564631049 -1.164346632662273 -2.414997192969167 -2.268249393847327 -3.405970186923469 -0.2581074259528577 -2.393896268954677 -0.7703826779970768 -1.731956860253376 -2.78177765641567 -1.821071707961892 -0.8588837224510826 -0.2584213801573014 -1.125406708201353 -2.221086648800281 -1.763695672339054 -2.428159637833232 -2.414364257318084 -3.652661477166021 -2.341404115097134 -2.461698345203331 -0.9221477162973315 -1.56016662820366 -0.6321073453473218 -1.849815832916647 -2.431993445126864 -1.865304214848493 -3.127750216404934 -1.687259203176623 -3.691923888164638 -2.742117436781882 -3.40177374547784 -1.148971619462827 -1.242615694733104 -2.834013967127248 -0.3378217193812816 -1.21492563362699 -1.28304265953193 -2.616170126726502 -1.714491791470209 -0.3010371466662036 -1.43194281491742 -3.442177077493398 -0.9498695326865345 -1.231552463893877 -0.3494937856448814 -0.5795936592166981 -1.434181182168231 -2.193309297935684 -2.023082314168732 0.0127865191411729 -1.106256397471498 -3.166403606724316 -2.841205552239444 -3.006254110435293 -2.645809283574636 -1.740818131693231 -2.183814191177589 -1.918325803499101 -1.863325349695515 -3.587883383517692 -1.544345535650791 -1.486354249536816 -2.388662756944541 -3.54467296488292 -3.187068915913187 -1.745058992526538 -2.55013211175724 + -3.417988563889594 -4.954542087689333 -4.523304382775677 -4.811022268462693 -5.103220384065935 -5.494283224019455 -6.331727042139391 -7.303958286232955 -6.404172787868447 -6.029821455067577 -3.380981101538055 -4.041663176652946 -5.3823500801318 -4.137702787533726 -1.935035322910153 -3.590457215193965 -2.406882446174222 -2.4335807907446 -2.258239162987593 -1.942394649708149 -2.050355301773379 -2.01084234096561 -1.589063507031824 -1.731593731831026 -4.377612910117023 -1.956054982903879 -2.245661022308923 -1.981220957815822 -1.941629235281653 -2.726626956415203 -1.289817665965529 -1.593601698209568 -3.398645256103919 -1.189017074465482 -2.765740777904284 -2.562704600372854 -3.453688545270666 -0.644495048574754 -2.082873168651759 -1.000011859048755 -2.159139156172387 -3.067477940580829 -1.60374960549143 -0.941687203967831 -0.7265792389295029 -0.5584042619611864 -2.206506576152179 -1.990707149768696 -2.721854537059698 -2.71919747326865 -4.103834918696066 -2.264686075919144 -2.651863283467719 -1.650594940219889 -2.576267474706583 -1.316149550945738 -1.958788248486599 -2.594417060347041 -1.87526337672432 -3.367329901349194 -1.858322677040192 -3.682302051911392 -2.634604346259039 -2.891160528863111 -1.496346001698839 -1.355563577148132 -3.282468788511324 -0.8596676445549747 -1.968853200163721 -1.87376945876531 -3.412523589344346 -2.45193827006733 -0.8507304114027647 -1.841531438112725 -3.583472180580429 -1.967312624050464 -2.045995618362667 -0.8218966441854718 -0.9947871258500527 -1.656085004660781 -2.404299578663768 -2.309791332435452 -0.2737303236444859 -1.515696248250606 -3.284386900732216 -2.873802186932153 -3.369965532518563 -3.325237512486865 -1.984179034610861 -2.202087084162486 -2.000364687468391 -2.139682026576338 -3.592930642949796 -1.864701772032276 -1.828859675588319 -2.94923608465615 -3.301582080812295 -3.162820849016498 -1.651048522868223 -3.005807166212135 + -3.285422927858235 -4.688440183141211 -4.061112793759094 -3.945509242948901 -4.734673828246741 -4.929978721003863 -5.452802581028664 -6.536604328706744 -5.785111900313495 -5.317065530900436 -3.493875357002253 -3.73040143623075 -5.032737937810452 -4.053265076939169 -2.270488681441748 -3.86685914621512 -2.572492160623142 -2.670518813747094 -2.542186387776383 -2.268476610595826 -2.009825004945014 -2.25415228671045 -1.90002950579219 -1.880443465467579 -4.59276238847815 -2.462300485931337 -2.534083958809788 -2.781375909351482 -2.871084114121913 -3.126765370489011 -1.453592738437692 -1.577275514249777 -3.281864908545685 -1.557027753809962 -3.279419025982861 -2.923171716393881 -3.760802291429741 -1.740737851382278 -1.943467556571704 -1.658290702085651 -2.592657217219312 -3.442580996748347 -1.822742666931845 -1.555867890691843 -1.476947161604897 -0.9854533220579924 -2.524419379920548 -2.729551670743831 -3.049686422669765 -3.098567217447453 -4.526707217576131 -2.389089973598288 -2.993262158509879 -2.783814482645539 -3.679692988683655 -2.233872745476219 -2.296103308441161 -2.938531160503771 -2.069242752344621 -3.625075420733651 -2.156503627584129 -3.732759184148563 -2.650375197714311 -2.661708171777718 -2.007586570136482 -1.869080847580335 -3.871394687987049 -1.487817718443239 -2.445176857005208 -2.243459188164707 -4.071247281230171 -3.121824897476472 -1.398429719658452 -2.198781697286904 -3.676982970748213 -2.910354675441795 -3.007501769653572 -1.418560551896007 -1.614314557139551 -1.940416479553278 -2.731310662430587 -2.691476119352046 -0.8338806389224374 -2.058839559204898 -3.324489632087989 -2.928643687743261 -3.47228531719702 -3.897849905604062 -2.288987267344055 -2.168627132081383 -2.08060551239214 -2.494409842598543 -3.612471876855125 -2.342344674758351 -2.513902607453929 -3.70753111250815 -3.305164833802337 -3.443361222303793 -2.170451158233845 -3.505839595103392 + -3.173188852071689 -4.353463666004245 -3.702778493716323 -3.285878033406334 -4.390047701614094 -4.368102085041755 -4.76694868341292 -5.807707429907168 -5.166688604058436 -4.619823616038047 -3.533233570520679 -3.3087061287697 -4.269350934904651 -3.766657794256616 -2.435062284563173 -3.953133355698355 -2.615696380898498 -2.941964008565265 -2.895341848221506 -2.676588635451481 -1.9873668243672 -2.570653454335115 -2.261071354252636 -2.211404680536532 -4.751652068895055 -2.991840427675925 -2.863384799689811 -3.264560172967322 -3.495137691019409 -3.301724398188526 -1.73617768828808 -1.877856078346213 -3.200690980611398 -1.94138709844492 -3.484722920070453 -3.161529488032556 -4.120078390669278 -2.8321953039856 -1.844481765585897 -2.483498446726117 -2.925569814091432 -3.743319892360432 -2.270293031332585 -2.364267723997727 -2.173106173863822 -1.995097211119003 -3.030893982767346 -3.45466707893388 -3.238841232116101 -3.353942289810675 -4.747521295742899 -2.548425182249446 -3.290942754470052 -3.625014189516151 -4.410472989268328 -2.988651023709281 -2.735615985489858 -3.31083416589172 -2.359583064937169 -3.838547709856527 -2.498530134735574 -3.809166670785544 -2.708762816064336 -2.651078022086949 -2.578285402130859 -2.645201462721161 -4.36563659040803 -2.066801875429519 -2.593702959513394 -2.342043269651185 -4.348980452501564 -3.421008699006052 -1.785957744548796 -2.360463320244889 -3.580870749647147 -3.324267831547786 -3.663857285322138 -1.809927831272944 -2.089620100161483 -2.065722065920454 -2.956409079629566 -2.960153797941985 -1.444059743297657 -2.529404099579097 -3.193432130811289 -2.89610618591405 -3.250703753011294 -4.106654370094816 -2.487584122120097 -2.009305358160418 -2.03309839972826 -2.723198875995877 -3.546836676307066 -2.754010959812149 -3.101800364151131 -4.285168161371985 -3.384748481512361 -3.765439577934558 -2.953033745110133 -3.894224968949375 + -3.005448884212456 -3.793306245501299 -3.367120853792585 -2.81847324642149 -3.996491697591409 -3.784095737013558 -4.227826938229555 -5.097377308240539 -4.469629524730408 -3.926544597587053 -3.362626700183682 -2.799541109759957 -3.261586221215111 -3.238214780727731 -2.391910120937155 -3.85576807001371 -2.642056320791767 -3.12655811529612 -3.247093224275886 -3.020927140394633 -2.000228469922149 -2.84711082461763 -2.535568830979173 -2.523943308939863 -4.746326547421631 -3.328913111559814 -3.061349607654847 -3.235309891011639 -3.491941654912807 -3.121836797595279 -2.031466709249344 -2.340187193200109 -3.300513985663201 -2.272030624008266 -3.459142009472089 -3.354520544467505 -4.320399547666341 -3.324598379899669 -1.777196313157674 -3.194700881941117 -3.09920081681139 -3.83392708649194 -2.649745047971692 -3.048130976448647 -2.546047734433767 -2.419073097206251 -3.541819674735972 -3.75393865766307 -3.177440153757743 -3.314004398514044 -4.65646884274679 -2.597255271276651 -3.377632111636558 -3.694366141156934 -4.519686479022766 -3.321363140084941 -3.183518520050711 -3.567767564603855 -2.638709383471223 -3.965423828939322 -2.804345282854854 -3.884649412025283 -2.73265885255887 -2.727429336760906 -3.089593526947283 -3.504569683853333 -4.614894669079149 -2.528935757469299 -2.594512369739277 -2.378352296102094 -4.180520639212773 -3.254866318879067 -1.969809181631717 -2.353168192397789 -3.248390806762472 -3.054848487776781 -3.737337438692521 -1.817476297967005 -2.213653913284816 -1.919255663687863 -2.925800337947294 -3.002718432778465 -1.918257695180728 -2.789058520733988 -2.875851163932566 -2.697118134023867 -2.767327681901634 -3.836904387773643 -2.485922308992485 -1.733774617001473 -1.796650156344185 -2.705621729985069 -3.332875791342303 -2.972467142037203 -3.277442159789643 -4.397320111740555 -3.336770791391245 -3.803916694958389 -3.499189136927725 -4.075524736461346 + -2.780804633811385 -3.025864452032692 -2.963791309346561 -2.472724910599936 -3.476995901939517 -3.140570463052427 -3.761803567933384 -4.388156516932213 -3.712367707852536 -3.28227653171416 -3.017473190391684 -2.300855656823842 -2.311776400962117 -2.541980273106105 -2.235081077737732 -3.584073020533197 -2.755604358222399 -3.170197052587355 -3.541644342459222 -3.224433711093297 -2.081399064903053 -2.971501108499069 -2.602684760124248 -2.636909911640544 -4.501259041426238 -3.323651697741298 -3.028379230476276 -2.797218018355125 -2.899504906424227 -2.742812686252364 -2.305821826611009 -2.784361582758265 -3.718217291662313 -2.600161836571033 -3.519233343214637 -3.584571995457054 -4.169090645987666 -3.167494013392371 -1.744091949024437 -3.594959514581888 -3.114807519244096 -3.660808116769431 -2.756509046625524 -3.43584618216039 -2.695550079794147 -2.26578829462931 -3.886412491095168 -3.532859324638252 -2.85658047784591 -2.938203925609059 -4.255302664783812 -2.466364030405515 -3.168650030698245 -3.054254624147688 -4.052345209100167 -3.1714520177552 -3.554691872410331 -3.589126620356183 -2.783221528732213 -3.982585475918995 -2.992549385720018 -3.924889423059994 -2.64310889113176 -2.714626930348459 -3.345064823462963 -4.159492572771342 -4.550597984785782 -2.826164548416045 -2.627213536302861 -2.54758039214903 -3.671889625631593 -2.722931763579254 -2.008808774357021 -2.31719889435044 -2.735390036879835 -2.300291713418119 -3.209964698360636 -1.462149517405123 -1.961240789130898 -1.519896119037185 -2.585860143280684 -2.84158303212007 -2.165490705781394 -2.84162507654537 -2.453230934149587 -2.332052746544605 -2.227307272315784 -3.185546027844453 -2.301012089850701 -1.443339979312441 -1.397832423052023 -2.444160453122095 -2.957000708018313 -3.007428225500917 -3.042628891191271 -4.06642389141598 -3.100260459456877 -3.45797029668438 -3.551341336554742 -4.050196638481851 + -2.598720458609023 -2.328102992032655 -2.451285111659672 -2.156224870581354 -2.786222020813511 -2.402790157360869 -3.296491808872815 -3.676324157229828 -3.009227188922523 -2.782614288137665 -2.630187067779843 -1.928287283488316 -1.687273899395677 -1.785613861723277 -2.051976011726879 -3.150082556412372 -2.860742895672047 -3.103623086358311 -3.748371081185724 -3.287166618222727 -2.253595277933528 -2.87701625135378 -2.397372452411219 -2.507228832373187 -3.994786836730782 -2.942315506017621 -2.768995727659785 -2.193618055737716 -2.053262221204022 -2.464497870181276 -2.577226779716284 -2.997437572847616 -4.16162116457815 -2.84173471512895 -3.667679959951556 -3.724968734408094 -3.540926814487008 -2.775274750009544 -1.652681677278338 -3.641255506129482 -3.02789633559064 -3.285835933350199 -2.578380503788139 -3.464583717913825 -2.833938866368797 -2.578818568652348 -3.960302237114806 -2.944067644265886 -2.354697416082672 -2.324534373439064 -3.655940139149493 -2.173274762721832 -2.685205957671087 -2.247734633316668 -3.276013576355126 -2.644748838990154 -3.754978769029549 -3.29285005287602 -2.665812548534632 -3.881511054764701 -2.990651790557664 -3.888365584782832 -2.37323060374888 -2.462950383992393 -3.134843028793512 -4.247554999832573 -4.149166910532585 -2.864060088126053 -2.661600614244435 -2.763163818612156 -3.026648242612282 -2.026803326967638 -2.008732905254874 -2.37593998911143 -2.168970436725431 -1.402959892810486 -2.286897728193935 -0.9266904899559449 -1.443808073008313 -0.9690097226819034 -1.98011275984959 -2.606156105781679 -2.209082997431778 -2.776113959723489 -2.073005460190302 -1.888761396524274 -1.89482908154082 -2.430280880984128 -2.054843712457114 -1.299953378610553 -0.9414738267632856 -2.049659733795124 -2.451408518649259 -2.975135812483131 -2.700620203011567 -3.633385124388951 -2.796403942287725 -2.95225301961932 -3.158227811696747 -3.832068961331479 + -2.632671333475628 -2.121321152015298 -1.881188544324687 -1.803104339473066 -1.945662286167135 -1.558824521354836 -2.789330170169706 -2.977103924280527 -2.533042404946173 -2.539536945972941 -2.294277273179432 -1.746445171821506 -1.475464434231071 -1.035251151892965 -1.843292493171759 -2.595537620152129 -2.611887839392537 -3.00267840288609 -3.86543035545219 -3.214625393089136 -2.494982649031499 -2.559989255544679 -1.932019642057639 -2.234418497921567 -3.265547739742033 -2.275593203059543 -2.383179072170606 -1.615685617134659 -1.367244272987818 -2.490023093488162 -2.863006410469325 -2.750259359178528 -3.95338849838339 -2.76776085930527 -3.512077427356758 -3.524435145866732 -2.440891749713408 -2.473300058830652 -1.298368139524648 -3.440720297302505 -2.928576216157808 -2.879013322906928 -2.226788792416414 -3.097460438490913 -2.720914902252737 -2.804832114369973 -3.749457949151346 -2.192147356328547 -1.781716083975425 -1.614002326699847 -3.022708998758162 -1.782867357461697 -2.037916016253121 -1.872080227220181 -2.513285652074956 -1.928856285920574 -3.695166144362702 -2.653541488785777 -2.178359902754096 -3.663244114781151 -2.764011196456167 -3.750626081473683 -1.908472865536623 -1.937210821461122 -2.396301417668838 -3.504063823729666 -3.410077273218121 -2.502649716324299 -2.443910253720333 -2.630771322058536 -2.446507279841171 -1.359328848186124 -2.057431647674093 -2.525731182903655 -1.695155635548872 -0.5842191475002778 -1.276402723097476 -0.4606049674848691 -0.8194228734223543 -0.3722854940202751 -1.218275709008026 -2.458792916854009 -2.164770110466634 -2.642115601870785 -1.878002863356187 -1.501318930409639 -1.932393666899998 -1.903806623314097 -1.923824229758793 -1.464422614168143 -0.5719822886348993 -1.680286296927989 -1.87583514207472 -3.013137462352461 -2.649675464348547 -3.553215210530652 -2.616102313774945 -2.667536925231161 -2.517764972233039 -3.403457944770369 + -3.049668155043037 -2.699160680886052 -1.401539621176198 -1.410015027593545 -1.054737213245971 -0.635145864529477 -2.245464737574366 -2.321757878024073 -2.45086039101443 -2.63011632719099 -1.947820780566417 -1.719912999140888 -1.543981882781736 -0.2986211388967774 -1.544289473808988 -2.009429164107587 -1.633263136942091 -2.9258087594377 -3.915383799358096 -2.988984005617112 -2.728570292794302 -2.06996524880833 -1.290902030001234 -1.96067444781454 -2.402449506214907 -1.503474841021671 -2.023663526520977 -1.148467393107921 -1.12959223654866 -2.77934767164686 -3.133212887071295 -1.901177563707535 -2.638588236878945 -2.259717243774958 -2.758014973729274 -2.891938397004907 -1.012550481365029 -2.116282829048743 -0.4526157604629475 -3.170382280913543 -2.910298074252637 -2.651117348936054 -1.781617488243569 -2.330331664232762 -1.881314448442984 -1.216604503825998 -3.310499133507771 -1.37135693336468 -1.223039553438184 -0.8851111016104483 -2.485808068225424 -1.345310063787721 -1.379817573421292 -2.084585450987106 -1.976158139927463 -1.20534330483963 -3.33160161258229 -1.720152059371685 -1.263111556697993 -3.335603235251426 -2.34803038019141 -3.537081749585127 -1.327137109555906 -1.262657513863815 -1.320670393073669 -1.967654738722104 -2.37002599588277 -1.632763487692614 -1.688348800259746 -1.700665535623557 -2.052393488371308 -0.8307048680362641 -2.183433640930161 -2.62194990250191 -1.429912998393775 0.1394709940328482 -0.4629542643845639 -0.2806391439503386 -0.2174825838910692 0.2108032599753642 -0.4365280227952439 -2.519109064085512 -2.189551115836366 -2.388676016394328 -1.932401094499539 -1.282186051292626 -2.287509662963856 -1.835995273328706 -2.062265535977076 -2.026474315414816 -0.4207147729848657 -1.462731123604499 -1.29183788280352 -3.185315761558741 -3.127886393612243 -4.108802876766731 -2.665057149130575 -2.833284307928125 -1.841131017585241 -2.752851635230185 + -3.908393312900671 -3.981271190934876 -1.209363545440283 -1.038379078945582 -0.2638046704923909 0.3013080248638289 -1.717180261506655 -1.747260153197203 -2.849284293941764 -3.047918237065005 -1.342519956403521 -1.703241718209028 -1.611937047279412 0.4381634289581768 -1.089120024875271 -1.504743343378209 0.07690010541226133 -2.87964727374316 -3.933973387044716 -2.618354604860087 -2.855638845178873 -1.489079933724042 -0.6006597098285056 -1.757329290991606 -1.522179249277542 -0.8326441851859272 -1.83833926031366 -0.8619932725132458 -1.433151952340154 -3.110281356445626 -3.301058598165014 -0.5295366379221207 -0.4777972509309265 -1.482543047488889 -1.642645367880604 -2.061990526866197 0.5199454820444576 -1.349728374537785 0.9694137147280149 -2.970763664935873 -3.032789091043924 -2.742288425916598 -1.22836155218868 -1.284353486117856 -0.4367080497485132 1.61136609279361 -2.726907593811243 -0.4345767617242995 -0.7185741757299411 -0.1385210094456681 -2.076827265717725 -0.8551067806411368 -0.850668707279965 -2.422609515463563 -1.682486403305631 -0.588539874143919 -2.70325086370849 -0.6228299671010973 0.05764115847586027 -2.913652073816792 -1.858659281727501 -3.335478296247686 -0.8019185852585906 -0.6851737417289314 -0.2818321455706609 -0.04638222102289546 -1.131472962635144 -0.2734489297991445 -0.3157249761935645 0.200111255551974 -1.855348577939367 -0.4553502455892158 -2.353231449507803 -2.462732537715056 -1.431584420643958 0.823135033489649 -0.03515794030892039 -0.5115394676386131 0.2833683151075093 0.7610221974989599 0.2355265267138975 -2.822634388415594 -2.421751023704587 -1.935952019605466 -2.184633501382905 -1.26686553116474 -2.729871245864771 -2.248432335885582 -2.531534938885216 -2.955277459507215 -0.5601212461360774 -1.432314849912927 -0.738868119698509 -3.426629805462653 -4.067275981567036 -5.220401489258165 -2.889130205281788 -3.320637903388047 -1.26048297769848 -1.894576592470142 + -5.089093484019941 -5.479109923336182 -1.468422793719583 -0.7795197397726952 0.2842133983795065 1.158179423397087 -1.284100196206055 -1.282116373141434 -3.674905901847524 -3.678763880911902 -0.1269564575999311 -1.478156881490804 -1.381767649032042 1.165108543349419 -0.4487415689198642 -1.161505833617952 1.988860845524242 -2.833287340494451 -3.955485280996754 -2.177154532845236 -2.815672473358063 -0.9160866410475137 0.01025360107723827 -1.584434383435269 -0.7418628177510982 -0.4317407988119157 -1.920769707074214 -0.9012172399202996 -2.228504577120248 -3.277538583446756 -3.257286859884687 1.024901926392566 1.730850283535396 -0.7532984135605858 -0.7814092880585051 -1.461736538449298 1.915542043086942 -0.1457942777897316 2.756700254575985 -2.883635409010537 -3.292650029627737 -3.128622862648541 -0.5520178443069312 -0.2500241116144721 0.7608109580888665 3.077733819793023 -2.077702826779519 0.6654596116056517 -0.28231607384771 0.6272074826267158 -1.726782019450454 -0.2610564701478104 -0.5354561746823947 -2.121460735894473 -1.483571325929887 -0.1018956901795036 -1.934356951936934 0.4408296916826657 1.666000083694144 -2.422514143788391 -1.465027956712115 -3.269354009995197 -0.5439151530529216 -0.4577681744633537 0.380377266137657 1.64053295108215 0.1336037302897921 1.383973096261514 1.445154863555302 2.81031765622663 -1.779307852982129 -0.1868094091259991 -2.500020228090762 -1.906762744790171 -1.698913561730478 1.417272713826023 -0.07976327150427664 -1.180074393868836 0.6286654862803971 1.254181975296063 0.6957364357781159 -3.32363633582446 -2.932869844552727 -1.311265336804247 -2.487254910909002 -1.401014053459335 -3.011481322399064 -2.955825502325339 -3.265569422938142 -4.092443440120405 -0.9818609403414484 -1.518738622265118 -0.220469402209801 -3.555760099644431 -5.129389230635979 -6.459545181448448 -3.121136599107416 -3.700511279869843 -0.7587475509544088 -0.8403963299315502 + -3.431140463079828 -4.412613344962665 -2.396038892373326 -3.98038632324824 -4.691572827712662 -3.526555451229797 -5.671232851585955 -4.954186148093868 -2.59446207234032 -1.389139669360702 2.530376234166397 1.623159563064291 2.596705456330255 -1.457151958718441 -0.8112751162933591 -4.519017283342009 1.451376230479269 -2.724607224297642 -7.263102379611155 -6.492225094656533 -5.325512093540965 -8.456983264790324 -5.900770029638807 -4.681704237707976 -6.669076262616727 -5.739059986535722 -5.729309185582679 -1.295331011371673 -2.42192456572684 -5.701424501211022 -1.86448065282616 -2.162393760869122 -4.949383808762263 -2.525899061355972 -0.4277364885675752 -4.929725036688524 -3.095390559064541 -8.217769085461441 -7.350172401409296 -5.641294587202765 -2.258137874879139 -0.2407244888507876 -0.304854553670225 -0.7899338492196364 0.5093033630220503 -2.142302269625202 -3.062869770045736 -2.796760051274674 -3.081748776016411 -3.551110562205736 -4.060904321323505 -6.024769054760725 -6.846697214947653 -11.3566853207883 -7.991302293573654 -6.970986179536112 -9.935624765395914 -13.42692240062388 -9.307239870339913 -9.179104332260238 -8.87066255892497 -6.095975168170298 -6.008067326318042 -7.044446225830143 -10.58987186364448 -12.66013057022246 -9.717605227827335 -9.902714120318706 -11.77183345696812 -16.22305792584575 -8.562734412567806 -13.82721567162662 -9.808260237794457 -12.35338783014777 -11.52901974435554 -11.86057997192006 -10.15123925743751 -13.46672627705084 -14.4789165818479 -9.053621695572133 -9.743700216936077 -6.301413020752079 -7.50502448885959 -8.329207561719841 -9.506334251711678 -4.200100004625369 -3.867263460618915 -4.997709721004071 -6.550061480400473 -6.158804348111516 -7.316397750392753 -8.185213079652385 -8.432451402446532 -9.433244800880857 -5.513025344633206 -0.2774654600380018 -2.644769701880705 -5.032759276540446 0.6883427556754214 0.8013006939334444 + -4.680785286147511 -5.552622069171775 -4.071024912060238 -6.138385409816692 -6.57206089695319 -5.444754470634507 -8.327267815257073 -7.22712435133144 -7.175780465535354 -5.227723130763479 -1.66725045298881 -1.129262747357643 0.4061701602513494 -3.364329471915198 -3.246013130449228 -4.786120136168847 0.6817128442533544 -3.806851141086327 -6.916905445039447 -6.728023243986172 -5.586063319085952 -7.602497707453949 -5.584479657449265 -4.884491148054479 -6.490639394811296 -5.863934085202345 -6.287765930122987 -2.614812654957859 -3.007479808817152 -6.400711094433518 -3.652962896385816 -3.950397144538101 -6.16023624024524 -3.801099921524155 -2.359769399429979 -6.95769915043752 -4.010048337816926 -10.44515749274044 -9.387824351627046 -6.796632165129722 -2.9185335840466 -1.176449575436209 -1.102121804989224 -2.343113306816917 -1.632160087093116 -1.669791025585274 -4.428025232406497 -3.945890622741501 -3.340364211496308 -3.351976270614387 -4.421869666353814 -6.461937061628788 -7.160947636010405 -10.14418598384327 -7.963656694198789 -7.774636653405651 -10.27267273387315 -12.57786577739535 -8.759914562955601 -8.114261673470423 -8.243200582945029 -6.311429436931803 -6.581041596276236 -7.628745300271476 -10.55002947108915 -12.69511869247071 -10.14221016889951 -9.910926479625005 -10.92022536778268 -14.67026432837156 -8.880701352907636 -13.31849277002038 -8.804437171034806 -11.33377006593946 -10.84841305180817 -11.78155190821258 -10.5021387235056 -12.8223983622629 -14.09565014429063 -8.626740436450063 -9.695885880208721 -6.680612601681446 -7.866772285843581 -7.680696555584291 -8.708300559170766 -4.625065773768256 -4.870529333540162 -5.757725234200279 -7.233858314079043 -6.537663328586859 -7.472696716324208 -8.745044425206288 -8.353985651870971 -9.43470344690104 -6.971129043029578 -1.95964971374633 -4.393967865373725 -5.720603086530446 -0.5067160519945446 -0.7399739443657101 + -5.608413355963421 -6.305191743889736 -5.399132343118254 -7.628763916654862 -7.633404340700508 -6.654193819536886 -10.08152192270063 -8.765218368924252 -10.33297699706236 -7.883832913430524 -4.878773298940359 -3.384229851268174 -1.584426615423581 -4.886327524276567 -5.062515447645637 -4.517703201919176 -1.457409869957701 -4.55135075947328 -6.298955999371174 -6.278566366800078 -5.372847114804244 -6.459947997000199 -5.065651163073198 -4.650262943583527 -6.153181624897115 -5.703964641033963 -6.483427364961244 -4.01798158926249 -3.679886501247893 -6.990730694712511 -4.987848508810202 -5.256738053515619 -6.5626819023596 -4.990727846470008 -4.490324497836809 -8.566495067381993 -4.792565336156088 -10.74658053578833 -10.15049329806618 -7.316607068271878 -3.173334078269363 -2.149879336223648 -2.207452794457367 -3.468016846216642 -4.427595020542167 -3.014702591013759 -5.428495694941724 -4.847725840202884 -3.508435609045591 -3.204339468807575 -4.59693209537545 -6.693845591467209 -7.064311055411963 -8.722812358814735 -7.543853764680534 -8.061766658527176 -9.961849940493266 -11.16776031000336 -7.888931893784616 -6.905777113654892 -7.312008192471922 -6.261575455418551 -6.831256888081953 -8.030415887031268 -9.933848897722783 -12.0599138534817 -9.930983872171055 -9.26157966503024 -9.56525738439359 -12.55114106722795 -8.465039250335394 -12.16404714378587 -7.433684347255621 -9.810714648279827 -9.758675348253746 -10.43444889499483 -10.1379366133724 -11.48882014763149 -12.97442831535272 -7.934411005906668 -9.156156713943346 -6.60756684844614 -7.587479141166114 -6.133748282257784 -7.537970954499997 -4.710896134835139 -4.844834116145876 -5.782359113785787 -7.173768085423035 -6.357166079027593 -7.090530992030835 -8.483776783035864 -7.870569776092452 -8.844889951156802 -7.622373545116716 -3.027625140552118 -5.348906480093319 -5.670749327329759 -1.628380679436759 -1.906445357840271 + -6.070595376459096 -6.639416267986235 -6.259440326233744 -8.414586724400579 -7.918603022677416 -7.227361006778665 -10.9435396215049 -9.589609255359392 -11.87199033274737 -9.298541993190156 -6.77169053826583 -4.851099670893745 -3.073990591205074 -5.819165984973097 -5.910572600324485 -3.865863916687431 -3.995473677931159 -4.808228505685292 -5.485318592323893 -5.258466905510431 -4.795648151588466 -5.247723486598261 -4.407607315235509 -4.114310663624337 -5.681377935616183 -5.242334561713506 -6.247200260979298 -5.014695564903377 -4.174204593435206 -7.224397811929521 -5.634041303142112 -5.920517178569753 -6.645636502916204 -6.025906857719747 -6.510812819726198 -9.303235014710936 -5.467077770106016 -9.603267327095296 -9.82004075162024 -7.133417898063726 -3.031660467725487 -2.928230398920277 -3.32189490844803 -4.019140869680086 -6.281297593148288 -4.858942306091365 -5.859730577202455 -5.327497364023884 -3.540355202759201 -3.091100619350527 -4.503160571952776 -6.556060155995965 -6.538717990756595 -7.342177505741347 -6.704681294314014 -7.609254543757743 -8.970362411895621 -9.35804781639672 -6.770105255065118 -5.685726874852719 -6.13772793679064 -5.936310135019539 -6.643146612313103 -8.078473044735802 -8.625116057926789 -10.70678280744323 -9.028148449198852 -7.862045342371857 -7.652463931958664 -9.953215683108283 -7.319907357996271 -10.25653440896713 -5.760797901944898 -7.946321515002637 -8.353541691391001 -8.155089795374352 -8.999292146895868 -9.528042765683495 -11.10839285825114 -6.944261953322666 -8.130985222317804 -6.104058266260381 -6.706389129183208 -4.395668110255883 -6.251880335162923 -4.526734390673937 -4.039686223513399 -5.199878199973227 -6.461082617289321 -5.72432867806674 -6.265106997483599 -7.537033355623862 -7.062506907892384 -7.712362747326551 -7.469719286164036 -3.485757713042403 -5.56128858928696 -5.147239574092964 -2.455490723280036 -2.334772092974791 + -6.032120035104526 -6.614555618922168 -6.620751649723388 -8.56922820656473 -7.613043314802781 -7.302908346173353 -11.01971151425096 -9.796015198204259 -11.94208482391696 -9.626436345870388 -7.307694508024724 -5.469310277396289 -3.950608536368236 -6.076418906249046 -5.723577728980672 -3.075868620085203 -5.588556899446303 -4.581173237172607 -4.574050857974726 -4.01069991820259 -4.045580040667119 -4.152131188879139 -3.676358498760237 -3.496638354294134 -5.124474581956747 -4.509919534386427 -5.597852774619241 -5.173908032509644 -4.201828853209008 -6.852518052955929 -5.515615005688232 -5.908740879887773 -6.570342569457353 -6.51489425296586 -7.734028296246834 -8.838344739868262 -5.858157519138331 -7.903698870151629 -8.771506953212793 -6.297439812416997 -2.603770207064372 -3.331335605250842 -4.111989640939555 -4.122513428912271 -6.326507630780782 -5.340812327215303 -5.66378673078388 -5.375438492907733 -3.378415159977521 -2.957175679404827 -4.152006608378088 -5.99103063251016 -5.658335457022076 -6.044231083935301 -5.443714165494839 -6.378695016492202 -7.434421066442155 -7.382059249441227 -5.525119595084789 -4.581401122157786 -4.841750932168182 -5.385353928674704 -6.013483817648648 -7.6677890554638 -6.723289297231531 -8.744097146838612 -7.561074025514245 -5.89026498280964 -5.348839157397379 -7.100186851130275 -5.680639136604441 -7.783695808961056 -3.950542460923316 -5.93690858158152 -6.800852365664468 -5.548010802122917 -7.20386451593231 -7.147153549678478 -8.671166350093699 -5.685793703047693 -6.736520860383507 -5.239460496064794 -5.360604174019045 -2.987160170092011 -5.055084174995272 -4.160390634470787 -2.947698021819178 -4.238359397412296 -5.305662460919848 -4.816246678188691 -5.165282358653712 -6.134725265259476 -6.067844109671569 -6.182445813676168 -6.651047452629427 -3.479241322274902 -5.342175744419364 -4.54696333078391 -2.965445252237259 -2.212390624558306 + -5.575489794082387 -6.327474809644627 -6.533253529138165 -8.229114367342845 -6.962891580049472 -7.040301515211468 -10.47911129087879 -9.526968808931997 -10.95234733747202 -9.163817679131171 -6.72569699503947 -5.393497580385883 -4.300526990720755 -5.733065003975753 -4.730184561335591 -2.402032230337227 -5.583523443963259 -4.006190310602506 -3.67235829290621 -2.923689967152313 -3.315881667320355 -3.276376410271041 -2.938225495527149 -2.967711828834695 -4.553019199185655 -3.599343217872956 -4.65028177703789 -4.415025759106356 -3.6299393965528 -5.838654104119996 -4.751481826273448 -5.339020020624048 -6.188979091384681 -6.042756361101056 -7.543530483910217 -7.238681854193601 -5.730095075835379 -6.125686207528361 -7.290394822160579 -4.977583380828037 -2.062542630519602 -3.316074966594897 -4.336619876265104 -3.867195718532457 -4.88282934884279 -4.302301154539691 -4.949809856282947 -4.9966319815303 -3.014115668262093 -2.748453873115977 -3.652052749314862 -5.074517248912343 -4.579827309035863 -4.700490425966564 -3.882815242933248 -4.589068945748295 -5.641008359089028 -5.494829034658324 -4.295609477173571 -3.693590052248737 -3.58735118090496 -4.720995894213502 -5.07701036292201 -6.829465752860415 -4.585402953052835 -6.460988160222769 -5.818522257879522 -3.73771455273527 -3.061494900950493 -4.371618756795215 -3.94460022792191 -5.176339676254429 -2.246057870390359 -4.017977629155212 -5.3143231198992 -3.184181929549595 -5.061178342410585 -4.678764565640449 -6.00957292183648 -4.289923223657297 -5.188408736264137 -4.15636630961626 -3.775816929447956 -2.049744832284887 -4.076547154334776 -3.70049211753485 -2.056880430888668 -3.174732165299929 -3.985611386546225 -3.839777895653242 -3.99966362351006 -4.567465268784872 -5.051117058479576 -4.490878424090624 -5.357525530554994 -3.155250126015744 -4.973054257156036 -4.106547414829038 -3.20488396806104 -1.962320364975739 + -4.870248595478188 -5.868947652816132 -6.105236248185975 -7.545944073353894 -6.195078574237414 -6.583186191091954 -9.519063925465161 -8.941935253846168 -9.4257047243118 -8.256001673755236 -5.477482574184251 -4.910340088099474 -4.345730606175493 -5.023618820235242 -3.373999478460064 -2.024403107399394 -4.390243914639086 -3.282883569552723 -2.881896706301632 -2.193647038649942 -2.733169291041122 -2.635854179643502 -2.262233735003974 -2.561361339807149 -4.048370382326539 -2.660342391267477 -3.59412027966755 -3.088457048383134 -2.603244384245045 -4.442457619739798 -3.621890837747742 -4.414895327367049 -5.406537577346171 -4.621579638974254 -5.981542412440831 -5.049893692164915 -5.046934147203956 -4.250038792857595 -5.588512449633527 -3.446555400330908 -1.590416902619836 -3.0015238739079 -3.95323474936049 -3.218486196026333 -2.878828462431329 -2.947436092631506 -3.954174308799274 -4.165884648790779 -2.532808586522151 -2.460561943412358 -3.168908183207805 -3.99086943675843 -3.507677222382881 -3.220779585268247 -2.320710063719162 -2.675543565921544 -3.938564063815647 -3.91726824563375 -3.212980544579864 -3.080681910116482 -2.536294108246395 -4.085313550696355 -4.060546227492523 -5.726581046488718 -2.691258529732295 -4.2577070106272 -4.170183350412117 -1.858652665266163 -1.290636647005158 -2.213522891353932 -2.537425553571666 -2.952942301315488 -0.904486451545381 -2.443152187675878 -4.10185312032263 -1.417879227218691 -3.014156320100483 -2.509266047683923 -3.563376184692061 -2.976983182767526 -3.751877328814317 -3.068632478453765 -2.228776388642473 -1.459403973492499 -3.377313454042451 -3.232676450310009 -1.649695229241843 -2.282194079255078 -2.78076994892217 -2.983640610229486 -2.970855976649545 -3.13480317799258 -4.164945669170265 -2.924684296012856 -3.829204815963749 -2.633912703277019 -4.54030489832985 -3.781471687485464 -3.15240849615293 -1.837909363072628 + -4.116021901147178 -5.321083648617787 -5.47525251195475 -6.657191118079936 -5.468422606572858 -6.039846729494457 -8.336687416333007 -8.190825522637169 -7.842762215896073 -7.211464912314113 -4.103571565668972 -4.320992179596942 -4.331703446096071 -4.264330694126329 -2.157337087218366 -1.995156935379782 -2.956512852027117 -2.606453061259344 -2.283974890464378 -1.767840240267105 -2.336015871995187 -2.197531707632152 -1.720341518004716 -2.209822416214706 -3.685642962198472 -1.870825602672994 -2.645440721425985 -1.795872305927332 -1.521381921298598 -3.109132593377581 -2.473395278105272 -3.351707242352859 -4.401577277858451 -2.809776998541565 -3.8713836164643 -3.064069861468852 -4.07973767797921 -2.300689789781472 -3.963081387667444 -2.033357347064339 -1.327069103214853 -2.61230161631056 -3.149289613958899 -2.241151388466278 -1.168189775188978 -2.19945294957688 -2.95776031234594 -3.00011103851466 -2.097822708965396 -2.16398888475851 -2.86208586390876 -2.970075292053821 -2.642595238475224 -1.768817748432411 -1.163364738802557 -1.135749622881121 -2.617143450574076 -2.792186044091068 -2.37360107483164 -2.752233478085941 -1.800881320549166 -3.597051491370621 -3.189527808624007 -4.582149134919746 -1.414245325693628 -2.505300484124746 -2.951336110258126 -0.5986180197896829 -0.3934290976994816 -0.9609392573402147 -1.765100034208444 -1.523667615256272 -0.1116750989895081 -1.42147436436062 -3.305492802617664 -0.4095880881823177 -1.510410152653549 -0.9702349668841634 -1.733387325581134 -1.985664125947551 -2.665457121150666 -2.211577124773612 -0.9851974788452935 -1.078266128213727 -2.968636254042394 -2.8390263032029 -1.745363853253366 -1.775890167870102 -1.907185048865358 -2.374761082335681 -2.22850639448734 -2.080833292504394 -3.51506765515478 -1.751181523824926 -2.384882534119242 -2.07781148119102 -4.015352053884271 -3.406744383133628 -2.741366790427492 -1.842400871061102 + -3.481824509231956 -4.780674444198667 -4.785731315860176 -5.679421610780992 -4.86439350056753 -5.480502893551602 -7.107874590932624 -7.394395390729187 -6.526092258096469 -6.243560302984406 -3.061922838660394 -3.834686916168721 -4.404603916969791 -3.718231678226857 -1.445411559822787 -2.236480259004111 -2.02027705807177 -2.126901384823213 -1.926991996842844 -1.516887341291294 -2.100257935842819 -1.931114851893653 -1.378638626352767 -1.864837722839866 -3.513670309141162 -1.388236436061561 -1.985111726702598 -1.074977547752496 -0.8588024161399517 -2.246346806918154 -1.599934907954776 -2.361385042635447 -3.526241080555337 -1.363786298205923 -2.293114840780618 -1.895554752414682 -3.245542491049719 -0.6893691289128583 -2.756015021707299 -1.039850458115325 -1.332101540232543 -2.368876688148248 -2.264205726403816 -1.26765913244526 -0.2242618477438896 -1.818838786844026 -2.198964445362854 -1.898661287577397 -1.874237985279251 -1.982045225456204 -2.826010583699372 -2.211108686854345 -2.126750123346028 -0.7609224309289857 -0.7445560252917858 -0.3329572131933674 -1.819289040711737 -2.164399251254508 -1.825952194970796 -2.673075435588885 -1.415726671913745 -3.309326332155251 -2.601889503301209 -3.591470046645554 -0.8606123030695016 -1.412849331987672 -2.352724674005003 -0.08098598701781157 -0.4005557280270295 -0.6642983543133596 -1.711027691031632 -1.037541301862802 0.08648155714035966 -1.0332442294457 -2.955684388325608 -0.2113944955326588 -0.8443997192653114 -0.2304124062320625 -0.7481202115350243 -1.472403064465652 -2.06634895352181 -1.757850065695948 -0.2310736978270143 -0.8989035660133595 -2.820532740699946 -2.586648362610958 -2.176002371514187 -1.75828322628513 -1.469342743965171 -2.051048531735432 -1.834084668400465 -1.534083744314557 -3.138510999368009 -1.136098017072072 -1.382835111064196 -1.729092430658056 -3.439525690082519 -2.95796768360924 -2.050960108239451 -1.934961974847301 + -3.061367229056486 -4.356775885244133 -4.158423251836211 -4.714241467911052 -4.404656276979949 -4.944451412753551 -5.971994957340939 -6.633084803288511 -5.595333220666362 -5.449290164386184 -2.574334104665468 -3.515700074105553 -4.537138200732443 -3.476794326527397 -1.316949836922504 -2.592492552061231 -1.755987283307604 -1.927373676349816 -1.818818435620415 -1.420954762223118 -1.978600038048171 -1.832801768450736 -1.278226464972249 -1.583349181572203 -3.537950482379529 -1.296589330326242 -1.704477868101094 -1.134458607208217 -0.9096271166017686 -2.025274915587943 -1.150809966427914 -1.646345656145058 -3.043861633557754 -0.7393912839897894 -1.838535918450361 -1.659407404560625 -2.83735417065941 0.03300217534956573 -2.116043777300092 -0.6477064166738273 -1.574300807734289 -2.388196056617289 -1.636537530794158 -0.7337633773781818 -0.09660046351814344 -1.183155758784778 -1.817505428350259 -1.365849398171122 -1.938964033313823 -2.024007103028453 -3.056105587977981 -1.817989047860692 -2.002337288030503 -0.5925307842207985 -1.140713467210844 -0.3548610309735523 -1.524430234934698 -1.987116617841821 -1.570661214067741 -2.776110411939499 -1.341886460878698 -3.202984211020976 -2.316360126929794 -2.871283965581824 -0.884259861188184 -0.9841888285445748 -2.362781489551708 -0.1987515936043565 -1.004356227906101 -1.041869594810123 -2.219744117857772 -1.339141561475117 -0.1984776429162594 -1.176944214272226 -2.960460662558035 -0.7470490987507219 -1.038549181307644 -0.2346664341639553 -0.5873577674901753 -1.435051675739942 -1.948166826318811 -1.742956052525187 -0.02298209623313596 -0.9892224029076715 -2.859626113633567 -2.502820850430453 -2.707286793922322 -2.178570419308244 -1.442867146182834 -1.959869735910615 -1.749022523319582 -1.475007244644075 -3.000716446034858 -1.086147197071114 -1.074378119672474 -1.814543274660537 -2.981136882088322 -2.624442809181346 -1.43696467337395 -2.166265202173602 + -2.855318227368116 -4.111965130818135 -3.670774859914673 -3.850779559405055 -4.07334615032596 -4.448251201283711 -5.020423410118383 -5.944486088286794 -4.994424277039798 -4.82371465817414 -2.575814331736183 -3.302994141060481 -4.557122271084154 -3.437303056743986 -1.56482207735371 -2.908841632180156 -1.901585270201849 -2.006526635224873 -1.92652523768993 -1.554742787513533 -1.92433918345705 -1.906502969122812 -1.412707940617111 -1.488872297387957 -3.713048774327035 -1.570308120128175 -1.778685423909337 -1.776471989927813 -1.606140094254442 -2.307882480199623 -1.104419296909327 -1.335707896520944 -2.932265482977527 -0.8597003354416302 -2.270489215956331 -1.996816242653949 -2.885442476337175 -0.3399761258224316 -1.89774564854406 -0.8579062912813242 -1.95142861721888 -2.646391116928044 -1.456703411246963 -0.8517927960415363 -0.5627865131947658 -0.6596213329826242 -1.838465057900258 -1.619305917124166 -2.23506660523708 -2.304227360062214 -3.449313416200766 -1.770175975721941 -2.198293598298733 -1.293641936268614 -2.104592694694475 -0.9975729768038946 -1.60382617139112 -2.146928355698037 -1.568952539545762 -2.979705831244132 -1.495952969005444 -3.215489959550723 -2.26183958412912 -2.457364882640832 -1.240861305697763 -1.084906279029383 -2.792531272138149 -0.7044036920669896 -1.737496247387753 -1.625559594885999 -2.972023070804426 -2.050899426831165 -0.7429400742985308 -1.59827649030558 -3.137826091064198 -1.720312595912219 -1.826464818272598 -0.7231757125482545 -1.000405036515076 -1.707631257535922 -2.169458557715188 -2.04727790191464 -0.2782761246535301 -1.348954146764754 -2.972255690761131 -2.551781644411676 -3.121825429597266 -2.832653185104391 -1.693383397989237 -1.985034879333398 -1.852080721258972 -1.749135519716219 -3.011764986469643 -1.447993486959604 -1.441067788029613 -2.371814065787476 -2.801353993934754 -2.615017728689054 -1.333573267741485 -2.578857432571079 + -2.783861470012198 -3.987316062339232 -3.336955072620185 -3.155030163470656 -3.828829872029019 -3.98953299583809 -4.289288295934966 -5.328749499312835 -4.567537449798692 -4.300446950259357 -2.802737806287041 -3.085562139345711 -4.276966030744006 -3.393392684581158 -1.865033543940626 -3.094238169820528 -2.113014829946223 -2.272912065521723 -2.184582268566373 -1.922450146019401 -1.897432255769672 -2.123676996921859 -1.714838785621396 -1.643976272025839 -3.948820616700687 -2.072702242723608 -2.079136101710901 -2.541548166518623 -2.539143169355157 -2.736687086166057 -1.314960433647684 -1.414540346073409 -2.940974966522845 -1.303491356293307 -2.865080177512937 -2.423458994664543 -3.217173590007064 -1.440614865780503 -1.836692157463176 -1.492732039830116 -2.332472181729827 -3.009593775539997 -1.688831803087851 -1.469912378277513 -1.306190840725705 -1.036770296436089 -2.183199599638424 -2.392330097710555 -2.598148561670314 -2.699552879149451 -3.838637663787722 -1.938814716926117 -2.55262106212831 -2.410525521823729 -3.171455503781544 -1.876157858515398 -1.902089182138297 -2.494886031603528 -1.752722022258013 -3.204717966941303 -1.782810828861841 -3.281012998405458 -2.333852820017455 -2.321883687567606 -1.73931994630766 -1.553506064610701 -3.370548469723872 -1.339565896660588 -2.235788333347955 -2.031425086468516 -3.616725642459642 -2.737995731149567 -1.299815875361674 -2.005467471568409 -3.281213424888847 -2.641133471468947 -2.758268547609077 -1.330512552363871 -1.613970294676619 -2.03465399406241 -2.50931132601977 -2.451617497526513 -0.8105104379906152 -1.845631992340714 -3.029609512317847 -2.636138439288061 -3.258146592434514 -3.424699732512863 -2.027883609574928 -1.995949677948374 -1.982554625948978 -2.126889204144391 -3.056227513648992 -1.971847709453868 -2.162867728504352 -3.161901591745846 -2.887512116201833 -2.910614849302874 -1.84540741931869 -3.07434857461579 + -2.727831456686545 -3.800765275911544 -3.103447269015305 -2.650330031618068 -3.605578724436782 -3.546997857680253 -3.759434595318453 -4.760437956894748 -4.149271592810692 -3.803718342545835 -2.967172668049898 -2.787253207221511 -3.644125084801999 -3.173977982046836 -1.994452367871418 -3.129939917581851 -2.229147406484572 -2.575181981828337 -2.51050359155488 -2.375753799784434 -1.870635031888014 -2.400713853341585 -2.063577069136954 -1.960323991415748 -4.130500379644218 -2.594544504521764 -2.421985050474177 -2.988260197478667 -3.187811896601488 -2.948150954689481 -1.603899966352401 -1.742341829143697 -2.903199972853145 -1.706580249755461 -3.108433353710097 -2.693167033821737 -3.590844450474719 -2.525813144676931 -1.771018691946892 -2.26268116785559 -2.604805113118346 -3.30165075204286 -2.096594804372216 -2.222306685154535 -1.950395521938503 -1.935924966439643 -2.694482061896707 -3.142830213078696 -2.836874416266255 -2.991498371535727 -4.053247920801368 -2.144437772257447 -2.865642845584716 -3.248422629109882 -3.880306706398187 -2.597562257945356 -2.29342217494559 -2.873220976092853 -2.031300927384791 -3.386951427900613 -2.113150918397068 -3.353254788718914 -2.434784751715597 -2.380147617201146 -2.271334489338187 -2.25374731111151 -3.852369423146229 -1.927588901990021 -2.409495425259593 -2.164775084715075 -3.901687375531765 -3.076056744321249 -1.688920661865268 -2.209890144356905 -3.232566424609104 -3.053254511902196 -3.385335601539737 -1.72556770425399 -2.080415695703778 -2.185962832748601 -2.745783405259317 -2.739737705303014 -1.396856661282527 -2.28835331035225 -2.934397770464329 -2.634267775909848 -3.049548557246453 -3.682342464335534 -2.264503462120047 -1.903360485377561 -1.996148568592616 -2.389720406659762 -3.027281614093226 -2.415062298994599 -2.780849086513626 -3.781850397786911 -3.040584392392702 -3.230484113371858 -2.611408554464106 -3.464962978940576 + -2.589764660846413 -3.368930709730193 -2.869642705889419 -2.30455284981872 -3.319156071651378 -3.081835481243616 -3.367118672234938 -4.204335552069097 -3.638623309961986 -3.295405739747366 -2.910222771100962 -2.413635144139334 -2.803721656063317 -2.733356044553375 -1.93215834967441 -3.03324884280778 -2.292470211541399 -2.770834882677718 -2.824535228401146 -2.718501751818621 -1.84285373945022 -2.617108497795925 -2.314145415017265 -2.238046721681826 -4.147716678737197 -2.921554097643821 -2.635183632839471 -2.928668200482207 -3.218164329479805 -2.791004449987668 -1.847412972487291 -2.142838985250819 -2.947836718544295 -1.990549311908126 -3.065182060608095 -2.858996645823481 -3.778210531380466 -2.988040923238088 -1.686428278215772 -2.876222297522418 -2.708894266827429 -3.375598887653041 -2.381342951696297 -2.787034610566934 -2.238073607112771 -2.28445593962762 -3.177854773871502 -3.442676054452136 -2.82013602270672 -2.985433796433881 -3.985619724659045 -2.232724819650002 -2.966728738475922 -3.32239889354787 -3.981948732460296 -2.907130016282281 -2.688725227543728 -3.134125750842941 -2.294791366084496 -3.482907760197122 -2.403153032530938 -3.401316646976738 -2.480895304483056 -2.489947161851887 -2.729043413850377 -3.026019172331871 -4.083231244876515 -2.382329771795412 -2.402772626970545 -2.190598356897681 -3.750109794244054 -2.947260993387317 -1.848202290391782 -2.201302519599267 -2.933617565588065 -2.798591673332112 -3.436443160188674 -1.73113545339038 -2.196860014882077 -2.047858660908787 -2.724744913676659 -2.793546895340569 -1.851940845383979 -2.555304645319438 -2.666794697621981 -2.459984421411264 -2.57284170708067 -3.479615931857211 -2.298211227347565 -1.700863724348892 -1.814267861531334 -2.408102795458035 -2.854808238560508 -2.637988744114409 -2.963676044084423 -3.922214406309649 -3.032244023087515 -3.254268362447874 -3.127855231339709 -3.628629064766867 + -2.354748697045579 -2.68795636955474 -2.534557475606562 -2.039518657024018 -2.886804951162048 -2.546164390980266 -3.026247355279338 -3.631633445387706 -3.038611920592302 -2.801595256238215 -2.649029449901718 -2.041211107280105 -2.024296671446791 -2.140239613185145 -1.787918944393823 -2.816666802253167 -2.396289651365237 -2.795996968476175 -3.06827268791767 -2.857243584125172 -1.843613554145122 -2.663332959920808 -2.342080329010059 -2.303290032553775 -3.923909344783169 -2.906337805543444 -2.618784132617293 -2.465688096004669 -2.653705070091746 -2.401016879051895 -2.016326260977621 -2.456091855991644 -3.251478048822264 -2.228386923975677 -3.069232099961937 -3.030122640367381 -3.598064344323291 -2.794585221237384 -1.614351111668952 -3.152460210449135 -2.651913763070752 -3.173230330083925 -2.367134464282572 -3.025724451915039 -2.301678783983485 -2.060119055128396 -3.46138522694471 -3.191655843798685 -2.524590917766091 -2.625024539313245 -3.637242903974538 -2.132345179556211 -2.769885759463705 -2.685942632434035 -3.521778991611882 -2.747681811836628 -3.009957844205928 -3.153934564566953 -2.418634801991004 -3.469198346588769 -2.570528722171957 -3.39396693754361 -2.394868994160333 -2.475138606536348 -2.935629820651229 -3.610316507951211 -3.994190103680012 -2.648679668285467 -2.381788924632019 -2.284199405736217 -3.257312646597711 -2.433549896421027 -1.827172298289952 -2.106381738005439 -2.436037670740916 -2.07142902126202 -2.901191534807822 -1.371301676221265 -1.943257508037277 -1.642310150015646 -2.394726171286038 -2.632677848026105 -2.081821394080407 -2.648498476046598 -2.299284598195072 -2.110954729084142 -2.047803846658553 -2.902907166515547 -2.138025028688389 -1.473809919665655 -1.448579572796007 -2.178479992722714 -2.519446741678621 -2.645841616453254 -2.699021182153956 -3.585217988624208 -2.781698642122137 -2.895563298709021 -3.139176810160507 -3.556522720282282 + -2.12105755435914 -2.022334502089507 -2.054971811019641 -1.765543928169791 -2.26298205508283 -1.899870755380107 -2.657982375487336 -3.032326386455679 -2.455779910420461 -2.408690908860081 -2.305789553155591 -1.76417036323619 -1.539625372269711 -1.494784359642495 -1.65432794001299 -2.481896722605256 -2.479524033214858 -2.686171765594054 -3.216888350723821 -2.822211850026179 -1.910702587180822 -2.48493430313647 -2.084130211735101 -2.124602103570822 -3.437060188756732 -2.517252999910852 -2.375946285785176 -1.836658437063306 -1.817701294639392 -2.069675568002367 -2.153730974244809 -2.518911353792305 -3.583985760022642 -2.37701475901747 -3.162216081435076 -3.137214566951684 -2.957933775442513 -2.39407597895935 -1.511769396903276 -3.08620257502912 -2.500587313145388 -2.76150300154427 -2.089901049126183 -2.938914307388615 -2.38825151095509 -2.262972264405744 -3.454336514748661 -2.556580153552034 -2.023116995119835 -2.006294301074149 -3.115562337163055 -1.864495148144613 -2.29696283004364 -1.879132559605296 -2.768402788330832 -2.227061047427014 -3.169825134542407 -2.848480967249998 -2.275713137520427 -3.338041003813316 -2.544451764302231 -3.297231226740678 -2.115140410616277 -2.192987028705829 -2.700070504769428 -3.667097023086171 -3.564608625100846 -2.640381872304033 -2.332674494429739 -2.374795216689563 -2.620162662966322 -1.729878868121887 -1.734314027875371 -2.062861524497748 -1.870264230112298 -1.211111513087872 -1.990541192108594 -0.8321028836699043 -1.434329074373636 -1.073754777141403 -1.801929266085381 -2.384723659329325 -2.101756110752603 -2.629380102187156 -1.964266213822498 -1.674557710008685 -1.732965025570934 -2.215857103724488 -1.899365920656237 -1.368373886215522 -0.991588591994514 -1.8041571050926 -2.049317772232826 -2.557074717211435 -2.282676519371307 -3.102978686571078 -2.402700276823452 -2.386970478320563 -2.709681889824878 -3.277939868100818 + -2.074418149692065 -1.790344061524593 -1.487836134485406 -1.426792218542687 -1.473181695680978 -1.130962650040601 -2.218871825665701 -2.420202460489236 -2.06220680557999 -2.228862292457052 -1.974391940394526 -1.631627341167587 -1.414661886381055 -0.850556068585945 -1.521959475007179 -2.0487066082502 -2.213398172042723 -2.53334903742882 -3.281269156630515 -2.671038674405281 -2.050239571170096 -2.096568364618179 -1.559068671369459 -1.814501809736939 -2.725472603247908 -1.845765428406594 -2.004373545452836 -1.228304583036333 -1.118086455633602 -2.007478969793283 -2.311387454129772 -2.158878711295074 -3.31595264746727 -2.250034716096138 -2.997445983380089 -2.974775070238877 -1.895233104280663 -2.130792080189877 -1.201883956242156 -2.82646512851511 -2.357020869630787 -2.32307003392998 -1.703933488547364 -2.547914387070421 -2.301255325524384 -2.404956899181879 -3.169613233688649 -1.773660342665153 -1.43021372698945 -1.280506388211279 -2.576056517182451 -1.50013227325411 -1.660724725765704 -1.507051080945871 -2.046206688724737 -1.53448789813433 -3.08397148018048 -2.191944935546417 -1.759345351072966 -3.092109996609622 -2.293706557769013 -3.096112323942634 -1.632144451046088 -1.619779720940642 -1.971173553401059 -2.94267341394243 -2.801241512522211 -2.238383713739609 -2.040449142246871 -2.113307542059374 -2.039224253356224 -1.034659012788325 -1.671084896028333 -2.101492477690954 -1.390781484207764 -0.4371414984298099 -1.013873442484851 -0.3647852919775687 -0.8276175976927789 -0.4491526230114005 -1.057464557536946 -2.211276211403288 -2.016231202377412 -2.509411074000298 -1.786569726953644 -1.284749435776916 -1.763302961161116 -1.733053453729553 -1.75204565755439 -1.529951963477288 -0.5774505141489499 -1.430944271694898 -1.501803472963729 -2.516422566610345 -2.120673921706839 -2.939723176062216 -2.10121271288881 -2.105017024475842 -2.056931114137512 -2.810312705375948 + -2.403836916652835 -2.289250774275388 -0.9907876657925954 -1.032880788479815 -0.6229698661409202 -0.2701918095190194 -1.71721764533504 -1.828759122410702 -2.029280480932357 -2.346468730689594 -1.604825471899403 -1.604200588573349 -1.512624308768181 -0.1985174140444599 -1.304828314840364 -1.580773613998815 -1.200781657088619 -2.416351409287927 -3.29942147522479 -2.422028457205897 -2.214434028862343 -1.566014491751503 -0.8600846035005816 -1.526215395434434 -1.877427667193842 -1.071107157735241 -1.654207317151304 -0.7287220561843242 -0.8453051977364794 -2.196031800007177 -2.488457168760078 -1.274574358552968 -2.010654510538103 -1.754931264361403 -2.309487083423789 -2.452916673344504 -0.5630772825127011 -1.845097776999403 -0.4323803823193799 -2.57505318986432 -2.322079355321762 -2.081997200216108 -1.302651652066089 -1.858828325740703 -1.57951690506333 -0.835865515178209 -2.693692922281581 -0.967243634364273 -0.8439468454409962 -0.5415765033954472 -2.137271365028482 -1.094187869290138 -1.017377015098305 -1.739387777148124 -1.569017399970051 -0.8531729830227732 -2.71124265262597 -1.234627900375926 -0.814191433285032 -2.741451594846751 -1.858045294964054 -2.825872969622196 -1.02740383988521 -0.8953902019070483 -0.9425629256993489 -1.475021208513681 -1.753449504242781 -1.359234283606384 -1.261806622466679 -1.103097406067263 -1.639420085486563 -0.47278503394773 -1.686025432041788 -2.115431844827526 -1.123189405179801 0.2340951900786763 -0.2507021347106502 -0.1853062296117969 -0.2479852942301477 0.1713703925034338 -0.2967198425438369 -2.233775748983021 -1.972700005185516 -2.217322136637023 -1.81613300193402 -1.054041720112082 -2.059026016927078 -1.666810551759738 -1.843681471859782 -2.03459074750026 -0.3293929164765359 -1.169230820383746 -0.9375549828455405 -2.598572366408007 -2.478652505069476 -3.406007321643756 -2.022373917914251 -2.270148926273123 -1.391105561252957 -2.176322659298886 + -3.191876150747476 -3.446504687383822 -0.7718224050368008 -0.6568358495769644 0.1313621603821957 0.6087931908023165 -1.210594047806808 -1.299299455125947 -2.450757223271012 -2.766359124696919 -0.9703634419690843 -1.546142976196734 -1.565537512667106 0.4903971682269344 -0.913998338365829 -1.171502135231862 0.5655248910012176 -2.358810957954574 -3.319972792150111 -2.085851261365633 -2.32392274489348 -0.9878739993546333 -0.1227765242329042 -1.3371644563045 -1.008823042368022 -0.3982002313459816 -1.471260368844014 -0.4195235480469819 -1.103472551798973 -2.443704521902134 -2.611731777128512 0.04429703788646577 0.07902651636028679 -1.055175383125331 -1.326453045604552 -1.76422623297735 0.8358130614952355 -1.145938205268453 0.9338495833998088 -2.467570969426163 -2.454960511225408 -2.184775387137591 -0.8498597800828591 -0.945431192100882 -0.2803746863908568 1.831335494786212 -2.12901936795728 -0.09681117609611434 -0.3204395845858699 0.1968197921988804 -1.818987894683858 -0.6424924393466611 -0.5103109991015344 -2.119515351174897 -1.354633550945806 -0.2979105137092688 -2.091443294282044 -0.1096731588322655 0.5344403924859478 -2.303562024351919 -1.357979317868057 -2.583857690600439 -0.4761170429925414 -0.2817934012764454 0.01727590682980917 0.3369519854020382 -0.5394516897060839 -0.04191666272515704 0.05769181768221188 0.7939826484744117 -1.438913990707078 -0.07652920132750296 -1.765917333299512 -1.927220506084723 -1.13275705826436 0.8564730521056134 0.1201240613090704 -0.4153946931974133 0.2327430607778069 0.7658831998412552 0.3534055379930692 -2.493782886269628 -2.107177626040993 -1.68944781532629 -1.99784871613636 -1.019531449333783 -2.390721591014966 -2.029318547465238 -2.230559218261078 -2.842396683240167 -0.3152151220292581 -1.039515949004453 -0.3961880896968069 -2.751742136269968 -3.329350664681442 -4.459333394542455 -2.162364083122611 -2.750984796372336 -0.8169381634147399 -1.39873050849327 + -4.335758634831791 -4.785949445206597 -1.00481253529324 -0.3972510738894925 0.6432339221109942 1.406860974953815 -0.7843670494894468 -0.8653080985077395 -3.281345580594461 -3.386701992480084 0.2550606267520834 -1.259419950988558 -1.298478274416084 1.212197266783598 -0.3033804907692215 -0.8917433412309208 2.507911853777285 -2.338278719540909 -3.383220833133919 -1.717582252645684 -2.322337950356996 -0.4642449061802836 0.5174962753480941 -1.206942039634765 -0.2362952390722057 0.006060931214051379 -1.548305392316252 -0.4608879893596054 -1.861044541417129 -2.575880541352717 -2.568663638545445 1.475225417901832 2.177677586335733 -0.4421186220026883 -0.6194959224115131 -1.283605742634244 2.10016372740751 0.02613333609714652 2.713012864584513 -2.514263202681036 -2.744243388881955 -2.603591283612019 -0.289831906312557 -0.02920798958847914 0.8363772107763081 3.048786969774671 -1.554212927058182 0.9056636648497163 0.1119493741009023 0.9301736074996256 -1.542995719234497 -0.09193579483381953 -0.2278052596751081 -1.877583214225794 -1.250264558850873 0.11065895126859 -1.348813218439318 0.9810414402354581 2.165407144683769 -1.805797839137483 -0.9667585625780681 -2.502326933615279 -0.1930188942740187 -0.04629670305394029 0.5801181194686933 1.889449160459208 0.6564708136925219 1.517168336550299 1.695310658932897 3.316788462293971 -1.369105334298183 0.1860418788455718 -1.858964738114082 -1.398134129483878 -1.420185232392669 1.381632099402104 0.02277724211452892 -1.078116292700088 0.5663774516228841 1.30375445778148 0.7942191945431887 -2.955733948256949 -2.499365524120492 -0.9984216739704621 -2.194696317740693 -1.13146457281934 -2.548115576485792 -2.640279415142004 -2.845997931348165 -3.794220267510354 -0.5279065509089378 -0.9657127304194546 0.1178457664818779 -2.808647847662542 -4.371399489119312 -5.702715526042539 -2.391800238088166 -3.126348072007531 -0.2916053094556581 -0.4628802289712531 + -4.364705433405106 -4.702550132775286 -2.686179553806141 -3.974720499936666 -4.573318063294209 -3.7270666072327 -5.35934478512354 -4.23247882880969 -2.329977542996858 -1.474251079000169 2.371171174239862 1.388299451471539 2.116471062769506 -1.754569018273628 -0.7631615213481382 -5.022464137260954 1.027801358385261 -2.899884759542601 -7.32953181863013 -6.599416988013218 -5.281361101240691 -8.577141196861703 -5.94881982111292 -4.672044157945237 -6.508460343444312 -5.704219954957807 -5.514397019949683 -1.180269645759836 -2.493627134395865 -5.651842969432437 -1.433501132674792 -1.857298982037491 -4.863616473319439 -2.472405293476299 -0.457080848514579 -5.18134858615042 -3.201089223392643 -8.141620012733753 -7.589126556168821 -5.83044875933615 -2.356380093433472 -0.4068812656565797 -0.5528529458393905 -1.48222926110293 0.0927735815283981 -2.081632317612319 -3.308583648683852 -2.773574233795415 -3.281780279998202 -3.769427641480888 -4.143497812058513 -6.033178296997875 -6.683172514816306 -11.3321626799675 -7.868212352314117 -6.793447066802628 -9.835053145387974 -13.34942896473149 -9.343677342397996 -9.312636938403728 -9.082776571243322 -6.535515622357252 -6.758787285056314 -7.658883342279296 -10.63119358087533 -12.583813685922 -10.08766197706518 -10.30740445759398 -12.18766439508136 -16.57978498536977 -8.994095714278956 -14.49900450847053 -10.61665996397278 -13.47448632748456 -12.01155393737463 -12.4121747346353 -10.30780249569716 -13.57126718825111 -14.69682643009719 -9.592903872156739 -10.06880191689675 -6.645518391570363 -8.268769005740296 -8.704779308693901 -10.40044179779704 -4.824024719202043 -4.193091318177494 -6.247388383367877 -7.562496808627657 -7.057379426522857 -8.345138899554513 -9.131219800872714 -8.585721183773785 -9.977362208994236 -6.039579069307365 -0.8259103276504902 -3.206911549810684 -5.374664009585558 0.346716323094256 0.4183187360556837 + -5.48663263173512 -5.844378262176178 -4.256371061252139 -5.968825545802247 -6.300358219843474 -5.427351439917402 -7.794088954593462 -6.341377969773021 -6.709768012044151 -5.113525205037149 -1.721505133660685 -1.277621752693449 -0.008869384027093474 -3.547355851460225 -3.087754891151008 -5.245950207714031 0.4647043063190495 -3.926359049360826 -6.998609911264793 -6.85797865711902 -5.555260840686969 -7.775260911759688 -5.692420788127492 -4.924367499920862 -6.277688191432389 -5.79450986642405 -6.036939754820196 -2.468516842462122 -3.09749489305068 -6.295081938155363 -3.315184012470581 -3.735776850476441 -6.075901550707158 -3.656955732021061 -2.279219770923646 -7.121591385648799 -4.141801620320365 -10.38635511259679 -9.630570264418736 -7.076284703201964 -3.073437241092961 -1.397711341945069 -1.425764709148552 -3.152119273930566 -2.235115008446225 -1.661461115348969 -4.586900809641351 -4.022244270381918 -3.582591763140044 -3.61362465011257 -4.489533570402955 -6.428420721440176 -6.960235194457709 -10.09914186447895 -7.877907906925429 -7.629349557558271 -10.16798340755668 -12.44638891934483 -8.746740207574533 -8.192086565571344 -8.41736965947473 -6.638444909341843 -7.214953932994831 -8.103568288177485 -10.56018937663612 -12.54609047099984 -10.38256270152669 -10.27428993388708 -11.29280672744699 -14.99231127791427 -9.259626321909309 -13.97543539865001 -9.567679339917959 -12.46707461720325 -11.23445540182001 -12.33923991655888 -10.62406110480924 -12.87129887020819 -14.27233350060169 -9.115754449493352 -9.946894366573588 -6.958504985487252 -8.541973270898097 -8.159561520275361 -9.543000125798471 -5.191909994166053 -5.370366886533475 -6.979375593795453 -8.14420123826585 -7.366602505451738 -8.406712599673483 -9.555351930916004 -8.428312982392526 -9.857349892496131 -7.417346028345492 -2.472765804155642 -4.867256797094342 -5.995813673754128 -0.7911550962130605 -1.140734715343245 + -6.200388220835521 -6.470808861286059 -5.395806801054277 -7.230021961273451 -7.161739476508956 -6.391351816346287 -9.303723035642179 -7.705907935433061 -9.607645649986807 -7.516534018672246 -4.777507847231391 -3.39135693638309 -1.878901902801772 -4.922239439948726 -4.822476440994706 -4.934920403588421 -1.547188455518722 -4.623936803242486 -6.379534811765552 -6.433064713828571 -5.357366779006043 -6.660051668617598 -5.197895180528576 -4.693193502164149 -5.862443704943871 -5.57939102625096 -6.182162243290804 -3.831742696223955 -3.768405081535093 -6.815054937738751 -4.719385774613784 -5.105307501931748 -6.455927222260925 -4.769502746381932 -4.307813170153167 -8.643142264032576 -4.894795151329731 -10.70932762344097 -10.2717803158024 -7.644039201016767 -3.35273179475189 -2.377004365606581 -2.547257095960731 -4.249459585045315 -5.172817374318132 -3.248695371320721 -5.452298191488296 -4.95134569825268 -3.74064871002065 -3.480547754893905 -4.629437154796051 -6.60132684010506 -6.82601824084395 -8.657512720248633 -7.493583910345933 -7.951383526296013 -9.837151012913637 -10.98006661194449 -7.824710952629289 -6.920768945148666 -7.427766822566994 -6.434526645461119 -7.28475606770553 -8.300068192500476 -9.901095659686689 -11.86384125520999 -10.04927261204284 -9.593991696051489 -9.921628385208351 -12.85931685533615 -8.775350185995194 -12.76284679070523 -8.111040064599365 -10.87078011181075 -10.00282065296051 -10.92499248622357 -10.2038598677857 -11.47238693772852 -13.09818715517395 -8.322937376918617 -9.30760064278661 -6.790825207359148 -8.147774613682941 -6.633373137991384 -8.235027959256058 -5.164761622316746 -5.382060365275038 -6.88226340145934 -7.921482951164762 -7.062335247348528 -7.873191281565596 -9.123741408535352 -7.846676339062469 -9.119874439300474 -7.983826427160238 -3.49008189649976 -5.705923960756081 -5.892649355097092 -1.906980277628008 -2.334776592031954 + -6.38976060292589 -6.571962236281252 -6.011726500815712 -7.754093054354598 -7.224906299121358 -6.711960774344334 -9.918424907336885 -8.359295536334685 -10.86426223922172 -8.64961287269216 -6.483001349100959 -4.678283274875866 -3.198966375541204 -5.695112083574259 -5.629618473159553 -4.220385239928873 -4.078351892551609 -4.830499030447299 -5.542167909268755 -5.41732190179755 -4.785350915875824 -5.441433839219826 -4.525614521986427 -4.108538577013576 -5.29893329803599 -5.052499097539112 -5.890675781309255 -4.789493248918006 -4.235565517557916 -6.977935407367113 -5.400529066619129 -5.790402742316473 -6.504031280067466 -5.747829850384733 -6.257266016278663 -9.30536628149639 -5.497178317848238 -9.575401652314724 -9.751375123307298 -7.451881748188498 -3.199626310061831 -3.103387395457958 -3.599598344014339 -4.62809483672595 -7.022028461706597 -5.275717065861272 -5.723858102914594 -5.367331594674624 -3.705280257150662 -3.336635102247328 -4.475473829478233 -6.385303626668701 -6.260436771140576 -7.251691712165666 -6.668985522022467 -7.519377466828701 -8.811722366763206 -9.113559755431197 -6.655028685770731 -5.633661805566987 -6.177715354177934 -5.931524641283886 -6.873000389981371 -8.100764007343969 -8.536346749791846 -10.48247570987951 -9.030781176608798 -8.159277381078482 -8.003033399661945 -10.2513716426256 -7.543049021151091 -10.7494077822339 -6.315758135198848 -8.846898315197905 -8.426915252945037 -8.528437429093174 -8.999758175440093 -9.446978044348725 -11.17394792208052 -7.197044175292831 -8.169695646722857 -6.17367217277274 -7.139481193272331 -4.84233130970415 -6.754574885611191 -4.824143430910681 -4.47120605025475 -6.083960712562202 -6.999743793072412 -6.25896543966337 -6.85322164329591 -7.974141688966483 -6.926706564870983 -7.818614903801063 -7.721102049312321 -3.851721600865858 -5.762203640095322 -5.298574091026239 -2.746813574557564 -2.765532569421326 + -6.059178375686315 -6.26058833020943 -6.112917141450453 -7.655147799814586 -6.705825728211494 -6.550530163200165 -9.768511174828745 -8.412389247620013 -10.66815773817871 -8.699233336097677 -6.824672251626907 -5.100907660558732 -3.871484193232391 -5.794538714889768 -5.431006771324064 -3.327234327085989 -5.709170733393876 -4.535178891796932 -4.583002228526311 -4.132270668629644 -4.020485560657107 -4.305207012494066 -3.746825489361072 -3.405356510971274 -4.649432583508315 -4.256338740851788 -5.19089629877999 -4.922447240751353 -4.211690337637265 -6.546124690796205 -5.28079971094121 -5.743638098920201 -6.36480465409295 -6.184160678204535 -7.420840979537388 -8.761105282161225 -5.786547424287164 -7.859280029011188 -8.512619075930388 -6.550577058156705 -2.728716455962967 -3.405469431505935 -4.258032504153562 -4.473452626479911 -6.906926423341929 -5.638228599567242 -5.37445749217785 -5.286850625655916 -3.427102836745689 -3.122264311058643 -4.039290211285333 -5.726728271403999 -5.337201481317607 -5.917632675624191 -5.388527475750834 -6.285026881162594 -7.233851669358046 -7.082541277322889 -5.361474546346813 -4.461405526150202 -4.795321893585836 -5.202584069102159 -6.00715748665607 -7.435411416950956 -6.569029418893479 -8.49850754957879 -7.450206772286037 -6.133263228332908 -5.672475675664828 -7.364650330091536 -5.797831225245318 -8.126989368785871 -4.357687184819952 -6.607733609955176 -6.696084167451772 -5.787594220571464 -7.142070681703444 -7.012509951760876 -8.681708786258241 -5.793015297903821 -6.664230084785686 -5.189743760719921 -5.668911495541124 -3.330446492203009 -5.337579657071046 -4.278732407020925 -3.170017197525794 -4.834622052227132 -5.612691279166029 -5.150466291812336 -5.536907007410264 -6.348469419444882 -5.815090412699647 -6.111704309525521 -6.755697132262867 -3.687167156516807 -5.344207021742477 -4.576863381869771 -3.216024004384963 -2.581289902040345 + -5.333245035755681 -5.697487035489758 -5.791815705859335 -7.109570650791284 -5.880503519416379 -6.088389449505485 -9.046890167752281 -8.023801764866221 -9.463988613832043 -7.995258403781918 -6.066417445290426 -4.838396894127072 -4.002315482019185 -5.305004378477406 -4.434709524182836 -2.504834680716158 -5.678666078312745 -3.867892420925273 -3.613790463357873 -2.958652812587388 -3.253508025201882 -3.362860773126158 -2.939831337171199 -2.782404488638349 -3.996187249053037 -3.293024063466873 -4.204671225015773 -4.15843318601037 -3.571026128201993 -5.487407500706468 -4.487786133689951 -5.083569971753604 -5.865269023777728 -5.646607850289911 -7.148062763195412 -7.049824873663056 -5.533918513103345 -6.035285078815605 -6.883804349378352 -5.124328304537812 -2.123043008078639 -3.261667461575144 -4.315751865913626 -3.95436298869663 -5.232846882514082 -4.323044907128406 -4.540111808428399 -4.765716745841473 -2.917231434425048 -2.792607483187567 -3.435573570835459 -4.712090688565127 -4.215190629424796 -4.526696346025346 -3.772946884264456 -4.468566198344888 -5.398330541818723 -5.144994013375253 -4.088041488447629 -3.50809872236232 -3.453102380246762 -4.383847321565554 -4.856670561423925 -6.374676499475754 -4.366506568756449 -6.194668124167947 -5.59613271845592 -3.900906640596986 -3.310303664778985 -4.557227901732404 -3.940674656776537 -5.339967862848425 -2.496769653924275 -4.420959869894432 -5.046214871203119 -3.299917986199944 -4.949007336724208 -4.508881807243597 -5.97617632674428 -4.270274624443118 -5.020707815195237 -3.996681508793245 -3.974056837124408 -2.267540110798564 -4.14531151215192 -3.642379922730925 -2.03329904581642 -3.452008907258687 -4.067099161915394 -3.96750517730834 -4.158471038261268 -4.559154697544727 -4.686675121776716 -4.254545448762656 -5.291089765290963 -3.156408089409524 -4.753481683015707 -3.96076446688312 -3.321663420746518 -2.190641362832702 + -4.41578223543911 -5.025005170580698 -5.19164479043684 -6.299731202219846 -4.998459032845858 -5.486941379145719 -7.970613414639956 -7.367122852920147 -7.800502371646871 -6.912665953863325 -4.68068492603561 -4.199268897260481 -3.83538341763051 -4.468586237813724 -3.071275311453974 -1.948225219462074 -4.358123119148331 -3.036822748616032 -2.746219274344185 -2.102927331725368 -2.618084037072549 -2.644538402953913 -2.189040412624308 -2.30165794395225 -3.428713948902441 -2.317300761518709 -3.124493777511816 -2.84715434104146 -2.467350767259632 -4.057365332955669 -3.320044307787612 -4.043383022273701 -4.919613146423217 -4.153917315022227 -5.476567214673196 -4.712019262618924 -4.71179618340625 -4.091557105849688 -5.094494534985643 -3.472158525261875 -1.577552897023452 -2.816193865193782 -3.777443799416687 -3.098917097372123 -3.008733846958478 -2.827548959406158 -3.471538082695332 -3.822102109719253 -2.286573698447683 -2.362877823935378 -2.840557817938588 -3.541069842600905 -3.103462480609778 -2.995978792141614 -2.131649424402895 -2.514559964471118 -3.660236802321378 -3.524943086729763 -2.968293106467627 -2.834878949469953 -2.322441171796982 -3.63568853732977 -3.678360828951554 -5.115855936179287 -2.422788372881769 -3.974864155607065 -3.845010338522115 -1.922832559674134 -1.413676534677506 -2.275031183642568 -2.405300322709081 -2.928121111326618 -1.009559011421516 -2.582413719312171 -3.703794899578497 -1.430184061067848 -2.865660485721492 -2.324790779784962 -3.501645886701226 -2.871467116705844 -3.513819366305597 -2.821653990623872 -2.338882757777355 -1.55536451547141 -3.264676013885492 -3.024640895186621 -1.411037467937604 -2.25724171353454 -2.66962179561051 -2.924661500343063 -2.945640120800817 -2.932075179935055 -3.704171252013111 -2.555671416754194 -3.599807563412469 -2.416565679508494 -4.116588488899652 -3.442723793707046 -3.079061808746701 -1.870455287292796 + -3.525917010945705 -4.352268235888914 -4.471543767882395 -5.378329231898533 -4.229483408787928 -4.865317817006144 -6.748580924235284 -6.60139814093418 -6.171302572103741 -5.780409509061428 -3.222536251512793 -3.501688441232545 -3.638433575091767 -3.610389386919906 -1.842607227011285 -1.736450989002151 -2.737463937901339 -2.257983708160282 -2.074228715915524 -1.53661920237937 -2.167517866826529 -2.133503454777383 -1.580942663567839 -1.911146455866287 -3.025691369606648 -1.506971862669161 -2.165416357049253 -1.578751650893537 -1.308776433670573 -2.694556500478939 -2.146793982386043 -2.890389788522953 -3.765011292718555 -2.295444189572663 -3.266134491572302 -2.571817791789726 -3.611771276319587 -2.066889087287109 -3.452056832485141 -1.952680564967523 -1.243247675148268 -2.314103511929261 -2.871642983036509 -2.003188983734617 -1.113847019745094 -2.070111860789439 -2.449470936173498 -2.591218338101953 -1.723271596627455 -1.92760472441023 -2.425703677540696 -2.458895768388061 -2.20796978060207 -1.497938770895416 -0.8869291588171109 -0.9309311352317309 -2.312393306798185 -2.367778845411522 -2.099979292515286 -2.453069766232716 -1.523096623191336 -3.084724181258935 -2.714750834496044 -3.900826073204371 -1.122274162407848 -2.218224541873496 -2.542255653988832 -0.5617117493575279 -0.3657120232510351 -0.8786023990469403 -1.509283225801482 -1.326421781966928 -0.09944608702789992 -1.342934490043262 -2.822595007462951 -0.3363557292295809 -1.335922083447713 -0.789009428841382 -1.658576606176211 -1.84435826429808 -2.385248228810269 -1.907934676072273 -1.030062340400036 -1.072929933946398 -2.721325617730145 -2.524489373108281 -1.368553142425299 -1.505792744147811 -1.655023034840269 -2.171000912905583 -2.067613555962453 -1.733716376918892 -2.98128285166058 -1.298498315096367 -2.034773425686581 -1.672767445597856 -3.446343621053529 -2.912460243935129 -2.501723347382722 -1.672793199119457 + -2.835533968089294 -3.779491480221623 -3.777209431747906 -4.459267790211015 -3.653135370950622 -4.295941642965772 -5.557857462757966 -5.849229588668095 -4.898561727874039 -4.819176982477074 -2.157468050449097 -2.965937799897802 -3.578887677769671 -3.003045493667287 -1.120009214723723 -1.816816889718211 -1.622706145241864 -1.704639799899269 -1.657160203412786 -1.162692401390814 -1.894321276733535 -1.811529974158475 -1.191459205569117 -1.561610460711563 -2.835155960419797 -1.015366392290161 -1.504883538131253 -0.8740298236662056 -0.5777580430622038 -1.80575218906597 -1.279905604954365 -1.88314945404818 -2.826251788290392 -0.8580087038117199 -1.643177008294515 -1.295927145863971 -2.680476157527437 -0.3926393193703461 -2.300988346059967 -0.8901696295761212 -1.18699334944904 -1.987572631834155 -1.955120995599827 -0.9992159763760355 -0.03752749921778786 -1.702101332964958 -1.701924482327463 -1.468673764482446 -1.410570157444454 -1.632966791419676 -2.295325241316277 -1.674279639864722 -1.674579687272853 -0.4522406975684135 -0.3868553001511827 -0.0863603267189319 -1.495152285457152 -1.719645674951607 -1.531710293750393 -2.328061625733767 -1.093007181697587 -2.779671923774913 -2.103522861720194 -2.922656362636189 -0.5715565230711945 -1.134984067975893 -1.885096202706336 0.03916402251434192 -0.2391232556601608 -0.4584947796392953 -1.348608620814048 -0.706312200112734 0.1766579853283474 -0.8125779933325248 -2.436139797115175 -0.06457044274065993 -0.6476540473049681 -0.06388733847052208 -0.6707522289116241 -1.339593018220512 -1.769172709859959 -1.428665684802581 -0.2292751795612276 -0.8163737297745683 -2.48766717985518 -2.215018677769422 -1.751122776970078 -1.321925476863271 -1.134702403360279 -1.75801469004 -1.5959998070648 -1.103526594473806 -2.559481606462214 -0.6534220752218971 -0.9711521323479246 -1.195991205895552 -2.805882663131342 -2.381788720269469 -1.720611934262706 -1.603806394585419 + -2.427055498177651 -3.403643633973843 -3.217627802921925 -3.625261020599282 -3.27806364063872 -3.811437024807674 -4.52774180418055 -5.184804677504872 -4.08927523442253 -4.118547700654744 -1.706421871262137 -2.660127309405652 -3.64745328936624 -2.744308230391653 -0.9860881317417807 -2.047557055950165 -1.245323619707051 -1.474090663354218 -1.508069829646047 -0.9935873753274791 -1.761979338887613 -1.678291069885745 -1.064548086404102 -1.296373304013287 -2.8586935261701 -0.9205848606434301 -1.230337117231102 -0.9293683107971447 -0.5768944489573187 -1.570101803717989 -0.8723993660159977 -1.234989325388597 -2.397886788909091 -0.3006731252653481 -1.216500383867242 -1.035554423791837 -2.232120720035255 0.3621066208188495 -1.771657290262283 -0.4713710364803774 -1.379052901746945 -1.956386048698278 -1.353345205809092 -0.4959087517236185 0.1446507090785758 -1.128196038284841 -1.354155722246823 -0.9455806578625925 -1.433269803541407 -1.604761473327017 -2.450899976811343 -1.291720310554069 -1.546088465965113 -0.2526555818312772 -0.7157076941866762 -0.0685652327574644 -1.18194529500397 -1.533350863213855 -1.262810657275054 -2.3921432144856 -0.991813153371865 -2.686761794628183 -1.847250053424432 -2.276280047150067 -0.6117684218770592 -0.7164720682485495 -1.86004299257911 -0.02622482505466905 -0.7609563561236428 -0.7668738510255935 -1.778083254306694 -0.9264637078740634 -0.07083783787675202 -0.8985021199841867 -2.44688513193978 -0.5369471381545736 -0.8173562121819486 -0.08671005518408492 -0.5111858774071152 -1.33863972004292 -1.651998054842352 -1.412967783147451 0.0136578807796468 -0.8455896437535557 -2.484247295783462 -2.118064357101048 -2.305548739987898 -1.655624713096358 -1.079321652488943 -1.63569967202784 -1.491457154501404 -1.018544377027865 -2.404585663036414 -0.6186438475779141 -0.6542140673118411 -1.219934956789075 -2.358046918099717 -2.036999916579589 -1.081920455879299 -1.738022235198159 + -2.280200686382159 -3.267019909559167 -2.846123594805249 -2.935494264762383 -3.068247211078415 -3.414218129517394 -3.730088205280481 -4.632391059109068 -3.665030639669567 -3.65278336461779 -1.793804053530039 -2.518463901356881 -3.682322340751853 -2.730320292248507 -1.231360098265213 -2.277327543237789 -1.377844035752787 -1.56298105004953 -1.591368197152406 -1.121061779158481 -1.722047135510365 -1.731525720384525 -1.189631233537511 -1.221214592270599 -3.045552048337413 -1.191687516315142 -1.314041568315588 -1.546449934194243 -1.246215461698739 -1.860080568889316 -0.8875973835029072 -1.040179906440244 -2.42057709641449 -0.517012574697219 -1.725357235416595 -1.423609037987262 -2.292920949994141 -0.01253980275168942 -1.680276198578667 -0.6806495307509977 -1.712915953785341 -2.191999251871039 -1.220831632312184 -0.6639053525350391 -0.3329746364491086 -0.6766313687289767 -1.416247716324918 -1.225891463193875 -1.731267640574515 -1.86260531701555 -2.79210297817508 -1.281667629828007 -1.748820136665017 -0.9287973223126755 -1.62811644625981 -0.672070993197849 -1.23716128268461 -1.693306704266433 -1.251983783404171 -2.562179656146782 -1.130924831626942 -2.723844033364458 -1.849603084675437 -1.964467743062414 -0.9782593480631476 -0.807233194791479 -2.268970307268319 -0.5102928513215375 -1.472175888309721 -1.344338706901908 -2.483537379193876 -1.611116597865475 -0.6088050937833032 -1.330798845945537 -2.660333220897883 -1.461004948678237 -1.575868995351357 -0.5911856439888652 -0.9234348785666953 -1.656239844196989 -1.883850421871784 -1.731007666919595 -0.2127030530027696 -1.150502703334951 -2.588183932717584 -2.184107656136348 -2.776573118533634 -2.288441475157015 -1.34089006823524 -1.680135431897725 -1.622249718144303 -1.309608623749227 -2.423371449816841 -1.022421804576879 -1.045221682892588 -1.771282769674144 -2.239509767272466 -2.053086340132722 -0.9784208764385767 -2.114060443610533 + -2.289058629150531 -3.285516811309208 -2.647917114969459 -2.422264224936953 -2.959643471433083 -3.083094791581971 -3.17597451187612 -4.174391772634408 -3.441869347192551 -3.32564194349834 -2.136297399702016 -2.416129043787805 -3.493262095827959 -2.745673039311896 -1.525671060389868 -2.412687653005378 -1.664253942387404 -1.862519347401303 -1.831985138509481 -1.534453760508768 -1.718711897767207 -1.929787034619949 -1.490292222195421 -1.384278048827923 -3.300440549399354 -1.688798314018641 -1.62608254350198 -2.276032682824734 -2.179858890993273 -2.320046477683718 -1.150081316008254 -1.221235663962943 -2.56084877736248 -1.039870000277006 -2.400688087740491 -1.925038665181091 -2.660669419677106 -1.128940501876627 -1.721252789926439 -1.308195768098813 -2.049815301371382 -2.549937921476612 -1.479554861475663 -1.308362627007909 -1.090761792523153 -1.026724281026873 -1.79410321096308 -2.030149396285651 -2.127796896818836 -2.274686265962373 -3.153209100673848 -1.500339768991012 -2.116204192399891 -2.030593761446653 -2.65846536052959 -1.512644309727875 -1.500991743729173 -2.047013309256727 -1.427946202351905 -2.757104598920591 -1.408372891118049 -2.806748739324576 -1.981037188232222 -1.926555519370595 -1.463144150602602 -1.230319360562135 -2.829725264808076 -1.141943828110016 -1.987170692862492 -1.784434475430317 -3.112290257653513 -2.314603660110151 -1.172425338154426 -1.782410595005786 -2.85373411895489 -2.351777819903418 -2.474568468222969 -1.208039088054647 -1.531851516049755 -2.021861668342353 -2.23698224587838 -2.15337924430878 -0.7187837154501722 -1.598382755847069 -2.662335539484502 -2.2991205000626 -2.966716297297353 -2.904768309007977 -1.709077285539024 -1.745597531291423 -1.810721108055077 -1.728133501135744 -2.494528870478462 -1.593127688178356 -1.802392326462723 -2.591013683711935 -2.408140894691314 -2.373265066942622 -1.485354239597655 -2.60998175119191 + -2.307271411256806 -3.248482726965449 -2.542345272289822 -2.079001912919921 -2.866628156378283 -2.776880602366873 -2.820747144010966 -3.766751007700805 -3.225580466798419 -3.028743958719133 -2.421029045406613 -2.255556446525588 -3.008861625412464 -2.606295716919476 -1.642326898141619 -2.432801508178272 -1.873269021522674 -2.196523777895436 -2.134868750512396 -2.038865005306434 -1.700774139084388 -2.17567551384127 -1.834703257824003 -1.689754094570901 -3.504620037812856 -2.202150918150437 -1.982454300356039 -2.689310681398638 -2.85269198352762 -2.573459410170472 -1.449696045317069 -1.580923886289384 -2.576307256538712 -1.466804311012766 -2.688641425874266 -2.233210169704762 -3.05711705290048 -2.212973171051772 -1.703468798110634 -2.033168323444443 -2.26999420368611 -2.840173121001953 -1.862576789139439 -2.029471872189106 -1.700513528887882 -1.837189089274659 -2.314603476141581 -2.80253836291422 -2.413841886365844 -2.602724715877685 -3.364614315295967 -1.753248634907436 -2.443875124573424 -2.865783641606868 -3.344901866586042 -2.201039204070184 -1.847752701567515 -2.432495253622619 -1.696928114584125 -2.910916524624554 -1.728639531914951 -2.876984535563224 -2.126612769794974 -2.054401812292781 -1.954591752521083 -1.851831949745247 -3.290833972327164 -1.725843856720985 -2.178395802408886 -1.949533743809297 -3.404745508822089 -2.692716225952609 -1.56072998077434 -2.021940102167719 -2.85330078615516 -2.755236998620603 -3.069652690366183 -1.605395821648926 -1.990492660621385 -2.197930343039161 -2.485867791715009 -2.456248730018842 -1.280893057600224 -2.009268336450532 -2.60267291874834 -2.327309809666986 -2.792522281386027 -3.214698483213169 -1.985613748465767 -1.72419685339446 -1.893198516583652 -2.039088736273698 -2.50421555433968 -2.069273866090953 -2.449821005306148 -3.25332938824431 -2.638482501919498 -2.698462883326101 -2.234775093616918 -3.006874071275531 + -2.2133853948053 -2.943722597767191 -2.408618956374994 -1.853376756553189 -2.690319764926244 -2.439456829401024 -2.579615894705057 -3.358234573963273 -2.890997320326278 -2.695248284357149 -2.46492078495794 -2.016852799491971 -2.341439275174707 -2.255171098907567 -1.564721601755991 -2.353305950214235 -1.9707077734123 -2.400883111014991 -2.409978906573087 -2.387333367956671 -1.646413398870209 -2.340403144728043 -2.069240216125763 -1.937632044095267 -3.545193255027698 -2.518956429725222 -2.211167322777328 -2.604707395836158 -2.919047237473933 -2.445800390357363 -1.644034307148104 -1.920242798804338 -2.572408957402786 -1.706765902357347 -2.636006322945832 -2.373106834286773 -3.235236020917398 -2.643645498830324 -1.605887968926822 -2.552026896617917 -2.311739897105326 -2.903351984732126 -2.066390567916187 -2.493519837782742 -1.908685123075642 -2.133427676856627 -2.770876213078246 -3.101713550471686 -2.440347179549462 -2.629834909936108 -3.319779691747271 -1.876403073572135 -2.557909424862828 -2.944942752505995 -3.438276447471708 -2.487518848220134 -2.192908582946984 -2.697897759957414 -1.946700860611827 -2.978906495125329 -2.004020760508908 -2.899513425299119 -2.195986269381592 -2.195514742086743 -2.356487735803967 -2.533138979255455 -3.495673087249088 -2.160647506751502 -2.157114143291437 -1.963376846239044 -3.27334524125763 -2.605442934363964 -1.694192724637105 -2.005117458407767 -2.589457429705362 -2.511586185611122 -3.096963385634126 -1.607852281103987 -2.100982844223836 -2.069892284514935 -2.476156149894678 -2.516892168711138 -1.712467768135411 -2.271284503652168 -2.381835232767571 -2.173819972092133 -2.334383096817419 -3.079025562019297 -2.052682807177007 -1.590684717390104 -1.772629766504906 -2.102092679579073 -2.375503338296767 -2.29922168037956 -2.642190766506246 -3.425790035380487 -2.678661389972149 -2.71318036140292 -2.723529127971233 -3.155837106221584 + -1.976687541791762 -2.343871061515529 -2.13524079961644 -1.659597533740452 -2.340819595941866 -2.011113585496787 -2.353341238871508 -2.909113866629923 -2.425702947672107 -2.331655275043886 -2.267570062846062 -1.752107699818225 -1.721440345930205 -1.754405279944763 -1.413982846361705 -2.182310846990958 -2.038866213968674 -2.401975892445762 -2.595540894630176 -2.468381582992151 -1.578894961761762 -2.315877385504791 -2.065144773587235 -1.960077332438971 -3.344204109009297 -2.494102757678775 -2.211671553595806 -2.122585322316809 -2.387308541137827 -2.05115816541911 -1.707924749822723 -2.099590596074449 -2.761488830330563 -1.851492435947193 -2.587382382364467 -2.479477181683023 -3.026496441878834 -2.40850350212807 -1.48647439752898 -2.701134147258927 -2.187275718872115 -2.67596334054042 -1.941337596754238 -2.589575282163139 -1.881442359310562 -1.846178506923589 -2.98964015886226 -2.822825911067071 -2.170767093217364 -2.285171700649016 -3.019451697537079 -1.796855597618162 -2.371100342934824 -2.312946195520908 -2.984721757847637 -2.318744424703709 -2.465471320692814 -2.716374988354801 -2.051608051917412 -2.937387257303214 -2.151286003701401 -2.845991781104658 -2.113961584650951 -2.175191494221508 -2.512586406679475 -3.04340266552208 -3.376967702375623 -2.387351555299574 -2.079229517994463 -1.98376510498565 -2.802795268282352 -2.117448136938037 -1.613632208311174 -1.847025468354332 -2.109553134418093 -1.810776761579746 -2.553361629313713 -1.242632332263383 -1.848106304652902 -1.661740219531566 -2.158307188852859 -2.352046180760908 -1.915201361258823 -2.379300666903873 -2.060972866190809 -1.833100327937245 -1.819319431332588 -2.572348471051214 -1.910434434731542 -1.413171567493919 -1.444889692857032 -1.906690186116975 -2.083387749822577 -2.283723406497302 -2.35370739445716 -3.090619736238295 -2.426957681242129 -2.344884110189923 -2.698167421865492 -3.037494012423282 + -1.692421818235744 -1.700386359965705 -1.678184141826932 -1.412361256072472 -1.772678084460495 -1.446951851401536 -2.059066092318972 -2.404571858296549 -1.931140689152016 -2.016520063578355 -1.944361107694931 -1.537830568711797 -1.351496635697004 -1.20058380853709 -1.293899943671704 -1.912115331867994 -2.066180304826702 -2.240576628338431 -2.672351525199701 -2.340400740230507 -1.54882594902665 -2.059084317850647 -1.760396163736004 -1.736055499687581 -2.878781854225963 -2.097741652538389 -1.985467664850148 -1.47316485738429 -1.567437343639995 -1.671571442989716 -1.709744399561714 -2.00771521135448 -2.978720209921676 -1.900455647732315 -2.622442519601236 -2.544440332529916 -2.375075371228178 -1.994044620391691 -1.353917302241825 -2.515983651704573 -1.974275266099085 -2.229754939289819 -1.570675928135302 -2.383830440189001 -1.906197497539106 -1.926504963604102 -2.895648142246621 -2.146071162524663 -1.67311331896326 -1.66364022181574 -2.567181933236725 -1.54130375762918 -1.906110218861841 -1.506831173496948 -2.254178291133258 -1.804885517589582 -2.585103879198869 -2.40193186477336 -1.884814456087952 -2.779284676632756 -2.101280228374002 -2.689754853982322 -1.825017090013944 -1.859974108847382 -2.251437793525838 -3.067194792494774 -2.918075719206172 -2.33005332114908 -1.949166968616282 -1.956755546437307 -2.182628688653494 -1.416571302674129 -1.430291488693911 -1.700558411492239 -1.54691198708133 -0.9870236975515354 -1.654687939715132 -0.6986700239885977 -1.349156480789134 -1.079452082189505 -1.580769580860988 -2.08707225199089 -1.89592436843941 -2.367482536165767 -1.756826687521084 -1.392695909108397 -1.498190019503795 -1.944173681688198 -1.667955049302691 -1.322670772527999 -0.9895262774043658 -1.54883116050587 -1.651952346407597 -2.142998819796048 -1.871127678121411 -2.569355359337351 -1.986072062236872 -1.832137846566411 -2.234018934194637 -2.695471056257817 + -1.557837050997477 -1.430639322366915 -1.101252022410335 -1.068669580512505 -1.017194489080794 -0.7371903777166153 -1.657411971074907 -1.859207842488104 -1.58351975556252 -1.865577645347003 -1.595047984806115 -1.417171108073489 -1.282837569073763 -0.6423567426281807 -1.198070253119226 -1.549635156218187 -1.758146167375202 -2.026018503846444 -2.664606042881132 -2.112256459774017 -1.58944303158205 -1.602519420982389 -1.179771696773969 -1.390493478235612 -2.186419707199093 -1.421830716459226 -1.627764340850263 -0.8388742132196967 -0.8601509051873109 -1.524611593524241 -1.736484447556904 -1.53132852002966 -2.650143691374581 -1.714669108346982 -2.445598911228501 -2.413925178778015 -1.35407483252142 -1.766220682993698 -1.069433864889021 -2.190137952861392 -1.787092505574492 -1.759884664352853 -1.152380476641611 -1.964359766100912 -1.838041591414604 -1.98290185548188 -2.531699373703093 -1.337759622029836 -1.066386305631795 -0.9270855666298985 -2.111233802499783 -1.189655706080558 -1.278144327742666 -1.139401664560069 -1.573045204914592 -1.136899200306061 -2.47249706827688 -1.728511658116986 -1.341162462581281 -2.50885979585081 -1.826251324020582 -2.42502249056588 -1.325136077606885 -1.239728475028642 -1.533465716467617 -2.362378969435667 -2.133138152203628 -1.891220667948232 -1.590646496276577 -1.577701574635284 -1.611106249827571 -0.7056351111750701 -1.258791224940069 -1.630515560576896 -1.063888728407619 -0.2558389491932758 -0.7104593121586049 -0.2284528596401287 -0.7604662482985987 -0.4301390569386285 -0.8556111763568879 -1.882455400439653 -1.748924457840076 -2.21713903037255 -1.577786364128087 -0.9880361045204609 -1.483244897623536 -1.49207790017266 -1.489651420913106 -1.451592159371103 -0.5300561467920488 -1.163066942778642 -1.13614471330402 -2.028180655110191 -1.605224103422188 -2.332299592228992 -1.572654936105437 -1.545044028579468 -1.564304052833108 -2.182714335774398 + -1.784988236017398 -1.840631942907748 -0.573490256396326 -0.6543368085403927 -0.1889234130794648 0.07977423010015627 -1.166176536269631 -1.311403216841427 -1.564599975478814 -1.975522854011615 -1.187805362634208 -1.358973956632781 -1.385892625377892 -0.06190678152242413 -1.03250086163257 -1.146739028739319 -0.7047394111442209 -1.859436315664766 -2.627157483233532 -1.839474820556688 -1.683050281787018 -1.032387963412475 -0.4252348670288484 -1.087899749810141 -1.354458905265346 -0.6446873915028846 -1.286057710894966 -0.3115157401766737 -0.55726976618962 -1.613724249532424 -1.817552785998487 -0.6102754755946762 -1.361812290569361 -1.231267987446302 -1.825828035718359 -2.00095388240598 -0.1255023059643392 -1.551923509096858 -0.3709218414503823 -1.951179346509889 -1.734535315376434 -1.503600723513159 -0.7951273453276713 -1.35461603688627 -1.236935065594992 -0.4632392599007486 -2.016824685581065 -0.5512950176157716 -0.4606188270161056 -0.1848947048009109 -1.760879254507756 -0.8049181076007415 -0.6469907678939535 -1.392908605576281 -1.1571264375184 -0.4996077045996117 -2.089233848112599 -0.7478030294951168 -0.3677507231203094 -2.1383225869738 -1.370336805179104 -2.096713663724472 -0.6990865353863001 -0.4698937976345405 -0.5542251525148458 -0.9658908364622221 -1.083644688854747 -1.012047327263872 -0.8008576229445907 -0.500662857961288 -1.215779842530537 -0.1226702969725011 -1.166940496252209 -1.56667829710068 -0.7951757587561588 0.3674090315757326 0.005324501667871573 -0.04683862144065642 -0.2021099711121224 0.2256444195060112 -0.1171506203615991 -1.86152778234532 -1.614491242275221 -1.849884854456491 -1.563002272071685 -0.7338311898050733 -1.678678512395322 -1.412811985435383 -1.518225615326628 -1.866013814845246 -0.1813939881612896 -0.8451734092923289 -0.5955149761621215 -2.023945370940055 -1.846370583318276 -2.714752403154762 -1.368675740225285 -1.695244437613837 -0.8996179369760142 -1.558322601775491 + -2.483402301433216 -2.871979536908839 -0.3157273642700602 -0.2569616788714484 0.5466131320545173 0.9198600319214165 -0.654550642841059 -0.809444692597026 -1.981248194932959 -2.368442499889625 -0.5228331464477378 -1.248096679229548 -1.415536581956758 0.5800672688607165 -0.6922990979075507 -0.7899534153528123 1.107468620963051 -1.783708841848181 -2.623682069253846 -1.537886435354494 -1.7718000168245 -0.4566218681820828 0.3585266531017623 -0.9126669250462029 -0.4979373378555465 0.03051088132633595 -1.104214738979863 0.01575304805442101 -0.7733387872140156 -1.778147121096936 -1.894414404574604 0.655694417199129 0.6430187740975981 -0.6120672469978672 -0.9823047350417653 -1.452601780059979 1.133781263414587 -0.9225158194700454 0.9222137292647972 -1.928945542718679 -1.87581800948351 -1.613822660950547 -0.4425973940508072 -0.5803985446923221 -0.09439590786309354 2.007271058287786 -1.473851420564638 0.2472996204314448 0.07284592352641539 0.5363885063288478 -1.526599228820203 -0.3871719501256479 -0.160148333158304 -1.817116556836936 -1.024216280912526 -0.008159152798555169 -1.476213539502396 0.4041825137264823 1.007150896911526 -1.687514424932232 -0.8586297928614322 -1.81169560496653 -0.1239816917862981 0.1720496175316839 0.3240259614804017 0.7336458090576343 0.09728788879192507 0.2508309665215052 0.4528239747235148 1.380676586673871 -1.020669594008723 0.2838154889141151 -1.161010991303556 -1.354605039556418 -0.8126292384595217 0.934932773579277 0.3235114674743045 -0.2725593107088571 0.2606123274796346 0.8627427999569477 0.5104781191301981 -2.072471409097432 -1.629526049874812 -1.230495543180879 -1.658179071444209 -0.6709772805939451 -1.870035453896918 -1.711588888420948 -1.806841926102152 -2.521206326011907 -0.006692896704407758 -0.6027278712126645 -0.0695756685950073 -2.091256478982359 -2.606926717531223 -3.710256245806704 -1.421233341042296 -2.152898209764203 -0.3235020940178259 -0.8565483518251913 + -3.571890021642503 -4.065322988951038 -0.5136006438842742 0.01536275026228395 1.036027070249474 1.673782739622766 -0.2186967165926035 -0.3941014735028148 -2.801104956773997 -2.960639783967054 0.6978354329237391 -0.9129720214541521 -1.124023009594282 1.285312991087473 -0.1135476324081992 -0.5487210854732893 3.057935528562732 -1.786576499800844 -2.703183754448446 -1.245853121575067 -1.805893434580412 0.01811495374681726 1.028874970547804 -0.8249358664175528 0.2668296286428813 0.4384576534675944 -1.174478140554129 -0.03128642228841727 -1.493914016355347 -1.874158310868552 -1.851955370227358 1.961701246488879 2.617185332425645 -0.1199787857510941 -0.4375670821177273 -1.086438398700295 2.267010811883479 0.2152147631010284 2.656120924383093 -2.100519022626571 -2.191906651715954 -2.05935157542676 0.001038320953561822 0.2129207049055308 0.9331783923312712 2.965695311183871 -0.9808300851541327 1.146437508851504 0.4923375829041561 1.226989145718221 -1.322819337926489 0.1169119305558404 0.09040155264182204 -1.637278826030553 -1.017337494702346 0.3197701623041098 -0.7579323381908125 1.521534205550779 2.659291799453939 -1.185916318141608 -0.4685215565082039 -1.71110431690272 0.1827008488294268 0.4062168016471333 0.7854107654434301 2.149213183371216 1.2140629730402 1.698589771317074 1.956394423131144 3.807645254757404 -0.9637129663642554 0.5325511396367801 -1.203576620730018 -0.857119169000498 -1.118840499794715 1.397970472117564 0.1786398656349206 -0.9252886942592795 0.5851268427110199 1.443364183833154 0.9319197594342938 -2.490852705080442 -1.885177798950849 -0.4820318570880957 -1.740620175256112 -0.7560791390267809 -1.895476789876426 -2.21540240664504 -2.290014460946395 -3.261204781179913 -0.000507543658841314 -0.3556450309411048 0.4365929183995831 -2.076832171893784 -3.623650872267035 -4.954334193234445 -1.641900971686795 -2.511148870894615 0.2266419388819045 -0.03866523192017656 + -5.286498589557596 -4.945400368427727 -2.981331157512614 -4.014557740083546 -4.5231438639712 -3.950189091905486 -5.078488251994713 -3.575580027551041 -2.078235845585368 -1.598611840281592 2.167983419763914 1.102049924411403 1.614645005699458 -1.995115928608016 -0.6139994185556361 -5.399735519319165 0.6242695789165964 -3.061097715670712 -7.268446352628416 -6.642446875771384 -5.185361705844116 -8.614924138955757 -5.944565444959153 -4.650053681997463 -6.35813760432211 -5.677201726986823 -5.298028005425294 -1.079291304517938 -2.583387038164801 -5.605880481429267 -1.012864651505879 -1.616964323619186 -4.805719293336097 -2.412161639166811 -0.5092840680350719 -5.3780311417961 -3.269775963926321 -8.009679733799373 -7.689970712124051 -5.949584479257283 -2.440477925300229 -0.5655419628370737 -0.7544569768132305 -2.076287085730115 -0.3147657497946108 -1.981779544543239 -3.506782616084023 -2.72522810150852 -3.443219890943965 -3.956834749543532 -4.228389121780651 -6.034691620338037 -6.511237244659242 -11.28597620781852 -7.731277032037497 -6.598576934312632 -9.70176203286519 -13.24832702724416 -9.365621104411446 -9.41616184655021 -9.293237868763796 -6.981907988967805 -7.523606801145888 -8.280904572323379 -10.6505751615241 -12.46729698747367 -10.40341152305973 -10.64090480644813 -12.55235912374474 -16.89081551001345 -9.378739843141375 -15.13551487234508 -11.37428827291296 -14.48384877431636 -12.44189920602184 -12.86474601400789 -10.41383365800039 -13.62641826574418 -14.8262284714674 -10.04833832728661 -10.3423643311894 -6.966538397094951 -8.99498731951212 -9.093229169241226 -11.28550611951823 -5.462225755416739 -4.568106841300164 -7.426357358362679 -8.524763243414782 -7.862254878355088 -9.262811350477023 -9.973366638116204 -8.720062843183769 -10.49981258605658 -6.563661161168056 -1.361970383513835 -3.770251206719877 -5.732294437985956 -0.02315588301405569 0.05509407221076335 + -6.269571673252358 -6.109362013594364 -4.447742112337437 -5.840206763488823 -6.103279837079754 -5.427773697469092 -7.273608883595443 -5.510012072565587 -6.249843374258489 -5.029077782786771 -1.815410369674282 -1.465126006962237 -0.4356214786466808 -3.662363344870187 -2.788361503556416 -5.562109396225424 0.2555048619005902 -4.029953181608107 -6.959404461407757 -6.923675347572498 -5.470165422886566 -7.867669154122268 -5.746516812836489 -4.952595062334495 -6.077971878417884 -5.735092536931916 -5.78733318184095 -2.329829848846202 -3.198249015140391 -6.186825187537579 -2.973310823027077 -3.55092232841389 -6.016657683362382 -3.505071411648487 -2.211476538481065 -7.223511177225419 -4.239154063761447 -10.26570745945881 -9.773817906887018 -7.285325062277025 -3.21163192074664 -1.611309973275866 -1.70070735522404 -3.868222586531658 -2.807238454135586 -1.619387596371295 -4.691266792392941 -4.069005870885462 -3.785909191451083 -3.84296414635719 -4.558147074252474 -6.38578417713029 -6.748918553665135 -10.03448761658319 -7.779092462229983 -7.465084199845933 -10.02582731163329 -12.28854993758432 -8.716645219057114 -8.236910177433515 -8.586967513078299 -6.958472638439844 -7.844109551631391 -8.568228535810704 -10.54728453707867 -12.3552222489925 -10.55759158805631 -10.55472693292018 -11.60657090573341 -15.26301061800586 -9.582998638499703 -14.58815900988702 -10.27366636133956 -13.48647387814344 -11.56825590700464 -12.79950928862286 -10.69575747140493 -12.86791908104533 -14.35549774926312 -9.52114743983816 -10.14209417339407 -7.207702546126029 -9.16467072956857 -8.64394359154403 -10.36853386162841 -5.771027283055901 -5.92881703127523 -8.126559696206414 -9.001544492351968 -8.092297006098306 -9.230084891229126 -10.2480524816292 -8.484038525271899 -10.25937537579375 -7.850586311837105 -2.969279864910277 -5.323494407679846 -6.266036745798374 -1.081858818025694 -1.497824109038546 + -6.758088183625659 -6.630120899761096 -5.398698116281594 -6.867675946159579 -6.768308864993742 -6.141192732167838 -8.523329653486144 -6.6937855022843 -8.890373041012936 -7.17485130465866 -4.712674051739668 -3.428053590276249 -2.177600578366764 -4.888858770939805 -4.428442511385583 -5.211482681835605 -1.621613537068697 -4.678007650762083 -6.348161755513502 -6.52806229723501 -5.285646284568429 -6.782173122928725 -5.274548160046834 -4.725178593928206 -5.587435293055023 -5.466836667677853 -5.88462194960448 -3.645549846156428 -3.858992749193021 -6.631402611038538 -4.433571655791638 -4.947540336323073 -6.367081329929988 -4.536442330600948 -4.118524279595931 -8.648513009532053 -4.957770697691785 -10.60735774615796 -10.32712418391952 -7.898396894257075 -3.511839228157896 -2.594568185825892 -2.833815415449635 -4.952516421557675 -5.86065246559842 -3.443091363247206 -5.417529011398514 -5.021502181478354 -3.935494119160467 -3.72277215575059 -4.660059679575625 -6.495928139142393 -6.57616263126647 -8.574481474466666 -7.430977827221795 -7.820565269884355 -9.671636934637718 -10.76465032275155 -7.741606788699983 -6.900499964303037 -7.53639462454008 -6.588804643900403 -7.716502307299834 -8.541871681869452 -9.844672060136872 -11.6251296644441 -10.09430830602287 -9.836100208412063 -10.21276906009643 -13.11076394983684 -9.025466114850133 -13.3112779903604 -8.727933298054268 -11.81818313827171 -10.19618964443725 -11.32755124785717 -10.22108913608781 -11.40212101416182 -13.12398203788052 -8.627051641231901 -9.400449214047967 -6.940202956757048 -8.643820216953372 -7.139777931904291 -8.922473466756173 -5.627349107944383 -6.001772317111318 -7.910260726374304 -8.616326401298465 -7.658076805213568 -8.547736511001858 -9.639636529813288 -7.804921087841649 -9.375790922706074 -8.323976177365694 -3.934716328731156 -6.033027717283403 -6.092253248863926 -2.166193692318302 -2.699058616458699 + -6.665024771749813 -6.514670104719698 -5.770562475736369 -7.126344481672277 -6.609137609124446 -6.203985942760482 -8.879420325494721 -7.172658244380727 -9.87376826351101 -8.026845668551687 -6.227859771253861 -4.526383022377559 -3.322024834738841 -5.508469446591334 -5.211857256771964 -4.454283164530352 -4.118633146531465 -4.830869461528437 -5.497760577170993 -5.52336434118115 -4.716311035279432 -5.558604135549103 -4.586089718919538 -4.092121311165386 -4.933900646952679 -4.876358309353236 -5.540014023434196 -4.557573665253585 -4.290925908089775 -6.720270385694675 -5.139286110994362 -5.626381238670547 -6.368699710183137 -5.451259005638349 -5.971009981161842 -9.228585801027293 -5.476060825292848 -9.479826592140284 -9.6211823833994 -7.692413994741401 -3.342624900516967 -3.264937986808036 -3.81590766179761 -5.171168125021495 -7.686160122123567 -5.640182597373041 -5.528843930581729 -5.370778681125557 -3.835917735977091 -3.546387305769258 -4.44226016795119 -6.197746372393851 -5.971108777125664 -7.144241169555244 -6.621477673931167 -7.408112119798716 -8.610941277736856 -8.841562224861264 -6.519798348778409 -5.544892622892689 -6.208703906485383 -5.899916124137235 -7.068197751913885 -8.080364175195427 -8.424177709097421 -10.21610955866345 -8.957392932650691 -8.3654027761213 -8.285074049258583 -10.48909239106069 -7.705814968925552 -11.18960628056084 -6.811004707858956 -9.640335019244958 -8.452487245151133 -8.828032203089151 -8.954609381865794 -9.312577124281233 -11.13881203014262 -7.36436736221458 -8.148912207712556 -6.205234350290311 -7.500138608174893 -5.298974057719988 -7.244814709425555 -5.124422855736157 -5.008125734798341 -6.902475281661282 -7.48685986124292 -6.680808265648011 -7.336745083654023 -8.28725763647526 -6.774257169618068 -7.907639726901834 -7.946023091557436 -4.200630666684447 -5.926705505196878 -5.416180996745425 -2.994163729755655 -3.119841354094117 + -6.036319066519354 -5.927163150590786 -5.613128699522349 -6.771949523150397 -5.872383260793868 -5.801097103911161 -8.497286286496092 -7.072802206399501 -9.425431498675607 -7.802224357306841 -6.372002630392672 -4.743082500510354 -3.783391809547538 -5.460646133806677 -5.039107153800614 -3.486535925173484 -5.754200151616715 -4.463677597302649 -4.502758544846074 -4.206327723048162 -3.93292997746903 -4.38167481376513 -3.757884324782935 -3.302962912168937 -4.192324448085856 -4.017584784334758 -4.791364113079908 -4.659786469757819 -4.209776008847257 -6.227504328599025 -5.011595975021919 -5.530662034671877 -6.15332404021683 -5.829655495464067 -7.052384582298146 -8.605246615819851 -5.650716299176111 -7.743153194801948 -8.167371768624662 -6.720030114947804 -2.823301286109199 -3.460073272124646 -4.331906394808357 -4.759718727439349 -7.403902350267373 -5.875657240283545 -5.028097585963295 -5.160266387318643 -3.44574443458805 -3.250089011784439 -3.91740588751145 -5.442992149594829 -5.00691986195352 -5.773648923272049 -5.322011986934285 -6.169927712285244 -6.992116788220301 -6.757259892990987 -5.177243910944981 -4.304092341603337 -4.738912540247256 -4.988843265423839 -5.958426083968334 -7.150183362802636 -6.392821479028498 -8.213444356410037 -7.266758582722105 -6.291394787736408 -5.928574818222842 -7.567925303937955 -5.858108749969688 -8.419093710137531 -4.709622374692117 -7.182044266348385 -6.547663493802247 -5.969209290743493 -7.039352760355541 -6.827330559346592 -8.591418800024258 -5.814256037092946 -6.533389625778682 -5.099339849305579 -5.899897284152757 -3.682437093091266 -5.601108619970546 -4.391749207956764 -3.502073261300211 -5.372557578496071 -5.869180806026634 -5.370917197284143 -5.807591999942815 -6.443595433363953 -5.547373925783177 -6.025743366903043 -6.832228530169232 -3.879367238638224 -5.307940953336583 -4.567382159546469 -3.402854181937983 -2.869867742465006 + -5.039888785089715 -5.09267486983299 -5.061800293187844 -6.021629139344441 -4.86517787091725 -5.1371097349911 -7.594908332641353 -6.568767973985814 -8.023183346205769 -6.86319050799284 -5.434147121173737 -4.28051441376374 -3.685571611418709 -4.835257783166526 -4.080782649391949 -2.543346103488147 -5.677175969065047 -3.701399322396355 -3.479251305243451 -2.948374447441893 -3.123798183572944 -3.371477095774026 -2.880667947290931 -2.584543389878036 -3.456414940636023 -3.001908282465592 -3.767291960684815 -3.888523550223908 -3.497444938548142 -5.123825440399742 -4.186616491528184 -4.778202890145621 -5.526713803357779 -5.226812967885962 -6.68826905068272 -6.794052411685698 -5.266812903247228 -5.870873467250249 -6.360025295289233 -5.183392947973516 -2.147924241317014 -3.180929757952072 -4.212287266459498 -3.96642263280819 -5.500982735256173 -4.282007862020691 -4.076352821769824 -4.497260444873518 -2.795284002555491 -2.798935547024485 -3.207136742250896 -4.330022635912087 -3.844308414260013 -4.334806372658932 -3.65253274186216 -4.327812255201934 -5.117625699645941 -4.772423603764764 -3.860337884049272 -3.285459268349086 -3.308815277446556 -4.015114592996269 -4.591087509368663 -5.862021511224157 -4.128318353785289 -5.893776312987029 -5.310363022792444 -3.991077132965074 -3.496917273123472 -4.684488058170245 -3.885300463167368 -5.456594400136964 -2.699429890577449 -4.742975567354733 -4.739130129295518 -3.373219857919139 -4.80170046594867 -4.293141467045643 -5.844495549758904 -4.164730858952225 -4.796712772950968 -3.795283422446118 -4.092736158483604 -2.485975553788194 -4.184985293711634 -3.569260726899756 -2.095913364654734 -3.676944258946151 -4.098007360757038 -3.982818842741835 -4.219702350797888 -4.441589476366062 -4.309359393802879 -4.00507952098269 -5.198261734221887 -3.142814846665715 -4.495650718628895 -3.774384758877204 -3.362755672239473 -2.341429088832648 + -3.914064361590135 -4.206994478299748 -4.294872590442537 -5.088930639947648 -3.861799278987746 -4.392649813642493 -6.409997584138182 -5.847683115978725 -6.239891773926502 -5.61341888678362 -3.908442255313275 -3.470526303070073 -3.295116798410163 -3.879871922556504 -2.74012519399912 -1.829276965832833 -4.229865043954305 -2.762058505176356 -2.548747156502941 -1.967139662316185 -2.430425293845474 -2.573913350173825 -2.054750559887907 -2.027001369265918 -2.823817679003696 -1.988937050329696 -2.663066558321589 -2.591371914495539 -2.315962198001216 -3.658904048239492 -2.98033838525771 -3.626053469804901 -4.412416756822495 -3.668214437300776 -4.91409711941742 -4.32754006599589 -4.308595362839924 -3.861916741044524 -4.471797873107334 -3.41029474737843 -1.525093620549342 -2.598350406166901 -3.511880415238011 -2.889458322197697 -3.060111088896917 -2.634333446573692 -2.936962448341689 -3.44420053701424 -2.020485362749241 -2.228271606272756 -2.499118673798876 -3.074417477443944 -2.696362650297488 -2.753341122523125 -1.933376542623591 -2.335756904027221 -3.348707086570357 -3.11378112620514 -2.704737679775917 -2.552788846833437 -2.099321289143887 -3.15631557841607 -3.25181867295214 -4.446683447033138 -2.138539789229981 -3.664326237791101 -3.469411379126541 -1.928539260768048 -1.483120878994669 -2.284270215524884 -2.22727395297261 -2.861479017679812 -1.074670666959719 -2.659260783490026 -3.271149978012545 -1.414685639964773 -2.687768832817255 -2.099956959344127 -3.346075440889763 -2.679911896734211 -3.222192398966399 -2.532984951796607 -2.369123586442583 -1.639140269891868 -3.110644705524464 -2.791980738690654 -1.211777266208628 -2.183878151304043 -2.50703327708834 -2.757229057206132 -2.825981593403412 -2.632350263520493 -3.23287801214974 -2.175539334311907 -3.348532236079336 -2.184931977491942 -3.654616018291563 -3.065620327313809 -2.928058832330862 -1.832779491013909 + -2.896762533378933 -3.408214458846487 -3.491553325962741 -4.141758289930294 -3.045320817451284 -3.698677178603248 -5.163334391705575 -5.076620487343462 -4.581249215036223 -4.40161660558806 -2.365787754479243 -2.652477342686325 -2.90530608350673 -2.929243166845936 -1.514687900018544 -1.451244077768024 -2.441207078160005 -1.883144127562446 -1.817434001390211 -1.260653717748937 -1.92210298016289 -1.989760890111938 -1.381600424152566 -1.59445227602157 -2.377008592549828 -1.156369930358778 -1.692785526131047 -1.345046363254369 -1.080195360529615 -2.263578654437879 -1.783581153613341 -2.388248885812573 -3.103240010041191 -1.769918791220334 -2.618292190660213 -2.054450251675007 -3.085941126234957 -1.770850477104204 -2.827556251597798 -1.790231248281998 -1.118247528658685 -1.979355634868625 -2.501345672862044 -1.663871975623351 -0.9818383075318025 -1.839879625373214 -1.89005414770515 -2.154489149626443 -1.333648170266315 -1.6568649025985 -1.97739863134575 -1.936535067752288 -1.77372201117214 -1.21114189761829 -0.603124400337947 -0.7116434106246743 -1.980311845727556 -1.928807533524378 -1.80941873540803 -2.119055306975952 -1.237472812012186 -2.545715254674178 -2.198718112560528 -3.163602164655458 -0.8182703276688699 -1.911259310865717 -2.096346498623461 -0.4800480626781791 -0.2942413698492601 -0.7519035137665924 -1.211595127409964 -1.091823004797334 -0.05444483151950408 -1.220031114629819 -2.308480694053287 -0.2478950658423855 -1.136295033425995 -0.5724026293573843 -1.494892137372517 -1.615373244621424 -2.053836902777675 -1.56265011158257 -0.9961916274387477 -1.041738055602764 -2.420498233627768 -2.177470736114174 -0.9766699032807082 -1.18967318857608 -1.350613814138342 -1.865646353362536 -1.815550142335269 -1.303909043901513 -2.439423820436787 -0.8363926033198368 -1.668818572594319 -1.25349875210668 -2.83821463429922 -2.385285247049978 -2.192395731241049 -1.443081939721836 + -2.161451940577535 -2.801013983538724 -2.799755326821469 -3.29059802350821 -2.494978331153106 -3.129812261599 -4.031937733729137 -4.37842261249898 -3.368408548099978 -3.455071325268364 -1.279830957657396 -2.062578922173998 -2.709276404475531 -2.26836215815274 -0.7887947502513271 -1.388016019950555 -1.174715790406481 -1.260735458526142 -1.354953611407836 -0.7656029206991661 -1.609357321260177 -1.61378814544878 -0.947231899270264 -1.237217253601898 -2.163713925605407 -0.6536212454084307 -1.030701359457453 -0.6525505961908493 -0.2790490017287084 -1.344251108974277 -0.925382204581183 -1.367865244092172 -2.09440092278237 -0.3445660982633854 -0.9619535928250116 -0.6874278338509612 -2.070430976811167 -0.04675168202970781 -1.763293570575115 -0.6696850619482575 -1.002246430891319 -1.568892084270828 -1.554271222878015 -0.6246841213755943 0.2284786829176255 -1.466477871868847 -1.154251737893006 -1.017943149439361 -0.9354173195170006 -1.253341149365042 -1.756418233146178 -1.134013445695473 -1.225510741100152 -0.1308293115216657 -0.0237941708710423 0.1710506259641988 -1.149972393955977 -1.264477693854133 -1.222902953513312 -1.950087678216164 -0.7643294963345681 -2.226693995848109 -1.567899392425716 -2.202213747950736 -0.2737408325483557 -0.844506530178478 -1.39159589773044 0.1944175740563878 -0.04249878738301049 -0.2159156004199758 -0.9460358051292133 -0.3403742747323122 0.2947103862825315 -0.5611825035739457 -1.88732690186589 0.08935765375190385 -0.4274360062272535 0.1346874352930172 -0.5086734879250798 -1.115197101233207 -1.422314312688286 -1.056893196559486 -0.151086889828548 -0.6969333187735174 -2.091815381343167 -1.805988540306316 -1.266609343570963 -0.8415809994214669 -0.7479740221751854 -1.372968995648989 -1.270569910295308 -0.6058657242465415 -1.97473929665648 -0.1624543535508565 -0.549273308730335 -0.6481004972010851 -2.131097519679315 -1.781076186523933 -1.335099301986702 -1.223624583892335 + -1.777911678051169 -2.470416972020757 -2.314389548526378 -2.597736822746811 -2.206649143365212 -2.710771624057088 -3.132294611190446 -3.819080311594007 -2.694655271792726 -2.854872383795737 -0.8698543093887565 -1.775429678302316 -2.718892165928992 -2.003799145152698 -0.6601764369370358 -1.519103447438283 -0.7108666396261469 -1.004846636198636 -1.17867590548849 -0.5262809041159926 -1.467572079647653 -1.449514557403745 -0.798481002850167 -0.9858228347834483 -2.182262832822744 -0.5532610973823466 -0.7607098312437302 -0.6989081038118456 -0.223176318762853 -1.089890112089051 -0.5622339306792128 -0.7896489377108082 -1.713224522041855 0.1460536044814944 -0.5651410466543894 -0.412792845822878 -1.594384533813809 0.7259753495268342 -1.375783542966929 -0.238958172594721 -1.148935489237374 -1.489819420891763 -0.9825831732196093 -0.1548138182233743 0.4633479246966203 -0.964542272043218 -0.84183836518352 -0.5092528274858523 -0.9177785068386584 -1.158944478299418 -1.843294300585512 -0.7704078095759996 -1.094861941699492 0.0966391231486341 -0.287042328651296 0.2252644753662025 -0.8245985844278039 -1.072778547502821 -0.9429732116308287 -1.977450301147769 -0.6379085037086583 -2.150381496031514 -1.344858485355871 -1.634300724195782 -0.3327202105210745 -0.4415191588414018 -1.337386961095035 0.17791766629216 -0.4872572948770539 -0.4602197265485302 -1.29587726486352 -0.4797337786585558 0.08261530345771462 -0.5958732932194835 -1.904643188063346 -0.3212155295386765 -0.5715481043962427 0.09209022290087887 -0.3529849420210667 -1.144930481262236 -1.306844021808502 -1.037922292071926 0.1232791802203792 -0.6588231952691785 -2.040730820217505 -1.69410256877245 -1.820445775956614 -1.091348338796706 -0.6651447050371644 -1.230755957643851 -1.151139162346226 -0.5109080631045799 -1.804898743779631 -0.1433343606913695 -0.2272389883146388 -0.6088259047974134 -1.690507300001627 -1.435036375967684 -0.6866229154747998 -1.270769509715219 + -1.703865794181183 -2.438369530165801 -2.063408485788386 -2.090295184374554 -2.122921386428061 -2.427485343359876 -2.5127012746525 -3.407540818188863 -2.457225083948288 -2.552898286125128 -1.047333899397927 -1.718662158542429 -2.78224661312197 -2.030571815955682 -0.9236139456243109 -1.698655295485878 -0.8552673695235171 -1.108376308139668 -1.24935590095447 -0.650436115465709 -1.447255048788065 -1.488354812088801 -0.9203728957727435 -0.9291880434506083 -2.377266844254336 -0.8194641485242755 -0.8525789506020374 -1.287621057716024 -0.8613029693715362 -1.385488061258002 -0.6425050430952979 -0.7142430557978514 -1.867669193254187 -0.1657006478944822 -1.147629109242189 -0.8585377576719111 -1.679365225168794 0.3365463231307331 -1.434835781893071 -0.463352042628685 -1.446947613530938 -1.708266788068613 -0.9053131932705583 -0.3844016085545263 -0.03838383484145425 -0.6066878666160846 -0.9485213623212161 -0.8165964547611111 -1.217122394164107 -1.397255180213506 -2.139265021250594 -0.8053267069362846 -1.305393224345607 -0.55692301700401 -1.149004794411667 -0.34144057443973 -0.8613017792376922 -1.235665680116654 -0.9255937090858879 -2.116416505165489 -0.7642352679619933 -2.214898478681334 -1.407438624746646 -1.428295000350772 -0.7098800549356383 -0.5249718227714766 -1.725786077942757 -0.281435766542927 -1.176386537936196 -1.032906021457165 -1.95306622559292 -1.136739103589207 -0.4484999741544016 -1.038341590006894 -2.153951089661859 -1.191124525902524 -1.297526421997645 -0.4277285649368423 -0.7658431331710744 -1.501731765403747 -1.54959459514248 -1.36586161232799 -0.07814315498580982 -0.9082264843791563 -2.135278779271175 -1.777616452716757 -2.345881842211384 -1.706254165808105 -0.939946105627314 -1.305268024698307 -1.314909337794234 -0.833933985872136 -1.833342219626502 -0.5891245727107162 -0.6428794652529177 -1.151313916263462 -1.629127666576096 -1.486465424086418 -0.5925636242645851 -1.617960030835967 + -1.806620913124789 -2.595789499820967 -2.002151549851988 -1.764601613496779 -2.155008736248419 -2.236974601313705 -2.154532507571275 -3.106767515149841 -2.441216735067428 -2.421031359328481 -1.506024948186678 -1.747162635449058 -2.701464111491077 -2.120703882725593 -1.239455559451017 -1.825689896544645 -1.238522724472205 -1.443932685997424 -1.481382837846468 -1.112504630473268 -1.476892751921696 -1.675463463649066 -1.226910180870618 -1.101632128959636 -2.64883139700396 -1.309604149850202 -1.175373346901324 -1.981735895238671 -1.792602164459822 -1.878251546180763 -0.9612917296981323 -1.002096504559631 -2.144345609944139 -0.7702548963625304 -1.903533602131574 -1.44157242971778 -2.093506086874868 -0.8051381235439976 -1.592967545579313 -1.098198849283108 -1.748618052842176 -2.067887183612584 -1.202633288035031 -1.075794509949446 -0.8326787533402467 -0.9489461009704883 -1.363890943006794 -1.64855255751786 -1.644666984118885 -1.827056027808794 -2.478134557202338 -1.078163811145714 -1.685983952689639 -1.644829243125059 -2.143078892173435 -1.145378825047374 -1.095535065711374 -1.596985448224586 -1.096140684247871 -2.283932412094259 -1.034293252527604 -2.317772185358081 -1.600626978368382 -1.489469086271129 -1.180532064554427 -0.9024137128435541 -2.2650613317237 -0.9011451393703283 -1.703234400749352 -1.505477205588249 -2.564892140631855 -1.856296654528705 -1.017240064014914 -1.528485514802014 -2.397077286419517 -2.043671210909451 -2.159473043758226 -1.05249386079231 -1.370080038468586 -1.902153007807556 -1.916619979640245 -1.801782707811071 -0.5615317613933257 -1.31031932833821 -2.228368483938539 -1.924174523647252 -2.602245313038111 -2.349932182610701 -1.34336816287032 -1.432837741918775 -1.56685584621664 -1.305869271658594 -1.932948977864726 -1.206919250304054 -1.433667897312262 -1.997618238361611 -1.877178806304073 -1.839570593103417 -1.097378504628068 -2.119837001423653 + -1.911993949976022 -2.703583375223388 -2.022330187232001 -1.582324087292363 -2.194474960750085 -2.075255750532961 -1.983360102800361 -2.853030798083637 -2.420745004394121 -2.316195815536048 -1.905100628711807 -1.733025719873694 -2.378081390379521 -2.071174494119305 -1.365710295406643 -1.865231090242105 -1.551639945700344 -1.810020374042779 -1.766211718317209 -1.6721385402343 -1.480533802543505 -1.898959135876794 -1.574937900069926 -1.399853168906247 -2.874516943469644 -1.813635475031333 -1.545036167102808 -2.365455615061364 -2.489061035428676 -2.178234295979564 -1.276623630452377 -1.398677306973696 -2.223046086479371 -1.226251807344852 -2.242404178590732 -1.793259175388812 -2.520829364835777 -1.892298498529954 -1.630753898472221 -1.789087643736821 -1.925648921273933 -2.363370882142135 -1.575979438184277 -1.790892972593838 -1.428527495639386 -1.692782484523264 -1.89721509830791 -2.438739873993882 -1.974873890291747 -2.190649476703129 -2.689661432164485 -1.377894520565917 -2.027653240666041 -2.477790129014465 -2.806714306437243 -1.801313636512532 -1.401488716704989 -1.99063396085694 -1.357662804930783 -2.41214789568653 -1.346188013797374 -2.388317327777713 -1.791971259578077 -1.685539244761458 -1.629705084134912 -1.44298228142361 -2.699082048950004 -1.469938378831102 -1.904799637113683 -1.699546515694237 -2.865778190687706 -2.275914448546246 -1.403299154721026 -1.795797561851941 -2.445200293503149 -2.431233712138237 -2.719797966385613 -1.450502522104216 -1.822325590120272 -2.102634105736342 -2.179292179680488 -2.114996203578812 -1.100576830022419 -1.690754822528561 -2.206271077767269 -1.981947871298871 -2.478620933627553 -2.713282116982327 -1.659090949373422 -1.484070917436838 -1.723360535102984 -1.673784864262416 -1.983009213610785 -1.717082906408905 -2.109208604204468 -2.70125083863968 -2.185589618855374 -2.176843123469553 -1.830024115974084 -2.527106414522507 + -1.873506655378151 -2.520111451725825 -1.982960877365258 -1.469985587646079 -2.125674439681461 -1.866740098754235 -1.890483217852307 -2.578889131480537 -2.244649989734171 -2.141255230772003 -2.035755133329076 -1.623274993940868 -1.883594660595918 -1.808157847105804 -1.277129246005643 -1.817769450793094 -1.675282453464661 -2.02095614974769 -2.002703025622395 -2.032332039447283 -1.413857146317241 -2.020907113994326 -1.80137379018197 -1.622920007809057 -2.938846484597889 -2.120272577900323 -1.789531391790661 -2.262135795914219 -2.593779677101338 -2.086313650145712 -1.426903966961618 -1.681294632299341 -2.17937451871785 -1.425663681641254 -2.188600190970647 -1.906571248228829 -2.694221659986681 -2.290483055220875 -1.519407948515436 -2.219531989330335 -1.912831399101833 -2.421862994418234 -1.714470414242442 -2.175838939205732 -1.567271550277177 -1.961242156187851 -2.32789509446221 -2.735815553308612 -2.04241647750132 -2.250213384067138 -2.666872502630213 -1.530178606237371 -2.153269119542074 -2.562560668757214 -2.891131893364218 -2.064850829089664 -1.699051528925338 -2.260935703638097 -1.595604697520685 -2.455116706951742 -1.608212912316148 -2.387247650223344 -1.884675741331648 -1.854102702616728 -1.973792807641075 -2.030231220927817 -2.871964394220413 -1.874683154217109 -1.863035502638922 -1.70067112164179 -2.758350581971172 -2.234563010220882 -1.510927270290267 -1.765523094860328 -2.217801793893159 -2.194818557703456 -2.722045542411479 -1.448730296226131 -1.929072869989795 -1.987769994346991 -2.183144717374034 -2.178515335184784 -1.505563896603689 -1.940015028433891 -2.030789175508971 -1.845998200025406 -2.048719717290169 -2.642252557399047 -1.755211915955442 -1.412773313551952 -1.668375104511142 -1.785491936680046 -1.899971469047159 -1.956497459606908 -2.312770745684247 -2.908858232898638 -2.281119020047299 -2.188003273684444 -2.292769627546477 -2.664109876515229 + -1.642951944906599 -1.993037635176734 -1.762420791666955 -1.334423372129095 -1.850247590435174 -1.538975266616035 -1.762842992087826 -2.234442875298555 -1.885222489949228 -1.882680852782869 -1.880881432296519 -1.442816114795278 -1.40646149229633 -1.385345614451239 -1.100106736372027 -1.678593004586901 -1.681855157430391 -1.993531774302937 -2.125062872020862 -2.062621885252156 -1.291400816087844 -1.933634019273086 -1.7725471078993 -1.60771864416526 -2.762126222318329 -2.086465699689143 -1.807435481619905 -1.767567434591911 -2.099501648014666 -1.693445746554062 -1.390143310283747 -1.730282668589552 -2.25686833809732 -1.475517332525897 -2.090734310894504 -1.9405200835904 -2.458506514479893 -2.009304418990411 -1.341679082869518 -2.243613129474852 -1.726530204492519 -2.173891128114747 -1.491720055156748 -2.140263811921216 -1.448353108878187 -1.621666824868658 -2.481264409081893 -2.431538061606716 -1.799121051029942 -1.921838265714314 -2.409283695536487 -1.460948104620627 -1.974513061310518 -1.935755009065815 -2.443554382290586 -1.886939742622872 -1.924273564377472 -2.278173227379739 -1.683282992115721 -2.388832031244874 -1.736141859073605 -2.288920506674458 -1.806215032136606 -1.823484054473738 -2.078036130895271 -2.463851159634942 -2.720098100384348 -2.055571292672084 -1.726918631840817 -1.651731967671367 -2.31688281166862 -1.78005823395506 -1.372933309932705 -1.54333227164534 -1.757816666988219 -1.519757961896858 -2.169989633370051 -1.077544804900754 -1.679578338402735 -1.582256149245495 -1.880273459203863 -2.006035923413492 -1.672377674087784 -2.040108664298259 -1.749362921658985 -1.507044775783697 -1.539747572139959 -2.198807561011563 -1.622545496892599 -1.269178015172656 -1.381599350906981 -1.623467377457928 -1.653343536287139 -1.921507595769071 -2.006090256738389 -2.583215346136058 -2.040752022046945 -1.813713343224663 -2.234788948159803 -2.499969647515389 + -1.310449456696006 -1.35978613981024 -1.316592155155377 -1.096088890302781 -1.322829775290302 -1.042801106399565 -1.515373531707155 -1.801659769207618 -1.441325418594715 -1.612377481484145 -1.552529206534928 -1.254292454455936 -1.120935036176888 -0.8992554320376485 -0.9543950760096322 -1.431541548260839 -1.621774818081576 -1.77402838070816 -2.119344188502509 -1.847292130210917 -1.174188172272807 -1.604558723618538 -1.427115877242613 -1.342362152769624 -2.320124727986695 -1.68381306266383 -1.598264359286986 -1.103737296170038 -1.301892972204769 -1.271282707785758 -1.259340983528091 -1.486647958358617 -2.358043290949354 -1.418896834612383 -2.065156069562249 -1.952325435281409 -1.797296678504978 -1.575751625418235 -1.159883239577454 -1.938648807813479 -1.455027044853978 -1.695656318332453 -1.036023924591291 -1.815888078927401 -1.403442582363916 -1.570675042328353 -2.298702238256672 -1.718463170389697 -1.308977846660127 -1.300157656999318 -2.017262781681438 -1.204170620726785 -1.51502275107714 -1.131334393051247 -1.735561043150938 -1.38039295402541 -2.003886757703185 -1.954824159252894 -1.494246447053854 -2.206901840029957 -1.662496959126123 -2.073770966489974 -1.50788239679855 -1.47177444418594 -1.791250182929616 -2.453605195132695 -2.231790029603872 -1.948885375100645 -1.520765557794675 -1.516468662491206 -1.722981161437929 -1.09267623910273 -1.103289243030304 -1.297588345303666 -1.20095721656071 -0.7329360610101503 -1.283308263989966 -0.5283147801328596 -1.192868936704599 -0.9917902377815153 -1.320839623096731 -1.720226522853864 -1.599193449670111 -1.998744157501619 -1.462675072042202 -1.053331220300379 -1.193181604976417 -1.618630431410679 -1.364375298646337 -1.170279951346856 -0.9294237476351555 -1.277010511190383 -1.263242233319943 -1.733614594477331 -1.465532324185915 -2.03357922350915 -1.55268750796813 -1.29619406256802 -1.737844372828818 -2.091630290718078 + -1.083102043335202 -1.03824486468875 -0.7171265741817479 -0.7270136941151577 -0.5818460914251773 -0.3724786231286998 -1.116781567568978 -1.29817739304417 -1.097922020720944 -1.452717721575027 -1.161877575235849 -1.104458013459407 -1.073545351390294 -0.4013896470125928 -0.8499105811147274 -1.081021066488802 -1.249886362365473 -1.489770574581144 -2.023158305952165 -1.544762311451905 -1.121169754094808 -1.083348002215644 -0.7954542310963006 -0.9635123843393814 -1.649013433059736 -1.004426714436704 -1.254478325252421 -0.4490014829898428 -0.5934614383536427 -1.044109874201695 -1.156538064838969 -0.8963818673259993 -1.97064314028421 -1.168664348198035 -1.871985216721214 -1.844826220365178 -0.8217237003318303 -1.379767647705009 -0.8816819333241881 -1.54352049066938 -1.225102881247039 -1.194582788624871 -0.5882806235093199 -1.363582351481099 -1.345314395371548 -1.543518150023228 -1.854447005963789 -0.890938056609528 -0.6953246118014249 -0.5577704224485842 -1.633717956030296 -0.8515214819256585 -0.892712321392537 -0.7697021943811251 -1.095791393259447 -0.7380377877691444 -1.863828312119949 -1.264799649214183 -0.924945704136519 -1.915132744215157 -1.363026321764437 -1.74503483662329 -0.9918046607083397 -0.8043556366583289 -1.085595551906408 -1.769286389686386 -1.428486751095079 -1.47865266815063 -1.106151150338974 -1.033281760627688 -1.171429696467385 -0.3784349937704974 -0.8291226078872569 -1.125810885515421 -0.7167378718913824 -0.04348952259323369 -0.3705161806171873 -0.05415401944901532 -0.623245793125534 -0.3222831456379254 -0.6173288684179852 -1.480069553350972 -1.371423729023036 -1.776002407228873 -1.264630951600338 -0.6231808509603525 -1.103413665661719 -1.18372941335565 -1.141060459853179 -1.23826093545631 -0.4246491572539526 -0.8708158284989622 -0.7821355819414748 -1.549490354242153 -1.103553876017941 -1.73299238065465 -1.039281320538748 -0.9966734286385872 -1.046290490242654 -1.527680544990803 + -1.195847453559509 -1.347920956087364 -0.1457239787669096 -0.2717698755623132 0.2467226316966844 0.4231881779160176 -0.5997993512573885 -0.7698272941233881 -1.053069693413818 -1.51750924883163 -0.7016343804934877 -0.9827171317506327 -1.15391686951034 0.1260265357143169 -0.6995757219454504 -0.6827586490430804 -0.1520124978318727 -1.265554511306107 -1.909006556648819 -1.248282210224488 -1.144916743538943 -0.4746261623859027 0.01188833154083113 -0.6471352656998306 -0.8348276073629677 -0.2255009105756471 -0.9208372343600786 0.1004614849412064 -0.2664965916549136 -1.037110458351322 -1.141795407428845 0.06016723659445233 -0.7073001394988694 -0.6951295799198647 -1.319500868979901 -1.536119322803785 0.2980396128750442 -1.236074557161743 -0.2471040533209248 -1.31141028069635 -1.154006375139147 -0.9209095824143105 -0.2733515008322627 -0.8304024004403203 -0.862348074179174 -0.105737018201616 -1.301296599653747 -0.1299198397018273 -0.07917391707746901 0.1806024712995509 -1.361264396589604 -0.4773782483379421 -0.2713344222735259 -1.045765292720773 -0.7421787241929678 -0.1462962044589631 -1.468655899278929 -0.2612199295708706 0.07505672272458241 -1.527834399073015 -0.8862870829878169 -1.357117155100354 -0.3460369707072459 0.007094280130786501 -0.1580383996256387 -0.4462763360497775 -0.382991083764864 -0.6090479676306586 -0.3179550799155777 0.09612839730880296 -0.7909736672281724 0.2131850535442936 -0.6364871456826222 -0.9921898316065381 -0.4482656746404245 0.5355330271643481 0.3005885756174393 0.1316155165400232 -0.08562864364216694 0.3656554456217691 0.09736459021712562 -1.41078370821532 -1.124863952133978 -1.299990100704605 -1.187407281226456 -0.3354254541852697 -1.168945559971121 -1.077470655114439 -1.092182536408927 -1.533022457748302 0.02615998505370953 -0.4877766037734546 -0.2683190570942315 -1.4629034725358 -1.232180950851216 -2.038163725993854 -0.7155194964446991 -1.118076417503289 -0.3722428196823273 -0.9053340330904009 + -1.787252733794503 -2.251260960410946 0.1625221604790568 0.164975841935302 0.9849604212549821 1.246494484272262 -0.05104022198429448 -0.2744697356283723 -1.432899355741938 -1.851931640120711 -0.00431465567135092 -0.8056886275130637 -1.150074468057028 0.7262811746075784 -0.3920931551503486 -0.331400684525363 1.691486900476496 -1.165342094701145 -1.857239769515672 -0.9814143815970056 -1.210690587341787 0.09960779993662072 0.8410638576933707 -0.4854206356980768 0.00838861798911239 0.4515613322273566 -0.739353682492947 0.4401098363741767 -0.4449979084797633 -1.12021598961627 -1.172073553247401 1.274217857037826 1.200296204752817 -0.1584261948821464 -0.6184382091729788 -1.124967762180646 1.414597021544466 -0.6782466045530038 0.9600757675780009 -1.365541636810235 -1.301541361008276 -1.034043756844255 -0.01678624544842933 -0.1951264928170513 0.1183935468072028 2.134693264081472 -0.7830235668309364 0.5921796176882204 0.4542819079506444 0.8758335563492494 -1.203759079516402 -0.08901432058609515 0.1970682719511387 -1.516007767781957 -0.6925733882970917 0.2794189631722475 -0.8606031420474665 0.9171660786096254 1.47458989029596 -1.067103487606289 -0.3619717466894201 -1.026325999740038 0.2509912585477423 0.6704624794706433 0.6362561676394307 1.138285206401633 0.757832571696099 0.5883078104985771 0.8580374296037689 1.949668974376664 -0.6101291896447947 0.6191919602351845 -0.5500773323892645 -0.7631484188561899 -0.4735440780241333 1.054521341566456 0.5705576457138477 -0.08666077265388594 0.3609812279454445 1.043212353359763 0.7019673290390642 -1.567653655533888 -1.000641878854026 -0.5754986139325666 -1.181976649714983 -0.2366912571499711 -1.201877955535878 -1.300417071339297 -1.269590354689626 -2.009018688675042 0.3645396147421707 -0.1241919991780378 0.239020729344702 -1.446971711746301 -1.901900441023372 -2.977011065000625 -0.6787311688736395 -1.536133774468226 0.215245177434511 -0.2730490116622986 + -2.801903924728094 -3.31086610115085 0.008737536227272358 0.4635316035964934 1.469316887800233 1.974903857977552 0.4174474880692287 0.1375324012969941 -2.223267145591763 -2.396316480409951 1.197248283639283 -0.4347633404472617 -0.8462378443487637 1.405391240816698 0.1531397716737004 -0.1042121706147157 3.623454183288804 -1.188667032474171 -1.927952871180878 -0.7687446858647036 -1.277464807461456 0.5269110904564513 1.541837843647045 -0.4400363387252284 0.7645426464005141 0.8629250577823768 -0.8019603741613537 0.3830957100171872 -1.130571775839883 -1.180299921759058 -1.13056931395198 2.458345170919955 3.038085998533735 0.2093588216271058 -0.2397384223248551 -0.8671458684939068 2.419260840165641 0.4223495413190088 2.617925680591454 -1.64921011281686 -1.64154046767311 -1.499990738801671 0.3154158340549067 0.4772871338684892 1.051883146343437 2.830845294308803 -0.3770249927318308 1.383492835215339 0.8514320826598691 1.51360100004274 -1.070172166120727 0.3654129116251639 0.4164377403029675 -1.401048775569521 -0.7857354868979911 0.5245242019385614 -0.164657389054355 2.060678656430355 3.146440933344195 -0.5644328800758842 0.02836971390631859 -0.9027838490133036 0.5799991518993011 0.8952031427618294 0.9944868171737653 2.415467456866054 1.78819564629373 1.914817854672407 2.219100657765125 4.273543986656364 -0.5723626490116658 0.8465190776441887 -0.5460145956312772 -0.30178232877347 -0.7969605266880535 1.462953703553637 0.3837322738409057 -0.72551810790128 0.6789884672402877 1.664786964601916 1.104328665049707 -1.938196755268393 -1.104491220399211 0.2202989658550294 -1.143610473871036 -0.2914099237126493 -1.096212431869404 -1.688754030443846 -1.610485026972583 -2.516925089387314 0.5943876737474056 0.3027889401637367 0.7344091821014445 -1.36232037776108 -2.888298478958859 -4.218284517778102 -0.8838401529007456 -1.864680938814203 0.7917876213634134 0.4294214950464937 + -6.148055366941662 -5.124504926337977 -3.281607514996722 -4.113847420459933 -4.55811504162557 -4.195186258708418 -4.834716744793695 -3.003567486295651 -1.845225208000556 -1.775244781922083 1.921990230008305 0.7643286617785634 1.091774142191298 -2.172776732061493 -0.3719262172746767 -5.613974464146395 0.2640980223917211 -3.206155748910533 -7.090010539893228 -6.623608413439797 -5.045891374064013 -8.571226631547688 -5.889673520552606 -4.616646984327986 -6.225042118981946 -5.660689611719135 -5.084920137098379 -0.9924937718878937 -2.690601385202626 -5.563619996065881 -0.6150071906672565 -1.453148216264253 -4.771465032095989 -2.34620452813374 -0.5818404589673492 -5.516009699889082 -3.294576355429626 -7.818384168221272 -7.620558009162636 -5.990883517059729 -2.511465101835256 -0.7160779212923671 -0.9080972615910241 -2.553359868621897 -0.6996242216851862 -1.835674736370597 -3.640711759108237 -2.651879796484707 -3.56171469903893 -4.108039082663026 -4.31447672085892 -6.030333855394844 -6.32961111977329 -11.21771105367748 -7.580638740259474 -6.38651105520421 -9.53585928863049 -13.12356032777825 -9.372984624834203 -9.489763296806416 -9.501349077759563 -7.430673048146446 -8.294519717320554 -8.906311772287154 -10.64814041008503 -12.31069805005063 -10.64736930595245 -10.88862789296127 -12.85376335250976 -17.14741926634815 -9.70615180706227 -15.72670002169616 -12.067658553824 -15.35520529945734 -12.8111181011991 -13.20708886744922 -10.4667943319522 -13.63072461284719 -14.86805439350564 -10.4155568748663 -10.56218482282702 -7.262966512687285 -9.663437706725517 -9.469274387417158 -12.13100010689402 -6.100012324137424 -4.967159139403975 -8.506070594659604 -9.413380811157367 -8.557455262412986 -10.05576461372038 -10.70283686047333 -8.834132398588736 -10.99482428717602 -7.080260850450941 -1.880198367123739 -4.321778203041958 -6.099777312342894 -0.4127635173097133 -0.2820681637339626 + -6.983684030310542 -6.328244188731333 -4.646417624477181 -5.768386315205134 -6.001146592858277 -5.453375388300628 -6.78475491367135 -4.759101508312597 -5.808407357311808 -4.993161962343947 -1.94787780241677 -1.695647097540132 -0.8750046617196858 -3.70695038959127 -2.362834289551756 -5.701585791628304 0.07121827536565206 -4.11617238341455 -6.806007311013673 -6.927215418336345 -5.338735666928187 -7.879459453855816 -5.747610152477137 -4.969872028056386 -5.89855223835184 -5.688343394391268 -5.543790507181257 -2.200315247468097 -3.310044508209103 -6.077387953580001 -2.6380757014972 -3.40424861260999 -5.976879492172429 -3.347223503790019 -2.156644414429138 -7.261314267081843 -4.295335953822075 -10.07935692581498 -9.783438936799826 -7.413578288131703 -3.333462502856946 -1.815770800422115 -1.924865642747136 -4.469913030328655 -3.331700101033043 -1.529835152114419 -4.728935789043399 -4.08564808100499 -3.945316782943337 -4.033872082238304 -4.626927716701857 -6.336166824876301 -6.526003417875472 -9.949778836049973 -7.667210880666744 -7.281863520502611 -9.846326360800958 -12.10451392005598 -8.669718933283377 -8.248998336710315 -8.751376437792239 -7.268246469564929 -8.46241749634828 -9.021358062724175 -10.51152624148017 -12.12281718768281 -10.65259778313703 -10.73805115618393 -11.84967967521561 -15.4736027917952 -9.841086296186404 -15.14679518673802 -10.90917508889106 -14.36424272846853 -11.84173251937682 -13.15066703510092 -10.71508925066178 -12.81129665072694 -14.34613005350639 -9.838387918952776 -10.27975489653772 -7.427255389573247 -9.716420307197495 -9.104683891288914 -11.15522199220709 -6.34877775878158 -6.512001181868072 -9.172281383707968 -9.786617006943743 -8.702780018778867 -9.931309826839424 -10.81988241564977 -8.520411332299773 -10.63581056225667 -8.265878715686995 -3.443689624598846 -5.752709368014621 -6.526678740452553 -1.372607770427749 -1.805576879832383 + -7.243028747008793 -6.765082106154296 -5.412171471820329 -6.561327116993198 -6.47811851523511 -5.920672366759391 -7.773614487639861 -5.761055331429816 -8.201899400377442 -6.884349933789053 -4.684020355030952 -3.503952799546823 -2.484246901811275 -4.788575653583621 -3.900996636498348 -5.318592686150623 -1.668134280663025 -4.71241009654932 -6.20814556042933 -6.564822306925635 -5.164590795260665 -6.825118248460058 -5.295903697035101 -4.746854692317868 -5.335335408839455 -5.36891283391742 -5.595691673610418 -3.462380844044674 -3.95281900392547 -6.442684853777791 -4.139775691512114 -4.789097235774534 -6.289904876220135 -4.293809174809212 -3.924272214413122 -8.581996187301684 -4.976513082903693 -10.43737031080883 -10.29356315497319 -8.068673200230023 -3.650543012181515 -2.800636630651752 -3.065486880248955 -5.556760683524544 -6.473356018393154 -3.576868491106623 -5.318179574610301 -5.057830346751985 -4.088220600728164 -3.924582860041937 -4.688595565117112 -6.381285352944133 -6.314134481609017 -8.473305604019515 -7.355937262899261 -7.669271748100982 -9.465549377989191 -10.52192950006429 -7.639896346334581 -6.845440361896408 -7.637403630909077 -6.722754698912468 -8.123153380492568 -8.75821298196206 -9.764865782699417 -11.34405810257522 -10.05463306785168 -9.974420278122125 -10.42738466566789 -13.29696567531391 -9.206837285397341 -13.80020000641525 -9.271981991892972 -12.62576152693327 -10.332177078104 -11.63119591123632 -10.1882767023842 -11.27779948257376 -13.05304118224194 -8.842861508436727 -9.433709377415198 -7.055608908402746 -9.059784131315155 -7.622376779176648 -9.57327224036294 -6.087333517765273 -6.668180317712086 -8.843181779730571 -9.244646257369823 -8.137489027998527 -9.105698498884522 -10.03412533702431 -7.74530691919972 -9.608714925347158 -8.637744353520247 -4.356031208288186 -6.323850949331245 -6.265624533755727 -2.401636477250122 -2.994166200917342 + -6.869198625248828 -6.454699772017193 -5.544786889804527 -6.555867322618724 -6.101852617946861 -5.730480260324839 -7.87399230900337 -6.067637865147844 -8.930348110097839 -7.462809529337392 -6.007626787701156 -4.412203004056209 -3.451123180317154 -5.266895231088938 -4.680612428132008 -4.543180138650769 -4.105466333304548 -4.808529377382456 -5.35254837431421 -5.576828181507153 -4.594186671096395 -5.59760256946538 -4.58912025851896 -4.065830790991413 -4.593490926868981 -4.716405223669426 -5.200003807047324 -4.322801821912435 -4.342040026909672 -6.455489320584093 -4.858863407587705 -5.432441450250735 -6.233242172967948 -5.138783761402465 -5.653961499124307 -9.073687886198513 -5.401477061655555 -9.314798316911265 -9.427761008432753 -7.845047256941143 -3.460411436401955 -3.411039297555817 -3.971038851300364 -5.633270485667026 -8.258182843975405 -5.932803572411899 -5.275316409496785 -5.338546573150097 -3.928686567029217 -3.714358999852266 -4.404137666324459 -5.998803200586963 -5.67058573084978 -7.019538427326552 -6.562070822501937 -7.275459399807005 -8.368479894656048 -8.542752659141115 -6.364884909419288 -5.420108876091831 -6.230380514558888 -5.841662633205033 -7.228689701183612 -8.024006969939364 -8.288981881458312 -9.907877410201763 -8.800069606397301 -8.468103372128553 -8.488189451252765 -10.65850356017836 -7.801218503642303 -11.56927230556903 -7.235534350955277 -10.30215162478271 -8.425582578351168 -9.044648887998392 -8.863572011593533 -9.125512862472533 -11.00466277441865 -7.443727497069176 -8.068549913171637 -6.199759359627024 -7.775667465488823 -5.735385911425055 -7.699510933728106 -5.419565203274033 -5.620181707255597 -7.638185278603032 -7.915292943827808 -6.988732662803159 -7.710889962942019 -8.485028990591672 -6.60603873891705 -7.976750919617189 -8.13945942526334 -4.527443572187622 -6.05260029238525 -5.496819268887521 -3.194542947028367 -3.393175557742859 + -5.949585565420421 -5.609408501877624 -5.135152568356716 -5.949199932700139 -5.148748256353429 -5.090938142209779 -7.265705836325651 -5.81993636599509 -8.252183573553339 -6.974205596481625 -5.95326141912301 -4.420234205175802 -3.6996191584185 -5.087360165765858 -4.570421077851279 -3.533818331717157 -5.714016613853801 -4.36663293780839 -4.331806842692458 -4.232612926451111 -3.78765904951797 -4.380118543431308 -3.709745339358051 -3.19051908563938 -3.760229064399027 -3.795923739649879 -4.403773174730304 -4.389794891521888 -4.197973992404513 -5.901365017205535 -4.716311440396566 -5.273762902447743 -5.92993706579 -5.454490775790873 -6.629997707379516 -8.373346230675452 -5.451261171230612 -7.555881935848333 -7.757790911181473 -6.798538247755459 -2.887494174969106 -3.493946671173035 -4.337160546949235 -4.974670462985159 -7.806365891540963 -6.046423143390484 -4.631274003720392 -4.998001459574425 -3.43266806457541 -3.335833032041592 -3.787957216381074 -5.147054299497427 -4.667841153127483 -5.612218684444088 -5.244239469436707 -6.033559879799213 -6.709971118514659 -6.407207854867011 -4.973090015005596 -4.110374838358439 -4.672418000080341 -4.746157132683948 -5.870668096797999 -6.823281850403873 -6.19515567405324 -7.889137442685751 -7.006546319509653 -6.354101595905377 -6.108215648027908 -7.703313829431863 -5.856380192322831 -8.65391501999693 -4.997143746033544 -7.639808388659731 -6.353054524603067 -6.085813101677104 -6.896622714198202 -6.593202476262377 -8.402573649588703 -5.748843364860022 -6.344856014819925 -4.970490685605455 -6.04418309595485 -4.014310275404569 -5.827183729736362 -4.49527800024498 -3.925096260712053 -5.842275013607377 -6.074701688074128 -5.482461157864236 -5.976501769479 -6.434337856531783 -5.266514958029802 -5.92319299430892 -6.876122728004702 -4.051974304689793 -5.235903373981273 -4.516900917562452 -3.52461308220154 -3.074602077948864 + -4.694282773507439 -4.517040733582689 -4.361231931601651 -4.998770124453586 -3.957244959994568 -4.229942703372217 -6.191331668713246 -5.207714102754835 -6.674609693211096 -5.810861536454468 -4.83493865608034 -3.751074681324098 -3.369270963594317 -4.340368042621321 -3.686893891133877 -2.501601748965186 -5.573198078130645 -3.508046254963119 -3.266219384684518 -2.89327423326904 -2.931312612945476 -3.301667124484084 -2.761309889872791 -2.375521243379467 -2.940423521446064 -2.727902068138064 -3.342203443593462 -3.608206555003562 -3.410756877450694 -4.752664274461495 -3.856415938991631 -4.428662736423576 -5.168951757825198 -4.7874619480408 -6.166047160118978 -6.476661333618722 -4.931846235418334 -5.63549460357217 -5.759057411252797 -5.151144216268221 -2.137660571366723 -3.073706264392058 -4.034072717861818 -3.906159514141564 -5.681205618383245 -4.186585039105921 -3.56956142269614 -4.195202257818892 -2.648920478201035 -2.764353677686813 -2.969377318762781 -3.937058457690114 -3.468015121201461 -4.12504707199696 -3.521941223162685 -4.167223339129123 -4.799984187160589 -4.378405634313822 -3.613340280068087 -3.026800792664972 -3.154609595374694 -3.618497095957991 -4.286754993190698 -5.306641684335773 -3.871486850948713 -5.558806375971471 -4.960814745900279 -4.000025158939025 -3.614601915336607 -4.748445279561565 -3.775526728299155 -5.522216248471523 -2.846870486915577 -4.969429800599755 -4.392606861525564 -3.399318603448592 -4.621276799975021 -4.033909742338437 -5.617434920528467 -3.974431789225036 -4.518112064770776 -3.555591101991922 -4.12564472205213 -2.678105489750124 -4.181728381868197 -3.480755269079509 -2.240372176050187 -3.847333624280509 -4.084055159091804 -3.896180374464166 -4.186288649299968 -4.233613925694954 -3.921920742728616 -3.742335566021211 -5.075558357835689 -3.112456034796196 -4.207036482415788 -3.548693048018322 -3.329264155621786 -2.412769165361697 + -3.374165718130826 -3.426755720516667 -3.435494786084746 -3.948697252417332 -2.827554828356369 -3.347704684769269 -4.908952169600525 -4.430599383784283 -4.791869201733789 -4.403400565966876 -3.169127378816484 -2.760261801435263 -2.748966057984944 -3.276317082159039 -2.392649279672696 -1.6545356471579 -4.006650277342487 -2.461682455066693 -2.286690971075586 -1.788746714242734 -2.17536407409716 -2.424731473631255 -1.860408715481753 -1.739025331921539 -2.239792578839115 -1.676668579100806 -2.213279666946619 -2.322340130544035 -2.150011839385115 -3.251502988387074 -2.611327573609742 -3.171604720668256 -3.883592812770075 -3.169827660020928 -4.298819047478901 -3.9053916949415 -3.842330649388487 -3.566168151216289 -3.767473665377565 -3.260775569891848 -1.434201089428825 -2.349057763757628 -3.168620468716654 -2.600947674654435 -3.03189300959292 -2.38148705401818 -2.364195433528799 -3.037416528332415 -1.737535062369716 -2.055620154969802 -2.148196632371764 -2.600528255884456 -2.287628439940818 -2.493371734033644 -1.726645601944256 -2.139845836894892 -3.005410949281213 -2.685344395635184 -2.423311762167714 -2.235736490270142 -1.867276759091453 -2.652265213343526 -2.789837130417254 -3.737159732685541 -1.839346822955122 -3.327039142735885 -3.046661057996971 -1.870374154219462 -1.495007447969328 -2.238443306421686 -2.002656729804585 -2.751220161560923 -1.09471063510864 -2.664511741233582 -2.805212491373823 -1.368737482177494 -2.483366628641306 -1.837643842543912 -3.100082847707199 -2.404812407790814 -2.879299972471927 -2.207007385425186 -2.316091092897295 -1.685952125480981 -2.905661810802485 -2.537492630087399 -1.061151246616646 -2.066779148405885 -2.303660441437387 -2.496432045823894 -2.617929072501283 -2.257500622537918 -2.7546648802454 -1.785096807740047 -3.073297550807183 -1.939174883053056 -3.166372716801561 -2.655076049199124 -2.703163259666326 -1.725066074701903 + -2.243699223916337 -2.506051322881831 -2.556009451553109 -2.981379397941055 -1.957734635994711 -2.587363915197784 -3.650898200314259 -3.662373828061391 -3.120327617456496 -3.11918542627609 -1.543480078114953 -1.811729783425108 -2.15982148240073 -2.240069588430288 -1.17817099441163 -1.127858460607968 -2.077629100250306 -1.486652703842992 -1.510880424342758 -0.9454121448870865 -1.606036935037991 -1.768514109768148 -1.123791763508052 -1.261430244711846 -1.744859866797924 -0.8198553599795559 -1.230266323880642 -1.094067878366332 -0.8358948480708932 -1.820172637515498 -1.391929108927798 -1.856534443853889 -2.418565667598159 -1.239562120232222 -1.936991537169888 -1.5246639678262 -2.508491826429008 -1.41865769806418 -2.132161208049183 -1.547945393798727 -0.95397535482698 -1.6102928134178 -2.053468804577278 -1.238931775481888 -0.7756450759912923 -1.523865565395681 -1.294338342733283 -1.696045440516173 -0.9339556129089033 -1.352504055803365 -1.521630627549712 -1.412619334759597 -1.341413523929077 -0.9091431071283296 -0.3131167848232508 -0.4788924778531509 -1.622667075856953 -1.477065527269588 -1.503039698390012 -1.751680456674876 -0.9445571019326593 -1.986115575641634 -1.651853533616304 -2.390174338230281 -0.5032505793351447 -1.585850876872428 -1.62029462166538 -0.351215446851711 -0.1779921551442385 -0.5802774294643314 -0.8735773705193424 -0.8201711732544936 0.02656214518356137 -1.048014121777669 -1.765701534430264 -0.1433548569566483 -0.9149423056783235 -0.3234674589584756 -1.246051629903377 -1.301869930534394 -1.673884945428199 -1.180760883004496 -0.882550334617008 -0.9623847202383331 -2.060374669021257 -1.802980072830906 -0.5882875324950874 -0.837397820216438 -1.007920543870569 -1.476979147573729 -1.480445824170602 -0.814252688887791 -1.893794744297338 -0.3662259489428834 -1.28638649846107 -0.8221619497708161 -2.20623173750937 -1.833344390328421 -1.81903472191334 -1.15567212313654 + -1.476078477608098 -1.864307286872645 -1.871695344496402 -2.203064644039841 -1.428245060895279 -2.025740840545041 -2.593429631917388 -3.024608853993414 -1.97963124531816 -2.191514138827188 -0.4401689256192185 -1.162215702657704 -1.82445931280381 -1.531763036363373 -0.4488357909849583 -0.9379201887231829 -0.6940027404889406 -0.8008593400782047 -1.017691511311568 -0.3341295775317121 -1.252643258179887 -1.341388661217934 -0.6477171939768596 -0.8931988727620137 -1.503588469669921 -0.3032248186791549 -0.5645321541232988 -0.4082214694863069 0.03757955030232552 -0.8653491352415585 -0.5433601712593372 -0.8272508425125125 -1.335798302992771 0.1699583890585927 -0.2630028121911892 -0.08546372314231121 -1.421922017954103 0.342456602404809 -1.172921257866619 -0.3803878972830717 -0.7804617342189886 -1.116027666063019 -1.077739671686686 -0.1609487031864774 0.567373559631676 -1.126931706628966 -0.5704359666574987 -0.5530860821677379 -0.4551853843586287 -0.8453927024129371 -1.214487348114744 -0.5990744636649197 -0.781299528254749 0.202468832154409 0.3430740808698829 0.4379908074770356 -0.7858208188790741 -0.8008581834765209 -0.9007340137638948 -1.540772215988795 -0.4304184073809552 -1.657178435907554 -1.006001498079968 -1.450014114670921 0.03166424854134675 -0.5432817690671072 -0.8819915315325488 0.3842753058888775 0.1877865106071113 0.06210708544676891 -0.5069011372470413 0.05818443052703515 0.4423093358054757 -0.2771559590764809 -1.312480580811098 0.2499492180022571 -0.1873368071555888 0.3624198291399807 -0.2656704821920357 -0.8024224322743976 -1.028573680287082 -0.6479331068417196 0.002503649253412732 -0.5212116852144391 -1.630559320399243 -1.365750445984304 -0.7441402766016836 -0.3302148379671053 -0.324682144462713 -0.9157109313091496 -0.8667328113369877 -0.06265501590678468 -1.38911100207406 0.3353245370017248 -0.1177457403246081 -0.08893753633310553 -1.431920368453575 -1.165741136595898 -0.9007818751033483 -0.7987850913963541 + -1.127508749763365 -1.574730154272402 -1.462498584893183 -1.654671835683985 -1.22298886536737 -1.679071933991509 -1.83883709552174 -2.573553376474592 -1.449029537092429 -1.692573904168967 -0.07598172445068485 -0.8957741692502168 -1.778841878029198 -1.269776158406785 -0.3295311539277463 -0.9928714634825155 -0.1740526421690447 -0.5253251773820011 -0.8277160627039848 -0.0295214942379971 -1.103031613696658 -1.150878088687023 -0.4818684042766108 -0.6529335424376086 -1.511799682120909 -0.1942771811009152 -0.2968641375482548 -0.4397958307308727 0.152046395749494 -0.5876023603050271 -0.2254331804142566 -0.3197635515862203 -0.9957473947179096 0.594845357196391 0.09904547724181612 0.1926622532118927 -0.9297499780302587 1.120319823122827 -0.9429921569658291 0.04951310173782986 -0.887135948913965 -0.9923559086796558 -0.5393935258362035 0.2745080761742429 0.852868011071962 -0.7027245990484516 -0.2935201303806281 -0.06357213261662764 -0.3995327798947983 -0.6897449044281529 -1.239133500573189 -0.2612884852937896 -0.6505108110832225 0.454453710523012 0.1433978667773772 0.5250758841120842 -0.4547273205807869 -0.6074578890365956 -0.6123958788941763 -1.533738734060648 -0.2810447178215156 -1.601068378232412 -0.8199215991071469 -0.9641776584612671 -0.04840704927482875 -0.1615130109494203 -0.8073671090642165 0.4104914961344548 -0.186565817486553 -0.1245068896751036 -0.7784662462363485 -0.00240036120521836 0.2623326678294688 -0.2683728363335831 -1.337119703777716 -0.1009565845797624 -0.304618227168703 0.2992532714306435 -0.1164550657376822 -0.8568850540800668 -0.9155200905638594 -0.6234051079431993 0.3030699934024597 -0.413200701349524 -1.529782767258894 -1.23750077965633 -1.270728963407237 -0.4998089172563596 -0.2158543123241543 -0.7647145083319629 -0.7365040213917382 0.02972658360886271 -1.206805909281684 0.3385395340083051 0.2053068685418111 0.01477153280575294 -0.9948192757037759 -0.8285414379042777 -0.2575026488102594 -0.7703606582547629 + -1.133916780960135 -1.639573632994143 -1.330639277250157 -1.330247315592715 -1.262925324619573 -1.515640918994904 -1.409729872495518 -2.301469590747729 -1.400585215735191 -1.551293847256602 -0.3473017869437172 -0.9324813216080656 -1.880791937132017 -1.348813726681328 -0.6265132241451283 -1.155408873049964 -0.3521396555479441 -0.6476501259776342 -0.897122816175397 -0.1535323227435583 -1.10711552821158 -1.181873622193962 -0.6066732405452058 -0.613665131663879 -1.710258747843909 -0.4528545322318678 -0.3949889703435474 -0.9965139627820463 -0.450804090798556 -0.8863272103153577 -0.3722540002790993 -0.3632939330200315 -1.278217672912433 0.189357139490312 -0.5548503885838727 -0.3166853318152789 -1.048579787703829 0.7053571465592086 -1.162173605265707 -0.2030359140844666 -1.157194531228924 -1.199439156618155 -0.5231814429280348 -0.02484999048419922 0.3157279544798826 -0.4528423591227693 -0.4459357684834799 -0.397793748163167 -0.6995383363391738 -0.9117817565056612 -1.497203015393552 -0.3465545556589404 -0.8699046273404747 -0.1789132748781412 -0.6694037387442222 -0.007491336165912799 -0.4788058798876591 -0.7760823836943018 -0.5910363813316053 -1.644173754962026 -0.3968762480146921 -1.696137577493573 -0.9452803408303225 -0.8658373439320712 -0.4371269520706846 -0.2406201646881527 -1.178106693670998 -0.02349492104713136 -0.8544002063135849 -0.6944720645624329 -1.387331587095105 -0.6321296881069429 -0.2625370760652004 -0.7203240512317279 -1.621823512236006 -0.9118465944802665 -0.9946980848662861 -0.2347679814520234 -0.5312281670776429 -1.246959096652063 -1.169522260780468 -0.9575927220134872 0.1208342529025686 -0.6109453478729847 -1.617255479720825 -1.338848376432907 -1.841761513775964 -1.099700158833457 -0.5048939201842586 -0.8786506380529318 -0.936851618829678 -0.3353310999809764 -1.246953558549649 -0.1489007642376237 -0.2354124720950495 -0.5155777740292251 -0.9844347393100179 -0.9240085483343137 -0.1825780965627928 -1.09734237391884 + -1.336879953159951 -1.926251279692224 -1.401764209527755 -1.189219119114568 -1.433353188738693 -1.469136347892345 -1.255136462234077 -2.150922132430424 -1.586973045803461 -1.60679600092044 -0.9220032575467485 -1.101575847398635 -1.920510330166508 -1.52566602114257 -0.9878583640211218 -1.312378490195442 -0.8446247826709623 -1.021148942536456 -1.129096201870198 -0.665786164237943 -1.177977247723902 -1.365753627858794 -0.9262143036903581 -0.7965962915326372 -1.995117327067419 -0.9340740418920177 -0.7272946170705836 -1.655627554209786 -1.376752500180373 -1.41258392634154 -0.7504338530688983 -0.758935221894717 -1.69438373189405 -0.4986958282061096 -1.390823724039365 -0.9858141285731108 -1.517697845882481 -0.4689777759820117 -1.442330098235288 -0.8574191488087308 -1.432984695978121 -1.567873122584388 -0.8690440234377093 -0.7803882663583863 -0.5366070172966886 -0.8013515632831059 -0.9008563526741753 -1.253280353382706 -1.154923933274404 -1.360261462688868 -1.820238947976577 -0.6759349525076459 -1.263878735953767 -1.254052366448377 -1.627623871529977 -0.7764012464640473 -0.6884478644842602 -1.146830389010574 -0.7585393714060729 -1.78697630005297 -0.6616609182122062 -1.821702088134771 -1.201467758757644 -1.025464960646786 -0.8930238212087716 -0.5727360470482381 -1.694102483135794 -0.6252597748443804 -1.388776198942651 -1.197995823506062 -1.982272422210372 -1.367982999508968 -0.8356544140697224 -1.243002935512777 -1.913956258176768 -1.717726884839976 -1.816044699396116 -0.8653821828665968 -1.132287743223969 -1.678751848387037 -1.551178961200321 -1.402870268038896 -0.345061814699875 -0.9755497042283423 -1.734302223852865 -1.517874052311981 -2.169307760575975 -1.772334727459111 -0.943268504275693 -1.07362159701006 -1.255312977040376 -0.8675438276441128 -1.37670732220613 -0.8135509491512494 -1.057689921690326 -1.384457426029257 -1.305794197260184 -1.316905927365951 -0.6883562679904571 -1.611074585474741 + -1.535590477207734 -2.168831820090418 -1.540530201644287 -1.160845502614393 -1.601317724307592 -1.451212343286898 -1.26820755249355 -2.038136135830428 -1.748914166695613 -1.680198887686856 -1.42857660680238 -1.236989737928525 -1.765205566031 -1.572943013420172 -1.144890415246664 -1.403318425714588 -1.262713612348762 -1.419218075006484 -1.401146361802603 -1.282607168381219 -1.214728983908572 -1.575666046162951 -1.285565677433624 -1.090997471094227 -2.240596900723176 -1.42790275655716 -1.109808213630458 -2.014465171294432 -2.096242820178304 -1.762817842498407 -1.086798405833179 -1.196550113548255 -1.845788840636487 -0.9888741329823461 -1.786014584930854 -1.383555047082609 -1.983245027870794 -1.562632838194531 -1.536841918486516 -1.525036967460437 -1.576318834137055 -1.875782810347573 -1.246953419381043 -1.513036753670349 -1.140623173184167 -1.498190648784202 -1.449299668412465 -2.056569794882535 -1.5251013912075 -1.758688050401361 -2.035416780056494 -1.020656575789985 -1.61894847147687 -2.085129669928392 -2.26816667080675 -1.400595662133128 -0.9574773042841116 -1.54956570048671 -1.014703114011695 -1.892412802513377 -0.9669642322874097 -1.894910431521112 -1.438553120183769 -1.286383991820912 -1.298399621056888 -1.030802128057985 -2.096903131663566 -1.170523785187015 -1.594167855197156 -1.418573229151662 -2.293244646833045 -1.83087609813083 -1.219027119092061 -1.5314021797858 -2.010561569026322 -2.081926661014677 -2.338811869721212 -1.262139469914473 -1.57982132896268 -1.904282507542575 -1.829299252991632 -1.722507400608038 -0.8638993856434354 -1.33242464377372 -1.754413668984171 -1.60520797487743 -2.106984536079835 -2.18827849672175 -1.295489924423237 -1.196512229027576 -1.488222102741929 -1.295527023972681 -1.468662122864771 -1.358463151835167 -1.759302728700277 -2.127232734139398 -1.689890316498349 -1.671910791531445 -1.40410101100133 -2.032715391454289 + -1.559010597224187 -2.096740894106915 -1.586454841017257 -1.150336811035231 -1.632690444323089 -1.365619946082006 -1.314344895399699 -1.879776494359248 -1.708104220204405 -1.643089369297741 -1.631134750805359 -1.245801755838329 -1.438355696773215 -1.394476877267834 -1.050372163234442 -1.400506399397727 -1.39984821109374 -1.635131318689218 -1.600634883181556 -1.658955088889343 -1.149470346070302 -1.663851438017446 -1.51166968610778 -1.294280708905887 -2.328647038484633 -1.724572967199492 -1.37034464336466 -1.899641330428494 -2.241604018814542 -1.712286026450784 -1.20030547317856 -1.429920787652463 -1.772765234374674 -1.151902890404926 -1.738454363956407 -1.467567366476032 -2.157102442990094 -1.927921628010495 -1.408030152458991 -1.876203459054523 -1.517204275454787 -1.935805888490904 -1.336718397657933 -1.841589381015751 -1.223259832828617 -1.761976618204997 -1.856617792053715 -2.349915837307208 -1.630535008012885 -1.849879677036824 -2.033847404031803 -1.195494525882054 -1.754879929347226 -2.175799290246687 -2.342942837548435 -1.641414549459569 -1.210073490679861 -1.825042841021059 -1.242661623358799 -1.913281251111755 -1.216960811714941 -1.87213511884238 -1.553586624154832 -1.476955822588934 -1.582914042575794 -1.521726030328864 -2.233891471956667 -1.537856105715036 -1.527275991855277 -1.407064655893919 -2.214093552218401 -1.840080477486481 -1.30209002954507 -1.484464604975074 -1.820691652021196 -1.849075418705979 -2.314952710218222 -1.255058328553787 -1.685579563403735 -1.80720183206472 -1.849399561593373 -1.785627173572493 -1.240801681176436 -1.566260305709875 -1.625150121355091 -1.484604529532135 -1.713222599847541 -2.177457445179698 -1.414732974908475 -1.178759191740028 -1.500510678512001 -1.455153370323387 -1.432849460315992 -1.609628895854257 -1.974953082200955 -2.372134601060679 -1.845231349052483 -1.684629637048602 -1.842246684786005 -2.160166729207837 + -1.340549913842551 -1.631625849808188 -1.408394971993403 -1.057577226834837 -1.419413025429094 -1.12666465388611 -1.265966742990713 -1.616769507905701 -1.421779324104136 -1.461587087102089 -1.496775827659803 -1.123215381643604 -1.083055189717925 -1.033150607624293 -0.8285369875297874 -1.278023217182636 -1.321166911488376 -1.576335601211895 -1.65726550657746 -1.645089397990887 -0.9859637729441602 -1.522118151709947 -1.46539082169329 -1.246746660702598 -2.177521956728015 -1.682855755629134 -1.406321001806646 -1.400244733938962 -1.789526315457806 -1.327676142021119 -1.07103174958138 -1.358398568364919 -1.745177164684719 -1.106294367701366 -1.594390948585442 -1.419735450331473 -1.897443007642096 -1.597529185242934 -1.161403332281395 -1.782478516946867 -1.275210529582182 -1.671891442925016 -1.03177187685128 -1.689046222666036 -1.015517049442105 -1.382003573676304 -1.947008447870989 -2.023089157579648 -1.413328963066306 -1.538455043960312 -1.813339355759354 -1.125731481768867 -1.582347771867262 -1.554835203304265 -1.900623961999827 -1.454526792962042 -1.38932457768351 -1.841007334656751 -1.314785753418164 -1.825241975041081 -1.326376688890271 -1.730269854067046 -1.477343349451075 -1.430236714348212 -1.634178480135233 -1.876954063018275 -2.04702315286886 -1.669584959620124 -1.333575414855659 -1.294160200377519 -1.808926508841978 -1.427093809354119 -1.110374541727651 -1.200700686989876 -1.382828219891962 -1.199725436948938 -1.754774923387686 -0.8776631954115146 -1.442874777145789 -1.411341334255212 -1.564853037413286 -1.602698359282385 -1.364420242367942 -1.640365087077271 -1.37790100193979 -1.142546698024717 -1.209223229591316 -1.788723590110294 -1.282368219464843 -1.05268095320389 -1.25581719748152 -1.322344821084698 -1.233466161867909 -1.559050813317299 -1.655216097587981 -2.063358750710904 -1.627908778164965 -1.308161230185306 -1.755397164958595 -1.950462325284696 + -0.9630318596628058 -0.9955041340217576 -0.96259214568272 -0.8097568936864263 -0.9158243290657992 -0.6812809160837787 -1.036773427062144 -1.229458093093854 -0.9883445049290458 -1.201846352299981 -1.137674617609264 -0.9216035603440105 -0.848093552037426 -0.5881729721586453 -0.6182042699017529 -1.012024972600329 -1.147716587371235 -1.294499540769493 -1.561800440448678 -1.348667565259348 -0.7931724147911154 -1.127249542414575 -1.085536846538162 -0.9443370889606797 -1.761117500172986 -1.275406853332242 -1.214915276119427 -0.7289276454248466 -1.02054367400433 -0.8694698252393209 -0.8151065241931974 -0.9737275573597799 -1.733543223152537 -0.9392342601468044 -1.505172548744895 -1.365493972449144 -1.22876092139424 -1.140426648917753 -0.9134075776455575 -1.362345327909225 -0.9488097843050127 -1.16431024881058 -0.5017699671196851 -1.25021168751266 -0.8953029268891211 -1.194821520662829 -1.678850805560428 -1.279750916264931 -0.9344520211011513 -0.9195924821956396 -1.471883622823725 -0.8542338205508315 -1.126113236178071 -0.7531182738657662 -1.214739267838695 -0.9557067574016855 -1.429159925603017 -1.508734354682019 -1.10511644767405 -1.622564807776826 -1.229417100732952 -1.456677230992227 -1.168736842275166 -1.038062340126999 -1.32191325464737 -1.832339661579681 -1.530386812952202 -1.515615021347685 -1.058467715370625 -1.06188485920211 -1.250875970650668 -0.764203989165253 -0.7604627111068112 -0.8637128250802562 -0.8345285099858302 -0.4511573476753483 -0.8806353314353146 -0.3232271196629881 -0.9715084209415181 -0.8200121281271322 -1.02689931122859 -1.293176519598319 -1.224176791764194 -1.537217701664304 -1.097099533527285 -0.6683734076602832 -0.8257452356890553 -1.244589722369938 -0.9966454202385648 -0.9228370382625144 -0.807596419697802 -0.9809400836875284 -0.8867561293991457 -1.32898857406326 -1.064933395124172 -1.49629063829525 -1.108427645459869 -0.7858466927182235 -1.227326029377878 -1.47305059165366 + -0.6408680012164041 -0.6074135618000582 -0.3289512907831522 -0.3953712125148741 -0.1681753209613817 -0.02898151768022217 -0.6062524463704904 -0.7405512881341565 -0.6055247007625439 -0.9954053948076762 -0.6819408114442922 -0.7004159762191193 -0.784224222168632 -0.121312401303669 -0.4580371868091788 -0.6146871684063626 -0.6949936012906477 -0.9349522046118182 -1.364882544758075 -0.9752005509535593 -0.6538297995475659 -0.5452429612896594 -0.4076528008172318 -0.5347002058657608 -1.113740996115666 -0.5941046063962858 -0.8855495863608667 -0.06025389048863872 -0.3180840663990239 -0.568230506305099 -0.5884358895013975 -0.2790013718616819 -1.291970859085154 -0.6193476732488534 -1.290385009450347 -1.269736750798984 -0.3015358539717994 -0.9723677977159824 -0.6238772877308207 -0.8987863822223972 -0.6773048406244015 -0.6324086134751497 -0.02817027611234835 -0.7617267184428869 -0.8370750589052107 -1.089544002673829 -1.157791068595478 -0.4397098166982261 -0.3213405628337114 -0.1766460055963535 -1.149044125947285 -0.4870854767563912 -0.507040193956982 -0.3984919545960111 -0.6164021940577413 -0.3397987639791609 -1.260974403279761 -0.8023243437746714 -0.5118003807048694 -1.312563869899691 -0.9053666253455219 -1.063450719727598 -0.6366421553548207 -0.3230242613890368 -0.6300761517841238 -1.169807649765971 -0.7124634443316609 -1.021014202724814 -0.5997866768921085 -0.4897537120414199 -0.7300693110919383 -0.05934996959695127 -0.3911256195860915 -0.6014634007933637 -0.3516426058504294 0.1964859298778379 0.001245884717604895 0.1552410071017221 -0.4227854124239911 -0.1363259618251504 -0.3477977601944531 -1.014076266738016 -0.8981320092052556 -1.204984765285019 -0.864407095472302 -0.2044891336308865 -0.6437186017354861 -0.8132169987261477 -0.7153428225919924 -0.9041586877365262 -0.2581609985954856 -0.5474311798388953 -0.4426925984198533 -1.080729566971058 -0.6152104677685202 -1.143224668660878 -0.5093779648457257 -0.4674114666688638 -0.5087322355557831 -0.8520661754670293 + -0.6303899969116173 -0.8045159282000895 0.2976102037428063 0.1205235860688845 0.6842954521471256 0.7690986556262942 -0.02614796377019957 -0.2056203075735539 -0.4930846026090876 -0.977392025671179 -0.1531008720617137 -0.4814832149140784 -0.8121005197167506 0.3759492865916343 -0.2834290423756443 -0.1615367498553724 0.4467737088533816 -0.64683337183601 -1.156798221792997 -0.655555387285176 -0.6102215215273645 0.1010725241058026 0.4493646629252908 -0.2053534794386636 -0.3197040041195578 0.185241361225053 -0.5601146134722512 0.5045641404985872 0.02598256556393608 -0.470467325693221 -0.4813608053084408 0.7075672761239389 -0.0624627498005168 -0.1534117796340979 -0.8018193973864243 -1.058143480296991 0.7065477092069372 -0.8976623610381171 -0.04424442671069073 -0.6692004150469302 -0.5868347000216545 -0.3391252292677791 0.2479205280128554 -0.2990315797985872 -0.4648098248124774 0.2328365101719611 -0.5699494612977691 0.2904849026760843 0.2952675950928096 0.550671433197067 -0.9435388804396325 -0.1131877612545651 0.1068104540155446 -0.6985396855732802 -0.325830726406366 0.2051697682398981 -0.852534905749053 0.2236192205855332 0.5131120752230345 -0.9115849671381966 -0.4072350087640864 -0.6143356866257363 0.02756750217315584 0.5266275538015179 0.2435305897452054 0.07746698465280133 0.32372219896979 -0.1707297299396942 0.1734654715480701 0.6765643265380277 -0.3749558740328212 0.5283336200736812 -0.1053699904186942 -0.4093337027711641 -0.08488495490564674 0.7341213534023154 0.6300948175436361 0.3465189745770658 0.09402391127150622 0.5796125962925203 0.3414182448529459 -0.8924025140921685 -0.5204169052385623 -0.5915066025948192 -0.7090177591668976 0.1245298533633559 -0.5642418731749785 -0.666888180973956 -0.5766924278987062 -1.054123654479554 0.2941610898787985 -0.09354949834596482 0.04179911622577492 -0.9161652799584772 -0.6364257896311756 -1.37858686773734 -0.07381156937140076 -0.5470436731613972 0.1858571782336185 -0.2239741290867395 + -1.100019109084315 -1.576744939426135 0.6668523402422579 0.6143318680024095 1.448483043372107 1.599229541967361 0.5946931276048417 0.3055644681844569 -0.8023867036799857 -1.221520270281871 0.5787007452620401 -0.2240846225568021 -0.7631629273578255 0.943587817356331 0.01195356486624632 0.2291259086928221 2.30235090598446 -0.516552938278096 -1.035555030820433 -0.4235212284429508 -0.6517020648077505 0.6750529382366039 1.322501739216932 -0.05704319662250867 0.5081438199304102 0.8630823170442454 -0.3788146884071466 0.8498913121127316 -0.1206934764844618 -0.4761535097825913 -0.4668379775032463 1.870002124038422 1.736825356984383 0.3000045276107031 -0.2425751864228261 -0.7792344379687961 1.680044948448764 -0.4127665255515449 1.070520994111433 -0.7894026595257628 -0.7383766624650434 -0.4503812755804404 0.4167477026899178 0.2038766476555658 0.3546562592803404 2.212610561001332 -0.07964127000912691 0.9322838444371833 0.8180516325426197 1.211070625374447 -0.855355065827041 0.2501326676991908 0.5584603805142478 -1.216739810861895 -0.3609987141962847 0.5635901160447929 -0.2476294915902599 1.427744092224202 1.935614293124075 -0.4438885236006627 0.1306711134120206 -0.2349831895116949 0.6447829919321748 1.205348924519058 0.9517310824553533 1.545091230737626 1.418990841891627 0.9516222609203737 1.260904426013553 2.490383611173684 -0.2171122516501782 0.9232350264246634 0.05500605985434959 -0.1717665028884312 -0.1178733623555672 1.210513573564938 0.8562473310358882 0.138215124000908 0.5260798113540659 1.295039966791023 0.922471903599444 -0.9908892575130039 -0.2397218490566502 0.2481596792931242 -0.5915372306974973 0.26473907861822 -0.4339511937495217 -0.8037169476985753 -0.6328716460902797 -1.330082805623988 0.7956676445564881 0.3943350465724507 0.5280357644815012 -0.8199083585441258 -1.215335418379709 -2.26258888318489 0.05269738170414939 -0.909935647609359 0.7948547090759561 0.3462955458812128 + -2.023559108832842 -2.514420198429434 0.5654763046022708 0.9529287353707332 1.947340879341937 2.323035619028815 1.123606813531296 0.7308928467409714 -1.54297253709592 -1.697875722219578 1.747226094384587 0.1709368124440971 -0.4584860662380947 1.589213939078476 0.5223271006697559 0.4625516784982437 4.185422206071165 -0.5568895530454085 -1.074273960174196 -0.2930976089892283 -0.7479386780197501 1.057314174438716 2.053674573069657 -0.05390488307955366 1.253910803250619 1.2769832168824 -0.4334459838846669 0.7778717979671228 -0.7744606006020263 -0.5019391309019738 -0.4273653339533325 2.937876102199056 3.429017823427863 0.5416342035319239 -0.03028237993054361 -0.6232466746759613 2.560559377141814 0.6475014708829392 2.631157429326358 -1.169350244594966 -1.099169898887567 -0.9300301117535241 0.6473008889014373 0.7638111016547917 1.192396482261076 2.649046477859062 0.2363886550786631 1.612592748581266 1.183134836688737 1.786423939796364 -0.7899058494409417 0.6515566938629931 0.7474439339293326 -1.169338400775914 -0.5563470798868764 0.7240741074884056 0.4280582766014049 2.59687859800124 3.62568399924254 0.05713659099504298 0.5226302460275143 -0.08455143459076453 0.9949280389603246 1.414046403311431 1.205515072524349 2.683478407530856 2.358615423201513 2.150264738652055 2.473473821959601 4.705179794905348 -0.2044600089984669 1.1219730367593 0.1013239813055407 0.2493188889501425 -0.4566724213782436 1.572241921777092 0.6332864154884987 -0.4832572561829238 0.8401693421191112 1.956001926861433 1.306281752142326 -1.309662450757344 -0.1792654364820692 1.080674732524059 -0.4284529616878388 0.2427571323434563 -0.2061220558748005 -1.070585207687941 -0.8249636846578596 -1.592258504152142 1.248954842707008 1.001181248647754 1.010335411796405 -0.6663404173605159 -2.166717069459992 -3.497622283211058 -0.1296815059339167 -1.196754050005751 1.399564874120115 0.937873728048606 + -6.90847015545296 -5.230737245323326 -3.59052587171027 -4.287873316432524 -4.694791326990526 -4.465992814468336 -4.645516384880466 -2.53385123490807 -1.637829930272346 -2.013812927541949 1.63573252085007 0.3791570504126867 0.5512768365742886 -2.283561144353598 -0.05285107221448015 -5.637180753295524 -0.03265484832513721 -3.33288344011703 -6.807664815702083 -6.545926874488941 -4.872494481868671 -8.449513244833724 -5.787118324478797 -4.572873213202371 -6.116113565010892 -5.657361967183533 -4.879873758043686 -0.9200349349166572 -2.814593481541124 -5.525100658366682 -0.2504878584968537 -1.372248829156206 -4.754779675442705 -2.275501105988496 -0.6710172853408949 -5.592760819812838 -3.269103854173409 -7.565364679489207 -7.356154933983362 -5.946896110519674 -2.57055816391221 -0.8577094752054109 -1.013754786735149 -2.901501546219492 -1.049260117581042 -1.638477216375274 -3.697294766573282 -2.554123326054935 -3.633848730730733 -4.218197905290936 -4.399859702981303 -6.020116628233296 -6.136961892114869 -11.12706436167991 -7.416503245259946 -6.157488174563241 -9.3376928479247 -12.97509321620782 -9.365686795781983 -9.53360495757795 -9.706363071147067 -7.877084017723064 -9.063029115428435 -9.530586217138989 -10.62415561686157 -12.11461438298466 -10.80463582361972 -11.0376414772968 -13.08053036177716 -17.34133791815293 -9.966249279808835 -16.26269663628773 -12.68386319778074 -16.06445822784099 -13.1108670716585 -13.4295276865854 -10.46470200707938 -13.58325118684206 -14.82502439091104 -10.69326130082197 -10.72700569124629 -7.533686169165208 -10.25564236820196 -9.806847110171702 -12.90721660295787 -6.720821201837452 -5.357583054733595 -9.461807476449735 -10.20798477157314 -9.1319293448596 -10.71539877784744 -11.31790677724894 -8.926857120520253 -11.45695493152562 -7.584359509644855 -2.375522370886756 -4.848477399430976 -6.469872236930314 -0.8125953180812076 -0.5874612936865704 + -7.591002552047939 -6.488308214236895 -4.856425915204454 -5.769735139940167 -6.012272485437279 -5.51477358230477 -6.355790966226778 -4.11147232233634 -5.397724747832399 -5.020499244879829 -2.116351610582569 -1.9688164047584 -1.324951234286345 -3.680758822332564 -1.835526266064107 -5.643517058431826 -0.07284119480362961 -4.183419783276349 -6.548747095101135 -6.871379117512333 -5.170403962605633 -7.813115820727035 -5.697962319885846 -4.977025776612038 -5.746439676622686 -5.656901487676805 -5.311193732348329 -2.081651568461893 -3.433221614445756 -5.968278454840402 -2.318613255353739 -3.29959313432164 -5.948727097448682 -3.184969017722779 -2.113174239093496 -7.233980001270766 -4.303948555577989 -9.824763840838244 -9.627525169873593 -7.450572801592898 -3.439499784846248 -2.009451577662503 -2.09735341489818 -4.940932255623011 -3.793492171220311 -1.381765947332845 -4.691075375771064 -4.072139417118819 -4.056745836597656 -4.180728900612394 -4.694254574799743 -6.280636133199266 -6.29046901611855 -9.844676374646497 -7.54231782706961 -7.079822056732155 -9.629878745086899 -11.89448108802026 -8.606066137047151 -8.228712760882161 -8.909943277179408 -7.564563078538413 -9.063823172605225 -9.461735707825937 -10.45327963976524 -11.84969594928407 -10.65572372321913 -10.81203178079841 -12.01127914390781 -15.61591609066636 -10.02471266549765 -15.64174022052612 -11.46165202412521 -15.07494024837069 -12.04739274766325 -13.38249106998887 -10.68042171143611 -12.7010284105927 -14.24718842354696 -10.06612606033877 -10.35918100094545 -7.616735207928286 -10.18094898241179 -9.512811641169037 -11.87385736014676 -6.909330998892074 -7.077496551098648 -10.09292593018165 -10.48261265046858 -9.190495654023835 -10.50377746611775 -11.27478812116351 -8.536938640158041 -10.98200812990035 -8.65841127607564 -3.890926072046568 -6.145276697252484 -6.772272015778981 -1.656443469494207 -2.059386923531335 + -7.624417870039906 -6.862572338661266 -5.442388333234703 -6.329894475129549 -6.312510016505257 -5.74832397296268 -7.094372518076852 -4.935901030643436 -7.561275412481336 -6.665606670447232 -4.68974373753008 -3.624238652115309 -2.799488479395222 -4.625381256107175 -3.269755240669838 -5.240773979354344 -1.675457020263025 -4.725922387308856 -5.966781615181389 -6.545297170097911 -5.002996654873641 -6.790604552596051 -5.263777921514702 -4.758981524690398 -5.113215729339572 -5.288192886058823 -5.320248029202048 -3.285349422951185 -4.051167533979424 -6.251906746922941 -3.84609664121308 -4.631860719495762 -6.215717253575349 -4.043580684276549 -3.725141446565431 -8.444208641730711 -4.946841237482772 -10.19753204766135 -10.1454602117941 -8.143247572265409 -3.769020278171411 -2.993137381517499 -3.241500514354357 -6.044479485428155 -6.995472068052045 -3.632219531282857 -5.151003385030393 -5.060516335262264 -4.194951612852492 -4.080149764690304 -4.714055723077763 -6.260010368572523 -6.039315542249369 -8.353673823386089 -7.268409548017644 -7.497581782229645 -9.21943092703259 -10.25236662795578 -7.519881564651541 -6.756169505001367 -7.73028483397249 -6.835042898262145 -8.501879701189864 -8.952054450439391 -9.662126655224711 -11.02145824159743 -9.921721281520149 -9.997638338900288 -10.55533343645675 -13.41011199893546 -9.311545865428343 -14.2207888567209 -9.731516035062668 -13.26865837658625 -10.40473995348657 -11.82629491332182 -10.10451099578836 -11.09978144127308 -12.88874159192164 -8.969748095837986 -9.407483037896554 -7.137596501958569 -9.382320405373321 -8.051217616733766 -10.16043123414647 -6.530959076251293 -7.334366305461572 -9.660426169424909 -9.794399172926205 -8.497281039137306 -9.543215157316808 -10.31675236018054 -7.668068022700027 -9.815024396444642 -8.920362301156274 -4.748978980729589 -6.572609312229361 -6.408405816683626 -2.608522889462165 -3.216410746022095 + -6.981841577999148 -6.381866798634292 -5.343822497496149 -6.064981039373379 -5.728261033305898 -5.318208519012842 -6.952847739274148 -5.077213136049977 -8.060231303770706 -6.983993766141793 -5.822066308817739 -4.347924120116659 -3.59113478978179 -4.978857041793844 -4.06597884250732 -4.474789309851076 -4.030016254998827 -4.762780064625531 -5.11131691524497 -5.578817337656801 -4.427036806053366 -5.559862614918529 -4.536404246235179 -4.030561066752796 -4.284759911330184 -4.575081713766849 -4.875381484576792 -4.089156317219022 -4.390792927424627 -6.187718724195292 -4.566893169690047 -5.209312935598064 -6.088800070007892 -4.812751971485341 -5.306681442129957 -8.842937681214153 -5.272893926480606 -9.080241214382681 -9.164063468465656 -7.899337994302186 -3.553113771384233 -3.539792461427169 -4.0659750607565 -5.999542135065667 -8.724885558104233 -6.136925934001738 -4.965934560292617 -5.271945882105001 -3.980789366723911 -3.835289595839185 -4.361075512471871 -5.792995103765577 -5.358717923294989 -6.877402202097073 -6.490717085185679 -7.121544200369499 -8.085108071736613 -8.217875466369151 -6.190791895241887 -5.260118630488932 -6.242423922242452 -5.757433187226979 -7.355299674382877 -7.939321665933676 -8.131297097410425 -9.558547627766529 -8.553716905909823 -8.457313886996417 -8.603263001683445 -10.75253418034845 -7.822930586909933 -11.88087823239039 -7.579041773467907 -10.81006250473365 -8.342037868860643 -9.170117853744614 -8.726721542703672 -8.887033898306981 -10.7754647874217 -7.435934460011595 -7.929639666297817 -6.158998132504394 -7.956090489909002 -6.122088923337742 -8.09524606297191 -5.699026548596976 -6.262931220259816 -8.275393734271802 -8.278600688643564 -7.18424564131783 -7.975105589628583 -8.582270204224187 -6.423118055172381 -8.023529976177088 -8.296802079748886 -4.827547852044518 -6.138369048932873 -5.537124682725334 -3.344916445943454 -3.582661069625624 + -5.790238987512566 -5.302554803187377 -4.691949919884792 -5.212508809243445 -4.564024645456811 -4.45418480502849 -6.133213213295676 -4.69044124255015 -7.180990689856117 -6.246729930502624 -5.570425760623039 -4.152123879986902 -3.630518934689462 -4.687179691510664 -4.050871844533503 -3.458113267919543 -5.582344587474836 -4.244352282124055 -4.073195459559429 -4.212124426376249 -3.592364904387068 -4.302317604182463 -3.604293484902882 -3.06921700322448 -3.360037106715026 -3.593561619592947 -4.032550314397668 -4.116399071299384 -4.178258391231793 -5.572342287605352 -4.402694030233761 -4.973853175947625 -5.686415689380738 -5.061636996099878 -6.154297326309461 -8.069594754496393 -5.191542401044103 -7.299888015643887 -7.300502451426837 -6.778915316266648 -2.921724596308195 -3.50595860792555 -4.27832755583313 -5.110497165176639 -8.105337982621165 -6.145222362715003 -4.191912815965999 -4.803015579737121 -3.386877274013386 -3.375575044025027 -3.652086468131074 -4.845420500740943 -4.320310393205546 -5.433398171531735 -5.15531554251038 -5.876209930150253 -6.388468079789163 -6.033420190622564 -4.749713253973937 -3.88128979432372 -4.595735331357403 -4.477109186577309 -5.748340635338536 -6.466954971016094 -5.976681787578855 -7.526387709040137 -6.667895486592897 -6.31300839603 -6.203810606308252 -7.764970082425862 -5.788193852866243 -8.825664458039682 -5.211679373955121 -7.962916867971217 -6.110163820856542 -6.131140061951555 -6.715034120551081 -6.312246456080175 -8.119802968916702 -5.599383244060846 -6.100581603012415 -4.806216431955818 -6.095276434303742 -4.298039093813259 -5.996804263882495 -4.582680077380701 -4.404183570459281 -6.234373229350695 -6.228704184353774 -5.491561059883679 -6.046636568862596 -6.340106862597167 -4.974456518826628 -5.802898077228747 -6.883310676414112 -4.201500555333041 -5.131272119586356 -4.423778802813104 -3.580272834550669 -3.193647988895778 + -4.29860209758408 -3.972213096341875 -3.705885266506812 -4.068689132385771 -3.188718692508701 -3.40629240348062 -4.900715349533129 -3.9793122086121 -5.455173321752227 -4.873139161474683 -4.273273138776858 -3.276867261614825 -3.069788338372746 -3.835895094096031 -3.271701617967665 -2.36872283502089 -5.364959493521383 -3.289696778122561 -2.976758202428755 -2.795534249853517 -2.684058041017124 -3.156150365808571 -2.584036451989959 -2.156882113440247 -2.454732227590284 -2.472848499113752 -2.933346421166789 -3.320388295833254 -3.31252723954276 -4.378497278014038 -3.505414454719357 -4.037851353699807 -4.785766999133557 -4.332583556962163 -5.583114295164705 -6.104394271121237 -4.535578179490585 -5.33412063463561 -5.117046605867472 -5.024833767150994 -2.093259763693823 -2.940053530946898 -3.790415199130621 -3.775293076893377 -5.769625606326656 -4.044357741486238 -3.031710010497918 -3.864134077414747 -2.479350004465232 -2.686812145093427 -2.724659279866955 -3.541368341543148 -3.087127054579469 -3.897772895154048 -3.381568620786311 -3.987332729780974 -4.446767234541767 -3.964258880707348 -3.347930314369023 -2.733376562011586 -2.990613653694865 -3.198221980233029 -3.951293875071315 -4.724784415153408 -3.596805891895201 -5.190779944889073 -4.549139462447783 -3.921533008427105 -3.657917743559665 -4.744979977273033 -3.608997667695803 -5.533082742389524 -2.932455401183688 -5.08722956253041 -4.006546407996211 -3.37391056688648 -4.409874662906077 -3.734011117889168 -5.300225389638399 -3.703685928747745 -4.18763536476763 -3.281789247648703 -4.069588293624292 -2.818040568761717 -4.121252913827902 -3.374232017440136 -2.446504221452415 -3.960576694717702 -4.030248033641328 -3.718693778428133 -4.064606844498485 -3.958113185584807 -3.527150226178492 -3.466310681702453 -4.91990448548313 -3.063624997033912 -3.895682834050604 -3.284887717314632 -3.222784752622829 -2.40429093398093 + -2.80646509455255 -2.691708727041259 -2.630477733924636 -2.90666276482807 -1.928731778600195 -2.393674625462154 -3.532507229538169 -3.154548051243182 -3.494751212623669 -3.318357144871698 -2.469565571373096 -2.100550904528063 -2.21882805842688 -2.675102534403322 -2.039166621045297 -1.412426530248013 -3.693189416736459 -2.139358088485096 -1.961615235915815 -1.57241580363916 -1.861889573072403 -2.201029809475585 -1.608752765983809 -1.439548645665468 -1.682553986523999 -1.381852795893792 -1.778437047731131 -2.041256362113927 -1.970359103819646 -2.839357657863729 -2.221658320046117 -2.686366790187094 -3.330573219016514 -2.664086270171538 -3.635445960637298 -3.455466430415981 -3.321629417730037 -3.211182582922447 -3.026514723623677 -3.025161502766423 -1.306609852056681 -2.069716416880055 -2.761790789700171 -2.244470303244725 -2.925644749538662 -2.083767494697895 -1.767871991601552 -2.607584218797001 -1.44116134898286 -1.844911048501672 -1.791261815740654 -2.128528761800453 -1.878475490728306 -2.21670429551159 -1.512229819198183 -1.927639712650489 -2.632013682285105 -2.241209564163 -2.125051452152661 -1.885167599490501 -1.626661478929762 -2.12903053757509 -2.302373555447048 -3.006418088229111 -1.526167135540163 -2.964393068425125 -2.581565990982199 -1.744648971148308 -1.446537176230777 -2.135501673481485 -1.731303798333101 -2.595738250907743 -1.064990487458999 -2.589980076496431 -2.307563167763874 -1.28980834446611 -2.255336690342119 -1.541093015781371 -2.769300264375488 -2.051680243753253 -2.488410316206227 -1.848815930241017 -2.179492992403539 -1.672584057166205 -2.640015561808923 -2.262067255262082 -0.9553007569529655 -1.909627233907713 -2.069147420213994 -2.157212099958997 -2.330627589268261 -1.832288296707702 -2.273074601462213 -1.385204748461547 -2.772318034614727 -1.679675539387972 -2.664317612612649 -2.215755098035515 -2.408585606552151 -1.548781055667238 + -1.581317587999365 -1.657131237880094 -1.680895003271871 -1.922081993936445 -0.9982275883085094 -1.571456421210314 -2.27185093240405 -2.395209692047501 -1.824938943405868 -1.967017390095862 -0.7642098920296121 -1.014096560131293 -1.427791262049141 -1.559887894587519 -0.835452599427299 -0.7531798867503312 -1.658609024324505 -1.07366302135506 -1.155725275708392 -0.5987619138904847 -1.229588831247383 -1.475169227756851 -0.8106298345737741 -0.9139983506776161 -1.134337978772237 -0.4982121991852182 -0.7804306647449266 -0.8251198049183586 -0.5760198886855505 -1.368107432324905 -0.9803229808912874 -1.304912135034101 -1.712899250829651 -0.7107318333055446 -1.231306014497022 -0.9954765417260205 -1.888860831767261 -1.017961104894539 -1.407531331649807 -1.230223356802526 -0.7528986808283662 -1.209557387007862 -1.54569435828671 -0.7462000578234438 -0.5021128536239985 -1.140570453827422 -0.6782845478816739 -1.222474695820893 -0.529525566722441 -1.01634680006282 -1.062752820214882 -0.8962769579632095 -0.9125540614031706 -0.5927726318659552 -0.01807912196636607 -0.2337627690340014 -1.241405812250377 -1.014341933991091 -1.18199662765187 -1.352549664546132 -0.6449077241639856 -1.412286749723535 -1.085434384158361 -1.601148508943879 -0.1783303162155789 -1.243776803887158 -1.121843043751142 -0.1742433152958256 -0.01691022047816659 -0.3637712158015347 -0.4972802144475281 -0.5119016267999541 0.1464783438132145 -0.8226434274838539 -1.197032656920783 -0.02164069828813808 -0.6751748057413351 -0.04552131534001091 -0.9178129226847886 -0.9098812514239398 -1.248934466830633 -0.7679522934272427 -0.6912785763734064 -0.8147482883532575 -1.635442863924709 -1.404528321813814 -0.2131593207814149 -0.4575685142560815 -0.6399064357083262 -1.022576129973459 -1.073235112213297 -0.2894137774055707 -1.348541105136974 0.1106880713923601 -0.8869860695849638 -0.3810325469239615 -1.566058255146345 -1.264306215423858 -1.387419223994584 -0.8139025504931219 + -0.7938012449521921 -0.9820909682312049 -1.005799347214634 -1.216197765359539 -0.480410835290968 -1.018745005261735 -1.294117611789261 -1.820293485994625 -0.7635956733502098 -1.058066315494216 0.3519698407726537 -0.2989003593320376 -0.9517088187421905 -0.8082664622133962 -0.09550990862226172 -0.4505429670589365 -0.1985316316940953 -0.3308399310772074 -0.6458699561771937 0.1209407196220127 -0.8354349872897728 -1.000838323809148 -0.2962090096480097 -0.5313660685266086 -0.8588846349157393 0.03563985535583925 -0.1081943495810265 -0.1387886100928881 0.3724759646684106 -0.3724261739662325 -0.1412361786333349 -0.2722099497314048 -0.5559655337092408 0.6789388430552208 0.4403472694357333 0.4948290123193146 -0.7438604632684473 0.7679038073431457 -0.5589983449599458 -0.02713970862896531 -0.524732370111451 -0.6325780749898513 -0.5446366173364368 0.3713024669159495 0.9687300051624561 -0.7035340641577932 0.03354750960640018 -0.08100461523736158 0.02351437722791161 -0.4123132241365965 -0.6745193133638168 -0.07762887282467545 -0.3436371045163469 0.5467232325645455 0.71220493778128 0.7131247943416383 -0.4048933400117676 -0.3307267293967016 -0.5664346995007463 -1.101838504413877 -0.09200582768927745 -1.078009539352934 -0.4294177097626743 -0.6866928418312455 0.3434125904386747 -0.2333862395607866 -0.3667635772944777 0.6069863035436356 0.4494276520308631 0.3737744612662937 -0.03529555369459558 0.4871710922743659 0.62085002582171 0.04124176320328843 -0.7150169936139719 0.4173009942105637 0.06921434040805252 0.6162346322234953 0.05262989953553188 -0.407251997311505 -0.5915496662037185 -0.2077900352373945 0.2273343922661297 -0.272535311161846 -1.10216061022038 -0.8994037691918493 -0.2010989292230079 0.2004553238102744 0.1203565927462478 -0.4050414267112501 -0.3960062363039469 0.5036356438577059 -0.8071659154775261 0.8385819176401128 0.3229004281311063 0.4779506620398024 -0.7254561186600768 -0.5450246422078635 -0.4236746742917603 -0.3342163797392317 + -0.4860578308616823 -0.7279933455429273 -0.6697559634048957 -0.8082950444950256 -0.3485656577468035 -0.7434608568437397 -0.6874225360807031 -1.475276320183184 -0.3764324387884699 -0.6551109633037413 0.6655207230178348 -0.05167868387070484 -0.8532724746692111 -0.5538005130933925 0.01680160076466564 -0.4481875855826729 0.3448523771066903 -0.04105046125459921 -0.4546388510862016 0.4842897128764889 -0.6797638080024626 -0.7895182422944345 -0.1179434742080048 -0.2992409317213287 -0.8503405481606023 0.1567392058423138 0.1600793474208331 -0.1488967211480485 0.5493270966362616 -0.06614600449756836 0.1325633123797161 0.1657526935032365 -0.2522244810279517 1.039679424704445 0.7599270200680621 0.7653587556451384 -0.2452912061376082 1.539937288852343 -0.4860119276222576 0.3911368461431266 -0.5972144588649826 -0.4681890995138929 -0.04211065080835397 0.7722870051566133 1.302261866900665 -0.3590015876916368 0.276120804193333 0.3846357658330817 0.1143416914528643 -0.2011248997987423 -0.6438260488166634 0.2291528573480264 -0.214814879579535 0.8198321289892192 0.5737525789863867 0.8292949519291142 -0.07473848602057842 -0.1394072102739301 -0.2723448389101577 -1.062808738208673 0.07790563591453292 -1.045972021701346 -0.2835101756354561 -0.2853767319757026 0.2398200069437735 0.1212547926988918 -0.2830845134303672 0.6671148577970598 0.1371708448841673 0.2373068048545974 -0.2317087722549331 0.5019840847235173 0.4684982670733007 0.08465641731891083 -0.7478603776471573 0.1234198446782102 -0.01988651270357877 0.5321681060995616 0.1930550932893311 -0.4802055055361052 -0.4815670889029207 -0.1756082267543206 0.5471169810307401 -0.09589208850684372 -0.9530774862446378 -0.7540934816051958 -0.674563474792194 0.1059469829067439 0.2532220963039435 -0.2562350852858799 -0.2584120114224788 0.5849819055401895 -0.6151137092856516 0.8259740188877913 0.6423171653950703 0.6468715779701597 -0.287643078390829 -0.2266278392053209 0.199742916305695 -0.2428783460867123 + -0.5735664960920985 -0.8785323880292708 -0.6497825218830258 -0.6594791706011165 -0.5027938179555349 -0.6963272044959012 -0.4485192600113805 -1.335104915742704 -0.5108112799789524 -0.6646613312332192 0.2970882319787052 -0.1849174478120403 -1.000218129232962 -0.6925203855930704 -0.3233667048389179 -0.6205255500690328 0.1156473328510401 -0.1853417749780419 -0.5328509483588277 0.3575072640087456 -0.712132014465169 -0.8193542204317055 -0.2514875605993439 -0.2758231834565095 -1.046515759750037 -0.09104814966849517 0.05818292008189019 -0.6698527336484403 -0.01415658999758307 -0.3647799989503255 -0.08001870582302217 0.008262508266852819 -0.6577318233976257 0.5432552043148462 0.03600525940419175 0.1880799688533443 -0.404953409639802 1.091353120559006 -0.8599120983421926 0.1007342576631345 -0.8475483911324773 -0.6699759075249858 -0.09048003819134465 0.3986599261820629 0.7203013220947412 -0.2240031399987856 0.07919635712841711 0.02412166947306105 -0.1853935035505856 -0.410351939440261 -0.8715925819419681 0.09013794577072076 -0.4441705444578474 0.2043090342904179 -0.1914212269548443 0.3279714809032157 -0.09224996157172427 -0.316581553164724 -0.2495762920939342 -1.147289012756119 -0.02983114265195752 -1.174806638689915 -0.4731352982798853 -0.2946379369168426 -0.1614557781649637 0.04328194865956903 -0.6416195699275704 0.256572625784429 -0.5111104510160658 -0.3325680570633267 -0.7936142317194026 -0.1017798648681492 -0.05172719314577989 -0.3762816559392377 -1.067250428037369 -0.6236606608490547 -0.6705020138156215 -0.01437416284170467 -0.22467488249913 -0.8975242338256066 -0.7471239767260158 -0.5126196133810481 0.3766865268898982 -0.2501651805578149 -1.038922270558487 -0.8739231158697294 -1.278065737724319 -0.4817239479621094 -0.0505666049575666 -0.4177443836342718 -0.4972073067474412 0.173277861034876 -0.6690728134417441 0.2977631671892595 0.175995358156797 0.132293525042769 -0.3200599739720928 -0.3734969897304836 0.2457813433666161 -0.5589770974326118 + -0.8748426276688406 -1.28008034897357 -0.8431010857748333 -0.6926712125859922 -0.8024940315808635 -0.7876420671236701 -0.4935302831727313 -1.321792487004132 -0.8869709617938497 -0.8934007800053223 -0.3927256005517847 -0.4982794697825739 -1.167480954078201 -0.9643425415224556 -0.7497066874211669 -0.8386690576280671 -0.4879615810527866 -0.5976876243921652 -0.7722552729719609 -0.2045727711520158 -0.8307742631513975 -1.007714511040831 -0.5907469183875946 -0.4700072708051266 -1.340359268942848 -0.5611327248989255 -0.281987359674531 -1.294861427424621 -0.9317802853911417 -0.9242349760261277 -0.5190136272340169 -0.4914505059068688 -1.214132782322849 -0.2290998767739438 -0.8787423243511512 -0.5688727759106769 -0.9351281821599287 -0.1206277843856469 -1.256372626142365 -0.5825042037668027 -1.107081103745259 -1.0544100114721 -0.4922235182120858 -0.4333538658856924 -0.2096265819170355 -0.5867795817007391 -0.4146430970839816 -0.8500750703644826 -0.6646044988192443 -0.8782861458030311 -1.185347846515015 -0.2963709400036123 -0.8517350697620714 -0.8590914888300176 -1.114380300094126 -0.4077255532401978 -0.2824308857288997 -0.6985161904158304 -0.4163779608020377 -1.268077420268355 -0.2915460275892627 -1.325773351441967 -0.7922589311920092 -0.5499343573283113 -0.6022140117565868 -0.2442512461711885 -1.135098437305714 -0.3238899971556748 -1.049314194075123 -0.8657892857954721 -1.372776161508227 -0.8547374332265463 -0.6294147125445306 -0.92563451416936 -1.407241177927062 -1.374296369413059 -1.447258763486388 -0.648317069040786 -0.8234692115838698 -1.357656294760091 -1.144211477186673 -0.9634631889671255 -0.07852854348038818 -0.5904058597038784 -1.187839079032074 -1.086651628778327 -1.675597225148522 -1.183889366765015 -0.5225668490675162 -0.6836713358570705 -0.8827613854846277 -0.4200223430489132 -0.8305738531762472 -0.4129784919969097 -0.6752662461658474 -0.7542546908298391 -0.7055953617964406 -0.811380109651509 -0.2645711394461614 -1.090670324557568 + -1.165413009690383 -1.642737744012265 -1.08887294739543 -0.8052405974231078 -1.089527372052544 -0.9045204139256384 -0.6822599920706125 -1.331859320525837 -1.211789968598168 -1.126557967760164 -0.9993458556746191 -0.7811812698128051 -1.181894285502494 -1.112879584747134 -0.9566258353070225 -1.007164238073528 -1.001282438718135 -1.027289239694255 -1.036520916853988 -0.8781054877727001 -0.9103330105390341 -1.212521126697538 -0.9686925534115289 -0.7637886693593146 -1.60320255116676 -1.04381859255227 -0.6767038464677171 -1.634233392280294 -1.673680266449082 -1.327374847040119 -0.8815301530285069 -0.9720027356615901 -1.446384093169399 -0.7582746521288755 -1.334069725417976 -1.012401262709318 -1.445052844124348 -1.223146317021701 -1.403778388954152 -1.236962588643109 -1.226475870773356 -1.381922745192242 -0.8872957878211309 -1.203150677474014 -0.843710259253001 -1.251341414089438 -0.9787517961912009 -1.661181340197118 -1.069431904747034 -1.310518223502186 -1.407747981244938 -0.6830153594588069 -1.219670211913126 -1.688483833760984 -1.731628622612789 -1.001053338278325 -0.5184992966042046 -1.111156434097211 -0.669240839450822 -1.353530029972603 -0.5921067186852866 -1.403919058449446 -1.073757709688834 -0.8704160476700054 -0.9624636050248228 -0.618927663366776 -1.505001240453566 -0.8400321226690721 -1.252849318158042 -1.110803724612197 -1.69623857991246 -1.363024421152659 -1.010715981916292 -1.229341690610454 -1.551833315246768 -1.707600643981095 -1.929710887841793 -1.041681309136038 -1.268163354836361 -1.60987792284368 -1.439671185887391 -1.28624579862776 -0.5816649997896093 -0.9357833247204326 -1.257464288801657 -1.204261375488841 -1.680485873977887 -1.650129491197731 -0.9074721590968693 -0.8755934917571722 -1.191707807209241 -0.9053660863210098 -0.9657077807078167 -0.9929628689133096 -1.400218530587154 -1.532884815427678 -1.159765169029924 -1.188476934390565 -0.9636828722223072 -1.5304423084372 + -1.251681361940427 -1.668625422506011 -1.20845762375393 -0.8816330211629975 -1.210193094728311 -0.9298456319374964 -0.8531814794332604 -1.266867467253178 -1.279403301585262 -1.204065030266065 -1.258663556689498 -0.894942978527979 -1.01282777779852 -1.014244741409811 -0.8621706277722296 -1.058887506440897 -1.135482963253935 -1.247367341185054 -1.201586287257669 -1.273238732941536 -0.8589971993187646 -1.275729027325724 -1.201882768375071 -0.9522414233823042 -1.714491331273166 -1.330875966224994 -0.9535352324965061 -1.515963227726388 -1.861889734580473 -1.323195866334572 -0.9672641179849961 -1.16538582285466 -1.355548609691141 -0.8897026436957276 -1.298731527201653 -1.062345940764772 -1.625078798057814 -1.555740428617241 -1.254070836386177 -1.520335889261332 -1.129718663500171 -1.449769795467773 -0.9450474371342352 -1.497040653996123 -0.8854973403087953 -1.529444616040934 -1.365269033144759 -1.948969078791151 -1.208557202452539 -1.432329647929691 -1.426510497629806 -0.873326459386135 -1.364768811672548 -1.785189850647839 -1.796082870068858 -1.219445076370903 -0.7287994873258867 -1.391960729451966 -0.8890165724014878 -1.355179189205387 -0.8314569353496495 -1.361207539882798 -1.208992459890396 -1.0761944871374 -1.185880241171617 -1.012125879158702 -1.604367587722663 -1.165599253458367 -1.157608829980745 -1.087624034327746 -1.650174828937452 -1.427661286608782 -1.071794175804825 -1.164744460304064 -1.400302699923486 -1.474891410514829 -1.878983288202107 -1.028269742308112 -1.376178467874524 -1.536711749407687 -1.479096078193379 -1.346565062608988 -0.9307149177625433 -1.156955637601641 -1.177748946845441 -1.098193995552265 -1.32954752769092 -1.693578285719923 -1.04309671871124 -0.9017812256824982 -1.27042307440388 -1.107340799560916 -0.9783112197201262 -1.257950065086334 -1.628072815969063 -1.8162806469918 -1.376812727841752 -1.20724452262948 -1.378483011724256 -1.650298341478834 + -1.04873308790593 -1.252852770106983 -1.061954701792274 -0.815302386865369 -1.045586429510877 -0.7645639694310375 -0.8634731868150993 -1.05973240808089 -1.032261646854749 -1.071433043993238 -1.122926874149925 -0.8028582263450517 -0.7552536357097779 -0.6975433129118755 -0.5802250565502618 -0.9393780567856993 -0.9523698063881056 -1.156289760891696 -1.192381476561422 -1.221295418290538 -0.6681931926414109 -1.087801950045105 -1.14524344178426 -0.8777860012556289 -1.590147445778712 -1.282636501979141 -1.008441611076705 -1.020227311513736 -1.456748993272413 -0.9533194394507518 -0.7570261845758068 -0.9888163279943001 -1.232833963644225 -0.7493235077884037 -1.110829345026104 -0.9220385059666114 -1.345923384892842 -1.174307111795997 -0.9320166449201679 -1.320796237971535 -0.838629540128295 -1.174753053094037 -0.5750492536542424 -1.244673338861617 -0.5948385743147799 -1.121198241225564 -1.39789820263751 -1.602760989043645 -1.016576963513216 -1.138577067778442 -1.237288541298767 -0.7923622611681367 -1.196806668489899 -1.170631060791038 -1.358224932240091 -1.023703317079708 -0.8634738750697579 -1.406496768762736 -0.9472216908534392 -1.248346840354429 -0.9232245708485252 -1.176936746416686 -1.132751767635909 -1.006854621065941 -1.183293232512369 -1.288126308541905 -1.382481455100788 -1.247777647084376 -0.9089989717258504 -0.9175731735103909 -1.288866010127094 -1.064446292031789 -0.8316695105531835 -0.8254338241313235 -0.9866913582445704 -0.8518887329998961 -1.311507015660936 -0.6447805926491128 -1.144407807792504 -1.159333856652893 -1.216717986781532 -1.15142529713944 -1.00574807924977 -1.192855471911344 -0.9618176067574495 -0.7502053996638551 -0.8331232256646217 -1.349835099012353 -0.9015447468036655 -0.7771177835875278 -1.067061601521345 -0.9964512408332666 -0.8274602762467111 -1.195671496334398 -1.299833929944725 -1.53122056653956 -1.193099909648481 -0.8324180491426887 -1.266017812549762 -1.394983522000519 + -0.630032092156398 -0.6003848154687148 -0.6060918677030713 -0.5406852033775067 -0.5489618455030723 -0.3518079772329656 -0.6256516688808915 -0.6906243659723259 -0.5698355547829124 -0.789532715903988 -0.7077862944806839 -0.5501698348562059 -0.5353917538277528 -0.2664557797828593 -0.2698938900527992 -0.6176476927255408 -0.6474557337140823 -0.8105768499924579 -1.003684615048769 -0.8505319819814758 -0.4123498251728961 -0.6337858315473568 -0.7372362611022254 -0.5428398848116558 -1.201685522588377 -0.8723872240152559 -0.8358843877940672 -0.349264484339983 -0.7229783899147151 -0.4664249181828382 -0.3878044790762942 -0.4815045745137922 -1.11594274627214 -0.4682955773640742 -0.9548285293213894 -0.7875661103195171 -0.6728869939805406 -0.6900622185625025 -0.6059966256007101 -0.7955533786835076 -0.4613761982118376 -0.640777193627855 0.01660383553894462 -0.6994154534946233 -0.3959136552261437 -0.7970953453517478 -1.051635513340946 -0.8358519311455268 -0.5525865809900097 -0.5257422808883803 -0.9365639163427204 -0.49329912394046 -0.741801649099898 -0.3726325759466818 -0.6938509772542147 -0.5328841094203653 -0.8637962210323167 -1.065184128354304 -0.7185044110592003 -1.027950345729209 -0.8033048905183833 -0.8452703421953629 -0.81239742548496 -0.5700387415708974 -0.8459131270774378 -1.209581147075369 -0.8399060529900453 -1.051106230303049 -0.5742662522338833 -0.6013054911181825 -0.7764685088732222 -0.4372730961040361 -0.4093242197923246 -0.4094623297696671 -0.4498186317632644 -0.1439450722212996 -0.4510502223160984 -0.08579447246211203 -0.6923497102284273 -0.576293192239973 -0.7041265900172675 -0.8164801573393561 -0.7874543537120644 -1.002228598076385 -0.6778610324411147 -0.2509695580481548 -0.4103954659587998 -0.8291801782497714 -0.57696433836918 -0.5956384147884819 -0.6227543426339253 -0.652678678960001 -0.5256352524320391 -0.9285840009051753 -0.6679209243284276 -0.9577468170900829 -0.6585882378453789 -0.3057954153273386 -0.7080107368142308 -0.8458966977546991 + -0.2140043656727357 -0.131195095482326 0.07122690178221092 -0.06331381126801716 0.2256217599206138 0.3032076831113955 -0.1311415353411576 -0.1889936045954528 -0.1056727113555098 -0.5008348482379006 -0.1636039969453122 -0.2171479230210025 -0.416625470816598 0.2003539893391348 -0.009222979219771332 -0.1226076141415433 -0.1034569306576714 -0.3728828177950163 -0.6983052988589407 -0.4103267627192508 -0.1955882128404483 0.004988434956430865 -0.01813794422378123 -0.1052198172853451 -0.5809817836561706 -0.1913361411316146 -0.5219215005854494 0.325838085266696 -0.03417239888085533 -0.09882885337674452 -0.04719286193812877 0.3008353857203474 -0.6281214288899264 -0.07426336020114377 -0.7126109833649821 -0.6904824194201069 0.2039770139590331 -0.5458395441247319 -0.2903942505094506 -0.2684992396175403 -0.1497818547429688 -0.07864821547593692 0.5118209700900707 -0.1732641422064916 -0.3266332531387617 -0.6220941832593047 -0.4618643463562799 0.009544564911394104 0.05217780757129731 0.2122509602406808 -0.66263586592504 -0.09897885173242571 -0.1237772956371828 -0.02628005060012129 -0.1367857812085731 0.05599181458046587 -0.6668416249676739 -0.3425497938424087 -0.1027981603055537 -0.7027767555977107 -0.4545552798600099 -0.3870474632465175 -0.2641427765404387 0.1930732261034791 -0.1694945128911058 -0.5705664069037084 -0.01169625144029851 -0.5406380368398231 -0.08518832991649106 0.04300569857696246 -0.2972745947117801 0.2453235806897283 0.04588834520473029 -0.07205400418752106 0.02905719828959263 0.4606052167623034 0.399899098358901 0.3966289672507628 -0.1672041270185218 0.1139506278010458 -0.05260995473179264 -0.4962275499224233 -0.348182565799334 -0.530463753795857 -0.3977040191842889 0.2521188519287989 -0.1323847678919492 -0.3878613803573217 -0.2260692878089685 -0.4680965145244045 -0.02983630419930705 -0.1861483597458573 -0.1203223453294413 -0.6216091102396604 -0.1391168500704225 -0.5638162251152607 0.009716742613591123 0.03709230737354119 0.04325035658399656 -0.1624427800357294 + -0.07555060670620151 -0.2033812211448094 0.7620701889718475 0.5305002835011692 1.124611343982906 1.12611644847857 0.546932570538047 0.3780252896249294 0.1142690475535346 -0.3651396860595923 0.449189512958128 0.131154358630738 -0.361804331610756 0.6930194343176481 0.2288977514993462 0.4361816919008561 1.076892880840632 -0.01665456676812482 -0.3837672877771183 -0.06845108106699627 -0.08865799088835047 0.6879132450694669 0.8850965210149297 0.2359961543191034 0.1898426244079019 0.5864061701795436 -0.2053971880268364 0.8982124011736232 0.319093277975071 0.0823571485057073 0.1453620406489335 1.306620656196742 0.5576799304820383 0.386581016002765 -0.282869103490043 -0.566809469092675 1.099915938528596 -0.5377589518342951 0.2452960925261536 -0.03871212532499158 -0.03925950878772255 0.236400205443033 0.7541044373117529 0.2271905095757063 -0.05334654959445551 0.5516816769206669 0.1541518366342176 0.703683299108576 0.6587439304901181 0.9212514730784847 -0.5131242098397024 0.2842895991782797 0.4845971895171033 -0.3517780190344411 0.09031115918469368 0.5532690450210112 -0.2438161740465148 0.7052607246314437 0.9453358273660228 -0.2911455183166822 0.06552998981312896 0.124771013954728 0.4173302200204034 1.077729836078106 0.6479519527752018 0.5987409869117073 1.010257055125294 0.2806011780575091 0.6593670523882338 1.229954126664779 0.02208841072751966 0.8164434223654098 0.4155501859895594 0.1643467586304723 0.2925399976102199 0.9585999152078557 0.988543599109164 0.5940567787674809 0.3280389682811347 0.8525781534068528 0.6091776411892056 -0.3192435838135452 0.1767482160605596 0.2427355972697569 -0.1515409404198635 0.6274693893250287 0.0916686390560244 -0.1894508587023438 0.01253954078265451 -0.4531494754555752 0.6213379013252052 0.3409107586176106 0.3330049643836901 -0.3837305246861433 -0.05869332222755475 -0.7375878158768501 0.5466577783164439 0.01088781630619451 0.7700403544705665 0.4791061509665251 + -0.4123202304899678 -0.8406761969959007 1.200818144076038 1.097139557810806 1.937513213667444 1.985760820811265 1.274099650665448 0.9268569435571408 -0.0919708112214721 -0.4894062365801801 1.217691331595006 0.482692095438324 -0.255583144442312 1.2402087440027 0.5335154624268341 0.9026444028339711 2.921085957785325 0.1483986233887435 -0.1760104428508384 0.1287019179422941 -0.1053656498597775 1.263307214234374 1.800352531919998 0.3708235231052335 0.9994014521835197 1.263277441319588 -0.02470396311946388 1.241557664152197 0.1973439884899335 0.1482369565622434 0.2007706027891345 2.415400127615413 2.238846019625768 0.7570026712751385 0.1379448373016032 -0.4138213798021155 1.932560630392437 -0.126737232175536 1.268745827043052 -0.2139240656360357 -0.1925379686366568 0.1319519517479364 0.8469183075789886 0.6095730839204236 0.6105126203464811 2.243357832955083 0.6129684923152943 1.262228472147022 1.159698652731095 1.538366443423968 -0.4868858219723506 0.6264471368941571 0.9210666365131601 -0.9198191603388182 -0.03073092119123544 0.8431924423352939 0.3597401017057109 1.93442860324194 2.389124982735211 0.1806118688388665 0.6180183526829381 0.5553165142479202 1.052934541426794 1.766519642123058 1.268163099289268 1.948016579552814 2.056164214689488 1.320242280463447 1.648559973281863 2.992412859609658 0.1484735567410098 1.189811712676601 0.6423097137467266 0.4007172836463724 0.2520149460615357 1.397723022333679 1.175159456276731 0.3976515104409373 0.7466680354641539 1.602766800460643 1.166137729105742 -0.3559007968067363 0.627904880644337 1.203680477062619 0.08630166052540744 0.8126179348783467 0.3769052825868187 -0.2316747791138596 0.084862014063674 -0.5143788181844684 1.281910283400066 0.9510206265376837 0.7963001877096758 -0.2103386615026466 -0.5474951292308106 -1.569117089944484 0.7616537492754105 -0.2827098799769487 1.411058721018286 0.995620879042926 + -1.229738636479624 -1.667247355563177 1.158937578858968 1.488608712563291 2.470720414335119 2.726068897974983 1.893141059004847 1.381812402323703 -0.762929566310504 -0.8787325320604396 2.339801727400413 0.890983794494332 0.03931540478157558 1.84736181403666 1.007722690675806 1.155664459081976 4.721954914248931 0.09497491919577783 -0.1625584588518905 0.1743398172180832 -0.2276631631192458 1.603774909314325 2.561518657653323 0.3317678632124554 1.732063653238583 1.678219315376737 -0.07162357112611062 1.148824508724942 -0.4289653253370602 0.153703489560769 0.2361765921455685 3.373271745438217 3.778905061029121 0.8721220728108996 0.1860901211630193 -0.3532845461321159 2.694533447170671 0.889548502469041 2.722495211624095 -0.6722871923413436 -0.5708518540480441 -0.3543777162047519 0.9899332018846394 1.070951548370207 1.353643946971578 2.427111821716673 0.838415311377277 1.829654524434447 1.482850608411979 2.042411694570205 -0.4876097375551467 0.9714146968993838 1.080474185446008 -0.9425366707268097 -0.3299968294929414 0.9176467515698334 1.017276468700516 3.128579091339816 4.095897338565322 0.6773289091290451 1.013009006389289 0.7364266247072919 1.422897267090718 1.954110532851018 1.416620274369734 2.948220719804794 2.903737316734123 2.38781118203724 2.709201549817976 5.093483842900355 0.1306225926455227 1.353265541525616 0.7260716142645833 0.7778689995500372 -0.1001202752777317 1.720757546409743 0.9220200191498975 -0.203348705638291 1.059316487966726 2.301800100970951 1.532126918797275 -0.6194075197949473 0.862044066167698 2.062552976632837 0.3753914657831956 0.8244774219844544 0.7115308945923999 -0.3732543962480577 0.04498321439109532 -0.5238908588253253 1.953610366811517 1.731144170220432 1.263811875267493 0.01062866766869774 -1.459527991230289 -2.794560005044787 0.60930120575253 -0.5169095628615707 2.045657475608671 1.482506093335799 + -7.538274921367702 -5.263666425757037 -3.914932566760399 -4.552380415800144 -4.948382477781706 -4.771187930302403 -4.538398659693485 -2.180570517815795 -1.463852000866609 -2.319795205719856 1.313081390899242 -0.04533910260033736 -0.0003731094284376013 -2.32572770159743 0.3205119234787617 -5.455842673527968 -0.2509785458897227 -3.439095365168896 -6.437471871203343 -6.41303373766732 -4.675394007022078 -8.255677708288204 -5.64109512437426 -4.519896926633777 -6.038134480615554 -5.669848358495074 -4.687694841166376 -0.8621471046953957 -2.954642798554687 -5.490343273592771 0.07248222714542862 -1.374559736588935 -4.748177334627599 -2.200903680290025 -0.7718348638123871 -5.607044860443125 -3.187992560150491 -7.249615613190542 -6.884551616861131 -5.811486738751455 -2.619120521054811 -0.9895193785151832 -1.072928162169205 -3.11615206491382 -1.35296315679414 -1.388381855892805 -3.668288891843821 -2.432977433197607 -3.657314390485681 -4.283110722112042 -4.48191318205636 -6.00304663347319 -5.931945411867673 -11.01385041455956 -7.239139815306999 -5.911851659536978 -9.107847831814979 -12.80291259542719 -9.343652355730228 -9.547925372349596 -9.907487254014164 -8.316236900448985 -9.820332984555762 -10.14905326675307 -10.57902615329749 -11.88012817983872 -10.8637676103117 -11.07726952320309 -13.22246512716629 -17.46496794561062 -10.14963056849228 -16.73398948073736 -13.21086021074734 -16.59061740634388 -13.33362473002489 -13.5242690027942 -10.4062143058693 -13.48361143791226 -14.7015533638214 -10.88329024388349 -10.83651919745694 -7.777999129397017 -10.7558744791238 -10.08147680770469 -13.58691788590761 -7.307002480239134 -5.703617672029168 -10.27320995727155 -10.89177413084417 -9.579400432079638 -11.23811789858883 -11.82351544907033 -8.997455401959087 -11.88117384540055 -8.070991164333464 -2.843304495292614 -5.3377879424188 -6.834137160034061 -1.212437276449123 -0.8560817425141561 + -8.065292287668854 -6.584855765257089 -5.084521909040632 -5.860301120294025 -6.15206585577107 -5.625381564546842 -6.022056680609239 -3.58576716529933 -5.029693541291635 -5.120692106049319 -2.316865298391349 -2.27984672149978 -1.780213332676794 -3.585580381054569 -1.238696468790749 -5.384374546667914 -0.1648243906700486 -4.230051351339625 -6.201264577290203 -6.759520917337795 -4.97560433693252 -7.673758192155219 -5.601182533053361 -4.974994103570452 -5.628431595367147 -5.643342562641919 -5.094385936230537 -1.975610098794277 -3.568152354248923 -5.861050347339187 -2.022066151484069 -3.235781373324699 -5.92271967704346 -3.019597905115461 -2.077739252924175 -7.141607055536042 -4.259497605146009 -9.50088532681238 -9.282449003914678 -7.38683739587168 -3.530517952469381 -2.190576675700413 -2.218503114904934 -5.271175231357745 -4.180196897437099 -1.168326606731807 -4.573138362022648 -4.028933911439992 -4.117253527139837 -4.278629151566292 -4.757742064063677 -6.219162531949223 -6.0413030438649 -9.718952182170597 -7.404522812345931 -6.859207381885881 -9.37715484383898 -11.65868712420342 -8.525806498573672 -8.176505460214401 -9.061983476032431 -7.844321855749968 -9.642430843918646 -9.888361001310841 -10.37305989435117 -11.53720467834864 -10.55872541847384 -10.76698028248029 -12.08182856723852 -15.68254810976214 -10.12548370967124 -16.06381428030727 -11.91949224495329 -15.59641446179921 -12.17854941036421 -13.48660531773908 -10.5907045707811 -12.53729002440923 -14.06350787752308 -10.20628467639949 -10.38071010361705 -7.776261289953936 -10.54509874281848 -9.842174774413252 -12.49741166306626 -7.435450480395275 -7.57948488107877 -10.86874376181959 -11.07547796126437 -9.551980962360176 -10.94566103474062 -11.62324324332258 -8.53339978502845 -11.29371752293446 -9.023594665122801 -4.30641537941483 -6.492225081939978 -6.996561106901936 -1.925835327979485 -2.255745598254316 + -7.882443671827787 -6.915870644370443 -5.497275535642984 -6.190743168626796 -6.288135287977639 -5.643247418331157 -6.528751265708706 -4.241209976942628 -6.985278560554434 -6.532877668993024 -4.72655504269278 -3.789176686532301 -3.12063334114282 -4.404806018423415 -2.571620848690145 -4.980684199452753 -1.635124267855872 -4.717370560140807 -5.635419061958601 -6.47208013328418 -4.811129227788115 -6.683179553081573 -5.181451032647601 -4.762423690751064 -4.927882992422383 -5.22717431345518 -5.063084960369451 -3.117649546789835 -4.155397771923163 -6.062108936102959 -3.559039302012934 -4.473892969964254 -6.134085947155654 -3.7874103723384 -3.51936259973445 -8.236931889882726 -4.865794172708718 -9.887624670056539 -9.85956234126968 -8.111421178486125 -3.86772511273557 -3.169908670291761 -3.362015268226969 -6.401831620786766 -7.414566651371082 -3.596587768849091 -4.916146029842388 -5.030269721561012 -4.252874205049011 -4.184450636457768 -4.734732015789177 -6.133616478027363 -5.751106567297938 -8.215382274997864 -7.168388291010615 -7.305694166603644 -8.934118793938069 -9.956467042913573 -7.381887743096627 -6.633369221806277 -7.814511819558348 -6.92466035206553 -8.850403821169493 -9.126886614729301 -9.537062815159516 -10.65872841943565 -9.690620366693111 -9.897161224335377 -10.58792365324098 -13.44326911487769 -9.332501988945296 -14.56468189891893 -10.09583588943497 -13.72532015858087 -10.40858690825917 -11.90487009200069 -9.969382499247104 -10.86901246446723 -12.63650844034692 -9.010447029934085 -9.322954253983426 -7.187378468467386 -9.601417685416436 -8.399728147352789 -10.6587044306541 -6.942762550404041 -7.947588790776081 -10.34433279013524 -10.25523968388916 -8.737274977836933 -9.860836457257392 -10.50302080830807 -7.573675526129591 -9.991464084414474 -9.167443154459761 -5.109029423194443 -6.774237103939413 -6.515850998063797 -2.781696563150945 -3.363512317423041 + -6.991737631360593 -6.289999701039051 -5.177589748302125 -5.67284502183611 -5.507026284794847 -4.992066289385548 -6.165924282904598 -4.227807567745913 -7.285053989082371 -6.609203248222911 -5.669399596827134 -4.340248364111176 -3.74343702450642 -4.653375248825796 -3.40307423116883 -4.253626916636676 -3.88695631972405 -4.6931773818701 -4.783588776288525 -5.531328541444964 -4.224964062475919 -5.44982204570988 -4.431201191015134 -3.987309543636457 -4.014458311969065 -4.454745171839022 -4.570762241986813 -3.860655528049392 -4.439143771833187 -5.921034526701987 -4.269820962847916 -4.954861659010021 -5.924853086561598 -4.475244691695934 -4.92839228140565 -8.539932914581186 -5.091733228862495 -8.777817102474614 -8.819944856745224 -7.845962331633018 -3.621220798868308 -3.649295374630128 -4.102508963137097 -6.256588934821821 -9.075951169451486 -6.240619394896839 -4.605698755169435 -5.172828291916858 -3.990363715900457 -3.904835077533789 -4.312448094287902 -5.583814717837356 -5.035372763986743 -6.717761779786997 -6.407407394975053 -6.946615034798015 -7.761895429053766 -7.86771829465215 -5.998052952255307 -5.065840581546581 -6.244507740942908 -5.648354976355677 -7.449669064202226 -7.834643320722535 -7.951822494713269 -9.169483562112873 -8.216548361760942 -8.325707952331413 -8.622706777952772 -10.76506303014685 -7.765435352295754 -12.1173476704862 -7.832146408050903 -11.14488634540612 -8.198353563202545 -9.197623865615242 -8.544524148649998 -8.598949419787459 -10.45735428737498 -7.345146215874593 -7.734301533473172 -6.085431854693752 -8.034852016378863 -6.43310175776287 -8.409926792581473 -5.950334148897582 -6.882586680309032 -8.8001407092097 -8.57090428929223 -7.270804565727303 -8.132784394078044 -8.598824089927803 -6.226744022240382 -8.045878268352681 -8.413937041863392 -5.096828343725065 -6.18312138195688 -5.533596400861825 -3.442120499312296 -3.686985836708857 + -5.556256318413944 -5.003031709369679 -4.295518374405219 -4.58249270147644 -4.139010871098435 -3.920655162466574 -5.154377887520241 -3.713081062647689 -6.237369178437802 -5.642277595365158 -5.223899028442247 -3.952585125109181 -3.582871524828079 -4.272037922990876 -3.508344524490894 -3.262447860027351 -5.357548378685351 -4.097639565973623 -3.735216323275381 -4.147195567944436 -3.357385195045936 -4.153191518464155 -3.445044051673904 -2.94035929785332 -2.998313169475296 -3.412617396286805 -3.6819719457053 -3.843515029366245 -4.152634883854262 -5.244894837220272 -4.077700223891952 -4.629604661558005 -5.413160060603332 -4.653903924625411 -5.625410958245993 -7.699552725259309 -4.877729440297117 -6.979409418678642 -6.805434642662021 -6.655506886286275 -2.926864324093913 -3.495092579108132 -4.160854782392562 -5.159269413126367 -8.294332979570328 -6.168996003353186 -3.719318507214744 -4.578809082948283 -3.3081370152413 -3.366415019658234 -3.510516329707571 -4.543676463743736 -3.964676244401744 -5.23736300492601 -5.055377520147886 -5.698285948431476 -6.028946824448212 -5.636968147035077 -4.507848250569623 -3.617988464894779 -4.508765823942568 -4.184773434664748 -5.596831237816332 -6.094182895274571 -5.738205734189251 -7.126588519073266 -6.25196420606153 -6.162321064588923 -6.209289809892653 -7.748012285777804 -5.649845236162946 -8.928948867949657 -5.345475495720166 -8.135936409140413 -5.817449007074174 -6.099917594861836 -6.495993021044796 -5.987080415270611 -7.749952080875119 -5.371718399589554 -5.803573463407247 -4.610281100328393 -6.050091739122763 -4.509107400447647 -6.092016545066144 -4.645296066326409 -4.892141546807579 -6.539922902202761 -6.33016440299798 -5.405424203312577 -6.02443068782668 -6.184172130582738 -4.673247956512569 -5.663957885237323 -6.850257380930998 -4.324895759978972 -4.997639596082081 -4.286272251441915 -3.56889476212109 -3.226700582823314 + -3.858880507803406 -3.45821113238344 -3.109076584500144 -3.252230096055428 -2.581799564861285 -2.698990518139908 -3.779030349745881 -2.913039993625716 -4.392364559986163 -4.074551120425895 -3.752043062384473 -2.878544823972334 -2.799995190587651 -3.335834286401223 -2.853203949624003 -2.144642686575025 -5.055637865236349 -3.0488834798889 -2.618411419371114 -2.65918999772839 -2.393215902964585 -2.94085794847706 -2.352789332238899 -1.930300667840584 -2.005537083226955 -2.238508610040299 -2.54449382040184 -3.027934135207033 -3.204293604421764 -4.005615054176815 -3.141420664158431 -3.606896127803338 -4.370025424732376 -3.866115184900082 -4.941386087723004 -5.685053729649553 -4.087947892728153 -4.973495656706746 -4.462123157491533 -4.803751749208459 -2.016232292213317 -2.780267856700448 -3.491804812626469 -3.575086135873335 -5.764661471185974 -3.862880860109271 -2.47549473900753 -3.509156622815226 -2.288345558941728 -2.565354221575035 -2.475107088933328 -3.150308325925039 -2.702442773338589 -3.653465409855926 -3.2318342605422 -3.788785385353549 -4.05959000938492 -3.531324653933552 -3.065024779003807 -2.406553913999915 -2.81696581103914 -2.758947005969276 -3.593221784550224 -4.133326659222803 -3.305210754115251 -4.791263955114118 -4.079195692462235 -3.751655785034018 -3.622824988324282 -4.670875502881245 -3.384006803382363 -5.485751102387439 -2.950220192258712 -5.085338551565656 -3.581278223922709 -3.29327769358224 -4.169730778579378 -3.396672839273378 -4.90026454753388 -3.359840136765797 -3.809000294786529 -2.978761770123583 -3.924698180333507 -2.883561605188333 -3.990260296498491 -3.245098213432811 -2.680902082872308 -4.0134330562164 -3.940325499374012 -3.461095116501383 -3.863972267517966 -3.640574164190184 -3.127850360460798 -3.177173000811308 -4.72871101822966 -2.994958384930214 -3.569772557910255 -2.983894962855629 -3.045095969819158 -2.316987082865664 + -2.222448473177792 -2.005288824657327 -1.892979745840421 -1.981940104931709 -1.187379908253206 -1.563647717615822 -2.334065618662862 -2.047826669964707 -2.375396196854126 -2.382677625668293 -1.814972984087944 -1.517374911440129 -1.723311866251606 -2.091125485223529 -1.688114967504589 -1.099617017721357 -3.297987390921662 -1.799436271235209 -1.580488978663197 -1.325065691999043 -1.502535567284212 -1.910040521754127 -1.304172265452507 -1.130554442974699 -1.157721453986596 -1.10577780391759 -1.361669731079019 -1.749296182177204 -1.777793150875368 -2.426347442120459 -1.819887497480522 -2.175464483460019 -2.750458747701487 -2.156235737176758 -2.929059647749455 -2.988060073892484 -2.758534440407175 -2.805407171018487 -2.286508373358629 -2.707533775748743 -1.144578556786655 -1.762067510915585 -2.307024760316381 -1.831377717951 -2.745428239205296 -1.75603766682616 -1.163111163579501 -2.160957136058641 -1.135160270227061 -1.597231320098217 -1.431672383136174 -1.666797596401693 -1.470077654405031 -1.924097733073722 -1.290913549624747 -1.700044841201816 -2.230388937179669 -1.782957299878035 -1.811025699348306 -1.502637731088953 -1.377841440576148 -1.592406142441178 -1.80013357986445 -2.274042353732511 -1.200077084104123 -2.57823055654444 -2.080457166826818 -1.5495523655336 -1.336095807173479 -1.974165507039288 -1.413614145552856 -2.39363550057169 -0.9813364777946845 -2.42882685730001 -1.780095165056991 -1.175509448824414 -2.006511074389891 -1.213839578627812 -2.361394128436586 -1.628830457158983 -2.053695048657573 -1.464119449223745 -1.962237522621763 -1.579843224544675 -2.305128243054696 -1.964832316540196 -0.8786948670258425 -1.714666643604232 -1.811420803200235 -1.753236455711885 -1.975722097828111 -1.382877537194872 -1.79155281257772 -0.9767985546131968 -2.444167275818472 -1.407038864315837 -2.160777641023742 -1.751756586343618 -2.048598102797769 -1.306457148639506 + -0.9230500771191146 -0.8672032476606546 -0.877340454768273 -0.9789489930990385 -0.1866291985206772 -0.6811151839210652 -1.072901877676486 -1.300348789933196 -0.7184188446335611 -0.9669880971378007 -0.03491742048208835 -0.2883237246860517 -0.7320238263455394 -0.9030167586051903 -0.4873890321377985 -0.3207515055246404 -1.197580652381475 -0.6498594423137547 -0.7581617801188258 -0.2309306751922122 -0.8067371365468716 -1.118211061395414 -0.4468235928216018 -0.5542830552949454 -0.5502877927356167 -0.1921737888260395 -0.3456828430207679 -0.5375619080950855 -0.3006455260219809 -0.910887514026399 -0.5574290842887422 -0.7425911434147565 -0.9884833774594881 -0.1896949388192297 -0.5103608590488875 -0.4795158902979892 -1.239424302420275 -0.5776946353396397 -0.6897076131081121 -0.8443553142733435 -0.5179786817752756 -0.7801796071589706 -0.9975128301339282 -0.2050592127707205 -0.1709938745940462 -0.7104497399823231 -0.05845997702341776 -0.7406244761800735 -0.1258427777793258 -0.6512358568979835 -0.6050273127812034 -0.3958906671412024 -0.4885897430540354 -0.2629701571386249 0.2808201525567711 0.0225935055368609 -0.8386290511043626 -0.5424089996777184 -0.8474717019298623 -0.9233698178134091 -0.339093428806919 -0.8307216660850827 -0.511264046508586 -0.8173843714575924 0.1552830187501968 -0.8871425309407641 -0.6096240568331268 0.05036125364040345 0.1881455255734181 -0.1030201496178051 -0.08520779466925887 -0.1675695355224889 0.3078290577541338 -0.5403683696276858 -0.6054689002339728 0.1186337190692939 -0.4201337405220329 0.2579279280580522 -0.5177820902317762 -0.4480340219261052 -0.7833433123082614 -0.3304294548579492 -0.42755135115749 -0.5831533538466829 -1.141572702522808 -0.9841590660034853 0.1470621518583357 -0.05693325202946653 -0.2577359917686408 -0.5181155430291255 -0.6070027552341344 0.2455597970183589 -0.8075974966486683 0.5930625865948969 -0.4703101633494953 0.06751702437031781 -0.9330143808438152 -0.6849562903298647 -0.9030495749848342 -0.4218073662614756 + -0.1262781220102625 -0.1607570001215208 -0.2093528410186991 -0.3389383765024832 0.3330042132729432 -0.133025670031202 -0.1704762821464101 -0.7860348167669144 0.2625068075212766 -0.07200735578953754 1.088769927639078 0.4990363057731884 -0.1155298231533379 -0.1099857039625931 0.2761045349398046 0.08442023250245256 0.2945482275135873 0.1432392868327952 -0.2444300957795349 0.5866757863404928 -0.3726594659965485 -0.6015107628336409 0.1025021273308084 -0.1537839493771571 -0.2335195149498759 0.3628194999546395 0.3366494012880139 0.1578295797371538 0.7260106555222592 0.1312992485582072 0.2732378487562528 0.2860962457998539 0.2386487698095152 1.175814030191759 1.135217850609479 1.039401082578479 -0.04731681549560562 1.221524025319468 0.05300465697382606 0.3821084967330535 -0.2385596931144391 -0.122507503563611 0.02388749037527305 0.9485305465004785 1.418735048468136 -0.2198661737211296 0.6408164278149471 0.3913380927838261 0.4941084645943192 0.04185465046066383 -0.1412927963774564 0.4229655279981444 0.08586546564583841 0.9009210693329806 1.082076125058848 0.9950793912139488 -0.009482209157795296 0.1440143381514645 -0.2212567798472946 -0.6351024223226887 0.2501707090275715 -0.4960167732479022 0.1499939818195344 0.0670286520398804 0.660191011877032 0.08290663039224455 0.1432187747450371 0.8596415221445568 0.7394663708691951 0.7168813986281748 0.4642947259417269 0.9443334248207975 0.8314421332324855 0.3955328949014074 -0.09851174640789395 0.5921416613518886 0.339026150673817 0.8929443145461846 0.4389547176760971 0.06187864508092389 -0.11557586807794 0.2570832426172274 0.5164260173860384 0.06104087040785089 -0.5064746703283163 -0.41091861438872 0.3487412457434402 0.7406208122160933 0.573859904317942 0.1424388569321309 0.1281824562502152 1.070916035780101 -0.2331535834782699 1.346107415032748 0.7721267911838368 1.049026596505428 -0.02835777731525013 0.07298346731840866 0.09092929333382926 0.1648419498890128 + 0.1398432957721525 0.06461902456067037 0.06170785299036652 -0.06001491569622885 0.4069706586742541 0.08009707718156278 0.2979335947748041 -0.5391634815896396 0.5138485490097082 0.246144602104323 1.346787671787752 0.7319752197581693 0.03451067810237873 0.1355799830921569 0.3889457981749729 0.1310870307879668 0.8280996556031823 0.4424883087240232 -0.06262170213813079 1.001024750898068 -0.2126376600317599 -0.3751495087199146 0.2887008840116323 0.07343033636789187 -0.2007953279826324 0.5001716084370855 0.6091420006123371 0.1766436781763332 0.9691642871039221 0.4716356442877441 0.5059252931041556 0.6574176353606163 0.5093371167786245 1.474565075406645 1.402266735443845 1.291446736493526 0.4506120687985913 1.978891850329092 -0.01521241433511022 0.7799179265075509 -0.2830074626363057 0.07820978171093884 0.4888037315868132 1.315115807138682 1.796911197886004 0.04582163721897814 0.8512388097710897 0.8286560612855283 0.6169188613002916 0.3023227472203871 -0.0623264964824557 0.6953399145769481 0.2105356976298935 1.191766808178727 1.002201575348408 1.136340639121045 0.3129214828113618 0.3294098109217884 0.07590151028307446 -0.5665416144847768 0.4380721065987103 -0.4920034403667159 0.2532939122966127 0.3826585930873989 0.5305611353760469 0.4044067913855542 0.2222895791746851 0.9424289254820906 0.4795253667289217 0.6219897330520325 0.338163594060461 1.029831679712515 0.701050270741689 0.4638590001341072 -0.1405429898150032 0.3523006919840554 0.2795757730500554 0.7881548604709678 0.5687374504523177 -0.02297780500202862 -0.009188687524328998 0.2988549455581051 0.8469659693055291 0.3012698790907962 -0.3139423430607167 -0.2489173214344191 -0.05080267487937817 0.7145570771699568 0.7277419752026617 0.2781907453463646 0.2704888815424056 1.137322288206633 -0.03421542796786525 1.318169295846019 1.082806095248088 1.283555421978235 0.4147948858480959 0.3629293096237234 0.680482146810391 0.3056143315425572 + -0.02203590147837531 -0.1575617173075443 -0.01735465676756576 -0.07158977567451075 0.1542953428943292 0.02377535714185797 0.3597526700759772 -0.517534187027195 0.211132466334675 0.1017297788348515 0.878462624605163 0.5046284403942991 -0.1601159286328766 -0.06609656989485302 0.001381771135129384 -0.06958682256208704 0.5354358069180307 0.2742461587185971 -0.1577042709359375 0.8692491179026547 -0.2759311942027125 -0.4103058344117017 0.1410348883146071 0.08286053169047136 -0.3879515431908658 0.266765127547842 0.5065215102440561 -0.304694194914191 0.4490706463129754 0.1769900629205949 0.2307713266345672 0.3958091354270437 -0.01280879148725944 0.8911627786965255 0.609269186419624 0.6438769401493118 0.24659566409332 1.491450067419237 -0.5239717871268113 0.4455077649581654 -0.5220171313585524 -0.1244845612382051 0.3747812205147056 0.8665777969376904 1.163016486830429 0.06548536506170421 0.6133275225257364 0.4429520289518223 0.3187521063973691 0.1024571592033681 -0.2673359911696025 0.5012311737334585 -0.02991435108651785 0.5917962955772964 0.2828901231132477 0.6631637680147833 0.2958031617381494 0.1408792963084124 0.09751848359394444 -0.6276682929850494 0.3359286756316777 -0.6577430147217456 -0.0007892730282037519 0.2678114089976589 0.1156376311919303 0.3241820718249073 -0.1319456991441257 0.5508591583375164 -0.1518525125611632 0.04905105822399491 -0.1795752018515486 0.4497747421264648 0.1828669407113921 -0.00581558592239162 -0.493660849177104 -0.3262871342476501 -0.3278442526766412 0.231324056378071 0.1474264188627785 -0.4613867471866797 -0.2864867008543115 -0.03780753535102122 0.6796452967355435 0.1784542939585663 -0.406608013827281 -0.3884590017619303 -0.6726880719816108 0.1360044932594064 0.4084296305463795 0.06180246531584999 -0.006889695850986755 0.6799747774748539 -0.104083590909795 0.7506496403002529 0.5903357854767819 0.7887312402162934 0.3496678274459555 0.1587409727417253 0.6878886609320034 -0.009376981814515517 + -0.4113845468673389 -0.6557578322390327 -0.3175959008367499 -0.261715392334736 -0.2596751656747074 -0.1902855694497703 0.130318709416315 -0.6232939787441865 -0.3349693562704488 -0.2810374374275852 0.07504047315887874 0.04920007105829427 -0.4568393605659367 -0.4375306250972244 -0.5044401430832295 -0.3706275287058816 -0.1709689091408109 -0.1767731618019752 -0.4102677706614486 0.2598960582254222 -0.4467670362610079 -0.6102731875544123 -0.2240608088686713 -0.1229810512973017 -0.6855792275600834 -0.189707212986832 0.1605299989751074 -0.8968997616539127 -0.4573392196616624 -0.4143614233889821 -0.2684809321644934 -0.1985547166459583 -0.7072548967771581 0.03485977716445632 -0.3816588158788363 -0.1995807774246714 -0.3476007150350142 0.2393133507260927 -1.021435463557282 -0.2726094306581217 -0.7750261397495706 -0.532023210049374 -0.08710260420957638 -0.04808416229752766 0.139235379234492 -0.3132030828041934 0.08403414139432641 -0.4444868428868176 -0.1793544593674596 -0.3853497999616593 -0.5782101426557347 0.05879744240894524 -0.4513092820061502 -0.4607806548465305 -0.6055620359074965 -0.04132141513036913 0.1198750326784648 -0.2539367146382574 -0.07088745048679357 -0.7291319233576132 0.0750043583875879 -0.8366667423638319 -0.3812976172939671 -0.07828463636906235 -0.3097381464140199 0.08009356124966871 -0.6062387768652115 -0.007684840481033461 -0.6908975886581175 -0.5129094826552318 -0.7451495755449287 -0.3217062412004452 -0.4005501072388142 -0.5763366119317652 -0.87993823333818 -1.013121330741342 -1.055940689598629 -0.4029822115262505 -0.4498051610607945 -0.9471954568548426 -0.6997996322402287 -0.4909014561781078 0.2269818389586362 -0.1545502199983275 -0.5979389230960805 -0.6366970451331326 -1.134976243210986 -0.5957533422410961 -0.09571006249643688 -0.2775450145782088 -0.4577483133143687 0.0307260322260845 -0.2987917604568793 -0.00483717602037359 -0.2870378076113411 -0.109715720936947 -0.08807234256892116 -0.3275599109583709 0.1685821435021353 -0.5651932170247402 + -0.7845517498390109 -1.119987591067911 -0.6551228728640126 -0.4974588246841449 -0.6519689846754773 -0.4258245233359048 -0.2176161061070161 -0.7343036091624526 -0.7983867373841349 -0.6524440303437586 -0.623858485439996 -0.3746248310999363 -0.637558085451019 -0.6896994301541781 -0.7776178756594163 -0.6348482020994197 -0.7603278102137665 -0.6371911197547888 -0.6708485929029848 -0.4672224797868694 -0.5764462204242591 -0.8177501073987514 -0.6272461790504167 -0.419057828498751 -0.96265311424213 -0.6602430450366228 -0.2455378551312606 -1.222879902579734 -1.221022046427606 -0.8719794051703502 -0.6616210624633823 -0.7203550065778472 -1.026394661581435 -0.5376203543451084 -0.8987554948971592 -0.6857173609623715 -0.9064751439423162 -0.8734229018874657 -1.215266850249463 -0.9228178614293938 -0.8804039371716499 -0.8862049500235116 -0.5095666276470183 -0.8686482305213303 -0.5449209120105394 -0.9532748911296949 -0.4941975247318737 -1.257582517951732 -0.6123352633876493 -0.8499429567700645 -0.8112553644668878 -0.3656189625123147 -0.8316457335722589 -1.288527837249603 -1.199397997552296 -0.604793057693314 -0.08723823810578324 -0.6771962275051919 -0.3224554574553622 -0.797359423312173 -0.2227197859311332 -0.9218300079805886 -0.7044748726589205 -0.4513068243941234 -0.6237334307916171 -0.210982964199502 -0.9441107145612477 -0.4920900261008683 -0.887874400779765 -0.7807462036071229 -1.084268853024696 -0.8778802868619096 -0.7814785378286615 -0.8907317756529665 -1.071602182866627 -1.308123536804032 -1.495425718650949 -0.7905940100736188 -0.8936309612654441 -1.228704856615877 -1.014650284476147 -0.814302727543236 -0.2664267325276342 -0.5049095077761194 -0.7267877231338389 -0.7862723139778609 -1.209207118999984 -1.109096419776961 -0.5092861218745384 -0.5351118169710389 -0.8397855865059682 -0.5037762014180771 -0.4781372796878713 -0.6197633712981769 -1.031933121310431 -0.9198382881877478 -0.6035900348597352 -0.7296895424115064 -0.5149016268160267 -1.026522510923837 + -0.9288181530500879 -1.227741252820124 -0.8350307916552993 -0.6436677571400651 -0.8488571384004899 -0.5455860246001976 -0.4955819842871279 -0.738242336694384 -0.9460519273052341 -0.8209848624828737 -0.9249956110161293 -0.5778877516677312 -0.6127903468986915 -0.665988312483023 -0.6903384641127559 -0.747713274094167 -0.8732491062971803 -0.8615818789071454 -0.8045484327740269 -0.881805624030676 -0.5496808634288755 -0.8641874627865036 -0.8744083726742247 -0.5974921079754836 -1.096249902126146 -0.9381786533849663 -0.5389153934738715 -1.109967884620346 -1.454213365880605 -0.9183649692304243 -0.7297776055957002 -0.8834683091326951 -0.9298077320627272 -0.6427444889559411 -0.8797201773331835 -0.6949874797423945 -1.098721152411997 -1.174221229309126 -1.045086645118772 -1.151673836166992 -0.7549482999611428 -0.9681820969290129 -0.551306357645899 -1.146616476330792 -0.5616494712971303 -1.258218637234165 -0.8623788378883717 -1.537809550357451 -0.7798425789178509 -1.001120093839745 -0.8493933375270899 -0.5641544955886388 -0.9848942635858293 -1.3912495553177 -1.252852746277313 -0.8011039922034797 -0.2579307680534839 -0.9633573517603509 -0.5357952241422481 -0.7826162641289329 -0.4528495485414936 -0.8607552429357384 -0.8566384187110998 -0.6644088444663794 -0.7847769878644613 -0.5059490419371286 -1.006453717578552 -0.7746558912590444 -0.7626017645470711 -0.7477710068305896 -1.076598181585723 -1.003073458967265 -0.8244626190862618 -0.8098226667134441 -0.958934984071675 -1.072534322723641 -1.417401357884501 -0.7699076673998206 -1.007574456312796 -1.18704304085486 -1.076799343357607 -0.870432180117632 -0.5896064780940833 -0.7213984580721444 -0.7023212048798086 -0.6955455887987227 -0.9068803923119049 -1.199964463405877 -0.6546250756437075 -0.5957489394622826 -0.9817297546796908 -0.7381876120925881 -0.5399957796253148 -0.9003775743076403 -1.271319921623217 -1.24195575322301 -0.881601777709875 -0.7581875021551241 -0.9076213094799641 -1.140215067802441 + -0.7420099615192157 -0.8476786774190259 -0.7095197881499189 -0.5879182136850432 -0.7195504275914573 -0.437376681882597 -0.5448742451699218 -0.5612573021062417 -0.7058909543520713 -0.7113288672353519 -0.7667165764341917 -0.4901388373036752 -0.4273335360030615 -0.378269728917985 -0.3378949342945816 -0.6209289637085931 -0.572958907677048 -0.7394730806699954 -0.731501448133713 -0.7971528796879284 -0.3445330174090486 -0.6380174952792004 -0.8141512060137757 -0.5015579111920374 -0.9997184638195904 -0.8851314175190055 -0.6137996246179682 -0.6271758629354736 -1.100733097887314 -0.5696283769475485 -0.4530373638604033 -0.6218585843239453 -0.725158687070234 -0.4096617121558666 -0.6495604483229727 -0.4507359759081737 -0.8059110777998058 -0.7414287954213137 -0.6487696644210246 -0.8625473023512313 -0.421768518969202 -0.687096725655465 -0.134334794433471 -0.8127763814304672 -0.1963253473113777 -0.8329708480785385 -0.844829198318287 -1.175685827526422 -0.6114513260636159 -0.725770687084605 -0.6857220106974182 -0.4620038535979916 -0.8200427292208587 -0.7835673262034106 -0.8185812407825779 -0.5965864447275635 -0.3494330118792277 -0.9761919973134354 -0.5816704677440043 -0.6598883194060363 -0.5278676025636386 -0.6350538821520786 -0.7773882240353487 -0.5655641086432297 -0.7277218745039136 -0.7028341982422717 -0.7514632190777775 -0.8098649268622466 -0.4637781660558176 -0.5288032907410525 -0.7669933403703908 -0.6980776461714413 -0.542795896770258 -0.4244226054634055 -0.5716024952416774 -0.4772733449176485 -0.8439790483050729 -0.3808122569334955 -0.7915768171792479 -0.8387458780084671 -0.8408660323925687 -0.66253587510937 -0.6128260786176725 -0.7133566836491809 -0.5174090459347553 -0.3410770899322415 -0.4243182341556349 -0.8908497838102676 -0.4949378126912052 -0.4577888122294098 -0.8172366471371788 -0.6392554205031047 -0.438519319959596 -0.8302110517688561 -0.9384679049580882 -0.9868496669078013 -0.7406229347770932 -0.3886252691872869 -0.7721706291324608 -0.8389301184039475 + -0.2864469197847939 -0.1659134539149818 -0.2355685658694711 -0.2718676560252788 -0.2150302255831775 -0.04032435492263176 -0.2759974737782613 -0.1845377991558053 -0.1792104553242098 -0.3789975227828108 -0.2713026433511914 -0.1519836417246552 -0.1875605663262832 0.06463507588728135 0.1009617001907372 -0.2167616705992259 -0.1278679886551686 -0.3312482045005254 -0.4497076928892056 -0.359096461072113 -0.03849793697281712 -0.1314414374191983 -0.3841372395654616 -0.1387766107615676 -0.6416949298218242 -0.4745605618991249 -0.4615339296287857 0.034719859910183 -0.4089611057002003 -0.06216163269982644 0.01372012385445487 -0.01732835921416154 -0.5149577397501162 -0.0127201644811521 -0.4238403626143281 -0.221312932423416 -0.1324393530494206 -0.2274836963258196 -0.2405472255972541 -0.2472566305200417 0.00184580437871773 -0.1299946411986639 0.5047928334513472 -0.1728158605334897 0.08246339317840867 -0.3754560594528589 -0.4320765793478394 -0.3924673577970168 -0.1656623773969841 -0.1223537767593825 -0.4161023672043029 -0.1237769295096598 -0.3644824607267765 0.009697040849232508 -0.1749675653591112 -0.113898234176304 -0.3105292531181476 -0.6256312817276921 -0.3354584598627071 -0.4247321927107919 -0.38536788129489 -0.2456158792683709 -0.4433718511961615 -0.08009689637583506 -0.3657957471732516 -0.5915969079924253 -0.1867125954195217 -0.5774606152890556 -0.08080158748316535 -0.1431971908150445 -0.3101746861466381 -0.1180010412354022 -0.05755822660285048 0.05431949427838845 -0.04906982155080186 0.1865885302831884 0.001027701830253136 0.1814642144781828 -0.3636420514621932 -0.2749845429300422 -0.3579765314161705 -0.3018023546377435 -0.3081702938766284 -0.417440651109473 -0.2241992255108016 0.1850528181475966 0.03111498962107362 -0.3809580522107581 -0.1212828420202641 -0.2068508652173477 -0.376062844230546 -0.2850131831764884 -0.1825413106762426 -0.5313201181415934 -0.2727114862464077 -0.4178791654612724 -0.207638024717653 0.1414165552250779 -0.1847021227678169 -0.2157754935867495 + 0.2192926994512163 0.3977127766047488 0.4918647776576108 0.2822561159227917 0.6036173405682348 0.6350405866760411 0.3081270487382426 0.3545683110351092 0.4027807353540993 0.0217742992190324 0.3836191640984907 0.3287582991251838 0.02300735517383146 0.5616797017166846 0.5006832878563046 0.4124776095127345 0.5106428275004333 0.1845073663581616 -0.03284569289098727 0.1430565381288034 0.2456955057068626 0.5600105378589433 0.3710719709906698 0.3237467352911949 -0.05103959095140453 0.2034783221388352 -0.164450636922993 0.7077776508813258 0.257987894404323 0.3625904167888621 0.4543328381209903 0.828451959922063 0.007747249454496341 0.4589450743410453 -0.1485460781287884 -0.1087784911776453 0.6929654397258531 -0.102978697133004 0.1119195292475581 0.3344350669542564 0.3516604562719294 0.4614499745821377 1.016734632645296 0.389826999558025 0.1739130780283118 -0.1414694327739995 0.2140265191501625 0.4507225475639274 0.4228350014313946 0.6050236150032333 -0.179630525686548 0.3089792290811602 0.2544272609918607 0.3464532064939476 0.3412128951337081 0.4475922961721608 -0.0842083030406684 0.1131193675464601 0.3010270384868932 -0.08737704816860514 -0.01181753124223661 0.2780389358447337 0.1213073885101039 0.7312231604091721 0.2935109194095276 0.02170241829935549 0.6468153900796096 -0.06092543756392388 0.42358984514658 0.5551621045933643 0.116569063240604 0.5293943358847173 0.4725613489463285 0.4479304617452726 0.4230154779215809 0.7454872660364913 0.8204319702076646 0.6667621887145287 0.1343836560886302 0.4125355236525365 0.2623912292301611 0.06042968648671376 0.2560564328421151 0.2153055735336125 0.1128580518371791 0.7298541283430495 0.3957502777315085 0.08329576615682299 0.3091844109321755 0.04745000478669681 0.2586772824170112 0.2188529117720464 0.182915752901863 -0.1712295622328384 0.3263512301427909 0.004973205902388145 0.5119315247545728 0.5132267231113019 0.6053289147864689 0.5349823363785747 + 0.4858175687622861 0.4619618239330521 1.252849723688996 0.9671400851038925 1.568365386081496 1.501354451342195 1.112534611122101 0.9761730569662177 0.7647442257739385 0.304266488428766 1.094965990864239 0.8346446315117646 0.1893228445294426 1.076049233956383 0.8375419939354174 1.112427097163504 1.719749401641778 0.6108144531447124 0.3955273492811102 0.5059266126734201 0.4107243072617166 1.278590321557203 1.3168009966721 0.6754525478807523 0.692828518072929 0.9769402986039495 0.1418756291823229 1.278913112451391 0.6116988640910677 0.6179461192219833 0.7222182247376168 1.836745786014831 1.138844375257548 0.9172379664967991 0.2282961487097168 -0.0623862025985602 1.478602361770193 -0.1585214593619106 0.6164584701509312 0.5653344845380843 0.4826882291803258 0.8002395326923306 1.231382334174157 0.7370700305957527 0.3632547375416362 0.8524050461806326 0.848953386887215 1.103740174759473 1.00852494635933 1.288542709110061 -0.07556024903482239 0.7100541235380575 0.8591571022807329 -0.005991439601302773 0.504702628142411 0.8965634718883848 0.3546606735653768 1.182306804381369 1.370691717594468 0.3319450800348704 0.5307735958649253 0.8538437063982656 0.818735743166485 1.647667076621474 1.05265584856943 1.11081211828423 1.649967525516786 0.7217419668720595 1.125517942084571 1.745856350144095 0.3899784431778244 1.071406629067496 0.9155028508284886 0.711822446809947 0.6816062222223991 1.204394378437655 1.370485176491684 0.8702468109386245 0.606559603038022 1.167303471800778 0.8945595546425125 0.2943586083408718 0.9406117282610467 1.162958127288903 0.458768202135218 1.153834094394369 0.7496820427535908 0.3446456998029248 0.6558488239807048 0.2419227461487026 1.004199774461085 0.8180680675086478 0.6038833387392515 0.1350651247230417 0.502113952664331 -0.1159798706853508 1.137617895578273 0.5504010525482954 1.376200259288694 1.19729529756701 + 0.2883971906767329 -0.03633266523320344 1.766867937203642 1.618916506136884 2.449930130971552 2.409783473987773 1.97549870012881 1.581615467744996 0.6897742134387954 0.3245973231851167 1.9022448289561 1.292084969356893 0.3646266555811053 1.616846891034527 1.171077345348237 1.678381160505012 3.525770299032343 0.8143490581408059 0.7019843121338454 0.6682920829541672 0.4185825680676771 1.857394869878135 2.271974159736601 0.796523354015882 1.480323523224797 1.650435451965677 0.3209207541331125 1.611729234223958 0.5069083982419897 0.7476493545183871 0.812412332874942 2.886201609470902 2.693295929090837 1.205945626118833 0.5158464349496228 -0.02811364378095504 2.17476842463196 0.1780225508047577 1.557186589318839 0.3462781304537543 0.3298940343206596 0.7075416399880794 1.262726521524371 1.014505053608374 0.8814665307916856 2.232094750506509 1.272539762982006 1.576913059071302 1.476210204170684 1.854400174618092 -0.1042501265906708 1.034256797669009 1.281889552225039 -0.6257080383636264 0.2970557003893646 1.117145168446768 0.9586135160925551 2.435784446131038 2.834070675805691 0.8049247378617963 1.09883828480125 1.337877653130704 1.470640441872661 2.341907164009172 1.583234642605703 2.340851062267802 2.644302811274201 1.672837390856841 2.008081188336519 3.445740213677936 0.4768593382032122 1.41312530052528 1.200117092103028 0.9363074168559251 0.6337815993356344 1.610773761866241 1.521633239455014 0.6870286567445874 1.012382323701331 1.948551739228719 1.426838147799344 0.3219609956765339 1.572443621162847 2.247156268446986 0.8218420481541671 1.385211822633494 1.170546921337973 0.4038229243157616 0.8615157232770798 0.4038482612022563 1.816561313546117 1.543316980457348 1.043043637936535 0.3821597087762711 0.1020987275892367 -0.8978748874828852 1.438228660910397 0.3382194591878829 2.059733285285297 1.66871875392662 + -0.4111493443731433 -0.7614124330027607 1.789799021780709 2.073798506820822 3.035603469073976 3.185616625776674 2.712526034178154 2.080279721567422 0.1055726001436597 0.03817037613271168 2.965237778406731 1.703425171626805 0.6400788220624918 2.18272664835294 1.607381012929878 1.95599312818041 5.209547020863311 0.7522003158604207 0.7838509898783741 0.6270673675209082 0.2738041132358831 2.160079624931541 3.062356736834772 0.7152744440219863 2.196219440869754 2.064309913992474 0.2808506945693807 1.491969289364874 -0.09736924598246333 0.7799256811626947 0.8406270057788561 3.739176527848372 4.077330389124931 1.195687045853102 0.403868069315795 -0.05721219527741539 2.824285623996525 1.146182185430201 2.905794157522545 -0.1716602854885991 -0.06257776147458571 0.2217320126996185 1.335872843604971 1.395333379330974 1.533375326513399 2.173274442589804 1.409050554318793 2.030846476802572 1.747577256279499 2.279100079409503 -0.169380013485636 1.319273101339874 1.412544365237068 -0.7209763713367465 -0.1074391636027912 1.10454888379769 1.600099334099809 3.654273977587764 4.556008099760561 1.294737938741974 1.498294169090757 1.553104565022977 1.85876134332517 2.504873288228509 1.625902567870753 3.204471329222997 3.40146729978801 2.609518982805668 2.915929340749983 5.429820594469788 0.4237594521664505 1.535169798127754 1.316161268206997 1.266513141780138 0.2705567305738441 1.902965702518493 1.244304057352139 0.1091140005210036 1.325870007892036 2.684560476103513 1.775901112320952 0.1166741306355448 1.986215770442698 3.12304855063077 1.23559195420296 1.430804321375717 1.592732168084396 0.3894290589596494 0.9746630612319223 0.6474535734141682 2.697201442542337 2.483961507502499 1.494664332275079 0.6688031998664883 -0.7666512411863096 -2.110480383201548 1.323032216807945 0.1658381587043607 2.725636756478131 2.05845626539378 + -8.022023854473446 -5.231839340785882 -4.264481602680462 -4.922319909273938 -5.331619557960948 -5.123171199396893 -4.547232043929398 -1.954097203830315 -1.331776236360383 -2.693918259139537 0.9591554051885396 -0.4973070092055423 -0.5537775950779178 -2.299920743059147 0.7203662876979706 -5.075021023989848 -0.3821912496020161 -3.522688834672635 -5.997413075787335 -6.229049929836947 -4.464974715062453 -7.997793126463876 -5.456895718929445 -4.458976572190039 -5.997566327125242 -5.700686064858019 -4.513116694230121 -0.8191434964674045 -3.110007080449577 -5.459370797925203 0.3482730976866151 -1.454128566538429 -4.743292773498069 -2.123114320671334 -0.8781472830398798 -5.558931498133575 -3.047457583584304 -6.87161740131603 -6.209531117687561 -5.581040363357715 -2.658624180789502 -1.110475356422626 -1.08854182873813 -3.200174594678543 -1.602420564537376 -1.087180997960359 -3.551062256013342 -2.289863488628924 -3.631047590877643 -4.299398392248804 -4.557404737139677 -5.977194913126084 -5.713247419452955 -10.87800482114903 -7.048880882360663 -5.650049681555629 -8.847141039240341 -12.60703065142843 -9.306812716930381 -9.53303370847101 -10.10388851332318 -8.74312559376267 -10.55751871308871 -10.75704046944884 -10.51329162252568 -11.60880094272216 -10.8174271621474 -10.99960200349688 -13.27083873778111 -17.51153215843078 -10.24781260738746 -17.13157310894167 -13.63774556393764 -16.91665568467852 -13.47290618319312 -13.48571771217087 -10.29070284892134 -13.33198658470064 -14.50360171098328 -10.99051312405936 -10.89134605874006 -7.995636772956459 -11.15194942039034 -10.27244390179408 -14.14674138390581 -7.840674748154015 -5.971088475370834 -10.9245582147413 -11.45169574056854 -9.897929410994038 -11.6250375068812 -12.23039071912353 -9.045451920108462 -12.26293683427502 -8.535303307789945 -3.279389629340585 -5.778060333873327 -7.183183742690289 -1.601722438219667 -1.083717082991099 + -8.394559897211366 -6.621771598449413 -5.339776460765279 -6.054705205373466 -6.432010103821085 -5.800367824624118 -5.8218662850486 -3.195726936282881 -4.715476679160929 -5.297512628119875 -2.54415273502309 -2.619775837938505 -2.232509204622147 -3.42539149460913 -0.6102280854565834 -4.940809409725716 -0.1976349080113096 -4.254483515774382 -5.780079134332482 -6.595475320640617 -4.765245017380948 -7.468909005123351 -5.462114287231088 -4.964804562410336 -5.550950840915903 -5.650137467288005 -4.898093830051948 -1.884024990757098 -3.715225164525691 -5.75728028582671 -1.753428765934132 -3.206823925016124 -5.888443877215195 -2.85210482450475 -2.045281403127547 -6.985409323253634 -4.157960809156634 -9.108304147942647 -8.73788307664563 -7.215546190620444 -3.607468451946261 -2.357280623692304 -2.289861218359874 -5.45722083388705 -4.482609998884028 -0.8879683297362675 -4.375480835321635 -3.956948597405017 -4.125180843841918 -4.323576194191901 -4.814356875663862 -6.150659302896031 -5.777537927061076 -9.572494200922392 -7.253990544797716 -6.620380518322236 -9.089090193275297 -11.39740422688919 -8.429074375661742 -8.092913361303772 -9.206785716260235 -8.104561064283189 -10.19261685101856 -10.30050627390119 -10.27152674562058 -11.18721170123899 -10.35751272469315 -10.59623324869585 -12.05339475458914 -15.66703330073506 -10.1360030027281 -16.40441678639036 -12.27230262986268 -15.91072055337281 -12.22952286410509 -13.45681988635442 -10.44554428263791 -12.3208459555608 -13.8016439569119 -10.26396379491985 -10.34568223533779 -7.906504029082498 -10.79955312531092 -10.07172640129102 -13.00252608140386 -7.909367377252693 -7.97426972014091 -11.48411408912386 -11.55399323793335 -9.787327995212763 -11.25957462880433 -11.88113982284267 -8.509856261427558 -11.56715229761903 -9.357122279066971 -4.686129875988627 -6.785545579505197 -7.192673226053103 -2.172916919263798 -2.392256452328999 + -8.010464746943398 -6.925433067757695 -5.586205766565399 -6.158725598113961 -6.416025117981917 -5.623808301730605 -6.118800670825294 -3.693647183579742 -6.48787470471143 -6.493234011162713 -4.7898028798827 -3.994122554337082 -3.441746239470376 -4.133834387127308 -1.848302962378966 -4.56107280258766 -1.542758776663732 -4.685757127732813 -5.229296368190262 -6.348356451377185 -4.600208162441049 -6.510004281106376 -5.053563034427498 -4.758130481695389 -4.785722772190638 -5.18824034116551 -4.828839653338946 -2.962493862858537 -4.266898243521609 -5.87630421591075 -3.283419769154534 -4.310044248229588 -6.03368655223403 -3.526614542503921 -3.30340449631467 -7.963052036519002 -4.73205157746537 -9.509135734493782 -9.420021895212471 -7.965342691602928 -3.94736978013816 -3.328756250715514 -3.428186071053915 -6.619910373112702 -7.721827710171667 -3.464255647777975 -4.617559233711237 -4.968282635866672 -4.260392183769909 -4.233457239138716 -4.748303622832736 -6.002507361075345 -5.448955806338745 -8.058339250653262 -7.05591385526759 -7.093927617589543 -8.61073542059421 -9.634778043040569 -7.226262240413007 -6.477817237284683 -7.88954489256372 -6.990916955619468 -9.167015227331376 -9.286648059209256 -9.390435183779118 -10.25783523517021 -9.3603622999035 -9.667552418506602 -10.51817215020219 -13.39053277833409 -9.263626270832901 -14.82411832141224 -10.35545520509913 -13.97840686436393 -10.33935525090055 -11.86092209487333 -9.783044099561266 -10.58701964391003 -12.30364528745395 -8.970934197698398 -9.182345994431671 -7.206814603380053 -9.711016332681538 -8.647055167427652 -11.04612096136839 -7.306403794432299 -8.455383279116177 -10.88039652131056 -10.61847656656028 -8.859775524882934 -10.06312121637166 -10.61308942907635 -7.462840657042761 -10.13520327375591 -9.375047030629503 -5.432226175580581 -6.924534172580024 -6.58293787290313 -2.915750439444309 -3.434544175210093 + -6.89859080430324 -6.177841619522951 -5.056266672574566 -5.394652293907711 -5.449408069427591 -4.773524947479018 -5.55774637106515 -3.538196134511963 -6.621153741773014 -6.348562338251213 -5.546421644074144 -4.390084847607795 -3.905870135136865 -4.299819212043076 -2.729845615318482 -3.902717400301299 -3.675587090545378 -4.599673780044213 -4.383700693999344 -5.43724814502275 -3.999620662089001 -5.274716478259506 -4.278233898705366 -3.937156435236147 -3.788884414214408 -4.357634836967918 -4.290572220648755 -3.641281201813399 -4.489064508446972 -5.659371803971226 -3.972846844276319 -4.66514318195641 -5.730211618280919 -4.128077559133999 -4.517213070740581 -8.169458559365012 -4.861534302645509 -8.410930093193883 -8.385559729849092 -7.678685865496846 -3.665563855025539 -3.737701343018216 -4.083305003465284 -6.393898194427493 -9.304467109190213 -6.238184012710633 -4.20215288713036 -5.043510535290579 -3.956599998760794 -3.919716833386701 -4.257122167765374 -5.373649254320583 -4.700454094891938 -6.540660349709469 -6.312171180394671 -6.751042592944032 -7.400198935047229 -7.493108987793676 -5.787229391393907 -4.838296290403036 -6.236303890627767 -5.51596636330305 -7.514167808417369 -7.718786391029425 -7.75141320691182 -8.74264997789578 -7.790360317379964 -8.069068050868736 -8.54066895242795 -10.69104706177677 -7.624171733310504 -12.27217296784511 -7.986604055709904 -11.29137415569494 -7.991835602024366 -9.121981512554612 -8.317876155488648 -8.263605553389425 -10.05845000487898 -7.178705601355887 -7.485687503433155 -5.982236724173617 -8.009282796740081 -6.64827566099666 -8.624297940579709 -6.159814142503365 -7.422271315614125 -9.200328312218289 -8.786702799867271 -7.253100357345829 -8.190786919465609 -8.558111014943279 -6.018342532468523 -8.04206388966486 -8.487317007078673 -5.331725440752052 -6.186574785302582 -5.482667011094236 -3.482876859272437 -3.706285744342551 + -5.253466980273515 -4.709411389812885 -3.956736714739236 -4.074152490895358 -3.885426884116896 -3.514113432000158 -4.374281346274074 -2.907542326494877 -5.438954746241507 -5.173186481828452 -4.912600118357659 -3.828838010264008 -3.559622000622767 -3.853005081664378 -2.971206824920046 -2.966014771363916 -5.043493145759385 -3.927932629472707 -3.331682691255992 -4.041508174559567 -3.095220407591114 -3.940591770991887 -3.237047749003978 -2.805337584885706 -2.68116129860573 -3.255095725260617 -3.356105323735392 -3.57498150113679 -4.123087027805013 -4.9232077558936 -3.747443302971078 -4.238878801344981 -5.100288724563143 -4.233945030589894 -5.043385647142713 -7.269889599793714 -4.51867813861918 -6.600389026027756 -6.276709856367688 -6.425945569024407 -2.904201298353655 -3.460494324150659 -3.991045377872979 -5.11434128964811 -8.369724506521806 -6.117774278614206 -3.22417846596737 -4.329303732639119 -3.197028865404718 -3.306560874250863 -3.363614044841142 -4.246342368814908 -3.601300794539384 -5.024409067793385 -4.944592285079125 -5.50031391075845 -5.633016423327717 -5.218953853334824 -4.248260260621123 -3.321727641263919 -4.41141761122401 -3.872632425767733 -5.422271157974137 -5.71830655224403 -5.480684411897528 -6.691733735518937 -5.762881705602922 -5.89911160533984 -6.120243098604988 -7.648616236194357 -5.43847108821501 -8.958858683356084 -5.391769168607425 -8.146794588305056 -5.47401946602622 -5.988067472264447 -6.241171061469231 -5.620776558156649 -7.301870538194635 -5.074695465079458 -5.457823135902345 -4.387129738321619 -5.909226977877552 -4.628790040339936 -6.097361458399064 -4.67302609353419 -5.335338320414849 -6.750458441965293 -6.377248314855024 -5.231204240459192 -5.919198619194503 -5.992115334873233 -4.365030741379087 -5.505762443597632 -6.77403640904231 -4.419597383806831 -4.838819673170292 -4.102549922597973 -3.489542746818188 -3.174834233987587 + -3.385650645705027 -2.974367843475193 -2.581619771503028 -2.563003579140059 -2.148229314778291 -2.132502675362048 -2.869352677473216 -2.027980040911643 -3.503420319982979 -3.428232658789057 -3.272601675627811 -2.569575204091961 -2.568724885699339 -2.852278340698831 -2.448201500879804 -1.843325903012556 -4.653851799844233 -2.788923921482819 -2.204642115630122 -2.490111280741985 -2.072650553225685 -2.664710845307127 -2.073079095032881 -1.697559204517688 -1.598593570088269 -2.026542157749645 -2.179203784246056 -2.733635908698488 -3.087540227283171 -3.637940263413839 -2.771757174125014 -3.136769826382078 -3.914781484203559 -3.391891280593882 -4.243474440319915 -5.227101101054359 -3.60191979806973 -4.56191067773193 -3.812988713408686 -4.49055619216233 -1.908551359457306 -2.594912176441539 -3.149617530144496 -3.30731866588485 -5.667170922538673 -3.649691791345049 -1.914158373440614 -3.135719322991008 -2.078217775922894 -2.400127219142632 -2.222648126379681 -2.77021997962629 -2.314744142174277 -3.392731236697728 -3.073175798862394 -3.572331671007305 -3.640302298990719 -3.080959172031726 -2.765570972565115 -2.04780425240574 -2.633816134737359 -2.305651831189607 -3.221687559173915 -3.549276317451586 -2.997772765593254 -4.362375421609613 -3.557054664986936 -3.488905890414571 -3.506749687492629 -4.523869402335549 -3.099538931994175 -5.377140531229088 -2.895001004944788 -4.955285401796573 -3.117619413649663 -3.15440505146762 -3.903166467270694 -3.025465768918366 -4.426884630972381 -2.952972521962693 -3.386832570887691 -2.652000638800473 -3.694495095798629 -2.858279588483128 -3.777773419020377 -3.087212547205127 -2.901836732695301 -4.00185685028805 -3.816279273742111 -3.132880103381467 -3.596006759835291 -3.307498274625686 -2.726811721431659 -2.875290224081255 -4.499945176830806 -2.905467225522443 -3.237261425227189 -2.646297476587279 -2.797976685480535 -2.153016404173592 + -1.63502682663966 -1.367809654722805 -1.232462451953324 -1.185056915128371 -0.6141469332796987 -0.8805642557708779 -1.351682043925393 -1.127247613549116 -1.448476457146171 -1.608468558817549 -1.208963508528541 -1.029290171150933 -1.276942628293909 -1.536702265499116 -1.346443156720852 -0.7256148536534965 -2.833414498561979 -1.447047166676384 -1.156262266049453 -1.05576863301394 -1.112860860856017 -1.561948350230523 -0.9526163185946643 -0.8141666291622869 -0.6705225478071952 -0.8496525195878348 -0.9659025948058115 -1.447630312679394 -1.573047072732152 -2.015971644417732 -1.414405601966791 -1.644387039870708 -2.141015793560655 -1.651393988844575 -2.185526967823535 -2.513324238381756 -2.168017709452215 -2.358560200669217 -1.574933476249498 -2.3152935695216 -0.9508327340481628 -1.428194031675048 -1.820860411142348 -1.373544676196616 -2.497576436323698 -1.412524812792071 -0.5651675228237423 -1.704015386354058 -0.8235709786749794 -1.314704300709309 -1.072699848997217 -1.222737479875036 -1.063560912178218 -1.616431705528157 -1.063484672514278 -1.45805205034776 -1.802596015984818 -1.312162505935703 -1.482330758867874 -1.089801397932888 -1.121195396592057 -1.048361166800532 -1.294253367280362 -1.559473117024027 -0.8622654661157867 -2.170843903273635 -1.551066808191536 -1.285223079509706 -1.163239758734562 -1.753930364175176 -1.050518753349024 -2.143741677078651 -0.8401739786204416 -2.175891044091259 -1.225037434065598 -1.023633124953449 -1.739634519275114 -0.8596429099379748 -1.885819727848684 -1.147011581250808 -1.580144731987275 -1.059123888457179 -1.670273717314558 -1.394530488193595 -1.894730747558697 -1.64340573253412 -0.807807578219581 -1.482382447106829 -1.536080234007386 -1.295963543081598 -1.566659069547313 -0.9352736629007268 -1.31341598160725 -0.5609134711121442 -2.08783725406829 -1.122099360531138 -1.667423595597938 -1.266435094352346 -1.627287322005941 -1.001471126740523 + -0.2814155578198552 -0.1371955591748701 -0.1519425751030212 -0.1575816733966349 0.4690665386224282 0.06476145956548862 -0.08401072297419887 -0.3907682264398318 0.1894462697673589 -0.1282570678813499 0.6391417578233813 0.3442221361474367 -0.0913447083257779 -0.2809178405605053 -0.1344559608387499 0.1631456545164838 -0.7091526382992015 -0.2215417348570554 -0.3301280214436701 0.1456911596178543 -0.3546196606766898 -0.708940678217914 -0.03858912821306149 -0.1845966871147766 0.00276562113140244 0.09757690830883803 0.07175906028714962 -0.2308792482290301 -0.009830749037064379 -0.4517121677563409 -0.132033122712528 -0.1796789734435151 -0.2486598914874776 0.317451908991643 0.2164968908746232 0.01165238259636681 -0.5749863057940274 -0.1077449929223349 -0.006415247956283565 -0.4008259403544798 -0.2525958575879486 -0.3255537458576327 -0.4293293082246237 0.3640736517063488 0.2056776060762786 -0.2545235957149998 0.5484638822172272 -0.2573867527330549 0.2716508380617597 -0.2609089713951107 -0.1526380758368759 0.08112403018026271 -0.07089189454381994 0.07922107482590945 0.5824274095321016 0.2889674321995699 -0.4165661717706826 -0.06301053638162557 -0.5006686120158292 -0.4659387201229492 -0.02769311670729735 -0.2479066171808881 0.05866776473067148 -0.05934823703137226 0.4962976123497356 -0.5183698783293949 -0.09290833636987372 0.3206572779026828 0.4354900673824886 0.200787278226926 0.3597462563120644 0.2121642939164303 0.5127188317273976 -0.1985075847405824 0.005779055783932563 0.2791685731126563 -0.1527390475289394 0.5832532287968206 -0.05516514335795364 0.07286352006894958 -0.2822011617536191 0.1252227313129879 -0.09919737760719727 -0.2581012148084483 -0.5769988798988379 -0.5425731144559904 0.4963016521560348 0.3600627510386403 0.1299319954523526 0.02359951897233259 -0.09624233380600344 0.7666978287816164 -0.274647883779835 1.079609519227233 -0.0362806144694332 0.5210347823231132 -0.3214334503136342 -0.1009213721772539 -0.3708931165820104 0.01611824309226861 + 0.5171126548048051 0.5989238475449383 0.5152718536701286 0.4295890744833741 1.008243662887253 0.618880317240837 0.7582059511478292 0.070196911576204 1.095789473722107 0.7620395404774172 1.764198846231011 1.210435217479244 0.6633752555535466 0.5537937061490084 0.6694671528184699 0.6640247773539159 0.7697253208825714 0.6149334418241779 0.1763917645730544 1.048277196045092 0.1176439734008454 -0.1553731774984044 0.542210843974317 0.2372477890811524 0.3688234146102332 0.6781801321849343 0.7684964626387227 0.4834316852138727 1.098492327677377 0.6427879473303619 0.691954639276446 0.8351012186194566 1.040171372773329 1.654192085990871 1.809330626409064 1.536032965681443 0.6549202085261641 1.694563717061101 0.6428577257411234 0.836342005584811 0.07423493298483663 0.4098983831740952 0.605743634114333 1.545468533897292 1.901089519344396 0.2986961928327219 1.234187206134159 0.8571456150502854 0.9503188668713847 0.5123788525743294 0.3806189599745267 0.8963438347328747 0.5056914183669505 1.263973283010273 1.451200496855563 1.282456597247801 0.3980522307992942 0.6215128352159809 0.1335340453385925 -0.1424606151631451 0.5953694354731027 0.08216859614185523 0.7204391853092602 0.7909989129002497 0.9806286825332791 0.403145737691375 0.6370786023253459 1.138336076728592 1.054433975161373 1.088883940297819 0.9871008740956313 1.427402747765882 1.074904070963385 0.7869490269804373 0.533320318791084 0.7758861739257554 0.6192027985202913 1.189314490609831 0.8846253905649064 0.5945174210846744 0.3943590517146731 0.7399477692033543 0.860572420329845 0.4852594373096508 0.1542837590818635 0.09682671531936649 0.893419979045575 1.282913849478973 1.02484795566852 0.7133217008777137 0.691246859041712 1.618749984474562 0.3290422618229059 1.856777189161221 1.229355046918499 1.620792785186495 0.643875607096561 0.6816681287818938 0.6386699782378855 0.6930718054492253 + 0.7462915545474971 0.803503746210481 0.734586440215935 0.598344052064931 1.045226857953821 0.7870333193714032 1.110091872833436 0.2323366729251575 1.226994302116509 1.011936446779146 1.961823152189027 1.437215494202974 0.8648142469173763 0.7924706842827618 0.7939051246448798 0.7474904486616651 1.26145351069772 0.9196841342982225 0.34042990296075 1.505137196967553 0.2805382035294315 0.08020535057585221 0.7321829485008493 0.4629816533566782 0.4340720082982443 0.8363951733190333 1.049478621120215 0.5392657398624578 1.411901974683133 1.022956531516684 0.8883223586326494 1.144070833914157 1.279398171980574 1.89365344037833 2.012155675880422 1.759410923546966 1.148573931819101 2.430722922363657 0.4612602756342312 1.206895760249608 0.05146957797296636 0.6421490871407514 1.031947463581673 1.877374938439061 2.3194759083176 0.4878721288714587 1.415440727256787 1.262111651137729 1.101761643400096 0.8155517885770678 0.5008735539813642 1.132733870973539 0.6239564514889935 1.569204013412673 1.426979574046527 1.444639581564843 0.7057969037268776 0.7970977533259429 0.4310593064673185 -0.046887905392623 0.7985887146327855 0.05430984440317843 0.7797009437235829 1.021132826150279 0.8223788839022745 0.6855045844131382 0.6960288124973886 1.230378565887804 0.8357678544380178 1.026125069060072 0.9247006286968826 1.577585103543242 0.9597061608365038 0.869858733327419 0.4810486284695799 0.58692502876238 0.591001831433914 1.064518624050834 1.002549665605329 0.5047796904741517 0.4968231164325516 0.7931369217922111 1.19240397998783 0.7805646327205977 0.3821126901352727 0.2738015809527496 0.5793937564303633 1.316908575754951 1.195140737063412 0.8252187014149968 0.8364828183075588 1.671062666653597 0.5319601070696081 1.814482500347367 1.525884808375849 1.921000342168554 1.097388944068371 0.9339983255122206 1.181312948543564 0.8692963026660756 + 0.5238554916286375 0.5259243756154319 0.574467705344432 0.4486877955787349 0.7155849222908728 0.6485511743812822 1.019989010121208 0.1540127257467248 0.778349162057566 0.7537443487126438 1.391341154871043 1.123355497358716 0.6233394299233623 0.5285062110533545 0.3593552094789629 0.5086233960118989 0.8983097859199916 0.726846361247226 0.2230334488012886 1.367240856947319 0.1851736591524968 0.03377619098318974 0.5656075954248081 0.4606184176022907 0.2635894181730691 0.6213681509689195 0.9497230547203799 0.1014353100690641 0.9390747017205285 0.7368008073717647 0.5561889405817055 0.7932308227827889 0.6486452725966956 1.228421163783423 1.151166741370616 1.041446019843534 0.9007415255987326 1.902110724078511 -0.1503983493739725 0.8259616056511732 -0.1846235553593942 0.4323433059162198 0.8537800377971507 1.357271108117857 1.629116076996524 0.3967439386801743 1.142207230409035 0.85290746781493 0.8069420959036506 0.6218325153204205 0.3114622619777947 0.8842690179862984 0.371250539882567 0.9825801434490131 0.7515493847204198 0.9963388324176776 0.6828352789325436 0.5944235475581081 0.4489828861320575 -0.08727450615640464 0.6994470648760114 -0.1512329212955592 0.4624518137088671 0.804638315916236 0.3926300497041666 0.5995445512598963 0.3360108541273803 0.8509056959746886 0.2177918553297786 0.446506576568936 0.4469320876232814 1.018037017609458 0.439981857809471 0.3914369808408082 0.09541091760183917 -0.01864577018659475 0.03063120786646323 0.5001794279232854 0.5775886690807965 0.05161012031430801 0.2077778572788702 0.4597522062622375 1.018670632327485 0.6741223506496681 0.2715575990282559 0.1124703122386563 -0.04939739148539957 0.7436461220165711 0.8585045798317879 0.5470969383168267 0.5220545879674319 1.174520879802003 0.4441689049981505 1.209750712019741 1.006752738067007 1.450243622806738 1.011322634596581 0.6680647543453233 1.140402796263515 0.545409842795145 + 0.06438163105485728 -0.04783060253976146 0.186906778573757 0.1246887861634605 0.2072195557775558 0.3344463047251338 0.63145625226025 -0.04856610729621025 0.08838203724735649 0.2398602364846738 0.4763213162368629 0.5334577194735175 0.200063893393235 0.056196455528152 -0.2353103283294331 0.1136617823858614 0.1062146570170626 0.2384443169485166 -0.0460527079703752 0.7156033278879477 -0.03980235612107208 -0.1840052300067327 0.169321489178401 0.2430911582388262 -0.03178619153914042 0.1812417399996775 0.6003360353206517 -0.4596373638851219 0.04663523993622221 0.1158429734550737 -0.0005877630746908835 0.1200509079280891 -0.1781608000746928 0.2898219813587275 0.08846002335303638 0.115974217825169 0.2431231702688592 0.6098045266136296 -0.7261267013363977 0.07040696618059883 -0.4407895292852118 -0.005182779881579336 0.3309361343917772 0.3608907203374656 0.4996678073080716 0.006560108075973403 0.5837721781974992 -0.04169138479960566 0.2958199938984762 0.1142512584065116 -0.00245425770390284 0.3888574362545114 -0.06424906993470358 -0.05995746052940376 -0.1032994755960317 0.3209034954934396 0.5159196956101368 0.1851015050015121 0.2767120991128422 -0.172080064102488 0.4369702337822048 -0.3603708651494344 0.02372950287644926 0.374560832959105 -0.01725852231902536 0.3974039542663377 -0.1248727731363033 0.3121790904560839 -0.319899549933325 -0.1435540767088241 -0.1083269570881384 0.2259864711086266 -0.1512976712110685 -0.1952859554112365 -0.3351724363092217 -0.6333352905085121 -0.6447206944480968 -0.131103172301664 -0.01846480139374762 -0.4575154065578317 -0.2224814525563943 0.007220551676709874 0.5595600164633652 0.3283272878979915 0.02516040777572925 -0.1738790023937327 -0.5696046943994588 -0.01780633621706329 0.3229650799603405 0.1322591027746967 0.009846051823842572 0.4799295618795441 0.2149788419064862 0.4114884103510121 0.1064891355781583 0.5464602568972623 0.5358734673955041 0.1316720950635499 0.6067847188032829 -0.04061862388016024 + -0.3749644972995156 -0.5923220280164969 -0.2243321578425821 -0.2129256923362846 -0.2733651880625985 0.001981741457711905 0.1473910347704077 -0.2363099446301931 -0.486143440772139 -0.2470090414681181 -0.3070435636036564 -0.021079876456497 -0.1390880620001553 -0.3002994884354848 -0.5878250593514167 -0.2550849837416536 -0.5329173968166288 -0.251849868345289 -0.305557287965712 -0.05920795677957358 -0.2241200794451288 -0.4008912700410292 -0.2649509718103218 -0.05786587887644146 -0.3192856365203625 -0.2760632726858603 0.1839650706242537 -0.7788522749360709 -0.7382134154850064 -0.396718728754422 -0.4277800362870039 -0.436589185669618 -0.5874060934993395 -0.3295750952465824 -0.489397817263125 -0.4067685339286982 -0.3673956044046918 -0.5135265202435448 -0.95998432730903 -0.5829250783390307 -0.542097391088646 -0.3928765679793287 -0.1261737506570171 -0.5165035002371496 -0.2510470306307582 -0.6085187720253771 -0.004733255577299644 -0.8504851717095789 -0.1576554132825549 -0.380750300820182 -0.2492061353823374 -0.06826649563015508 -0.4565996424371406 -0.885930525171716 -0.673683122005059 -0.2138409406243227 0.3337490112953674 -0.2493871454498731 0.02449160114394999 -0.2257918403383883 0.1401310250247434 -0.4543323853067704 -0.3369245282005977 -0.04248074277711567 -0.284078049382515 0.1894636820143205 -0.4341013217999716 -0.1408794480134929 -0.5067282413456269 -0.4331101077659696 -0.4670289078931091 -0.3809614281635731 -0.534639067176613 -0.5170979932081536 -0.5725824791479681 -0.8829721272309143 -1.038754786102345 -0.510411124841994 -0.4634014753855809 -0.7717521348663468 -0.558856130963477 -0.3150791985531214 0.06876203616002385 -0.04679642582004817 -0.1745014155369518 -0.3582579405256183 -0.7126062897041265 -0.5747809049862553 -0.1160220846377342 -0.187730532952628 -0.4400456465828029 -0.09073129247553879 -0.009343533112769364 -0.2377559213564382 -0.6543335497117369 -0.2897841325684567 -0.02941092823857616 -0.2969730701242952 -0.06313242231226468 -0.5265311256546532 + -0.5669834384789283 -0.7640056279851706 -0.4504153008019784 -0.4110770010083797 -0.5325777773832669 -0.1930198448390001 -0.2178431409265613 -0.2846000116260257 -0.6861121173205902 -0.4847151230351301 -0.6357284684891056 -0.2979882971158077 -0.2425748684272548 -0.347220663114058 -0.515807512939773 -0.4317829421452188 -0.6065399264502958 -0.4817328312747122 -0.4108488898600626 -0.4918339786090655 -0.2301962554538477 -0.4378707296345965 -0.5322709140928055 -0.2308884039354666 -0.4738174146332312 -0.5454877625670633 -0.1262089886149624 -0.6807263505797891 -1.018440941927111 -0.4970830021784423 -0.4892027259147653 -0.5782803843767397 -0.497025772260713 -0.4141005053666049 -0.4886067094985265 -0.3673252288535878 -0.5781083875840523 -0.7842128023336841 -0.7768809058354691 -0.7717997548006679 -0.3970792895815975 -0.4952387844925852 -0.1664553560840432 -0.7926000364773245 -0.2576653331777408 -0.9446143940221532 -0.3565232011771435 -1.121022858858055 -0.347136583593965 -0.5597474636238076 -0.3056636507199073 -0.2679318795696304 -0.6171225040698118 -0.9944834213929425 -0.7154629639612722 -0.3884606355804863 0.1999825913462701 -0.5408163413521834 -0.1840988570705804 -0.1974158856235135 -0.08223774231326786 -0.3762097052754143 -0.5016195718312702 -0.2542636542366381 -0.3817293472056917 -0.007673066957067931 -0.4623713987857627 -0.3823247105888186 -0.3513544287288823 -0.3931475178069377 -0.5035287806604174 -0.5720818601985229 -0.5647016364673618 -0.423613026359817 -0.4990069100676919 -0.6420310988496567 -0.9333802557189301 -0.4815976028894511 -0.5872899373835025 -0.7704974425460023 -0.6473656912498882 -0.3667186801883418 -0.2321692470750349 -0.2711247770666887 -0.2129807357493974 -0.2854196686275827 -0.4636423775914409 -0.705929362278539 -0.2653787080216716 -0.2744902346203162 -0.6399861721383786 -0.3441141883122327 -0.1209547805756301 -0.5354910274872964 -0.9038060908897023 -0.6498772810882656 -0.365054282935489 -0.3379427111858604 -0.4352308135789826 -0.6349358834892795 + -0.394273990583315 -0.4058405298237631 -0.3365348688603262 -0.3519817551787128 -0.4268523087193898 -0.1257338066789089 -0.289240811340278 -0.1140531510609435 -0.4251669683944783 -0.3768531287114456 -0.4350976774076116 -0.1916837237331492 -0.1037506237216803 -0.07543422292451396 -0.08845317824943777 -0.2918959070484561 -0.1841323162228719 -0.3320657838303305 -0.2775183755220496 -0.3789582351000718 -0.02225117244233843 -0.1808205435518175 -0.47463733020777 -0.1188834236067464 -0.4059619816398481 -0.4896497919471585 -0.2223091287523857 -0.2208542773623776 -0.721311811976193 -0.1757644222661838 -0.1627291199224601 -0.2548602998381284 -0.226520875361075 -0.09183158075006759 -0.2171324462092343 -0.007620970855896303 -0.2788334052895038 -0.3013851416917532 -0.3181282653229118 -0.4128909359133104 -0.02917532250648947 -0.2133018873978472 0.2791456772608853 -0.3956142327388079 0.1724517585479255 -0.5119558194079801 -0.2981501447092363 -0.746725965699568 -0.1998816658815485 -0.3035082067308394 -0.1620373972759808 -0.135756633798394 -0.4541314457901535 -0.3940520525129614 -0.2838297873554438 -0.17519470139041 0.1502497445153494 -0.5515651252862881 -0.2191814750674439 -0.06161213942709765 -0.1414307127929817 -0.1098854398132971 -0.4156475461727496 -0.1190382303884689 -0.2698482808282279 -0.1265227003877953 -0.1781571627816447 -0.3760356396282987 -0.008977900199170108 -0.1348307358039165 -0.2537051491417515 -0.3339122079487424 -0.2498384598366101 -0.004826154094189405 -0.1398452978100977 -0.07671676889685841 -0.3559124773366875 -0.08775556546788721 -0.3925295142248615 -0.4635108768595728 -0.4425017826972635 -0.1468353355469389 -0.2026597093508826 -0.2199288986889769 -0.06122518642177965 0.07371319207277338 -0.003788537826039828 -0.4210057967571856 -0.07989114928204799 -0.1109601692896831 -0.510453120314196 -0.2452493858581875 -0.06927940467721783 -0.4611149117190507 -0.5695007620743127 -0.4302448137277679 -0.2742514184201355 0.02311823135914892 -0.2787360024619829 -0.287014982992317 + 0.09336215099210676 0.3167403417173773 0.1606909281908884 0.01605885427852627 0.09664313774555922 0.269238859131292 0.02623183844116284 0.292291389858292 0.1936202394899738 0.02705646154754504 0.1630569477556492 0.2601525166064675 0.1884280207950724 0.4015555345175699 0.4980450023581398 0.2085307285967701 0.4000525542169271 0.1343517916795918 0.09404922644716862 0.1192664433920072 0.3214115612217938 0.3719881982215156 -0.02851198560892954 0.2668990673509768 -0.08099864707764937 -0.08169372712291079 -0.09213972281577298 0.4224611284898856 -0.07849069844041878 0.3434788997951728 0.3824242671084903 0.4155665332498302 0.06076362834960491 0.4211542947770113 0.08050243528714418 0.3310994673212235 0.3903307772620792 0.2436211638435708 0.1669820077650002 0.2729985581490837 0.4358561265526077 0.3633005172514459 0.9504256340715074 0.3239720084308146 0.5299467993519507 0.07123243040558647 0.1660178537931891 0.0450422783203237 0.2248217369456142 0.2869685484502043 0.0855640357244738 0.2514389884036632 0.003508963943659182 0.3934662478700375 0.3399213414259066 0.2993779411681317 0.228070363160441 -0.1914616364756512 0.04300921106204214 0.1854257348118722 0.02324832344699246 0.3370440323385537 -0.06577500752428023 0.4185484317313239 0.1158545294638316 0.01535136111851898 0.4035949799836089 -0.1170844986595512 0.4090066651383495 0.3039992321791942 0.137578722446051 0.1876055370230461 0.2871681955875829 0.5169256419248995 0.365434711711714 0.5385371990313388 0.4712410927986639 0.4759582998094629 0.005665851167577785 0.06822661944534048 0.005959483289529999 0.2385847552521909 0.1935979795202911 0.1905259402363981 0.2442691693061079 0.625752440931592 0.4708777955179357 0.09055179194911034 0.3514671729053589 0.2234925699049199 -0.07104608406007173 0.1276966291770805 0.1403799265117414 -0.1356520286117302 0.1227582994633849 0.1236349631453777 0.2409453174618648 0.5554089846318675 0.3385960617954424 0.4123089610528079 + 0.681409876098769 0.9859120808596344 0.9408779478399083 0.6553772897750605 0.9713254354628589 0.9772792133881012 0.7160811580179143 0.8886618392571108 0.9209618507738924 0.5612350458832225 0.9492597966327594 0.9171594034596637 0.5240216616298312 0.9562329227498481 1.065472494010123 0.9899751716475294 1.129408124673219 0.7250958952517976 0.6209570888813687 0.6781843174690039 0.6625252026124144 1.112075776659367 0.7577075639856048 0.751000744584772 0.4758233264874434 0.5900009839460836 0.1860877397593867 1.084098051348974 0.5579378467059541 0.8148071128289303 0.9055032565679539 1.29400260931618 0.6035758110230063 0.9726597705169411 0.3935292794856196 0.4734048704938232 1.163995768976577 0.3523928066398625 0.562326101350294 0.8968943460065475 0.8215981016214755 0.9827557785620229 1.473469200527177 0.9185807156097781 0.6540406396496363 0.3518581791348129 0.8523802590140992 0.8781288468769901 0.7892168918619973 0.997991698901842 0.2952914615401596 0.7319542160443859 0.6249638301417235 0.7192543327696512 0.8158253424136319 0.833359410344201 0.4842982736181511 0.5633450787190668 0.6986827841844843 0.532053311138327 0.421684397358618 0.9263981031620006 0.5155134301885482 1.277561151534428 0.7562733557524552 0.6002571629614977 1.23679878544317 0.3946218410920892 0.9124838476366222 1.037139512467547 0.5011880186975759 0.7868856399363722 0.8797094821238716 0.9446669868393656 0.8278927802402904 1.047985092465012 1.257875883407223 0.9623317819005024 0.4721821277175877 0.7420958552050934 0.591272135964573 0.6421027528064087 0.8907381141514179 0.9962516410600983 0.6440109895686419 1.211817639935134 0.902397456492622 0.5899976775783671 0.8696623391697358 0.617514892307554 0.6033878707439726 0.6715612181196775 0.4654331348128835 0.2718406674684957 0.7832700978360663 0.5633805342231426 0.9926949658558897 0.9594603895482123 1.173950955477494 1.234408023746822 + 1.071144683772218 1.196323206588204 1.773924245466333 1.438951764801459 2.015498612696319 1.89942505039653 1.664985278639506 1.581992010116664 1.450560492961813 1.01109548290151 1.772496761055208 1.602448519086465 0.8274018383535804 1.517282365468361 1.528634695867595 1.847220959493711 2.353802966187992 1.221154193970392 1.16539990945239 1.060643141323453 0.8796404726867877 1.865398349204042 1.742010888932782 1.111549678017354 1.188338453503093 1.355872118536354 0.4803378837750643 1.644280726039597 0.90258433125382 1.13330048143041 1.235518954453255 2.282257339147009 1.667870107807886 1.430761484298188 0.7232456497530961 0.453937011935551 1.843233481415552 0.2367329103307743 1.049566583713656 1.127891907620892 0.9732893023475526 1.346971222592742 1.667242405841876 1.220944231336922 0.7765693483662588 1.13812642738241 1.494585602997033 1.485146880583649 1.343095677030988 1.649065227720087 0.3636968916101182 1.157683416253278 1.227643836902757 0.3383428790872358 0.9158723157249824 1.23370903350235 0.9401849753785427 1.653422232177036 1.788190262093906 0.9561851516455135 0.987321728149265 1.567105544256492 1.227240486523101 2.222304149555839 1.455056168888859 1.606924306399833 2.216867530795298 1.129544321089838 1.557910000451784 2.214305664932454 0.7187792312324746 1.287446325404744 1.384053637964826 1.217233316743659 1.079950368604841 1.467134333234668 1.770468586364359 1.171045873106777 0.9190295485655042 1.505173509377983 1.191405815868677 0.9331787387066015 1.743111490612364 2.125044148273844 1.094743283133084 1.684009994853454 1.360523254073883 0.9239656013245394 1.330507267833582 1.000365944900295 1.437111004848703 1.338635585870179 0.8534472334113161 0.6414735865437251 1.047689288468064 0.4861243156365163 1.692631203974884 1.067919774654115 2.000689091309056 1.924068065503985 + 1.014389144397228 0.8407297527983246 2.365639603740419 2.183354489834528 2.980649618666575 2.870149212449178 2.68430623074164 2.258010666677364 1.527625481904579 1.193452015902039 2.620260500624454 2.173920088022442 1.082149194487215 2.066207487911157 1.906588568728637 2.520826040454779 4.092905422363367 1.465811996945831 1.577593553707629 1.18855204070644 0.9113760746447497 2.449872661090012 2.734578476537536 1.218396260159224 1.949164387184283 2.022942192961636 0.6560669433256408 1.957230271624439 0.8058321451225083 1.317317410898283 1.352304863635368 3.262385184449727 3.088226162591425 1.639911927496314 0.8834892802362759 0.3771177102101575 2.408982960661273 0.4984602351916978 1.922230100362981 0.8756236409936946 0.8230741684843679 1.270849619282444 1.653591491759101 1.410907396163172 1.162320168844774 2.18603754208612 1.879079115894208 1.871631310569903 1.766005503569318 2.156301483604778 0.2864848183111803 1.46627562633914 1.637943518476732 -0.334825135457038 0.621259286723415 1.384456642499458 1.546197801601238 2.9304357963656 3.269451380827888 1.427626820671691 1.571952964122868 2.106410764304769 1.892850159485761 2.917881695703272 1.894620858511189 2.717333754313358 3.158897547373954 1.9881563341022 2.326876207732198 3.840959010481129 0.7586452535470016 1.58781581787116 1.717186279822272 1.418524703974754 1.025132954915534 1.844356748122237 1.889931275014533 1.001648672011015 1.312108988696536 2.313113764010723 1.698356470094325 1.026317894084968 2.56161110519281 3.330454241815119 1.584359227240441 1.960830108896403 1.890084596917404 1.089822183264772 1.672326537889603 1.387735302969759 2.391133389824063 2.167326756342845 1.267887314446853 0.9586282737145666 0.7345842840200021 -0.2493368677851322 2.0743608601299 0.9467578228201319 2.736781251357044 2.359076235980161 + 0.4404803808506585 0.2087949357269281 2.456480577120601 2.708700840072197 3.633191275623176 3.696209576028195 3.561154100410931 2.810452087478552 1.042274187026123 1.020786747405509 3.612213014621148 2.578220567549351 1.329408637096265 2.589755455370408 2.302159298552525 2.819474623512519 5.624722376537871 1.399673870756828 1.739622362065802 1.058984562267597 0.7478973029910776 2.719435715735926 3.553045629289954 1.094903499761152 2.643710627544351 2.433042478952302 0.6213802589845727 1.803616057706108 0.217190690551547 1.370633509600879 1.369101239481438 4.01308858800769 4.314907706498971 1.506862804404783 0.6163717752794398 0.2632958446815366 2.951914701515274 1.413866083985484 3.176851360274245 0.3168516936060826 0.419826549151594 0.7928102838100841 1.677111090340802 1.731514058426926 1.728018640263024 1.896509874058542 1.930381866493877 2.212676016286997 1.975900186609124 2.494622046196568 0.1584349345146165 1.687873806457951 1.740681569810249 -0.5049349599302815 0.1106466450383863 1.284172083605682 2.173693957969476 4.172512750697024 5.004997745064287 1.908018023718284 1.977317942856198 2.358649253475903 2.296930185746703 3.054168803262883 1.831457404991056 3.446911064981805 3.830070817738033 2.797384319360816 3.083585595051545 5.706180389729639 0.6662855986814975 1.662970292491082 1.860091828446457 1.699523929001771 0.653238781208529 2.113150366116365 1.594329803631524 0.448922944284277 1.628446453114179 3.085147161688127 2.031511022671367 0.8815472896009453 3.157305529351447 4.215723634638763 2.118894068653361 2.038950989409102 2.379651095522519 1.202884676189683 1.93730757022945 1.878911232581231 3.467269235218282 3.250204711329843 1.703081110566472 1.30902018866982 -0.08738073418430758 -1.44597801676764 2.002972462667685 0.8431960247381198 3.434834535561116 2.660193583103946 + -8.359226682408917 -5.152138609013491 -4.650698804958665 -5.410331197657797 -5.853436918969237 -5.536634047362895 -4.706906084786169 -1.860681169979216 -1.250291474218102 -3.131907776780281 0.5801909295187215 -0.9618969314706192 -1.097054309490886 -2.209202051833813 1.116173893165524 -4.519683263705929 -0.4245555448461857 -3.581747726705999 -5.506644917262747 -5.998480876590293 -4.251267196678782 -7.685765438129238 -5.240750357283105 -4.391441449756428 -6.000388618362194 -5.752276689319842 -4.360721532721072 -0.7914164714720755 -3.279935339011445 -5.43222236812062 0.5738266478019796 -1.599257070551857 -4.731472421097578 -2.042661724913387 -0.982836493820173 -5.44980599402254 -2.845824984001894 -6.433408105956673 -5.35213730136087 -5.255742644668771 -2.690610075069344 -1.219460878614427 -1.064795399039326 -3.163344301320024 -1.792124109723551 -0.7405026132330357 -3.348912630094866 -2.126573171403805 -3.555316653360023 -4.264659873831988 -4.622645140072791 -5.939822120076371 -5.479626044887709 -10.71958768738477 -6.846121231118104 -5.372634414648701 -8.55661294044603 -12.38748832674537 -9.255107190835872 -9.489305870468058 -10.29469878398898 -9.152720603717626 -11.26575958121475 -11.35001650355662 -10.42761963165685 -11.3026578664485 -10.66276852534884 -10.79988540919658 -13.21866209512109 -17.47523547295441 -10.25345210426167 -17.44710736052366 -13.95500373456889 -17.03024116142478 -13.52345617289393 -13.31074138701342 -10.11831328819335 -13.1291348262821 -14.23847619027401 -11.02255247001017 -10.89298861981774 -8.186752455355531 -11.4357620276935 -10.36448639036951 -14.56826796033079 -8.304591966811131 -6.131620616169357 -11.40481448070921 -11.87839376649481 -10.08927151205353 -11.88148617230399 -12.55381706166008 -9.070687765339244 -12.59825195783924 -8.97261741933653 -3.680144362788269 -6.158990532818279 -7.507014850163614 -1.969917986801192 -1.267017424988966 + -8.581934237918176 -6.61118440973587 -5.632798269230989 -6.364877058374987 -6.858609932340187 -6.055157407674415 -5.791224070737371 -2.949744188255863 -4.465020070940227 -5.54861485346737 -2.791809789257968 -2.976114413871983 -2.670998124835933 -3.206297328118353 0.009319000845607661 -4.349133970113144 -0.1696477616143284 -4.255310672113865 -5.303996319891667 -6.383473312345814 -4.55015512827049 -7.208149113406762 -5.28668377446229 -4.947552369697775 -5.51988842341234 -5.679610730534478 -4.726850915118121 -1.808756263280884 -3.874820405320861 -5.658538731545377 -1.51562523533903 -3.202728896837471 -5.835342681448765 -2.68318158091688 -2.009241126860388 -6.76771252470985 -3.997328087973131 -8.649299924301516 -8.000026501558295 -6.934256559952701 -3.671450849188659 -2.507659449062885 -2.314148299114549 -5.50242962972095 -4.695173332871141 -0.5450510999589042 -4.103593654804946 -3.857529983761651 -4.080262285992831 -4.312650949739464 -4.860570774122152 -6.073083494083733 -5.498287525403612 -9.405310242418182 -7.090940931259638 -6.363815314181011 -8.766875661775885 -11.11094287046217 -8.31601899000259 -7.978553232375759 -9.343617094067469 -8.342490348857154 -10.70912989979388 -10.69773838276524 -10.14947756316906 -10.80209267025202 -10.05241937254141 -10.29650436104703 -11.91990199987322 -15.56399245765715 -10.0500683610444 -16.65567489266687 -12.51114214433619 -16.00490568337045 -12.19582269102102 -13.28941987429585 -10.24526445056745 -12.05304927611724 -13.4696593395397 -10.24715941708655 -10.25638151387261 -8.008663913177998 -10.93928905166331 -10.18723323665154 -13.37067918370508 -8.313682899432024 -8.225348613547339 -11.92761833357224 -11.90968175519629 -9.899511457850167 -11.45204175706385 -12.06835259741456 -8.466657631750422 -11.79904883039126 -9.65502640613704 -5.026628047246049 -7.018489399819373 -7.35337114964841 -2.38978423348658 -2.46763079155601 + -8.015774382933159 -6.898894492936961 -5.719398066139547 -6.245226664432266 -6.700827894601389 -5.706190838121984 -5.900448391825194 -3.303153468383243 -6.079763088226173 -6.546253214750323 -4.87365144506839 -4.230007389873208 -3.754091577182407 -3.820779122867862 -1.143277114019838 -4.023006362744582 -1.398773621275495 -4.630389754798216 -4.767087936968892 -6.177851464051855 -4.381827955543486 -6.280512903784256 -4.885967254758725 -4.74711434980992 -4.692548648927186 -5.173621750538587 -4.621919795928989 -2.823047717824011 -4.387032948056003 -5.697410562203913 -3.022488424935545 -4.133120131987198 -5.903263895707823 -3.262184459588752 -3.07228468943913 -7.626506912714376 -4.546299727966129 -9.065286689455377 -8.822662562897904 -7.702014799492645 -4.008901104851248 -3.467516620766673 -3.442214868257906 -6.695571520769818 -7.912484983935592 -3.237275360392033 -4.263133901468699 -4.876177788146833 -4.217232362093455 -4.224290751741137 -4.751976380706765 -5.866027759546853 -5.132387793032194 -7.882568869436909 -6.931073627966725 -6.862719662974541 -8.250676168366226 -9.28788869066193 -7.05337350704724 -6.290380856281786 -7.954835660595776 -7.033426087569751 -9.45056059978333 -9.435609618823946 -9.223150316627653 -9.821302238986391 -8.93411396558804 -9.306831214901194 -10.34101591081526 -13.24716172566696 -9.100013600538659 -14.99207277057576 -10.50232085766038 -14.01556754648846 -10.19376926575569 -11.69070996424853 -9.54626261333101 -10.25589712445617 -11.89910141247037 -8.86011791289252 -8.98884818936699 -7.198370863674427 -9.70934122710014 -8.779754359977233 -11.30521693110677 -7.605543751969435 -8.81158081845706 -11.25736143182576 -10.87693637205848 -8.868894559307591 -10.15806988344957 -10.670198861877 -7.336515216207772 -10.24388574198019 -9.53973863615829 -5.71523192074892 -7.020320932999311 -6.604564098243827 -3.005236426755346 -3.429858832644495 + -6.713660872930632 -6.049402275442844 -4.989890157186892 -5.241042077439488 -5.558812361574383 -4.679281311575323 -5.162879162628087 -3.019003397814231 -6.079195054786396 -6.203226094188722 -5.448674431401741 -4.492799693427514 -4.073060360087766 -3.927743989704595 -2.084557312588913 -3.461469846421096 -3.40038061614905 -4.482744101443132 -3.930466355812314 -5.300316176773777 -3.763603079987661 -5.044237750276807 -4.083544884535513 -3.881242889859038 -3.61374298267765 -4.28583833767334 -4.038982653990388 -3.43490120198112 -4.542475678512346 -5.406437244655535 -3.6800591325391 -4.335932962053448 -5.49411888900795 -3.772827352378499 -4.070590781474493 -7.737344983918774 -4.588003859889795 -7.984665081184858 -7.855433432355539 -7.39636952202909 -3.687291573257426 -3.803281450931081 -4.01195439884259 -6.405225145829263 -9.407308644464948 -6.131101911351038 -3.765423177433469 -4.8866875208887 -3.879816576369194 -3.877834197218363 -4.193569658430079 -5.163761774342845 -4.353921810266456 -6.346257222642635 -6.20507598130007 -6.535317265600497 -7.001647671948376 -7.094913242992334 -5.558908034415822 -4.578602611977431 -6.217486405199651 -5.36215818926803 -7.5517742324555 -7.600785380604066 -7.531073373855179 -8.280605551066401 -7.280569453771022 -7.686519016693637 -8.353193841840039 -10.5266290497384 -7.395657305816712 -12.33952671920997 -8.035497843651683 -11.23891280498356 -7.720721232759388 -8.939874600753683 -8.048138865438887 -7.883853850533342 -9.588597624263457 -6.94678481470828 -7.187895810163582 -5.853218475025869 -7.880781781756014 -6.75495506299103 -8.723187868306468 -6.313384604759449 -7.828772908482279 -9.465804967381246 -8.920678914279051 -7.136393395714549 -8.158833582021543 -8.48548317127279 -5.799510762617501 -8.010762197467557 -8.514022864997969 -5.529282736810273 -6.14906706110196 -5.380863126380063 -3.46392211604325 -3.64201622338412 + -4.896106677850184 -4.423092592332978 -3.68519299683976 -3.696711738783051 -3.805793929030187 -3.251092516249628 -3.824667184235295 -2.28400397682708 -4.795285218053323 -4.841446576541784 -4.63411229481062 -3.781457173943636 -3.559997235872288 -3.440129242415424 -2.466818266335395 -2.6026050674609 -4.64980397511863 -3.737407466654076 -2.88168720867543 -3.900030708657141 -2.819892725237878 -3.674950649881794 -2.98674813942489 -2.665609329314066 -2.414097261149436 -3.122859806579072 -3.05875235205167 -3.314495767594053 -4.091524732673861 -4.611106066817229 -3.417301607908485 -3.800524946740552 -4.738826253671505 -3.804282909633912 -4.408723896480296 -6.788125358085381 -4.125625289134859 -6.170297534618726 -5.715570364465293 -6.092873028744179 -2.855405776913358 -3.401520214268658 -3.775985751934968 -4.97185975631055 -8.331039455034102 -5.995327150264529 -2.718508582059407 -4.058713087432807 -3.054970016999505 -3.195373394494709 -3.211470560906946 -3.956779542961272 -3.230569804581137 -4.794952145757634 -4.823154244617399 -5.282933082411546 -5.202537548721011 -4.780505745016853 -3.971741856097196 -2.993860897843774 -4.303608557707989 -3.544484181490589 -5.2313180527035 -5.352634196595318 -5.205218911094562 -6.224411599308951 -5.207684786084428 -5.523474693207845 -5.934016881135904 -7.464088657769025 -5.152127681656566 -8.911051450879313 -5.344943426811369 -7.987362192689034 -5.079724849158083 -5.792884525441877 -5.952519197040601 -5.216813150767848 -6.786134051678346 -4.719751196151719 -5.068209579196491 -4.141797163757019 -5.676967913077533 -4.645750694473463 -6.001073298149095 -4.654988956910074 -5.680618726633838 -6.858014541346165 -6.36704416505745 -4.975349808282772 -5.742480883553071 -5.790173319779569 -4.05202646136604 -5.328024762577115 -6.652393383723393 -4.483572266566625 -4.658716432395522 -3.870814926016465 -3.341330910870056 -3.040334522658878 + -2.894511109087034 -2.520297948562074 -2.131910299212905 -2.007705137701123 -1.88952421497379 -1.72202955505054 -2.198910760052968 -1.332544857825269 -2.795358384064457 -2.935884840971994 -2.834874530184607 -2.355927945631265 -2.380629401330225 -2.395313612028531 -2.072006978651189 -1.49237505135352 -4.173643965097654 -2.513992685388075 -1.754679020217736 -2.295863230530813 -1.738219354359899 -2.339252041216241 -1.751843108169851 -1.460522880186204 -1.23910599797091 -1.838488359157054 -1.840775597855099 -2.440183749480639 -2.96367915128576 -3.278959055913219 -2.403317809707005 -2.630135968414834 -3.414446355032851 -2.913647424159535 -3.493233765631885 -4.739273024302747 -3.092892551201885 -4.108919915802062 -3.180332141530016 -4.092487342564709 -1.772604990396758 -2.384840744633493 -2.775790868976401 -2.975400226734564 -5.480527098952649 -3.412468522928066 -1.361324424866858 -2.749450822055678 -1.851760516397917 -2.192348053703427 -1.969058558098368 -2.406274854687354 -1.924798021607785 -3.116298711789568 -2.90604475366672 -3.338820286619921 -3.190967185717454 -2.61452678344358 -2.450542306772604 -1.658693236633326 -2.44132827813651 -1.843521797505673 -2.846181313759189 -2.9892684667102 -2.675692402641289 -3.906772977818036 -2.990846465359937 -3.134323387372206 -3.308609343317585 -4.302686823735712 -2.755299115327944 -5.204584032151615 -2.762550028550322 -4.691599956742721 -2.616926091832283 -2.955092466883798 -3.612580182712918 -2.624243163776555 -3.891057697329416 -2.495424613964133 -2.926562124245265 -2.307491351924909 -3.385698784572924 -2.733102995113768 -3.476227303916403 -2.893383708422789 -3.065547193542443 -3.920949636911473 -3.657997736956531 -2.741657249796845 -3.273937635272887 -2.98478933655133 -2.326795107075668 -2.5612567908247 -4.232191447343212 -2.794563179129909 -2.905603759616497 -2.272395348021746 -2.48317303192016 -1.915508132550123 + -1.059240123806376 -0.7776346015016316 -0.6550583345524501 -0.5187952784326626 -0.2088926025171531 -0.3567190594039857 -0.6061733254464343 -0.3981006018366315 -0.7168636960195727 -0.9957608321055886 -0.6536207512763212 -0.6468924602522748 -0.8897607402614085 -1.021582814188605 -1.020368442133986 -0.3137664158803091 -2.315519389895599 -1.088148145712694 -0.7078135516712791 -0.7754994860515581 -0.7107054238913406 -1.169504477889859 -0.5614534441338037 -0.4926239611835399 -0.2257027930027107 -0.6145965655523469 -0.5938241593976272 -1.137446092201571 -1.356821565212158 -1.611305501606694 -1.013441737772155 -1.100611832727736 -1.501680541176029 -1.154518521654609 -1.411917572546372 -2.040769027620627 -1.567240481378576 -1.881280416548861 -0.909246627844368 -1.859764374959923 -0.7285006714937481 -1.070517884609671 -1.320099836204463 -0.8837042652367018 -2.190392796978131 -1.06632304852883 0.01088012572757435 -1.243266428598872 -0.5105422695269226 -1.000380547949135 -0.7175484477002101 -0.8025854583212322 -0.6599980998435058 -1.294700856687996 -0.830727373479931 -1.202727264155328 -1.350855779877747 -0.830385516575916 -1.140084898570649 -0.6484013947883795 -0.8571156725147375 -0.5029108870503478 -0.7959685725090822 -0.881428332599171 -0.514025984070031 -1.744961455158773 -1.002289578187629 -0.9537275110951668 -0.928649710605896 -1.475059608776064 -0.6434588070551399 -1.845133125752909 -0.6386024619423551 -1.827982350332604 -0.6449737612856552 -0.8322047812207529 -1.457339870824853 -0.4824188850034261 -1.353520161381311 -0.6189007056286755 -1.073463866635848 -0.6403992210766773 -1.312201107795772 -1.110697949206042 -1.405791571376085 -1.294233668898414 -0.7160958990734798 -1.211347979333823 -1.245945640881473 -0.793988251407427 -1.117944897861889 -0.5138093917375954 -0.8418286280866596 -0.1387118137572543 -1.702792321295419 -0.8259268839101424 -1.194864902030531 -0.7623805305483984 -1.148469833147828 -0.6378330141342801 + 0.3310064008437621 0.5355106323258951 0.4925649932556553 0.5445215300424024 0.9716850222175708 0.6585168907186016 0.6823328437312739 0.3325307451523258 0.9015960518372594 0.5522072903258959 1.25435652973465 0.8701969232497504 0.4799926406994928 0.2976013298530233 0.2217782782117865 0.6771733807654527 -0.2088034554944898 0.2043235803530479 0.1106140900774335 0.516911440739932 0.1072513006220106 -0.2610771776162437 0.406485211198742 0.1925882824737073 0.5206836992874742 0.3704075221321546 0.4698787576635368 0.09524635105481138 0.2963177412530058 0.006545466465468053 0.2869770688394055 0.3715834478389297 0.5014125101770333 0.8048552577729424 0.9395243695707904 0.4681042459887976 0.08796152286481629 0.381411068357238 0.6235950124437295 0.08665018753345066 0.03952890150685562 0.1505901895661736 0.1384737371863594 0.9402961142550339 0.6143247743586926 0.2068487557553453 1.126189950960367 0.2205185707298369 0.6577609523355932 0.1501660609737883 0.2903062007999324 0.5285068061584752 0.3392532379821205 0.4326611899159616 0.8856136845734 0.5641047707395046 0.02245156097160361 0.4221485677953751 -0.1428065915594061 0.01786616486208459 0.2887044103478331 0.3298104501509442 0.6125238599770455 0.6535012027597986 0.8433459653315367 -0.1401774379482958 0.4187206639908254 0.6333892907996415 0.7227222443470964 0.5459534661495127 0.8343703407299472 0.6265456099063158 0.7627948868903331 0.2045768759926432 0.633289643592434 0.4619673068064003 0.1243455114390599 0.9267749896098394 0.4595264035197033 0.64034187542984 0.2487711996427606 0.5921871136438313 0.2838845101159677 0.1627333479709705 0.05694954172713551 -0.07932954630996392 0.8406930010823999 0.7915370542223172 0.5174960425229074 0.5933146465140453 0.4439107138714462 1.252468271668477 0.246901078895462 1.569006433790491 0.4149068344413536 0.9770015423709992 0.2558413870101504 0.4834256243811978 0.20469296792362 0.4951295791634571 + 1.127896869922552 1.300519765922218 1.169638648396358 1.098175206003361 1.55189630138193 1.235478755450458 1.489355735451682 0.7524089892758639 1.746359267199296 1.451230350849073 2.373985602636822 1.821914879503311 1.36876319291332 1.176162719231797 1.084677415263286 1.268556994211394 1.213581367548613 1.077346164131086 0.6008167693653377 1.489509574625117 0.6151138805580558 0.3234105791852926 1.015421930191224 0.6392185099635981 0.9447360686317552 0.9815974103767076 1.186005587980617 0.8394234766237787 1.490075973579224 1.159180898725026 1.106435704903561 1.359934647025511 1.838898308120406 2.107951329728166 2.451112665583423 1.974942780387209 1.348960297988015 2.177899504631341 1.196130953807369 1.321833743584648 0.4095996220512461 0.9600793901272482 1.179046057812229 2.136392303950743 2.398071912364287 0.8266638510358462 1.796795896147827 1.310009445456672 1.386418576797951 0.9940327480908309 0.8868524607369181 1.337286741035541 0.9144317510745168 1.634721384136355 1.818138163767799 1.573846560733728 0.815309942332533 1.099978424394067 0.4966645205656732 0.3741210426848056 0.9428456254515822 0.6502424540631182 1.270503738540356 1.466244990224368 1.303307273970859 0.7247264429170173 1.104351817652059 1.438388558603037 1.390508433716604 1.486971177080704 1.528189137876325 1.934133601054782 1.351760767676751 1.216340992395999 1.176644098130055 0.9706420115044239 0.9071817390495198 1.502122200025042 1.379834050283534 1.178714288391348 0.9327042365321176 1.233940171869108 1.249101749090187 0.9989225259359955 0.8750298754262076 0.6219453852363586 1.420864344749134 1.822759148204568 1.465288055069323 1.298089780051669 1.27821045451492 2.129506546298217 0.8759333212765341 2.369509750547877 1.693930031571654 2.189813053533726 1.277448178214399 1.276022249341622 1.216143550653214 1.245276314732202 + 1.330180585006019 1.493392011077958 1.355134243931388 1.182175045047188 1.577280881945626 1.382930779931485 1.757209437913843 0.8482931708640535 1.78086482846993 1.653913349280629 2.506486604710517 2.053417873714352 1.622144468379702 1.412910709081643 1.233358659714213 1.385232070280836 1.63468356854537 1.384659605180786 0.7414402685280947 1.980092179248459 0.7797578286226781 0.5625937652948778 1.205442493679584 0.8670601224107486 1.051660162527696 1.165758031398582 1.480366169649642 0.9408659056643955 1.87762446051056 1.585066846244445 1.272813792365923 1.612052977732674 2.04669442683371 2.291344029472384 2.577337072612863 2.16063406331341 1.838611197884802 2.888669763318376 0.937140357032149 1.660629357602375 0.4021167054652324 1.21877398120796 1.566194250524859 2.432875731725289 2.85105067458079 0.9418700824144253 1.952464405479084 1.679176216778615 1.56319786846143 1.333261749070516 1.041751257017495 1.537930474661039 1.023983915757526 1.95104959434866 1.846390175075612 1.752640417505972 1.101452430499194 1.261841782215924 0.7918456859791831 0.4941441065232084 1.158596175479033 0.5869461104084621 1.285484962611008 1.61246768498313 1.113809863374627 0.9620756984804757 1.126377871827572 1.52453472545676 1.201051507197917 1.446200290774868 1.521391527676315 2.141779470053734 1.243990204078727 1.303221732472593 1.113048037608678 0.8293827128654812 0.9119642710043081 1.358594608460407 1.485466766458558 1.091629000301509 1.031172320273072 1.300337451705218 1.572377222338218 1.337860952058691 1.127107082948896 0.8106132974407956 1.191613434828469 1.906555116299842 1.645359114225357 1.375376771928131 1.425528337109427 2.173257275841024 1.079980318172602 2.314369511921541 1.970728654414415 2.555497400033346 1.746687607213971 1.482210671376379 1.700040842879389 1.442770571291256 + 1.067170777394495 1.178220258880174 1.136346741288435 0.9227562743035378 1.196665897048661 1.190637739491649 1.550683987967204 0.6929301240161294 1.215826812469459 1.306917604430055 1.832126890629297 1.665266144154884 1.337800004130258 1.090852466018987 0.7557271800360468 1.10607873959998 1.199180888648698 1.168016473571697 0.5993226320460963 1.83637459800957 0.6528199501117342 0.4997542902492569 1.015898490208201 0.8554068101097982 0.9063252167688916 0.9734906945232069 1.387573986517964 0.5504083996347617 1.455712610360933 1.312402163668594 0.8915641754756507 1.191850558530859 1.317268563881953 1.55063369302934 1.650231161267584 1.374589415137052 1.551920224886999 2.319451855920988 0.2630728143167289 1.234287535493422 0.1606893387061064 0.9957924572504453 1.328044503804449 1.848608957929628 2.102436854782354 0.7476954387520891 1.651503524984214 1.24879837587514 1.274085425355224 1.142909656282427 0.8615019565067996 1.237899416891423 0.7578372838397627 1.375675548859363 1.212662573135276 1.325803006826391 1.066402610906152 1.042267837161489 0.8035611793119415 0.4718836526542418 1.059786162808493 0.3391016594778193 0.9079754813947147 1.300099197807867 0.6679840175274876 0.8668797872160212 0.7487022274945048 1.148131724952691 0.5921955876201537 0.855895519387559 1.078053120661934 1.598626941849943 0.7182067510730121 0.8158030514896382 0.6963459019098082 0.3011181587908141 0.4025721804810019 0.790057238733425 1.057455251338979 0.6302573079797185 0.7306115674941793 0.9729536459681185 1.382506372496209 1.230565366563496 0.9855748579425381 0.6243472421479055 0.5617204721984308 1.333647936141688 1.287882634433117 1.028753700571542 1.077131778678449 1.648940934450366 0.9724112042767956 1.675195705116494 1.424508068063005 2.11341838035878 1.652841766739584 1.151584852326778 1.601260569657825 1.099963699815696 + 0.5619143640906259 0.5518964648144902 0.6844893448142102 0.4924235903599765 0.6174301231949357 0.8051301203668118 1.036843864843831 0.4186063250162988 0.4131270420766668 0.6870336313368171 0.8079378347647435 0.953206060868979 0.7951890610311239 0.5194647100124712 0.06784102491110389 0.6167772968046847 0.344943940529447 0.6446599402106585 0.31316896046701 1.150010647048475 0.3743992296695069 0.2591639163365471 0.5839786732685752 0.6265512942692339 0.6199973425391363 0.5526891694389633 1.037578396608296 0.01847900289067184 0.5798261518120853 0.6650643952852988 0.2822320879113249 0.4623674271715572 0.367756580673813 0.5328004237489949 0.5223996776912827 0.3747086392922938 0.8352875563064117 0.9893677248928725 -0.3636968266414442 0.4421492537749145 -0.1080998299958082 0.5217561984245549 0.7470797139876595 0.7790451403902807 0.8608715386274639 0.355653699436516 1.072960904549738 0.3536725727121848 0.7567678647592402 0.6163037310516302 0.5394227771298574 0.6941171136792263 0.3079245860581068 0.3425389531348628 0.3903765084523911 0.6771202175796134 0.9032725837096223 0.6168910865053476 0.6252174962568233 0.4011042380608387 0.7933623750522969 0.09791961830796936 0.4158992746815784 0.7946083971655753 0.27355033945787 0.7048719623780926 0.2932425667604548 0.6245392278651707 0.05719755966310913 0.2380407568307419 0.5287860698517761 0.7833291351271328 0.115975129941944 0.2171613681093731 0.2238263054096024 -0.2335186386817441 -0.2160070929116955 0.1655723555741133 0.4626044981414452 0.0999663584038899 0.2828267778945701 0.5233088786590088 0.9076522967225173 0.8503308099889182 0.6700895831781963 0.2963132827076151 -0.01014288674923591 0.5418226131223491 0.7200923660566332 0.5360876109989476 0.5094137797386793 0.9242718200257514 0.70769506495526 0.8367801141721429 0.5049006830668077 1.21156022867217 1.156277727077395 0.565106457188449 1.046857259109856 0.4778142108780408 + 0.07868358842824819 -0.04976803603494773 0.2194348175544292 0.07643579209980089 0.06745665706694126 0.4012791629647836 0.4448643396463012 0.1790623647757457 -0.2433576408111549 0.1070832718760357 -0.05228346277363016 0.2808733047640999 0.3091726595539512 0.05931523450772147 -0.3732464320573854 0.1446144314877529 -0.3138380780064836 0.1256558809704984 0.05414395793741278 0.3361773734031885 0.1339722814809647 0.02745506971768918 0.1137223953774082 0.3184995236645136 0.3265035919321235 0.1097743596837972 0.6121395815789583 -0.3010254962246108 -0.2255870190492715 0.09819183728359349 -0.181090887420396 -0.1172821803947954 -0.1313671547650301 -0.1362563014863554 -0.112303065047854 -0.1761007420554961 0.1724858035664738 -0.1440442486904203 -0.6338680817448221 -0.2200141673374674 -0.21517184894401 0.09404125906166882 0.2514832313199804 -0.1527272278538021 0.03202647881175835 -0.225088423283637 0.4804194934744004 -0.4441730656565142 0.2915366037123022 0.09341963103997841 0.276488025978324 0.2100896754002406 -0.09613351750613219 -0.4813546421228239 -0.1565864928725205 0.169874542281832 0.7420595779331052 0.1706675888090103 0.3704623538312717 0.3592603622352044 0.4954231757688206 -0.006228947907857219 0.02344306765098736 0.3432798120520602 0.05461709562951 0.5789421096342267 0.006876232433569385 0.1995178826678057 -0.1171130816655932 -0.07268729138741037 0.1458380404219497 0.1223158407374285 -0.2736311278422363 -0.1102737262845039 -0.05760928459858405 -0.4313048546246137 -0.5623344826944958 -0.2027186930808966 0.01465620899853093 -0.2511124536767966 -0.07720169137019184 0.2030251268504344 0.4116445543431837 0.4287200611129265 0.3868914590484565 0.07303926733084154 -0.2194648487957238 -0.0556429525790918 0.2573042540025199 0.1558532070885121 -0.001192401996377157 0.3342325568228262 0.4379125542600377 0.1543658157825121 -0.2672732295759488 0.3554821876969072 0.5552804414219281 0.1098928939518373 0.3871392451073916 -0.0352722803730483 + -0.146366092023527 -0.2665516295746784 -0.03870978775375988 -0.1562631565393531 -0.2405685310004628 0.1511851409668452 0.01286196845467202 0.1093415525974706 -0.4704260569524195 -0.1814870775851887 -0.3953363705732045 -0.05474452262933482 0.0949016983522597 -0.05508725344725462 -0.3249752243436888 -0.09397746815602659 -0.3327856625962795 -0.111886717751986 -0.02498475105676334 -0.1109766515401134 0.08954027235813555 -0.006211859279574128 -0.1790913003569585 0.1465479993727854 0.1528372873872286 -0.1518502033577533 0.2849188373511424 -0.2275907153671142 -0.5548090488937305 -0.05874274581856298 -0.2467351793738999 -0.2444029543530633 -0.05843719574750139 -0.2061875556778432 -0.1295625577645296 -0.07904612214724693 -0.06300537725928734 -0.3871657518386087 -0.4548860510572013 -0.3842551962070502 -0.05982195282831526 -0.03484372790035195 0.2001605455793651 -0.4351080055312195 0.02263714061751188 -0.5874923231192781 0.143983505822078 -0.7028358785356659 0.08749935191099212 -0.1115379371672134 0.2029176138189541 0.01594446600461197 -0.2632037088233119 -0.5953865178171327 -0.1860177683902293 0.01652522957692781 0.642566722302945 -0.1258273915664176 0.1650004713663975 0.3985893143102999 0.2793331092832716 0.08793111349132232 -0.1483200444417889 0.1418709401732485 0.02111595377209596 0.4783208948210813 0.007436637584760319 -0.005694647225936933 0.06677732903972355 -0.02947783618219546 0.05895311023050454 -0.1403446997428546 -0.297171752594295 -0.01029262488009408 -0.02305307077767793 -0.1832353675854392 -0.4299611357785125 -0.1650282969621912 -0.1234467696795036 -0.3002558077030244 -0.1958457253658707 0.1550747629810303 0.127933154184575 0.1805589210116523 0.2763826571419941 0.1236745091164266 -0.02691967169084819 -0.2202578613423611 0.1078120223155565 0.04915383442312304 -0.252279258609633 0.07782609248533845 0.2763793074282148 -0.1616297995315108 -0.5246389021485811 -0.04088600831528311 0.1677776020869715 0.05473614772108704 0.03383599929975389 -0.1387206317184928 + 0.01652907671814319 0.08287165932051721 0.07099918185849674 -0.08297254080389393 -0.1496111781125364 0.1915463813129463 -0.06786444324825425 0.293196288846957 -0.1676832673911122 -0.06097338681502151 -0.1344742821638647 0.08794407763161871 0.2108890876861551 0.2102422515829403 0.1755276053409034 0.06074707340758323 0.2083091357320654 0.05975030077433985 0.1641945467290498 0.02667030159318529 0.2906585147284204 0.2751840092605562 -0.1296829613747832 0.269315158590075 0.1913320705498336 -0.09551258252395201 0.1661791425503907 0.1988179272339039 -0.3186579326738865 0.2290659690033863 0.1110717506612673 0.1158012577261616 0.259438664805657 0.2002496213633549 0.1825574479871648 0.4068045824687943 0.2342575207953814 0.1426307888054623 0.04203584920253434 0.02177229396329494 0.3351251919880269 0.2425593152738656 0.6563788477676553 0.00777899106606128 0.5067016610374786 -0.1548088749800662 0.2327516677037309 -0.3203714790811887 0.216857879258896 0.1249236272151393 0.3316340513490559 0.1854335742952458 -0.1010424961746139 -0.002479916170159413 0.2439946902086376 0.2385684349760595 0.6332122492922281 -0.1340016224712599 0.1392304000799527 0.5447392141129512 0.2350230295495237 0.3942346893131798 -0.05133101503497528 0.3199745167876245 0.1879211221421428 0.4354572586216818 0.315052479149017 0.03390840609699808 0.4441865136241177 0.2573802479364531 0.2407494725339347 0.02227002626750618 0.04116941771644633 0.4262294159543671 0.3062102649710141 0.3490968771352527 0.1491045168136225 0.2323419234417088 0.04408221950325242 -0.04821125330977338 -0.02692142397791031 0.3848305886742764 0.2087575775235564 0.2681219952253286 0.3907894198862323 0.4833468841611648 0.4008767614127464 0.05044041810447197 0.3247896746952392 0.2471485033620411 -0.1527150198999152 0.189486602004763 0.2782079997778055 -0.0865306193845754 -0.1912654135885532 0.138566677338531 0.2028304676114203 0.4046103697619401 0.2101299664129783 0.2567587342467053 + 0.5309705160034355 0.8554980401531793 0.5932806632699794 0.3424688521627104 0.398773612374498 0.5930957556847716 0.3011914170565433 0.7453366783047386 0.5609599206090934 0.4263429430429824 0.5864663004767863 0.6733118104257301 0.5835397094124346 0.7385952048711033 0.9178645252941351 0.6579189070080247 0.9214323201894103 0.5772294050482287 0.6197258233114553 0.5781017197132314 0.6602739562322313 0.8683397353615874 0.327029163527186 0.6731857327542343 0.4805171559200971 0.3064673740555008 0.272091831848229 0.8133350488806173 0.2681437556984747 0.7507122178417376 0.7127886957146075 0.8164177463179385 0.6036411692114143 0.8273972580128657 0.5528740984079832 0.8678004577029697 0.8934987049276231 0.7187171591616988 0.5882646495324479 0.7551816022428284 0.8361752852306381 0.8346451467831457 1.343681778292762 0.7890076371909345 0.939330584495508 0.5421923894684415 0.7306855157093164 0.4717625103271246 0.6180934078274731 0.6988382574181742 0.5654723618597473 0.6291410069841845 0.3599301203219056 0.7782887685016249 0.8489216095467782 0.7051865424705284 0.7496163129144406 0.2360180720879725 0.415926067841383 0.8008754489230228 0.4214647762828179 0.8983433765044992 0.3167098910839741 0.912254533603118 0.5964368334971368 0.6050984034554858 0.9072282196611923 0.3082396519575923 0.8823355231388632 0.7320599200193101 0.5566071935681975 0.4737588328134734 0.61739399759972 0.9682038487007958 0.7913735280380934 0.910223548498152 0.955382122056335 0.7950771179139338 0.4062062822731605 0.4371828790592645 0.3820897030255992 0.7923141294162406 0.6985383344949696 0.7938330138400715 0.7086834991886235 1.057620899610129 0.8776751960695037 0.5753986656040979 0.8204379815078937 0.6746494234412239 0.2866545578926889 0.5888192606271332 0.4415185912330344 0.2603316653439833 0.5207273106698267 0.6672890236695821 0.6847464512961778 0.9378251833186368 0.8586715430426466 1.033958160338044 + 1.190847569024299 1.638150552978914 1.424588841829973 1.069068992041139 1.334714119664568 1.339121658384101 1.101103168686677 1.411742784912349 1.449241683232685 1.104458659150623 1.522114809412415 1.525432454353904 1.07170070004031 1.373441113068736 1.669052830645455 1.58987689504329 1.73223898283868 1.237023995710729 1.251389770057358 1.188436549462494 1.047837617045843 1.653167300083624 1.139256905147704 1.175329886279997 0.9993515085589024 0.9679472079551488 0.5289928353813593 1.45335917540433 0.8650093485789512 1.256808643636077 1.297783865047677 1.69141352838858 1.148622103090929 1.459419391587289 0.9064067721624269 1.053471341479053 1.615758950078501 0.8154293762159313 1.027096605942347 1.405763827553301 1.255085184149493 1.480337231072667 1.871342833357005 1.407212847597179 1.105000607272719 0.8562579806783133 1.438373875574885 1.286585923088822 1.15080235098776 1.387750947709378 0.7580635598883418 1.164342069906326 0.9853016766921883 1.091694172491088 1.28537138997558 1.211760699635079 1.036222677711521 1.006862084746899 1.08922148866526 1.153961079605665 0.8448559575153354 1.553395124430835 0.914524718978555 1.817491796444301 1.216121151014704 1.158456000904152 1.73376671803635 0.8033593770391008 1.367829987093273 1.479832464845458 0.8466697254552855 1.012142353290983 1.258539446447685 1.405516171525051 1.241362147407926 1.365281139120043 1.707419767973079 1.280042620227505 0.8360347072894001 1.084921442179052 0.9281641517878825 1.234823497986781 1.532388304881579 1.774936945044487 1.173247510655301 1.681727965241862 1.350218873979543 1.121353179389359 1.432532962760888 1.215976217979915 0.9981610111999544 1.173395970579804 0.7261217781706364 0.7094688011693506 1.234058043542973 1.112058523022824 1.449062987821208 1.376238591800984 1.746243964055623 1.930445473924461 + 1.694083852300537 2.001718460066513 2.327247780005564 1.952387144548993 2.464619255164507 2.321564983118151 2.199480823845079 2.186593001981237 2.16015550647171 1.731397215119614 2.468840138855739 2.403394093506904 1.532777391280888 2.002807447172074 2.275307159756892 2.599759217182282 2.956159668148295 1.800264885208549 1.909384337686788 1.589062465757479 1.310671918527078 2.440368569537895 2.15808562183156 1.542823671666788 1.675507934683992 1.722312388928913 0.8087016607387341 1.992058063999139 1.190445210797407 1.625812911082562 1.67408743658234 2.631993260350839 2.133076420746193 1.919303725507433 1.193648951278448 0.9796578554816051 2.194178529717355 0.6435093566669448 1.510661532694151 1.633912461298223 1.427235553044738 1.871263583824032 2.050936391504848 1.670913726119352 1.178585876738748 1.412436168639372 2.074395491894736 1.842929760854261 1.662054689615843 1.999698568549775 0.7994765235519026 1.619637129204847 1.587277917357369 0.6807800685130587 1.322431343980497 1.563465539780168 1.510196411325069 2.11734012019042 2.196891871613218 1.580114217316805 1.434065101766507 2.259416653516382 1.638350361404264 2.786534643465075 1.852574530430957 2.08041497095428 2.68667133646295 1.481853756043392 1.9431737886664 2.626032254594975 0.9990423210547306 1.459219146941905 1.811342946253717 1.666475209505734 1.485257124317286 1.742821714303147 2.183179842175264 1.492447629926573 1.254550773769324 1.847200536243122 1.493653588740244 1.581714329219267 2.556140664255963 3.083540241973253 1.729963912765584 2.199222746353485 1.880514721878512 1.536450602246589 2.011857352086736 1.790236840060061 1.912492396485504 1.900893385854943 1.081134782403751 1.137238955109751 1.580213050264319 1.069237812229403 2.207294258535285 1.561570924504394 2.640162575394868 2.653009434399451 + 1.774021504006669 1.791492556953017 2.99535919238042 2.791052010270505 3.521380844595114 3.360414109800331 3.383162075988366 2.940334425135006 2.399819088976074 2.083789000967045 3.358208716482068 3.091856883998389 1.874852635059256 2.573288065069534 2.706588236677277 3.372913040749154 4.599257658059022 2.087595099588384 2.429302754157106 1.683189778353835 1.365352154169159 3.032958796525236 3.185248283067267 1.63478915712399 2.404273384770931 2.379291667353755 0.9788234633833781 2.275131288608009 1.092003215871955 1.853042407114344 1.807417147870751 3.528442505367309 3.413195813262092 2.051805367414516 1.23242463189591 0.799372824492707 2.636720160779099 0.8302753309718724 2.3333366465917 1.357966828339443 1.281493455877239 1.816298736130221 2.00965870315656 1.790829074994985 1.447108064932839 2.113531147868546 2.415921470574916 2.142167307653242 2.028834033591238 2.4416658142828 0.6793229206040223 1.913939486871932 1.986302919550894 -0.0475469179066863 0.9408572283576859 1.644231072672085 2.119821746724938 3.417071964245224 3.694321439667988 2.047347720566734 2.036242660945504 2.855098531661497 2.314373777674518 3.479658572648532 2.200012518983385 3.071269362395014 3.576960316475606 2.24589786783406 2.59306881374664 4.169481526775826 0.9850277852310683 1.709054979615757 2.183001413524835 1.833014293763426 1.423829916610885 2.093456098466788 2.274393691362036 1.336852527962947 1.634369063094255 2.676734300965904 1.974564132207774 1.740401220453464 3.562753509560594 4.404445526397637 2.34394617784443 2.518847827590548 2.488370821241631 1.812946417137113 2.491015619630161 2.399537894407786 2.995603066826334 2.817257595293995 1.470826929051327 1.520633366510992 1.351656818912488 0.3767572884025867 2.664088119339795 1.538085785466023 3.437951892054173 3.059909082328534 + 1.329217685557524 1.245535382652633 3.154673714416276 3.38946138137544 4.249723310846093 4.245128765331174 4.411618900732719 3.551062613129034 2.018255370560837 2.029088137269355 4.268067279674824 3.478587600023275 2.085979276306148 3.054520327892035 3.056694581113334 3.68125434172552 5.945970911119181 2.022487129393312 2.678539245645425 1.464533828317258 1.187193024369662 3.274587108181322 4.030337440601215 1.468953063939175 3.072008517348877 2.782335902363229 0.9474550628874567 2.080427875761984 0.5117693151869389 1.920415496436078 1.807582583442468 4.176295348487372 4.483641789244967 1.799955171221114 0.8154608102412517 0.6046346896434258 3.078109583372243 1.687859506317988 3.510958616290562 0.7760117364440191 0.8708015988762554 1.35319652915264 2.005222060453345 2.071936929074617 1.932614743839127 1.605843848589964 2.387538963539202 2.372066394051739 2.167895973156135 2.687696204353443 0.4894986701234814 2.068749641059654 2.061973385534827 -0.2946360567641051 0.3236603346065721 1.455996567129404 2.735316089522257 4.681906737931058 5.441905147729869 2.515886489574171 2.448960955730385 3.146521977916052 2.731499659874089 3.588533540868411 2.031395643486803 3.670231605610979 4.169045882490309 2.934095605222524 3.20270525858308 5.915362226141951 0.8502056812285446 1.732546666342387 2.347181271807131 2.063384510795572 1.0458325047166 2.345670497539579 1.966269353460177 0.8108856534638562 1.95523656152443 3.483873948935553 2.292910928906309 1.657671653596708 4.338836953696159 5.293639181004636 2.993057662353465 2.627383176343642 3.026908948285282 2.052413592731881 2.905230072578206 3.127403634267466 4.250379513563985 4.019385747711112 1.889582058704036 1.932644190853807 0.5795199539300029 -0.8009274304658902 2.642367879375314 1.507716108896886 4.16817005194965 3.281538915591519 + -8.563484724882073 -5.048272367908794 -5.085713424778078 -6.025127927379799 -6.517608265199669 -6.026517199723457 -5.047233487275662 -1.90226533736859 -1.227618189865098 -3.62459974326157 0.1833698173641096 -1.422282219589761 -1.616547683393946 -2.058963284400306 1.47738189444226 -3.832671435803832 -0.3831620286213422 -3.614649795980085 -4.984724257777998 -5.726124775589597 -4.043462180147799 -7.330907599622151 -4.999641411490302 -4.318667622355491 -6.05194536158524 -5.826843640526931 -4.234863387202495 -0.7794275158612436 -3.463671097862516 -5.40895986373971 0.7484279656118815 -1.793595543367019 -4.704379717740949 -1.959891622314558 -1.078120076576852 -5.28235361488305 -2.58396948205322 -5.938598525400607 -4.349609271402187 -4.840706887141096 -2.7166479214643 -1.315312882923422 -1.006957719013144 -3.021338283579553 -1.91958858521649 -0.357681510211513 -3.07089084280108 -1.945227053431751 -3.431757338034458 -4.177598181209305 -4.673664925103367 -5.887551819297329 -5.229953958540818 -10.53878572124518 -6.631316717009213 -5.08026025011236 -8.237517321734231 -12.14435948348182 -9.188484594133399 -9.417181025703485 -10.47902118514155 -9.540050120153182 -11.93650668581358 -11.9237007045449 -10.32279826999456 -10.96416215819772 -10.40153608733635 -10.47677321629385 -13.06090943062509 -17.35140103401136 -10.16054341366907 -17.67306350245781 -14.15472946812224 -16.92430780640007 -13.48141435715297 -12.9988688413805 -9.890008410215387 -12.8763900345084 -13.91458846905516 -10.98934819333408 -10.84376082448921 -8.351894325372655 -11.60353614870178 -10.34890253974618 -14.83869802718482 -8.682967292974354 -6.165809486286889 -11.70748121501902 -12.16597579633981 -10.15812078174167 -12.01635157269629 -12.8121560497093 -9.073325261248101 -12.8837351865659 -9.378488535910947 -4.042486238060519 -6.47200972904875 -7.795429424719259 -2.306931560292014 -1.403550169118192 + -8.644758471064051 -6.572257814947079 -5.974653637080337 -6.79876961386617 -7.432418937351031 -6.403657787559496 -5.958253261080245 -2.85072027330898 -4.286504752748442 -5.865712372755297 -3.052500695412164 -3.333837266825867 -3.083038024718917 -2.936370245549824 0.580048999886003 -3.661196994637521 -0.0847634497351919 -4.231422652207357 -4.793345950667572 -6.128068871021242 -4.340537304611644 -6.902680951239745 -5.081715399130189 -4.924377348010665 -5.54045465085801 -5.733900048297073 -4.584922668858781 -1.751646604305279 -4.047277416884754 -5.56635449496207 -1.309790183988298 -3.210821009948631 -5.753522685626649 -2.513230280101197 -1.961963720117865 -6.49194809244068 -3.778049248657283 -8.127857657688082 -7.092611322065522 -6.546438323258826 -3.723681321015192 -2.639827908681582 -2.295175059600069 -5.416581592919556 -4.81618398616679 -0.1498417957477329 -3.767908714618368 -3.732411038933833 -3.983678445284568 -4.244146167393183 -4.892540316887789 -5.98359082970336 -5.20278336158799 -9.217530789073408 -6.915648731418514 -6.090096785638707 -8.411945026108697 -10.7996542274559 -8.186804963033637 -7.834116954565786 -9.471728790071687 -8.555519854920931 -11.18717571280013 -11.07990436904947 -10.00783897334622 -10.38470421316015 -9.648186003416413 -9.868086663864688 -11.67732914799763 -15.36926044334905 -9.862844394552667 -16.8105820955825 -12.62873255665909 -15.8716190544983 -12.07430239531459 -12.9833878643376 -9.990951103130783 -11.73583108796447 -13.0768617646213 -10.16631051862964 -10.11595266437212 -8.084425515781732 -10.96372322758361 -10.18224827757285 -13.58896364749671 -8.63224098937917 -8.307365366611066 -12.19196686870532 -12.1365994544376 -9.893674569379073 -11.53282650609799 -12.20709843163604 -8.404443015335346 -11.98671531773289 -9.913729922547645 -5.32508374461213 -7.185840356406516 -7.471378483291119 -2.568841819826275 -2.481668248875688 + -7.918764769972768 -6.850297512806719 -5.907081560289953 -6.457313283914118 -7.140297904450563 -5.902971877381788 -5.898751082189847 -3.07290059717343 -5.768045033975795 -6.684306098497473 -4.971305223372838 -4.484246700983931 -4.046874155734258 -3.475098033128234 -0.4984391761477127 -3.42042938071927 -1.208436793703868 -4.550997652899696 -4.27013312076997 -5.964772580584395 -4.167347285138021 -6.005966475830064 -4.685546728895133 -4.730428508359068 -4.653460717199778 -5.185359590184817 -4.446433503348089 -2.70236036062488 -4.517082446195673 -5.528182399019897 -2.778232128886884 -3.935421584606047 -5.732613716055312 -2.994822395920892 -2.820075780593015 -7.232239651221334 -4.311488775602015 -8.560995003177595 -8.077828986134136 -7.325025097757134 -4.053472516435249 -3.584124178208413 -3.407365740177738 -6.631897211770024 -7.986014519126108 -2.925605020250046 -3.864510804843306 -4.755947890307766 -4.124495222866244 -4.155339267729232 -4.742646251293991 -5.722571025771515 -4.801031719950515 -7.688213662683665 -6.794002088722209 -6.612624490831422 -7.855594337087496 -8.916430272362049 -6.863610454179366 -6.072010942001839 -8.009832016201699 -7.052081965645357 -9.700411170123971 -9.578222787509731 -9.036251719464417 -9.352185605661361 -8.419055782729629 -8.816618924699014 -10.05347017323493 -13.00968802391799 -8.838073540537152 -15.06237948796479 -10.53000441936456 -13.83004018597057 -9.969773927125061 -11.39297066402196 -9.260458389077485 -9.878282270450654 -11.43318529352564 -8.689353535911778 -8.746519850496725 -7.165049759988051 -9.598925998406685 -8.792672699316427 -11.42388896468378 -7.824712193010782 -8.981420202023855 -11.46722984686858 -11.02478653321486 -8.769918763546229 -10.15644611247626 -10.69895590734086 -7.19588909983031 -10.31567093287595 -9.658636639276665 -5.955362178952782 -7.059594410895443 -6.575819928691999 -3.044954834433611 -3.351003904714712 + -6.459146125827829 -5.913723950689018 -4.98781499209872 -5.217780915147159 -5.830783865931153 -4.720256394793978 -5.002247984943097 -2.672821518011915 -5.664151387831225 -6.165831128007994 -5.370669443895167 -4.638989987910463 -4.237062553083888 -3.546746060063469 -1.503138011365081 -2.979953775810827 -3.070845025079961 -4.34348108369295 -3.446380264393156 -5.125053133189795 -3.529770321900287 -4.770075108845049 -3.854312199066044 -3.820748266917121 -3.494014068506658 -4.241259018832352 -3.819847188016865 -3.24519320618856 -4.601181313222696 -5.165626821586557 -3.394718496748283 -3.964465068263962 -5.207364168302774 -3.410880540709059 -3.585882473977108 -7.250335592516421 -4.278923157111194 -7.505660984181191 -7.232400066107402 -7.004634171173166 -3.687838772999385 -3.844488254172575 -3.892995987421727 -6.289727209370994 -9.385356427300252 -5.92827510696668 -3.308049358692642 -4.70533857365831 -3.761485552902741 -3.778336393436803 -4.119997809211782 -4.954329167029982 -3.995811310242061 -6.134828903623202 -6.086227026722099 -6.300045672970555 -6.568125077565128 -6.674032964918297 -5.313699374738235 -4.287964407451796 -6.187735553458069 -5.189106344940683 -7.565930037819271 -7.489608492072875 -7.291947556183004 -7.786481170631305 -6.696008358045219 -7.180613310530134 -8.05833044537394 -10.26922214345905 -7.077590933149622 -12.31436512048822 -7.973403452546336 -10.98206669317369 -7.384284001258493 -8.650047806321709 -7.737166137580061 -7.463012463889754 -9.059057745598693 -6.661857051622519 -6.845859903657129 -5.702717384236394 -7.654701236838719 -6.748804987510994 -8.696392412618707 -6.397360828713317 -8.058798613729778 -9.588444305288704 -8.967548534299567 -6.925983235036256 -8.048817088227224 -8.406514472389972 -5.57201066279049 -7.951089084890555 -8.49181403399416 -5.6871837747276 -6.071602035863179 -5.225052184392553 -3.382246080140249 -3.496821357226295 + -4.506567431373696 -4.148645122993912 -3.488981957561919 -3.453905769478297 -3.893951266443764 -3.140391560576973 -3.521507199780899 -1.843488484664704 -4.308189868614136 -4.639377820818481 -4.384884003226034 -3.804971608140477 -3.57996989867388 -3.042386763984723 -2.020077404228687 -2.215511934860842 -4.191441090126318 -3.529034212077931 -2.408781938000175 -3.72887732819072 -2.54618302154995 -3.368804995432583 -2.701796101631771 -2.522673725892446 -2.201930767361773 -3.017604832581128 -2.793396888519055 -3.065553319589526 -4.059736262546721 -4.3119809397067 -3.092144208731952 -3.316208884252774 -4.321875050711242 -3.367351619236615 -3.722978729432725 -6.262390863442306 -3.711700025782989 -5.697897396938629 -5.124464387968146 -5.665271408812259 -2.782489664085006 -3.317784196764023 -3.523438062087735 -4.732110583991471 -8.18114335612708 -5.809472047785448 -2.21549501224284 -3.771408054941503 -2.884192950537908 -3.033369295471857 -3.053987179422165 -3.677151098587615 -2.852903164382951 -4.549526352620887 -4.691283419429055 -5.046890536687897 -4.739601995026533 -4.322774764652422 -3.679109894547764 -2.635830098683186 -4.185269380210542 -3.204341827090957 -5.030917561427486 -5.010037682881375 -4.91304615106128 -5.72778410610772 -4.596053418998054 -5.038548894262931 -5.649764528352534 -7.192919121025625 -4.789851392517448 -8.781829411658691 -5.200661053022486 -7.653901914145536 -4.635227502185444 -5.513184898820327 -5.632280062351128 -4.779022014750808 -6.21471081414802 -4.320341502013889 -4.640378637229787 -3.879789894792793 -5.361021293375416 -4.556802980334396 -5.795930715029044 -4.580215269139444 -5.882139334336898 -6.855240405924405 -6.295416241111525 -4.643174140950578 -5.507344861460297 -5.603601050079305 -3.73652683309956 -5.130807909292344 -6.483797305969347 -4.515349428918853 -4.461262277132846 -3.589532179837988 -3.123604029548915 -2.826537315872224 + -2.406362394027383 -2.096787148082512 -1.766090694247396 -1.587057905169786 -1.798016110529716 -1.473572089409572 -1.778002268067212 -0.8251296837552218 -2.265857506325119 -2.588743319571222 -2.437526138630346 -2.236491205854691 -2.23641082123504 -1.973111206202702 -1.738311666011214 -1.129063289820806 -3.633901030236302 -2.22913348566999 -1.292698516390374 -2.0854464578224 -1.406923087455652 -1.97815045713287 -1.397259379729803 -1.221113600183457 -0.9316262724169064 -1.675746905100823 -1.532209199918725 -2.150142600366962 -2.834038028062423 -2.931670808189665 -2.042706752848972 -2.093046612068065 -2.865898064144858 -2.43503609475647 -2.696276106315054 -4.230242901389829 -2.577897475785676 -3.625010686556379 -2.570214118074091 -3.622168696807421 -1.611141581756783 -2.151220084245324 -2.382469299457625 -2.585369675136917 -5.210621605324889 -3.159235091305618 -0.8308025957444229 -2.355987362124324 -1.61217012925772 -1.944227831058924 -1.716005904945632 -2.062368484382887 -1.53335857939237 -2.825013313276941 -2.730902349738244 -3.089190499554206 -2.713838107227275 -2.13339407622334 -2.120934193811649 -1.240871239485273 -2.239681518725121 -1.377828472187502 -2.476232113474907 -2.469073182299326 -2.340290945568995 -3.427634876665252 -2.390452996296517 -2.691430882166969 -3.028800343052353 -4.007055986206979 -2.351728299763636 -4.965877101174556 -2.549634807393886 -4.292154759030382 -2.081133777763171 -2.694056890156389 -3.300445279412088 -2.197078829020029 -3.305049752441846 -2.001200914921355 -2.434298572231455 -1.951577676393754 -3.007803268645148 -2.50686922811019 -3.082218933684089 -2.655919947063467 -3.132693994812144 -3.765064609714045 -3.463091555518986 -2.292795430988917 -2.911884776971419 -2.696241464465857 -1.930519122399346 -2.235918545396999 -3.924701844684023 -2.662079595516843 -2.581584397816187 -1.862400241057912 -2.102517055220233 -1.60838396763393 + -0.5130454695063236 -0.2324989626504248 -0.1641155916731805 0.0202058650465915 0.03776445995754329 0.0055498033616459 -0.1014162116043735 0.1448360318900086 -0.1730646624637302 -0.5338226107414812 -0.1496287384288735 -0.3730878178830608 -0.5673173874347412 -0.5532219222232015 -0.716295266047382 0.1015591022933222 -1.763550299787312 -0.7295101168238034 -0.2591833172918996 -0.4967353735264624 -0.3152622872803477 -0.7475143382325768 -0.1392875159508549 -0.1682521968073161 0.1725561344064772 -0.4016300348303048 -0.2478598286979832 -0.81997196359589 -1.129816304837732 -1.214976708964969 -0.625114080565254 -0.5549160639438924 -0.8344577836433018 -0.670381633701254 -0.6168491230346262 -1.578854726987629 -0.9746036572389585 -1.384746445448627 -0.2989952736525083 -1.356385469494853 -0.4810443345741078 -0.6917920790538119 -0.8211540341308137 -0.3756894330672367 -1.833792309539945 -0.7291235233524276 0.5504301177546935 -0.7850480172814969 -0.2001877552447695 -0.6580916237535348 -0.3693624554061898 -0.4112677448752038 -0.2604046020269379 -0.9600079115170956 -0.5934154357064472 -0.9352016362790891 -0.8775256086919399 -0.3391643243994622 -0.7854233669521591 -0.1802584262825349 -0.5860090939573865 0.03800884510201286 -0.3162830886867596 -0.2573586065373092 -0.1567484975821571 -1.303722628341347 -0.4438398234160559 -0.5589461453237163 -0.63405668246196 -1.138563969900133 -0.1943551523727365 -1.497151635121554 -0.3744596949545667 -1.384122176132223 -0.04285569714556914 -0.5995489416109194 -1.162135092995868 -0.08617521417181706 -0.7765818403640878 -0.05849530011619208 -0.5399485938282851 -0.2147341412764945 -0.8986898950161049 -0.7300707481708741 -0.8391074402984486 -0.9129889322130111 -0.5790928800379334 -0.8982760948138093 -0.9408193048839166 -0.2527327177558618 -0.6444204840845487 -0.1397967387601966 -0.379789736456587 0.2884893316659145 -1.289016367285512 -0.5198321268107975 -0.7523851179576013 -0.241562643492216 -0.6157759127600002 -0.2200036564379104 + 0.9002222529743449 1.155493637299514 1.056398207569146 1.135740176760009 1.33285697294923 1.102393664245028 1.229470196834882 0.879120639860048 1.431669776400668 1.087942608974117 1.808657418529037 1.284069856308633 0.9724902278248919 0.8259003227576613 0.5771360248581914 1.186865643277997 0.2873504309400232 0.6201056752806835 0.541129270739475 0.8672532171694911 0.5579681948220241 0.2097594367878628 0.8796162183352862 0.57466767520134 0.9997745012660744 0.6257370808307314 0.8468742176919477 0.4408655539373285 0.6175753667521349 0.4613401907372463 0.690618249695035 0.8960331729485915 1.254184035242361 1.266971702816591 1.648457413277356 0.881996622085353 0.7321587147916944 0.8790840234810275 1.189780822497596 0.6014797708030528 0.3544153619823192 0.6442192336335211 0.6864632584274659 1.502863773285753 1.040622925253558 0.6549539966763405 1.659259660775675 0.6867514275545545 1.027741082089051 0.5769863396581059 0.7197848500127293 0.9413000459773002 0.7406536005009912 0.7961215577706753 1.189283827497093 0.8467174785891984 0.4760177258049225 0.9114116664350149 0.2248852702549584 0.5260986404479127 0.6095006151580407 0.8963414562831531 1.138944769403679 1.303272231351002 1.194994499106542 0.2444471372073167 0.9157496904226718 0.9841720625854578 1.046850572562107 0.9303228762655635 1.33521086240944 1.074736396432854 1.059216602166998 0.669318222993752 1.273437467942131 0.6692897480897955 0.4087304704753478 1.284821317465685 1.014804137335886 1.240864084014902 0.8033364609286764 1.063564644624421 0.7104481787955592 0.6743357469067632 0.75545363510264 0.4068923509985325 1.185449577797044 1.238201860938716 0.9027454995411972 1.185629277457338 0.9984104143259174 1.68493034709536 0.7539336818663287 2.059859897119168 0.8827390681108227 1.432838372624246 0.7877925905631855 1.064870547917963 0.8198575572696427 1.010405557879544 + 1.696606067482207 1.950260558936861 1.757999809487956 1.68075939064147 1.978477377415402 1.724332112877164 2.034242466237629 1.27479762078292 2.234708205440256 2.012455506886909 2.91553296314305 2.32761109227431 1.989106188499136 1.751861504046246 1.516738242647989 1.862816080083576 1.614830776309645 1.52308058806193 1.007994886214874 1.893270564352861 1.098050024746044 0.818984913508757 1.513515434446163 1.049433821892535 1.491122855964932 1.272948011501285 1.58799559243198 1.22671329354489 1.900667341727967 1.677784564315516 1.507834994154109 1.843054319995645 2.623048351415491 2.531336288584498 3.049778480863097 2.349209292628075 2.020555140595889 2.662361385773693 1.704229742832467 1.822855787548178 0.7633397875779337 1.52325019552427 1.72321566071696 2.696493077904051 2.891675247748253 1.339955104194814 2.312723963768455 1.744113561641825 1.797467083444644 1.481309840666654 1.373270110638259 1.741835561337552 1.310797467363045 2.011944918358495 2.18150770668035 1.86784034530865 1.239879110393304 1.57769301704684 0.8668599043542144 0.912618617495923 1.291852783879236 1.202338679245258 1.78944272548506 2.075511680770433 1.626771750903572 1.044919379688508 1.535423704339337 1.754601208144777 1.743676998332376 1.908138764876639 2.082579454385268 2.462338840705343 1.662243992264848 1.684072554831801 1.82752250059275 1.179162392181752 1.200751429075808 1.828205582398368 1.913944593432461 1.801586993882211 1.49345009522267 1.73222828962389 1.67072316868871 1.593961893616324 1.647617582347721 1.163388029739508 1.91777577846733 2.358501998397514 1.890548224922895 1.891454551423521 1.87443174227883 2.589291902746481 1.404439735113556 2.883215539310186 2.16507891746005 2.752724826823396 1.860633217511349 1.852578101799736 1.820737722788181 1.816533016703602 + 1.88678210119906 2.141711126008886 1.931641687027877 1.710900888530887 2.020949005782313 1.880959001966403 2.258811022358714 1.327166999690235 2.202877058225567 2.192289474656718 2.978410237366916 2.576893244862731 2.295414046435326 1.993912750144773 1.701851725423694 2.010821368674442 1.941468443324993 1.831143804385647 1.122411446987826 2.408909749006853 1.263745659907727 1.056606761434523 1.700387945995317 1.283082414760088 1.649544561747462 1.488564062216028 1.901190247517661 1.382675542139623 2.366050841537799 2.15522067085476 1.651778825007568 2.044930505429875 2.798191538189712 2.662385897749118 3.087420246831243 2.489743613863538 2.510622854389112 3.345900151944534 1.407981170791572 2.128022655406312 0.7648381195340335 1.803122870373954 2.071845016025691 2.956601326776763 3.372429089656123 1.382849893933781 2.446892652763943 2.074763733859072 1.996562567890578 1.850105335955959 1.556759042173326 1.908720876807365 1.409289819596779 2.336175075028223 2.25881868140732 2.058827583014136 1.497501499232385 1.721918598002958 1.156984959152169 1.054499450716321 1.517243997965053 1.100485932108313 1.761215085566619 2.140794865132193 1.403376858383126 1.231642116821604 1.503059346014197 1.818436671073869 1.570597001107672 1.878694463564898 2.121821498389181 2.719098538364051 1.553261392371496 1.764387432893272 1.751527394852019 1.082551981576216 1.24038876651548 1.66778360205717 2.007749035055895 1.725250582603621 1.588150815636709 1.813671267679183 1.97594058723098 1.962849676217047 1.910589858101957 1.358768172160126 1.75870765995387 2.479939171631486 2.071432169035688 1.923466679429112 2.023961357506778 2.634389027050929 1.606921112361306 2.817318293804419 2.416536769480444 3.183458315448661 2.351243597360735 2.004883745965344 2.235474214121496 2.021194901535655 + 1.607928184846969 1.807779369075433 1.680059603066184 1.374694201527745 1.618550590763334 1.668407739503891 1.979185338524985 1.120871103827085 1.55694263571786 1.783941091114684 2.199027832059073 2.13055946782697 1.9748093035887 1.62089398443868 1.187305568193551 1.69527078518604 1.436407292640069 1.592952080865871 0.9563815848559898 2.261337238567648 1.107408498388395 0.9732738005222927 1.48465470141673 1.26492471849599 1.538528964563739 1.323785221138678 1.8199277484091 1.043375171961088 1.998397609080712 1.901418892150105 1.231287089180114 1.57985134577757 1.98220769965701 1.853746334161769 2.097526801240747 1.640377326673843 2.194520853025779 2.739360115082263 0.7162687390873543 1.660908034627937 0.5101431223474719 1.561179862061181 1.780525980337188 2.319605888106707 2.566555568042077 1.094744290588096 2.127488914900262 1.626200505066208 1.7161741109594 1.660954248802227 1.380278318714772 1.561880107709953 1.128501238577883 1.770084977202714 1.664436611084966 1.64993039224828 1.444163940843282 1.482732991149533 1.160012943765992 1.047762340989493 1.416029252992772 0.8083833653390684 1.328025561022514 1.740012385038426 0.9401612897345331 1.123773019033251 1.094527660570748 1.434268019524097 0.9658840373012936 1.273386264787405 1.706120788330736 2.187354293651879 1.016036469169194 1.267538296669954 1.305458328090026 0.635547594617492 0.7859273647241025 1.098856421678647 1.578036729670202 1.262505264275205 1.276592915459332 1.494868599304027 1.76071520442656 1.836341251825615 1.723742834744826 1.143193114172846 1.125855542093632 1.901048960120988 1.687333995003428 1.501385152634612 1.646064990371087 2.097957277303067 1.477953314735714 2.147168704999785 1.842938253670582 2.77491519934847 2.263818415187416 1.608047269111921 2.069507994607193 1.649604823894077 + 1.085813173904171 1.152880825073225 1.189333104688558 0.868649153781007 0.9943453519881587 1.244118471207912 1.380129735320224 0.8013261248124763 0.6763453362364089 1.083880769536336 1.068442130443145 1.312528356000257 1.323704132304556 0.9549366692385775 0.4065442663904832 1.120701495936373 0.5472143652382329 1.038208107358514 0.6556837831558369 1.550384151465551 0.7788973867609457 0.7063254354179662 1.013690676169062 1.02548709811515 1.26870923039678 0.9255170005490072 1.472444254817674 0.5383402226652834 1.141439135293695 1.23178004230067 0.5765229806411298 0.8229556573842274 0.9239478408871946 0.761229690703658 0.9137963215562195 0.5765670062810386 1.427091647432007 1.376109583679522 0.06675804052429157 0.8361680163397978 0.2196344041785778 1.044605507140204 1.147990110939645 1.19297510825254 1.212407718222835 0.7144598595075422 1.540345045220306 0.7376387516519571 1.200358361147664 1.11682553242008 1.046034265865728 0.9758770684168212 0.6638346892632399 0.7458697722613579 0.873549199680383 1.025594035690119 1.279649719732333 1.03983420352597 0.9734480141339645 0.9884233051864157 1.143225803085372 0.5338674762597293 0.7891472219635034 1.169170703928103 0.5610165176003648 0.999808194967045 0.6346230247654603 0.9187786639404294 0.4340151251526549 0.6277041530265706 1.15752616343525 1.345507627062034 0.3988473964564037 0.6604788347249269 0.7937343741577934 0.1881931561874808 0.2280213527774322 0.4852848992049985 0.9848920092554181 0.713099158283967 0.8109099923112808 1.050002647194106 1.261174135887813 1.399727456008804 1.32466783803784 0.7688100200334702 0.5064554630898783 1.077131882790582 1.084148647683833 0.9277322727248247 1.030229595387937 1.362071062128962 1.176942839058029 1.271890690615692 0.9078248236037325 1.882830125592591 1.76431977019638 0.9730395930600935 1.486698096673535 0.9856944431420409 + 0.5851199164899299 0.5179085143754492 0.6912739905383205 0.3987091477029026 0.394703403719177 0.796391932075494 0.7119949744665064 0.5341313259268645 -0.03274136475738487 0.431334790551773 0.1385572705221421 0.5370989484363236 0.7052201325514034 0.3930240242643777 -0.1278871244658148 0.5559049069597677 -0.100733350302562 0.4919374185851666 0.3989393862866564 0.7088738508136885 0.4840149053488858 0.4559325431437173 0.5036324511456769 0.7085307877372315 0.9742188240488758 0.4982335443928605 1.039347468184133 0.2112050483374333 0.3160508619730535 0.612289283220889 0.0765353936367319 0.2376770946284523 0.3390797811553057 0.0407842048070961 0.2291184579107721 0.008307843384500302 0.7134643508210274 0.233893838298286 -0.2408755304563783 0.1610360278173175 0.09720974627725809 0.5708024327273051 0.6137251065374585 0.2180083154551085 0.2998301177216973 0.1859190111748603 0.9523327095424321 -0.04239466133526548 0.7330356739057606 0.5691910723917317 0.7652488354465277 0.471318811401261 0.2482937411746207 -0.07545736216161458 0.3499100033254763 0.5445385083412475 1.135469362803633 0.5814730679994682 0.7143473302309076 0.9558722860793978 0.8421810050792544 0.4186104894479286 0.3719858926469897 0.6941735834225256 0.3904664141482499 0.9541206996036635 0.3631564518000232 0.5157551511615566 0.2732905733773805 0.2957647429320787 0.7449708303829539 0.6267302262713201 -0.001896095054689795 0.3276742942689452 0.4703657524842129 0.04792055658117533 -0.06862663171614258 0.1308509822483757 0.532188875443353 0.3205987271817321 0.4251893939431284 0.7318997471033981 0.7519590955471358 0.909454425747299 0.9449726704642671 0.5012648036681639 0.2346958840371371 0.4414362761515349 0.5967574089845584 0.4876393505983287 0.4675023748241074 0.7719599319825647 0.8615135403852037 0.5580012652681035 0.1293655124100042 1.014012250241649 1.14365746545991 0.4925569564729813 0.8323650455940879 0.4432849986502241 + 0.3449447027996939 0.2748322078186902 0.4144078058598097 0.1473371026513632 0.05005502107087523 0.5107397384344949 0.2334166574291885 0.46267384220846 -0.2657909565023147 0.1051798814987706 -0.2071430872601923 0.1556900159848738 0.397952631006774 0.2129773660137744 -0.1111728457358367 0.2626983382165236 -0.05424045588415538 0.2437409761582785 0.3450153240519285 0.2527772150970122 0.3986890576397855 0.420818784943549 0.1809667166344298 0.5336317292115496 0.7836226250510663 0.2436174275790108 0.6948306570629939 0.2497333670071384 -0.06400061654858291 0.3970212287968025 -0.003908308050995402 0.1210381959126607 0.3845980903679447 -0.02074799467800403 0.1958894807758043 0.1720354705107638 0.4469183873410429 0.01486328347954213 -0.0936222407231071 0.0055951939739316 0.2536614857672248 0.4094418609809054 0.5413680135802679 -0.07234942823561141 0.2778226683623117 -0.1887590085098054 0.631435016918207 -0.2870290446536501 0.5227017199549664 0.340443623687861 0.675989648615996 0.2886547176602221 0.07525110294136539 -0.1944465457918341 0.3334992451145808 0.4120191167007761 1.067646274736035 0.2802220587764168 0.5104643762120986 1.003565308384452 0.6308754470053799 0.5281338096510808 0.199587979016087 0.5122510119472281 0.4216086489723239 0.947802093334758 0.3851469905093836 0.3390892078659817 0.4824595788404622 0.3375680552162521 0.6010956332538626 0.2866859714122256 -0.02646022311091656 0.4258605480972619 0.4662749646158773 0.3040660430697244 0.08997251847677035 0.178058692437844 0.375449850903351 0.2102733026465557 0.2726084743392221 0.6857912324967401 0.4793692063894923 0.6193591197975366 0.7527439455518561 0.5236935036537034 0.3704961059170273 0.2492844130829326 0.4484700307566527 0.3642104106947954 0.1732522373549727 0.529689406426769 0.6502037558457232 0.2229974399815546 -0.1330006063799374 0.5839862547436496 0.7122720587585718 0.4225702679923415 0.4955293469715798 0.3449542618745571 + 0.5039308677150984 0.6272237039629545 0.5250027844958822 0.2418002203630749 0.1313216950838978 0.5347506702892133 0.1513362602854613 0.6740464098620578 0.09132544345993665 0.2446058295081457 0.1293973138344882 0.3461826434377144 0.5118202121893773 0.4772539229986705 0.4553276118417671 0.4313712410230437 0.5941312860776407 0.4299179508047928 0.5854979018422455 0.4129044141536724 0.5856722594417079 0.7210516970844765 0.2173094272038725 0.6620145668937027 0.7922604351770133 0.2979222979738552 0.551851666168659 0.6317152966439608 0.1066525501983051 0.6454723407123311 0.3659076384801665 0.4925914855307383 0.7295500067311878 0.4633200275663967 0.5477114762084057 0.7929996868463149 0.7324834419736135 0.5867600771732953 0.4044817358673072 0.433937714197782 0.6677058366531128 0.6767791094298445 0.9910321332115473 0.4010551743405131 0.8045336799174443 0.238947212570082 0.7398441631860813 0.09934056161728222 0.6380887952627745 0.55649585880019 0.79445445747956 0.5008780138446127 0.2373879409938127 0.3907640704742334 0.7629731228803394 0.6429292407883622 1.097298517272975 0.2752067850342428 0.4925886411435272 1.157433120841404 0.6004965866682568 0.8739218938053455 0.3123402008213816 0.739006079005776 0.6431774876054988 0.9779203096422862 0.7084861730800185 0.4013714461702875 0.884674981986791 0.6410428252984275 0.7065181497164303 0.3649363689328311 0.324400686462468 0.8619150576068932 0.7641051160244388 0.7995649941094598 0.6676631665452533 0.5774054198645899 0.5093424425181183 0.3926624114621973 0.4005955942941455 0.9220021681783237 0.607879301444882 0.731528663412746 0.8241391212936833 0.8776579954751469 0.7589807339227264 0.5147527014161142 0.7000537604626516 0.601413267715543 0.2484962734688452 0.6668779541978438 0.6024841421076417 0.2955805989295186 0.1978585204633418 0.7194466629116505 0.6880036525508331 0.7592668761599271 0.6910292861259677 0.7890824503138383 + 1.039462673030357 1.456090759591461 1.070420010255475 0.7242929342028219 0.7044921540255018 0.9455004776027636 0.5717116632658872 1.180769328653696 0.935574815093787 0.8163385736334021 0.9901683714997489 1.074966514212065 0.9869547379785217 1.068224454122401 1.350572559480042 1.114231482084278 1.418726059940411 0.9888402597666754 1.117581960357711 1.010988627027473 0.9709740162325033 1.349263762109331 0.6795632535686309 1.079035097254803 1.042887601041002 0.6901793228898896 0.6310056002657802 1.20663058275295 0.6303148810434323 1.159691521161676 1.000445782864517 1.1850825491656 1.107125899697849 1.200581704643696 0.9892763794705388 1.38687164755288 1.375245842558598 1.192482783177425 0.9856163431541063 1.188997679565091 1.198924503200942 1.279916944012712 1.677723189199696 1.223574657138897 1.306160539239227 1.033982168197332 1.252349654393843 0.8833087389040202 1.013988274064559 1.110143791759128 1.021709628809958 1.006010873842371 0.7026644491152183 1.163792663790673 1.350246758293451 1.101897751153501 1.251925164244312 0.6555862315290142 0.7823625850194276 1.419990293685942 0.8082733240536086 1.434805355354001 0.7008265305676105 1.387353456664641 1.073355895557143 1.171665620096974 1.303152384357418 0.6782311706426754 1.326828465199469 1.133163830960257 0.9372176696051611 0.7349937699036673 0.9260463122627698 1.39892034728291 1.226384744182724 1.300182723192279 1.449464451039148 1.136231947205488 0.8284675576123846 0.8160927413514401 0.7649486892852337 1.347421833484873 1.189697894619258 1.365371728114496 1.152016896263376 1.46808163387368 1.221217273129923 1.063784685851601 1.264145059515613 1.126396439953169 0.6896430352680909 1.098958239505009 0.7198039225786488 0.6587969207157585 0.9234980313794949 1.213655966004808 1.122383850338338 1.292053807535922 1.373035177932593 1.64534466561183 + 1.758080023030743 2.356185384453056 1.946769018926716 1.533368470445566 1.699168942839606 1.726803515841311 1.473148058757943 1.92147205440051 1.986342427582713 1.636539121336682 2.090490957647489 2.129602996692483 1.647851861769595 1.799357260523607 2.287543353662045 2.176972636667642 2.297689652380512 1.709165912555363 1.845740140999624 1.667469082234675 1.39509519693911 2.175165827420642 1.512986140418434 1.595511828521254 1.519262015870481 1.337075809067755 0.8636304646424833 1.814144938574827 1.178296625200346 1.687707865978609 1.624505459713873 2.0170196663762 1.633644447159782 1.912054408799918 1.383330038075087 1.62786115821882 2.046760949227419 1.280318855518161 1.462689336121599 1.848262047640446 1.647740627846815 1.949538140477898 2.202498009605563 1.852936144047618 1.519867206725859 1.368126279456632 1.960572095211776 1.671522957631637 1.507806139253262 1.771213711015434 1.205366248606083 1.600070414157045 1.333027693001441 1.463364933138905 1.748269565837404 1.581385269082148 1.569299667690302 1.442483219527276 1.471743355900799 1.776825947920656 1.256674328733361 2.155186187681238 1.314657871639838 2.336142368778383 1.670401400245282 1.689863431842241 2.115984495308112 1.144401218587291 1.776762066482661 1.874808767012837 1.143706641039898 1.199932707371772 1.600854979740689 1.819466104338062 1.661108779389906 1.694939775552825 2.164509071450084 1.61667775942351 1.215738728601991 1.423846601692958 1.267408379737503 1.825010457092276 2.159674093541526 2.515187459539902 1.680144976971746 2.12457809195007 1.707845435439594 1.666443075682082 1.974195225609947 1.816966198506634 1.435046745589716 1.722691937431591 0.9643498453497159 1.143846078399292 1.681353946934905 1.651980818310221 1.879730244622806 1.765742505532671 2.319853096966028 2.618094494863369 + 2.360842303864047 2.876347069888652 2.912082025490236 2.510359908450482 2.9125522687591 2.764959953830839 2.710990484032664 2.778872548566142 2.878097580116446 2.43778582269897 3.170136110942167 3.203293790948919 2.28084818512184 2.513559860090368 3.04071893241894 3.315352214867971 3.504655920279085 2.334944807941042 2.610744716344925 2.08498591776015 1.697357701752935 2.995428659089157 2.562232499598394 1.967820246668907 2.153505275542557 2.075454366702616 1.125760789127526 2.320136787328465 1.473882379954148 2.093232952778976 2.029166348087983 2.878592847874131 2.524584168688392 2.375118189659588 1.630754839921906 1.510652922518602 2.531135027930993 1.056180325432866 1.954220981929751 2.068776263413838 1.839722593311535 2.367960603120025 2.373834940373541 2.080882939603825 1.561711624261455 1.678365133605729 2.575767365275299 2.172738671570912 1.965937962091857 2.337701899390368 1.227082339685467 2.087632849030967 1.935390460262624 1.020905397667661 1.72308147883632 1.884704769940186 2.062304237743774 2.572866835209425 2.595909563261216 2.202316192273543 1.869963209624832 2.926301485053159 2.047683626114235 3.324767792713828 2.242664264323594 2.524831657068717 3.03775649427871 1.758392419613301 2.268975763863182 2.972667995036772 1.222039166968898 1.581911680805206 2.188310613539215 2.04769073214311 1.895260468996639 2.027954367471324 2.603564705636245 1.83056933185253 1.602235556146979 2.175005647871103 1.795494493498495 2.224797987487079 3.353485654601172 3.994792884893684 2.340303772475465 2.682336317414865 2.277118462079102 2.17003722692175 2.674609841437359 2.579957663040659 2.421137430767885 2.500213192251067 1.286794861222006 1.62448647884321 2.102229101951707 1.634404661487224 2.679311618545853 2.03102308471432 3.291366390959411 3.377821207557454 + 2.568641409056909 2.812473029068315 3.651406856701215 3.438457040152571 4.060695556974679 3.868816702612094 4.051887788860768 3.609360878719599 3.278624269062675 2.957276091410677 4.101441128732404 4.005274951602132 2.714725497079826 3.116410597727679 3.525667236057785 4.164827606651215 5.023963137931187 2.665419060644865 3.235785961778674 2.146456128534737 1.774051478742649 3.598687092634918 3.620963357374421 2.0440670114588 2.844096827633621 2.718096105430959 1.287375979965873 2.562789288810336 1.363385530822711 2.351207856544988 2.167516464192431 3.673374795533221 3.659633478874994 2.434500130794049 1.553042210852212 1.234196014389667 2.85826630987993 1.167972932742676 2.745003336719105 1.777139743929183 1.700076037686244 2.338363311904828 2.32208046808006 2.146273236048231 1.729082394960024 2.02308594197254 2.870557001498622 2.384874828482623 2.265595310509752 2.70854874319329 1.068572553757747 2.367819580832929 2.324149223433892 0.2357905220760301 1.254911704643803 1.895673901898533 2.676956760009034 3.894452374463981 4.107792144537001 2.662772216125262 2.490649797177529 3.578642623548944 2.729988473649541 4.011782527802552 2.497138853308797 3.396646164813774 3.877945567859115 2.427533386016535 2.795864973906987 4.423732879549789 1.148017576300845 1.772633633449004 2.588007024320177 2.168044978025591 1.827689421244031 2.353533072829194 2.669578012085537 1.688125699392458 1.967699069342416 3.020258901273678 2.249588264867498 2.447694001621983 4.544922458000087 5.422306069018816 3.073224996095746 3.040609931023653 2.933497980523043 2.560004522351051 3.291046922907299 3.402361675269276 3.618746161409035 3.485042030915793 1.652206645740989 2.070156081369532 1.955448939650068 0.9813099227471866 3.203673811351564 2.108605483820327 4.158621054083881 3.764194419429167 + 2.252280917178268 2.346324704436029 3.877067254101348 4.107445146903046 4.866948445390335 4.812896195851863 5.230456804107234 4.276204722165858 2.996969221039308 3.016842374353018 4.919098370040047 4.362894469342564 2.88242140565319 3.555617760879713 3.822832543693849 4.465078997890402 6.155755863109079 2.606527580715067 3.574707820614549 1.838830482582921 1.585513423070779 3.817958175018248 4.490912721770655 1.835744089634197 3.478746684242651 3.110259750726982 1.25667776211958 2.319475403938668 0.7836585079603537 2.424600633458198 2.145095788009485 4.214564000889055 4.577259731888812 2.069167652407785 0.99140022720659 0.9611916823877067 3.201859304732887 1.962309285788353 3.864018469924022 1.187729621049272 1.28515335224921 1.897149832068479 2.311563179272042 2.407101092602892 2.140858055546198 1.309725165672065 2.769427638206166 2.506420128725444 2.32495637491553 2.857591818109768 0.817745330254553 2.452633392272411 2.373615852135742 -0.09025153457689328 0.5310833051225075 1.619593812984391 3.28233270704186 5.181134562169973 5.865829243621988 3.117125261156076 2.912156181188244 3.910549010773707 3.156397235767315 4.093643854345828 2.223863580538477 3.869245205836023 4.399959719664366 3.003759800796757 3.264740231032761 6.051141827031188 0.9683918215678204 1.740449179342249 2.76780076579962 2.347260949171186 1.446271156548391 2.595182338584543 2.354423981815387 1.189944041874924 2.294401293942087 3.861478998773009 2.554271422887524 2.427648985841785 5.49595859301121 6.312411657102331 3.828637911439472 3.176776896906802 3.506323516487299 2.923778284006374 3.85102340389426 4.351485732625406 5.032509991166535 4.779715672543716 2.054980488203455 2.541458990565388 1.235704822693833 -0.1745745112409622 3.236391977145814 2.152849208812654 4.919955050258356 3.915700811152078 + -8.659928148405015 -4.948544751441659 -5.58077993994084 -6.769980715216661 -7.321509929344757 -6.605714341378189 -5.587133486951643 -2.076485466270242 -1.270722795061374 -4.158421826374251 -0.2233894111468544 -1.860876113039922 -2.097744894238531 -1.856713289300046 1.776235415178007 -3.069486794101749 -0.2691128954541 -3.62016947586676 -4.45081558826314 -5.416993932935839 -3.849482677759624 -6.945456263432789 -4.741095152992784 -4.242053263853961 -6.156802920835617 -5.92639125275673 -4.139593800660805 -0.7836893088333454 -3.660445903512027 -5.389666532442789 0.8733038994387243 -2.017704624895032 -4.654569437125701 -1.874971061982592 -1.155959363322495 -5.060518020115637 -2.265602066107846 -5.392328545682133 -3.252233811169674 -4.346718559123474 -2.738296544875993 -1.396864866628675 -0.9211131458530417 -2.794322775982209 -1.985367880353378 0.04873742653906987 -2.731140713920585 -1.748225500973092 -3.263349335420116 -4.038108558537488 -4.706407243481863 -5.81658151055808 -4.963259111919797 -10.33591323401561 -6.404982522604087 -4.773681035135724 -7.891308768605086 -11.8777556766654 -9.106905212237393 -9.3171585776592 -10.6559366672105 -9.900282127828405 -12.56167027129482 -12.47413618928113 -10.19972739639707 -10.5961797582695 -10.03987646842143 -10.03242401615466 -12.7946841015746 -17.13658328140536 -9.964587379068689 -17.80285806386382 -14.23081460023241 -16.59743343334685 -13.34444690711825 -12.55241144504623 -9.607591729281467 -12.57564973964145 -13.54118079996169 -10.90258885354069 -10.74669793253315 -8.491959301547922 -11.65577993811189 -10.22396986383637 -14.95112205902694 -8.962206260654284 -6.065015561959171 -11.83032885029684 -12.31166053953075 -10.11133739458455 -12.04132704731455 -13.0252447715593 -9.053847254575885 -13.11665501620155 -9.748763164032425 -4.363903710705927 -6.710609424138511 -8.038473712403629 -2.603516076666324 -1.491838046942383 + -8.611968818078822 -6.529238385406643 -6.375586918788031 -7.359204753156519 -8.147277771011431 -6.856428884879278 -6.338296065776376 -2.896229379468423 -4.18579692664207 -6.235220844426294 -3.318201328074792 -3.67662044696408 -3.455150862939263 -2.625375491930299 1.066118413104959 -2.937317543673544 0.04819689351541001 -4.18211237059927 -4.269061672866883 -5.834073816742603 -4.145458305663851 -6.564821950143596 -4.8547207873562 -4.896440404204412 -5.617042654281249 -5.814917404419248 -4.476235154426831 -1.714473180187269 -4.232854385887549 -5.48217397740882 -1.135697215504024 -3.217382900981647 -5.634515418789306 -2.342395889660111 -1.895254923851098 -6.162637495095169 -3.503328162248806 -7.549611421876023 -6.05558610584535 -6.06249732037486 -3.765459469679172 -2.751980425711054 -2.237709126917252 -5.215068503890052 -4.847764564660396 0.2821115435963968 -3.383182758723589 -3.583660490390685 -3.838045851874085 -4.117659302888569 -4.906303493135511 -5.878735055662958 -4.890409464068398 -9.009410676245352 -6.728442870833533 -5.799918440655802 -8.025960175157707 -10.46393318960691 -8.041613200436984 -7.660367185635778 -9.590362175171336 -8.741286335367022 -11.62248438641745 -11.44707895934516 -9.847657175167114 -9.938346486222144 -9.153662310323853 -9.314895341276269 -11.32384741631813 -15.07998903539192 -9.571005962698109 -16.86312418454327 -12.61963376660424 -15.50951395023185 -11.86328148367829 -12.54054752548609 -9.684480023230208 -11.37167957016027 -12.63350358874914 -10.0337010887024 -9.928295708659789 -8.135887652939573 -10.8765518089549 -10.05828222907166 -13.65044613435862 -8.850920280264745 -8.208504221035128 -12.27382895485437 -12.23106714987989 -9.776461189616384 -11.51418330123306 -12.32022397828405 -8.324137888992482 -12.12807020088803 -10.13009298656107 -5.579304955106636 -7.284146287606745 -7.539759454890373 -2.703176741357311 -2.435225805448347 + -7.750514155392011 -6.798633200560289 -6.158496203977847 -6.797081538199564 -7.725103355049214 -6.221880409917503 -6.124239673183183 -2.999688464100473 -5.556050948227494 -6.893421777385811 -5.07527145948734 -4.741973946845974 -4.308198645871016 -3.107140106832276 0.04922354080781588 -2.812104219869525 -0.9812862642836535 -4.44782468312269 -3.761358830985046 -5.713742510957672 -3.967284004773319 -5.698924723521486 -4.459999829374283 -4.709144154127898 -4.67271717357653 -5.225269439790281 -4.306123201989976 -2.60329512066528 -4.658181717505613 -5.371142137684728 -2.551795337940348 -3.710408599819857 -5.513500940052836 -2.724998357130971 -2.540561760745277 -6.786153505576749 -4.03293433553921 -8.00277039162097 -7.211269135846123 -6.84566033937972 -4.08241236665981 -3.676679767569567 -3.327926904530159 -6.438199893340652 -7.946107357582257 -2.54641021155544 -3.43655837577829 -4.609889201695523 -3.98464462463744 -4.026332031511174 -4.717077310289824 -5.569736229537511 -4.454648687340978 -7.475536023132008 -6.644880689273123 -6.344309782924029 -7.427383786462997 -8.521077381836221 -6.657382150980538 -5.823736252502272 -8.05398347543607 -7.047031632572271 -9.916410155642097 -9.71893570240718 -8.830909740667266 -8.854037070366758 -7.826000202700016 -8.202125655105192 -9.654728451141636 -12.67600179401052 -8.475643318306538 -15.02984446917253 -10.43385987019428 -13.42104297238257 -9.66663891974531 -10.9690664464224 -8.927730233672037 -9.457322802933049 -10.91723557468958 -8.471809925251819 -8.460168948258115 -7.110293861885793 -9.386334972402892 -8.688967061207222 -11.39583118597898 -7.950114008070614 -8.945114249406288 -11.50522896172538 -11.05737514555403 -8.568797013303993 -10.07104232446545 -10.72361055542933 -7.042384560845676 -10.34926550178352 -9.729454269308917 -6.150607838990254 -7.041674078162032 -6.492321536381496 -3.030303746574191 -3.200634503845234 + -6.166254049108829 -5.784086206949723 -5.058067487989319 -5.325730703101726 -6.253439901374804 -4.901039315140224 -5.080956702571712 -2.494908793720242 -5.375636516146187 -6.221644958717661 -5.306149621079385 -4.815684916397004 -4.388245764259409 -3.166313900039768 -1.016605671537036 -2.51081784775306 -2.700718856674484 -4.183649222018175 -2.956375511905208 -4.916647900616226 -3.310527889927471 -4.465363757393789 -3.598630973443505 -3.75686704955956 -3.433835131974774 -4.22558463250607 -3.636643501500657 -3.075571166129521 -4.666805001523244 -4.939951029575241 -3.119630830637107 -3.551068821882836 -4.86330501230168 -3.043499083227289 -3.061023796928566 -6.715965108332966 -3.943893958355147 -6.981923030913208 -6.530393396008549 -6.516834814249705 -3.668890103704143 -3.860018269777356 -3.731880805227775 -6.052648867158496 -9.243518633712512 -5.645477755995501 -2.844582936283516 -4.502630918580735 -3.604205516405273 -3.621651659038434 -4.034488176651394 -4.74453290221777 -3.62625230643016 -5.906768996906976 -5.955766796526405 -6.045946249492772 -6.10174898263358 -6.231405304773943 -5.052236040742173 -3.967667573035328 -6.146742223060258 -4.999198833472292 -7.560377677567885 -7.393852923734812 -7.035310656770889 -7.263944200567494 -6.048494989550818 -6.557265476194971 -7.656187199005217 -9.917569585279125 -6.668931412052189 -12.19252115688869 -7.796524252058589 -10.52092760082087 -6.982913590920361 -8.253440484387738 -7.387322277382737 -7.004820736252441 -8.482149775352809 -6.338027839410188 -6.465216047410422 -5.535486341978412 -7.339951845281121 -6.633753724356211 -8.539148907715571 -6.399225336427662 -8.083843782171243 -9.562251499564809 -8.922005867918415 -6.626875827378171 -7.874089720746269 -8.345357383619557 -5.337761276254241 -7.862626109646953 -8.419166946921905 -5.803777720597282 -5.955921386748741 -5.012759328405082 -3.235419562784955 -3.274409918250393 + -4.114178651350812 -3.893767968933389 -3.374466130102519 -3.344653380190721 -4.136130143779155 -3.18326598724525 -3.464401991150226 -1.5789240926606 -3.972725013023592 -4.551119461310009 -4.160471724648232 -3.889003685464559 -3.613001975572843 -2.66770176375303 -1.652067133595665 -1.850159986643121 -3.68762102556002 -3.306573800778096 -1.939594263367326 -3.535090147895971 -2.288793408097263 -3.03621980193202 -2.390827498456929 -2.378047084132163 -2.048660637781722 -2.940832474087074 -2.563156446369248 -2.831392487027188 -4.029344969505473 -4.028730423415254 -2.776615665296958 -2.791921216241462 -3.845656450806928 -2.92555054604054 -2.989330695483659 -5.701217621057367 -3.291268500849583 -5.192957435858943 -4.510915786982878 -5.159087893473952 -2.687760050481302 -3.209201148671582 -3.24168237363665 -4.400452420217789 -7.926283366936985 -5.571932174027779 -1.729195521794921 -3.471783392537418 -2.687685431877981 -2.822184466444924 -2.890962733482411 -3.40843643021401 -2.468765315568817 -4.288781361659858 -4.549223709071157 -4.793034872777753 -4.24651040545541 -3.846931343723554 -3.371202784836896 -2.249157234205427 -4.056346956839931 -2.856329925381488 -4.828054321334093 -4.702551584286994 -4.605529036089138 -5.20555197676731 -3.93986429988945 -4.450404241988508 -5.268450714973369 -6.834809793177556 -4.351700117782457 -8.568209705408663 -4.95597360895772 -7.147358421272656 -4.142055385884305 -5.149416820407168 -5.282997041174895 -4.311532819527201 -5.600585527401563 -3.891249008425802 -4.180603136461059 -3.606944595315781 -4.972006872550082 -4.366789599390358 -5.479706327862004 -4.438334056320855 -5.907032225679359 -6.735617186807531 -6.157027647799623 -4.238696827516833 -5.227694171513576 -5.455178325209999 -3.420885299266956 -4.914545962259581 -6.267478758520156 -4.514043596172996 -4.250422169008743 -3.257744263146378 -2.836232160437248 -2.537686333885549 + -1.947028587816021 -1.706484254187671 -1.488247473767842 -1.297220188644133 -1.858541083827731 -1.384893228401779 -1.60097064524598 -0.495587902936677 -1.904861866074498 -2.369449326852191 -2.078172159715905 -2.204131958416838 -2.133374334505788 -1.592151417094101 -1.459100008794849 -0.7939261836709193 -3.057240782251938 -1.940200261909922 -0.8463544515434478 -1.868924987815262 -1.095949105005275 -1.596601636792911 -1.018522251106333 -0.9812830558298629 -0.6799645549326669 -1.539559564269439 -1.256168909727421 -1.865933286731888 -2.699854264663372 -2.598556933080545 -1.696408081010304 -1.536140695583526 -2.269416390066908 -1.959649299299599 -1.86037706949719 -3.708348157839282 -2.074633800261381 -3.121241353818277 -1.98791184309448 -3.097748112790214 -1.42721038246691 -1.895544708441776 -1.981622625687123 -2.146553848289841 -4.865774612396137 -2.898506082388394 -0.3363264863218873 -1.960806329651859 -1.362942493578885 -1.658862175417198 -1.465082907740907 -1.74106719808276 -1.141170194889128 -2.519831904579405 -2.548215749086012 -2.824463790073423 -2.211334707488277 -1.638924908420449 -1.777760219822426 -0.7960641496412109 -2.029072922194018 -0.9138111896800183 -2.121105703770809 -2.003131332072371 -1.993000780639704 -2.928623560881533 -1.7670686763704 -2.166079050216467 -2.669150312738566 -3.637706053763395 -1.890005558852863 -4.659322452935157 -2.254119181656279 -3.758392815259867 -1.512784342899977 -2.371021876017039 -2.969311575498523 -1.748205975385645 -2.682037663094889 -1.485273955211142 -1.916690096700677 -1.590809578320659 -2.572463313957087 -2.186108965750464 -2.596864393506621 -2.367198210637525 -3.073808522220133 -3.528083598255762 -3.226946671122278 -1.789407463300449 -2.524189334759285 -2.462241329452809 -1.540652676712853 -1.900393718198757 -3.577434266742785 -2.508286858079373 -2.271257958105707 -1.416746358921955 -1.658180497357534 -1.236210203497503 + -0.01779129881469999 0.2691949545842363 0.2391724496264942 0.4393327052239329 0.142203141025675 0.2121399416209897 0.1732012191059766 0.5153788728566724 0.1984793040173827 -0.2034308780530409 0.3035477078701661 -0.2040869345291867 -0.311028552143398 -0.1372212361611673 -0.4416550729511073 0.4806342887422943 -1.199188191658322 -0.3786297279639257 0.1619007689259888 -0.2329214703931939 0.05397866554267239 -0.3122239473086665 0.3042645982641261 0.1565652148827894 0.520708057374577 -0.2116632764445967 0.06985108972003218 -0.4965032988548046 -0.892766775774362 -0.8291619789742981 -0.2574825705396506 -0.02206580683741777 -0.1446089536293584 -0.2035505488638591 0.1893057405777654 -1.134701013277663 -0.4086549747069057 -0.8802837131952401 0.2513819685655108 -0.8243431189348485 -0.2121872922361945 -0.2950872666215218 -0.3394022669563128 0.1355648333028512 -1.438900447283515 -0.4111210577239035 1.039679047093117 -0.3353417687740148 0.1035612297291664 -0.2922775257393369 -0.0312173683068977 -0.05230463462351054 0.1342648453337461 -0.6135556991339399 -0.3523061350133503 -0.6566613676095585 -0.3850738480396103 0.1599921195556817 -0.4194936743266453 0.3127388858150653 -0.3082979984318399 0.5686602988116647 0.1343496674016933 0.297044807986822 0.2080908461502986 -0.8506418352335459 0.1141723427717807 -0.1063794441406571 -0.2821462817064457 -0.7461695559395594 0.2944295539418817 -1.099422945000697 -0.04637408166308887 -0.8457197278330568 0.5779922840738436 -0.3243686922360212 -0.8564008913403995 0.3250487041877932 -0.1678602996234986 0.519558989003599 0.01364910777328987 0.2110171440062913 -0.4417743671365315 -0.2616252193147375 -0.1995117123037744 -0.4950078316960571 -0.3785349357349332 -0.5382954310293826 -0.6175109034629713 0.3254807879566215 -0.1606060868507484 0.1695518255364732 0.06987221500457963 0.719191469506768 -0.8470516953748302 -0.2053712661654572 -0.347823218384292 0.2943749522564758 -0.03288550839351956 0.2472468598696551 + 1.409589436545502 1.727604676038027 1.541696434171172 1.627585079811979 1.57030757432949 1.40610527084209 1.572814234066755 1.266793480368506 1.801026083492616 1.500333661901095 2.301359696775762 1.58714413416601 1.381208329832589 1.298846695972316 0.9235798301015166 1.649989416340759 0.7627384364441241 1.017581805822374 0.9346961027804355 1.180607019348827 0.9763443035517412 0.6866607843912789 1.371040592319332 0.9589363029410833 1.436844931638916 0.8630374221611419 1.20116696349578 0.8056946155120386 0.9535270459782623 0.9104389810636349 1.069844512512645 1.375485963459141 1.999364632072684 1.698629827822515 2.332477921221653 1.247834062769471 1.34060180537108 1.374745634936517 1.68856330403014 1.124984202810083 0.6879047350666951 1.151034806574899 1.197016699172309 2.031959736331373 1.470288482798026 1.073437418501271 2.133512702898571 1.135541517977344 1.377474539302057 1.014225215085389 1.131896752823195 1.315949909375945 1.132219003004138 1.168293530427036 1.492384822551685 1.135495231192181 0.9416772430013225 1.40317844180754 0.6011734137678104 1.056754290749041 0.9340873216860501 1.445966044746456 1.627348767696276 1.874126480062841 1.549753988641896 0.6322826755204005 1.389150961975247 1.367725658084055 1.404427300629322 1.35133812326967 1.858649808709743 1.555821628833655 1.402631046817987 1.194804003673198 1.922403500095243 0.903567771492817 0.6983026686543781 1.653780678308976 1.598552449151612 1.86045430620743 1.374865869822315 1.532522811676699 1.168682092043127 1.264995864984485 1.510174262688452 0.9179837330793816 1.532829391137057 1.703143397210169 1.286922465591488 1.798896829302976 1.552940807163395 2.050587897698279 1.243626407744159 2.550667344650719 1.36634529910225 1.885909787277342 1.265387266867037 1.641085890150862 1.470987827447971 1.557172086623208 + 2.210930885157723 2.555190723040141 2.285937014035881 2.193182849849109 2.307360093655006 2.099017583648674 2.41311653732555 1.658998667298874 2.588112495162932 2.469347696569457 3.387771691479429 2.728135815712449 2.517466151119152 2.276412708630232 1.954303634400276 2.401493775043491 1.963971700288312 1.94425295844303 1.373220046072674 2.242279804071586 1.544534206186654 1.314393715343613 2.026947273814585 1.465045891293357 2.005232465846348 1.552102235902566 1.973441571710282 1.64561679687904 2.329828972069663 2.196043273615942 1.886996245095361 2.264588163699955 3.378730323016498 2.919048106819901 3.595410635794906 2.654977370495544 2.65590531845487 3.139045619566559 2.1644369946398 2.32272411721533 1.131201668309586 2.094451806471625 2.219969154524733 3.203276160828864 3.364721101216503 1.817166026694395 2.76761622573234 2.154413120047593 2.179508521283424 1.968643646388955 1.835990832641983 2.107364306232853 1.693630252238108 2.394369505091163 2.539996343632993 2.163042353644414 1.669363107377649 2.053019805596705 1.242849711626491 1.470960810831912 1.641643754851117 1.733119210005498 2.267432906717659 2.603714781878807 1.949541686066368 1.360903610075184 1.921953333996498 2.081541733204176 2.109895567577041 2.349261375100468 2.645360899572552 3.009919275878929 2.006294244507444 2.189901315432508 2.481934682531573 1.404744893827228 1.498049506406915 2.164503999607405 2.475806595775794 2.449896588051615 2.070239546253561 2.228155326533397 2.114362977511519 2.256273598065491 2.460983777291858 1.720742347579289 2.369888862438529 2.89128310705064 2.299597867997363 2.492292188180727 2.466229355588439 2.988581661142234 1.911887164118525 3.39674280735926 2.641868416569196 3.306243292390718 2.38394552020327 2.409148256672779 2.450300164660803 2.402291277375902 + 2.407437259778817 2.756760259115254 2.47282855460071 2.204387850142666 2.397486085625133 2.298353653008235 2.640054796444019 1.693754011146666 2.525897776657075 2.652619763008261 3.376855693320977 3.009715353640786 2.87778707803227 2.532416644526165 2.185686835595334 2.578454903919919 2.178723613581496 2.252405679012554 1.46140668434964 2.774803184904158 1.711019669113739 1.545928123821795 2.208076520342729 1.708262481300949 2.225488677926478 1.805057388948626 2.311429803681676 1.865153168000688 2.876434818565031 2.730635849799 2.016924887268033 2.4239174101549 3.519221603899496 3.001971622577912 3.533989086714428 2.744714177675633 3.154892112313291 3.795731425145959 1.871658852368455 2.595410051702856 1.135622246905768 2.390182373739208 2.531627486903744 3.42639946428244 3.865364204549053 1.787819528313776 2.884872058129915 2.444685678850419 2.398387733248455 2.36088978931366 2.042834097199375 2.244112429534425 1.778693739684968 2.723424022266045 2.662743666620372 2.361734409136261 1.89163316822669 2.175705912937701 1.52521442531247 1.632087032534059 1.873692470489246 1.590181066768309 2.198440873690743 2.592358095109375 1.689601220859913 1.491750136941846 1.817729566169874 2.105930757085844 1.939866368413277 2.320160262890568 2.71982170100091 3.30642392594018 1.886740023182938 2.253567831394321 2.392516946485557 1.349975494492355 1.574547023181822 1.989577181913774 2.559215865872829 2.392970927369333 2.161735579433298 2.326615845793185 2.393128080092538 2.639976049555116 2.719928650827569 1.916102727445832 2.253027203154488 3.036384000352427 2.469868087548093 2.468592426208488 2.619102204189403 3.048792646957736 2.110360239326837 3.322776821332809 2.86248600842373 3.801412789216556 2.901770547567139 2.500757501573389 2.78705921310393 2.600354317273418 + 2.140438478516444 2.423504145233892 2.216741967189591 1.827507238107501 2.004280741857656 2.102144502016017 2.335340038669528 1.464513080230972 1.839026952649874 2.211353955914092 2.491917598530563 2.524310893502843 2.529542578646215 2.117809714354735 1.641495557418239 2.234297089519714 1.61096926304981 1.996353187473687 1.275414908581297 2.627135450216883 1.529050639608613 1.439253111198923 1.963857298083894 1.686636806995693 2.158520817290992 1.672804700792767 2.246680411786656 1.580656371384976 2.566003207877657 2.501290025847993 1.568704712482941 1.942356380313868 2.631219332455657 2.134117277353653 2.48668246091438 1.839102643989463 2.823068895958841 3.157609703151593 1.206868048150682 2.095421480989899 0.8601961586482503 2.123905307985751 2.196494407044156 2.751963786096439 3.005942204628752 1.414662316904014 2.557753036655555 1.981585223233196 2.130438936432256 2.171528087824299 1.866059659825623 1.857046981317353 1.48205416959081 2.164802582450648 2.105191856713645 1.967176554819162 1.813906580266121 1.914253439103049 1.517118708578437 1.638292650437393 1.767283455622234 1.252526187156036 1.715812368875049 2.112103627237957 1.20763642332895 1.367912313136912 1.364340476473444 1.701765205367337 1.333719994603598 1.695307126596163 2.323835104281898 2.780283777683508 1.331921596065513 1.746753358005662 1.919011307531036 0.9877288720863362 1.178935430275942 1.424520730357472 2.129948301017976 1.935962018027567 1.840022842115559 2.018911931013918 2.144571156899474 2.475762830408712 2.473053070873448 1.665523697847675 1.6070901461826 2.443595367215721 2.050755984968418 1.963770208694768 2.217379823650845 2.519222104787332 1.958679491124713 2.625819461733045 2.261404218115786 3.431450168063748 2.83561866621676 2.037550382927293 2.544988581854341 2.190447879280782 + 1.63286035067722 1.764250028027163 1.713915125495987 1.278069799533114 1.362166820064886 1.673618497123243 1.694957653409801 1.126337438698101 0.9176276918879012 1.456252084750304 1.25799645828738 1.619482179681654 1.783610211226915 1.364158144316207 0.7726487446379906 1.591279977096747 0.7148355773197181 1.414908682730129 0.9657755186708528 1.904184859995439 1.156320133952249 1.144008475799637 1.451565389084863 1.437748927668395 1.913222924515139 1.3004872681704 1.905129938350001 1.100077580824291 1.73011532777673 1.814169328792559 0.8775645197338235 1.192390815891486 1.482624204893 0.9729939897488293 1.258994977310067 0.7243064240856256 2.016613152206446 1.767756051827405 0.5604679433522506 1.244670402360498 0.5393878050517742 1.559387154089109 1.522513738042107 1.591367037908185 1.545011464426381 1.062235873745294 1.975631823348543 1.10701564874671 1.624580755134957 1.612191918030476 1.517051839696251 1.236368392664644 1.002264180140628 1.14919826321966 1.344429081267663 1.364698659259375 1.642937941611308 1.452451486748032 1.320250625118092 1.587865043245415 1.485642980599707 0.9440180159949705 1.138306161376022 1.487165271173581 0.8434855972591322 1.279672003460291 0.8886273702955805 1.185316551316646 0.8044801801734138 1.0214275863691 1.769676091826113 1.907982824195642 0.6949180593073834 1.133941251631768 1.371143662101531 0.633951931118645 0.6854047165679731 0.8262643715534068 1.539535250760309 1.369494995175501 1.356333877886755 1.580373713902645 1.612426472830521 1.961808161579029 1.97637055369978 1.238981855209204 0.9413274865901258 1.584481236736792 1.406245961354216 1.304776585919171 1.562012085531023 1.793346778496925 1.620926499002962 1.717640877497615 1.31487518378708 2.557442977966275 2.352383821766125 1.356963175870987 1.925105608301237 1.47947909927357 + 1.143246520256071 1.11969099912676 1.203693822259083 0.7784313807205763 0.732488697685767 1.209796615294181 0.9843575068662176 0.8535198520621634 0.1842548255954171 0.7485263907801709 0.2650530111277476 0.7566020334998029 1.048974262577758 0.7036162420995424 0.1452727589512506 0.9534182712714028 0.1053734845922918 0.8431871521611356 0.7157094552967465 1.048796577008034 0.8116588071607111 0.8727801223139977 0.8990657612521318 1.110510778505613 1.623227186079021 0.8901592424808769 1.465944853945985 0.7578405534295598 0.8853431793904747 1.144745992185562 0.3419926539399967 0.6238864949946219 0.8203196198028309 0.2005558177102102 0.5339795320114717 0.150689076593153 1.255606770657892 0.6186174858053164 0.2078700163961003 0.5536835916564087 0.3923935244056338 1.033974357292664 0.9530941290436203 0.5925432302749414 0.5496999086233814 0.6111094214766126 1.402837391245143 0.3517150385375771 1.165532429584346 1.043543988399506 1.21776453755092 0.718059442523213 0.5753843079246508 0.3311089627895853 0.8439581803149849 0.9084639852135297 1.511954947727645 0.9816507474170066 1.055070261172773 1.562114831697954 1.179479235157032 0.8172543012719871 0.7048515596607103 0.9996560581857921 0.7216006052876764 1.311844403360737 0.6221954940774594 0.7957994402954682 0.6570544268379308 0.6676339236764761 1.321512118083774 1.127342304767808 0.277213856796152 0.7944848814659053 1.008276923748781 0.5557899620016542 0.440077245475095 0.4886169836008776 1.080559838397676 0.930767708690837 0.9430624474944125 1.263973725245705 1.082398544789612 1.381723907251853 1.487944173915366 0.9205479853212637 0.6123121885930232 0.9114970002101472 0.8904765081279038 0.8028764974878868 0.9567341927722737 1.223608541342401 1.25997493435716 0.9745304130701697 0.5356054303774727 1.683655418051785 1.729556105590746 0.8537556859882898 1.269896764116311 0.9060237675472536 + 0.9075410203549836 0.8682511322112987 0.9200825643783901 0.5220242766299634 0.3615076771457097 0.9063025523355464 0.478402782799094 0.7955850168946199 -0.03877571778866695 0.3921235532616265 -0.07333243222456076 0.3395315144953202 0.6658102710316598 0.4586464404785602 0.1248077486216062 0.6187605862905912 0.2222331587347526 0.5807853111709846 0.6877855392122001 0.5912998665771738 0.6859250019297178 0.8330020736248116 0.5432703180849785 0.9290188584188854 1.418278774566716 0.6417009166907519 1.103885218049982 0.7511207372008357 0.4527884655872185 0.8701981602798696 0.2369650274649757 0.5167120468704525 0.8302424518296903 0.1411441381546865 0.4882929753725875 0.3895535000347081 0.9518330295986743 0.4192374966270904 0.2856252683129696 0.3909103401720131 0.540811245335135 0.8344388846708171 0.8524978201548947 0.2988484083118692 0.5088953318103222 0.2465024970265688 1.099096425993082 0.1231260247279806 0.9577600507354873 0.7934596350442007 1.114533581310752 0.5519603161303053 0.3967919051219724 0.2078533076946769 0.8412377866093266 0.7963257161804904 1.473263687887084 0.6760538092748902 0.8512922272165042 1.61568386721342 0.9714631752248266 0.9418183344000681 0.5390908236263385 0.8460449964404688 0.8176131587460986 1.39674174623724 0.6562544173648348 0.6374906411692791 0.8866505070591302 0.7025057500031835 1.113708720571594 0.703857593704015 0.243040641558764 0.8805905095323396 0.9662060203590954 0.8200132896281502 0.6237043179705779 0.5458708708138147 0.9007180988573964 0.7480360314607424 0.7528296251482516 1.216931659962029 0.814177871479842 1.031008318405839 1.204568182166895 0.9072488149286073 0.6948791368790808 0.696387644724382 0.7416425977444305 0.662347186849729 0.6279243409571791 1.012476143740059 0.9993352767633041 0.6201945484172029 0.2717715136204788 1.223450254325144 1.264173373095218 0.7693856763380609 0.9466277191650079 0.813378863656026 + 1.069438858112335 1.233179049555474 1.033950296761759 0.6404075887912768 0.4340951546073484 0.9204108165286016 0.3981828527612379 1.042102946543309 0.3759538763224555 0.5478081169057987 0.3514866204914142 0.5820599392773147 0.7940793616289739 0.7232364237388538 0.746496837966788 0.80007035564131 0.9598662999148928 0.7726553185675584 0.9756649362261669 0.7728685043966834 0.8540299206852069 1.147737480852811 0.5625697383657098 1.058092731778885 1.396759100920463 0.6912357561377576 0.9349054171034368 1.077460201860958 0.5535863198138031 1.07374609510498 0.5992424367004787 0.8749982645140335 1.180858308396182 0.6948026928939726 0.8779326695253076 1.151977492013657 1.214907106331111 1.026551281425157 0.736488233916134 0.8153059808846592 0.9657947929276816 1.086061218233453 1.279692169974624 0.7896803497279734 1.066849466776215 0.6664593188439909 1.216797667281067 0.5088833279768892 1.063613435863772 0.9884861359314527 1.226855758432748 0.8102457635105225 0.5594835070046429 0.7853005353604203 1.271313882192999 1.036256556937587 1.54057570754776 0.6748680133568996 0.8399585886082832 1.774752765434187 0.95406258846009 1.326718912304841 0.6726632875834184 1.126199486847327 1.093529747055072 1.495915785209945 0.9859228788227483 0.7097011163546085 1.301936586652118 1.009702180894237 1.134383972341311 0.6888984675751999 0.5943812714031083 1.29591087434892 1.231285683472379 1.274061797170589 1.196563876273785 0.9453465279639204 0.9942988271545801 0.8453743377017418 0.8348848864814045 1.454991110910214 0.9847674172965526 1.152462749614187 1.226534702938352 1.247435184674032 1.041496024917706 0.964226301612598 1.027910957810491 0.9388015514250583 0.6846997455777455 1.186630168278498 0.90267212514118 0.687322832265636 0.5993466797190194 1.312063911434961 1.179103914023472 1.091726512300738 1.161305330746927 1.307291257649919 + 1.620024914711394 2.120860080201965 1.596873572663753 1.173743549101346 1.02569245716586 1.336625912561431 0.8587460918133729 1.603916853382543 1.328658264126716 1.193501754529279 1.36564902963255 1.453310651246284 1.386430140767516 1.381620158668852 1.781744300775244 1.549527466260088 1.873712273227 1.361403155837024 1.576256794045548 1.411694305176752 1.246574472963403 1.806430353723044 1.02589464124685 1.483353978262926 1.606026046261832 1.069683206183981 0.9844789179733198 1.601525688643051 1.007018523936949 1.570392355793501 1.24178885241372 1.520340629076372 1.565649788207111 1.535870592681135 1.386343649512582 1.886006967923777 1.833623671724638 1.658916738589483 1.31683380977438 1.564232624778469 1.520891010408377 1.695393998591612 1.948907415578674 1.631368193864716 1.62860501139658 1.540136686364931 1.724227999471099 1.275886657873173 1.412777908290082 1.518084176268758 1.453445334975186 1.378838647644528 1.029752923666365 1.549616264944916 1.842228437643371 1.488020915598099 1.733032015007666 1.066111308045947 1.141435200273008 2.041169627003683 1.182740152450748 1.943818017839931 1.083701468019399 1.83055073169453 1.544044130453585 1.709348950687854 1.573885697229343 0.9748968029800835 1.730946277831208 1.500068187329816 1.27044657100123 0.9662656331347534 1.206610783512588 1.801051252426987 1.66806001385703 1.707108487010942 1.949777740278023 1.496887273622633 1.263053736103757 1.190285609831108 1.149310949724736 1.892805195618052 1.653808729426146 1.880729921393709 1.560009251972019 1.845917573051111 1.476916541450237 1.54662509683385 1.661853825403341 1.560236126733798 1.129218110912916 1.65570166039106 0.9746910755802674 1.062042009401921 1.333321050376981 1.763292595811436 1.553383378681701 1.622830073373734 1.879801883007758 2.24314758242241 + 2.382442265462487 3.137792541077943 2.50787157099694 2.053607737529092 2.068528597399563 2.142320778992143 1.840553311209078 2.413889512550668 2.528392690950568 2.140883465684965 2.642465654798798 2.705442397935258 2.231605121778102 2.217738504795193 2.892543215963997 2.70928959823209 2.80579480288813 2.131584932245232 2.390723938638985 2.109364924435795 1.698408854771515 2.670036917440484 1.875972250192717 2.010318428395152 2.0352117327202 1.697179252350907 1.189424472071551 2.165061916711238 1.496636647008472 2.106661173683278 1.880573016142534 2.268211983661445 2.051056421380622 2.323824748719858 1.817408508332278 2.191787275841648 2.45502659016401 1.740394641490752 1.820767028720837 2.212358177653186 1.995823015917267 2.386051532799229 2.462125895384247 2.255463429258754 1.893461334507984 1.881390788835763 2.411424606676428 2.029041605465437 1.860966689611359 2.145630506774523 1.63472663110565 2.03293239000601 1.665883443768507 1.833876823836135 2.203045887763665 1.940952745702361 2.081469812843807 1.869103697785249 1.845398938674805 2.399164035050319 1.656191862345899 2.728701945468856 1.712491795922915 2.818833908013403 2.116503363330594 2.188354517358675 2.365301129298132 1.399422544608569 2.127581580928791 2.21449726956871 1.3838276208553 1.345543054478185 1.899247292316431 2.17747988476458 2.084824530156766 2.034915014205581 2.624926048234443 1.969150531189371 1.601342483868393 1.743093287079091 1.603685031097257 2.399994292326824 2.754918536006471 3.184655181010839 2.147496608911069 2.527187870343369 1.954562634387116 2.214899320435677 2.471685402520961 2.396261293351017 1.904704376532209 2.314454939669304 1.179943745427408 1.577365004543026 2.127888720324336 2.184336585204619 2.284923671778643 2.13152834583002 2.89273127399008 3.292697565710443 + 3.067524529053117 3.813792470221415 3.524529320868169 3.111063706575806 3.354080103268643 3.222340472348151 3.192584831616841 3.345408284127188 3.585203991648086 3.100450783635097 3.861930239942467 3.966707708391368 3.043225023177229 3.026800936919926 3.782581593943235 3.936177592780723 3.980136609797825 2.813441616279988 3.253139330644444 2.542796770381528 2.034282308482034 3.522582338236134 2.951538248158613 2.385102459088912 2.621514293256041 2.414573303518409 1.430393759936123 2.626577375165652 1.751403627595664 2.533626960694392 2.294244976528944 3.017660260257458 2.834596484349447 2.790723658490265 2.024990099084334 2.040991826302445 2.852769727973616 1.468094152728145 2.32798444364488 2.418809837802542 2.206533708455026 2.832167509060071 2.629668395430286 2.446430880063581 1.918764382746187 1.93752200250258 2.99067566381621 2.470913828012307 2.255984352357927 2.660716333599282 1.642456546340441 2.553067520324618 2.269465006328346 1.358331665373726 2.116621821555214 2.196416997071537 2.594304172223929 3.018886022209699 2.984411249478114 2.821421788904502 2.294047702636366 3.563950341948839 2.451018449375852 3.821453456193922 2.622834103941386 2.93404673635041 3.252005613907841 1.941544865575452 2.524383533376749 3.246933861368234 1.379980380228517 1.651328651125368 2.506900491473061 2.35164250733078 2.307738726318348 2.319599012085405 3.026932129956663 2.181724807783212 1.951539642569742 2.471729187069286 2.091517347011177 2.848177678282241 4.112527806638809 4.81993564127788 2.905246551303151 3.118513353369508 2.533283727481717 2.81322322550659 3.294212573283403 3.339850135424967 2.952620920978006 3.128846808668641 1.470661988531901 2.1055998244683 2.616510433178519 2.183089075085263 3.108436798784282 2.477216003479839 3.950889884205054 4.092318068905751 + 3.39044472218302 3.895018216001517 4.326101923619717 4.117173422770065 4.584423717376922 4.378694274411828 4.667329756855906 4.242909263579349 4.131379077769452 3.772390441619791 4.834542637843242 4.871466396024516 3.569229586636084 3.668888984310655 4.311734416508074 4.826308704596727 5.350609223720889 3.186503301569644 3.976849893683266 2.573275950773223 2.132288998156355 4.139082792161389 4.038635301728391 2.444624109609173 3.267179549955472 3.038094939563962 1.580021511388622 2.817885118202639 1.618042397155818 2.808783041590573 2.425114468929678 3.690495966926761 3.821152010134426 2.781003982099293 1.83440510405471 1.675094721969444 3.072351782110669 1.504985697231763 3.101488679602994 2.117622706602162 2.074270015811408 2.831663124799377 2.583265251096606 2.46936707841396 2.000777802165529 1.922501823045538 3.235173203136796 2.596738123759543 2.478097002440222 2.955442385967046 1.449059778319111 2.818087067790195 2.648815935578682 0.5148891221565464 1.562573879640809 2.138095768538165 3.215235833492443 4.361410746709225 4.509033925261718 3.272641760357743 2.934182336426804 4.272291796494528 3.134542593139713 4.498669113726919 2.783790021175719 3.687752785427165 4.04457139832698 2.517043642712451 2.925888133793364 4.597324504366497 1.240641622718613 1.775039931253559 2.923818975381437 2.414878205643618 2.234579378166018 2.620658762318214 3.070380151494192 2.051189295830682 2.301012998623037 3.326038960941389 2.51796304074054 3.132546968448651 5.480730493006604 6.342598779483581 3.748793397023292 3.510167523381597 3.212422648477968 3.318517408274232 4.046910828679756 4.361793223568384 4.24854550110922 4.160181978664696 1.812685008455446 2.60947035801837 2.548397828201814 1.565753085694723 3.6916007895652 2.655798752461749 4.893560528576025 4.464708203370327 + 3.198381426637297 3.503283982394805 4.613307643983717 4.848942023860218 5.463059432026057 5.374384324990388 5.979332963524939 4.956456697151225 3.935959289307903 3.933953586673397 5.550902276261695 5.186973015119293 3.686669062331816 4.065810882461648 4.545029861125869 5.095878540236271 6.242331212696033 3.139037979716022 4.403791139745863 2.17777489752649 1.937986436913434 4.341822686151545 4.931421266109282 2.193634040998948 3.861742909011809 3.415052001167169 1.5467889435713 2.518285957737817 1.030431365623542 2.879300487454515 2.37376304111865 4.118617369350787 4.591498076905051 2.308746550163885 1.132952086754464 1.32541746432031 3.320313945169836 2.230408432891454 4.177332117357754 1.533958990807861 1.658148292116152 2.418947167726628 2.587527566960439 2.725955429325275 2.345259976084329 1.015531386396985 3.06919861967911 2.613667668857409 2.449549152096097 3.004074476441161 1.137617835318167 2.829915045964334 2.672959004051563 0.1080958402393293 0.7324800470512258 1.774627982835597 3.812243150200288 5.668946854305432 6.275931271440271 3.71058163508485 3.365892388613846 4.644980536152502 3.565537265558419 4.554827298873306 2.407062659118765 4.038994520845108 4.507210607591105 2.992563493466662 3.262345091635098 6.108420419703407 1.014764823125915 1.683964208317775 3.113583454174659 2.543343674746552 1.852508787341321 2.856816833373991 2.753355442227132 1.581278948569434 2.634450715916046 4.200052800208226 2.810133263885632 3.174850511007662 6.597391910210376 7.233013193190729 4.600476467746091 3.670787702675966 3.809430982793089 3.803671332738958 4.748728620844076 5.513025416437358 5.799478689258194 5.518026269174698 2.200339425154652 3.137547845830795 1.883119701625446 0.4343523974328036 3.782174486401146 2.772934008749559 5.683704937541322 4.555332595955867 + -8.681292423823834 -4.883131989343383 -6.144740463343624 -7.641488592344103 -8.255189762210648 -7.282814235019032 -6.330079900100827 -2.376854289985204 -1.384516694422928 -4.716220831209284 -0.6316691839747364 -2.260631409935741 -2.526310684126656 -1.61174432837015 1.990347346781164 -2.290851424486164 -0.09813054774960506 -3.597568503721732 -3.922902337950291 -5.076247728882663 -3.675637845378333 -6.54205571116654 -4.472958723978081 -4.16299393692492 -6.318623131068307 -6.052666295207018 -4.078591724446596 -0.8047405903053004 -3.869463776542489 -5.37443777757062 0.9511121695422844 -2.250896040479574 -4.575988382066498 -1.787905997181838 -1.208541533896891 -4.789428681922118 -1.897361177737366 -4.801165151657017 -2.118640893358702 -3.790407649149984 -2.757065556484577 -1.462993519084648 -0.8138715165852091 -2.505270671676953 -1.992871755013133 0.463821844874142 -2.347815359651113 -1.538193541397334 -3.054333017350473 -3.847323733895792 -4.71692691076214 -5.722919357743223 -4.678763030326536 -10.111412014405 -6.167690966536384 -4.453746359861043 -7.519628197208476 -11.58783144830159 -9.010343091929713 -9.189795601937362 -10.82451110474054 -10.22880615164422 -13.13378522042626 -12.997723412087 -10.05940885344717 -10.20193520502835 -9.587885274846485 -9.47244410835583 -12.41932133999535 -16.82865518148628 -9.662726232694695 -17.8309716507938 -14.1790947854679 -16.05400330440534 -13.11183968419209 -11.97649872286786 -9.27370964734132 -12.22935249953753 -13.12802962603382 -10.77504479147547 -10.60544960247069 -8.60813021574279 -11.59696709023069 -9.994682725639677 -14.90441064837921 -9.131511908309221 -5.831711884492961 -11.77504942673147 -12.31537652977659 -9.957242653972571 -11.97011502660098 -13.21280046593165 -9.013050722312983 -13.29496535182989 -10.07963475994802 -4.642467287267209 -6.870583813703888 -8.226912853233443 -2.851651000976972 -1.531380161299078 + -8.520072453366083 -6.508965410957899 -6.843670980808383 -8.042993654256861 -8.989886147039215 -7.419022203772329 -6.930515593012387 -3.078962473591673 -4.165965045118355 -6.639320170172141 -3.580469946193261 -3.988200592402791 -3.774100229981741 -2.2843872057922 1.438795875803862 -2.237693231150843 0.2166508119495347 -4.107164880270602 -3.75163948752197 -5.506498565571746 -3.972407829254735 -6.207454925654019 -4.61366858173642 -4.864900041109166 -5.753107979930064 -5.924312545565044 -4.404308398879948 -1.698895917979826 -4.431682803447075 -5.407316527227522 -0.9922651221077103 -3.209387754957788 -5.471931935123393 -2.170615648039984 -1.801040289564526 -5.785357945165515 -3.179215235574759 -6.921724149503262 -4.941660417282719 -5.500054434238791 -3.798134192108591 -2.842453355985299 -2.147292408939165 -4.91770013902908 -4.795598669148459 0.7311709695409228 -2.967504126087338 -3.413626434247476 -3.647342268437569 -3.934139155208186 -4.897982841990142 -5.754700245020786 -4.560734929010778 -8.781329623181591 -6.529705419795164 -5.494078610236102 -7.610794195261406 -10.10422191635735 -7.880642093564234 -7.45813344657239 -9.698755288286165 -8.89767667145361 -12.01135985105248 -11.79947576762061 -9.670087071608577 -9.466715360516901 -8.581256301038593 -8.644350799329231 -10.85989481116121 -14.69472242916709 -9.172848374993919 -16.80838999141997 -12.48037893565197 -14.92341862637477 -11.56263036054952 -11.96561888363249 -9.328523934580971 -10.96360893186647 -12.15045490155717 -9.862754882982699 -9.697942887670706 -8.165472480291101 -10.68531066627747 -9.824203546413628 -13.55412609331393 -8.958304525666563 -7.931165382110066 -12.17361446927168 -12.19140787238757 -9.555466993428126 -11.41008028348006 -12.42955362901739 -8.226945962673199 -12.22166935848509 -10.30145422136411 -5.787742589451227 -7.311893619123111 -7.552328703593957 -2.786935776486416 -2.330177685017174 + -7.549032652055757 -6.765849985211389 -6.480827087143552 -7.261274244294327 -8.439003379680798 -6.664879510746687 -6.570975470414851 -3.074722938152263 -5.44334744801381 -7.154655666938197 -5.177649616749477 -4.987465866164712 -4.52614764225109 -2.727816033585214 0.4705959608027115 -2.252673684510683 -0.7299980245436473 -4.32169043663589 -3.263951978526165 -5.429721910630178 -3.79075354876295 -5.37266419945081 -4.217602566452115 -4.684327808136743 -4.753622415373684 -5.294907877760124 -4.204304687766125 -2.528460457820984 -4.811257158073204 -5.228514209263267 -2.343947024626686 -3.454217110108402 -5.240435232543859 -2.453022935432728 -2.227980519684934 -6.295059388662594 -3.718230459208939 -7.398548369227683 -6.262701358265758 -6.283140035821816 -4.097189220232394 -3.743517979549324 -3.209109056682792 -6.129522781188598 -7.800399707180972 -2.122594843704832 -2.996541603049092 -4.440532012733001 -3.801435015016978 -3.83836721074158 -4.672084504268696 -5.404525483136752 -4.093157126722417 -7.24491849567039 -6.483937550046903 -6.058552575681006 -6.968159459212075 -8.10254956292556 -6.435117832053265 -5.546658158649507 -8.086746803538645 -7.018643660849648 -10.09880437148558 -9.861983551943922 -8.608410169039416 -8.330854788080615 -7.16878251588787 -7.471980789703139 -9.146201996307354 -12.24540841532144 -8.012070189892256 -14.89034341280058 -10.21114327562827 -12.79393428036201 -9.285028816819249 -10.42305081298127 -8.550863398031652 -8.996635444096682 -10.36326264229774 -8.221728331435088 -8.135214486591622 -7.037866035013622 -9.081618121473639 -8.479306240450114 -11.22056122082699 -7.97033256979239 -8.699504176134724 -11.36977202856974 -10.97114048010189 -8.271803810626807 -9.915941766494143 -10.76645469454525 -6.877646868893862 -10.34394457392773 -9.750530721907126 -6.299646657847916 -6.967323071507963 -6.350580230800006 -2.957660292096989 -2.982426920532652 + -5.872069967659627 -5.676731633313466 -5.206647568309563 -5.561086993460776 -6.80830686246918 -5.219809355854522 -5.387963788467459 -2.47436594463943 -5.208542744258011 -6.350300598674949 -5.248379184282385 -5.007832121671527 -4.516322620265782 -2.795652250812509 -0.6488097883420778 -2.100747395416874 -2.306617266307512 -4.005689503066606 -2.486210921364545 -4.68080855430162 -3.117123672720481 -4.144070372520218 -3.325268170436175 -3.690785887591971 -3.43639957717096 -4.240257957259018 -3.492420266666159 -2.929116289342346 -4.740729265899063 -4.731969865499195 -2.857537380989925 -3.100405241513727 -4.458703144431638 -2.671897542632905 -2.495208031522452 -6.142445279315325 -3.593920852311385 -6.422581390343225 -5.775135540483916 -5.954088181412772 -3.632339295658312 -3.84887072275933 -3.534866719549882 -5.705420234241274 -8.990541293253585 -5.30405343968846 -2.39095265322117 -4.281824493881231 -3.411621147412006 -3.409473432341656 -3.935136336477626 -4.532696616658939 -3.245486501768482 -5.662586944969007 -5.813874584978294 -5.773843945120461 -5.604849784816906 -5.768002333359618 -4.7751715658801 -3.619072449414034 -6.094212518706215 -4.79496065671583 -7.538988295253148 -7.321432927165006 -6.762556471825519 -6.717149289077497 -5.35221064911093 -5.825542338667674 -7.148932552949191 -9.471778479753993 -6.169949993578484 -11.9707857913163 -7.502792802100885 -9.861252065293229 -6.51816698222683 -7.753254720957557 -7.001488094896558 -6.513388029177804 -7.87086595863093 -5.990269335220546 -6.052154226111043 -5.356546354239072 -6.948372104823193 -6.421107299219784 -8.252197995729148 -6.30832350263745 -7.893053529858662 -9.383521110397623 -8.778806910533604 -6.243686159637946 -7.648775005396601 -8.323286755294248 -5.098829412094346 -7.745436756773415 -8.29530116958631 -5.878093873623584 -5.804588843588135 -4.742527622162015 -3.021980043672556 -2.97944472375255 + -3.752968211359985 -3.668853417206265 -3.346005381201394 -3.363993402163032 -4.512450991700462 -3.374229680121061 -3.637894654209958 -1.476768513450224 -3.77853619891539 -4.554772835606855 -3.95581310603302 -4.019797205299255 -3.650975132208259 -2.322990164543626 -1.378872248734297 -1.546352766842574 -3.160220789127379 -3.074509587196189 -1.501970228371647 -3.326353504329745 -2.061490261323343 -2.69214214040403 -2.063211486536602 -2.233238205487282 -1.957385598885594 -2.893826867380994 -2.370739106350811 -2.61494501915513 -4.001771790031853 -3.763716004412345 -2.475414848773653 -2.238864727229156 -3.310316445053104 -2.481303572550132 -2.213070045874701 -5.113361537788478 -2.879146202707147 -4.665930203406788 -3.889733372883711 -4.596938532478816 -2.573768107970864 -3.076024555344702 -2.939302378093089 -3.987656423421413 -7.575963354577027 -5.297704283677149 -1.274080758220997 -3.16413072948103 -2.469093311805409 -2.564501418254622 -2.722175354066167 -3.150497571239384 -2.078675382765141 -4.013478469620168 -4.397241370284974 -4.522309219747513 -3.725748580342042 -3.354163143412734 -3.048878054142051 -1.835436633142649 -3.916807776639075 -2.504581507857893 -4.629503441447014 -4.440989228653052 -4.284145246194385 -4.661905753309838 -3.252597078102553 -3.767806042060329 -4.79281162823645 -6.390682815344917 -3.838774626288796 -8.267985843354836 -4.609403052323614 -6.473472328601929 -3.602632707159501 -4.703728026328463 -4.907518129513392 -3.818715233737748 -4.957356113279275 -3.447814157882021 -3.695628352421409 -3.329267907237863 -4.522762659872569 -4.087644711036774 -5.055209769550402 -4.220218917702368 -5.739080645898866 -6.493791092081437 -5.945566434531429 -3.764778563217988 -4.917633296583517 -5.363967634788423 -3.107509575313088 -4.680057939585822 -6.003454237819824 -4.479369049979141 -4.030250690053435 -2.875445864516223 -2.479985918521379 -2.178816603227654 + -1.546039382166782 -1.354297326499363 -1.300593131309142 -1.131436748604756 -2.050547840699437 -1.447181057461421 -1.649041028140346 -0.3273293176607694 -1.696705803835357 -2.254616239682946 -1.753625547298725 -2.247241818360635 -2.066220459437318 -1.257508757263167 -1.244513339312107 -0.5237218080555976 -2.468478703101937 -1.653722543933327 -0.4447568736068206 -1.656960128631908 -0.8216699356853496 -1.210655943963502 -0.6255872149486095 -0.7429854066851931 -0.4871140014583943 -1.430992693240114 -1.014951921039028 -1.589817842876073 -2.562274794749101 -2.281568707856422 -1.370931043124074 -0.9750759406560974 -1.629340084757132 -1.491042754534647 -0.9957061920376873 -3.181394973141323 -1.600406688959765 -2.608863279304614 -1.440610380568614 -2.542235442970195 -1.224098432651772 -1.619646220402956 -1.584648359563289 -1.671722432146453 -4.456536464877956 -2.639278788701176 0.1088051571227453 -1.569071907248599 -1.107753781720021 -1.340095656064477 -1.217829042126141 -1.443609340999615 -0.7489709005376426 -2.201815868333142 -2.358454726514537 -2.545735024409623 -1.686017879665087 -1.132476356509869 -1.422048625538537 -0.3260645734599166 -1.809719592917304 -0.4565636362021905 -1.789514564223282 -1.604133777553216 -1.635354451362218 -2.413837330175738 -1.132662375253858 -1.566195755646731 -2.232839619597144 -3.196348131888954 -1.372037305707636 -4.283769997098716 -1.875024103283067 -3.095427710446529 -0.9150374499658938 -1.986790452879177 -2.621809060117812 -1.281957947845513 -2.035704045849343 -0.9628400955166398 -1.380770294133526 -1.23177936095226 -2.092757409091973 -1.784023692021947 -2.025761403654087 -2.020226157049365 -2.872884443744624 -3.203871471907405 -2.943034243950024 -1.232677678781329 -2.124828664578672 -2.298777905085444 -1.159811562129107 -1.556089004683599 -3.191077877578209 -2.333901385500212 -1.979982807617489 -0.9364854089581058 -1.153029545066602 -0.8040877586527948 + 0.4020106960742851 0.727284834603779 0.5551478539855452 0.7476801177690504 0.1251715485341265 0.2747347230033483 0.238631577056367 0.7333677271089982 0.4185177631516126 0.02015362434394774 0.7074441378063057 -0.1309583325055428 -0.1188168953958666 0.2221609317321054 -0.2054367005130189 0.7851512483684928 -0.645531369694254 -0.04356161260966473 0.5261053407448344 0.002169961320760194 0.3783466760869487 0.1193649771739729 0.7588267514147446 0.4794173934493529 0.8159021273168037 -0.0454868681190419 0.3574743133212905 -0.1684277827080223 -0.6464839415311872 -0.4556022205106274 0.08143894145541708 0.4793149310316949 0.5589572084390966 0.2416309813270345 0.9943992670032458 -0.7139294416610937 0.1130631876976622 -0.3789766001070802 0.7404421597857436 -0.2855812908019288 0.07415845742252714 0.1162280040157384 0.111401389913226 0.6343470298988905 -1.017625973187876 -0.1210259256231438 1.465986129854578 0.1003947565682211 0.3970952654817665 0.09220025128888665 0.2939067937004438 0.2722304858386906 0.5231181246208507 -0.2566381956130499 -0.1081348227126 -0.3683373475032568 0.1239458320869744 0.6656095067992283 -0.04345117980426494 0.8286435691155702 -0.0244212939351911 1.083612145161169 0.5463211316546221 0.7682740723867028 0.5789405019895639 -0.3895618512033252 0.6617142528484692 0.3971110688917179 0.123552665074385 -0.300275863497518 0.8201343825348886 -0.6518746567307971 0.3461956620158162 -0.2166727189833182 1.213876815731055 -0.005836373550664575 -0.5423974822133459 0.7472363130182202 0.4594089681813784 1.100660866338785 0.5802665709647954 0.6300911726734739 0.04590411937169847 0.2795731162314041 0.5042924334570671 -0.03574669180943602 -0.1048300613838364 -0.1254534833446996 -0.2701554534069146 0.9409735304034257 0.3198399493921897 0.401853828538151 0.5044966555651627 1.151690757433244 -0.3780281840154203 0.1156510520449956 0.01241090807525325 0.8437056150760327 0.5961184625375608 0.7589325219719427 + 1.839219030320237 2.255405936768511 1.951518740272149 2.031825881174882 1.704828227157122 1.583719817193924 1.734645270873443 1.518551076253061 2.035176289617084 1.81527882431692 2.732963375216059 1.785979552703793 1.705248470396327 1.712116545429126 1.248521784298646 2.023607812679984 1.200521359357481 1.38808930905634 1.262837895032135 1.440985820867354 1.342096002004837 1.152109153932543 1.870260607021919 1.342620425615792 1.829243973756093 1.081835207536642 1.531408226204803 1.189055437847856 1.303496317636018 1.351890137178998 1.415638593873155 1.789437591973183 2.723860475154652 2.095088357753411 2.980303800821275 1.562546864888645 1.897592262173248 1.858382565088277 2.122440645344795 1.637609583240192 1.035738047150517 1.666514639426168 1.655064710954321 2.509579346693499 1.88980585105088 1.448752318869083 2.536548111309507 1.561852140064275 1.703624969366501 1.456445918840473 1.522911191472303 1.650356052434176 1.512967105062671 1.547797939449083 1.793913176594288 1.429116789975524 1.416952208604926 1.895911714425893 0.9848248485824342 1.607780512399472 1.261846773972721 1.973423107254348 2.068196981318579 2.352678665141866 1.906090707161638 1.019917333120247 1.830799104202015 1.778142546349955 1.791683064668177 1.806098809553077 2.400981097271142 2.068812819343293 1.793154450380825 1.778663428609434 2.576189372441149 1.167285094963518 0.9912125405217012 2.030146079650876 2.198385794636124 2.485320557195337 1.956471241181134 1.992437580414389 1.646963647400298 1.917633543924239 2.309567558260369 1.456061011845122 1.881567099000677 2.191344692671464 1.674476356873129 2.434717948228354 2.094422005735396 2.340876431204379 1.713438005535863 3.039779651218851 1.86446172563592 2.333523761371907 1.681570391701825 2.210216047904396 2.154315141877305 2.130769543696985 + 2.654534908157075 3.121393847482977 2.759056680020876 2.649913225832279 2.559482169119292 2.375500107169501 2.649206545916968 1.930713813431794 2.83647230672068 2.848676016372337 3.7909675137671 3.028934983667568 2.951042173855967 2.745270602921664 2.379203728200082 2.836864099615923 2.252658903218617 2.332584340818357 1.669812516422098 2.519853998921462 1.933619405674108 1.792231287028699 2.545479552172765 1.88308641298147 2.48468381058774 1.818917980417609 2.341468948652619 2.095775070287345 2.776693008072471 2.711501964739 2.234591051843381 2.603427521322374 4.090157867627568 3.266328520574461 4.079054710296987 2.89143382930888 3.242458306234084 3.599602551354337 2.580229398613483 2.805084406751121 1.508949294957347 2.668604705013422 2.654127917234291 3.637884367905826 3.801860031722754 2.240537639770992 3.14927307141636 2.536779275705157 2.529717185603658 2.450618181641403 2.271435317084979 2.432604528028151 2.061911244345538 2.780675369383971 2.892368929279655 2.458082244374964 2.101406064757612 2.524410865989921 1.623373120154383 2.047039148605904 1.991471773321564 2.23784177338166 2.69578208193343 3.038297258935927 2.270122973779507 1.669803655757278 2.257255662014359 2.413826102857456 2.485236411313963 2.80716151749948 3.211800037264766 3.574887085735099 2.383563271403546 2.732852498738794 3.13579495542217 1.651077620429533 1.797542872012855 2.508088147362287 3.05407025059867 3.110596061685101 2.656484133578033 2.715368071238117 2.569894627780741 2.967168691532606 3.301596162236365 2.293992203109156 2.7635787610634 3.424649670236704 2.694909026780806 3.10316850858726 3.041362514559296 3.322497883375036 2.395989320331864 3.908822591467469 3.123162120231427 3.847158857468457 2.84013028101981 2.944409349398484 3.102680299709391 2.998409717235507 + 2.878016928258148 3.345932253665524 2.986339285125723 2.679443146640551 2.728165007159987 2.65245908498764 2.92516379483277 1.975560358165239 2.78363168190117 3.062045295049757 3.702520582795842 3.357975143517251 3.366216453479865 3.02432631044303 2.662770552866277 3.038297891434922 2.345477672861307 2.641265266943265 1.73421438170044 3.061884118069429 2.101026249198185 2.01393574247777 2.718922311032657 2.13964271102202 2.777452648006147 2.115408897574525 2.71064058005868 2.387894393643364 3.407475381547556 3.308450167009141 2.359401760542823 2.729010730001391 4.193817507013591 3.305822401334808 3.910615930113636 2.926721226649533 3.762560229463816 4.2318330110852 2.329341155074871 3.049771118094213 1.510611041274387 2.974940348260134 2.931473261851352 3.824470654900324 4.313716339317807 2.137243320998095 3.254798510478913 2.785768736610407 2.766523892414625 2.8607587115348 2.497411230786383 2.544306538243063 2.131173817848321 3.111618638913569 3.056747158501821 2.659955359084051 2.281636913028706 2.621690395455516 1.895289832720664 2.224789633994533 2.227114536681512 2.051995332378283 2.589829294692208 2.955816428322578 1.971015400056785 1.740001169637253 2.064352913963376 2.381482676768428 2.304717815661206 2.767297995553236 3.309607635281282 3.900876143336063 2.243531247921055 2.770618685011868 3.032023480220232 1.63567842044904 1.913030597057059 2.321572696146177 3.129515685321167 3.082246977253362 2.745688889479425 2.833034273600788 2.815641854084788 3.34991800258922 3.540845206945505 2.480889532501351 2.649974328791359 3.577835735550707 2.840755887658815 3.013794261616567 3.199720579475979 3.414765422887285 2.588353237690171 3.830078977691301 3.307681601363583 4.405998157089925 3.391116725280881 2.969576496736408 3.354394368330759 3.176673240699596 + 2.651587600594212 3.033084566020989 2.755289287189953 2.299577026089537 2.375514247396495 2.509949095910997 2.644567155337427 1.751831712768762 2.098490400785522 2.615798383427318 2.712145170371514 2.854626182393986 3.000280141332041 2.578984339168528 2.096347300403067 2.67537059881306 1.725307642219377 2.372369016804441 1.535024311197049 2.919675064753392 1.898594867314387 1.882418776720442 2.444901848466543 2.11780029336046 2.764660123953945 2.020982888774597 2.667745776750962 2.161655449177488 3.15678049559574 3.109210087644897 1.896147118794033 2.262215314503919 3.250923118230276 2.388574309663454 2.813751528925422 1.97399066512935 3.432374596253794 3.56997529395835 1.731505548422319 2.527636433376756 1.207601303976844 2.679496331126302 2.56418928750918 3.131352454453463 3.407013651584975 1.686511575142958 2.931893490210058 2.312408981608314 2.515429283597769 2.670628098680027 2.31785240584486 2.125243282178644 1.817476586588782 2.558818416153372 2.53337306109097 2.276091019999512 2.173569762571788 2.335385051821504 1.873685207264998 2.24139011746945 2.112682230611185 1.668249307009319 2.065571852464018 2.406258849987353 1.468910336428962 1.597115436990862 1.551839985189872 1.944152597887296 1.691067534069589 2.118225011574395 2.924428435384471 3.373791115882341 1.664313278510235 2.253303680554382 2.533231131070352 1.361093885962873 1.580095721511498 1.765040407717606 2.703639866230333 2.638334209458662 2.415011624655108 2.53897347650036 2.527702051723281 3.130285834807182 3.219758465070754 2.188277288734753 1.973329946285958 2.961635687337775 2.375527414113094 2.418664188080584 2.780864028409269 2.91331085053389 2.413019510669983 3.111171559576178 2.679236822485109 4.079774446916417 3.361334294222615 2.441124035205576 3.027921940973101 2.719398993877526 + 2.190221124394157 2.393282621698745 2.267416729242541 1.739499273418915 1.742631912900833 2.111665317948791 2.007883268335718 1.420374232468021 1.174185191921424 1.828904257799877 1.378203240146831 1.884233798642526 2.175153867596237 1.74656751200655 1.1484019870677 1.986494741850947 0.8487014931283738 1.769989197016912 1.224882752867416 2.199511031336442 1.489742300116632 1.558639904840675 1.890188826451777 1.860970500085045 2.552325066455523 1.678217966938973 2.335810554286581 1.702982511593291 2.343858215324872 2.410031368746786 1.179271862926726 1.557435596316282 2.034789500199622 1.166438791633482 1.556700463743255 0.823060826008259 2.601698092187235 2.161697053900525 1.1082885100559 1.659330921120272 0.8485639930995603 2.06236789058903 1.86213889227929 1.965707904210831 1.851286081340788 1.378945704623447 2.370096557221984 1.459451312753117 2.028569035121109 2.099230612017891 1.953123724136731 1.47865507849383 1.322170081638433 1.551691406910322 1.801365162952607 1.692928879886495 1.991216216661996 1.853389366602642 1.664504844863814 2.197411653069821 1.819736738387675 1.325787621906329 1.459093638895865 1.739331976983522 1.119335485571355 1.542099362639419 1.047885513202345 1.416029349342352 1.163007774668586 1.415452072753396 2.357652467449952 2.466559084394248 1.001872544220532 1.636558609185158 1.952569791472342 1.105997200894308 1.154374391034708 1.186722781454591 2.117521650421622 2.056953410159622 1.913522979521304 2.108084952501486 1.956703315341656 2.520111914559493 2.612890176625115 1.702640107670504 1.259340133913611 2.062644877746379 1.680750168468876 1.668634126686811 2.095387262259464 2.219745259335468 2.038437745452029 2.174713284795871 1.72559172147885 3.232465282453632 2.913987255838947 1.71913826979835 2.361505694884727 1.956480474474226 + 1.740291040667216 1.761909583961824 1.765121892196476 1.23341684800107 1.101818082446698 1.658363366892445 1.28889722583699 1.160767810295511 0.4428200333350105 1.079576681087929 0.3280946932973166 0.9498131446671323 1.341711401733846 0.9919672040832666 0.4343724601076246 1.302526463517097 0.3001714579222607 1.175136238616687 0.9884642254655773 1.346164106726064 1.102730599337519 1.266215940500842 1.293856707074156 1.522526711025932 2.272724830792868 1.286251401012123 1.892249621472729 1.338208982535434 1.480318447118407 1.694262519775293 0.610753791355819 1.031953312815858 1.307572537718443 0.3426028950048021 0.8033502916741782 0.2569514150318355 1.798497664886781 1.007940170912093 0.696201032665158 0.9503370453558091 0.6682720455164599 1.480465506472228 1.264601443608171 0.9691741294036547 0.7809992049367622 1.035871765980687 1.824995155021668 0.7356807109570127 1.588575260648213 1.513873892088668 1.635879194775953 0.953635874464112 0.8840180180332027 0.7376958817349077 1.323854826048773 1.260104453368513 1.869712300554966 1.369944997586572 1.391592381407122 2.176062417369735 1.506446110231835 1.187675658407898 1.018909583922323 1.250649102163152 1.046182994337869 1.649169931410142 0.7750459791568574 1.029424682998524 1.027215577971219 1.038555651615752 1.86731335685181 1.619572752242675 0.5605248840729473 1.287702035031543 1.552946435684134 1.093244706162295 0.9616361422154114 0.8688396520337847 1.651037311691653 1.567220870291294 1.471106806491662 1.792417254538577 1.399215421016379 1.83144075993232 2.00516999610727 1.325576387954698 0.8795352124689089 1.351702947573585 1.1295515062302 1.100363712972467 1.457639814085269 1.69055266066789 1.632413993240334 1.405197674888768 0.9513078063391731 2.362011959714437 2.307372473680516 1.196876802947372 1.697872727663707 1.350651273882445 + 1.528814526602218 1.518400786058919 1.484965004856349 0.983034284763562 0.7127071241338854 1.352182369853836 0.7734373715793481 1.126420129461621 0.2402340220178303 0.6940100336105388 0.005007095032851794 0.5040372072580794 0.8982288170282118 0.6822145133717186 0.3750698504472894 0.9456203478730458 0.4862660400051482 0.8947784348697496 0.9893826376755896 0.8965776773948164 0.9399741459110373 1.220185463607777 0.9028098021663027 1.331214780550056 2.05633664150082 1.04306261279271 1.512406167305016 1.275969939571951 0.9937955436562333 1.360278573771211 0.4724747791151458 0.9361165456621166 1.275891116809362 0.2790535621015806 0.7495420661962271 0.5780534457694557 1.451467173395713 0.822793837224026 0.6583606196149958 0.7638585525974122 0.799704959196788 1.237378284003171 1.131463643582265 0.6822991695996734 0.719145993954136 0.7102871407581688 1.541550641931877 0.524901940760401 1.392514965673399 1.24513625760801 1.520762372861554 0.8081835376847835 0.7001496028906331 0.6110313189419685 1.335491669391104 1.16790084295144 1.857695171649539 1.060504508586746 1.186524853251399 2.233129090159878 1.300234827054538 1.327307958336405 0.8677348145342876 1.133570448208047 1.207026706266333 1.821361455546139 0.810097030524048 0.8771458741084643 1.27085287896989 1.060158572883665 1.588380394081469 1.106402283287025 0.5072453357206541 1.349739886914904 1.473846167016745 1.364508934373134 1.168679063230229 0.9365587253269041 1.443690583778334 1.300813887879713 1.239713173775954 1.740913626900465 1.128421436240842 1.402378606041566 1.62235726941276 1.267763108308827 0.9170279534978363 1.116528965892257 0.9750036627410736 0.9384520948406134 1.102994242088243 1.526049079198856 1.323179961631467 1.031655542927183 0.6901063838486152 1.875897546324268 1.819450534042517 1.099655427075959 1.384704505680475 1.264556018053185 + 1.700667403238185 1.902723557192076 1.601790604559937 1.123961947661883 0.7737420120392926 1.358642784405674 0.6942564381170087 1.40869202362228 0.7064488492724195 0.8544547767251061 0.5275457595162152 0.7954976912515122 1.052454041001511 0.9449859858011678 1.039935946117112 1.140175996355993 1.290784772182406 1.082625720891429 1.322032867952657 1.099849452019043 1.087114622827357 1.546356346463654 0.9020299010262534 1.456332836405437 2.004560304085317 1.08492482944348 1.315521285010618 1.535382511090575 1.0206109154351 1.513738638541327 0.808106316579142 1.258324243848165 1.610404899479363 0.8928157401373937 1.173483021447737 1.484862266192749 1.680284166925674 1.457067735115402 1.004851212073959 1.157216325450918 1.227314898029817 1.467557235253025 1.521854138816934 1.179831156768614 1.297019551256177 1.121522594824288 1.659254589295951 0.9052730323888341 1.493553443983728 1.418501592238044 1.630463143862698 1.11364914708156 0.8637519096055257 1.180751496506218 1.767362711051874 1.417072573870882 1.961347854262385 1.063894279013766 1.180450537301965 2.395002415574538 1.294866416781481 1.751036808107074 1.027352766226613 1.470606901406427 1.536624642472816 1.984793358058596 1.135175348061239 0.9448101694965771 1.686200935534544 1.357378921587951 1.515986790502211 0.9894013294251636 0.8461239315147395 1.722556360109593 1.705097331745492 1.771807980064978 1.732829536975714 1.334067725545538 1.490170762649996 1.297491248157257 1.270983104654533 1.975205907291638 1.333852240963552 1.515890986267323 1.588493757398282 1.584667655408339 1.225969891750537 1.392617324206753 1.292705900725196 1.249221129364742 1.146910086990829 1.746185560285085 1.17844809878261 1.09073950754464 1.014433982760238 1.915815568878315 1.674238687924117 1.407367930801229 1.618979263073697 1.809284204722343 + 2.260184257847868 2.847779136282043 2.173153274547076 1.696499127916468 1.37154028967052 1.770685390794824 1.176438585862343 2.017664541992417 1.747750887690927 1.552480435677353 1.704804995284576 1.797382044780534 1.768733606515525 1.669303269244438 2.194678506119772 1.933492123941051 2.269910701564186 1.688201329895719 1.983386333009548 1.774359000746699 1.480566051858659 2.231752004594455 1.362608565767005 1.885007409397929 2.169684789849271 1.445187492776313 1.332402690964955 1.997066707832346 1.39684694986363 1.982507590385012 1.433635086784307 1.818672051003205 1.974582330662543 1.829092680094504 1.740705667498105 2.362214909764589 2.266325830919811 2.111486451478825 1.541050552584579 1.871190554624718 1.799576952820644 2.077805640168663 2.156770162774251 2.01742844348189 1.907150314843394 2.051265607875076 2.142578052832347 1.646328672744232 1.814957805055201 1.920182804910837 1.860915349448305 1.744737590040501 1.339423322564016 1.93540384026528 2.323325140932184 1.862213665869831 2.191203035037688 1.466555693334158 1.492308894187317 2.66284281774773 1.544008733684493 2.423576245145341 1.462768149108797 2.229307966872511 2.005983435676171 2.212802777517936 1.70612157512096 1.183189160620941 2.084286892246837 1.826268694738246 1.548279647649906 1.163039377468522 1.453285126859555 2.167989267796656 2.11393610441155 2.12976647570963 2.452923664643549 1.874580914361104 1.700920428899281 1.546842492323776 1.530288462401472 2.418618292301858 2.082208872200226 2.31997292919084 1.921873667073555 2.181609224751583 1.630070936189895 2.016035991797594 1.994953679441096 1.960483035325524 1.595869588918504 2.253626556463132 1.206132442561284 1.472369362982135 1.752279907166667 2.316643551779634 1.97796491828376 1.935744456369775 2.377533338383159 2.824466681210062 + 3.050606620387043 3.976042781439901 3.10453348098963 2.629150304033828 2.444307462701545 2.582435227777751 2.206501333530468 2.882615465492563 3.068073046273639 2.599427423327143 3.166157615197335 3.22947107082291 2.800376125598632 2.611315045048514 3.454942371101083 3.14797549977834 3.240465744309489 2.495948496161532 2.873146909109892 2.50879990059957 1.952691188859717 3.130033074972744 2.225147374289008 2.418520515343104 2.54676732992084 2.048073999379994 1.505847768137755 2.504739619963402 1.818599682066633 2.512792152982456 2.062188891047299 2.442382348223191 2.395057423021967 2.688557195692056 2.201181278298805 2.739080000539843 2.83785130444727 2.188300116907591 2.054308108611423 2.487257427623945 2.29629172732507 2.7859873366599 2.6485025808297 2.61628215793516 2.222184981933361 2.387426679096131 2.787514518747471 2.355957859938357 2.211296480107649 2.508593349318971 2.044576213871551 2.456927975416733 1.981799619728008 2.202854378602296 2.648341002795064 2.289320363751131 2.570892260964229 2.285704417559828 2.209391284542789 3.019530657780763 2.042538902254492 3.271602026509981 2.104839195475961 3.251552413192258 2.551881445550862 2.648214702344376 2.467810912054119 1.553329023327592 2.410088232548333 2.492355623578078 1.559610073694785 1.444863546210399 2.147264197676122 2.472732994473517 2.510198608875726 2.383514907761366 3.084849336413299 2.334543166793082 1.983414329644347 2.02898714245066 1.932123756693954 2.948480502675693 3.305216579249191 3.757061981787501 2.56215686472467 2.878627482234378 2.083611577634997 2.757405786367144 2.904071406816001 2.932553558650397 2.396889901059694 2.940410251447247 1.373157590272967 2.01248978647709 2.57635390573887 2.710418899031538 2.666185907559111 2.478073672920573 3.46290399163064 3.949880522941768 + 3.798965910285915 4.802546763678038 4.157324124538718 3.74725627031512 3.781918434939143 3.681913666805485 3.633559468427848 3.87046833941713 4.258911702409023 3.688362119313751 4.529520666196731 4.658736653814231 3.789146226142975 3.517915915790184 4.458404621248292 4.412793016170326 4.368556730863133 3.225943449933766 3.821401759896617 2.95760448847841 2.317163441897719 4.014103502742728 3.323010304224226 2.793258701486941 3.078718283733906 2.739025401884646 1.721565949570504 2.909628375650755 2.021432344014329 2.94533666492714 2.464865166150275 3.047037009364089 3.057630579807551 3.159076609480337 2.36577975237347 2.562902314090366 3.156457463667479 1.871745291508534 2.579246102670083 2.671872049056105 2.524112909305586 3.259334062291714 2.814648224966021 2.764557603145896 2.242981998043752 2.189520773202534 3.315932256732182 2.734530185513535 2.533862718570163 2.966751773496526 2.042308137803673 3.007455460629728 2.587176461670083 1.69269621745093 2.501953991248968 2.4977158360781 3.104192747201523 3.454361725363924 3.36162161462704 3.436110191267574 2.705425160860319 4.169197666221066 2.844326007646259 4.261623679251898 2.990671292643128 3.302367616550328 3.315492182169692 2.017012888297586 2.700186456938127 3.442803512150476 1.46621451250212 1.663971062363998 2.76023936967249 2.571954556214678 2.720504721803081 2.615411544512085 3.449035452626617 2.542481893679906 2.292564523969759 2.722817781849812 2.376830124264472 3.439036694906463 4.815556930210278 5.527448491067616 3.408867048354921 3.495706700515598 2.649694755580185 3.455538379341476 3.848189221684606 4.043526513481993 3.495770748789255 3.776007850170572 1.633321608104779 2.583090879078554 3.125918596043448 2.717052902261003 3.496284384093087 2.902004980832999 4.614915954685813 4.790420531408819 + 4.22172417412412 5.024984584953472 5.008740394405322 4.813749224336789 5.07635561395 4.869314867330104 5.203269290130265 4.816607905981073 4.921952913336099 4.486500113790498 5.541714696983263 5.647983133300841 4.402986038632321 4.201159151308531 5.012255673693801 5.299308134382329 5.568975180545605 3.640084043160357 4.634395238188972 2.959367516609177 2.436201241514937 4.646354795105708 4.435150579142828 2.834895375664416 3.672166236836347 3.338162612832093 1.855181965869633 3.038457184845356 1.85416267670837 3.22331752907462 2.575360755162933 3.577178354667836 3.893802207364416 3.084635151564299 2.064347513644407 2.113623598281123 3.275969202128287 1.833861280129476 3.343708404036022 2.365308325802005 2.40012998734403 3.291058675986022 2.787092567656728 2.7525714579447 2.254175435161401 1.8181832095243 3.50687787588455 2.775413270902096 2.668772162414825 3.181237671771385 1.816308519488416 3.254998645634231 2.957830361612992 0.7894860718201073 1.86308673741965 2.370915028258025 3.732470379232382 4.816858440342912 4.897278107539393 3.875755196125226 3.365916607324575 4.931852673639128 3.523054491358153 4.92517970001245 3.05783894710612 3.939291041028355 4.063505138557957 2.501537463105478 2.975471302553615 4.685202517202242 1.257124001696866 1.713526607476524 3.183406388565345 2.567993081668192 2.642408316335604 2.891590238548872 3.47213295699521 2.42207427120411 2.623932170818307 3.578759650907784 2.774759982105536 3.78073893178555 6.347830479740992 7.131861877430225 4.352299002096913 3.914811280158062 3.332031291213013 4.077126621884815 4.735347219540927 5.247342088803634 4.872646985901156 4.82985329926305 1.953194099290158 3.141013412231587 3.133104149717838 2.131921218086973 4.128433707769375 3.178014833219549 5.636727411851687 5.154072828768851 + 4.147348165212861 4.702820921831062 5.350211466395194 5.595378911681109 6.014019137305695 5.900449733984715 6.616683268148336 5.560291884125036 4.789165480930478 4.729219234360244 6.148746392884505 5.906690179911493 4.463681931599467 4.554248386724524 5.166925265167222 5.512563739117155 6.20110780904961 3.609111860242905 5.14418796081236 2.478142452621739 2.241068967388173 4.838492622919375 5.348529753049661 2.541030383933752 4.219019323354587 3.695135033281986 1.815690993640601 2.674886059901382 1.249984176860664 3.281435962330164 2.488778794189329 3.884433722162584 4.524329346222174 2.513141345131164 1.227732978614842 1.688051400746446 3.428819092236067 2.48461648591054 4.385445257510486 1.797730087529686 1.98560211556736 2.912986109640769 2.824844861785039 3.01649932740693 2.537439326530859 0.7292538379821564 3.284424211111089 2.692300431621862 2.544935801243071 3.127337469460073 1.444272037151933 3.191118317320495 2.95754892993267 0.300329270498537 0.9274983507381762 1.920856136186075 4.322698579424241 6.144170208915966 6.671436563590333 4.295168253997645 3.80921710812656 5.344538020382515 3.952979923508849 4.957624620731849 2.579268596448628 4.174859809156032 4.478681176834016 2.889339241581467 3.189627588017402 6.083350132924238 0.984453524503806 1.561168430238467 3.377602472395665 2.647045488565027 2.26250960379457 3.126304567459819 3.157996243112507 1.98039745415258 2.964591581286982 4.483866848236175 3.055541384351585 3.883995249429915 7.617015741617365 8.024075069208777 5.28879757931378 4.096594771613638 3.947371656247654 4.680046764897867 5.574906285655288 6.578634688524744 6.537393597847313 6.219893332660831 2.326923625826112 3.723166417376888 2.523868007878264 1.027516179415898 4.278715830238411 3.363132841144107 6.451984834919816 5.192614164838583 + -8.663167301996509 -4.881139478748082 -6.782589205940894 -8.628804541440331 -9.300899382295029 -8.060165425064042 -7.261558297854208 -2.79311351378783 -1.571141829126645 -5.278377682194332 -1.032810338001582 -2.606300894949527 -2.889143728152703 -1.334691973425151 2.104716288624331 -1.554534099971988 0.1112123719573503 -3.546667635912627 -3.417035309572384 -4.709134880387865 -3.526377177372524 -6.133235299459557 -4.203169845794037 -4.082858294467513 -6.540055125093204 -6.207122586507467 -4.055098947337683 -0.8431148731160647 -4.089877894782148 -5.363364771583292 0.9853922608758694 -2.473130386166076 -4.464366319292594 -1.698570690380734 -1.228798552931039 -4.475292742488477 -1.488679239202128 -4.172945266276244 -1.010212481151598 -3.193734703741029 -2.774379240958751 -1.512666916436274 -0.6920568271966658 -2.17816539042775 -1.948002956934383 0.8713199714423743 -1.941671341107664 -1.317921506500539 -2.810068936661992 -3.607613295296233 -4.701585599116015 -5.602633625208711 -4.375915669352707 -9.865850063126345 -5.920068882361193 -4.121396924828105 -7.124286670656147 -11.2747900364393 -8.898788624865801 -9.035704754333437 -10.9838027647046 -10.52131315951942 -13.64615640715601 -13.49121502467824 -9.902935740870817 -9.784959644932314 -9.058929915060617 -8.805680427739162 -11.93642501949398 -16.42686753724138 -9.253840665300231 -17.75305036200734 -13.99745215188887 -15.30414835229294 -12.78454953382243 -11.2790233861391 -8.891831021902362 -11.8404450232365 -12.68513878336489 -10.61984534569319 -10.42416048407108 -8.701799345830523 -11.43498766972971 -9.671887032798168 -14.70278072543204 -9.183336325835626 -5.478538790987841 -11.54688609570303 -12.17937632732264 -9.70504672394236 -11.817639512612 -13.39295123544616 -8.952034618161633 -13.41732620554831 -10.36769594527323 -4.876832379663028 -6.950175149895131 -8.352693736002948 -3.044878197843104 -1.522655498262888 + -8.408238887537664 -6.53810101446652 -7.38352918093733 -8.840447127273364 -9.939806984577444 -8.090688608230266 -7.716547629024717 -3.387397187791066 -4.226927684838302 -7.057348315081981 -3.830734775781821 -4.253721154927916 -4.027975774003608 -1.925309546562858 1.67884100692936 -1.614068766659784 0.405785341526439 -4.006920809194071 -3.260039477005193 -5.1504961157043 -3.826951743401878 -5.84346422300041 -4.36674292302996 -4.830889396772193 -5.951067526111729 -6.063439491514146 -4.372195793490391 -1.706403930400484 -4.643718745176557 -5.34292771901346 -0.8780664328951389 -3.176083055207073 -5.261959076978201 -1.997681692162814 -1.672069481105837 -5.366679780182494 -2.814469673022643 -6.252707524753589 -3.811139041712181 -4.88334391072749 -3.823069360192221 -2.909786132453974 -2.030014586459856 -4.547224092707552 -4.66845459736127 1.175238039576428 -2.541006568652247 -3.224876346338135 -3.416769687271881 -3.695883726647935 -4.86398476182012 -5.607553348996419 -4.21354335108208 -8.533791595504681 -6.319870249772521 -5.173475826269623 -7.168512613431631 -9.721013811489684 -7.704109016649227 -7.228308632013295 -9.796149618200282 -9.022849214346934 -12.35071182183719 -12.13732793399504 -9.476380362604687 -8.973845281008835 -7.94617770172772 -7.86711118926678 -10.28818533103731 -14.2134436594697 -8.668361148877011 -16.64266471710289 -12.20956576781464 -14.12426456714638 -11.1738147110118 -11.26617957380972 -8.926538075823828 -10.51511879400095 -11.63886317529204 -9.667268663425375 -9.429922431901105 -8.175817789166558 -10.40070818160621 -9.494982845621962 -13.30454441545976 -8.946202797162641 -7.491023005788975 -11.89524780924069 -12.01774353813653 -9.238858767574129 -11.23544583656258 -12.55441723196418 -8.114335945778294 -12.26672163125477 -10.42566588096815 -5.949489817034191 -7.269610510003986 -7.504061761087542 -2.81567882091781 -2.169367357696168 + -7.354598141198949 -6.774539765516238 -6.878181183230481 -7.841211309641949 -9.259413311432581 -7.227662259108911 -7.216612219053786 -3.284674324851949 -5.425928642478539 -7.445833275742189 -5.270435884105609 -5.205608178101102 -4.689868519501033 -2.348198780979601 0.7467054925696175 -1.784798597492681 -0.468894993212416 -4.174013596596069 -2.799880974702319 -5.117920834614779 -3.64498661401376 -5.040573823640443 -3.966955737501848 -4.657019263306836 -4.898434667840775 -5.395541788442642 -4.143812481226632 -2.480143828379369 -4.976965302215831 -5.102163907409704 -2.155517802493705 -3.166783455377299 -4.911236790133444 -2.179130704404997 -1.877777730789148 -5.766605865360361 -3.376960942750259 -6.757467420207888 -5.282039025680206 -5.663832433639982 -4.099374908547361 -3.783270563652877 -3.056878031348788 -5.72565638867502 -7.559980737064279 -1.680722324833667 -2.563040154146027 -4.250570828907826 -3.579778675652051 -3.593892283217428 -4.604711826168568 -5.223570647207737 -3.716655731666833 -6.99686289602505 -6.311446984685972 -5.756234196073819 -6.480236122962197 -7.661613437234337 -6.197267193115295 -5.241945768546259 -8.10759186723125 -6.967475642504724 -10.24816494286733 -10.01116348260803 -8.370141685791168 -7.787023148521257 -6.463473996582252 -6.637919442818202 -8.531498378666583 -11.71865702384093 -7.448260843957542 -14.64090349931212 -9.861091246493743 -11.96013028742163 -8.827036417063937 -9.761647264710973 -8.133318979730348 -8.500256796902249 -9.783575071988707 -7.95362252507789 -7.777535766726487 -6.951711640638905 -8.69755843145731 -8.180395528093868 -10.90307937723787 -7.876900002095681 -8.257741048430944 -11.06244040530623 -10.76363081732234 -7.88540745233513 -9.705822519377762 -10.8464543516784 -6.703531025590564 -10.29956225262868 -9.720853044116666 -6.401844042266021 -6.838828766088227 -6.148376499031656 -2.82476015484599 -2.700996039776532 + -5.615513317578007 -5.609242880615056 -5.436844887735788 -5.915838678978616 -7.471485953414231 -5.668703419025405 -5.897623610377195 -2.595637150610855 -5.153911575307575 -6.527941560154431 -5.190448608886072 -5.199899758303218 -4.611412391395788 -2.443466848623757 -0.4147219481783395 -1.783443174582317 -1.906340555578936 -3.812672104943886 -2.060621272741628 -4.423581252962322 -2.959002708063053 -3.820348444241972 -3.043398890378739 -3.623661251563419 -3.50387438100006 -4.286449891747907 -3.389750395595911 -2.808514211297734 -4.824040355533725 -4.5437394726614 -2.611451016865431 -2.622069380636276 -3.99429487128964 -2.297324813896012 -1.889497613206913 -5.538551520942747 -3.240846303279795 -5.837606095261094 -5.002150682254069 -5.34424063557617 -3.580244970404237 -3.81040009543176 -3.308840144116857 -5.265116814733119 -8.638606832238679 -4.928989773135527 -1.963626008847278 -4.046181926207282 -3.188293181479821 -3.144705524131496 -3.820184983176659 -4.316462875553839 -2.853883681723801 -5.402905609501431 -5.660766081795828 -5.484664113827421 -5.07994711405081 -5.284831297474739 -4.483179448391752 -3.24360762702986 -6.029872506131483 -4.578979775790685 -7.505588833791535 -7.279273733769514 -6.475185014842282 -6.150676722598291 -4.622936405332439 -4.997323920121289 -6.540742787867202 -8.933327134665888 -5.582255406974582 -11.64697554858867 -7.091936107317451 -9.014376248946064 -5.992788393381488 -7.154952370620322 -6.583053423715683 -5.993137694076722 -7.238470881842659 -5.633608256494426 -5.613257564074956 -5.171025422298726 -6.49392802866987 -6.127987424910316 -7.841472494013033 -6.116455353373567 -7.493814809003197 -9.051056650180271 -8.533017524421666 -5.780783058304223 -7.38714441544289 -8.35752894977486 -4.8574181298045 -7.600073257312033 -8.120192821850651 -5.909845000634959 -5.62106823659451 -4.414286658062338 -2.741835006472684 -2.617448299387469 + -3.458510789678257 -3.486190158997488 -3.405670332780574 -3.504135751412832 -4.998672758738394 -3.702305358296144 -4.014408637754968 -1.518983860070875 -3.711481261329027 -4.624969577787851 -3.765517349042057 -4.181945891759824 -3.685201177140698 -2.014188071889293 -1.210654397564213 -1.332063506855775 -2.631883694761655 -2.837914254775569 -1.122808282663755 -3.11065510714252 -1.87628598932497 -2.351719535265147 -1.728777878670371 -2.089724242905277 -1.930232992395759 -2.87763253923913 -2.218406359475921 -2.418793422457384 -3.978204330700464 -3.51873570799944 -2.193505879935401 -1.673522442208196 -2.720412407479671 -2.037116937850442 -1.401917202365439 -4.507659537971449 -2.489729057425734 -4.127605951638884 -3.282558315455844 -4.006824149789281 -2.443254567431723 -2.918876582910798 -2.624919317298918 -3.509565880125137 -7.142638359295859 -5.003971502339937 -0.8644191261134182 -2.852523214814482 -2.232591286672687 -2.263946511183349 -2.547454260532049 -2.902193562193702 -1.683216757378432 -3.72448554642142 -4.235623738187314 -4.23574361903411 -3.179962744554359 -2.845673519539559 -2.713010208508535 -1.396327579637955 -3.766641469741643 -2.153139589123384 -4.441593331122931 -4.234590073821892 -3.950474793949979 -4.101463991588389 -2.548640493274434 -3.001871984157333 -4.227274293680239 -5.862665604952781 -3.253219474594516 -7.879779275594046 -4.160993969722767 -5.642709171192109 -3.020286228384066 -4.179985459516502 -4.508992868253245 -3.305119944860053 -4.298819037381691 -3.005140641610524 -3.192508022071706 -3.052763860048344 -4.027535111141333 -3.736800815423521 -4.529962844387228 -3.918567219910983 -5.380009573624193 -6.126017414881517 -5.654188960512329 -3.223535475775861 -4.590923356106941 -5.344404362309433 -2.798854336959266 -4.42855390522891 -5.692536097049015 -4.411643440565967 -3.804980519817036 -2.44397652095904 -2.056947365767883 -1.755666816360925 + -1.234484214142867 -1.047427713579964 -1.203596929481137 -1.081682167496183 -2.350361323726247 -1.647121534639155 -1.894446746315225 -0.299772670638049 -1.622496467265591 -2.217808841880469 -1.460163716146781 -2.351561517702066 -2.027975820492429 -0.9731257144144365 -1.102598016237607 -0.3456215568548942 -1.892848273659183 -1.376697515775959 -0.1160826259911119 -1.460276853285905 -0.5986655895649164 -0.8365089115541195 -0.2288931631192099 -0.5081501091706286 -0.3551914400450187 -1.350920971737651 -0.8104620333833736 -1.323888646285923 -2.422360512315208 -1.982133282483119 -1.072881893072918 -0.4300598300542333 -0.9543696083765099 -1.032756290589532 -0.1148355032255495 -2.656542774649097 -1.171047891643411 -2.098943336914317 -0.9378207162135368 -1.982029544165925 -1.005265488379337 -1.325694585615565 -1.201976689558251 -1.17667072532322 -3.995372707115223 -2.390817968070678 0.4921941394978475 -1.185499073013943 -0.8503322648866742 -0.9923696134474085 -0.9757380183327768 -1.169960621017367 -0.3574962900356695 -1.87212320702929 -2.162088838775162 -2.254163267725744 -1.140564400300718 -0.615395563745551 -1.054839095804141 0.1672765288819846 -1.581860955228407 -0.01092912888088904 -1.4893517561095 -1.282657938922057 -1.268972583879076 -1.887750034686178 -0.4993833973057917 -0.9014573077147361 -1.72429699229906 -2.685640439878625 -0.8004341655687313 -3.838651323167142 -1.412567074046819 -2.31200801905652 -0.2916649640828837 -1.54329767467425 -2.260651988273821 -0.8027118037025502 -1.379825974586311 -0.4485748807046548 -0.8337978900431153 -0.8809519048454604 -1.582403643459656 -1.318851522844852 -1.378600562833071 -1.609175175361997 -2.528736187126924 -2.786892141105227 -2.603483645722008 -0.6225047851585259 -1.726949414871342 -2.216822894639336 -0.7905580093774915 -1.204709604076925 -2.76706463827577 -2.140087589563336 -1.712525706210727 -0.4237197261390975 -0.5910326961748069 -0.3175827829388815 + 0.7198829206827213 1.139106865855865 0.785162635409506 0.9538785957993241 0.009118484122154769 0.2080305466806749 0.1211354090482928 0.8217630892395391 0.5098979500762653 0.1638427264479105 1.064351943168731 -0.1415167202139855 0.01405207056814106 0.5215356914613949 -0.0182326053691213 0.984241582435061 -0.1258994007694128 0.267327388495687 0.8049882878694916 0.1951502815645654 0.6410904552831198 0.5302169267015415 1.213540571639896 0.79789672076447 1.056029458544799 0.09623804604780162 0.61349526529375 0.1627514471256291 -0.391893964013434 -0.09563408873873414 0.3837461850671389 0.9277429491212388 1.263649429412908 0.6610628431681107 1.784700425694609 -0.3206410333768872 0.5751316308296737 0.1086970214751091 1.169175325477227 0.2367521259329806 0.3739649910221488 0.5385137997559468 0.5196404715570679 1.104834555281741 -0.5822229863216535 0.1338931017753566 1.818290730442705 0.5173705390693613 0.6772494911201647 0.490247820721379 0.6031693254672064 0.5616957919122569 0.9053264006397512 0.1093693090024317 0.1383897332498236 -0.07149474623111018 0.6469197627357062 1.176252675159049 0.3415449938775055 1.365459393288006 0.2651644723057984 1.577834388090196 0.9111273267617435 1.145348917794763 0.9541853172413539 0.07540250161400763 1.189315343133785 0.9436070705542079 0.5787887565857091 0.1960945292230463 1.379647637928429 -0.154753269162029 0.802934037608793 0.4966150527907303 1.8607499789141 0.3563081458542001 -0.2222786562783767 1.176442028077872 1.091999683729227 1.670921476121293 1.152680558296652 1.035969400526938 0.5518247806785439 0.8740770145486749 1.26022180640939 0.4687582655433289 0.2423001145070884 0.3465745293619875 0.1091712035577075 1.595907230588637 0.7845193479006412 0.5498921506150509 0.9215821740144747 1.584058429791185 0.1163186105986824 0.4411814508130192 0.3232127941555518 1.404145501976018 1.266329577625584 1.309894552148894 + 2.166421612448175 2.739937047459534 2.288985989463981 2.357904807344312 1.757334763919062 1.650353991557495 1.738467795934412 1.659313505042519 2.160071177269856 2.059560402401985 3.104922705118952 1.890454976062756 1.947003943554591 2.061586147384332 1.534914130837933 2.270860181943135 1.583846987497054 1.722758864305433 1.49780964916863 1.633339852014615 1.637012519153359 1.588690409291303 2.366313161379367 1.722911439931408 2.174896055832505 1.281714508731966 1.836482030921616 1.589825494294928 1.666480457028229 1.783980568543484 1.719184431702161 2.116523336493628 3.412028326772997 2.452091458420909 3.580412865207109 1.825383146657259 2.389716084009024 2.320813843784208 2.499812667474544 2.120442484101659 1.393630214728546 2.185959214421928 2.0486701482223 2.920471779217223 2.287044769911915 1.770384625979204 2.858182717943784 1.961510975528199 2.003744252935576 1.898303849840886 1.889335907062559 1.94386674624559 1.882027513215689 1.93319524634353 2.09292129109599 1.726261080562836 1.899366654011828 2.388142959229299 1.374611858785784 2.177086037873551 1.592151682636114 2.473984169920186 2.453215956703389 2.728300732225762 2.262438164179912 1.403797975850466 2.233856496743101 2.209166754893886 2.204654957484308 2.291421013484069 2.958482995512895 2.612648193258792 2.230359458888415 2.4169906673269 3.230636614265677 1.462825644707664 1.285848714941494 2.410550367570977 2.802000128111104 3.102432417114414 2.541140204046314 2.437024683366417 2.134504270981779 2.611590343030002 3.139483459930489 2.023095534097592 2.2275888970089 2.708971614686561 2.072500917103753 3.097063122630061 2.61135361894776 2.552250355867727 2.161090152992983 3.525366667810886 2.37540299569082 2.772930023391382 2.031119681716518 2.770372160339321 2.865447596917875 2.726663808854543 + 3.007021177822025 3.652513263135916 3.181890393330832 3.061196620081319 2.75426628387504 2.568483302238747 2.762721331499051 2.116124636842869 3.008099341634079 3.176536443697842 4.126493450043199 3.238294457660231 3.290474770972651 3.153137456055447 2.766956330344328 3.126597625525392 2.472979383325765 2.679577863714258 1.871494687729864 2.710725727454701 2.24650958616985 2.235322862958128 3.058433739461179 2.300501718197893 2.927485743668512 2.073236204065324 2.691345677318168 2.576089684967883 3.239885853650776 3.221763099325472 2.541352506317708 2.838963923179108 4.740120186423155 3.569036513776155 4.492836972114674 3.060563464801817 3.769624661038961 4.036486514368107 2.961697785403885 3.255290613964462 1.892433095083106 3.240563347055286 3.014196244772393 3.986227607371802 4.190381580031669 2.596601585590179 3.448192096236042 2.888103783115639 2.8464785788874 2.922155731082967 2.67638362231537 2.717620112661962 2.414767607615431 3.169506264846859 3.237475691306827 2.751626208411835 2.533716648586051 2.990413303716196 2.007183982830838 2.638717602469114 2.340591478005507 2.712404824168516 3.067091562124006 3.369482859641721 2.58701980762271 1.968729782951414 2.536611802534026 2.746381874188955 2.866016786396358 3.278672442356765 3.777438535187684 4.155382468074095 2.793416373722721 3.311093326672562 3.784973091373104 1.922038774036082 2.097991901312071 2.856180181741365 3.637491015466367 3.771319125653463 3.245482096365322 3.187925796313266 3.028680808998615 3.705212788708195 4.154132755814317 2.883242144508586 3.088228646043717 3.963915739109325 3.082035873527275 3.729480368830991 3.589338052814128 3.590706501061504 2.854817959541833 4.418015704279242 3.607580278301612 4.372329818172147 3.223996827433439 3.457380488638591 3.775199838715707 3.60113477412899 + 3.278680023820925 3.914200069993967 3.477505838076468 3.14686874722247 3.031184146879241 2.956930710424786 3.131259170317207 2.199047826696187 3.00605756623554 3.445433929162391 3.957307411885267 3.629717792973679 3.760756201267213 3.46379067737962 3.103576431140027 3.345248873527453 2.441522869122309 2.990196053419822 1.916539160909451 3.255898108400288 2.415274088285514 2.444328371537267 3.222926318798272 2.574128052293645 3.303599289429258 2.419705032290949 3.098437843451393 2.949563426227542 3.957243636956264 3.885678196947993 2.670035095619824 2.940715437180188 4.805241096270038 3.570262727964291 4.212796436650024 3.039765435043591 4.326024682122807 4.648401175553545 2.78642238914108 3.479910989379277 1.886156941742229 3.552436643208239 3.261024410956452 4.138503209368537 4.704392340104107 2.41624596334168 3.547924975805095 3.095927751256113 3.100182537831643 3.345342743983565 2.918437770797937 2.810632000637611 2.465875180362673 3.499566515291008 3.439523339903644 2.95215726503011 2.665424998624076 3.05847404042288 2.265990439370739 2.830473312428012 2.576697575949467 2.482618453041141 2.929253821765087 3.222446730313095 2.246175465254055 1.974083034641808 2.239467983086797 2.640442242085555 2.661534103768645 3.217019238174544 3.885901527472015 4.499846579157747 2.62264412305376 3.314889885841694 3.66604848762654 1.943936193344598 2.254707980914191 2.661478512611211 3.708382842347419 3.781080227248822 3.333659384129987 3.327270061734907 3.237279395492806 4.071386087095561 4.358120584363405 3.051653324860126 2.931917762292869 4.108357906394758 3.187562308266934 3.565299903253617 3.756327631253953 3.734346515884681 3.039394144634571 4.338371964593534 3.751107191041228 4.993943722409313 3.814084352379723 3.411566646511346 3.93667853154875 3.747169875205397 + 3.120594025975151 3.641582284733886 3.301084354578052 2.801771513259155 2.749526758329011 2.903978681672015 2.921640528351418 2.00832872997853 2.366088255010254 3.020261204161216 2.862305660666607 3.130525474647584 3.387696277404757 2.999282569968727 2.521787192668853 2.974152920085544 1.78201215170975 2.714637860910443 1.713171733630588 3.126367252603814 2.198668203567649 2.287862632507313 2.918799700179079 2.555495360526947 3.355338219887926 2.368617432490282 3.083030667425191 2.78479324363434 3.768293704073585 3.722077180907945 2.205101170828129 2.521410848734376 3.827204675781104 2.614459218486445 3.076929893788474 2.050694255278358 4.017625491177796 3.972334549388279 2.287090560313118 2.948537379976187 1.549447838730885 3.22364732434562 2.875187084006029 3.448292908064559 3.758992148306334 1.893417827006488 3.242128870492266 2.617158087728967 2.871008625097602 3.154789222645377 2.73535369765159 2.369209192931976 2.133927788198889 2.951122621596369 2.94755865285515 2.575328418721256 2.521265107965519 2.744811360156746 2.228550224012338 2.854963596469247 2.451387704128905 2.053060369108607 2.37257861920898 2.614684882046276 1.722523679432925 1.809355316603614 1.653823994536651 2.156325601597928 2.033927456919628 2.539011714179651 3.501811107445974 3.964608902693726 2.0117007791996 2.786648812601925 3.144321061154187 1.759178575748592 1.988123074523628 2.118445270920347 3.289611643845092 3.357788447217445 2.995565214559974 3.049512809265252 2.906403693385982 3.780155780569658 3.950040708491088 2.708715103826307 2.201333591237926 3.457785641692908 2.662575814887532 2.872241277444118 3.327867274932942 3.283459652266174 2.839902694706325 3.603031910541176 3.095680890415679 4.716649931120628 3.835599328260287 2.820216137080934 3.518417464023514 3.234098814857912 + 2.735312011085625 3.044135528274637 2.85450534595293 2.263159830545192 2.15220085146575 2.568563935317798 2.33218882093206 1.706538780934352 1.476159366138745 2.222011015983298 1.431896764341218 2.116967398200359 2.500106968138425 2.098806282651367 1.507696536237745 2.265845419979996 0.9482278505615795 2.098099041474597 1.413317214497511 2.425573314292706 1.763599474605144 1.937023428356042 2.32179458229075 2.29259328027797 3.184696327822166 2.059161971163121 2.764610406193242 2.345446711547993 2.979978873559958 3.016714740242605 1.474267617179976 1.901924044319458 2.570399142954557 1.340366418725353 1.807472709297144 0.8797262473672163 3.179817921403583 2.5550381377966 1.698519298425254 2.07206612696973 1.145023075624522 2.550084947345567 2.161174691987981 2.310656236675641 2.12620582047677 1.647086376465495 2.717128896561491 1.793458075293984 2.412546891770035 2.575279458448676 2.355764886606721 1.706500264244369 1.622695368422683 1.952521433273432 2.242854486827127 2.008911574320337 2.322773680607497 2.241425814554532 2.005127173778078 2.815047719944232 2.144672915989929 1.677419248814658 1.748056856785297 1.91837172229134 1.386990955536021 1.78492820388783 1.108562314264418 1.604580185346094 1.504656464092477 1.806342922438489 2.914671699538303 3.017442230426241 1.317540260177338 2.166975829972216 2.53446041947609 1.606425146103902 1.633311160358062 1.564839670249057 2.709874672212209 2.763795213801586 2.476836164484439 2.627501719471638 2.292514265239333 3.057834399915919 3.222717895513142 2.156014143430184 1.434625771538776 2.512660313393098 1.905645021373857 2.024247663532151 2.622216981846577 2.644307303577079 2.42880619789139 2.643547518062405 2.139381295186467 3.904824592653313 3.443602543189627 2.062095154542476 2.795614181582096 2.41480544162564 + 2.351809739393502 2.447103828162653 2.378813329210971 1.772349704537191 1.518045928263746 2.150151524561807 1.637873414176283 1.475034892064286 0.770394794853928 1.440502278182976 0.3297322489488579 1.126679093791608 1.585416819245438 1.256468974891504 0.7197892590966148 1.568311499226184 0.4766720721745514 1.48308928229153 1.199819969016971 1.591868776682531 1.343996062605584 1.624838160758372 1.681524949628511 1.942487367201409 2.921708079855307 1.687041647397564 2.318509926044499 1.950911362804618 2.098344461783199 2.2589768433063 0.8768271247345183 1.447822673879273 1.794815807137638 0.4669593360936233 1.039573158791427 0.3340196504823325 2.340970401790401 1.39920186087727 1.205625022660115 1.342987757647279 0.9233019082284954 1.907542224094414 1.545708092267432 1.347369948552569 0.9951389013289003 1.4456237793529 2.213525138093935 1.107699776897789 2.002465170540745 1.978015976493225 2.022440390826432 1.181940864113585 1.1732666184962 1.143657797745618 1.788051064120737 1.598064488240198 2.207172026382977 1.745228138766834 1.722916327926328 2.795800030747387 1.822266151003788 1.528685011456673 1.311645836630305 1.439686577687098 1.362425574192457 1.963397730240104 0.8166496070771245 1.208594706447457 1.377464557013809 1.40450284182225 2.375116884970339 2.099270301667275 0.8451196390087716 1.804636388493236 2.101087134316913 1.66087378667271 1.494026331615714 1.269703930413016 2.234965461399952 2.218556813942087 2.004025188940204 2.311286369227219 1.702396242839313 2.245287559925146 2.487657761833816 1.711645009587301 1.011653774379738 1.76136854329684 1.308681317519586 1.382449748020008 1.962169818525581 2.174240056814597 1.978499892538821 1.850996760822454 1.376108355318138 3.046391742613196 2.871885331185695 1.525463185471381 2.115042193907357 1.775630910082953 + 2.183066641995538 2.225555645309214 2.110301585053094 1.536503260496829 1.117089537539869 1.85362344236637 1.129402839855175 1.468874326230434 0.5932300617096189 1.020926133223838 0.02780844321387121 0.6559968928013404 1.095054402045207 0.8822833407900816 0.6257069547291394 1.213928053013205 0.725693218886363 1.181244822007102 1.23453926187176 1.161008483635669 1.150216048656148 1.572612917789229 1.254306720300519 1.738584760092181 2.697082664410118 1.448218205092417 1.920651843451196 1.823157901319064 1.556653442270544 1.86615071059623 0.697970487598468 1.367464049976661 1.717978646631309 0.3931339326172747 0.9821237292026126 0.742393268007163 1.944821672940009 1.221921745728366 1.000849827657248 1.116161407219806 1.029072621414343 1.615917393518885 1.378585887768168 1.081583392163566 0.9137953641452015 1.192262436945299 1.95498684115951 0.9161237486184746 1.827205485096783 1.693468168075469 1.897960504926232 1.060155450878995 0.9842534688555133 1.014604052650611 1.81470766442817 1.525361318686009 2.219463202109182 1.432529872334271 1.515247834596721 2.854103299820281 1.616396267505806 1.683745613789597 1.183495104608483 1.366480950866389 1.587797119358584 2.218177825267048 0.8401885354796832 1.048300689556527 1.627340034227927 1.405767160307732 2.017669612767349 1.490012092443067 0.7624736502984888 1.829278378831077 1.986176495829568 1.937039486715094 1.722483032376203 1.348202771052456 1.995884915448187 1.857580471205438 1.728285620124325 2.251263565615091 1.422374133718222 1.722544609134275 1.999055464909134 1.599587549994339 1.017060222003238 1.507155162793651 1.139773220666029 1.190948817633398 1.590083458968365 2.069117416944209 1.621685337739109 1.458842732743506 1.122125182784657 2.539346783607471 2.374101559042174 1.417989642842258 1.808041376292749 1.697117047752672 + 2.371524359208706 2.633007981046831 2.227260865605786 1.695012729243899 1.160453094515105 1.851046382864297 1.047662324905104 1.780687860220496 1.096263323877793 1.166658975153041 0.6541459101863438 0.9864410941445385 1.281442657308617 1.138566484974035 1.32334738237796 1.426108875778482 1.57322442044233 1.355117563822205 1.611065732078714 1.387543650364023 1.276895798901023 1.908455731130744 1.2314076440598 1.855429258376461 2.61515530221368 1.479381971850671 1.693838319188217 2.004486841875405 1.505667678901773 1.964758608502962 0.9888899245652283 1.633294908673179 2.015072907106969 1.056164924883888 1.434600493245853 1.792455629513825 2.126822843647233 1.873023965684126 1.181043319527134 1.451145749173975 1.450903737188582 1.818891837567662 1.719667683150419 1.577192304076561 1.500376099897132 1.59499067423538 2.064989161019369 1.28607760891191 1.928153232560362 1.844475126753423 2.007965313940986 1.411700721166881 1.148906411666758 1.576735980061585 2.249610742215964 1.784061488979205 2.358166203660403 1.441305506592471 1.5132224397654 3.016512041301382 1.622128738518093 2.146064346502499 1.374412042169297 1.762450121530492 1.970166369108483 2.440264102791843 1.148467874938433 1.095656796969251 2.028737169879605 1.678697330902651 1.844020599088253 1.262202518992126 1.075245344814903 2.136934480724449 2.182778157257417 2.29172432970131 2.273703160602736 1.741458397142196 1.988532280649906 1.738288360635579 1.704199887401501 2.475402089783529 1.65420632518817 1.81072046439067 1.903722238151431 1.882726227613148 1.300308794459852 1.795442774687558 1.482238134234649 1.526137274184293 1.626106926971261 2.340845990667731 1.4299961652614 1.507687097433518 1.44402423144129 2.529755971168925 2.17155202005506 1.711773716354401 2.062646301177892 2.293423882632063 + 2.934073937523863 3.629814482905203 2.795083107914252 2.290572711273853 1.747313033010869 2.244558573671384 1.527752429472457 2.421026762971451 2.194888920996164 1.885443458553709 2.00010254366498 2.09702121855662 2.120134527633127 1.921816593880749 2.57273389459624 2.241231841891477 2.594949523590572 1.963852338043125 2.326523933528733 2.093703461542646 1.667165508823928 2.617615839322752 1.686136988897488 2.282822898969386 2.733420754317194 1.816852110270702 1.674662917157548 2.392152340215034 1.797975310687434 2.395358673113151 1.573001140448923 2.07373018519479 2.330208423463773 2.076807065309936 2.048510311941982 2.811599714715157 2.67049575055114 2.543312841018292 1.624638475752818 2.101183155950366 2.033230858502066 2.424373625288581 2.303785371802292 2.386961699343033 2.144163670016431 2.555601498498826 2.506752785557326 1.992106792411704 2.221012138577862 2.314279945024282 2.245354156389112 2.101335229907107 1.630116417551335 2.320801092843567 2.792129090965318 2.223288953422525 2.624944799461446 1.855978442887135 1.834199348089101 3.283472586249673 1.89130216350739 2.872995439590113 1.835668589471425 2.572198383742943 2.456726452791372 2.677118270494248 1.691153849496004 1.291511885551699 2.377863651686766 2.106140193001011 1.763847281476046 1.321368777236785 1.661111568610067 2.494659788513673 2.561485666108638 2.566882055125575 2.955833311078095 2.266933150526711 2.13357981002946 1.875070529599952 1.903409864000423 2.916586080162233 2.471265686369406 2.66904138803875 2.23071240241984 2.467571569948404 1.678364550378774 2.46570140630115 2.248197312875163 2.315137344892719 2.079778928387896 2.884545140268528 1.414534981302495 1.89195611168725 2.182180277992302 2.873948854197806 2.396761211392004 2.23669482393143 2.865057195887402 3.386724639588922 + 3.736970821686555 4.858944369159872 3.729403244768037 3.252757343831036 2.825198519367405 3.038117698408314 2.565882668932318 3.318228421529057 3.594007461209912 2.992981090177636 3.650000095562973 3.679828866046591 3.330939475250489 2.963114473698738 3.948581864135804 3.465573250550051 3.591511417810239 2.795876101535214 3.280746531338991 2.861213856233462 2.153834078962063 3.547903533843055 2.557353593343578 2.818893247038574 3.053378857279313 2.389591224273317 1.812413296451268 2.831832702940119 2.142490742611244 2.905125632147019 2.166647285509043 2.536374335182245 2.661739409441566 3.000779391659819 2.526422522871144 3.26216700211296 3.191634414177273 2.61619962622693 2.123901617563263 2.663922155787986 2.546852956997327 3.145932801911272 2.762844042206723 2.937812143011911 2.503805988534495 2.875408895807893 3.089537228282611 2.649820382734376 2.559815305629854 2.858022714417871 2.434260662999577 2.866586925697078 2.278927039647442 2.569932546199539 3.082915635655013 2.625488127050176 3.035954546576704 2.691354281003441 2.562977690016623 3.636522423719214 2.41492598217156 3.782205376894353 2.488700665808437 3.621402847571517 2.974077463028152 3.064233145956678 2.414323367454926 1.594766791918801 2.615859771142823 2.703013504801675 1.664866730399808 1.494462960064993 2.339553332320065 2.700734014997579 2.93490607493186 2.73932734727174 3.540891792066418 2.710131468811596 2.353275387298254 2.27050891584031 2.248392078005054 3.460927422531881 3.803049648902515 4.213898416621305 2.915532803826068 3.170497352804887 2.103228757198622 3.28607687526619 3.253719946279489 3.408510343457237 2.900967144724746 3.589336227832973 1.544631406253757 2.451624501756669 3.029271857294589 3.231511248070092 3.026065358181313 2.810265615345998 4.028232728800106 4.585489103030334 + 4.529305933279829 5.825936840048598 4.799914468781935 4.406124903864111 4.186945339139129 4.127680578982108 4.017872971693578 4.336204529929091 4.873940098214007 4.170627062165295 5.158318056780899 5.246737919017505 4.487061479312615 3.962344950411023 5.030595000765345 4.713232096053503 4.662536230535572 3.564979557258766 4.302378237325684 3.325381173149935 2.542939375264723 4.4627380715865 3.673626843228703 3.190910880505172 3.524285905565193 3.048246313177515 1.998331249869807 3.167744634529754 2.282323319047919 3.326939861212054 2.5384573382903 2.966353420771441 3.190691100621194 3.473747217498357 2.641658543444635 3.066903185504373 3.438154135860344 2.259000243820747 2.661727339569829 2.81797310393199 2.789625356668012 3.645333561280893 2.927471618517018 3.033366883344193 2.528075182880837 2.431771530493366 3.553112576551373 2.961419460142125 2.801383061907245 3.254161368969221 2.424196291541989 3.442852951951053 2.886426217417352 2.0236576612877 2.878085776043122 2.787841390221161 3.590179013129728 3.878340626608406 3.72682358431183 4.045110017312595 3.103279256751023 4.739480651819804 3.223791045200073 4.631428052261981 3.343863828250051 3.624639977340848 3.218985887585404 1.974313753156821 2.789160710062561 3.555638651596382 1.475400615812759 1.617102679811069 2.942785522827762 2.70521564796536 3.131392620254701 2.913606400312432 3.866129490168646 2.909703194153735 2.616318780556867 2.916645812482329 2.647157744168283 3.986428822424102 5.450585518576645 6.095049012491529 3.840405751006188 3.804965184641787 2.644308433295066 4.087884162368425 4.317347388031067 4.669050620571397 4.039168655036519 4.428246444479555 1.775667090981187 3.05946659296751 3.633261703654171 3.238226075351577 3.846027114299773 3.30775058842903 5.278996385502637 5.466152082553234 + 5.035667929331794 6.182860633769451 5.6858958049379 5.510012749620728 5.519198236630473 5.317074626629619 5.630669490656146 5.30485504625176 5.612570888933988 5.05813403342745 6.207178241148085 6.294981561980421 5.179683736529341 4.683154791787018 5.580491837315407 5.547816984974986 5.676143852606881 4.017834168426646 5.193324537489389 3.301344360213193 2.683273456093275 5.113097537970589 4.807420697848102 3.213367608760915 4.057802710685792 3.617315142504594 2.111416542686129 3.222930808899946 2.070089001290057 3.592928797348236 2.615927242193834 3.334648813365959 3.87625115395349 3.339207304073781 2.229874698625821 2.539639432645558 3.464364367439291 2.146508256173791 3.417297256520207 2.508309934156557 2.674389194139962 3.711745365342892 2.929089665005478 2.988935273520454 2.48097329269435 1.714715016045327 3.687593193512336 2.91924997764632 2.840378473188593 3.385176808356761 2.166676813237814 3.669371585787559 3.24895120240285 1.059350661096744 2.155786558622793 2.593658830034656 4.226664771286323 5.259786990182874 5.271818261905025 4.470968767745546 3.78499956648341 5.553685316912379 3.890803795795932 5.277203800901134 3.317262241660501 4.146482159911102 3.925886750370637 2.37172752606017 2.938895665177824 4.683766920193875 1.193039896339542 1.58616595600688 3.361239850009952 2.625162059834793 3.049111273431663 3.163788930878326 3.870679815215908 2.797177077586184 2.92707162361512 3.766109278452745 3.01569342124526 4.37995555023781 7.129902344125981 7.766474811144718 4.87106947042156 4.245383838723114 3.317332888271011 4.825860502532436 5.336425890444389 6.033617814435274 5.478835744087519 5.479278002138017 2.074893357728797 3.667252942294908 3.712187521591659 2.681913767331935 4.516560414997457 3.674210883602143 6.381103176430734 5.824819500900502 + 5.071131734277969 5.925789985384654 6.072225703814183 6.324061254441403 6.495165674586133 6.359952797578444 7.099834264041419 6.055705325219606 5.509669281183051 5.353321502843755 6.697963867922226 6.480594060085423 5.177425705034466 4.989034633126948 5.63809179649293 5.678017597567788 6.035351233467367 4.008097437140918 5.778072324340883 2.737647381138288 2.492538623070686 5.300520121474165 5.738975080644195 2.876403800848504 4.548820492884261 3.949129675853328 2.061470299058783 2.787836466498675 1.440575006423785 3.628749553929737 2.488337561802837 3.513401789082977 4.376112618639759 2.677174775680768 1.262843507390173 2.038494549417663 3.52113141308044 2.716932583645867 4.425816238174876 1.964241773684165 2.263959765945913 3.373889418871613 3.015919605904291 3.266547794416119 2.708529970643119 0.4553812127979804 3.416978585326063 2.741387943260241 2.614868345233276 3.227924352362777 1.73373534474112 3.527366354469009 3.225165389777374 0.4864143543957056 1.115868321974673 2.058127255815265 4.811519541186954 6.605710390619606 7.051635932380151 4.869862354205196 4.241239105201457 6.004450524033246 4.313087688759992 5.288375409466425 2.738849680695807 4.272660808877617 4.306255596061419 2.686013350509711 3.042354679475125 5.973432539437113 0.8739276857695586 1.370970532509091 3.554513645727639 2.657051803933768 2.674234004132813 3.400044454578982 3.56373601600589 2.383200944890859 3.275031426292003 4.700058291407203 3.286155025369567 4.541653054375729 8.534969834426079 8.663502462434408 5.879841767624924 4.445201540057326 3.948109560466307 5.54230111914876 6.309548740680611 7.520790379211121 7.233101098885527 6.869976365685034 2.436148935491019 4.300612701271803 3.160072774748414 1.606834372973481 4.726695327615658 3.919328846445495 7.216317244273068 5.819360770731448 + -8.639069283617573 -4.967734655725508 -7.494293563555402 -9.713431988922821 -10.43320350384602 -8.932502535535605 -8.348913814443222 -3.311723192189675 -1.829434100662183 -5.824121123838268 -1.418179639535083 -2.885541530948103 -3.175356670141809 -1.037013740349494 2.112950483278382 -0.9080586179622969 0.339406311763554 -3.467894165635698 -2.946661377658529 -4.320942193249721 -3.404157184695578 -5.730906603706899 -3.939526972299063 -4.00296468046318 -6.822648837885936 -6.390889384412731 -4.071862289889395 -0.8993043288792251 -4.320761342548394 -5.356512081867095 0.9800478674410442 -2.666749356936862 -4.317470569846591 -1.606746692820138 -1.210918813750254 -4.125248199762154 -1.051418805628515 -3.516569206738041 0.01469104314890046 -2.582776150212339 -2.791543437059772 -1.544992222938959 -0.5623922480530155 -1.836253298219987 -1.858648761321795 1.25486544558438 -1.534472670662215 -1.090303349450522 -2.536846194354894 -3.322536584806357 -4.657233702136409 -5.452101573930577 -4.054425925936812 -9.599919191178515 -5.662794590065687 -3.777659033582722 -6.707247750684473 -10.93888937969859 -8.772251380663874 -8.855552630804482 -11.13287007309501 -10.77387208819823 -14.0929806679535 -13.95167675305311 -9.731480892764012 -9.34903221618697 -8.468805036370213 -8.043878094566935 -11.34983797057839 -15.93187903977832 -8.738606309339957 -17.56598778608895 -13.68587120071606 -14.36345843423805 -12.3652116472349 -10.47049492121073 -8.466203820852684 -11.41233968387587 -12.22243427655803 -10.44974655762474 -10.20734279394435 -8.774482559711487 -11.18042994011421 -9.27095132510965 -14.35511592161708 -9.113665354409477 -5.026374476113233 -11.15427621505296 -11.90791752803671 -9.364447840269349 -11.59931176800092 -13.58099440405749 -8.872181972561521 -13.48311199854106 -10.60998657954769 -5.066234432231795 -6.950112627794624 -8.409369132364645 -3.178572351662069 -1.467108187993662 + -8.313151018826829 -6.640363801743661 -7.995266856567468 -9.735348217043793 -10.96996033364849 -8.863604083191603 -8.661377493895998 -3.806619836635946 -4.365281157664867 -7.467403759610534 -4.060587092801143 -4.460933482827386 -4.207180582196088 -1.560329140346312 1.777925667995532 -1.103338494707714 0.6002313950230018 -3.882309411581218 -2.810616730688707 -4.771306770791853 -3.712500094414281 -5.485186728248664 -4.122098811825708 -4.795494286414737 -6.212220599321881 -6.233326721474441 -4.382430660240061 -1.738261902921295 -4.86869354074679 -5.28993267137048 -0.7917677461896346 -3.110213748321257 -5.003659669374883 -1.823312459390763 -1.5025996010977 -4.9140668684704 -2.420187342720112 -5.552188895068127 -2.725681212888844 -4.241725765514275 -3.841610080535702 -2.952778849925835 -1.892254013598858 -4.127690189054988 -4.47753725624173 1.591641707890407 -2.124404589038502 -3.020135583838965 -3.152561296926251 -3.406489214172097 -4.801185410835387 -5.433503722731416 -3.848858342595577 -8.267422996682853 -6.099421377603221 -4.839103295288169 -6.701353093061698 -9.314857827666856 -7.512252077890082 -6.971845950806085 -9.881797113810329 -9.115253273745566 -12.63807148748992 -12.46074740389486 -9.267872756136057 -8.464044120026301 -7.265536949069428 -6.996671951293365 -9.613653510055883 -13.63759096323884 -8.05926322576488 -16.36350396934722 -11.80790155583236 -13.12877299960928 -10.69989742377948 -10.45253054938621 -8.482723512387565 -10.03014476262979 -11.10981284320815 -9.460634314111303 -9.129614155054696 -8.169657976262442 -10.03580047894457 -9.089963300914178 -12.91111809414065 -8.810003188250221 -6.914768774859112 -11.44596082777787 -11.71188899425943 -8.835182114491545 -11.00547872903371 -12.71045474608763 -7.988023076970421 -12.26309247720928 -10.501122509173 -6.064272509918737 -7.159886793104306 -7.3914746491796 -2.78668132443363 -1.956551715680275 + -7.204758732117625 -6.845539522859326 -7.350715783482883 -8.523040458072501 -10.15834270465712 -7.899598823511042 -8.024392098246608 -3.612891097429383 -5.496575979272166 -7.74350307423083 -5.345830184238366 -5.383249603946751 -4.79056178682913 -1.979071565659524 0.8700396155677481 -1.433989373217628 -0.2123333612601073 -4.006795343884278 -2.388399000203208 -4.783699850178891 -3.534957389900228 -4.715559598374966 -3.716725529448013 -4.628210603288494 -5.108295647369232 -5.528121089817432 -4.126952492566488 -2.460250296438971 -5.155635946895927 -4.993543358392344 -1.987739631671502 -2.852396079179016 -4.527344074197572 -1.903567929256042 -1.487294775799455 -5.209181449964944 -3.020218963027901 -6.089598865690618 -4.323663978657351 -5.019471791865726 -4.090606200484217 -3.794923436584895 -2.877728847790877 -5.249754113688368 -7.238712140721923 -1.248563963357782 -2.154703249287209 -4.042796829715485 -3.325559475844784 -3.296638387311305 -4.512397435585171 -5.023377635117754 -3.325443275804901 -6.731988264070424 -6.12772885583945 -5.438334333726289 -5.966105662345399 -7.199085225001909 -5.944300951046102 -4.910831459309463 -8.11600764373263 -6.894242394687353 -10.36530251834211 -10.16960667087369 -8.117582332799429 -7.227242916964315 -5.727480176736208 -5.714345160397443 -7.816340956534077 -11.09793984371754 -6.786696469833259 -14.27976736413257 -9.384956163914467 -10.93678153951623 -8.296177496038581 -8.994138870587904 -7.67920382018383 -7.972587352151095 -9.190405669893153 -7.681473344574442 -7.393314179564186 -6.855809246516856 -8.248787688396078 -7.813031818170202 -10.45323410268202 -7.664715754267945 -7.647212265996586 -10.58799770219821 -10.43365591513066 -7.416340746487549 -9.455338613914137 -10.97820115014474 -6.522084222277044 -10.21655112313601 -9.640068269789481 -6.457243487795495 -6.660026995233238 -5.885104310128554 -2.631039325140136 -2.361816658575446 + -5.432829963971017 -5.598734780855011 -5.748639352212194 -6.378376635504537 -8.215048716243473 -6.234539903758559 -6.572755601810059 -2.840153119323077 -5.199938808455045 -6.729559514256835 -5.12558143779097 -5.377417837593384 -4.665029087822404 -2.117707736023021 -0.3194635585014112 -1.57561679958053 -1.51710301019375 -3.608198987443757 -1.701408711511249 -4.151145659718168 -2.843264828399697 -3.507897507646703 -2.762333146620222 -3.556598161686907 -3.637339011154836 -4.365035543502017 -3.330691399547504 -2.715999881675089 -4.917480459438593 -4.376772041110598 -2.384878022030534 -2.13042884254719 -3.475041132384831 -1.921143489424139 -1.247296854232445 -4.91350229769705 -2.896673823461924 -5.237490366267252 -4.252176731115924 -4.719831908037122 -3.514784053441872 -3.744360232296458 -3.061073083044903 -4.753321659136645 -8.202738713471177 -4.546587808985691 -1.578623789356726 -3.798887060851939 -2.939525593525104 -2.831369994880333 -3.688144265825031 -4.093000073011069 -2.451955776573868 -5.128457722490566 -5.496692977556449 -5.179425662833637 -4.529725345812039 -4.782935388790065 -4.176952475203962 -2.842764152205064 -5.953473045678521 -4.353837149931223 -7.463796862483377 -7.273025769194646 -6.174788772423199 -5.569459714224649 -3.87720845678632 -4.086857128712836 -5.837700148091244 -8.305046129342372 -4.908790776040405 -11.21998514601728 -6.565503004516358 -7.996909530575067 -5.410696536528121 -6.466178824634881 -6.135894930264385 -5.4487471700686 -6.598102161513452 -5.282321546164439 -5.155335743733986 -4.983987977851029 -5.991822511175542 -5.775314680132396 -7.317484639785334 -5.818343732711583 -6.910188612516322 -8.566445099723069 -8.180429852758607 -5.24265023809312 -7.103087999485069 -8.460444900018047 -4.615852453687694 -7.427573573964764 -7.894575146863644 -5.899419546298304 -5.409774532774463 -4.029689945420614 -2.39663819685029 -2.194724447187454 + -3.264144900400424 -3.358876381949813 -3.5529648981028 -3.755467309878441 -5.568008742848178 -4.152504622164997 -4.558214301476255 -1.685119977017166 -3.755322830897057 -4.735592639011884 -3.584159241378075 -4.36011939891614 -3.707404240059986 -1.746235421724577 -1.151070471355524 -1.220141914159285 -2.124086598593294 -2.602258477470059 -0.8258002928378119 -2.895914043354423 -1.742716550019395 -2.029618510678119 -1.397532620343554 -1.948927510641965 -1.968307239425485 -2.893034692104266 -2.107942496761098 -2.245135692624899 -3.959573160840591 -3.295013882237981 -1.936211444385663 -1.116844874299204 -2.08502694964227 -1.595629322694549 -0.5661325387736724 -3.892913153060363 -2.136107702630625 -3.588758167731271 -2.714585349376648 -3.419956243819797 -2.299093057545178 -2.738768862154302 -2.306889207373388 -2.986100356783936 -6.641231686666288 -4.708671291619112 -0.5135351315445718 -2.540716175594071 -1.982729068608023 -1.924963629471677 -2.366738559835085 -2.661537215015187 -1.283045870737624 -3.42277092491895 -4.064678209163503 -3.934446883024975 -2.611934153239417 -2.32268066128745 -2.364488871857361 -0.9335473586295393 -3.605864369927986 -1.805866577610686 -4.269990076245449 -4.090712554272613 -3.606186496592272 -3.529199918688391 -1.842553550461162 -2.165645349622991 -3.577839357612902 -5.254054872759298 -2.598203677291167 -7.403080018586479 -3.612335233425256 -4.670003665978584 -2.399226089539297 -3.583744593490337 -4.090860914722725 -2.775419499175769 -3.638559353998062 -2.577327769763087 -2.678436286696751 -2.783256029867971 -3.501134122138865 -3.335170589899008 -3.915579538406746 -3.528392757482379 -4.848448356541667 -5.630691406172673 -5.276168817115831 -2.616985302476678 -4.260551525479968 -5.405767687734624 -2.497413140254139 -4.161632604183978 -5.336327797740523 -4.311781236458046 -3.579115806947812 -1.96638516152052 -1.570904917329244 -1.274619253171506 + -1.042041745233291 -0.7950181411433732 -1.196043428572011 -1.140052092028782 -2.733336813507776 -1.96904078660009 -2.305022699845722 -0.3908504437858937 -1.662466971290996 -2.23260864364056 -1.193803072303126 -2.502055039811239 -2.010955541602016 -0.742015494642601 -1.038922765872485 -0.2739542170938876 -1.354180524613184 -1.116318403672267 0.1149374431333854 -1.289095858213841 -0.4388379665469984 -0.4897902120646904 0.1609289098487352 -0.2786553823774511 -0.2853954305901425 -1.300012678053463 -0.6441889880370582 -1.070060811041913 -2.28109421971385 -1.701176319331353 -0.8089262334415253 0.07549925552484638 -0.2574725030590344 -0.5883255706403361 0.7674941797813517 -2.140261908863977 -0.7999057512140553 -1.60200330282305 -0.4893245899561407 -1.444772302702404 -0.7742784249176111 -1.016190612513128 -0.8427025043611138 -0.6792668690613937 -3.49623464546147 -2.162226042540169 0.8029028472948667 -0.8142411782123418 -0.5943292429747089 -0.6205628989937395 -0.7402515656667674 -0.9189212707831302 0.03251620536502742 -1.531999710798118 -1.959585122260251 -1.950962354643707 -0.5777415321772423 -0.08901745874027256 -0.6771798484568308 0.6820577505274059 -1.345761028605821 0.4185922924343686 -1.22745868637594 -1.046873687162588 -0.8955508233993896 -1.355140110375942 0.1210405912424903 -0.1829043843499676 -1.149074658986137 -2.109139002430311 -0.1784764656476909 -3.324008021882037 -0.8681794388685375 -1.42034435957612 0.3529725873595453 -1.043639361321766 -1.88864161043557 -0.3148355137709586 -0.7278732309150655 0.04406350829003713 -0.2830943373573973 -0.5444954670565494 -1.055006099656566 -0.8118616779038348 -0.668503190505362 -1.129866543104981 -2.054247051710263 -2.272948584617325 -2.199896429521687 0.04160439667248284 -1.342535569809115 -2.222109674781677 -0.4354019105539919 -0.8482621370567358 -2.307566339120967 -1.928452040541742 -1.473205156162294 0.1179804166986287 0.02233444584635436 0.217304573357433 + 0.9096057719943929 1.499209761226666 0.9312104800483212 1.064380692696432 -0.1841868163173785 0.02708463062299415 -0.1526302010315703 0.8037690608034609 0.4946306099373032 0.2533834519090306 1.377061735885945 -0.2222943508386379 0.09404433087183861 0.7580342529668087 0.1082822963780927 1.058348155180283 0.3374583235472528 0.5456720802294512 0.9736516205812222 0.3337505902673001 0.8283863449942146 0.9039854288421338 1.657357071882871 1.109629443346535 1.23975551762851 0.2129888568742899 0.8367293896299088 0.4953966213288368 -0.1300751347844198 0.2497650194563903 0.641805047634989 1.30063269602033 1.953537084533309 1.050913243596369 2.545297398228286 0.04248274655037676 0.9652430210035163 0.5731932458804749 1.542010696914986 0.7202562139318616 0.6831586968091869 0.9678923662299894 0.8762356943225313 1.532032626540058 -0.144857119077983 0.3477945327886118 2.087574532223115 0.9115725597016535 0.9414007736613712 0.8967186693444091 0.8939267816222127 0.8168092123947872 1.280123432194159 0.48302079709174 0.3865892002977489 0.232577312286594 1.181198908612714 1.690529024526768 0.7343357137302746 1.92114945541698 0.5599840700936767 2.046777718468547 1.221585568275259 1.42007242303589 1.332159091100038 0.5399291605353937 1.688523247255944 1.524461528892971 1.078711852891502 0.7393528702232288 1.969556613643363 0.3913599817315117 1.322655803262023 1.285303573291458 2.514234685753763 0.7616566310625785 0.1018889961424065 1.608832520290889 1.717069438660474 2.21776575010972 1.723657930149329 1.422525127774406 1.064212828586278 1.500057574871789 2.053540458736734 1.021442655641295 0.6546836965026159 0.8836159551524361 0.5295648208630155 2.293207791954046 1.222536402427068 0.611545406118239 1.318773368067923 2.014127180700598 0.6336415927362395 0.7689214949423331 0.5805882588902023 1.972374777829828 1.97158978052903 1.894798030000057 + 2.367373669829249 3.178967332045431 2.556665280804737 2.611004197082366 1.746383400211926 1.619197867781622 1.604064421131625 1.712747734993172 2.198696903484233 2.257332038301683 3.419398856465705 1.911741562333191 2.111280527944473 2.342926055646785 1.762223572470248 2.365878975007945 1.896250364119624 2.012821982692003 1.615279797708354 1.744381186006649 1.84603267788043 1.979806182731409 2.848053893641918 2.097000248436643 2.472323905822122 1.462319906873745 2.115505336318165 2.006400240796211 2.041095646902249 2.205184951562842 1.972129425399544 2.336547026994594 4.04624746079935 2.765921751773931 4.121392600321997 2.037635164977473 2.806668544192235 2.753958872595376 2.835230567996405 2.556848698050089 1.757338287914536 2.704542542114268 2.369409369217465 3.253040050230993 2.651733676334857 2.030906409201634 3.090890423361948 2.331302555858656 2.276329472389989 2.334725434126085 2.227997841030628 2.197218187638782 2.238643833614333 2.322996229275304 2.388522750718948 2.025617843093642 2.386469868479253 2.8784765327473 1.769316333764209 2.762549897583767 1.924365291774109 2.943507728530676 2.775572415901479 2.993326095463999 2.617209304349672 1.780285092383565 2.593094525975175 2.654465000809068 2.639301702685771 2.803895510551229 3.527484137579449 3.186189478205051 2.713268005172722 3.104311229748419 3.881451484921854 1.792297590710405 1.580802449127532 2.791792618689215 3.397505893677589 3.700019000359589 3.121871034894866 2.860456648541913 2.621819402472283 3.324623493981562 3.983954141186132 2.620529518579133 2.565396715468523 3.262467352812109 2.489874484304892 3.791098398447502 3.093985260155023 2.685873789981997 2.584540843661671 4.005387974597397 2.897042283861083 3.201318355684634 2.310402451817936 3.319100767177588 3.598892052816154 3.340405816020443 + 3.245297398298135 4.148749109590426 3.557118992976029 3.431031404004898 2.907145232537005 2.688305649367976 2.766073837265139 2.238530127899139 3.125968060026935 3.474776067938365 4.396581286640867 3.365278343924729 3.539007834435324 3.493572061200211 3.088341923838016 3.239844640260344 2.616851851174943 2.976779605312004 1.955008107681351 2.801856994192349 2.467649891124893 2.627402754987997 3.554959062850685 2.714189457260886 3.332050309807528 2.314877961463935 3.02247295404959 3.084677823229867 3.717469318544318 3.72444185311906 2.798403937078547 2.953231248027805 5.310690132577292 3.82371664735183 4.830105129793083 3.16671573714666 4.229346875117471 4.443157535714136 3.325501670509766 3.661693399431897 2.277648835432046 3.805171689183226 3.292678912510382 4.239798886876997 4.520778050578372 2.876512108548923 3.658027351719205 3.206359046166199 3.129398757659146 3.378670789285025 3.048040725208011 2.963731083698008 2.751476661909692 3.559478703085915 3.574258630834265 3.042387464016429 2.964089693772621 3.449673932511359 2.393055470745026 3.24384162475917 2.688259900420718 3.153370319557325 3.375370519232092 3.590426992137509 2.898746787126584 2.254820789079531 2.757481584103516 3.074673517277006 3.24890229992161 3.76069316711073 4.338176895493234 4.74968316956074 3.23493385562324 3.92181729569711 4.425316704211582 2.221458991756663 2.398401673698118 3.206164352664928 4.21521368257163 4.420782316400164 3.830535568613868 3.640387659962016 3.483870422974178 4.448187168106415 5.002295479420809 3.488414968837787 3.338427939272151 4.515310578976823 3.468880853570226 4.378278409036284 4.101533735734847 3.796945768233854 3.28676284966059 4.922664666853962 4.09346440898662 4.87867248889961 3.532139703584107 3.946860962027131 4.464116621813446 4.207026681738615 + 3.585195284726069 4.463045281721861 3.948506654327502 3.609467558155302 3.319291313135182 3.218680171470623 3.263852467978722 2.38620335131418 3.21546757715987 3.821861435160827 4.144068681634963 3.832853482614155 4.06374851336659 3.84285694129585 3.473248833768594 3.466031489269881 2.466132534476856 3.291521886768351 1.986484808730893 3.344948321864649 2.638390615775279 2.82174925020081 3.70992159681191 3.008522566359602 3.802297657544841 2.717939070207649 3.47447894893412 3.54784933225892 4.523130450124881 4.459173196497431 2.939675622048526 3.042115605547224 5.336680441516364 3.792283262400815 4.437824502238072 3.090108679092737 4.839223594828582 5.040298834444684 3.252694822513149 3.877436287908495 2.258866563812262 4.11781139720506 3.513848523085471 4.362334748073408 5.028003333878075 2.615453480090764 3.758844051906287 3.374190885651842 3.399894276319174 3.810870174043885 3.304387696414778 3.045434036727784 2.782115744450493 3.886067475201344 3.809885683679568 3.237089436477618 3.04105209212139 3.484778955320508 2.636123668222012 3.446996193848918 2.921645099652181 2.879455067029085 3.211838899475879 3.386248674003582 2.513673469264177 2.191801255998143 2.342325330915628 2.879243424165907 3.00731867399918 3.666498193924781 4.444034910222399 5.101019760390045 3.02300503551669 3.885065341586596 4.290606818176457 2.279003240616476 2.59866808963443 3.00711051482358 4.285873575774531 4.478340849691449 3.919281926662279 3.804212590519455 3.654051308928501 4.78298800855373 5.156373335812987 3.626957539977411 3.091278110568965 4.633405389082782 3.516607557483439 4.131441041663493 4.28128253613977 4.012776472554833 3.462363760561857 4.846548785470077 4.19157705395628 5.562052470704657 4.167137287724472 3.826868340147485 4.532153892796487 4.309359957526642 + 3.520488355570706 4.250420445619966 3.855178930331022 3.335593136100215 3.136996136490779 3.287585915488307 3.166449412630755 2.253669993733638 2.662892407912295 3.440736726053728 2.945985413687595 3.359846774132166 3.694061593378137 3.370741005976924 2.881999126526352 3.097495965824237 1.782603193519208 3.01642866327802 1.789481020456151 3.236728229923756 2.414662374096224 2.641596228313574 3.376394112776325 2.996658615844922 3.928972368579707 2.715856112889014 3.492411112609261 3.447468328289688 4.397378380912414 4.336452767285664 2.486531099093554 2.702883067668154 4.345751424265472 2.809658903684976 3.276173731661402 2.076625712485111 4.57441220165606 4.360755802568519 2.871577959571368 3.35103343886658 1.88318713935405 3.752252940898416 3.124476439149475 3.698550009907649 4.054494563126752 2.02401148411127 3.483776165856028 2.895347108614715 3.198263616486656 3.621145036540838 3.118891265081402 2.592433066122567 2.43075324324127 3.34070958943812 3.346468267744967 2.863658170523195 2.855293867194632 3.141348133500287 2.580587030729589 3.476923497287771 2.782592824555238 2.405211858163966 2.633120390958538 2.731983891662821 1.967069856975286 2.002783775315038 1.670286471307918 2.33474523037512 2.359038695729396 2.9548959371823 4.050693002216576 4.549861303879879 2.372640116591356 3.345691062895639 3.748475556902122 2.185350371220011 2.401889956949617 2.482790569360077 3.878609539059653 4.08321899414068 3.575669654257581 3.545615570551035 3.27958764352752 4.406081452496437 4.650686518045859 3.224295236574562 2.280488994088955 3.93637485188151 2.916124384952127 3.333194894570624 3.851424131553358 3.635054125938041 3.238697595479607 4.100905648570915 3.509840760292718 5.338824851962272 4.254311329612392 3.176142974098184 4.015974880661815 3.732818808524133 + 3.237546538017341 3.716957660886692 3.474608440345037 2.84905600680213 2.600042045298324 3.044331598226563 2.663854367478052 2.00115094652574 1.842694158913218 2.648137512034737 1.42290850322388 2.325845543033211 2.76100673883775 2.414436736466087 1.818399449232857 2.398256912510988 1.011031119970994 2.393422072200337 1.512352394667687 2.573177739330276 1.964575762573077 2.266817340208945 2.738447689844179 2.729894143750585 3.808896292815916 2.443589411428547 3.191574998352735 3.024925388708652 3.635063480938697 3.631064971212254 1.754132121388466 2.208224859636175 3.078645373649124 1.494017282159803 2.013131025552866 0.9022264629074925 3.747904385957895 2.94465636888981 2.318492948280436 2.475650220381794 1.427090732262513 3.01936339378517 2.416656825306745 2.624035430365439 2.367376433557666 1.853299291345593 3.012659751490254 2.108396766647274 2.777694815798895 3.038203123309358 2.727221285458199 1.924197532311496 1.903178123491671 2.350867264594854 2.66754973883053 2.311414939686983 2.636124158492748 2.615474469843321 2.341075120119513 3.43876763430967 2.459662737586726 1.997909858612729 2.0024862557284 2.019012874199689 1.644937745200878 2.006220978662896 1.070445649122121 1.746640228364413 1.82525108612208 2.191049947454303 3.434889277319598 3.557285874267109 1.639940796405426 2.723346581264195 3.113204757224594 2.136939484200411 2.120691955238726 1.958741872240353 3.307820163304314 3.479094681920287 3.040638533521133 3.133754251944083 2.621391521505757 3.559222478583251 3.795668014380226 2.595704858590125 1.454622527893662 2.937469753006326 2.082584332518309 2.379448541894817 3.13576961124636 3.071076719643315 2.791834418843791 3.124240961755277 2.555461137242673 4.571281383141468 3.936410288119077 2.388108651945004 3.227070017303959 2.853253550345034 + 2.943707991333213 3.173274215536367 3.042265168609447 2.393440485800966 1.989095808996353 2.682234063788201 2.0249877502647 1.808302107740019 1.18304128154341 1.839839998010575 0.2729913146577019 1.294808007180109 1.78213803332801 1.492795715038483 0.976150856710774 1.723112320936707 0.6261772456196013 1.762038581717206 1.332852262845336 1.777869427791302 1.523926339948957 1.938025863313669 2.055426639490179 2.368143396802793 3.568950593878981 2.092873407185834 2.744874597134185 2.593786602035834 2.736102712780848 2.836396077920654 1.132911844432783 1.853858808123732 2.274834385634676 0.5740874988773612 1.24554035986057 0.3891100828568597 2.88084549766279 1.789327918755703 1.717860982068942 1.72376358875681 1.15650173204358 2.312835285826623 1.796057620080319 1.727292841510462 1.195384342074036 1.827066678727306 2.565132034582668 1.466622791742793 2.40808957354966 2.434232247861473 2.381109210118666 1.407283662923874 1.442405190339286 1.548350846828725 2.235159735326761 1.921108394003568 2.523010975031866 2.10650395169796 2.04808962606387 3.419429651387759 2.126182528480768 1.839834449483533 1.58103276195925 1.5610015207385 1.668604566701106 2.252100430148857 0.7459393780627579 1.327720251483242 1.702301744091528 1.761861502131069 2.838709844640107 2.56276810739655 1.128401887617656 2.3422941566605 2.649307290721481 2.258699479162715 2.035297441189869 1.689297816044927 2.823914730800425 2.874363133237239 2.536596686850544 2.815606620624067 1.995379245483036 2.61180876807839 2.928415453141042 2.074677459231225 0.9968562406465935 2.141793677243641 1.426534146527047 1.654703286394579 2.463330915092229 2.675990434938285 2.298388013758085 2.312561184811784 1.809358607373724 3.733781559425552 3.418036682478487 1.842702132578779 2.52054721303557 2.180080809107952 + 2.83373558819585 2.984962446636928 2.791519414648064 2.178444632016181 1.581110718128912 2.405075388036494 1.538747477388824 1.829677774396259 1.031477374614042 1.376390830791934 -0.004071182849656907 0.8002486393706931 1.255821788630783 1.055662397849574 0.85844925836318 1.400313737026408 0.9285049479260579 1.435841156474908 1.408267229580815 1.377727367329499 1.307309732257636 1.881255581520236 1.592334853346983 2.149367029500183 3.339530594588723 1.857516532094451 2.328786912818032 2.39100806436727 2.138371401611948 2.386022064379176 0.9076193669579879 1.794431309369429 2.151903114462584 0.484061600323912 1.188408234927465 0.8871398638980281 2.429905669854747 1.612662467879147 1.293643016557098 1.439620561714037 1.228291637441544 1.968145105003487 1.59618746550268 1.499143520581583 1.099457744410536 1.680609117782979 2.337388022394396 1.295151059490991 2.262276165492949 2.136791846764481 2.250277473529422 1.311127222432845 1.248245530449822 1.418083145445053 2.277492355162394 1.867492700310322 2.557345398980033 1.791207497532014 1.836594397864701 3.476832280240558 1.91922290571955 2.010983247386775 1.484626293931342 1.537905570650764 1.95794010937243 2.584042696700635 0.7443512842728524 1.144104865393729 1.949348075425405 1.735083522664354 2.395270127970434 1.85090284117905 1.00553280137683 2.315286261844449 2.50005328633415 2.536495572796412 2.282812685908993 1.778795204683775 2.54915043685196 2.408723823496757 2.213762527059998 2.742735465419173 1.700220693921892 1.983647970160746 2.330261753815194 1.898076407128883 0.987361697905726 1.867688426298628 1.231356351274371 1.421798754319752 2.081503298806638 2.639264240591729 1.89527703202657 1.902870045621967 1.567575279874291 3.211401176406071 2.923933036589005 1.728614851106613 2.215497935773328 2.110214382619295 + 3.044542690920935 3.415911244919698 2.903659700146818 2.34687154180574 1.598429025951191 2.38948273488495 1.449630602503021 2.158794175811636 1.549716771631211 1.481565431033232 0.728694948802513 1.153956539264982 1.475252252612336 1.299497138070819 1.582776097622627 1.639102509747318 1.796795805757711 1.586222897017251 1.829706480844834 1.630326846730895 1.416403821318454 2.22628852987873 1.546301969963679 2.253995346601158 3.227764106020913 1.874876706362556 2.069929465193127 2.483428829214972 2.006161350137518 2.425493991670919 1.137322403593316 1.986541347953789 2.391515189442543 1.18432087703377 1.660962319153896 2.07485821095247 2.551979209703063 2.26894492878219 1.245593457921927 1.689217604089663 1.635914456471255 2.138176789886984 1.877469864066825 1.98580231664539 1.68356876577586 2.075541682553897 2.433928188731269 1.649402748143984 2.367563383482775 2.264636328446159 2.362934102575764 1.705530731890292 1.413883935176273 1.972865603461287 2.716700563136556 2.136075976215125 2.729836072679973 1.806231490547361 1.837482217753177 3.637641301895599 1.935147480372933 2.511652618390144 1.711991131825471 1.993340711633209 2.391935601102887 2.858455994770338 1.022610672598603 1.154567201454029 2.322072473114531 1.968995065701165 2.112401356243936 1.503639914953965 1.27806307249557 2.534890940540208 2.661454734727158 2.832280572232321 2.816631376053692 2.165383573708823 2.481465894523808 2.15899981673715 2.130174842741326 2.949847288803085 1.94930199071905 2.030586542720584 2.16923455281767 2.136475108278319 1.264463537977463 2.170116234776174 1.588620135676138 1.766891354207473 2.113639437648089 2.964030785522482 1.657949215672488 1.939713215215306 1.888608678389573 3.152536176097783 2.668964743091237 2.010182455158883 2.491340992248297 2.758424082785831 + 3.604780145609766 4.454716980493686 3.45377207173442 2.946009241488355 2.15369613529765 2.747145993816957 1.901621675795468 2.808111121652473 2.665247815937619 2.181669015684747 2.244723877313845 2.342734224637752 2.42693722828335 2.130376171767125 2.901277104771452 2.458108577726989 2.84240565740896 2.184528394324843 2.594260422827574 2.365245536833754 1.801640042521285 2.957115645300291 1.992834786731692 2.675595817616852 3.296567244004109 2.184774042165373 2.011123153664812 2.785523025309885 2.208162442006596 2.80782821010007 1.657029837620485 2.276594823166079 2.629734573150927 2.276355799655448 2.305181013471383 3.229252339698178 3.042597977618186 2.947383527922739 1.546208624358144 2.247027471943966 2.22086117122808 2.732843008065402 2.394930957633505 2.744203452496436 2.343374111952122 3.039917986349318 2.819051781047758 2.311323491857337 2.631173844632485 2.698505974633235 2.608875290110518 2.446922616931801 1.90050837052263 2.705450583164293 3.247371275043406 2.570219974524662 3.033010351393386 2.233536909549002 2.166374741553739 3.901557700717092 2.223924894565172 3.291603428297549 2.200143852792053 2.849225787467731 2.893917054115263 3.097894707287196 1.525097798531533 1.29205516878551 2.604333311452592 2.335054028479135 1.911589633578842 1.437963802309241 1.826084559688752 2.777546974435609 3.008108861420624 3.017012399309351 3.455766737311251 2.671645568159875 2.553269838882443 2.166802498024254 2.26467996264671 3.380223665281505 2.822263054275027 2.920607816115421 2.483605031447155 2.698285215771193 1.631959715641642 2.891083845018215 2.410694745889487 2.616469122060153 2.571284046262008 3.537957729642585 1.600705510983971 2.322727976184979 2.624447335090736 3.435158855327245 2.810494656208448 2.531323025496022 3.341278597658857 3.927566935293922 + 4.405973644666119 5.769518752022122 4.371318384815822 3.910678013580764 3.206916861061472 3.494554892196902 2.903339843389404 3.707963111450226 4.090546599625668 3.301745188960922 4.083009354396381 4.036998754449087 3.800552428706851 3.257711001281848 4.353155295985516 3.650382225171143 3.855887557732203 3.027197151882433 3.603125160819218 3.162976495008024 2.298898350948548 3.917103298964321 2.869406564439487 3.210222005745663 3.55435783592111 2.721568100452714 2.108665258627298 3.145025298528708 2.466362186217339 3.28253617993073 2.192238662837099 2.546534635657508 2.849166018666779 3.25584679017112 2.784242280869876 3.752204344712823 3.511822636136529 3.016027422971916 2.003303216389895 2.735591412514168 2.745989642979112 3.463004315590865 2.809000349219559 3.222570009065009 2.737230782958513 3.333054378639441 3.322007480180801 2.908906582440295 2.907287755033849 3.192140866889645 2.803998169609599 3.257249040469617 2.555663424029717 2.934752635412792 3.505654331806113 2.948602023886679 3.475279380558732 3.085211541785611 2.905471054952386 4.2487787099397 2.772645396377008 4.259402090494859 2.861208752695802 3.917029299039314 3.380741935025071 3.431787604572492 2.200631510927451 1.516456735777865 2.738472317193782 2.842387524735386 1.694801642537641 1.491651149684913 2.471975705819204 2.859329604781124 3.356595854073021 3.101114858877338 3.990116579037021 3.093395711519406 2.703189496733557 2.459656791049383 2.548760102692313 3.929822818400908 4.246350142195297 4.545406463947756 3.203686703160201 3.397060506716571 2.034992079045992 3.794682575188403 3.507332274774853 3.811544130989205 3.406403419308845 4.247648318445499 1.695339867584153 2.89698362632771 3.48887187670698 3.748776526112124 3.367737470986867 3.132870529690763 4.586200252287085 5.195530169988222 + 5.224272240736354 6.862492249320894 5.438837994937785 5.069780311845534 4.558673968240328 4.540163217185182 4.323449457020615 4.723092877135059 5.403267431318454 4.517946354203559 5.734207835108464 5.701873316724232 5.106284273875417 4.337457165169894 5.470614269051282 4.827386049547044 4.862074873499864 3.825705471273636 4.685742808370378 3.643081811030015 2.709851351142788 4.861905552907047 4.000394097020035 3.576722698110011 3.957359501328028 3.341749250539578 2.259833204061579 3.399604161836578 2.53238523830214 3.677216238134406 2.514242676319327 2.776945176816071 3.233374386510206 3.729093187969198 2.840700251318964 3.542107543530165 3.692429203119424 2.621369928247228 2.542034668381334 2.849884549823855 3.001003700012689 3.986535608606403 2.969218173889232 3.251750209482253 2.768338685784994 2.659648563466945 3.708168703027152 3.150170725015968 3.06021454617462 3.521607125884316 2.786562666263933 3.852240664894623 3.165372611839757 2.35089235474112 3.244133258468935 3.066161693990693 4.050693504714673 4.28995340777692 4.079359395169831 4.647199661898242 3.486872312220594 5.272782503935559 3.585822732543875 4.918639846545375 3.680221574981715 3.896341682933326 2.958263612651535 1.807105433182528 2.786270175379968 3.582292573860741 1.403649590665736 1.508803471006104 3.050443089006876 2.750946588036186 3.538243180328209 3.212880254574713 4.275002825732031 3.280569833278605 2.914930778305461 3.044941829357981 2.898913393419434 4.481609385201295 6.011604988807676 6.5107430827195 4.194404045778981 4.040550794990963 2.549062394817213 4.702719997071029 4.686765538131567 5.19979711751057 4.571644549189841 5.070087060154037 1.898850106400459 3.537097423725754 4.14115578635483 3.748574938965248 4.162000535270977 3.696888321640131 5.937879476240738 6.113647012220982 + 5.798632518091381 7.344349828515078 6.341970380446583 6.183958351080946 5.895706525596324 5.696985214293818 5.918542976203753 5.681963111128425 6.165905736147579 5.449303836951913 6.815583688816332 6.77741267814099 5.864082377167165 5.086693657249043 5.980796861733694 5.562571826071235 5.676782293170124 4.314160329054744 5.642321852228633 3.596793899677664 2.872347846986713 5.532494568711627 5.152438116064332 3.57859050901039 4.422937327926775 3.874715391226346 2.34743288401296 3.370142504855494 2.264347124637879 3.916284960110318 2.546915046348317 2.967892662538645 3.76987196962753 3.539215924076018 2.317861125590525 2.941718045210948 3.631213015287578 2.434489922694286 3.280589464747024 2.537754706347755 2.894519427173464 4.089344141190367 3.006565229219859 3.172391578194915 2.672955094101885 1.614727941471712 3.783636126257102 3.027294409838685 2.995702651198258 3.566800429569355 2.497441099160653 4.053017791129577 3.520201125607059 1.324280827178171 2.44010306080807 2.805962766183541 4.696028459915624 5.689269832766513 5.632011136473636 5.057195483086559 4.190650499843667 6.134686227833754 4.233413281602225 5.542221232360134 3.560159951669448 4.305163794488635 3.627672459450423 2.122246554970729 2.812567578282255 4.590958434306231 1.045438433227901 1.391891368617507 3.453402217377516 2.587380475497184 3.452633652062104 3.435383973474259 4.262422032355346 3.173295951330601 3.202274117995785 3.879257158472342 3.237198438918881 4.920165437827052 7.817081091438013 8.233646230633695 5.298268906007365 4.496369918399466 3.206950382752041 5.556247435324593 5.834412809701462 6.701183066615158 6.055502355941826 6.092342667712728 2.179119660454489 4.190555595028854 4.288143501352351 3.217952966073426 4.859831903133909 4.143671725225886 7.118608111841397 6.469468671027609 + 5.936069653055711 7.148135326865031 6.762109071947634 7.009406365261384 6.882954495639751 6.721995822726967 7.387603074243088 6.411974775148337 6.052687528609567 5.761846752580823 7.184356295997645 6.872444781667809 5.792971775396097 5.339893059733555 5.919974670404926 5.584075778187042 5.756079839603057 4.329887817207094 6.292216864183956 2.954977404442616 2.691458961306125 5.720904570180437 6.099621913383999 3.198300958834832 4.849629170210392 4.175867126272351 2.282417468963104 2.856258773920672 1.600857633506109 3.919804108266192 2.373541097093153 3.012343782381464 4.149655022918793 2.796216007393024 1.225737215313753 2.365310691894997 3.589806161846925 2.919208926955441 4.248682609655883 2.021923740810735 2.490364665781613 3.796608783502336 3.154189139238198 3.464596974206859 2.849681467002926 0.1969723260079017 3.472640586753338 2.760579367193056 2.66328752207238 3.306648223210217 2.00301137260459 3.830807502939059 3.473854151673891 0.6663551414724935 1.297400245048692 2.186380115900164 5.276711453584426 7.052554778339072 7.415886636815969 5.433704358405919 4.661130363287731 6.620480801121346 4.640673411423052 5.534798010325403 2.884284005659083 4.328750699277407 3.986180259999628 2.377918000350093 2.818106657012038 5.777587602302674 0.681100524433532 1.113139581779251 3.640659410117223 2.575227012712958 3.085622945496652 3.675116348544442 3.966482255116233 2.786032752456549 3.557229412334777 4.839136405846006 3.498331081428546 5.136650606993868 9.33820809960821 9.139277682927073 6.366013333398229 4.711493438517948 3.851380517902456 6.381305910278826 6.936783180789462 8.31860246020733 7.87460945235398 7.452563477334024 2.529530592214087 4.872098332785299 3.793739819424673 2.174337624465352 5.128188686698905 4.438001568803116 7.96717312346666 6.427159276594767 + -8.636007717339453 -5.161637534245529 -8.274002429185202 -10.86964594717574 -11.61971877487667 -9.886299518911983 -9.54356163481134 -3.916448264357314 -2.154633942252985 -6.332929343785509 -1.779437182527545 -3.089763101786957 -3.377091470812047 -0.7304199921252348 2.017560009861199 -0.3836294344760063 0.5678247172185138 -3.36230176232084 -2.52208155385415 -3.916946932596147 -3.309425472853945 -5.345904831892767 -3.689467459145817 -3.924559085268783 -7.166792582567723 -6.604744161184499 -4.13108366167944 -0.973720409235284 -4.561074195823494 -5.353890940088149 0.9389204484159563 -2.817850936172363 -4.135209368281949 -1.512168547113333 -1.150805099318518 -3.747177836812966 -0.5992968480123011 -2.841752889260221 0.9060269152026876 -1.985901815957504 -2.809716119531913 -1.559260868564593 -0.4312003404731968 -1.500495569880457 -1.734071932816518 1.599195777211854 -1.147352781732103 -0.8582745409764527 -2.241649071515894 -2.996750885351958 -4.581370435774943 -5.268245018515103 -3.714286996293822 -9.31443149701613 -5.396594485276864 -3.42363826693736 -6.270608649947462 -10.58044828891616 -8.630763143300101 -8.650058562542029 -11.27077959833635 -10.98300142144717 -14.4694432346032 -14.37642230519668 -9.546284710796499 -8.898116224767364 -7.834787200980827 -7.201224066955319 -10.6655478024627 -15.34575650401166 -8.11950810549024 -17.26798598731693 -13.24644664646621 -13.25248249607012 -11.85810244132335 -9.563804990625954 -8.001789414186533 -10.948863323757 -11.74947234624142 -10.27643647208106 -9.95974549297307 -8.82772902626732 -10.84576496863542 -8.810152528433946 -13.87412892721022 -8.922134636976125 -4.501799012913125 -10.6085298005305 -11.50704258105452 -8.945412720375316 -11.33038274252249 -13.788458239791 -8.775136364603895 -13.49240750135141 -10.80403678007497 -5.210476879794442 -6.873541110204769 -8.392454631717555 -3.250129335549786 -1.367113717872766 + -8.264299748374469 -6.834042429643887 -8.67373154318193 -10.70540834898566 -12.04761421584408 -9.722697130506276 -9.716235641739331 -4.319216038151353 -4.574334546636237 -7.848011077912815 -4.262068269781594 -4.601138834166704 -4.305230098653738 -1.20133451853826 1.738940043918774 -0.7242156358047396 0.7856487058387529 -3.734849013960002 -2.416179474046658 -4.374201645085122 -3.630202913398534 -5.143905428762082 -3.887622528942302 -4.759732693705558 -6.53669427211571 -6.434651617295458 -4.436980988190044 -1.79545833629345 -5.106066606744207 -5.248991716971432 -0.7324452171724261 -3.008733659478366 -4.699056066044704 -1.647227913593724 -1.288991763578451 -4.435734080870134 -2.009215914173467 -4.830634674376512 -1.74177859065162 -3.607444109393782 -3.855050296650006 -2.970543985236873 -1.740402038275761 -3.682807056152967 -4.235721386343041 1.959076468892157 -1.737482948707644 -2.802226374023803 -2.861742307639361 -3.070752451424596 -4.70709472785029 -5.229156471974704 -3.466964443137385 -7.982969699080968 -5.868891012108406 -4.492042526970181 -6.211703883751397 -8.886362979279511 -7.305332086874103 -6.689756268637552 -9.954967346331443 -9.173646945373093 -12.87159285844837 -12.76957474096344 -9.04597046672643 -7.941821588136008 -6.557369910187845 -6.04885693595611 -8.843337133033856 -12.97004389314679 -7.348998676872725 -15.96978706445952 -11.2782009514267 -11.95891293813474 -10.14549756821725 -9.537469061194088 -8.00196840793069 -9.513001187793634 -10.57399798786264 -9.255100962600409 -8.802601981437647 -8.149700038018864 -9.605088629737111 -8.630877428960275 -12.3872904257662 -8.5488553334676 -6.236963620876395 -10.83611518171983 -11.27736006264422 -8.35334795093695 -10.73505099151407 -12.90876568986823 -7.84994538832143 -12.21129579690751 -10.52678261508845 -6.132431367534082 -6.98730310812698 -7.212941576505727 -2.699160942175013 -1.696336482081248 + -7.129644785360142 -6.995689547271468 -7.89401625629398 -9.288282636793156 -11.10365593154347 -8.664118506814702 -8.946673284997814 -4.040635224351718 -5.64535321222138 -8.024910246740546 -5.396533103757974 -5.510309025507013 -4.822277513994777 -1.630451218027247 0.8447615535565092 -1.206999340916354 0.02679245854187684 -3.822564095622511 -2.044679413505946 -4.432463157834718 -3.463146586569565 -4.40948913356624 -3.475386279762461 -4.59882672972816 -5.383184193815396 -5.693255422294897 -4.155462859300314 -2.47024773935118 -5.34722233633147 -4.903646827106058 -1.842437429371785 -2.519588098506119 -4.093838407951807 -1.626678158180766 -1.056319418904877 -4.631781039338875 -2.65996814664669 -5.405640816453001 -3.439575313626051 -4.384553980868077 -4.072545993649783 -3.777864992830018 -2.678416460146764 -4.726683244814126 -6.852408852086739 -0.852555323798299 -1.788949602077068 -3.820034874851444 -3.045403128146972 -2.951512108440056 -4.393118472331025 -4.800576125087275 -2.920034763287731 -6.451027667703784 -5.933147770107553 -5.105924317814697 -5.428413256016938 -6.715833560403553 -5.67671162698764 -4.55460680254896 -8.111508311366038 -6.79978654739125 -10.45118248166227 -10.33956194669736 -7.852285171338735 -6.656453369480005 -4.978593923657172 -4.717795480470159 -7.008432956031356 -10.38686262312513 -6.031413107237313 -13.80643798856181 -8.785997362421767 -9.746222113994008 -7.697346585027844 -8.132170705552198 -7.193220759830638 -7.418329674053894 -8.595551587394766 -7.417971099052238 -6.988872967923953 -6.754017307084951 -7.750854201860875 -7.399935426369893 -9.884883610317956 -7.332305467366496 -6.906139141848598 -9.954430336555333 -9.981567929133234 -6.871841946136556 -9.178601234360031 -11.17123657282718 -6.335523784608085 -10.0959107299459 -9.508485674916301 -6.466547091375105 -6.4362566219379 -5.562051077569777 -2.377903337974203 -1.971146836513325 + -5.353174803844013 -5.660041252413066 -6.138253674362204 -6.934168450621655 -9.008548719742976 -6.899773317214567 -7.368645606577047 -3.187928220075264 -5.333004863987298 -6.931288427436812 -5.047429704951355 -5.528296722615778 -4.670899105924036 -1.825281847857241 -0.3581866168578927 -1.476620076135987 -1.153939378181803 -3.396262885129545 -1.42567616004817 -3.869597946286376 -2.774262742073915 -3.219359486858593 -2.491242218813568 -3.490630420560421 -3.836747271096101 -4.476573776817531 -3.316753557752236 -2.653311507034232 -5.02140915416021 -4.232010172028822 -2.181883626330091 -1.643694041929848 -2.910031883313422 -1.54490010782456 -0.574629388484027 -4.276823093741314 -2.572831099405107 -4.632915975362266 -3.564781431146457 -4.115274930682062 -3.438203890093064 -3.650938039789708 -2.798933768439838 -4.194518010849606 -7.700047311094991 -4.181998989626891 -1.250467954132894 -3.542974841225259 -2.671159742581949 -2.474482945312047 -3.537894559834967 -3.85922939675379 -2.040368490769197 -4.840081248026763 -5.321942600774491 -4.859233548629163 -3.957008320974637 -4.263394930458162 -3.857202292521492 -2.418090143341828 -5.864794643454104 -4.122043471196775 -7.416871093665577 -7.306814001934981 -5.863038063002023 -4.978702356394933 -3.131457706200308 -3.1102295438086 -5.047645824772189 -7.591073878655152 -4.153802608023398 -10.68982410934404 -5.926853096359991 -6.83021929566894 -4.776938883002003 -5.696614424756717 -5.66433867010619 -4.885085224852446 -5.962387665146707 -4.94919305916892 -4.685257976256253 -4.80026286538714 -5.457597455043469 -5.38559578562581 -6.694502445603121 -5.411967588360312 -6.179600729363301 -7.934361966583992 -7.71812525590758 -4.634407547477167 -6.809694674422644 -8.639101405984547 -4.376561758528624 -7.229448369973397 -7.619926262566878 -5.847862858714507 -5.176077542644634 -3.592380988024161 -1.990094246179979 -1.71829227526647 + -3.196993135083176 -3.299545157053217 -3.784590521943755 -4.107369155535707 -6.192833090106433 -4.707303299102932 -5.229658002586802 -1.954263114675996 -3.89329796617676 -4.862364594584506 -3.4065632892125 -4.540594709582365 -3.710576580648194 -1.523001649146863 -1.197106605898625 -1.208392058133541 -1.655422619628098 -2.373173391132696 -0.6293239719416306 -2.689599191635352 -1.667265866835805 -1.73937845537148 -1.079370741776074 -1.812193687774993 -2.071659381355857 -2.940542246346013 -2.040631031952216 -2.095757885101193 -3.946535707227667 -3.093207239749972 -1.709158096908141 -0.5926412633880318 -1.417490302506849 -1.159648316682251 0.2816100986137826 -3.277790023215857 -1.82923685144749 -3.059795925811272 -2.209252311438377 -2.867944627594625 -2.144232602538068 -2.537112625456302 -1.992986851999376 -2.43973243296432 -6.088495084937392 -4.428887801968358 -0.2329959529738801 -2.232067240060587 -1.724262107456525 -1.552671535968329 -2.180121570716437 -2.425886995260498 -0.8788999024518489 -3.109396310464945 -3.884731497309986 -3.619598026696622 -2.024553395396651 -1.786417326347873 -2.004217197761477 -0.4488647275173889 -3.434523049288615 -1.466364464088656 -4.119512308089725 -4.014585514920327 -3.2530235275226 -2.950358294743637 -1.148339450162894 -1.273610924394688 -2.851932497618691 -4.569260580599803 -1.877881824962969 -6.838275522750337 -2.966550679528154 -3.57432875637096 -1.744500887514732 -2.922167640971566 -3.656831203533784 -2.234349827569531 -2.989561010539546 -2.176780039936148 -2.160580953867566 -2.526212192010917 -2.958131004888855 -2.904968278499837 -3.226944249947337 -3.047418052031389 -4.177001359263159 -5.008923130493713 -4.805712060207952 -1.947847536372137 -3.938422266757698 -5.552044644999114 -2.205708617439086 -3.881270153880905 -4.937204429334088 -4.181276563547726 -3.35750246133648 -1.447718897163213 -1.02767975925326 -0.7426619940972081 + -0.9934914385048614 -0.6074377697514137 -1.275015710227308 -1.2997029129765 -3.17567538406729 -2.396785245931824 -2.848367788188625 -0.5792706182837719 -1.798025228854385 -2.275433510585572 -0.950567276620859 -2.684611831282382 -2.007656213245355 -0.566354915060856 -1.056102927679603 -0.3099289705805859 -0.8732451707410291 -0.8796553358943129 0.2293781894368294 -1.152568556623009 -0.3506803747004597 -0.184887372652156 0.5333513277364546 -0.05630278708588321 -0.2779827113990905 -1.278716798580717 -0.5171936846891185 -0.8300672232144279 -2.139390837402971 -1.439159119363467 -0.5856245189770561 0.517049255038728 0.4446128995077743 -0.1612810564574829 1.634841807681369 -1.638350562967389 -0.4969898826918779 -1.127691336250336 -0.1014536755524205 -0.9567935063769255 -0.5347465307804669 -0.6939489864635107 -0.5142718219212838 -0.1980954923574245 -2.974029254258596 -1.961841128728338 1.032072064220927 -0.4588050699749147 -0.3431972515663801 -0.2298345467133913 -0.5127415461229248 -0.6882805755063828 0.4203227938651253 -1.18276929620697 -1.751406344095813 -1.637391329813909 -0.0003819551820924971 0.4453367113710556 -0.2901250172660639 1.216334675625944 -1.101710642196679 0.8279225004444015 -1.009435081312404 -0.9023281218578632 -0.5168459357082611 -0.8210106174883549 0.7178654693852877 0.5774727390062253 -0.5137085130154446 -1.471235422337486 0.4899304639984621 -2.740513246972114 -0.244501306762686 -0.4358039888757048 1.013967749393487 -0.4920739327999399 -1.508665905637372 0.1773606416536495 -0.09263098946848913 0.5034382348794679 0.2641157492353159 -0.228119715216053 -0.5234008605330018 -0.2852457794433576 0.08881630351697822 -0.5801954693906737 -1.474009747212222 -1.659988959313068 -1.724349575146334 0.7594853452937969 -0.982212576065649 -2.315301599101076 -0.09680228750767128 -0.4890495635554544 -1.815476728763315 -1.70102912888251 -1.266037910776504 0.6832313802260614 0.6797456636813877 0.7941402462837566 + 0.9482740948806168 1.799569018010516 0.9957503850018838 1.082450187794166 -0.4354792401572922 -0.2548080161068356 -0.5594190884876298 0.7003228889661841 0.3914644685137318 0.3103973152101389 1.648608357081685 -0.3603480024030432 0.1284459553098714 0.9291439065400482 0.1624120049309568 1.000416542155108 0.7246573256088595 0.7834734450643737 1.013254316825623 0.4075348777623731 0.9301827881245117 1.225700858456548 2.079333586472785 1.412305666505517 1.366537582754972 0.3043898538235226 1.026328053703764 0.8277216872520512 0.1377106889849529 0.579921950091375 0.8485132685309509 1.576564893975956 2.610056803783664 1.407649883201884 3.260683659522329 0.3739789907886006 1.274975298316576 1.006178296290273 1.868576986918924 1.145370931837533 0.9976868591838866 1.400288786157489 1.174905331519767 1.902855448792252 0.2828095861516431 0.5163131162016725 2.26734014149018 1.279842246526641 1.187532738393202 1.306574108261884 1.16380009454133 1.039522428357373 1.646803540502333 0.8628107477343292 0.6358186898787608 0.5425758735073032 1.72412246697786 2.207090896212321 1.133765261005578 2.493644257693404 0.8595426114844429 2.486435838785837 1.472001982615438 1.587193528026546 1.711157761405047 0.999560637450486 2.152293216397084 2.130628868166241 1.617994624437415 1.325406005518744 2.586197924436419 0.9855348369455896 1.903306576234172 2.138274531986099 3.169661416919553 1.209035194290664 0.4281039673910527 2.040721017132455 2.322506425649408 2.730430430168326 2.286102568043134 1.784158232495429 1.572506141746089 2.135326033114325 2.86772119002535 1.623792493819565 1.117446270607616 1.490037258000029 1.000190016433407 3.035320927348948 1.624589331393508 0.5893409140808217 1.693845217872877 2.439484976479434 1.170989487683983 1.096336569607956 0.7814291891445464 2.543618085350317 2.704116117924059 2.508090544231656 + 2.419890778310219 3.566824902096414 2.756255479718675 2.791037121874979 1.686431770067429 1.49932987219654 1.344268447006471 1.698593838846136 2.168391221122874 2.427121011009149 3.679009666397178 1.860454167086573 2.20439284821623 2.551472532138177 1.908244518155698 2.296099395467536 2.122260335881037 2.249977221259542 1.596903836878482 1.763364428457862 1.958152718183555 2.310350826272042 3.304447545255243 2.462111739864667 2.720660521910759 1.623360029683681 2.367825408946373 2.436670204493566 2.425535843591206 2.614110789028928 2.166928507303965 2.43277942439272 4.607775637297891 3.033451113302363 4.592389966295741 2.202235354421646 3.141850633245895 3.15104571311872 3.149286329045026 2.934008798829382 2.122722693477044 3.217366964391204 2.612536540173096 3.500078382828178 2.975769486953823 2.225912418726693 3.230193077978022 2.669019076174209 2.520824375267694 2.761053875219659 2.536130162578047 2.412419209201857 2.582173587315992 2.71567308363592 2.67989648528328 2.325897737142441 2.875857962793816 3.365592632395419 2.167733746247563 3.362029840932337 2.257841489034661 3.378474496646959 3.029997321540577 3.143153969776904 2.968809028636315 2.145712034202006 2.905122373911581 3.107871362670267 3.091600850248142 3.339943032064184 4.10442102720117 3.788215421373025 3.240349628264084 3.833597442491737 4.524235826538643 2.15734247443379 1.874824781034476 3.170856011976866 3.973731279935237 4.267959531691304 3.691803572451136 3.257462689577096 3.100981985824546 4.03483127187792 4.826065469994319 3.248891945402647 2.889350391784319 3.857524294808627 2.936157386046034 4.521820803627634 3.534322156137932 2.746955175767653 2.981952964517404 4.477570968076179 3.426801660752972 3.615818785896408 2.517082290749386 3.852895359697868 4.347631370992531 3.967549527085545 + 3.346265123956982 4.606444989258307 3.885193269336014 3.756239321621251 3.027980645012576 2.738863534046686 2.661350488328026 2.315609247358225 3.204887017243891 3.758062719331065 4.604066355939722 3.417880346998572 3.701614181318291 3.75897027771407 3.311957512416484 3.160572085333115 2.675766323195603 3.216111663354241 1.902672494055878 2.783195414653164 2.585650836535933 2.953758077404927 4.024307938903803 3.121036266255032 3.697199448637548 2.543643030730891 3.334374817131902 3.618849907114054 4.206902234447625 4.217123703252582 2.997666050308908 2.933128047921855 5.784125082554965 4.027657904409352 5.085585394583177 3.216029778081065 4.616470077444774 4.814227687329549 3.693634284371001 4.016650505049256 2.660786124153674 4.357319404658938 3.486130524048349 4.396075061683405 4.787031892237678 3.076089008463896 3.775929750660303 3.490611512715986 3.379240126278091 3.816182089160066 3.384104035008022 3.173387779635618 3.071467393444436 3.949191382929712 3.90175653330698 3.329135861040413 3.390425393734404 3.90094250297625 2.779784309929937 3.860246583878393 3.033737458051391 3.557965912857981 3.61610333950739 3.697269220116141 3.203841014314094 2.525288426302723 2.919598805590795 3.394874586197147 3.630980550307868 4.250234099534282 4.890341713493399 5.356206783879315 3.706911185843637 4.561148637621955 5.052676277045975 2.552858806034237 2.69796360133796 3.55558904706777 4.777027027374061 5.049081620296874 4.405064248153849 4.067877687044984 3.930425699908483 5.174907008718947 5.829651404084416 4.108933327228442 3.515081731369719 5.084978512467842 3.864690037078617 5.056870222349971 4.571146690195746 3.948231311354903 3.690484621285577 5.420853389368858 4.578849088429706 5.363151238540013 3.762598207547853 4.410897539688449 5.164148647594629 4.812843688438974 + 3.771751007065177 4.989943469394348 4.397998948799795 4.061265060008736 3.598399037728086 3.436040522559779 3.315000516886357 2.551844655878085 3.423593328421703 4.201843727874802 4.266342439514119 3.973328476975439 4.278990107839491 4.151573077070225 3.734712980525728 3.383316591138282 2.417149012111622 3.537701353687225 1.927041372680833 3.32016194955213 2.759027112722833 3.132377802176052 4.169826168050349 3.439567828011491 4.272124330847873 3.010005009818997 3.838446279958589 4.179449471186672 5.101818742590694 5.025598119143979 3.15964296950915 3.020974324757844 5.772072336963902 3.969590674771098 4.584628339300252 3.085580068023773 5.297782339569721 5.403155785239733 3.741098156495354 4.237378468475072 2.625630859834928 4.666350805274305 3.687368968574447 4.496066215968312 5.279197705411832 2.731410607825637 3.885799604260548 3.620676344805361 3.667384030881294 4.25423192791186 3.654271231986058 3.251921339732121 3.07938916232888 4.269920457991248 4.166772472883167 3.513592533261544 3.406731860670334 3.899450567161693 3.004529348874371 4.072216616430978 3.26117836745216 3.24059213973851 3.433965134737264 3.443959912321588 2.772149508113216 2.391109825497551 2.374884914072027 3.095527379235136 3.339755596045507 4.113209403003566 4.980028366306215 5.702385561889969 3.443464720301563 4.479005074499582 4.901746572446427 2.644817051386781 2.944153832169377 3.356381202695047 4.85257463979633 5.163990893341179 4.496274424163403 4.259333738027635 4.063981788107412 5.464909510919824 5.920810694851298 4.205168865014457 3.131756820810551 5.158929777743197 3.836244106068989 4.721318341253209 4.768720268806646 4.257679860278586 3.856468703859719 5.353189225977985 4.627693330017792 6.107183000836812 4.448048550679232 4.214993226021761 5.137607534124982 4.861120890147017 + 3.821208482775546 4.856883342057699 4.414002570018056 3.892600782273803 3.540819889305567 3.653809896772145 3.362712511108839 2.499141357417102 2.997463332176267 3.883705417785677 2.967495299330039 3.547453145853069 3.922459961187997 3.682746365950152 3.138776287829387 3.028052581097654 1.726664881127363 3.270880096012661 1.747607544522907 3.242935831884097 2.535595382891188 2.931077477052895 3.808584817699739 3.438119072931386 4.484001303542755 3.062686456469237 3.895710080345452 4.146045263580163 5.040125618110324 4.94853736159348 2.731325333632412 2.79249050312319 4.792689584261097 2.972623273418321 3.412766240086057 2.060192070041012 5.098688360876395 4.731567989009136 3.48357619553326 3.730376278963377 2.206642353753523 4.26143613736258 3.31026282365201 3.882997661879017 4.289807751555202 2.073378264088205 3.655539777211906 3.147471556028449 3.499331528437324 4.067443407280734 3.46935017033411 2.798967646975711 2.707488991205537 3.72658205073094 3.728968476122645 3.139972603281421 3.17416071676962 3.523946328532475 2.928708387402708 4.105189376711792 3.105523343423755 2.723635382233624 2.844443220858921 2.755151077337359 2.201207540580072 2.175753270013956 1.604355004841636 2.477539676294327 2.663941934973991 3.363499700331886 4.566677654685918 5.127087032276904 2.745772630354622 3.928606646521075 4.341895867692074 2.642519817675748 2.820359697702315 2.856137325419695 4.461795919144606 4.804417051416749 4.149372417286031 4.023012582402316 3.648370188709123 4.990714022095744 5.309685355302918 3.732524348294191 2.214275372959492 4.402711939398614 3.14311953350807 3.811556616437883 4.346201952241245 3.974902168545668 3.609140764247059 4.603920354180445 3.920630385902768 5.943012325034942 4.614306102423143 3.509564290434355 4.519025292767765 4.214321174444702 + 3.66180396335767 4.40747963605827 4.121742623727187 3.486622587937745 3.087035145865229 3.527547837118618 2.980634275954799 2.311456659386749 2.279250990250148 3.11004231316474 1.355818635507603 2.515292887252144 2.960449916528887 2.684124319907369 2.04555954602256 2.366821720402186 1.032918697971127 2.649883738859899 1.506433127193304 2.635187527623202 2.082401819243387 2.536989554562751 3.132237430647365 3.170015895709867 4.423353068210417 2.831573823998042 3.616645365415025 3.737925697067112 4.304966096668068 4.249394325028334 2.009816359792239 2.459056524359767 3.548354932716393 1.627039006341874 2.176138102371624 0.8987302688910859 4.302181727932634 3.327258231189944 2.955324617724273 2.864083786974334 1.693549579418686 3.467325848755991 2.62801538181975 2.906459575808185 2.575029926438077 1.989575150389555 3.255414379684012 2.404421997144027 3.125947411108427 3.486368669628064 3.07031131909298 2.136370663778507 2.163157615055752 2.745915886660441 3.074264918206609 2.5993558772916 2.930016986323608 2.974587153563334 2.671350786567359 4.066582385158654 2.763964903509631 2.286915885514645 2.220310335975228 2.03801523963557 1.891736040379328 2.204284258645202 0.9368587703393132 1.839993522201439 2.121468749473934 2.566951618962776 3.913508475270646 4.083225264970679 1.967317256276147 3.303193051167909 3.685145403898787 2.698599312067927 2.615028905222516 2.366479490625352 3.902930095415286 4.192809736473464 3.599369149291078 3.622751969373439 2.947301547681491 4.010769058935693 4.323275190513868 3.018615557477005 1.321612604117036 3.341373567280698 2.216607772501447 2.744010304810217 3.630727432726417 3.504566327872453 3.127720869062614 3.616459509226843 2.972808199447172 5.22840811014612 4.388026904585786 2.698702581919861 3.655077675679422 3.271183168802086 + 3.476073654132051 3.93360030331678 3.747186444787076 3.084305928990943 2.514630352372478 3.239903580135433 2.424622725477093 2.163427061619586 1.683021378943522 2.276850475689571 0.161674352530099 1.45791624204503 1.933419300306923 1.694046973080276 1.175034865081216 1.750938351915465 0.7394231257790125 2.006851996040041 1.373100872275245 1.897582711539144 1.633410346410528 2.196322152522043 2.408914857434866 2.797110401441273 4.212987413848168 2.503885790159984 3.171366204071091 3.263896679942263 3.389585984430596 3.423355548300606 1.370744435801498 2.230506856090869 2.739402054950006 0.6648055353912241 1.424015603790394 0.4290105806448992 3.414706263565222 2.174901213941666 2.216547241664102 2.085334148779111 1.367431432407102 2.694337111447567 2.017006254460284 2.109186765379036 1.386461127004921 2.169288699698541 2.878685814293092 1.811903299683081 2.806706296170887 2.881163285877847 2.716138150898587 1.634205114666315 1.690920316160827 1.951131753092341 2.663960762900842 2.228166763471563 2.816160080619738 2.452909663428727 2.366207757122197 4.045076023190404 2.417499056532094 2.121301008516184 1.825390042333765 1.610562912868772 1.96307531761704 2.513147498499166 0.5657554488534515 1.38378237134566 1.997157372641595 2.107489958340011 3.253045666286198 3.006927458714927 1.408145607725601 2.897283383281319 3.194118711850024 2.885970757822179 2.583521112049766 2.125587849828662 3.409809453411981 3.525319408683117 3.063733092822758 3.301395520131791 2.284343759067724 2.922269716592837 3.322633158385543 2.41121860451949 0.8374612945053741 2.495909540692537 1.48576127002525 1.92526043138605 2.955284040410334 3.196732599786628 2.592641643988827 2.790064876462566 2.250075604111771 4.420823856460629 3.940708070580513 2.150947152398658 2.91368465832511 2.563647482094265 + 3.437493593370164 3.786707134131575 3.51834042428527 2.894856991166307 2.103583750686084 2.989738465046685 1.974752335852827 2.207081382424803 1.553507024866121 1.756047562590538 -0.08896427385843708 0.9384266576780647 1.379435564775122 1.197506743527583 1.052663220330032 1.490942119869032 1.084660939048035 1.654531454487824 1.497613642106444 1.540940272050648 1.40379523948468 2.138128544931533 1.911450379178859 2.561688257570381 3.982401228349772 2.271122787889908 2.736856573770638 2.977273532049367 2.735336639289017 2.917370932916128 1.094666075106034 2.197648297092201 2.572076816719346 0.5529572922341686 1.370066537946968 1.016020357128582 2.903527046651504 1.990824031353895 1.523942737522248 1.726570868672752 1.39736286686184 2.292576587825806 1.788013432770185 1.935458967711611 1.283468973831987 2.162981844608709 2.68858021172257 1.660836533807242 2.698158216717275 2.573730039702696 2.582481611805633 1.5646425912513 1.491491415570636 1.820972128270114 2.722616967826525 2.193254805617471 2.870379717427568 2.135738301829406 2.149747907224992 4.099569909084778 2.208061438165174 2.309451848737808 1.769510153790179 1.642545187627547 2.315555831908569 2.916178490871971 0.5246564212338853 1.160756933811626 2.231228606786317 2.044447223612224 2.716140824159083 2.185865319755976 1.233780851056508 2.80390071272268 3.012211977682455 3.161004035167934 2.847434582963842 2.226217972536688 3.095789331940068 2.946135820909831 2.691596052374507 3.211353915909285 1.96929578689651 2.181443641823535 2.614217524038622 2.159617866309418 0.8330213045251185 2.199345763098336 1.249633028599419 1.636170142737683 2.570460151289808 3.232994580524974 2.144783099281995 2.364396105163905 2.025774907931918 3.889219848726498 3.464347697503399 2.034886250999079 2.606350225672941 2.503399426835261 + 3.67508132423427 4.238083596526849 3.619100280950079 3.063946272763133 2.085422707401449 2.955952880831319 1.873800762070459 2.536531263402139 2.060581433161133 1.790627705622683 0.7494383816174377 1.295450281557351 1.627859234731659 1.423012098244044 1.804028057973937 1.76945957851558 1.956026847401404 1.773001549805485 1.966850962546232 1.823528619206627 1.500198009258384 2.493074540569069 1.842297387454892 2.65057295318968 3.841313151257054 2.271539989145822 2.443779431996518 2.970501552706992 2.51896755989128 2.893963653849823 1.24864107311123 2.301868530403681 2.736171084904981 1.27738355392421 1.851357468937749 2.331188653960908 2.952317578055727 2.639340659969321 1.190938250520617 1.864672915513893 1.782397884161128 2.424014039327631 2.001156856416628 2.407090331571681 1.853841366889277 2.550674396834712 2.768012710063569 1.99385778518365 2.811620708465853 2.677460147376223 2.69959898541174 1.996757151199574 1.657859238938272 2.3687402194264 3.167430312769739 2.472141431665932 3.075420206515446 2.157912830734858 2.152489681538441 4.256782937505875 2.233299252943119 2.848182640636878 2.038244870838753 2.156458555544305 2.799807689985755 3.235962958875461 0.7589773789259198 1.117393896351132 2.560163799366819 2.224411530605721 2.316400574563886 1.710686730817542 1.45166978816269 2.912995237798896 3.138141362564056 3.3913516399532 3.359236007398295 2.603666928269377 2.961685173566366 2.552912592007033 2.544919342745061 3.394396349627414 2.226280549044077 2.174180449294909 2.385196122927937 2.342314357471878 1.12959836039272 2.51590183042606 1.608791041316181 1.972681321480195 2.601536695672621 3.607629756679671 1.863318420824726 2.387943644527695 2.348196643375559 3.78235720966768 3.163920218658859 2.306971573291776 2.904382555162101 3.203234303539116 + 4.2284776406741 5.305286469218117 4.136001036509697 3.645453947727219 2.586606064141961 3.259602919744793 2.272388876786863 3.167661794894229 3.14650429541507 2.427502576516417 2.432698452324985 2.525543450139594 2.676040267409007 2.287442194350433 3.168962994141793 2.580547998745715 3.01274104400693 2.348111274515759 2.777406525256083 2.585510579198854 1.880630400241898 3.244273414136842 2.279063892852719 3.062095875096588 3.858212666040345 2.548974720608385 2.341608397953678 3.175756333704157 2.624766473355066 3.218317707627648 1.683080982506908 2.416746988114937 2.871322634115131 2.425903887065374 2.505446759016195 3.609272494610309 3.37837836346938 3.316785002822328 1.299948599494712 2.303512462066919 2.362231943568531 3.001502321627754 2.437105106734634 3.091470225776447 2.509323813818826 3.490680825073632 3.084367445685745 2.602682930380695 3.04519898591343 3.071238604718928 2.954303015493906 2.780547247802161 2.149528735043077 3.08898717900388 3.687924629485451 2.902142964060658 3.414402000255905 2.598487324919915 2.488157138503993 4.515635118199725 2.54126387368261 3.679417867864686 2.553925077317672 3.05209890858896 3.315309816915033 3.471302425419708 1.208911664793959 1.180955425869797 2.758167253724423 2.509469172743593 1.987387023251358 1.510244900156977 1.945230992256256 3.014636490326666 3.451127516993438 3.478413866424603 3.950296289450989 3.086490810433133 2.953084714208217 2.416516199884882 2.610619135635488 3.80495308515026 3.140772870528053 3.074295583038406 2.681364195007745 2.870324305354643 1.511051857521807 3.289458913634576 2.476574998770047 2.86126118653192 3.061274070179934 4.201660071646984 1.765786336609381 2.766241066485236 3.080034851434903 3.999860119447476 3.219642056957582 2.824478697556515 3.804999708057835 4.444768291550699 + 5.016037196364778 6.686332827241131 5.015823935966182 4.583470183457393 3.582402845569959 3.931792249117279 3.193122466829664 4.035843984976964 4.53805455832844 3.50602401276592 4.455041099387017 4.284390663001432 4.188067518866319 3.482288379756085 4.655940950046897 3.706056526374141 4.037912197292499 3.188101327320851 3.8326651540292 3.411535760832521 2.386298236160656 4.231992231976619 3.158165981241837 3.591308788010295 4.048860559836612 3.043839854195539 2.394170885258063 3.443037537245345 2.78803723621013 3.643714131884281 2.138279790422075 2.469334096746366 2.957416586181012 3.45005853743362 2.965491116322312 4.19936073011479 3.792983558885396 3.379763666328493 1.683454884000582 2.698260462628241 2.892974793030817 3.734889487929195 2.793020977531341 3.472457311525375 2.922296142713785 3.747646233165542 3.492712662023283 3.132198533963148 3.253985505408309 3.509434936843832 3.154786390084723 3.625281010375971 2.810675272342678 3.296958208167553 3.91556751266387 3.257955304925417 3.887728421505926 3.466524213896264 3.236240863824037 4.854982562288626 3.115072162756491 4.702553006232392 3.219569921515358 4.128985926426139 3.769654156645629 3.746919086087473 1.827579552796124 1.3153468820135 2.773654781563664 2.90776489190921 1.646131006633368 1.434527855482884 2.541686785985803 2.948601632889222 3.772880022956087 3.467688270920178 4.430032503612665 3.48201857224285 3.026506391319344 2.591609453346564 2.830140765802412 4.349848567102299 4.638025998276362 4.750753888056806 3.427053402663432 3.555233523877632 1.909649914196621 4.278704597851799 3.656665279969275 4.134236936205525 3.903214068989655 4.900175877060974 1.826533608569662 3.350469426148265 3.956976446908811 4.263152772306967 3.694587564165431 3.450026136931683 5.133738592839677 5.776125361450398 + 5.844869552832279 7.886752916890146 6.058369356571347 5.716349308167992 4.88593060565654 4.89753074420878 4.522788743193814 5.010663715973351 5.819414163021065 4.704108690653811 6.243903872845749 6.000419722125116 5.618609382052682 4.624195303046861 5.761612355537977 4.765925205818462 4.974274047932539 4.006055130194795 4.964703829070459 3.908739791498647 2.817512953728965 5.205891572630208 4.300409133105859 3.949407947953425 4.377046318310022 3.619122796117153 2.505305744682119 3.604123266542501 2.769909092940907 3.995120700710572 2.393217722514692 2.482124805964418 3.187893011915946 3.920425027024777 2.951243253994079 3.976683715808974 3.912668465971777 2.950316285257086 2.204753643630475 2.763693988360615 3.156979227915599 4.279870797138017 2.943152745338722 3.419130633767303 2.9588229219446 2.866991835554797 3.790761222984152 3.300111250337537 3.311631907391529 3.76802037280595 3.128709798928242 4.229838659858117 3.422456026520649 2.674090748173796 3.599321443639326 3.332172477085919 4.484394428671749 4.688415272890779 4.418631274304289 5.241207069278573 3.855546254674461 5.767565149179404 3.927059244754332 5.11311084269073 3.997695998051768 4.113665226903777 2.534222607375341 1.513332138406668 2.688797105911817 3.521179189999202 1.24863026341518 1.338008913262456 3.080639581701689 2.71144105420899 3.938889238303091 3.512298437678993 4.672985701972266 3.652588594142799 3.181807560002426 3.103004689409204 3.129242268933979 4.918249102351695 6.498283374271523 6.772952471384826 4.47040969557878 4.199877710011947 2.404216234771013 5.294089443502401 4.946487107634766 5.62495871878491 5.082730535857991 5.684873612530282 2.004226188907523 4.018091869856107 4.651894138895841 4.249973375523041 4.449244871162477 4.071513966163479 6.58541191798713 6.727173973541634 + 6.473580148022393 8.481388309072372 6.959960224230599 6.811117876357457 6.189891037774942 5.984354695792717 6.035648059030791 5.923457955419508 6.547316522452093 5.627733866058406 7.352415097155927 7.066922439390055 6.423975636833234 5.387648378725828 6.19223760776498 5.359892109626344 5.582517934997 4.526360671656391 5.974433687274086 3.844327662812702 3.003611979592733 5.898515107179264 5.467336129546311 3.929187356154806 4.766522604957572 4.109676998807117 2.562096872363327 3.479358554853434 2.435675300445496 4.19258430564696 2.370799535548599 2.485663071255004 3.578734228068299 3.680018689488037 2.31599778152902 3.307709831330115 3.768978883372949 2.689352326225763 2.91124492183188 2.448496433943546 3.058777102212844 4.419986209797315 3.018694395222937 3.298082127676732 2.822434849922973 1.519038386319676 3.805024273995858 3.099274240686103 3.137291573729499 3.725893751829716 2.806824039481569 4.399109766036503 3.769893593009442 1.584099470076552 2.715558246881557 3.007569133551215 5.138985563888809 6.104463266199673 5.977277196843175 5.633403915818093 4.582162169165379 6.672261790733501 4.54692008644929 5.709816899670841 3.784773892501335 4.411875468357948 3.169790254253712 1.751795986366801 2.595128234372282 4.406310628115989 0.8129307787112339 1.130524540203623 3.457659493818937 2.458660954644756 3.850914852070673 3.705086929867832 4.644339892603341 3.547647855124069 3.442785582597139 3.913120745022695 3.436479824061507 5.393878599940422 8.405816510813338 8.531459911456636 5.632595862707262 4.665778824720803 3.046589980310216 6.26128077111909 6.218367624963321 7.237045273550393 6.592069896571957 6.652415082244261 2.267335327993351 4.713061108518559 4.863206976056063 3.742242106067806 5.163127676169211 4.585736084533323 7.840110131443133 7.080630087991896 + 6.706101346536798 8.341976193685241 7.401787728356794 7.624572554268525 7.15668161524809 6.958198541711681 7.44331931677516 6.601463336963207 6.378596584128445 5.918119577331709 7.59459148292342 7.053450423613867 6.27856743494732 5.580662751567331 5.990181659324165 5.250696619640507 5.381143828136869 4.571082748142203 6.678537437460363 3.129797094677429 2.83812198895248 6.093296073126567 6.427522707266689 3.505356659299821 5.12017947843924 4.374398595202365 2.477045301613543 2.879852866223814 1.729909588877831 4.153969189653935 2.148299897396328 2.393396407863861 3.850174606765947 2.866349557304805 1.105259520237283 2.656824458229273 3.626730711005166 3.083489604759396 3.825428102374973 1.963375884267379 2.662715234325049 4.176524905058926 3.23447701657286 3.600710610271967 2.952615990488381 -0.04411708583556065 3.460458764038767 2.750090217454317 2.694043177849323 3.364512905485199 2.250125761667249 4.094975132547113 3.701953359508025 0.8401898881575249 1.471981356253551 2.305640045538496 5.71647785929656 7.483774088737846 7.763612937251139 5.985795899325922 5.068127584435151 7.188942276968589 4.931134441437564 5.686533672583664 3.014175418955347 4.340099734583873 3.519255310939911 1.963957997093331 2.516373900773772 5.496191094779988 0.4053978958236257 0.7883194051319151 3.634131651841017 2.406388485566026 3.494582393256678 3.949241547172463 4.362694913858007 3.185705059062002 3.804086955985895 4.895289309137979 3.689178926978542 5.66036425810006 10.02048610272175 9.449411893685436 6.745562918331643 4.894070817155409 3.702151576704807 7.189307093238114 7.445330542997908 8.958209778455512 8.451464324483368 7.952285162915814 2.608632088862123 5.43962554427344 4.426626850592129 2.732028554802582 5.486316857433479 4.916098540443016 8.694060874985652 7.007530237205918 + -8.671131482962664 -5.473207806358914 -9.109734209145245 -12.06552362879302 -12.82246457587098 -10.89992489594442 -10.78515769499791 -4.588998014456593 -2.538383196166251 -6.78589816324893 -2.108793535298901 -3.214649962874319 -3.490099985527195 -0.4262961296523144 1.829304790237302 0.00398202031396977 0.7802472286956572 -3.231561142168175 -2.150086889748309 -3.502370250315835 -3.240719661442199 -4.987596051587389 -3.459860901388311 -3.848794870025642 -7.571676449071674 -6.849090295625501 -4.234378927474609 -1.066652926348979 -4.809629512649735 -5.355430128859098 0.8654963136432343 -2.917172843836624 -3.919581803617575 -1.414572963993578 -1.046435330260465 -3.349486586667467 -0.1471385828699283 -2.158748845592982 1.626323761942587 -1.431534211669714 -2.829882297266977 -1.554989278438484 -0.3041369361351371 -1.188343132124913 -1.58425250199739 1.891262134610401 -0.7992826415494587 -0.6247513819946278 -1.931893985292845 -2.635878925404995 -4.472275142425588 -5.048740831388187 -3.355795897463395 -9.010314751911892 -5.122239275559195 -3.06051240207762 -5.816580456127667 -10.19985264870229 -8.474381100260473 -8.419993796611664 -11.39661416870273 -11.14573424313471 -14.77178752413579 -14.76293276462184 -9.348642515406027 -8.436291677056943 -7.174659514332234 -6.293803889757783 -9.891532474658561 -14.67194551332432 -7.400812270483584 -16.8585943353537 -12.68334329563368 -11.99603829630541 -11.26905892055038 -8.573911945454483 -7.504175924389642 -10.45419846568257 -11.27517174738568 -10.10992228046359 -9.686224622367831 -8.863031841623979 -10.44450814650145 -8.308968776863253 -13.27545240175812 -8.611984983255297 -3.934323386708456 -9.923548058926258 -10.98446693543156 -8.458120088578653 -11.02540387241606 -14.02251231166701 -8.662772999321533 -13.44599169339381 -10.94790397661018 -5.309912468328548 -6.725842305814695 -8.299693738887527 -3.259060649269827 -1.225925405197634 + -8.280341201485498 -7.13002922085434 -9.408189430891071 -11.72317675146041 -13.13582626722928 -10.64609090251179 -10.82299291835079 -4.906148103487794 -4.844355830060522 -8.179697406641935 -4.42793958315815 -4.669787715361963 -4.319292706190936 -0.8593442787821459 1.575169687749849 -0.477312350919874 0.9500214783396927 -3.566615217411481 -2.085271403499064 -3.964423777235424 -3.578978551222463 -4.829410158579776 -3.670704955879046 -4.72453611912951 -6.923414588840387 -6.667719674824184 -4.537213187919406 -1.878657544268208 -5.354983276591156 -5.22046081001281 -0.6997393293490859 -2.872935340789809 -4.352995200797523 -1.469223478809909 -1.030162447055318 -3.94045985933576 -1.595402973217887 -4.099041782077848 -0.9048273722440854 -3.012883057116596 -3.864602479624409 -2.96255016253167 -1.580589803354997 -3.23443770364338 -3.956727200844245 2.259381260631736 -1.397676947587014 -2.574009112284216 -2.551857470007235 -2.694531352375861 -4.579991575108352 -4.991747196045708 -3.068422833475779 -7.681292940542789 -5.62885731692927 -4.133456187232696 -5.702081335351977 -8.436202936427435 -7.083634690084523 -6.38310582760181 -10.01495474359648 -9.197113300639103 -13.05004214859719 -13.06323302047349 -8.812136177384673 -7.41181295521892 -5.839660852405359 -5.04123073917458 -7.986203049552387 -12.21507976015346 -6.542693088813394 -15.46174855934805 -10.62533676343446 -10.64115561817925 -9.516707416882127 -8.535975990482029 -7.489768358060701 -8.968317282624412 -10.0414204864087 -9.061125046172265 -8.454528447833582 -8.118501397244927 -9.1236180996857 -8.139839573583913 -11.74958770940179 -8.165686849336907 -5.496455869704505 -10.07904770599475 -10.71948860693556 -7.802761163935429 -10.43822040824671 -13.15543816425816 -7.702234784244865 -12.11247419994106 -10.50218291963392 -6.15489628773139 -6.758266980117696 -6.968923154956883 -2.554408245415289 -1.394101211661182 + -7.148205955409139 -7.2359666607299 -8.498798563930904 -10.11461968239018 -12.06057553601931 -9.499466606415808 -9.929362278344342 -4.548215032533335 -5.860190150142444 -8.26980278648989 -5.416020728596777 -5.580532534499071 -4.78244962421013 -1.311122771164491 0.6858099320443216 -1.093726428272475 0.2382228065753225 -3.624286114543338 -1.778731541580783 -4.069547416584101 -3.429454562294268 -4.132703650720941 -3.250973861762759 -4.569707790544783 -5.72189516540675 -5.8911952682829 -4.230483672043192 -2.511120349918201 -5.551260905462186 -4.832977350986766 -1.722045201902802 -2.180390040484326 -3.619185702172217 -1.348979495823642 -0.587441698829025 -4.043831892496655 -2.308298188384867 -4.716589314724558 -2.67257101775715 -3.793220524184107 -4.046844958237671 -3.731923742918525 -2.465664768567422 -4.181282190392722 -6.417941128926103 -0.5154471281198312 -1.480730025924721 -3.585086929888575 -2.746416732277794 -2.564450026283339 -4.245509780650536 -4.552162611991491 -2.501173434342036 -6.154823890371517 -5.728112114472424 -4.76015967424928 -4.869932775691268 -6.212782481179602 -5.39501452213301 -4.17461886620265 -8.093639349697895 -6.685052843758058 -10.50684539896019 -10.52220596189181 -7.575863317435505 -6.07974833798653 -4.234073549187087 -3.666341250310325 -6.117271614603851 -9.590387150106835 -5.187947873171652 -13.22170363887562 -8.069428705712198 -8.415216551442427 -7.036734733454068 -7.189471187583877 -6.680599932211408 -6.842421936196843 -8.010042062155662 -7.17385536620418 -6.570520301565693 -6.649924704534214 -7.219324038499508 -6.963609682402648 -9.214947600991991 -6.881920944354533 -6.07938513043473 -9.172992690875162 -9.40964522127797 -6.260008137758632 -8.888770442135865 -11.42976801969053 -6.146210447057456 -9.939185230745352 -9.327069123301044 -6.4310866030537 -6.174235554787629 -5.182582181085309 -2.068894004486538 -1.535949855894831 + -5.394866509348503 -5.804073901264928 -6.597915509031736 -7.566420724942873 -9.820535290673433 -7.643542431891547 -8.237268137687352 -3.618943475070409 -5.538624618286121 -7.112427816737181 -4.950345431167079 -5.643793634593749 -4.625535759014383 -1.571757048053314 -0.5168284885603498 -1.471352880957966 -0.8285003368976049 -3.18107311203994 -1.244400015064457 -3.58473417822097 -2.753368579713424 -2.965782545361435 -2.238893561807345 -3.426702740323265 -4.100913103844505 -4.621290647686692 -3.348876440875756 -2.621654667058465 -5.13577563691797 -4.109816477079221 -2.006983767721977 -1.182339913472788 -2.312051392563262 -1.17038023801797 0.1198153310151611 -3.638188579869166 -2.279436234426498 -4.034415091111555 -2.971575935544251 -3.563604009007577 -3.352774197016515 -3.530775213326706 -2.529576494352568 -3.614206035724465 -7.148866754961588 -3.856919245297263 -0.9911582590681611 -3.281274613447522 -2.389347344458656 -2.079904525271559 -3.368768293849371 -3.612061116155701 -1.619950140175661 -4.538713707194802 -5.136837583154374 -4.52527070497672 -3.364733617712773 -3.727328891345678 -3.524659189712111 -1.971185792201595 -5.763652262727717 -3.885984703528266 -7.367584554096993 -7.383036693579925 -5.54166568461369 -4.383790261417744 -2.401197599698207 -2.084793778792118 -4.179993528803607 -6.796788037016086 -3.322782779992849 -10.05763663494145 -5.181107684940798 -5.539729917349177 -4.097613803336571 -4.857757624905389 -5.173107505158441 -4.307147393090418 -5.343093535157095 -4.644879600263266 -4.209790912152357 -4.624278183547631 -4.906305977724514 -4.98077535434777 -5.989611678590563 -4.898755984857871 -5.348402914012695 -7.162866925285471 -7.145136864712185 -3.962412774078985 -6.518944950828882 -8.895229809371813 -4.14205833673077 -7.007657993977773 -7.298444313186337 -5.756847658289189 -4.926241408626083 -3.108151892760361 -1.528152031715763 -1.195826862364338 + -3.274315494163602 -3.319025675147714 -4.094288509979378 -4.548741190694273 -6.84613427046861 -5.347902740759309 -5.988893163506873 -2.30663874536549 -4.109397091473511 -4.985038341746986 -3.228065150728071 -4.712434683093306 -3.689630322704033 -1.347157616087316 -1.339370347352997 -1.282519325756766 -1.240304897206897 -2.156183440083623 -0.5447263774149178 -2.49836331887127 -1.652978214267932 -1.492833304619126 -0.7837961019322393 -1.680771820403947 -2.239278469380224 -3.020373986539198 -2.017238526968868 -1.972014788148954 -3.939467924548808 -2.913426209739555 -1.518066718402224 -0.1253897084025084 -0.7347296812204149 -0.7321684981106955 1.126585868327311 -2.670732927105746 -1.577231915477569 -2.55043781281347 -1.78243882638435 -2.379713454347439 -1.981640559123662 -2.315717230372684 -1.690105128843243 -1.893644170823791 -5.502248724001731 -4.179271091916007 -0.03180040839450982 -1.929478300728533 -1.461976959781168 -1.152712184613847 -1.987880569931804 -2.192165264277605 -0.4716031723955894 -2.785508790098902 -3.696129164808553 -3.292437374823749 -1.420794741916325 -1.238131092541153 -1.633110519240176 0.0559061950400519 -3.252697762365358 -1.137908032500036 -3.993983844527065 -4.009129591693636 -2.892788223180105 -2.370364524875185 -0.4787871187472774 -0.3411819801772253 -2.058230167933289 -3.813731456521054 -1.097336830782297 -6.186667155125178 -2.228259192037513 -2.378107617387286 -1.061927700298838 -2.203891905459386 -3.210851114077286 -1.686653243246838 -2.363851660267756 -1.813637925460171 -1.645923246430129 -2.286579326678748 -2.412166843724663 -2.467632037626572 -2.48128756954975 -2.476356621323703 -3.408090403084316 -4.265097951188636 -4.238873485568547 -1.220397491502808 -3.635164939507376 -5.782164605538128 -1.926280017945828 -3.58979953209564 -4.498278696286434 -4.022175307829457 -3.145349779188109 -0.8951928372898692 -0.4353361388702979 -0.1673650444951527 + -1.105181083963544 -0.4952725932234898 -1.435818435173132 -1.555216096865479 -3.655736928019905 -2.915071382900351 -3.494807965471409 -0.8462854896133649 -2.013272460906592 -2.327814417894842 -0.7267362854800012 -2.887390405521728 -2.011494966689497 -0.4474544933764264 -1.153313767017607 -0.4438489796993963 -0.4664216288383614 -0.6733100063065649 0.2160545495935366 -1.05825344184268 -0.3387545803270768 0.06566210453456733 0.8782398460825789 0.1572066409414674 -0.3322635669464944 -1.287252246358548 -0.43009943949437 -0.605455591736245 -1.998108599531406 -1.19612762455472 -0.4091447461887583 0.871369638321994 1.132240653972985 0.2448686714451469 2.469735696047792 -1.155991968385933 -0.2683455877345295 -0.6844988777850176 0.2267714869858537 -0.5404943514222396 -0.2902590005423917 -0.3620715485376422 -0.2222491319525943 0.2491015074219831 -2.444013822535936 -1.796546588388537 1.173539566611922 -0.1219962842260429 -0.1000830671400763 0.1745237265249671 -0.2944837889058363 -0.4750121554912994 0.8051687005536223 -0.825823631901585 -1.538009809260075 -1.314744867206173 0.5886406487552449 0.9863601098149957 0.105267673656499 1.768126861099176 -0.8500295413400494 1.213467910124564 -0.8394973238464445 -0.8518160189196351 -0.1346612356210244 -0.2905022310369532 1.281808560208447 1.367154850055158 0.1744313693598087 -0.7770834629482124 1.200309815219953 -2.089486019685864 0.4546456267416943 0.6235158214622061 1.685925636731554 0.1060051410304368 -1.123694900648843 0.6696681221401377 0.5141396772496591 0.9202082416159101 0.800856628785823 0.06307248924849773 0.0008459900363959605 0.2398370085720671 0.8759612946118978 0.03952103064239054 -0.821041436649466 -0.948904726501496 -1.170509057988966 1.529227067469037 -0.6551742165902397 -2.492505742764479 0.2228324578754837 -0.1296573976214859 -1.294378634876921 -1.460257604143408 -1.09485425992716 1.264614333707868 1.371795610728441 1.406035882640467 + 0.8197589824303577 2.030280823310022 0.9817250656778924 1.0079877609096 -0.7290953489718959 -0.6274008157779463 -1.081363602585043 0.528232600314368 0.2142443964403355 0.3501171753669041 1.882030634507828 -0.5446906048309756 0.1245571838844626 1.032753845551724 0.1339052490347967 0.8147628308797721 1.019385606991818 0.9734903577445948 0.9130912977998378 0.4085415265872143 0.9408205349500349 1.48238955620036 2.468926700727025 1.703708236653142 1.436626963841263 0.3702196455997182 1.181780070211971 1.157785510018584 0.409994564975932 0.8944064745810465 0.9976487670483039 1.737728981415785 3.213030833172525 1.728078610987723 3.915478778120814 0.6733342401348636 1.500281388319991 1.400743093213805 2.164920089038787 1.497315210312081 1.313579445643882 1.831478511517616 1.412268799078447 2.207180115566644 0.6900009829973897 0.6366752537924185 2.354060869288702 1.619914703047925 1.414264438688406 1.715016635996108 1.410744630140471 1.232845516739417 2.004718287244032 1.247185858448574 0.885468905327798 0.8571939624016522 2.273040133046379 2.724636961349461 1.538684433547019 3.080849277242805 1.163324676396016 2.893390084988823 1.658286035491983 1.64447484619086 2.089453066480928 1.449781118673855 2.575278569493094 2.752976930784826 2.190947230401434 1.949721380799019 3.22570690845896 1.626479671540437 2.541976833555964 3.042374045384349 3.822116163129976 1.696417392629883 0.75440710779867 2.468594776029931 2.897236508372771 3.200330647026021 2.833194530429409 2.115913246612763 2.067629844212206 2.759128804993452 3.685337171463743 2.275466308049999 1.610979690822205 2.167771331796303 1.529048287724436 3.822927112560137 1.982930529644364 0.489691867151123 2.044687032746879 2.857477534249483 1.724828126723878 1.420671189698623 0.9233028133603511 3.111344309929336 3.454240583696446 3.143935408015242 + 2.306907768492238 3.894816514337435 2.888588896064903 2.892692710171104 1.587010781964636 1.294646170339547 0.9641269829589874 1.630792517920781 2.079192057259206 2.579679177692014 3.886589887562877 1.745209851520485 2.233332707077352 2.682404019327805 1.951556664447708 2.06212911892635 2.248239556606677 2.426792266277516 1.43248486259472 1.682770344094024 1.967100185935124 2.567320609872695 3.724855600128649 2.815538825334556 2.919650131341768 1.764611422971939 2.593014640398906 2.878014423047716 2.817548373095633 3.009443450246181 2.297246172307496 2.394168675064066 5.077825362372096 3.252188734075389 4.983621655868774 2.323268579610158 3.392684794390107 3.506752952274383 3.467232847471678 3.244119491830133 2.485800692984412 3.719521515318775 2.77692822708741 3.659227059790283 3.253359568754661 2.353882563421394 3.274964129832348 2.973468321823475 2.737564986347934 3.173155149766899 2.811458009600756 2.592585267254094 2.912085960952936 3.109670813239063 2.966289781575142 2.62584178830366 3.365193404426464 3.848249042323005 2.568676762227938 3.973370185358021 2.591924990478873 3.776004330735304 3.21285868369614 3.176257550250739 3.315646896953695 2.496447210782208 3.16850215003069 3.563590152030883 3.557624407936601 3.895865173035418 4.68588534148148 4.417412307549966 3.809525130229304 4.596337431044958 5.154524086057791 2.558940596239154 2.166779488154589 3.544917896942934 4.520486216122663 4.798047885234155 4.24434298254755 3.623409390112101 3.565647777453705 4.722273366460286 5.648808168930373 3.90743158899204 3.194229241395078 4.498021305263592 3.420331356242968 5.292634246747184 3.92599050339777 2.743798911564227 3.351660677781183 4.939398168164189 3.961654218117474 4.013505554663425 2.649824820975482 4.366816856021615 5.102818187750017 4.603542148005737 + 3.290436544328259 5.018297594549949 4.164371469247271 4.026751172001241 3.120524483667396 2.716879878673353 2.440617295738775 2.357623848234653 3.249926495656837 4.031934958817146 4.752139417309081 3.401627962513885 3.784183151670732 3.940940474299168 3.407499294162335 2.888122257011673 2.641024845985157 3.390257130042301 1.704579462417314 2.648321738401137 2.593980254670896 3.201807720208308 4.456110045597597 3.517955809424279 4.022165208705701 2.759310138040746 3.626687007796136 4.175111411474063 4.705025629191368 4.697328300437221 3.132311097688216 2.772366577131834 6.143893918666436 4.178941749420119 5.255543733936065 3.215777290875849 4.928884137120122 5.145548341538642 4.09048155632172 4.317099128296832 3.038266225566986 4.891998414356294 3.59495165694716 4.458437656528076 4.986623695995149 3.195604753349471 3.80273173526173 3.740988647205086 3.597787490161863 4.231378173903067 3.682826007291624 3.349999308489714 3.374319242669117 4.337234723388974 4.219108564616363 3.610706491219389 3.810745820579541 4.343073519612517 3.166194625590265 4.485765602966922 3.376288958726292 3.924068960160184 3.786273101115512 3.689095378642378 3.50087403813086 2.777462496553198 3.024938103131717 3.703976169234011 4.00980247210282 4.744452205843118 5.430734592009685 5.973505947738886 4.207857688204967 5.224077434620995 5.662933264997264 2.919175868403727 2.995991154150488 3.902161489637365 5.313581951524611 5.647873966832776 4.962713124923084 4.466127628620598 4.364890477358131 5.866675777378077 6.620403620643174 4.743400850380567 3.624867572936637 5.67791445064131 4.278853457606601 5.771329903032893 4.992993348383607 4.053814468406927 4.064863644001889 5.910377126609092 5.061443101774785 5.82277091198921 3.914507747409516 4.846349392664706 5.868120311397433 5.415398871264021 + 3.81483609402494 5.488446242641658 4.821242883888772 4.488039513424155 3.867317115102196 3.598446232907008 3.264634059538366 2.701977743905445 3.630166863251361 4.585645123890572 4.328092284267768 4.053800311397936 4.410975153252366 4.378553193246717 3.852496296771278 3.096659597344114 2.290691319059079 3.721682407385742 1.728273989127047 3.176254413490824 2.770547202329908 3.364461980163469 4.592896066933463 3.863982555569692 4.711862666052184 3.295694162152358 4.190031078222091 4.840081606052991 5.689283224561223 5.581409303747932 3.322227822362038 2.87152807540042 6.096990953621571 4.100643433130244 4.653589299728992 3.034821323297365 5.699014997943777 5.733427400941991 4.26478084422979 4.558364688064103 2.983642123332174 5.193530362101683 3.782542818109505 4.545613829766353 5.456658984847991 2.76654313212839 3.930789452226001 3.836522431577123 3.905371151635336 4.672999120680288 3.96763575651039 3.433975845604778 3.357364730887639 4.649930369214417 4.509250675383555 3.78060611878027 3.760850352095076 4.301459286354657 3.370083533022921 4.704000664719842 3.594537948201832 3.564748815401799 3.593242068968721 3.394992252615339 3.020303334553319 2.570140858217201 2.341670962483477 3.288182051197509 3.657231476980087 4.554951024758338 5.490646290396398 6.302241304510972 3.882798527993145 5.093603680674278 5.495570892737305 3.044694166563204 3.290489820730727 3.707283080591878 5.399779825000223 5.829204659662082 5.058529969039228 4.68869793062413 4.466624931106708 6.100210302032792 6.637865665191839 4.784211958948617 3.067203988670371 5.690390164746304 4.155797987892583 5.343328013794235 5.214325395889318 4.478042153768911 4.221174803096801 5.856512465725245 5.057810948172119 6.626234510207723 4.655541586282197 4.574370142912812 5.747990164483781 5.400530220839528 + 3.99385485509265 5.454163126370986 4.969610262007336 4.455168575557764 3.956066241684312 3.985477218244341 3.480092446727213 2.746227540090331 3.364570331701543 4.344733063837339 2.931605927784403 3.693984733487014 4.076112545339129 3.922704905180126 3.255523189849555 2.765393559844597 1.611547004024033 3.471322232517196 1.577384209536831 3.140305653781979 2.554785416090454 3.145685361942014 4.206554244388826 3.876636076691739 5.018882752861828 3.408928880700842 4.292677392673795 4.875872091964993 5.691894688981847 5.554165524874406 2.930831623574704 2.780800312513747 5.155278749442004 3.102370352316029 3.488884336917181 2.010008886774813 5.586677384394307 5.081411523421139 4.120595808833059 4.084188156379241 2.518003057377427 4.747571376840824 3.433550276839924 4.006982829680965 4.464838532407043 2.043408205046489 3.759571860178852 3.374917789451501 3.777157352684299 4.492018103662303 3.78808633886274 2.993216909407238 2.963862832000814 4.107755084334713 4.094076679539285 3.403293440796915 3.47658395322469 3.891693437952199 3.271870119035384 4.737696896344801 3.419439640730971 3.007859391290367 3.004677728880779 2.683507636524155 2.423672525619622 2.326836341460876 1.462073288945248 2.584504819000358 2.947003750468866 3.76285844566155 5.046326415656949 5.694250323140295 3.129832853024709 4.532684650803276 4.920807833645085 3.132853255841837 3.242514928905621 3.236529129386327 5.030892986028448 5.512145922831678 4.710859727479146 4.47806526407112 4.015355560858552 5.519756173878704 5.916678137787585 4.230795209285134 2.018980518020726 4.862227238633068 3.352376850911241 4.317326894226426 4.808293566140492 4.310347582348186 3.951258396798949 5.110763218450302 4.326730860011594 6.525874705796014 4.913036464553443 3.820042523528173 5.024562729438912 4.677695047814165 + 3.973116931469121 5.107110172917601 4.784899707199656 4.155678191498737 3.60586931459693 3.995828356230049 3.244647229352267 2.634480095708568 2.776504080400628 3.599582221093442 1.235706319530436 2.684834390845936 3.100524782210414 2.896285148089646 2.155179012932422 2.169935376580725 1.00824113462113 2.861438878054287 1.385231149855827 2.606932826718548 2.110503245174186 2.738229121408949 3.495473269846116 3.610000157498007 5.026358145652921 3.222982295199472 4.039635419387196 4.48002160643955 4.984828642489447 4.867477319299724 2.232181183755529 2.639373965437699 3.968473562472354 1.739446057948953 2.299033145205613 0.876896108755318 4.838022841353791 3.699437902404497 3.595580004354815 3.232677607494225 1.943614254766544 3.891395511950122 2.796564451778067 3.160650277969125 2.751759640012523 2.053906689205178 3.446950747922152 2.682392037544332 3.459734874904825 3.91858313733519 3.388248681487312 2.34774768627608 2.402377000038541 3.136863662979522 3.461979048678586 2.871805470005711 3.20344403333911 3.317954815909616 2.995004036044975 4.69652571100869 3.056887414716599 2.544643546230873 2.399984660289192 1.974123076572141 2.1260331838821 2.377685225794266 0.7144080874859355 1.884524568617053 2.390885896975306 2.931882294480602 4.346855703064648 4.592898192553548 2.29815575563407 3.903266295495996 4.246593489857332 3.291579877000913 3.114804648177142 2.786000215648528 4.487242271046853 4.895818877431793 4.147604208098755 4.091153677464717 3.275730504816238 4.402065057195614 4.799014946047009 3.421864701381764 1.05143548246815 3.729338085563313 2.315533721468455 3.128464962635917 4.103042779293901 3.949116535295616 3.436974614049177 4.11936216615868 3.390117156923225 5.872578103699198 4.794251431454541 2.994235203534117 4.078095935419697 3.668356604098779 + 3.908271965592576 4.716648828885809 4.480015193592408 3.823073814695817 3.086228865708108 3.797432582796318 2.794584997580387 2.533307568424789 2.257895968563389 2.740740509645548 0.0001564591657370329 1.61478983577399 2.039887143801025 1.851268992606492 1.288089572411081 1.648343999434474 0.8077321835271505 2.212520683072398 1.31047410690735 1.946246431070904 1.666357877980772 2.391781893784355 2.735504387968831 3.226894448441499 4.852106535749044 2.920001532649621 3.597857472821488 3.957533413977217 4.05412070924649 4.016008739345125 1.581604215585685 2.558278485743358 3.179581810055424 0.7402075532136223 1.577072544285329 0.4594348547561822 3.937744814528287 2.552244440722234 2.687805240182797 2.421136490701429 1.556154449380301 3.050390818209507 2.211018266011706 2.492718064884002 1.573995261831897 2.464578306470912 3.155216583097037 2.14352081492757 3.199693447288155 3.317749100802757 3.032124508671586 1.867264348714571 1.918514648050859 2.351356713730638 3.073404493754424 2.518340925877055 3.085808384055781 2.783716451343935 2.676416805654981 4.670891835108932 2.695581803027864 2.373756674066954 2.043250301842818 1.586071327092213 2.244286353765347 2.744725890432164 0.2825898128685367 1.376323162046447 2.258472144590996 2.438760466826352 3.614330015043379 3.429168154892977 1.682527241136995 3.465710453889187 3.731949304205045 3.540979027255617 3.136735874547412 2.576393767492846 3.985032143719764 4.163197899478291 3.58052861038982 3.765627405651458 2.577151146309916 3.17117602981034 3.667663039022045 2.718400909594948 0.5484476951032775 2.827761252988012 1.492653472916572 2.203890774624597 3.433300321239585 3.736689067227417 2.862144821639959 3.283137022652227 2.696902494237293 5.103809197866212 4.434530209953664 2.451317708029819 3.293672186861841 2.926363910713377 + 3.949627640686231 4.616071707743686 4.2754063874454 3.662938830420899 2.675895286265586 3.580515061999904 2.394162147233146 2.590359763562446 2.144480807310174 2.147228266054299 -0.2245168920653668 1.068124530298519 1.463984724894544 1.301691263616476 1.187516101143956 1.481659762937397 1.187459086743957 1.833783647692144 1.493346332241344 1.646241995113087 1.434621526037517 2.336578967777314 2.206327162191883 2.973581163608173 4.624110812597792 2.689005430351244 3.144763989206695 3.579136322614431 3.343337650991998 3.45693138266688 1.251868495693998 2.556689118217037 2.972099013667503 0.6013002829536163 1.527673761414462 1.131482848823907 3.361169895132377 2.352106567799865 1.686444937376791 1.970228925963056 1.536869242248031 2.588138637578595 1.958544883118066 2.388406636490686 1.473136820230671 2.627454111453631 3.010118410226628 2.012464260862316 3.135041300082776 3.003112322548532 2.899683302407084 1.824372816582809 1.713587266287959 2.222763367820335 3.149020182098866 2.501785016117992 3.15786595983991 2.465446615166002 2.453943952378495 4.720602213365908 2.482331112649177 2.580020372695799 2.036515378404147 1.676731058676523 2.658844541389044 3.212208230157557 0.1871882962532254 1.097501423367703 2.46855824587692 2.330841976865486 2.976599172921851 2.492302991071483 1.445169828592043 3.291236443317757 3.51927620351853 3.807785117949152 3.414139720755884 2.688219283050785 3.628651775619801 3.463180886859845 3.157512333433033 3.654384030318624 2.23894900016694 2.315456082515539 2.851564870417405 2.381623168339047 0.569782384910468 2.504784038648495 1.198866927046765 1.841789652722582 3.051132205207978 3.845785327634076 2.371349437640674 2.843531260947202 2.49557107246801 4.569505319926975 3.990172475550025 2.338874726463473 2.980112692658622 2.876494240322992 + 4.216793015422809 5.081477634714247 4.357216273245285 3.823038497001107 2.612998130567576 3.523667599009059 2.278589523994015 2.900100013466727 2.611813057068503 2.079558948549675 0.7154460357451171 1.406148873540587 1.733152544431505 1.504381042680507 1.973851328897581 1.815431854390681 2.051140476224418 1.913617546644218 2.014754383693798 1.963691158638539 1.524787075875793 2.703238012427391 2.115073556768039 3.04364359545167 4.454421663445828 2.669351569129503 2.815265251032542 3.463632936029171 3.040458748704623 3.367501275519317 1.317933654644548 2.562093858251501 3.045367237631126 1.336036534573623 2.003600059525525 2.559433028386593 3.323463022568376 2.978888277482184 1.022330070703106 1.972272684870859 1.8910671853032 2.675488520276303 2.09746144516771 2.839223498033334 2.018292598078462 3.007782505973918 3.07089449448965 2.318504788759697 3.259642345577049 3.081598057799056 3.022585016774656 2.287404591040399 1.880254718277229 2.763943718801784 3.600755830964999 2.791457999365321 3.394238677890826 2.495700692103128 2.457558056797154 4.872365621666574 2.516040228255143 3.156424151062765 2.351205458934601 2.246688759110839 3.191769830535122 3.569886696222966 0.3633026576699194 0.9835127794578966 2.738518615634348 2.441952893546841 2.452741193297697 1.880992799531668 1.59398300266912 3.268454557608493 3.609744208053598 3.966093569270697 3.8992765010114 3.054069890929895 3.42262555805155 2.915315018603906 2.944843580558199 3.80647729607108 2.494816549411098 2.245074005619017 2.554503039955989 2.498157424082137 0.9150132719632893 2.833689466746023 1.544639129387178 2.14819771106886 3.082705853934385 4.262407580958097 2.047414435841347 2.852982553853508 2.822260864290001 4.416939475664549 3.653166140555186 2.605211888943813 3.301212498089626 3.626929350744279 + 4.759758536307345 6.160105588605802 4.824989014370658 4.365526875924843 3.037544320359302 3.756500524425064 2.601908383483533 3.48330233589877 3.619061595389212 2.606756710400077 2.55901693562555 2.636911891651835 2.855503873698581 2.387172561147509 3.368254584060878 2.613279464449079 3.113138017114522 2.454269671283782 2.870085333013776 2.752219151139798 1.902441769155303 3.474239833625688 2.541282609272457 3.441074615912555 4.417186918544758 2.909389458080113 2.665890831260185 3.561268769623894 3.044775126548302 3.624732919002781 1.648972995335953 2.483580050949058 3.054143148231788 2.524465926648077 2.643641717866785 3.944930800412976 3.67293146221013 3.64494314462361 0.8968310048012995 2.267801454269829 2.457841335127796 3.229192996460597 2.43844998456575 3.428518753222761 2.646839118020044 3.895262274682997 3.309643090281657 2.865445623211457 3.462173302942119 3.43104834376868 3.284961674231681 3.10203996388114 2.376373563457946 3.471033629635031 4.112805402837694 3.218357882361488 3.768370909418991 2.950184335655649 2.798923523003509 5.124281590968451 2.842789086209891 4.036816775061652 2.894636471481135 3.174454536261692 3.718788274160943 3.794136241165688 0.7482333894104158 0.9582827329468273 2.83576177986015 2.626994940317672 1.988652040163288 1.53638315043645 2.016661097775795 3.20528687211845 3.887783349649908 3.948916376189004 4.437276005792228 3.509294874815168 3.327065570476407 2.62128195003902 2.938283042635135 4.188116171217416 3.435587803241788 3.136240556430153 2.827989098700641 2.982290079317636 1.34141933497358 3.659773867291847 2.445260837599562 3.050689464098468 3.541488893752103 4.862442336501772 1.911183869662636 3.223575813097341 3.549349210386936 4.567215333232525 3.624118812859706 3.119751219415775 4.254761726639344 4.936153353515294 + 5.524565572356551 7.584464684086925 5.64599020346941 5.247467867058731 3.942360337878199 4.326014188838599 3.40107304052799 4.283319285219477 4.913754398556193 3.587137358952532 4.757027997671685 4.408805763480814 4.474974322304661 3.627435663833126 4.85221597381144 3.647208878012634 4.148378271651936 3.279171000373594 3.965310477397907 3.605536610669787 2.415960310053379 4.488014720096544 3.420610473402121 3.960979021817479 4.535877167087165 3.356232743168221 2.668513032545889 3.724634204711947 3.105143705716728 3.987151073447421 2.005260713466896 2.302413429138937 2.988585191805669 3.58075804648422 3.061430758464269 4.593242778553474 4.029016527726682 3.699724772015067 1.17440224535153 2.551083512081959 2.987868169359444 3.959878624376756 2.722631106211907 3.688265644352157 3.059601095391303 4.107189981554661 3.611950716241297 3.319341477293662 3.599492759971781 3.808613536855546 3.488261525458597 3.96821434324616 3.042914308539821 3.656191008727319 4.311791883261549 3.55298786092203 4.272403067567211 3.834629590584882 3.554713791416816 5.45386110470406 3.441664381560493 5.111383602278238 3.561012327672643 4.250045179784138 4.138740824107117 4.006394712344445 1.3009408707494 0.9925865012121449 2.719373655447043 2.897853814073642 1.517165490789921 1.322016928563244 2.547183368100377 2.97067042190065 4.181326049296331 3.837770638160123 4.858570486837834 3.873871471565508 3.317756397271751 2.66469390861414 3.090105878623945 4.717929549689529 4.985012649803366 4.837399618643417 3.58981436769659 3.644451145027801 1.761222001763031 4.735226052287999 3.698883879506866 4.374392069440546 4.382326909450967 5.531058168719028 1.939675383378926 3.813560463944668 4.434901352061388 4.775259594495765 4.00978878850583 3.764795288320101 5.667116238505571 6.323483223959986 + 6.35194037225574 8.870471087047008 6.641389966163842 6.321562929555512 5.157675416297934 5.177072366815992 4.585093108918954 5.178529285392869 6.095989857119093 4.707452378107519 6.675283042937735 6.124794152347022 5.999795536676174 4.808354135054515 5.899265105648851 4.554689729662869 5.012087466713936 4.106751130008547 5.136518927307407 4.121529771680343 2.866955912654248 5.490022376445268 4.570925971618635 4.307738732669371 4.782412954453321 3.880028474612118 2.734073622021242 3.780469565472231 2.993201398683141 4.279765779500735 2.178216305417891 2.087708855610174 3.059011496147377 4.044156018738107 2.962844461543284 4.358446483748736 4.091440966514263 3.237578668011981 1.655413348798653 2.559257686235469 3.257097130205693 4.522885649068087 2.854452195627573 3.535308663784882 3.095554666907793 3.046850091222335 3.813363403011181 3.411269843983341 3.556308778352104 3.992560699833064 3.450726557306609 4.571334111474243 3.656418054502296 2.992953661133015 3.942983445107757 3.58549530083485 4.890171080915479 5.07302567347142 4.744101751588232 5.826009029924137 4.208722992597544 6.222696375415921 4.2443697098239 5.207154809468193 4.294398283130704 4.273586828385305 1.952801656249903 1.095192831551913 2.496399279062871 3.372305843479353 1.009637222132369 1.104534374455397 3.032364959773986 2.591496221126363 4.331143194545803 3.81115486441243 5.057935002445447 4.023583547700582 3.411737436856811 3.08970879510872 3.336037789059731 5.292524521986138 6.915160952092265 6.889736891191717 4.672303518377646 4.283295032003707 2.25131790584885 5.857495907540226 5.091875581290424 5.939677050817409 5.563045548590708 6.255746329331487 2.093297438878835 4.504181303872429 5.167328983269726 4.74408146870428 4.713018475105855 4.433018613744139 7.214529937224128 7.301178445750097 + 7.024188631525249 9.563530366029227 7.522378250430847 7.366293397109985 6.388194620664763 6.156548405986541 5.953060960258881 6.007484543646569 6.72709246058821 5.568857579278301 7.804375666180704 7.143352609947669 6.83198368316414 5.567709371424144 6.210113814366565 4.97555593520309 5.410483504113172 4.654635743199265 6.187393660625276 4.043598973384633 3.078564594212139 6.206094624068101 5.749450745350259 4.263865206277885 5.087617144981778 4.321666951109364 2.75444098535263 3.550287318876144 2.583052443461952 4.421533013252485 2.092411829695834 1.900537714510534 3.309488176835245 3.758002022814992 2.213899251481735 3.625397766178992 3.869430254101093 2.902970550118823 2.3104423032228 2.239683586685317 3.166234252961885 4.70038948939478 2.966548826704937 3.362686506750784 2.922741281339434 1.427010886178018 3.764566620919756 3.135567643400229 3.267228478420748 3.862435608974977 3.09396522169294 4.70245667721332 3.996653380741009 1.83865061151937 2.981764028376688 3.198323866593398 5.554181892468023 6.504606662801052 6.307100788649961 6.198616525320517 4.958901420589662 7.164295304274106 4.82783551331022 5.772122862701963 3.989504344843681 4.463930365143142 2.558107605290388 1.263127843497557 2.287492916687256 4.130965996230088 0.4957409511116566 0.8027877771564818 3.373490445981588 2.245710568756294 4.241873486414988 3.972067394082174 5.01398847066406 3.917866895682891 3.643368717177282 3.866417171958005 3.611531828074476 5.796278952256728 8.898210978657062 8.668013115268536 5.877580693290611 4.754847510821492 2.881578454943366 6.93525428304963 6.482439392444576 7.634772984403298 7.079355848056366 7.143289596803697 2.341075772193108 5.236566293099713 5.439226568711092 4.256829535674569 5.431878717286509 4.999554965822085 8.535538340931573 7.651122005283264 + 7.346481496716933 9.477053940618589 7.973322833502607 8.14333927314874 7.300034670653076 7.044831695191533 7.238115684926015 6.601362828358106 6.455758723801409 5.795648092755528 7.916583035689882 7.004052730401781 6.607530071364522 5.691394736813649 5.84458859928705 4.720057801271395 4.93358581397055 4.731015463182132 6.934318021769286 3.262719180136401 2.933970399421241 6.412186180318258 6.719978282587363 3.796305206393981 5.35946731885997 4.544002554608596 2.644104242932372 2.858904643065671 1.827253097171479 4.331396189964636 1.819231081737257 1.673720339835683 3.485159872626785 2.884532293390443 0.8927572703935347 2.901776375758281 3.62376320101836 3.202357924054529 3.154004488327462 1.786097320182648 2.77970706346531 4.509541169325999 3.253314214163051 3.667340992889891 3.010195603025914 -0.26690738664459 3.391935419702157 2.710675496476143 2.710654596472352 3.402640558895484 2.47411225531593 4.315060479365826 3.908113409067482 1.007986584370983 1.639571604970953 2.416014652381108 6.129231322040596 7.89852338610217 8.094306280747247 6.525297362038856 5.461533209666895 7.706708147738595 5.180568005434168 5.735626125873523 3.127267982473199 4.304366397400599 2.910852118364687 1.446629917252096 2.138593086478124 5.131079446595095 0.04779207788851636 0.3980286574987986 3.53479239038279 2.15796630648299 3.898969591897185 4.220698507528141 4.749395518554508 3.579505613976153 4.010074174580609 4.866482823752335 3.856586219105935 6.106890014789684 10.5818211041356 9.601091757001335 7.021867775007081 4.994889912504618 3.543643858874972 7.959719102060717 7.828702908256219 9.432805034579815 8.955055864798851 8.354939309332167 2.675016123164824 6.004873804499312 5.060123065464722 3.28174633579647 5.804853102158461 5.350919224621833 9.385718822208435 7.552111998823777 + -8.749871850384807 -5.903300361542279 -9.983589209514321 -13.26450409571407 -13.99973918780961 -11.94458022987237 -12.0070548882868 -5.309676301545551 -2.969013973804977 -7.16695704052654 -2.399247013921013 -3.260319317947506 -3.514044355571514 -0.135156798065168 1.56571147877321 0.2565590672202234 0.9639432193066568 -3.077922082457917 -1.83381216467842 -3.082329706019664 -3.194871402589342 -4.663567560006413 -3.256824111213064 -3.776714636157408 -8.035282575365272 -7.123940131677955 -4.382746351344394 -1.178229408463267 -5.065060946053109 -5.360946673792114 0.7627682290135454 -2.960421866524484 -3.674484633276052 -1.313748054640428 -0.8980902859550497 -2.940848650380872 0.2899790102630391 -1.478047529333239 2.153460934507393 -0.9457487581482837 -2.852833737669243 -1.531953419792103 -0.1859750199624841 -0.9129187666702308 -1.419233124742259 2.12112384225216 -0.5057776661448088 -0.3925734340114673 -1.615150663910754 -2.246341713562288 -4.32910443589617 -4.792196302804001 -2.979566611250448 -8.688606734954419 -4.840539896140626 -2.689523651241871 -5.347467702018548 -9.797561507553837 -8.303191125729882 -8.16618101898689 -11.50948103665838 -11.25967521911957 -14.99735816488101 -15.10877230324058 -9.139891578495735 -7.967685830599294 -6.505774977774308 -5.339002072258836 -9.037551909265858 -13.91521246565208 -6.588496838747233 -16.33872551104287 -12.0027094428151 -10.62236377879344 -10.60535696169427 -7.517455478196325 -6.97947287582565 -9.932818254900667 -10.80757985799801 -9.958037391212429 -9.391619119490883 -8.881744942050886 -9.990426424162251 -7.786461628754182 -12.57673434176081 -8.189872550097334 -3.353698141501127 -9.115571199683131 -10.34956263012646 -7.913026264544897 -10.6978060325273 -14.28573993031205 -8.537164747427596 -13.34531005333156 -11.04020310860142 -5.365418439487257 -6.514357396175456 -8.131212390475184 -3.206987779087399 -1.047600756313195 + -8.366977560872328 -7.530553475422494 -10.1824646417881 -12.75732777604571 -14.19524141593865 -11.6061077403574 -11.91934850320831 -5.547549902119499 -5.163009793752281 -8.446337833996949 -4.551924401137512 -4.666691575657751 -4.250429970759797 -0.543987317072947 1.308474973008742 -0.348179211651086 1.084527471991635 -3.380179599596659 -1.821760082435503 -3.547126593892244 -3.555670630878012 -4.549645728169708 -3.478035020685638 -4.690733144041701 -7.370104457222624 -6.932448914871202 -4.683865531100309 -1.988157238374697 -5.614240364884608 -5.204358989919456 -0.6938375575050486 -2.70801638961575 -3.972811746971729 -1.289237741326815 -0.727844748599864 -3.437356697884297 -1.19274193477932 -3.368610127547043 -0.2446352215410457 -2.487654251675394 -3.871370110542102 -2.92865619032159 -1.418437465852094 -2.80136264218811 -3.654301712610618 2.478974993120019 -1.1188693918405 -2.338327549969506 -2.230680151074012 -2.284569827393852 -4.419024707082599 -4.719346979235127 -2.65408138421617 -7.363364125112184 -5.379941906081513 -3.764580251668576 -5.175106781545765 -7.965120570603176 -6.847472626939805 -6.053014293429783 -10.06108581139883 -9.185074771930886 -13.17277779256619 -13.34059980938946 -8.567874647957069 -6.878699974668052 -5.129432329542396 -3.992464802176301 -7.052922851848052 -11.37830173411749 -5.647071951301768 -14.84098746444215 -9.856145427511365 -9.205560291438815 -8.820969944594253 -7.464828575076353 -6.952127736063858 -8.400967953759391 -9.521124559533291 -8.886849432521103 -8.090955936646878 -8.078356373535371 -8.606153048655415 -7.6375239445847 -11.01666442227679 -7.66706632052319 -4.732791927599919 -9.190918012268298 -10.04561528544036 -7.193534199950591 -10.12785776647979 -13.45145884134945 -7.547183142954964 -11.96836822355908 -10.42744477441011 -6.133153543982189 -6.480759705763376 -6.662083617146891 -2.355807931309755 -1.055911943664665 + -7.26586753081574 -7.570166111036087 -9.150981713653891 -10.97685503709363 -12.99332775099901 -10.3797471821963 -10.91654508275678 -5.115917322451423 -6.127503123625502 -8.461902537088463 -5.398786461124473 -5.591839782744501 -4.672127368650763 -1.028224659881062 0.417007379424831 -1.071758634908292 0.4150500174729359 -3.415249202927043 -1.594722298541456 -3.700110996964213 -3.431269647364388 -3.893620582250151 -3.050857609243394 -4.541593853301208 -6.122044218798692 -6.121817902654584 -4.352536126716586 -2.583331936701143 -5.766842803047439 -4.781526372249573 -1.629445520155059 -1.849061004151736 -3.114720440145902 -1.071228014418011 -0.08617722807002792 -3.454979266123701 -1.976642240028355 -4.033400792683949 -2.050726272885981 -3.276026643146452 -4.015104565882666 -3.6573937107446 -2.245878798719787 -3.636704822387856 -5.952323470469768 -0.2544052418063529 -1.241466651544457 -3.340683317875914 -2.435912240747712 -2.142242834099306 -4.068952352870156 -4.275725341384884 -2.069838239879118 -5.844324048774979 -5.513072936343633 -4.402272047361748 -4.293541731964979 -5.690914479942876 -5.099748834482511 -3.772266844260173 -8.061983573142285 -6.551067075004084 -10.5333373225476 -10.71749431489297 -7.289974543908102 -5.502288263520313 -3.509810624080274 -2.578952628393836 -5.153919292300998 -8.714747488082139 -4.263252617412945 -12.5276423584437 -7.242324189013743 -6.974039758024446 -6.321711551136104 -6.181502058541355 -6.147012576738689 -6.249968082049236 -7.443845801488351 -6.95739403906191 -6.144400668686785 -6.546712975977925 -6.6689868103972 -6.524453042288087 -8.462435611246065 -6.319488693450694 -5.214032167988535 -8.258222359605725 -8.722530705903409 -5.590185977540386 -8.597756336155726 -11.75276212281096 -5.956616932282486 -9.748430660729355 -9.09741957994629 -6.352785530387337 -5.881855291640022 -4.75220575298863 -1.709731476325487 -1.063810437764649 + -5.562833483785653 -6.036508633325866 -7.115870304027339 -8.256668484791589 -10.61996788733086 -8.442688975621422 -9.131064427245292 -4.114188570529222 -5.802228945332899 -7.257002945196291 -4.829616940798587 -5.71904501757308 -4.528527376656712 -1.361088072848816 -0.7736590872254965 -1.535328743525497 -0.5483688866227112 -2.966861432244059 -1.161509002882667 -3.301847545018973 -2.778925093294674 -2.756178261777677 -2.01340276782139 -3.365655104586438 -4.427520761120832 -4.799067080319219 -3.427414180361666 -2.621677469567658 -5.260102961516168 -4.009978714841054 -1.864871753344232 -0.767100507370742 -1.696841883605885 -0.7996434795118148 0.8248779762107006 -3.007239754062994 -2.024634577862344 -3.452043097058663 -2.490649572675238 -3.093219954054803 -3.260739986231783 -3.384976862681469 -2.259639898619753 -3.036971200906237 -6.567842632802297 -3.587705992737938 -0.809277117260315 -3.016368139305314 -2.10031535332746 -1.65417013233764 -3.180608825829495 -3.348629168061336 -1.191697388401735 -4.225385533735789 -4.941735548026827 -4.178789494386365 -2.755926710546191 -3.175896612716315 -3.180072056606377 -1.503698716365079 -5.649900011567482 -3.647877952180352 -7.318125974269606 -7.502226218708529 -5.212451041948952 -3.790196140857006 -1.700317377111787 -1.028573820293332 -3.245510306524011 -5.928714615289209 -2.422385157879035 -9.325704268878326 -4.335064156526641 -4.154068082523736 -3.379762589109305 -3.962647019469387 -4.667254192029759 -3.719990671888809 -4.750815561140371 -4.37742596804901 -3.735446507209872 -4.459911096021415 -4.351818008289229 -4.580381003975617 -5.221753239918371 -4.283643432800091 -4.466976577867626 -6.263639127415672 -6.463143759174272 -3.234850436008855 -6.241507510962037 -9.225538670696551 -3.914911762334668 -6.764579751612473 -6.933010430868308 -5.628634098764451 -4.667288974744224 -2.584966398599136 -1.019056307295614 -0.635599225143312 + -3.500735936777346 -3.425072661302693 -4.472796202840982 -5.068186674136086 -7.502620747189212 -6.055128282765509 -6.798530315340031 -2.724716092554445 -4.389231129622203 -5.088977084931685 -3.044738920689269 -4.868207197414449 -3.641794932798803 -1.220014079874545 -1.562841233290783 -1.420756288100165 -0.8882177882046562 -1.956429147285235 -0.5752013922628976 -2.327717783529806 -1.699286172337452 -1.299629013305093 -0.5196568450337509 -1.555796481251264 -2.469105019205017 -3.132448126394593 -2.038006038084859 -1.874818782798684 -3.938463701277215 -2.755270188050417 -1.368405566975525 0.2622268923250886 -0.05629902944565401 -0.3163677817838106 1.952592077053851 -2.079866533731547 -1.384857360516094 -2.069420921128881 -1.43797842504955 -1.978567760967962 -1.81424723633063 -2.07677654260624 -1.403998850259995 -1.369812749311222 -4.900550887927977 -3.970687224798894 0.08434505478667376 -1.635360524088583 -1.200521541037233 -0.7310968353585849 -1.790492957711649 -1.957092885282918 -0.06207198733955011 -2.452332040948022 -3.499235418436911 -2.954257441970185 -0.8036908562680765 -0.6790850319121091 -1.252095217972169 0.5789116465028883 -3.060505749340408 -0.8233926338043602 -3.896129356117854 -4.074857439365587 -2.527326329876814 -1.794728314780514 0.15507269531372 0.6158136626877422 -1.206465668077726 -2.993864019030298 -0.262505900580436 -5.450473896926269 -1.403505330526968 -1.106494460531394 -0.3579986594049842 -1.438851522334517 -2.757065561126637 -1.137023591883917 -1.772194319450136 -1.495364319990131 -1.141108794191723 -2.06863647879527 -1.875420631419729 -2.042071381776623 -1.697251354170476 -1.819078235748748 -2.589286046239977 -3.407354612083282 -3.574487984407824 -0.4412631002851413 -3.360040980915073 -6.090550666242052 -1.661667258251327 -3.289880845353764 -4.023352855452686 -3.837036514836655 -2.948183740643799 -0.3182071173105214 0.1957619943996178 0.4431400320350427 + -1.382011676159891 -0.4681279284195625 -1.671871582104359 -1.902358172519598 -4.154771395093121 -3.510143700623303 -4.218696371288388 -1.176794778497424 -2.295843854197301 -2.377902065440139 -0.5190645756483718 -3.101673407138151 -2.017334818927338 -0.3856192577732145 -1.325901556427198 -0.6587057746201026 -0.1448126842842612 -0.5030687952748849 0.07279895577448769 -1.011670363579469 -0.4034128803868953 0.2516809407279652 1.18612931734242 0.3602942959485063 -0.4466161665623076 -1.325599444848194 -0.3830893510603346 -0.3975868977868231 -1.858060018923425 -0.971770366480996 -0.2848772400529924 1.119106517300679 1.78401702912015 0.6266707082595531 3.254488641707212 -0.6978306235341734 -0.1157146049172297 -0.279533750730252 0.5059601548723549 -0.2120433751224482 -0.0443257998331319 -0.0239108901664622 0.02981254642872955 0.6469553900856226 -1.921150604159834 -1.671100899329304 1.224389356589541 0.1941047027826244 0.1322582386783324 0.5872189156816603 -0.08662787109960846 -0.2755013412593144 1.186283611371437 -0.4626111738343752 -1.319846725595198 -0.9843437753934268 1.186435065434125 1.53276037179603 0.507938990491084 2.335424373641899 -0.5910683425407512 1.572165135066825 -0.7203889353586419 -0.8953397022742138 0.249168484362599 0.2311986270433408 1.805407239862689 2.17349724340238 0.9072949562632857 -0.03251627582358196 1.94767418623087 -1.372897861670936 1.224306622621953 1.73731861804481 2.363040065196401 0.7441279280083108 -0.7367704672237778 1.15801944004852 1.08199216799494 1.28764639165729 1.320541670748298 0.3247135644028276 0.5077583071042682 0.7448496206598065 1.674744975562135 0.7262863448163444 -0.1332244965624341 -0.144237412652501 -0.5347537293582718 2.346170498080028 -0.36920720065973 -2.746059296790918 0.5211468962697836 0.2270692083329777 -0.7484962804737734 -1.208947545084811 -0.963353367496893 1.852618318722307 2.086929445167698 2.045621113227975 + 0.5179897641392017 2.180652441980783 0.89274607837433 0.8381978247489315 -1.053288377952413 -1.083787396579282 -1.705785373298568 0.2991488211264368 -0.02878221455466701 0.38005437760512 2.080157732063526 -0.7671985551860416 0.08906171824855846 1.067396859752989 0.01560343629535055 0.5145778901578524 1.209940147930865 1.109630880246186 0.6719859808472393 0.3318080196841038 0.8593839680033852 1.663594739173277 2.816272071853746 1.981740039476676 1.451056039208197 0.410417462742771 1.302908937112079 1.483492945641046 0.6850868698056729 1.192967470662552 1.084273322419904 1.772169505034981 3.74191397186587 2.009389445544912 4.495219802643987 0.9406837803780945 1.641652004108664 1.751549388025978 2.452952015066785 1.767577102595169 1.627005200745771 2.257141273073103 1.587787132551057 2.438698930796818 1.067162793050215 0.7078548034569394 2.347545591596209 1.930420380602754 1.620841283382106 2.117591110282774 1.63311635138416 1.400629647299638 2.353271966406282 1.634557137604133 1.134967431811674 1.175129971206843 2.825332775990319 3.241912694971688 1.947953335304874 3.680652036409811 1.470793583242482 3.264836431674667 1.778010665506372 1.592667593067745 2.465306524660264 1.886096939670097 2.953998946719366 3.382563492031295 2.791621641736128 2.607393749851326 3.884064781879715 2.312531511473935 3.234928960722755 3.98273312416859 4.466498955094721 2.220854806319039 1.07886046790054 2.889136146397504 3.431481054675714 3.621277364029538 3.358517825457056 2.413576992513299 2.542072097402524 3.353523850521924 4.488893592963905 2.973979701309418 2.112657584847511 2.915430057978028 2.12172503565489 4.653753292892361 2.291228081518057 0.3219073474392644 2.369287976711348 3.265220439709083 2.291076038723986 1.738971815822879 1.004291884375561 3.667134812090808 4.210310541942818 3.796134607294018 + 2.020053470165294 4.152174767470569 2.953920537242084 2.906511536843027 1.452832991628384 1.004042291911901 0.4626129196112743 1.516605411547062 1.933390373305883 2.71691156083034 4.044974148124311 1.571755260491045 2.205086534933798 2.731199857560114 1.874306946110664 1.675997946334974 2.263432195282803 2.537113594644325 1.121454676162102 1.498843935849436 1.871725158704066 2.740326482860837 4.099312368780375 3.154675471306405 3.069638298315112 1.88592264320323 2.790863062968128 3.327311298635323 3.214428512408631 3.389895087024343 2.358379475606853 2.217111929810926 5.438772632041946 3.420325330860578 5.286897029427564 2.405452826236797 3.560624296879496 3.817282228713566 3.815761588007263 3.485066035809723 2.84279165013686 4.20614320943605 2.864822444877063 3.733051015304227 3.481005887081267 2.415995356206622 3.227602165061363 3.244439604219679 2.927673342470371 3.567481005229638 3.052275011558777 2.741728332657544 3.227957433575284 3.503418784945097 3.247020141585381 2.924230083121074 3.852222315130348 4.325281717901817 2.970978489092204 4.59440912490129 2.925951627376378 4.133856296851263 3.322184615775768 3.09410286639104 3.65614986539731 2.828957737227029 3.383738685985008 4.016345905611161 4.033590973320315 4.467889902640309 5.268659862063942 5.07236187721719 4.418175512764719 5.382659958144359 5.767826357812737 2.99722488705811 2.455594968535479 3.911353068346216 5.028779715933524 5.284122580466828 4.77327350291398 3.954360994296167 4.010871465497075 5.370117264256805 6.435823839324712 4.593788250138914 3.474840825729189 5.185025952126352 3.949490501048786 6.104008862497722 4.26400043132162 2.686672582636675 3.69213624664917 5.388105306650687 4.498139097020612 4.391406618939072 2.708047246778733 4.854278382386838 5.853635383053188 5.243602973827095 + 3.065835029297887 5.374141259264434 4.391140827618074 4.227050391826197 3.182917127276596 2.612623292006901 2.089068300687359 2.366750806024356 3.256273879829678 4.292049393505295 4.844118302364222 3.318807667579676 3.792850647318119 4.031036294592923 3.349384363735226 2.435722723723302 2.504544973752672 3.493069589759216 1.360146917657403 2.39494227348041 2.491372468204645 3.361589623396867 4.840636702247139 3.901926580036275 4.306583680139738 2.961638725217199 3.89914547513763 4.749189704947639 5.208073497429723 5.162483049571165 3.197221749733217 2.472829595688381 6.375747700152715 4.276477994319066 5.337936147903747 3.173688268429032 5.167430310444388 5.434238084161962 4.538191669921616 4.564587746728648 3.406769425089806 5.404359309887241 3.622966966358945 4.435600744803196 5.120283637896364 3.239351879081369 3.742944459129511 3.958602011050061 3.787653641651559 4.62163572859572 3.943064904756284 3.497722826523045 3.659758146921376 4.72220040387765 4.525556448144926 3.886007223381966 4.223208600162252 4.775026700805029 3.551141394099432 5.118236802341244 3.715184646119184 4.250175345076059 3.884345790887892 3.567819873405824 3.788463509401481 3.008835596512654 3.077552216538606 3.999826395450327 4.383390817158215 5.24067516510695 5.956661582684319 6.60025676630903 4.735993867972866 5.904435160584399 6.252031508083746 3.322497951687183 3.291853504609662 4.243736617547256 5.816568023477885 6.210443380472043 5.497452152188544 4.831499097698725 4.784944815985909 6.508229241259869 7.360016332443138 5.389302988017334 3.678048593299536 6.296932986230786 4.719613949837367 6.525055852431251 5.363201523487078 4.123994433299231 4.408948141004657 6.388724885233387 5.538621866813628 6.254573966740281 3.987792290077778 5.248608645153581 6.566781356928914 6.011406156895418 + 3.697512255104812 5.948822577614919 5.210677498253062 4.86907228268683 4.118567031706334 3.687692602092284 3.084936836312409 2.833385244033707 3.823082319264358 4.962861137097207 4.333464813586033 4.07298620747315 4.464293686673045 4.511953024295963 3.796832142212224 2.620939619702767 2.081617213032587 3.83730143540015 1.388937066985818 2.911950370929844 2.671447624354187 3.508766678569373 4.96997084832401 4.278502830426532 5.120500273507787 3.574694468574307 4.528918653129949 5.524525235639885 6.280819140833046 6.122855626828823 3.421205310054575 2.595683870216817 6.299533758978214 4.18467271805639 4.646363686062614 2.94654428071226 6.041790676967139 6.028412494243639 4.832806946145411 4.842303208733938 3.33039878506861 5.695055634176242 3.80333957444418 4.521748818815922 5.562790823479475 2.728667784258505 3.899434707443838 4.023775012755323 4.117308288727145 5.065395099321904 4.244554148443967 3.595932332432767 3.6158841800152 5.024914842339058 4.836518173065087 4.037174823584792 4.101976036105043 4.689900674529781 3.731701887536474 5.340229086839486 3.920985220482649 3.85121325763248 3.688456143888288 3.241301487756573 3.256905385671416 2.727232563971484 2.249492173064937 3.457298192640337 3.958819614963431 4.989853522885824 5.973425499629229 6.899183976842323 4.339700028052903 5.724679562285019 6.068262171203969 3.481035851586967 3.637008418546429 4.057868226667779 5.919631377097176 6.46639296978492 5.600202905207425 5.088949307374151 4.862366994575495 6.67560885709463 7.295658696814826 5.361331226224593 2.91832619341767 6.231759275614195 4.484363403898897 6.003683651859319 5.614991844428005 4.683074008429685 4.556138510570236 6.35434403031104 5.480012686814007 7.116137459554011 4.788975275434495 4.902036540297559 6.356199775475034 5.925694221885419 + 4.015384627124149 6.03192220213532 5.510419804108096 4.998464741496718 4.371001347870333 4.256936495832633 3.479496661442681 2.986477224068949 3.745617579552345 4.808366260313051 2.843297617739154 3.795321611956751 4.157882162991882 4.077141630984443 3.201473356784845 2.324304913571723 1.432760557586334 3.611656620729264 1.27647072023683 2.927651818579761 2.470285829193017 3.277120826496684 4.561988560461032 4.308938565238577 5.532093266010634 3.754233471168845 4.682972375579993 5.631327438619337 6.347355208601584 6.148822478391594 3.077429748944269 2.664428147647413 5.422612565969757 3.198479333173964 3.507212948730739 1.934167835279368 6.034748692049789 5.407270412300932 4.776295092438886 4.412105906691068 2.815806496873847 5.207303638341273 3.497566934930546 4.079275228572442 4.582760187204457 1.942494685981274 3.801282742296145 3.579835190891117 4.035197708224587 4.893720776683949 4.07682751156608 3.179701426391944 3.199792152877308 4.483260020911985 4.440963183922577 3.652776610055298 3.761502006453156 4.243813286590012 3.609074246500086 5.372404160236442 3.723638388269364 3.257916302228296 3.112756565803465 2.518582060423796 2.633288786426419 2.454842514060147 1.2520439724467 2.657007542156862 3.207401665311409 4.15142479215865 5.487191330677888 6.249739997088909 3.523645598674193 5.154190081877459 5.481482599228912 3.657504018108739 3.667285505157906 3.621967504688655 5.578297420662238 6.198134279452006 5.254529115463811 4.907722823102176 4.383705543996257 5.982595557551576 6.463214071873153 4.7162224041017 1.720010392244149 5.319570346714272 3.553518251383139 4.859036303419998 5.234890373594681 4.64830081693799 4.265284827113646 5.619634281159961 4.726557962603692 7.084016305459954 5.148301698340219 4.105737367488473 5.527907708408748 5.122182993890794 + 4.141813985312183 5.803509250952629 5.448931776729296 4.828545486539952 4.142166745848954 4.41791033030313 3.408220847239136 2.957162460421387 3.310963278385316 4.097870556874113 1.067910613088316 2.828647566599102 3.182445020804153 3.038139789166507 2.118152050878962 1.819519132603091 0.9306180051862611 3.022417685157961 1.145283439580453 2.486538128960092 2.046448360011709 2.863295136688976 3.82087792801758 4.046822100108898 5.616066890594084 3.617469767566945 4.460212906247762 5.245895584037498 5.669128870875284 5.480574071109004 2.412610559526911 2.73804424438822 4.328602403778859 1.831572708001659 2.383974840833616 0.8432160861029843 5.349859320763244 4.057734908509701 4.224087793391391 3.577868123870758 2.176892308196329 4.289293676034504 2.924889190472641 3.390543447083019 2.902030380102616 2.050310161829884 3.591463012266146 2.943748580776173 3.781687415055785 4.333999301255062 3.684452080657138 2.562917508366695 2.620782448933824 3.522917609663637 3.829837944318569 3.127992523859575 3.455642889133742 3.644906943532987 3.311135223946962 5.326659663081273 3.337789130531078 2.771731123566951 2.540387222285972 1.827979017132748 2.346575454619597 2.525264925316151 0.4125873022967426 1.88209549501471 2.631986271790083 3.284142304422858 4.732420921536686 5.084452807699563 2.631190757878358 4.519423190682573 4.793847953325894 3.914962059591744 3.618407985231897 3.215124185244349 5.053355888541773 5.579881327848398 4.680115496225199 4.536300304288488 3.612553310280418 4.726227509563159 5.218326288504613 3.802688497114104 0.6698190336237531 4.106219600975692 2.389080577850109 3.542780201856658 4.549670763306494 4.408197814736923 3.720325869300723 4.631542973213072 3.805769523729396 6.499966469666106 5.150871745419863 3.27361023449339 4.49360541891474 4.044776035826311 + 4.204499788869725 5.507039714640996 5.222917411272647 4.580559078553051 3.688500015050522 4.320349135632569 3.082094877201598 2.901272866489307 2.881279299945163 3.211027481756901 -0.2068142808784614 1.758909511612728 2.101037880598597 1.954308865367238 1.290268855842442 1.422545197158342 0.8240439642465844 2.374446536770392 1.140807250865691 1.921227861832449 1.620143888736493 2.518267685256433 3.029035700492386 3.654919610979903 5.48434844588337 3.34091918815102 4.024051674248767 4.670247301495692 4.724414596546922 4.609850067288789 1.756926647848559 2.819767422536643 3.586122553743735 0.8015810701567716 1.70570626429253 0.4845127631233481 4.443710236622337 2.917509720922226 3.119755677413423 2.725430639016849 1.723185232380274 3.379672534051224 2.381006829415128 2.876362830958897 1.763842753392282 2.708850087416579 3.397707859412638 2.461881890383893 3.588284052779272 3.743126056429901 3.333748577182632 2.110804571022584 2.125107623112854 2.748380367063874 3.462613039611369 2.79090527291919 3.331403258063801 3.098328510575811 2.977915690514237 5.295062318417649 2.959860332791976 2.598233005562633 2.23324313578587 1.486922723826865 2.510792438453791 2.945356536416512 -0.09381576227315236 1.307312807330618 2.483737389475209 2.753582628596632 3.920069340223563 3.827485221467214 1.950140515604289 4.0430817574088 4.259161008591036 4.220909874032259 3.692892022431352 3.039364519379887 4.54250509040412 4.780781456148816 4.082303296138889 4.206147845631449 2.88205947405595 3.356403887521537 3.962799537498086 2.993889720847164 0.1538373876264814 3.141873568980373 1.45646947386922 2.500856623964864 3.89359249651352 4.295028939381154 3.108010265501434 3.790794763339363 3.148082206971594 5.778684215747489 4.893759261371088 2.743415949205882 3.659440798684045 3.268501920931259 + 4.329877787249643 5.454344194440637 5.04334550636122 4.453248844845803 3.283031956085324 4.142312105461315 2.742956647954998 2.960424444478122 2.777041963563533 2.529482436242688 -0.4078157688745705 1.182606281065091 1.506723937221977 1.361394532384338 1.244134852474417 1.375709509712124 1.234272226815619 1.970770878819621 1.391349584233467 1.690894284849492 1.397554781684448 2.471531658782624 2.471892853187455 3.383004010879631 5.262768615728419 3.110927009562147 3.552251523295126 4.19322328452472 3.957609470199714 4.000713329977771 1.372061578678768 2.852262028129189 3.345033965468247 0.6308395795463184 1.660532866574613 1.234410644250602 3.79698742082337 2.692232553176552 1.782677290463198 2.164932999904522 1.647919166421161 2.854146985038597 2.112287379506142 2.852893111389449 1.674981251357444 3.063324421219704 3.305002695782232 2.349672482913434 3.572653988493585 3.423878604532092 3.207038985426152 2.093919192137946 1.914362424699902 2.622935207407863 3.555808957673889 2.792399370553539 3.419363661270836 2.779778975829686 2.748472044418008 5.338250884418073 2.741524536879325 2.823851866603491 2.283882748322412 1.638451049402647 2.986121163527059 3.470179882686352 -0.2583411309060466 0.9564891156228441 2.658203085467903 2.591931657232635 3.174375706490537 2.768255652088556 1.638267737624119 3.773294665537833 4.017772922856238 4.473046811709537 3.980695754406497 3.162390709474494 4.141206100968702 3.954565285757553 3.607539476633974 4.070235171594049 2.519163800173828 2.388732301364371 3.04490022265918 2.562479262355737 0.2202053414389411 2.787603491869049 1.087242384339334 2.048026827058493 3.518623722577104 4.472125432374014 2.576350001283572 3.339762288909697 2.975312710655999 5.248508673739707 4.495555541781869 2.641064660697339 3.336359110415287 3.229465357649745 + 4.627533055529057 5.924323331473715 5.09824969949841 4.595440753677394 3.167443353289855 4.059244499112538 2.612471474225458 3.229187281322083 3.176510731536837 2.329014885719516 0.626587155764355 1.478948510617556 1.785168871258975 1.539276395160869 2.080857804610787 1.780006543764557 2.087849742633239 2.007435605401497 1.970185241012587 2.04879165255079 1.488962458857714 2.85260951442433 2.360516731430835 3.431641089216896 5.065397208862123 3.068130568241031 3.184140034725715 3.960394560892382 3.566548309941936 3.842773019422566 1.340610199163166 2.751157111706107 3.315487853375998 1.361493728648838 2.114682284505079 2.756445011743608 3.660166318903634 3.282613035967898 0.7567744478595841 2.008615076775641 1.963246847598839 2.892151573746787 2.173211086806987 3.27684578536639 2.183183635839503 3.435155251045195 3.347479026567289 2.622794839476626 3.710250558961889 3.47579776399607 3.336625570705792 2.579773170761541 2.080745501443289 3.158040085818357 4.015790905330505 3.093400410883078 3.685865418913636 2.819055428397405 2.752055147810381 5.482856314167577 2.782906490291296 3.437393767972935 2.648681677223067 2.260717434935941 3.565937004281295 3.857870643232673 -0.1546751613241213 0.7556706841314735 2.854262609477701 2.619532478056499 2.519653464787552 2.012911475059809 1.703769372412353 3.59899480646709 4.073071524966508 4.5528503595242 4.434606358561041 3.514268939066824 3.858504450917735 3.243321365257771 3.326769943167164 4.184994216173209 2.765705864830579 2.251066348851964 2.682143968479522 2.603351995157936 0.6436893985699044 3.125614774413634 1.402726334215913 2.300943974387337 3.551013191501625 4.918417819646493 2.211763613626317 3.334829656647344 3.309699755543988 5.053510177664066 4.132599891026075 2.906329418262885 3.681237051046082 4.028611259065959 + 5.157356386986066 6.994688551711079 5.501468056740123 5.078840653637599 3.494423154494143 4.20784450602514 2.844194970297394 3.734511353177368 4.057179435931175 2.701571257723117 2.619725843799642 2.668811957171783 2.955105068051125 2.425740454946549 3.49527012417343 2.564659138102797 3.156256768046546 2.504451865601823 2.87058905106187 2.864435950240477 1.86727160531882 3.643463575523128 2.776137035310967 3.811273841437043 4.972055900841951 3.265859113318584 2.983677803102182 3.940324136061463 3.464849986879926 4.024497733792487 1.553338449443345 2.468173221355528 3.178434927618127 2.571918628196272 2.714232491047369 4.228966319356914 3.920883250610842 3.925860914428668 0.363576450254925 2.139745522551266 2.508884080848929 3.415308220821885 2.407645618983111 3.752287385657723 2.760563122503944 4.243046021675292 3.503177776584135 3.099370169308997 3.88036643844589 3.776637171315997 3.60443235601133 3.411971859707506 2.580513262931163 3.851196361768643 4.521172758736611 3.518327046909917 4.094413577633532 3.288079583046056 3.098106470609139 5.726114835590181 3.128053537613106 4.364409736190055 3.21972048303337 3.212024290707632 4.102381735953713 4.063858355086268 0.1530549390236047 0.6278684527976566 2.835485802571384 2.68642405002447 1.914381132773997 1.515325618616771 2.039589169435203 3.350045523757217 4.315241602891547 4.425816242771589 4.914800012719979 3.937913925455177 3.670252297728439 2.780558122077764 3.24526387579408 4.528888146900385 3.717339466691101 3.118056011159752 2.92987913827119 3.034664229617874 1.149029102070017 4.002349284589172 2.321340028636769 3.189853686228162 4.004709565322628 5.506813908639742 2.038493094938531 3.695246841587505 4.03219096347857 5.135919782456767 4.023012582013962 3.419105471003149 4.688721654400524 5.399537589721213 + 5.893256932445183 8.436834360059947 6.243459654040635 5.876732622535201 4.276065311263665 4.651382718533569 3.488649750805052 4.430395741957909 5.193116950049443 3.528503410925623 4.981191881724044 4.400805946281253 4.646315437811609 3.68763109821117 4.944468947077439 3.493001034068698 4.202702912515278 3.303293154981702 4.001109605502279 3.744899099544455 2.389435942221098 4.681850812100492 3.653914318636453 4.318088734733806 5.014226851439162 3.658558103878022 2.931283834819624 3.98863536716226 3.415156767083317 4.311145504579372 1.795077835723077 2.045826774555735 2.946724321432043 3.646414025777119 3.06459192250054 4.9234352644051 4.213493864545299 3.968854363741876 0.5048423955156665 2.29666646313035 3.031496760874916 4.13688496601776 2.606662868238857 3.869455601612955 3.150388692914951 4.401536060139344 3.691609556493188 3.470588099038167 3.942569501325124 4.088560863258976 3.80651666907977 4.284795342935212 3.251628107652095 4.012087022332594 4.693589260757449 3.833283765727629 4.628642361142738 4.188952918537325 3.860373958057096 6.044185527370985 3.75196301658567 5.485878598102772 3.882746543494477 4.275432126129999 4.486093004656141 4.207757490738913 0.6311247126877788 0.5533343432904303 2.575847176757634 2.812799621694467 1.307851962948916 1.15388534568774 2.488315570273699 2.929422793910817 4.57945349534566 4.209863446107988 5.274043858315508 4.266991179864817 3.572697224465401 2.680175118063744 3.326879244449515 5.033169583672361 5.29696831292722 4.819741673916667 3.699004530434649 3.666426557978752 1.62060239609832 5.162674702865843 3.636524994202773 4.534717638743132 4.835846723589384 6.124678245856558 2.036373492812345 4.287215044168988 4.923372961355199 5.285318771673701 4.315909144943817 4.078815376431749 6.181895623758805 6.833893834873749 + 6.710927496503245 9.784121737254281 7.170409954207571 6.860674974454014 5.363885432754614 5.356920486530726 4.47980437291335 5.207673629607598 6.20942031917366 4.512215228055538 7.017690635350391 6.064265748933394 6.230824111319862 4.881403581161976 5.890873924368577 4.226717440290372 4.992296423615631 4.131173826457143 5.202750802247465 4.281791397045936 2.860640826928829 5.710812636814808 4.809422696020192 4.65055350442713 5.172483264843322 4.124198157394858 2.945552599147049 3.928072471532687 3.200620848177778 4.530413873371572 1.874024216277803 1.602636716656377 2.85388725991092 4.097930190488711 2.86735598914521 4.675538510109789 4.221006284171608 3.475504129993647 0.9208518080214958 2.240507285068929 3.301715577924256 4.713786372423954 2.709875923167715 3.600429467993962 3.175783572757083 3.192343654029139 3.790208983961894 3.484325397679164 3.794172114007097 4.194576655021706 3.753365416739882 4.874008747542462 3.866314343351291 3.307188576169494 4.27455830122841 3.825874141073882 5.267144540731351 5.443167282808645 5.055293616238373 6.400530064023087 4.545904229705773 6.637376299497078 4.534857055521456 5.195842645552148 4.56861563708344 4.373920606015417 1.224723838105092 0.5589440237936287 2.211093198271783 3.137269242224193 0.6876185882556456 0.8090840830409434 2.906171866459772 2.398054636458255 4.71278814497964 4.108817847482186 5.42819875524458 4.391673893888765 3.60093641231424 3.007311683923604 3.517931439320364 5.603085827142081 7.27044979915695 6.877225686734732 4.807333534100167 4.293743823049681 2.126120655934585 6.389652575562536 5.123613895835206 6.144801144845587 6.00458859183891 6.766663392884766 2.167654368492549 4.99661894440851 5.688769324048735 5.232236069280589 4.958319115099471 4.781802558927552 7.817346518271734 7.830345114736401 + 7.419043062589481 10.55959915902531 8.012263730095583 7.825480923227587 6.480532727599893 6.194705001613329 5.647459426261776 5.916248099223594 6.682547228144358 5.257449902795997 8.159742375250516 6.995763557231385 7.067058128342069 5.615599878760719 6.045324275242479 4.45586467385931 5.181239751391479 4.701954831230751 6.283654126234524 4.195285429530827 3.099954995954249 6.451290772673019 5.996382388903839 4.581424475141805 5.385387899630587 4.510306771995602 2.923671122958694 3.583084833699104 2.705723756076168 4.60332198652344 1.718938960493574 1.228925248255052 2.971141112452017 3.770726033783539 2.004251408982853 3.883211627033901 3.924275273750091 3.067895926459882 1.50393941782437 1.915124942845466 3.216793564471004 4.92792467476886 2.85306597537101 3.364723204651021 2.968697169937446 1.337064576539344 3.676814131434805 3.137158356863662 3.386968081374448 3.976553534977938 3.358838057049411 4.95967548172834 4.199430410010905 2.087795473289617 3.238418706600015 3.378172221580314 5.940489375131847 6.889021990680703 6.621029935936662 6.751907581718683 5.320309271204806 7.609110729495114 5.073193119969687 5.724165640030606 4.172924909582662 4.459471705374426 1.803219570192368 0.6628685799980758 1.89281948193775 3.767655650552797 0.09571791940652474 0.4103011357910873 3.202074862581867 1.957513974355606 4.62339586746748 4.235801289086126 5.369470331385173 4.281985771080599 3.800354368686158 3.741508360765181 3.761129680940542 6.125229726538691 9.300931128270008 8.659775326559924 6.040575279435188 4.767602506439061 2.749767782328291 7.573499164060479 6.625851643450915 7.894247778574481 7.509848340469034 7.550177809102934 2.401898445228653 5.762422618149685 6.017554239389028 4.763483297575021 5.671582975753836 5.38390395436511 9.194102078840451 8.174106980161545 + 7.827475455090052 10.52242710310247 8.459917293761464 8.542060696083354 7.302336630324135 6.964645321293574 6.754221776223858 6.395272580344681 6.262931206241774 5.380003429119824 8.139839099564369 6.715143684258919 6.759833229653225 5.659865737578983 5.497090500601402 4.047511603154533 4.43948843863034 4.811646871524687 7.062100972817007 3.355244448936844 2.981500903356277 6.673077014776027 6.974596906593433 4.069990836647417 5.56675782077582 4.684189506586335 2.782595117907476 2.794283671071867 1.892867864241737 4.452983290523576 1.395542665024266 0.8749990889068329 3.064127084645225 2.848730898376235 0.5831409473477791 3.089988681141755 3.573423803807614 3.269274531532437 2.260485897077801 1.492931972331519 2.840859472777993 4.792168255840551 3.209199507283529 3.660000726128895 3.016949571893727 -0.4709309749737415 3.280098349705532 2.643590856456679 2.716124226992576 3.422209314586041 2.67494208057937 4.488083830497683 4.091309990197033 1.16983832742801 1.800198497630902 2.51768859047047 6.513601889935217 8.296042421181482 8.407525102259598 7.051425031653565 5.840715983101036 8.171213896028007 5.385863930328753 5.676910771643406 3.22245876715624 4.219954237969773 2.170759319842318 0.8318985960906389 1.688122005635364 4.685521879060047 -0.3892008458024065 -0.0553534775172011 3.344252463029989 1.839572005531522 4.296582788869273 4.488203800016954 5.124152556040116 3.965185595373214 4.171291195655158 4.754356809724101 3.999216367854928 6.473087735846235 11.02751085295995 9.609147107699037 7.202405899745855 5.018755638013829 3.411055117569305 8.68684989648672 8.085140808313554 9.742311833769236 9.378841053827273 8.648354761801329 2.730199064179033 6.569099795051898 5.695143381923117 3.825041968002324 6.087817796862254 5.740024993315359 10.03040705518095 8.052860936604425 + + +# name: Eft_ep +# type: matrix +# rows: 400 +# columns: 1 + -5.638941906493923 + -6.383178186899591 + -6.796141332366815 + -6.793485903605318 + -6.379238281596272 + -5.660153101588693 + -4.823819570687822 + -4.082509362754914 + -3.602200373704587 + -3.44669407255035 + -3.562544121606413 + -3.811798772041812 + -4.035811483729113 + -4.118304347494236 + -4.018574368681726 + -3.764298121140971 + -3.41594594311414 + -3.027619104975618 + -2.625762623077971 + -2.212185049629735 + -5.786833672058304 + -6.520620093811485 + -6.899047631595998 + -6.836554485660955 + -6.341886196184905 + -5.53258975843448 + -4.610988816679662 + -3.803914451892505 + -3.286951096517124 + -3.125063623135888 + -3.25700972932086 + -3.531041433652948 + -3.774055644644384 + -3.860112910792994 + -3.746875225760626 + -3.468175736224894 + -3.095155237698797 + -2.692528652542913 + -2.293510050875015 + -1.901193530830077 + -5.916340954029759 + -6.635343137785923 + -6.97497876272941 + -6.848810673170973 + -6.270600543993655 + -5.368881466332437 + -4.360772725671795 + -3.487600372634225 + -2.934396269723081 + -2.767068572875151 + -2.916320523697552 + -3.216328564027468 + -3.479265972858452 + -3.569340697830529 + -3.442547312424746 + -3.139062037933737 + -2.741091147748378 + -2.324464753917569 + -1.929608218212218 + -1.561122035620871 + -6.026134405539139 + -6.726127251886379 + -7.023045533561291 + -6.829927634570489 + -6.16580401530162 + -5.170288304287104 + -4.075222434904271 + -3.136231933821631 + -2.547552611847046 + -2.375809034549854 + -2.543465359361035 + -2.870468629806721 + -3.154128636428188 + -3.248689165964345 + -3.108449450272521 + -2.780050246046989 + -2.357056772249623 + -1.926821014320067 + -1.537367531254147 + -1.195022636640886 + -6.115086304379609 + -6.792018452594023 + -7.042697217988537 + -6.779992888481194 + -6.02840690045816 + -4.938621492221735 + -3.756987287187874 + -2.753097815249136 + -2.130063391062621 + -1.954994095038646 + -2.142011269189273 + -2.496814243461873 + -2.801847011259709 + -2.90136461492902 + -2.747949452498098 + -2.394758630469616 + -1.946898351744397 + -1.503542400819479 + -1.120638179077736 + -0.806451064037444 + -6.182289992830119 + -6.832345835178671 + -7.033732482821924 + -6.69950943056486 + -5.85979545443279 + -4.676217673996495 + -3.409275891114818 + -2.342061351855945 + -1.686143176399055 + -1.50888479884194 + -1.716047678116933 + -2.099208554455927 + -2.42608919726435 + -2.531024627727245 + -2.364867403020879 + -1.987269773646095 + -1.514941416045121 + -1.059060722727033 + -0.6837481778495021 + -0.3994103977348666 + -6.227075307428764 + -6.846733083343158 + -6.996303096119211 + -6.589387749807683 + -5.661809257555872 + -4.385900503892452 + -3.035803201583971 + -1.907496630806302 + -1.220507841020745 + -1.04222290839176 + -1.270117307919735 + -1.6819193448209 + -2.030924046877922 + -2.141713402817813 + -1.963407711637089 + -1.562058119207737 + -1.065914620034484 + -0.5982174154705517 + -0.2314288171096447 + 0.02171712231991298 + -6.249019629284345 + -6.835104212032375 + -6.930910313052188 + -6.45092889649896 + -5.436708069203105 + -4.070930394535876 + -2.640724813142584 + -1.454211351832965 + -0.7382914196584272 + -0.5601470910214768 + -0.8091354001787896 + -1.249562414714523 + -1.620747279315978 + -1.737787593749413 + -1.548081652327457 + -1.123907618543525 + -0.6048631506146954 + -0.1261755095841666 + 0.2312707028469041 + 0.4522485562702078 + -6.247954301642548 + -6.797683422986283 + -6.838394048954592 + -6.285799036144689 + -5.187129001832114 + -3.73494366729916 + -2.228560080827414 + -0.9873583435844717 + -0.2449518634050427 + -0.06809860276881063 + -0.3382992710798787 + -0.8070161929024375 + -1.200199573402081 + -1.323834577090767 + -1.123622399470384 + -0.6778216115455236 + -0.1370539348980596 + 0.3516769691835649 + 0.6990772861942636 + 0.8872870321244906 + -6.223966284970764 + -6.734989116498843 + -6.719915158833793 + -6.095996181453 + -4.916035147206469 + -3.381882690266776 + -1.80410605481154 + -0.5123380118257927 + 0.2538318880421275 + 0.4282811061580396 + 0.1370094665750043 + -0.3593297931339288 + -0.7740787883237914 + -0.9045853095209002 + -0.694894816211493 + -0.2289273305232197 + 0.3321248474720208 + 0.8298296321618761 + 1.166594155812637 + 1.321814570444796 + -6.177395046485868 + -6.647822263995321 + -6.576931340402099 + -5.883810028384612 + -4.626657052757208 + -3.01591887999084 + -1.372344520963616 + -0.03469430331210033 + 0.7522687996276962 + 0.9232581650210774 + 0.6113274348198474 + 0.08837305109471449 + -0.3472486452203349 + -0.4848241010161519 + -0.2668024113826776 + 0.2176224128320322 + 0.797267257497827 + 1.30275565139365 + 1.628404598142484 + 1.750788502282882 + -6.108824806436872 + -6.537249498668997 + -6.411167356261342 + -5.651776023114659 + -4.322428663360979 + -2.641370669703893 + -0.9383446668157922 + 0.4399930108576646 + 1.244567677793804 + 1.411116553218865 + 1.07921403977721 + 0.5309916125026204 + 0.0754536939960746 + -0.06929771688260478 + 0.1558060400666543 + 0.6567477152290588 + 1.253053310521571 + 1.76501812320939 + 2.079176446872467 + 2.169238887825766 + -6.019072383279783 + -6.404581420178932 + -6.224580423788594 + -5.402624947069651 + -4.006919503918587 + -2.262618699383123 + -0.5071640321394686 + 0.9062168056253632 + 1.72504912506352 + 1.886267902142227 + 1.535355240634677 + 0.963544755200975 + 0.4893086944154867 + 0.3373737759004259 + 0.5682277257875299 + 1.083537611158272 + 1.694350127255471 + 2.211374008782002 + 2.513764486895365 + 2.572364303954978 + -5.909170990168746 + -6.25134672959023 + -6.019321743206117 + -5.13922942126536 + -3.683764975071959 + -1.884020556158632 + -0.08375044969494061 + 1.358648878535708 + 2.188254487503077 + 2.343357881088461 + 1.974663774046391 + 1.381263926054744 + 0.8898017703542874 + 0.7307820823183351 + 0.9659924792463013 + 1.493341110274193 + 2.116307836743032 + 2.636872876085175 + 2.927308030824043 + 2.955623420989507 + -5.780350432386306 + -6.079262908473757 + -5.797695221324756 + -4.864548795218878 + -3.356596664974824 + -1.509827384572267 + 0.3271523667465659 + 1.792241166935088 + 2.629048876127021 + 2.777366340303333 + 2.392373197839014 + 1.779680134159902 + 1.272704614476288 + 1.106809495321108 + 1.344942696054455 + 1.881850894327108 + 2.514447735014745 + 3.036947850161588 + 3.315321085836443 + 3.314819930071278 + -5.63401423651238 + -5.890204228508764 + -5.562114498139732 + -4.581573898238807 + -3.028974543927808 + -1.144104596225975 + 0.721093070917431 + 2.202319221402813 + 3.042715549560719 + 3.183698600712884 + 2.784123334925782 + 2.154702715706282 + 1.634148504635893 + 1.461699505795977 + 1.701304507864462 + 2.245177587809429 + 2.884740475475763 + 3.407496448272385 + 3.673772781625038 + 3.646178607122842 + -5.471714305030253 + -5.686167923281207 + -5.315059395003501 + -4.293273092555165 + -2.704322808393517 + -0.7906587418864488 + 1.093992479812409 + 2.584665523452246 + 3.425039243005615 + 3.558265583431113 + 3.146034994758651 + 2.502687967913395 + 1.970687841935541 + 1.792117548292425 + 2.031748545979389 + 2.579912844946283 + 3.223672410709072 + 3.744949321850376 + 3.999156060170963 + 3.946410597630987 + -5.295123733216855 + -5.469239371601255 + -5.059032877335913 + -4.002540981345225 + -2.38587098166407 + -0.4529723739059959 + 1.442212930338738 + 2.935590587570579 + 3.772376405211396 + 3.897550850021095 + 3.474772213079708 + 2.820496080978662 + 2.279352508384772 + 2.095200563104518 + 2.333438983289062 + 2.883179876298088 + 3.528298606009525 + 4.046325333891176 + 4.288543021146241 + 4.212766366337534 + -5.106008447876481 + -5.241557132083896 + -4.796519564058558 + -3.712150995022341 + -2.076601667830749 + -0.1341484333560674 + 1.762615576414033 + 3.251990204477409 + 4.081710745121709 + 4.198663060987844 + 3.767590666147674 + 3.105535186910549 + 2.557688005724794 + 2.36859442865025 + 2.604069933569149 + 3.152670455162645 + 3.796281486017615 + 4.309271851600254 + 4.539625756898745 + 4.443075162505909 + -4.90619832987835 + -5.005278633476316 + -4.529946723838901 + -3.424712912588829 + -1.779206103350824 + 0.1631346426656975 + 2.052604419498516 + 3.531387646790295 + 4.350692974979032 + 4.45937283745815 + 4.022371366110447 + 3.355791762863102 + 2.80378273350877 + 2.610478710984291 + 2.841888695863881 + 3.386667880482058 + 4.025914539554678 + 4.532089611743438 + 4.750741980367449 + 4.635770288306867 + + +# name: Eft_la +# type: matrix +# rows: 400 +# columns: 1 + -3.751860150498962 + -4.535507424479757 + -5.109081872011389 + -5.356124338804887 + -5.230294390288754 + -4.78615014382611 + -4.173975891030842 + -3.59273169128575 + -3.216584954064321 + -3.127618518009721 + -3.2881553329996 + -3.567293666247265 + -3.807257130929255 + -3.893664545825704 + -3.793720563156509 + -3.54755606098258 + -3.226116839456333 + -2.885729530103367 + -2.545505938908964 + -2.194633320525931 + -3.870734238655048 + -4.656279600141005 + -5.210984840290884 + -5.414469082322379 + -5.222109872850398 + -4.696967029431549 + -4.003266148364538 + -3.355387080834961 + -2.939033756971785 + -2.839437727588395 + -3.012300358782087 + -3.313060750227618 + -3.569073571073082 + -3.656133494949358 + -3.540404896042721 + -3.269364631231094 + -2.925687624776379 + -2.57645504481383 + -2.246452083210785 + -1.924170612209215 + -3.977571607662209 + -4.760797742549613 + -5.292073453550223 + -5.447477339301328 + -5.184516033448894 + -4.575102021365061 + -3.797620605747882 + -3.081925826649137 + -2.625159160113524 + -2.515482777841864 + -2.701677113778147 + -3.025179851907797 + -3.298145460848743 + -3.38630661528157 + -3.254739568862908 + -2.958473195138168 + -2.592348824597432 + -2.234742190557701 + -1.916559899156465 + -1.62577759850857 + -4.071237361529588 + -4.84790245699998 + -5.351361332142118 + -5.454572770836314 + -5.117569804613479 + -4.421390107192627 + -3.55866654621685 + -2.774636885034585 + -2.27767314569502 + -2.158621381017849 + -2.359104500438255 + -2.706343032278084 + -2.997093606047715 + -3.086870705514996 + -2.939611358649843 + -2.618022153206549 + -2.229432552461609 + -1.863954730733004 + -1.559021715708983 + -1.302292762322771 + -4.150730695446219 + -4.916632085948734 + -5.388137279250346 + -5.435541117131626 + -5.02177930291574 + -4.237199542468932 + -3.288630069532192 + -2.436449450701254 + -1.899941745795843 + -1.772363611780342 + -1.988014405851679 + -2.359820071283714 + -2.669087815261086 + -2.76104837175206 + -2.598447339857889 + -2.251708653091999 + -1.840844339398346 + -1.468033235088068 + -1.177586421068137 + -0.9570635996081114 + -4.215202877473426 + -4.966240765049463 + -5.401980026982153 + -5.390537578095778 + -4.898100016119465 + -4.024414334250578 + -2.990304554111224 + -2.070889501805762 + -1.495933561318926 + -1.360806730759336 + -1.592396076566244 + -1.989403536124317 + -2.317791665237166 + -2.412540319081537 + -2.235152837880921 + -1.863719923106416 + -1.430993640085844 + -1.051426183015364 + -0.7764951445044244 + -0.5938902519817406 + -4.263972412066376 + -4.996212122378093 + -5.392766677618056 + -5.320085626112114 + -4.747920032043842 + -3.785403511105047 + -2.667004076278039 + -1.682020147871906 + -1.070151734952112 + -0.9285638759555681 + -1.176725311662373 + -1.599339796929892 + -1.947294138348789 + -2.045454955691809 + -1.85403657585774 + -1.458653279327523 + -1.004710427454323 + -0.6190068902424812 + -0.3604031132390834 + -0.2169563933562695 + -4.296537003038037 + -5.006268261057595 + -5.360674591485423 + -5.225067218076869 + -4.57303458896725 + -3.52297783449139 + -2.322502822618041 + -1.274367141759796 + -0.6275509649254016 + -0.4806783254174387 + -0.7458802145290038 + -1.194247742053634 + -1.562029924049457 + -1.664227194864312 + -1.459725033770742 + -1.041424952506046 + -0.5671500851379889 + -0.1759784244158414 + 0.06571031301915749 + 0.1692508875841331 + -4.312582022276901 + -4.996373804415977 + -5.306176675926223 + -5.106704651648924 + -4.375610584471514 + -3.240335037981157 + -1.960962022478904 + -0.8528314440312301 + -0.1734416810509305 + -0.02252554972263288 + -0.3050457203749857 + -0.7790273770481267 + -1.166690570917341 + -1.273528715866908 + -1.057068416791551 + -0.617170277500395 + -0.1236892270103428 + 0.2722308905191367 + 0.4966409978250422 + 0.5600300668113145 + -4.311985288523444 + -4.966734928844484 + -5.230030234538066 + -4.966534581101826 + -4.158142016884866 + -2.940995078183459 + -1.586846370319489 + -0.4225911945868348 + 0.2866160298207374 + 0.4402942854152023 + 0.1403904818651389 + -0.3587608474303319 + -0.7661289929023566 + -0.8781722388741227 + -0.6510409209277929 + -0.1911380927750892 + 0.3201846008579055 + 0.7200784383225084 + 0.9270659969647211 + 0.9505605570579236 + -4.294818064169052 + -4.917793457031648 + -5.133259734069015 + -4.80637496005012 + -3.923397636677151 + -2.628727227293179 + -1.20483228248391 + 0.01100416818582461 + 0.746925785650028 + 0.9020703571526654 + 0.5849477053870329 + 0.06139130960018546 + -0.3652600593666816 + -0.483012569211287 + -0.2466381759959194 + 0.2314176023992136 + 0.7589861625159016 + 1.162021563897362 + 1.351653118442302 + 1.336001764425945 + -4.261342283547383 + -4.850216227554392 + -5.017134030149421 + -4.628285901298595 + -3.674362341476644 + -2.307471116971668 + -0.8197106234000879 + 0.4425446134772997 + 1.201772325289439 + 1.357098514252346 + 1.023164568197173 + 0.4762957168563573 + 0.03103987622210613 + -0.09284726398257392 + 0.151225169469736 + 0.6453455987848506 + 1.187345444962828 + 1.592631818229362 + 1.765170917027126 + 1.711592981296627 + -4.212004129696677 + -4.764880090510224 + -4.883138755268108 + -4.434525629077051 + -3.414174047086916 + -1.981254044713279 + -0.4362867295607666 + 0.866671846149379 + 1.645539594400568 + 1.799798525059674 + 1.449710623384758 + 0.8809504912947077 + 0.4180316343588393 + 0.2876802339282988 + 0.5378147824276041 + 1.045701931798626 + 1.60011698913932 + 2.006705900412886 + 2.162595949533549 + 2.072751232506877 + -4.147424174396126 + -4.662852998052795 + -4.73294470686657 + -4.227502838751134 + -3.146057899917257 + -1.654106968487647 + -0.05928064736564997 + 1.2781899967932 + 2.07282609073 + 2.224827876109806 + 1.859494128067625 + 1.270585397451433 + 0.7912072657355823 + 0.654172262425101 + 0.9086700938510794 + 1.427847880452826 + 1.992482528396289 + 2.39937012786519 + 2.53921421730986 + 2.415164263839724 + -4.06838438505191 + -4.545371759173004 + -4.568373175344594 + -4.009726868550873 + -2.873259758552959 + -1.329981638759527 + 0.3067695205012968 + 1.672171478243737 + 2.478554158673152 + 2.627188879821656 + 2.247762909327665 + 1.640755022879697 + 1.146376904181201 + 1.002560886962674 + 1.259689292489628 + 1.787538803510628 + 2.360044079169263 + 2.766175507564907 + 2.890713935733439 + 2.734876037569693 + -3.975812378819567 + -4.413817106561472 + -4.391359217821211 + -3.783757124186705 + -2.598980861981586 + -1.012671248638033 + 0.6575983947352131 + 2.044054995999121 + 2.858070145320807 + 3.002326095293061 + 2.610195542719348 + 1.987422444159987 + 1.47974609400223 + 1.32918190748577 + 1.587203620807902 + 2.121001453800066 + 2.698904985556802 + 3.103180827954834 + 3.213267087260522 + 3.028362371347515 + -3.870763366856536 + -4.269686777664365 + -4.203913912100465 + -3.552153180050797 + -2.326315520858282 + -0.7057368267888071 + 0.9892956904408257 + 2.389732992942609 + 3.20723266430369 + 3.346211419066898 + 2.942980414544203 + 2.30703120570714 + 1.787981627662287 + 1.630837080391736 + 1.888039131219606 + 2.424997839289184 + 3.005736861998577 + 3.407021627405507 + 3.503597620493936 + 3.292594711869136 + -3.754400278128089 + -4.114567340948647 + -4.008086616513786 + -3.317426912128541 + -2.058193520837782 + -0.4124413616513194 + 1.298377966321307 + 2.7056261983487 + 3.522486644757754 + 3.655414647269084 + 3.242880677074525 + 2.596563859092746 + 2.06826435064109 + 1.904843142710461 + 2.159564518848262 + 2.696874187608602 + 3.277830886332024 + 3.674963401362875 + 3.75903463481651 + 3.525090457913923 + -3.627972581761782 + -3.950105501924587 + -3.805928216888675 + -3.081997902123142 + -1.797328721135547 + -0.135693340766716 + 1.58184793622235 + 2.98874341993438 + 3.800921351512171 + 3.927157826950413 + 3.50728360696574 + 2.853585789041754 + 2.318327855406417 + 2.149066696393479 + 2.399724141824974 + 2.934594097568958 + 3.51313244689451 + 3.904937964343586 + 3.977549417528295 + 3.723948719912197 + -3.49279433929143 + -3.777979602663821 + -3.599456265089931 + -2.848153195930826 + -1.546175077189077 + 0.1219989701666184 + 1.837239982604062 + 3.23672524490721 + 4.040311126864774 + 4.159352280523599 + 3.734233419509731 + 3.076273563059431 + 2.536482475461833 + 2.361944499369852 + 2.607055850439085 + 3.136755504465433 + 3.710258718417759 + 4.095562461068154 + 4.15777575546096 + 3.8878709049003 + + +# name: Varfs_mc +# type: matrix +# rows: 400 +# columns: 100 + 0.03227203427623593 0.08533184779943781 0.02601597898920716 0.02398274602205674 0.02673778319766029 0.01873620095283002 0.02372842888682669 0.009899699240634163 0.03335810951176654 0.02043698802746974 0.03920295355648307 0.04679090433955224 0.05099978873731814 0.03979302040511712 0.11599577008929 0.06973380816960528 0.2734805858824441 0.01756829734996757 0.008120572975625961 0.06300830049555728 0.02028928661527019 0.01232677732601672 0.005288726280841871 0.01413847778208677 0.003616788832886186 0.004665928579662193 0.004342331969127144 0.03573949508646734 0.02551135473934352 0.03422592770282407 0.01971851306920058 0.103724770932855 0.132643456352751 0.06331766920782833 0.1397045901345049 0.08406264251553353 0.1007839037352554 0.1593731489300865 0.4083863861337278 0.05476797746387874 0.01252793689838327 0.01791367945998701 0.07627844062918321 0.149834817249797 0.2814222505942663 1.255277385748308 0.03343299253480936 0.05990682768024591 0.01759636721941327 0.02948800284403497 0.01866577318639173 0.01841213298492761 0.005915199172779495 0.03135324628381397 0.01309637195004143 0.01496882645010089 0.00948633942277155 0.003425026572728029 0.002264016091530152 0.001197189238240526 0.003829270810761898 0.00970099129809654 0.01424406058108474 0.02384870895021862 0.01456045394319716 0.01998040801413126 0.02870882688160847 0.02520959140912282 0.03976643952141501 0.03621825740265194 0.008671928247807159 0.01371377343141944 0.01084696372122096 0.03578181954762982 0.005735437885530104 0.05471820451891318 0.01112761531370765 0.007057389885311238 0.0098790289285553 0.01591070888556345 0.005395534226829923 0.012180334111207 0.01399008638454191 0.09623267167482652 0.02237643268688316 0.01450780885184244 0.1209826711314186 0.02340705220767347 0.01455251725743523 0.01639137558073855 0.01127997576207918 0.02423902783525023 0.004158944582414392 0.01269937978032942 0.03859318314986382 0.03536127446806603 0.04706525816940399 0.05830117500899945 0.1602714989839242 0.0868673097493371 + 0.004396374354620036 0.009098436507386509 0.003187214742311539 0.003083628455868848 0.003400767034165142 0.002583892385970898 0.003520728237560888 0.001457443005449477 0.004100242272443211 0.002637002280522438 0.003886231242347549 0.005451180242680209 0.005730341866190258 0.004864182553848906 0.01391573709605609 0.009979381099995521 0.03349813341869989 0.002212160949580877 0.00123083534515267 0.006521647441033451 0.002469620887985968 0.001531860645915373 0.0006974258138505718 0.001532865372240622 0.0004976942076666546 0.0005807372367527819 0.0005538686161372652 0.003541250425520559 0.00274329048656341 0.003621635519586164 0.002512749570129813 0.01203709884544679 0.01396003417315939 0.006508988157836626 0.01508821208125788 0.008996772021902188 0.01083617163804007 0.0150373786757676 0.05278389380858073 0.006537329987423846 0.001459947300158859 0.001964080275211444 0.008531515616555296 0.01752576516880389 0.03112489639514759 0.1614679319430934 0.004155761895725973 0.00614498652333495 0.002170635179354008 0.003317547738125981 0.00224788069703763 0.002204923984866269 0.000743117482819855 0.003048953038145896 0.001410433017213109 0.001568676833503702 0.001063043092507598 0.000438444457969922 0.0003064439411417652 0.0001897925054663574 0.0004733259080893504 0.001196235033287252 0.001717530180030735 0.002749594101061348 0.001553236730405416 0.002140079918252269 0.00336544823488083 0.002875509127008513 0.004051064538991511 0.00351976882118521 0.001040975290408142 0.00146186610732002 0.001258977485164792 0.003862556679194995 0.0007469044901604605 0.005611575011094772 0.001316413514238945 0.0008826228164728889 0.001225131606254592 0.00195499598211768 0.0007184888738382966 0.001493001333230382 0.001859215712187279 0.01069640998396437 0.002870226099076945 0.00188351586920632 0.01547342015684094 0.002870652948899988 0.001908261736780048 0.002119082572193065 0.001500279716765363 0.00289338623913693 0.0005714159926384355 0.001423638479693068 0.003778746185808757 0.003548699255006227 0.005205762975904804 0.006325105514893181 0.01600821680938225 0.00874380445902645 + 0.0003829766643477228 0.0004654077933139433 0.0002342748384052129 0.0002547952837801404 0.0002720008303356281 0.0002535986199347917 0.0003972438717738669 0.0001555884518893436 0.0003032642224951587 0.0002212614108714206 0.0001762251144441507 0.0003339470487588869 0.0003102067802203123 0.000303287841033395 0.0007490988531895226 0.000896543988746501 0.0013836097721871 0.0001465729070879718 0.0001290315268054343 0.0002787887847794934 0.0001582658603958009 0.0001060360642917146 5.757902299663442e-05 7.439546031662303e-05 4.630107336822675e-05 4.434104545936179e-05 4.443412828436522e-05 0.0001451004054757732 0.0001348931395028785 0.0001651982746153635 0.0001836721324437462 0.0005984956747813186 0.0005094318770204609 0.0002423353988678656 0.0005952250810317139 0.0003842647932295051 0.0004676970515369305 0.0004398315903202388 0.002636916708766535 0.0003943207642400637 8.768063476338739e-05 0.0001018795982581366 0.0003778824516587065 0.0007544344181784624 0.0009452791835080632 0.003882477619910674 0.0002645036475392715 0.0002193162467616361 0.0001385466239867128 0.0001678642116438311 0.0001398088625599314 0.000139030020942954 5.329110596363762e-05 0.0001050677155269852 6.653075600482339e-05 7.07294480832843e-05 6.086785676728823e-05 3.557175878654562e-05 2.75992230740485e-05 2.228171742046925e-05 3.394470427764418e-05 8.566534082987687e-05 0.0001174920764697163 0.0001656816799879834 7.091979648876645e-05 0.0001039631488630732 0.0002022531276821837 0.0001688579429597326 0.0001814063032341551 0.0001459429021792857 7.412836365006115e-05 8.27706185475563e-05 8.27761151924733e-05 0.0001958596239646226 5.98250957501989e-05 0.0002333857144627416 8.434045914285093e-05 6.456234821072826e-05 8.799020056571294e-05 0.0001351314341953014 5.868113576390499e-05 0.0001027279756833366 0.0001545679242838105 0.0005367400384344023 0.0002171642402792884 0.0001450118485983865 0.001026365158473652 0.0002004234453565346 0.0001623858528461142 0.0001780040545327211 0.0001324142805003703 0.000206673998903284 5.316415771972061e-05 8.650228973294816e-05 0.0001572879829652152 0.000155833779992065 0.0002574810871500688 0.0002935158834596052 0.0005288073218601141 0.0003234037518176081 + 2.515268969105477e-05 2.23866359050362e-05 1.429908756733766e-05 1.648355866734619e-05 1.723799529429471e-05 1.772432410973579e-05 2.891897527490528e-05 1.163538787807283e-05 1.829271080566741e-05 1.453272011531226e-05 8.425436377024198e-06 1.780735325240812e-05 1.53254011436843e-05 1.639288801236205e-05 3.892732239485497e-05 6.124293109621703e-05 5.747645700893145e-05 8.76680177341882e-06 9.880668656592206e-06 1.200145661783836e-05 9.206571419895226e-06 6.89334300929545e-06 4.74580235021449e-06 4.400529309833701e-06 4.279062650880405e-06 3.918389026580371e-06 3.988927367970518e-06 6.781814796852359e-06 7.031912801380713e-06 7.939691357705669e-06 1.134784083589579e-05 2.891566046692162e-05 1.971592715399595e-05 9.786410872791862e-06 2.416772000479739e-05 1.65955962572184e-05 2.030185016366204e-05 1.49371381041874e-05 0.0001311719430070468 2.104300342864462e-05 5.530974011236367e-06 5.74538534436897e-06 1.670323329960866e-05 3.284856275520553e-05 3.361144501567992e-05 0.0001261881230369966 1.450342687014938e-05 8.777664655568174e-06 8.206719579462174e-06 8.44906043973026e-06 8.168485699400208e-06 8.203907079007422e-06 4.284287548728116e-06 4.590730956266498e-06 4.046961322501375e-06 4.110123203560079e-06 4.245272762659624e-06 3.52278316029242e-06 3.208027152368231e-06 3.125425365624324e-06 3.301498516350421e-06 5.912614557956886e-06 7.43710305073364e-06 9.28808938738257e-06 4.130568946436597e-06 5.631967855634912e-06 1.095674247508782e-05 9.297942924035851e-06 8.515176951107151e-06 6.873909590865424e-06 5.308347098775812e-06 5.185275142594037e-06 5.545955346519804e-06 9.657917537708727e-06 4.812571912538033e-06 1.003283737688321e-05 5.552265410102564e-06 4.882785784587895e-06 6.043528944843501e-06 8.421327251539878e-06 4.789629304724485e-06 6.693821983816406e-06 1.042579000554156e-05 2.58999007698435e-05 1.348132338208075e-05 9.480315007692752e-06 6.137440499998092e-05 1.198716820027812e-05 1.097251765713736e-05 1.185608053333453e-05 9.240546262390126e-06 1.255248619713711e-05 4.666213158088794e-06 5.522372489963345e-06 7.330326987187163e-06 7.477258044730206e-06 1.212192939448187e-05 1.329520635451331e-05 1.924615799708818e-05 1.276040086040098e-05 + 5.371367524986681e-06 5.498845141005404e-06 3.633033372807404e-06 3.911760245500773e-06 4.059346551343879e-06 3.991883914977734e-06 5.614612035742539e-06 3.063029382133209e-06 4.287632080490766e-06 3.587971050933447e-06 2.832507860262012e-06 4.456811844022468e-06 4.140095668958566e-06 4.277344997305477e-06 9.108785333111769e-06 1.166704791977224e-05 1.616344851562701e-05 2.824540498380657e-06 2.839079446204096e-06 3.65310195959978e-06 2.896042673228294e-06 2.446700268166069e-06 2.087749596313415e-06 2.08031353921001e-06 2.008934870900703e-06 1.965370600487404e-06 1.973982065806013e-06 2.567980665446612e-06 2.575763478063209e-06 2.792899916670422e-06 3.202810557212388e-06 7.185660791719783e-06 5.619110714505382e-06 3.286786970591038e-06 6.567981452931804e-06 4.664524713149376e-06 5.457367116434853e-06 4.568331217313926e-06 3.210797347819039e-05 5.176193912603821e-06 2.252456500428934e-06 2.317163261267297e-06 4.719142639331153e-06 8.718653225159301e-06 9.827148542029818e-06 3.178202996600987e-05 3.919761612181105e-06 3.085294521198989e-06 2.730734188105544e-06 2.874791141138644e-06 2.719292123032346e-06 2.707069338470092e-06 2.03373171103749e-06 2.12730088477997e-06 2.018162387429356e-06 2.028668767195541e-06 2.035702209468582e-06 1.903913769751853e-06 1.847487936856851e-06 1.83098569550566e-06 1.871115259177714e-06 2.272280195114718e-06 2.517016127967509e-06 2.902670694027165e-06 2.034720630206266e-06 2.309752744622529e-06 3.239826433798498e-06 2.917390816037368e-06 2.888723649618896e-06 2.568242003064825e-06 2.171968745301456e-06 2.174293399548333e-06 2.219455836893758e-06 3.067328243844258e-06 2.100223731815731e-06 3.262787775071274e-06 2.239488676281098e-06 2.118975285014812e-06 2.293757258797768e-06 2.696068573726507e-06 2.100376756075661e-06 2.407563830075787e-06 2.973413533169378e-06 6.382957089101637e-06 3.535261566156578e-06 2.853476843256431e-06 1.275042627923995e-05 3.309782115934468e-06 3.022001081376402e-06 3.159885039849541e-06 2.719199898137958e-06 3.338607172054253e-06 2.061347103676781e-06 2.227615183869602e-06 2.664247965356026e-06 2.680239035157683e-06 3.609244014768365e-06 3.890491043989641e-06 5.554689767706122e-06 3.917857988255946e-06 + 2.101818916955267e-05 1.811463019407711e-05 1.213795886201297e-05 1.397081203435846e-05 1.447889925998425e-05 1.554141526582953e-05 2.615324605415026e-05 1.080834404376674e-05 1.5142948598168e-05 1.251790665435237e-05 7.184816738003974e-06 1.474529128131508e-05 1.292823332477155e-05 1.384791398173491e-05 3.14930247071743e-05 5.083094639957153e-05 5.144247377941724e-05 7.621514846789523e-06 9.005266905504072e-06 1.03343743127482e-05 7.956790337715347e-06 5.822668665445008e-06 4.069267898643147e-06 3.76144986091731e-06 3.712809601097433e-06 3.306127425162231e-06 3.38959447532261e-06 5.936190191846435e-06 6.099207269016915e-06 6.987104494982077e-06 9.814613711967013e-06 2.364347276895273e-05 1.646910122410361e-05 8.657756472629785e-06 2.002896889230499e-05 1.40113276749787e-05 1.690074820359655e-05 1.23019438156291e-05 0.000118057978930608 1.738013249052983e-05 4.724888619023204e-06 4.957407959693683e-06 1.422005366968904e-05 2.741709517195545e-05 2.786515576591597e-05 0.0001102297369666161 1.239615566461794e-05 7.855141511470265e-06 7.108105341657733e-06 7.446631283158922e-06 7.035721107939708e-06 7.021992633582386e-06 3.657220300823383e-06 3.907380705214791e-06 3.407363841745337e-06 3.46145304419565e-06 3.593348090191739e-06 2.949434403376472e-06 2.696938537383176e-06 2.686670100615629e-06 2.741495052305254e-06 4.976448327198568e-06 6.238504568045755e-06 7.941770668651316e-06 3.49046150560639e-06 4.890270798085794e-06 9.440925452963711e-06 7.956501740125077e-06 7.393892104801125e-06 5.951594467035193e-06 4.491833109909749e-06 4.391788877455838e-06 4.673995775306139e-06 8.34295799023721e-06 4.119329922502857e-06 8.788288514693932e-06 4.710518791029017e-06 4.168504084134383e-06 5.084484325124095e-06 7.170033356374006e-06 4.106361416233995e-06 5.629145292118665e-06 9.10905156104036e-06 2.104214512854696e-05 1.15495438457458e-05 8.207827448813987e-06 4.974119934431087e-05 1.028872233632683e-05 9.621765848066843e-06 1.03711810055529e-05 8.075024112486062e-06 1.072855178563259e-05 4.043251379926005e-06 4.663164020257682e-06 6.362082018540605e-06 6.474865017480624e-06 1.04675031558088e-05 1.140516447506457e-05 1.586895129079835e-05 1.090438561845986e-05 + 5.497163794387916e-05 4.519927641410959e-05 3.08218429978524e-05 3.601350438486861e-05 3.728457069485103e-05 4.054818373333546e-05 6.943970373640695e-05 2.794586987420189e-05 3.888069417712359e-05 3.216134574302032e-05 1.591986138294033e-05 3.696063989622189e-05 3.143787003523357e-05 3.42580799266301e-05 7.799019322085599e-05 0.0001353639470647039 9.619143387062934e-05 1.800434055532207e-05 2.27959619802931e-05 2.245148431256894e-05 1.897334799849659e-05 1.352560072831466e-05 9.207398630195485e-06 6.826154635319881e-06 8.259453238679271e-06 6.736174988475341e-06 7.06798523708585e-06 1.23754112095753e-05 1.334719351930858e-05 1.492038643391425e-05 2.442644319344822e-05 5.697492025902307e-05 3.435359964676366e-05 1.694540970120784e-05 4.44284716465404e-05 3.160372216726159e-05 3.924699776902685e-05 2.23818864100167e-05 0.0002337254626674223 4.357489751072308e-05 1.048586745966418e-05 1.071578955702535e-05 3.178835972761362e-05 5.965120603690366e-05 4.555471518319365e-05 0.0001221689620241051 3.046227725000961e-05 1.493065917479441e-05 1.6505332300909e-05 1.621883451186079e-05 1.632873260426493e-05 1.644687450053084e-05 7.631197799895517e-06 6.374114065010872e-06 6.038863670454475e-06 6.09710890486781e-06 6.945254533263778e-06 5.741713422935391e-06 5.037482779357561e-06 4.969897972273429e-06 5.109313974571705e-06 1.147251475330791e-05 1.473043116106965e-05 1.894247047573572e-05 6.130886973210181e-06 1.024074787991935e-05 2.280702126711276e-05 1.886577518206423e-05 1.603706314767805e-05 1.271160670057725e-05 1.026387602109935e-05 9.692589316045996e-06 1.065219144891216e-05 1.900035587709681e-05 9.310927993055884e-06 1.836827038914635e-05 1.061996879059279e-05 9.322991427751504e-06 1.174095500644512e-05 1.723913932849541e-05 9.264192017965911e-06 1.305964608988575e-05 2.281891158162352e-05 5.194601505564833e-05 2.913747978183778e-05 2.024812581069568e-05 0.0001300753587969439 2.56847254860304e-05 2.429831275208016e-05 2.633713715738395e-05 2.015508887609485e-05 2.706319840228844e-05 9.268630563497027e-06 1.052441862725573e-05 1.360679323880731e-05 1.401558263580682e-05 2.392007362672643e-05 2.578447774226333e-05 3.172702681553119e-05 2.212241075127963e-05 + 0.0002999639951113409 0.0003547308461833154 0.0001576072415332419 0.0001736206449152178 0.0001880059512728849 0.000166539836087054 0.000274895823693555 9.510255542011237e-05 0.0002110019297987265 0.0001461883817484022 0.0001015995910762513 0.0002494905423660043 0.000232214601769698 0.0002459705637267717 0.0007337783805247966 0.0008995476413655723 0.001250092230673516 0.0001045933237477925 8.366673052861984e-05 0.0001866046995964155 0.0001095487216247193 6.375011127701669e-05 2.843285625786507e-05 3.049810296573696e-05 2.116028333887243e-05 1.836828432999482e-05 1.903555958904235e-05 8.114775825873721e-05 8.246001457834495e-05 0.0001042496190457598 0.0001304182422181555 0.0005508098619593227 0.0003835638112015261 0.000150805433785095 0.0004904475241112038 0.0002942784866064585 0.0003789345430753599 0.0002566281152418526 0.002626545334809549 0.0003311252717992375 4.828670845213878e-05 5.641699485181562e-05 0.0003026952628832902 0.0006858645228238203 0.0006860375569841537 0.002285549995145075 0.0002129062170901364 0.000130129741473084 9.571104534700225e-05 0.0001135099451410326 9.354867235167319e-05 9.059494821173075e-05 2.496172226784665e-05 3.548398307273715e-05 2.499052153837056e-05 2.596852172231934e-05 2.507061113732334e-05 1.438540594733695e-05 1.160273791356303e-05 1.011419381313772e-05 1.365310102841022e-05 4.547986252134706e-05 6.793135627702895e-05 0.0001075143856539285 2.6693331740546e-05 5.588504776099512e-05 0.0001425212377696994 0.0001096057137530693 0.0001103574594267798 8.040975344414392e-05 3.562355763619962e-05 3.822289690447178e-05 4.109490376436042e-05 0.000127379768883884 2.973725550958761e-05 0.0001483539532145528 4.534537740497058e-05 3.228441645930502e-05 4.761880831694043e-05 8.551934016765017e-05 3.005212696294279e-05 5.930563457567928e-05 0.0001021608333360291 0.0004626013382633687 0.0001556110711540271 9.699927662509822e-05 0.001069711278695706 0.0001379666319607509 0.0001005746372868543 0.0001110962281103411 7.367186759665856e-05 0.0001318487222050635 2.48580527966169e-05 4.325764388113384e-05 8.952331175038353e-05 9.110237732556925e-05 0.0001851522678961715 0.0002136662913656551 0.0003659136894071935 0.0002095038437737173 + 0.0008100577854470714 0.001036791629076106 0.0004085632561725561 0.0004499108025726173 0.0004921851050738724 0.0004206823615362509 0.0007010521440093953 0.0002222092439012613 0.0005597243736019664 0.0003713594349363802 0.0002776858141970706 0.0006949887379619213 0.0006721802650311304 0.0007055966136899627 0.002361417916965536 0.002633636339993473 0.00508580349379173 0.0002815242386731143 0.0001991361434701133 0.0005950231723197419 0.000292431161398099 0.0001610818240251888 6.097299143092982e-05 8.418121191056116e-05 4.02493726596731e-05 3.674073988690907e-05 3.764785958537686e-05 0.0002377660337771204 0.0002291252713639835 0.0003067067288675673 0.0003414295634946996 0.001805800577789896 0.001474945844954334 0.0005350852311085674 0.001796498285354886 0.0009897435921217834 0.00127324911523985 0.001081713965351838 0.009553563670355203 0.0009653938314926336 0.0001228577540324238 0.0001511116821717451 0.001039206396059811 0.002535285764597717 0.003568388456749894 0.01594079033070805 0.0006066956848975735 0.0004719531388683862 0.0002575731217557831 0.0003318847318389828 0.0002498804664075038 0.0002383496834319487 5.61272128649648e-05 0.0001225680544614249 6.824397724614073e-05 7.212132680933792e-05 6.048038306261105e-05 2.691126645970598e-05 2.050724079083466e-05 1.69025291967273e-05 2.69774256125288e-05 0.0001085465250625361 0.0001692785525975182 0.0002831949542567713 7.541844895087024e-05 0.0001540338790562146 0.0003881793625488683 0.0002906466203356217 0.0003163326935293753 0.0002272599996402391 8.05735591740131e-05 9.126398109060574e-05 9.689522845235388e-05 0.0003567964405561952 6.495020226893189e-05 0.0004721811321140024 0.0001117072469476454 7.348862294520586e-05 0.0001146123600754834 0.000218042629079207 6.626397178166599e-05 0.0001478876714955391 0.0002553890064085351 0.001442363779833755 0.0004093525052653035 0.0002462974407606566 0.003296845452997132 0.000360233884045158 0.0002454631440471644 0.0002732299392391724 0.0001717735063806458 0.0003345554274858387 4.88644666916116e-05 0.0001044852859592993 0.0002558261509477688 0.0002568941080767217 0.0005598221539315773 0.0006733314210869423 0.00145965866097697 0.000746090454665449 + 0.001257347485758231 0.001502111382251314 0.0005973925655951007 0.0006859675237365082 0.0007469820684065098 0.0006787346373897662 0.001192494569366431 0.0003503262982036404 0.0008396821467613336 0.0005616107677894888 0.0003769677069982436 0.001001997418342171 0.0009627884004430598 0.001016396352984117 0.00358651337015381 0.004206764365020987 0.00871365821726755 0.0003900176404165734 0.0003001320545710229 0.000882891855308543 0.0004049143921527332 0.0002201169818007997 8.234659524930521e-05 0.0001180090071741802 5.315342114897703e-05 4.768031432433872e-05 4.903348336426916e-05 0.0003358905026971115 0.0003135768485442725 0.0004329938443348169 0.0004849210006980798 0.002730745731968298 0.002397446910553214 0.000839947445754774 0.002837999009633663 0.001503555622882402 0.001927585179537061 0.001851709428596138 0.0156988799920903 0.001408601306103208 0.0001660703735417712 0.0002053165207662744 0.001596998420733797 0.004058461568730465 0.007093818287635223 0.04514037411728822 0.0008688932504572477 0.0007536748325875919 0.0003543375049623876 0.0004679006238212935 0.0003424782455514475 0.000326523857470562 7.527700592646625e-05 0.0001951895402285686 9.61069832428052e-05 0.0001021325486156854 8.165135166393611e-05 3.365752620254625e-05 2.508835143544275e-05 2.121661430010136e-05 3.387569268653579e-05 0.0001481083952974416 0.000232539513383756 0.0003898940481690261 0.0001077326754845842 0.0002119040212598122 0.0005423480732744679 0.0003996118448412744 0.0004402020940830198 0.0003138218119644876 0.0001094054751860085 0.0001225763697334514 0.0001311162789505715 0.0004955501635421911 8.786711191532959e-05 0.0006981252060391796 0.0001510066924339526 9.946086536771759e-05 0.0001565182241805019 0.0003021913502330165 8.974315549359346e-05 0.0002017591082328352 0.0003686273579184274 0.002134160862841128 0.0005936989565675788 0.0003483526762089184 0.005093007209392653 0.0005116332539998325 0.0003599395130677863 0.0004036057523819636 0.0002513888805566467 0.0004813170506423603 6.567785781896873e-05 0.000140702825760286 0.0003550991400516068 0.0003537133156967798 0.0008117082961263122 0.0009953067709318475 0.002420713618434434 0.001167912738580412 + 0.001386295875597909 0.001236353358422093 0.0005962897366345032 0.0007512445205151153 0.0008035113558406692 0.0008457919945072945 0.001629254312220496 0.0004397957435458011 0.0008710601019998876 0.0006144977089519443 0.0002798956460594582 0.0008782661323323282 0.0007629668500968023 0.0008400596379125602 0.002847291606075331 0.00449050900585668 0.006035407459457076 0.0003197156490912789 0.0003387719318119764 0.0006280561532037154 0.0003371700405985223 0.0001861499907214181 7.69899135022456e-05 8.518258225009845e-05 5.415505022199341e-05 4.320053110973276e-05 4.568419154793446e-05 0.0002344228803181636 0.0002270362875549381 0.0003052058744721364 0.0004436732594612636 0.00205357989030297 0.001601704466406062 0.0005621721903583676 0.001931463978356973 0.001056870682848654 0.001362328124901779 0.001212781034912069 0.01232318246918496 0.00118854784304645 0.0001307715864911074 0.0001525979580492276 0.001114227247910549 0.002822943999758465 0.004691350888196943 0.03354560154698483 0.0007113569546266518 0.0005010582472486647 0.0002839320166838633 0.0003370352719400671 0.0002751824997133667 0.0002688510289523549 6.413185074549688e-05 0.0001338930442678077 6.920072348748363e-05 7.30097246339767e-05 6.430043468697022e-05 3.030729689612599e-05 2.284093393711828e-05 2.120735867094936e-05 2.810636873107342e-05 0.0001298770328297394 0.000205023636404178 0.0003275711375039236 7.665102012310854e-05 0.0001538946774566341 0.0004483613005810128 0.0003308940298296648 0.0003165874569006633 0.0002221336403493979 9.890933216638587e-05 0.0001017271232228723 0.0001132622702613162 0.0003785816944557041 8.084611986447499e-05 0.000485990948348558 0.0001238532998506514 8.749648229766649e-05 0.0001367525746367448 0.0002680192612167787 8.181508009030836e-05 0.0001719455795310409 0.0003675068776054502 0.001661611678315467 0.0005694782083587313 0.0003260918734646623 0.004615396600769373 0.0004711082633974684 0.0003811909657542856 0.0004320786653977393 0.0002746521590921702 0.0004741651226396471 6.721522132124846e-05 0.0001170858199230906 0.000250490762205402 0.0002523116089037103 0.0006024372482862361 0.0007219129920734701 0.001601963390879035 0.0007914273495117641 + 0.001465432543472645 0.0008349387474027026 0.0005697742872285971 0.0007967103841224343 0.0008314583972293121 0.00103112436926267 0.002173122618543744 0.0005514453431203492 0.000859633241134361 0.0006580452027122874 0.0001586374271909108 0.0006695028669199132 0.0004738705745133132 0.0005678889957128064 0.001688820237454536 0.004391613922841486 0.001893117366742914 0.0002238187508218914 0.0003787330755535834 0.0002793183841802716 0.0002443711568034246 0.0001390625379968924 6.711420504146304e-05 3.813360621407469e-05 5.4228423309155e-05 3.549630222465794e-05 3.94693708258842e-05 0.0001005789024759451 0.000116784102928591 0.0001384750646913346 0.0003749176379308494 0.001065087175526003 0.0004874573026079076 0.000174723051728165 0.0006675730391147994 0.0004422387269684691 0.0005845763896417111 0.0002907605357158616 0.00642038627772834 0.0008341104193014814 8.243714683331405e-05 8.31317980285462e-05 0.0004452277399185078 0.001023316160740251 0.0007809901465600788 0.003338565795981907 0.0004733688134788139 0.000143511514314909 0.0001906218024760875 0.0001656998050076908 0.0001867151687662272 0.0001923890233932468 4.639973398923303e-05 3.904726623815691e-05 2.971644730465073e-05 3.048761258028776e-05 3.829012540279564e-05 2.47361346055186e-05 1.891853312940839e-05 1.997639834883103e-05 1.924095074912202e-05 0.000102288339352441 0.000166101445650213 0.0002438135265805386 3.115815145449119e-05 7.677005269712822e-05 0.0003160145002034653 0.0002394297913923538 0.000157779460181473 0.0001042580151704442 8.193261844269273e-05 7.164879065157947e-05 8.679110779041821e-05 0.000225338951125309 6.855189874954704e-05 0.0001986706070944422 8.551388188493547e-05 6.839333986263796e-05 0.0001071434265007554 0.000219372746517621 6.811911870840959e-05 0.00013014982905446 0.000355722026942118 0.0009707613809410987 0.0005108849916588554 0.0002887941392906157 0.003556944957065156 0.000403259590271432 0.0004015880938084138 0.000460037129698776 0.0003017912788436661 0.0004532818974070096 6.785040338286308e-05 8.355177807573e-05 0.0001160741652270758 0.0001232623034397307 0.0003135462975230041 0.0003437480592367592 0.0004473953310224488 0.0002715896012830399 + 0.001901775803563766 0.001005011527894339 0.0007427765214345072 0.001051188248112567 0.001085473997989084 0.001419805717901568 0.003095832933297515 0.000780418446666431 0.001105345687918202 0.0008812045882251596 0.0001811876488488906 0.0008191106721326946 0.0005681985219716523 0.0006815452662589649 0.001972612104163218 0.005379665674068335 0.002154788936255869 0.0002619470030627014 0.0005138413598917424 0.0003198414658243109 0.0002888280661750287 0.0001642278111759765 8.087376140508695e-05 3.509069293627931e-05 6.638311724316281e-05 3.861762200330077e-05 4.405258231088283e-05 0.000105777881643121 0.0001290825027737696 0.0001533347169626609 0.0004704314587336 0.001235113224234752 0.0005535925978659151 0.0001853636988222718 0.0007734926651696838 0.0005134387328951107 0.0006857457602507111 0.0003031133963595778 0.007451212539308472 0.0009942505667090984 9.186278562367534e-05 8.919701978626904e-05 0.0005150669452866907 0.001176422567661817 0.0008150935628377098 0.002935037397897133 0.0005671205994719486 0.0001446015672232903 0.0002209707296465524 0.0001867308359209119 0.0002169136906751135 0.0002256831803109094 5.043553077044294e-05 2.82781386395925e-05 2.534994664316059e-05 2.580298107091039e-05 3.852795121872532e-05 2.584977839603653e-05 1.943389763425785e-05 2.18502143383148e-05 1.817209722076996e-05 0.0001226570933070548 0.0002001635472126395 0.0002899385059365045 2.623337183393915e-05 7.983827211432981e-05 0.0003765797541603888 0.0002830416863730534 0.000178086286382495 0.0001120474214459932 9.94266670346633e-05 8.141912618953029e-05 0.0001032137895293772 0.0002602754913567651 8.209640014200659e-05 0.0002229793193251339 9.819467377880642e-05 7.98575962299708e-05 0.0001282466684457972 0.00026569806598431 8.093707238998604e-05 0.0001543836131396858 0.0004650312362137754 0.001139838649116598 0.0006509156395715365 0.0003629583169555417 0.004267911448931017 0.0005103376041830643 0.0005434808094904042 0.0006253129541136104 0.0004099516078923671 0.0005978125015104752 8.602186927930688e-05 9.693061613802456e-05 0.0001264713685955599 0.0001362147625840748 0.0003637534884717297 0.000398318094713801 0.000500361245634906 0.000302600766438843 + 0.002669554571774313 0.001474420417849842 0.001088508749916173 0.001509924432426146 0.001555851412746279 0.00203352570386528 0.004431673677231629 0.001132982456127252 0.001585250383939751 0.001277976034359085 0.0002587243522640392 0.001205521158219369 0.0008451082526725884 0.001008858271926982 0.002775045427469536 0.007126790404484495 0.003108339622533762 0.0003612080963080189 0.0007397488311706724 0.0004554487783146044 0.0003986602433130315 0.000228809160031318 0.0001112519514556709 5.044793816466608e-05 8.783833476400105e-05 4.912613772489749e-05 5.599709800918617e-05 0.0001548478113093665 0.0001875175443650789 0.0002238937010261566 0.0006806616645249619 0.001783961510920307 0.0008176282315535133 0.0002753806930346769 0.001178115910043687 0.0007598635299963519 0.001039414630739088 0.0004418785063897701 0.01019062673454485 0.001435026931975614 0.000130163064508082 0.0001272810763062182 0.0007644310256615938 0.001745731308588461 0.001175611292345558 0.003447559684763846 0.0008393477667336668 0.0002168040082786149 0.0003051006461003425 0.0002672522822528833 0.0002995518460071622 0.0003103227125826891 6.661254722928334e-05 4.445923649498695e-05 3.662899074896586e-05 3.753978473852726e-05 5.217153319847512e-05 3.284069499898123e-05 2.463277509434647e-05 2.738506415767006e-05 2.332302103269512e-05 0.0001738547348217878 0.0002753321682504861 0.0003985515950830631 3.837035689002732e-05 0.0001139898318704979 0.0005324496032450554 0.0003891374631876943 0.0002568823212740767 0.0001636204631125793 0.0001407006417366574 0.000113478026150915 0.0001467923594020704 0.0003623918816870741 0.0001133031168549792 0.0003223584280114267 0.0001392786739096152 0.0001102694536498916 0.00018138927694622 0.0003636008596181739 0.0001115011905898911 0.0002162568492281025 0.0006705703424714216 0.001651870094875107 0.0009511030889051142 0.0005108073852966299 0.005839416057561664 0.0007432378966711894 0.0007919807148155655 0.000915230818449686 0.0005872075925452691 0.000878373509678454 0.0001188385232637756 0.0001375623060084763 0.0001854984863314257 0.0001990763305812493 0.0005182663264946541 0.0005734323273607345 0.0007267984921313086 0.0004365577165259538 + 0.003478828666938938 0.001828643347081993 0.001429510898532271 0.001994691226769874 0.002047761814466753 0.002733304866126218 0.005967798292658699 0.001526550522385151 0.002075204630983762 0.001695179441355776 0.0002965852794432067 0.001528527236274613 0.001018529032521087 0.001245518211232977 0.003218177996592075 0.008595854879208886 0.003094043307330097 0.0004206401901569734 0.0009764013691260232 0.0004766831005937888 0.0004684421722451759 0.0002733279613345019 0.0001340939105638483 5.380008844468875e-05 0.0001059254171025259 5.693191076971971e-05 6.475271709405206e-05 0.0001649381773987102 0.0002111310514436582 0.0002446035368777189 0.0008620121076035048 0.002059127276050177 0.0008231656028954148 0.0002725736767335007 0.001273887688745035 0.0008234009364578299 0.001173790638130612 0.000399446385866753 0.01079410183690754 0.001771394929324543 0.0001489101401688231 0.0001408247687777475 0.0008224858755561115 0.001869622539549809 0.001022015030115675 0.002360445578677428 0.00102722901765695 0.0002111878123578492 0.0003525706412581542 0.0002927049934395853 0.0003473985203701346 0.0003632041033831968 7.483370323413396e-05 4.467822476073025e-05 4.051284470563132e-05 4.129689941123615e-05 5.776599984841368e-05 3.989965767914327e-05 3.049640177721358e-05 3.380072149639091e-05 2.825720336119275e-05 0.0002119332372494398 0.0003311943634116687 0.0004697409111500406 4.183222289810828e-05 0.0001224801279136045 0.0006331387415556833 0.0004556920666090036 0.0002856207495867125 0.0001792843556600587 0.0001720634768105356 0.0001309702873584229 0.0001773628632975033 0.0004070727974294641 0.000136046581999949 0.0003358462358775682 0.0001635663828025713 0.0001297647740372554 0.0002207261663613735 0.0004359436388341464 0.0001331514420730429 0.0002601256261129947 0.000866705665977463 0.001970527742550132 0.00123250092818239 0.0006369119041202964 0.006878823223871677 0.0009488274205580183 0.001044764155771816 0.001214278981848338 0.0007678999940594622 0.001151328398833584 0.0001484232727477774 0.0001627680446176782 0.0002043851202557789 0.0002226079030336336 0.0005682371419553078 0.0006199750905722112 0.0007004699755341903 0.0004307573960957711 + 0.004270330328790095 0.002084781520096612 0.001709849054279289 0.002436047405907971 0.00249078880591469 0.003457673360145463 0.00764426878379254 0.0019207377464312 0.002505101510337227 0.002070111245586759 0.0003224530651948498 0.001757221700493972 0.001120444708003987 0.001393146336601703 0.003665957759196203 0.00989738480649649 0.003386277359044954 0.0004634341567548717 0.001192790311465686 0.0004961027026624265 0.000520499903128524 0.0003034870695728387 0.0001478336653235601 5.461306190568394e-05 0.0001191947519316727 6.268992362379322e-05 7.093650624057091e-05 0.0001640285111363937 0.0002204180230833686 0.0002543097970608699 0.0009989897405695558 0.002292426376053314 0.000833552352832001 0.0002740070435365283 0.001327404288753442 0.000854734205514518 0.001240593498167186 0.0003988108636612253 0.01168583793739586 0.002018679588339012 0.000154891893195952 0.0001424239395113602 0.0008493725184308687 0.002009887775187735 0.001018073433425748 0.002724199355169432 0.001139632889586295 0.0002071536250731754 0.0003859880523418013 0.0003084168472362592 0.0003815965556928091 0.0004024744995483331 7.843398555706926e-05 4.398001031447052e-05 4.247506604926343e-05 4.319952095599433e-05 6.04726523363297e-05 4.596209343787905e-05 3.550682839659203e-05 4.014528849438648e-05 3.152858448629559e-05 0.0002358185092923293 0.0003742217025788364 0.000525514163967955 4.342032990223288e-05 0.0001211278101465041 0.0007042347793522197 0.0005074907746376311 0.0003037801125671535 0.0001819168799954696 0.000191238453595588 0.0001376075142331956 0.0001944957098487521 0.0004409714227548989 0.0001491691875834533 0.0003485551865196612 0.000174359566916138 0.000139278273849186 0.0002457084404099419 0.0004939614685639526 0.0001451669697818403 0.0002895216804716938 0.001031665325175624 0.002215895030317938 0.00145038025037536 0.0007390749865692214 0.007797038442440396 0.001106546990001789 0.001270596426508064 0.001481676458141123 0.0009385421179786135 0.001379674050042468 0.0001708751601938729 0.0001746832763984685 0.0002101589446468211 0.0002324776458166866 0.0006007567945971459 0.0006486773336149554 0.0007042992664700876 0.0004387818200548566 + 0.005503350411384389 0.002548451205313995 0.002127975359954348 0.003082006118702907 0.00314719966874577 0.004497448700377049 0.01011035506995484 0.002460790691955594 0.003156908964442096 0.002610045387044124 0.0003907405638585715 0.00214161200982943 0.001345971535947399 0.001666663809160696 0.004671053053508345 0.01262341110730425 0.004238332691711477 0.00056563531473941 0.001490264445351386 0.000610651667635409 0.0006402001509080435 0.0003668564090624216 0.0001799312698445021 6.951167724977836e-05 0.0001469032396101966 7.866146901136517e-05 8.845326618001081e-05 0.0001919076999143954 0.0002581492012687647 0.0002974595281308723 0.001226944117206585 0.002806194399473938 0.0009792727887969477 0.0003175389336131929 0.00152693282770322 0.001015556114822402 0.001448388395701272 0.0004836662023883775 0.01496991243858048 0.002464657223420375 0.00018468720962872 0.0001696776804074318 0.0009994194293589942 0.002390141123409961 0.001120600234324698 0.002789139816806951 0.001360288414838706 0.0002343052386848399 0.0004688342776262289 0.0003670554244976643 0.0004646200105362652 0.0004927139281249993 9.698688696602176e-05 5.470102710347646e-05 5.212524888165149e-05 5.330340669473799e-05 7.668754161471725e-05 5.750056516262703e-05 4.394516869865583e-05 5.045707824535839e-05 3.784833097597584e-05 0.0002849752074816081 0.0004600249089321551 0.0006520803645955198 5.353283826892152e-05 0.0001459248268815827 0.0008668832303762031 0.0006292937792551356 0.0003630366111195826 0.0002134130035145176 0.0002331108963176121 0.0001680793957348214 0.0002356217194829924 0.0005436368643714218 0.0001812123940965193 0.0004195022523774128 0.0002086506898244522 0.0001687586247705042 0.0002967296122733387 0.0006109415660802142 0.0001756943584911852 0.0003501872016826724 0.001282270662866125 0.002709492629712429 0.001782395755881794 0.0009148548669344336 0.01001241402415332 0.001365833814361395 0.001598522474182573 0.001866278848723368 0.001191815277280739 0.00172765887137416 0.0002112891447580978 0.0002109154124525503 0.0002454519374595066 0.000272695272791168 0.0007340287785240207 0.0007885186164386937 0.0008458166798490652 0.000537259194206996 + 0.008583457251845061 0.004315079425936119 0.003314702422215987 0.004750246600110586 0.004880003239463804 0.00682636378603263 0.01540675897444999 0.003633585235149894 0.004966454610240589 0.003997024136651817 0.0006675491916041665 0.003477302432663976 0.002245913943795586 0.002696346518524351 0.007988616335746102 0.02068124402660665 0.007704085514179226 0.0009097395213437665 0.002178417870485561 0.001082182994448289 0.001036885929476483 0.0005843483313903164 0.0002922245290086778 0.0001297053108402224 0.0002375470992603823 0.0001356392144344909 0.0001510354299512073 0.0003509103121004387 0.0004397834984324334 0.000507999240930701 0.001911657463246286 0.004799450919557913 0.001804843425681213 0.0005579040937142565 0.002722766204335869 0.001799501650719293 0.002534186950249762 0.0009081357190936501 0.02808488630016726 0.0040486164554423 0.0003146537719835862 0.0003012056410405251 0.001755904694531907 0.00419270842372832 0.002148959644078907 0.005536017877105337 0.002189581748581304 0.0004204584127087685 0.0007586159225869693 0.0006166730471903747 0.0007552253607219228 0.0007991369603850274 0.0001691159526586716 0.0001034838448461528 9.341825493436318e-05 9.63010602070824e-05 0.0001397996255505518 9.712096088776434e-05 7.369747258678672e-05 8.145542524573557e-05 6.557959186892504e-05 0.000456385801076209 0.0007352639215199019 0.001069862156569457 9.672638491409202e-05 0.0002685083894320428 0.001421684260243694 0.001038284742790552 0.0006211390776229564 0.0003844325845250296 0.0003813878686287353 0.000296748092694088 0.0003892624089729679 0.0009241326217761525 0.000295478831812801 0.0007321226691452409 0.0003475765661313801 0.0002812932824269865 0.0004736586960447653 0.0009742153108120988 0.0002854036019339645 0.000559115174009861 0.001952665147069155 0.004622666356514316 0.00275569299588696 0.00141917162556382 0.01718084434490663 0.002146800031063378 0.002429222797353248 0.002844531662063332 0.001807329557678372 0.002704718549978224 0.0003350881205221867 0.0003565420013984522 0.0004331206005971922 0.0004720604808952089 0.001264380545926258 0.001377562039476032 0.001600721246425962 0.0009736429937348134 + 0.01755088096503599 0.01239086728818961 0.007614845444095408 0.01010458846238294 0.01054029406405732 0.01328419682573667 0.02865475838447651 0.006908025111911797 0.0111792340682797 0.008497969019870766 0.00290327633526033 0.00909867348685367 0.006747263244498924 0.007211034785996162 0.02057115326820025 0.04310254424634508 0.02564176168817234 0.002663837782725054 0.004252025829801553 0.004569661732233499 0.003032144649285584 0.001771441755682446 0.0008330910357550181 0.0007472042770935161 0.0006494475965297397 0.0004785056734775139 0.0005030687732343608 0.002026980369869591 0.001979858865695405 0.002421171441621794 0.004625757569318267 0.01380279959204955 0.008286322334111418 0.003351684373999575 0.01057759286423554 0.006853535754530071 0.008993375765566469 0.006507508644400417 0.07403725001243799 0.01056948481953768 0.001199684710105231 0.001368965596327598 0.00656588349945153 0.01408768279121375 0.01454285776364816 0.07013105108744888 0.005907856430654945 0.002906605509467752 0.002373845863209212 0.002538551719750259 0.00241125714447854 0.00248325532093574 0.0006046404511295123 0.00102026419216017 0.0005941837244129999 0.0006410260146800795 0.000635042414224074 0.0003464595464208742 0.0002523077439349208 0.0002263512693474468 0.0002833482691571021 0.001371479251687902 0.002156137431526872 0.003250791443008438 0.0006432781245671038 0.001352498724418894 0.004154756303879736 0.003245617803159462 0.002829477253271762 0.002111853617421389 0.001157413072988334 0.001154610788574928 0.001270045565405553 0.003398940848590826 0.0008599757051470647 0.003523514408538375 0.001209529772747686 0.0008906837212485641 0.001417930218956087 0.002701820823592271 0.0008260678005864719 0.001708295201947152 0.004355268516892608 0.01329124368425028 0.006338779798078065 0.003436557940549534 0.03954494633600447 0.005271543316879956 0.005256658405826897 0.006137590881422739 0.003919067949240684 0.006380205792638094 0.0008620800590932731 0.001272366475106423 0.002314029399300921 0.002334073520799507 0.004522178261815668 0.005126017894557577 0.008421184050380504 0.004952228516390988 + 0.04709482480935989 0.05831162400878043 0.02653634485847078 0.03046409969407193 0.03245626326501849 0.03410582378684524 0.06457024611016493 0.01759344253947859 0.03668733200593977 0.02592995494065065 0.02059876760786494 0.03754410305807454 0.03377012768614662 0.03034633837613576 0.08170439197403745 0.106999321629635 0.1493327348396765 0.01265097775680246 0.011535155016281 0.03201512004974205 0.01457389466978753 0.008689614540788426 0.003722835595361573 0.005448917553081856 0.002753829600479207 0.002554381627000168 0.002558214431282124 0.01586360177147839 0.0134552399899448 0.01727476239473091 0.01756476681011065 0.06512617393206099 0.06318535584905405 0.02754209486197823 0.07108675802558828 0.04434059510396438 0.05477852261891769 0.06281254492663635 0.2760322310313477 0.04261494688380196 0.007060029419562852 0.009115483622018417 0.0410865525730042 0.08167934294490209 0.1329498240343421 0.6607325618820852 0.02528027964338975 0.02458395185735185 0.01204342960353522 0.01635884299954604 0.01256346751547177 0.0126683769703213 0.003250429854130488 0.008660706168736709 0.004415741165011866 0.004910481233672215 0.004132556050173264 0.001825256450217694 0.001234189934336882 0.0008968860086895347 0.001624901282660574 0.006698031614217115 0.01040952555248964 0.01654227637399686 0.00487377281749346 0.009511088932256939 0.02024951234536587 0.01703549512595259 0.02031104024199948 0.01646151367921078 0.0057171885722056 0.007166048312399198 0.006771192367779122 0.02093948956432712 0.003936395641201074 0.02640227896033664 0.00668424396488021 0.004445629926468797 0.006889991260440098 0.01224772917618111 0.00373201261686873 0.008488271228557664 0.0147269766870366 0.06260443577883024 0.02205618714377877 0.0131073370761321 0.1189215163546891 0.02054364535567288 0.01697438068308799 0.01961449183120578 0.01287139944317062 0.02355966422656763 0.003456609711875558 0.007337253508353569 0.01790660582616255 0.01730348013614957 0.0271152490404738 0.03208741291545181 0.0713523953880717 0.03952252278944712 + 0.0221980157451469 0.06221567369574643 0.01838720137014604 0.01660754154667643 0.01857038846625869 0.01253794823585963 0.01510084097606068 0.006671566596637035 0.02328264148061976 0.01418912565479502 0.02978214616256025 0.03378695015969413 0.03786475840858827 0.02933296071072178 0.08631682032624965 0.04797110122337145 0.2128682212329274 0.01319110257729506 0.005681070012922618 0.04848267026556385 0.01513811375753704 0.009291324994055827 0.004003018008539527 0.01115367540210244 0.002715321134331816 0.003609212951069196 0.003340291613952218 0.02785450852869076 0.01966014949627493 0.02645472605493993 0.01432740177380865 0.07814822313273062 0.1039324231389642 0.04987681201508565 0.1081479330922708 0.06476180239537399 0.07710335458681428 0.126306819001492 0.3028101281278701 0.04006262830191076 0.009657046114739387 0.01389265006562113 0.05907207414375115 0.115765121014876 0.2285012069444594 1.043346414119327 0.02476414198571675 0.04746525185957395 0.01328588542736675 0.02267009589447611 0.0140746498900981 0.01382227467078323 0.004587379475374576 0.02497975416365605 0.01037942571303674 0.01186213617328491 0.007433644714019749 0.002662491581801874 0.001767808770082979 0.0009159591528486999 0.003021012859754535 0.00731741926098195 0.01061945353097826 0.01772541721416587 0.01154229671795903 0.01556924961560568 0.02127175902681344 0.01877717668983792 0.03046636562723393 0.02807547207306982 0.006554765937423213 0.01054010164807551 0.008234948979961132 0.02700436662327377 0.00435064744847935 0.04237494980874956 0.0085195097441364 0.00539340354388429 0.007448164484706865 0.01179390189114926 0.004100132897226771 0.009175948907817144 0.01003491079762853 0.07148751324722369 0.01600995424306362 0.01059462207588879 0.0870863741586092 0.01691543561108944 0.0102691535183439 0.0114998600940055 0.007972178057727319 0.01722886624055775 0.003089213481160868 0.009702518245333636 0.02986055260008413 0.0272511026726292 0.0358232622728849 0.04464630055261409 0.126037647282832 0.06787773034550426 + 0.002523707867371883 0.005909890297473908 0.001952515738196325 0.001809767316885313 0.002010514216067349 0.001413464808607046 0.001744527704417465 0.000806641464293989 0.00246058455552145 0.001553709007112047 0.002726664988628613 0.00346811367860056 0.003809256483410906 0.003169004284048427 0.009163311898905846 0.005625928431923555 0.0234599256788588 0.001491707156215938 0.0007205216987600238 0.004611567558633567 0.001654729343783856 0.001041767502307778 0.0004769128707344805 0.001149523515056927 0.0003349036008586381 0.0004149638472057404 0.0003910162096616432 0.00259325283925449 0.001961171068415979 0.002597120367795469 0.001602443433323941 0.008112818085853846 0.01008145440796682 0.004800202961828148 0.01066290106346379 0.006335215996632115 0.007536495009720312 0.01118932419074881 0.03444783476558655 0.004214275529204059 0.001039963202117633 0.001420481351871672 0.00603276015016796 0.01225310966016835 0.0235128371002018 0.1239131425516007 0.002725162645628387 0.004589877975242018 0.001481102764174125 0.002344669728698179 0.001534636335559725 0.001495679789268678 0.0005335847181378028 0.002346896750164973 0.00107028634858608 0.00119107168385213 0.0007847669726075424 0.0003158956984776751 0.0002221639947492804 0.0001320812737333199 0.0003529856125865649 0.000815633706555019 0.001149773369988338 0.001842408410233531 0.001179328682798797 0.001563685518878088 0.002234974901778486 0.001935045524952272 0.002870586601424918 0.002557561934253272 0.0007147068726993666 0.001042089213342479 0.0008728677370584137 0.002659425607312471 0.0005131690881690076 0.004022572395886215 0.0009250397846400915 0.0006162501791280306 0.0008340364834076297 0.001294562933168208 0.0004943600766633693 0.001015709423452194 0.001152893847571335 0.007091635282439057 0.00178195619868049 0.00120789940194399 0.009561335051028408 0.001824508640254408 0.001154281927362888 0.001271604709216945 0.0009099107200398748 0.001795258695636903 0.0003772955599856687 0.00100071317910988 0.002733436082266394 0.00254645063554193 0.003601365001816959 0.004416495223001249 0.01167122859798297 0.006345755316420565 + 0.0001196936362539702 0.0001893342093381989 8.630700325795715e-05 8.606974178348992e-05 9.260390149279374e-05 7.723468692688584e-05 0.0001025594971792998 5.148773590235578e-05 0.0001057815873792833 7.624314457643777e-05 8.904039916046713e-05 0.0001307534527370535 0.0001335579301979806 0.0001232520497715939 0.0002961007627995116 0.0002526836704817015 0.0006586451475865118 6.63360335266816e-05 4.643289020478392e-05 0.0001391677433062455 7.087181613485427e-05 4.95560561688535e-05 2.855588770245276e-05 4.436786978345708e-05 2.308911206228004e-05 2.4203741567419e-05 2.378253404344832e-05 8.110632815316876e-05 7.066062681460039e-05 8.685567960853291e-05 7.360366045361388e-05 0.0002541559357975842 0.0002646753960924286 0.0001347513774732079 0.0002910045586901333 0.0001861718186795258 0.0002190830107018371 0.0002535350396613012 0.001042704273146455 0.0001548613265249799 4.570920554769486e-05 5.506726500215109e-05 0.0001833417623728906 0.0003537946339573494 0.0005365057752815261 0.00232217563082493 0.0001095240473301118 0.0001266992398285538 6.452490110930853e-05 8.464850047040784e-05 6.537104416892703e-05 6.420939318729779e-05 2.887106731108702e-05 6.799430839521392e-05 4.105517459151997e-05 4.378262910620379e-05 3.484922931562551e-05 2.006746298377493e-05 1.603965074536973e-05 1.256782469738482e-05 2.040236392275574e-05 4.092716968173704e-05 5.323248451816198e-05 7.465248779681133e-05 4.387398275085275e-05 5.772205569343214e-05 8.864663809049489e-05 7.683980378914157e-05 9.32179166781566e-05 8.023004986768001e-05 3.637659062860621e-05 4.362407781854927e-05 4.107808462094908e-05 9.375546190426576e-05 2.978198290293221e-05 0.0001213894518556913 4.277917236450435e-05 3.284595350194763e-05 4.180180197010941e-05 5.941148079458003e-05 2.927316256240431e-05 4.822269908899557e-05 5.953195642760534e-05 0.0002229616748152807 8.185916104963553e-05 5.949206592603673e-05 0.0003423106344726534 7.987608735504637e-05 6.016824411148036e-05 6.462140646590342e-05 5.051555393720264e-05 7.887955102603428e-05 2.544591042408229e-05 4.406777412668816e-05 8.535599893377821e-05 8.277925749666792e-05 0.0001216473583838251 0.0001406549577893657 0.0002847177268137102 0.000171894093949021 + 7.516841915133909e-06 7.78233743403689e-06 4.87554775929766e-06 5.351137090769953e-06 5.580771002655638e-06 5.488769915018565e-06 7.866012410318035e-06 3.992390915641408e-06 5.937382326237639e-06 4.830861058735536e-06 3.526253678387548e-06 6.120451409685757e-06 5.570328223569732e-06 5.779870734912151e-06 1.308436267599689e-05 1.61460128609292e-05 2.340602766359723e-05 3.468862903588388e-06 3.585276772355428e-06 4.796119778660568e-06 3.594334458512094e-06 2.89421540955459e-06 2.325746546461005e-06 2.388248987017505e-06 2.194048462911269e-06 2.147087556636507e-06 2.154458393022196e-06 3.123805313975936e-06 3.103661814662928e-06 3.431870773340506e-06 4.12161542229228e-06 1.030141866564804e-05 7.970289464864777e-06 4.231859415781969e-06 9.477879725494631e-06 6.40040569521716e-06 7.683139944703044e-06 6.435163324880477e-06 4.475429255634822e-05 7.200365178761103e-06 2.606616657629957e-06 2.719426408503978e-06 6.457873753973331e-06 1.267627826351259e-05 1.453121458450113e-05 5.136874583300255e-05 5.203426155730995e-06 3.924726355464259e-06 3.321045280557655e-06 3.538485650267376e-06 3.310317238103266e-06 3.300067877631818e-06 2.255806517581505e-06 2.544228003387161e-06 2.30616583607457e-06 2.330863928534654e-06 2.29153690156636e-06 2.047129157745076e-06 1.95600819097308e-06 1.899750841971581e-06 2.019268976027888e-06 2.629555545752282e-06 3.018864589421355e-06 3.622419939119936e-06 2.337875436353443e-06 2.717293845933e-06 4.143335196715725e-06 3.642965637595807e-06 3.595295289926526e-06 3.129159608761256e-06 2.478667113336996e-06 2.508188487126972e-06 2.559510491551009e-06 3.865549203396768e-06 2.348011200581368e-06 4.176848420911483e-06 2.583727187754903e-06 2.385995493625614e-06 2.661517314095363e-06 3.298529684059304e-06 2.344144796495584e-06 2.838086292200614e-06 3.779188162411629e-06 9.10445319846076e-06 4.6844602294982e-06 3.560172494587732e-06 1.803704398284367e-05 4.306725195135641e-06 3.88581002397359e-06 4.120505124660667e-06 3.388850842611646e-06 4.395029961301589e-06 2.278039545444699e-06 2.578754674686934e-06 3.268923791210909e-06 3.283025371558779e-06 4.700279301772525e-06 5.149859848785354e-06 7.938046103106444e-06 5.257131295621775e-06 + 2.232282248826323e-06 2.112282558641709e-06 1.989307278904562e-06 2.072287813348339e-06 2.084633393906188e-06 2.127233415194496e-06 2.32719376924706e-06 1.969519217936977e-06 2.096247854410649e-06 2.022850424054923e-06 1.683903064986225e-06 2.044932287503798e-06 1.947365689147773e-06 2.005764887513806e-06 2.329772176068445e-06 2.642772880534494e-06 2.444934152023848e-06 1.744215696319884e-06 1.882021750887475e-06 1.804746567302118e-06 1.761590098681154e-06 1.647958896455748e-06 1.504737578983395e-06 1.456662051424473e-06 1.466033893393615e-06 1.427394415998151e-06 1.43434899513295e-06 1.590979181287366e-06 1.62066877251732e-06 1.661041814315922e-06 1.876609729833945e-06 2.195987194753002e-06 1.97981809080261e-06 1.719426601098917e-06 2.08142425961455e-06 1.93608786958066e-06 2.028755584859709e-06 1.849435651735121e-06 2.987139978927189e-06 2.108383064580721e-06 1.543228989930867e-06 1.546770707960832e-06 1.943776918977846e-06 2.216132804377935e-06 2.1729417545302e-06 2.845697322229057e-06 1.952478326572304e-06 1.678426718498827e-06 1.71237582868855e-06 1.694831095022664e-06 1.707917668625214e-06 1.712383348007052e-06 1.458377077767636e-06 1.471211987791321e-06 1.437014816474402e-06 1.439932329816429e-06 1.447135687726586e-06 1.397696195226672e-06 1.373827004158557e-06 1.36225025926251e-06 1.386247582502165e-06 1.583999093668353e-06 1.680235826029275e-06 1.759329656181308e-06 1.442195419087966e-06 1.535038443023495e-06 1.822711688248546e-06 1.755713675777315e-06 1.686159336600213e-06 1.595919265184875e-06 1.539457485932871e-06 1.513492549065631e-06 1.550358177837552e-06 1.748390694444879e-06 1.508557215146311e-06 1.737448432237443e-06 1.54921216832804e-06 1.508285897955375e-06 1.593621377082854e-06 1.737290983072626e-06 1.508273875572286e-06 1.633986268956278e-06 1.864097033177359e-06 2.160487138525014e-06 1.963520652736861e-06 1.805773727880933e-06 2.589325802659914e-06 1.894933788548769e-06 1.895165063103832e-06 1.930251173121178e-06 1.819620649712306e-06 1.925899312027468e-06 1.503708006111992e-06 1.542531734344266e-06 1.621069806390096e-06 1.633681172563684e-06 1.827337360538195e-06 1.854900176567753e-06 1.955286638377629e-06 1.811255334160933e-06 + 3.511840880321415e-06 4.126734395981657e-06 2.804112625653943e-06 2.835007506973852e-06 2.93884690449886e-06 2.682554324451303e-06 3.080554705547911e-06 2.257460749888196e-06 3.117295719334834e-06 2.664951097131052e-06 2.624880664825469e-06 3.477056147005442e-06 3.441225189249053e-06 3.462686118282932e-06 5.930564029199559e-06 6.165772520105861e-06 9.349058696983548e-06 2.536029825250807e-06 2.232259079804066e-06 3.28495856294353e-06 2.574475864491887e-06 2.192470049067197e-06 1.826762130008319e-06 1.950992732702161e-06 1.732702699541733e-06 1.726905004773016e-06 1.728336215478521e-06 2.464717738348554e-06 2.429189084551808e-06 2.656213634821825e-06 2.65911612018499e-06 5.083501440239502e-06 4.411990291330881e-06 3.117241993422226e-06 4.85797281335465e-06 3.872647727831691e-06 4.279313216670744e-06 3.881904724778451e-06 1.558900615705738e-05 3.932174990950443e-06 2.065241744730884e-06 2.169208471514139e-06 3.913421160461894e-06 5.867252809821366e-06 6.590733367950463e-06 2.361660230043583e-05 3.264994452578662e-06 2.990856382112383e-06 2.481665225317897e-06 2.707405954538444e-06 2.468429075364043e-06 2.436051595111621e-06 1.819630199406674e-06 2.078469467647892e-06 1.880369765672185e-06 1.89798478800185e-06 1.856239705944063e-06 1.662364269350292e-06 1.606453807312391e-06 1.562903975127483e-06 1.655679945145039e-06 2.016648362967999e-06 2.22553440920592e-06 2.570792787537357e-06 1.908740014044952e-06 2.182894483837572e-06 2.827251414316834e-06 2.597487338107385e-06 2.710762132096534e-06 2.444969020132248e-06 1.915390470230705e-06 1.970141255469571e-06 1.98022443953505e-06 2.798781402191253e-06 1.844573098708224e-06 3.047695727786959e-06 2.026989239567456e-06 1.883388918599849e-06 2.03752205152341e-06 2.362432145019966e-06 1.847954532507856e-06 2.152371195052183e-06 2.419191080349492e-06 4.65041099673158e-06 2.802213714403479e-06 2.41350476670732e-06 7.211615756119727e-06 2.717292893805734e-06 2.387365732658964e-06 2.453443656236232e-06 2.195162807083761e-06 2.646324801958144e-06 1.771625790070175e-06 2.010234553040391e-06 2.534329148318193e-06 2.535904883416151e-06 3.211864225249883e-06 3.409625108474756e-06 4.377337145200499e-06 3.488009731711372e-06 + 6.100841481782027e-06 6.736834606613229e-06 4.75414864808954e-06 4.873066458799258e-06 5.035016769738831e-06 4.685195918341378e-06 5.488860551849939e-06 3.956127002879839e-06 5.297268188542148e-06 4.58442779915913e-06 4.023938927844029e-06 5.752278646298237e-06 5.537971262015162e-06 5.698035753454178e-06 9.895430434170294e-06 1.123289912285941e-05 1.317521141608324e-05 4.08922917927157e-06 3.865889993903693e-06 4.896094146999985e-06 4.164012160856601e-06 3.546198144022128e-06 2.976522406328286e-06 2.76124233167252e-06 2.819856746327787e-06 2.667957694768575e-06 2.703963090766592e-06 3.616778279535993e-06 3.711434629849464e-06 3.974208990342731e-06 4.453301205131766e-06 8.273940006020553e-06 6.384003880199884e-06 4.359055374436593e-06 7.399989355505454e-06 5.893286136426923e-06 6.67322245107016e-06 5.13856868167295e-06 2.354738467857942e-05 6.521678514559426e-06 3.239371640262334e-06 3.311944492878638e-06 5.942136290570943e-06 9.028471323446752e-06 8.170592382228392e-06 2.180362534076608e-05 5.35308323357242e-06 4.08746085334144e-06 3.962862976436554e-06 4.113200137823014e-06 3.938590607432957e-06 3.912334278766139e-06 2.815689750690353e-06 2.726556292742544e-06 2.637351038003999e-06 2.64943526673278e-06 2.745954112981508e-06 2.51808037887713e-06 2.379114377504266e-06 2.314922340929115e-06 2.42629324986865e-06 3.276879457558834e-06 3.625587865485613e-06 4.14739101017858e-06 2.656794304556342e-06 3.261032812673648e-06 4.572702405170048e-06 4.168922572489464e-06 4.093279436290231e-06 3.646739138218891e-06 3.11346825299097e-06 3.094374193324256e-06 3.190613341530479e-06 4.347706635599025e-06 2.997383077740778e-06 4.463244628993834e-06 3.227660037907754e-06 3.022681486442025e-06 3.310835978709292e-06 3.871976822722445e-06 2.998631785544603e-06 3.484188145108646e-06 4.110200062967806e-06 7.610614144226702e-06 4.740690492610611e-06 4.039344659645394e-06 1.272825023335145e-05 4.546179191322608e-06 4.084405425430759e-06 4.205654732913899e-06 3.742360263458977e-06 4.471075826018023e-06 2.930952206270376e-06 3.201577186473514e-06 3.782664251161805e-06 3.825704787630002e-06 4.955228416037016e-06 5.207017252928381e-06 6.143859106799709e-06 4.972284909143809e-06 + 6.680128116798301e-05 9.259761668545252e-05 4.062307066021731e-05 4.125274637090115e-05 4.50195252597041e-05 3.465611248998357e-05 4.693650247133974e-05 2.067559731244728e-05 5.125877335387941e-05 3.526949893739584e-05 3.404042003296581e-05 6.633586667703639e-05 6.61850501870731e-05 6.84791232252735e-05 0.0001840206908561015 0.0001844441916460937 0.0003330751041694668 3.339246483591296e-05 2.111307971119913e-05 5.94370770343744e-05 3.426248022719847e-05 2.132415160360779e-05 1.027244489648638e-05 1.304652033340403e-05 7.775501501328108e-06 7.650745864395958e-06 7.702393659769768e-06 2.917617693753982e-05 2.894889893312325e-05 3.614874594504158e-05 3.70295690288458e-05 0.0001469894005783345 0.000116185955622683 5.209289538576911e-05 0.000141193091245384 8.797843945274053e-05 0.0001086896973419016 8.492859126363328e-05 0.0005971632436541086 8.741190326944093e-05 1.751993172405264e-05 2.064403791379732e-05 9.116190254410128e-05 0.0001904241907375592 0.0002076380275397582 0.0006462173488746004 6.094783983989771e-05 4.608337861000678e-05 3.136018304239485e-05 3.862078158967108e-05 3.062983794954732e-05 2.931209296619386e-05 9.948143464555415e-06 1.559442957699275e-05 1.122496873762202e-05 1.161821149509024e-05 1.052845934879088e-05 6.462181772803888e-06 5.470653221095745e-06 4.633251961649876e-06 6.510258934611102e-06 1.559149150764938e-05 2.186323988695449e-05 3.338472068747933e-05 1.191962705959781e-05 2.081632467465511e-05 4.285443203499995e-05 3.425876302287634e-05 3.739880601472123e-05 2.857848550519293e-05 1.245427918661335e-05 1.390242499610395e-05 1.439866812802393e-05 4.094762342532476e-05 1.074696309188994e-05 4.965683682556232e-05 1.620150795744735e-05 1.1795679796478e-05 1.625615909972566e-05 2.654282447878131e-05 1.092815808867442e-05 1.991128511136253e-05 2.800606698372121e-05 0.0001220463102349356 4.170344450926677e-05 2.83275459480592e-05 0.0002383330400341777 3.850600968036133e-05 2.603375310883393e-05 2.806568302560208e-05 1.945127274893821e-05 3.491477309580659e-05 8.678032827447169e-06 1.537003565488249e-05 3.143136243011213e-05 3.172132110762504e-05 5.742704925637554e-05 6.574950642246336e-05 0.0001127772925286763 6.826841925544613e-05 + 0.0002107266237061367 0.0003219109874521564 0.0001221235446280389 0.0001242425548610981 0.0001368222604440916 0.0001026391874603405 0.0001439951138166862 5.636473329673208e-05 0.000157564857346415 0.0001042253882843625 0.0001077011957448804 0.0002157965526023986 0.0002267199126215758 0.000231362649168787 0.0007336779855542375 0.0006467150118520948 0.00179096797112166 0.0001037293397185834 5.835334435566608e-05 0.0002286229325250133 0.0001054881666391339 6.146769407422426e-05 2.448454028680658e-05 4.033299296324344e-05 1.607000567105388e-05 1.663433485532551e-05 1.656054260479323e-05 0.0001004796426826715 9.329069370878074e-05 0.0001250306804472245 0.0001122389226644316 0.0005973621600343648 0.0005696817405453913 0.0002259567964042475 0.0006568943703086916 0.0003657717337297584 0.0004533982806904646 0.0004529285498833246 0.00280902994084542 0.0003017509500971016 5.065705335738357e-05 6.339891396933695e-05 0.0003889930735549996 0.0009015252084996206 0.00146033277849078 0.006534249010298865 0.000204115913293279 0.000205106099000929 9.725950891770196e-05 0.0001324843418011312 9.415889681108069e-05 8.857800834860541e-05 2.47822234982209e-05 6.203458679721052e-05 3.407330192217728e-05 3.595140638523731e-05 2.810796308949648e-05 1.295356159403127e-05 1.023486690598929e-05 8.11714912174466e-06 1.384851486108118e-05 4.212084541777017e-05 6.219665954176889e-05 0.0001011963679360406 3.762020379127762e-05 6.605131959602772e-05 0.0001354103417909869 0.0001046191310081213 0.0001253833097010215 9.426449858551678e-05 3.165988444209233e-05 3.740648159578086e-05 3.833883309312114e-05 0.0001335690266515144 2.616091525453612e-05 0.0001893763532336834 4.521332807172485e-05 3.00654895859509e-05 4.433843383822023e-05 7.762828542112743e-05 2.687071570761645e-05 5.654619252126736e-05 8.111799449395107e-05 0.0004632499370735843 0.000127234481222871 8.29640752399996e-05 0.0009004116418012131 0.0001163926673726223 7.381299905517835e-05 8.028442790930512e-05 5.240465804945416e-05 0.000102689120268451 1.872192652285776e-05 4.198966458091036e-05 0.0001051213261931139 0.0001042893573526271 0.0002071547617070735 0.000250430525596812 0.0005751685042092447 0.000299782428129447 + 0.000319933772995995 0.0004902138697957525 0.0001770177688626973 0.0001848457212645371 0.0002031985334411957 0.0001591549478234811 0.0002348256957986905 8.584079182583082e-05 0.0002327990918757905 0.0001539268849199971 0.0001543795976743922 0.0003193326950921005 0.0003432921529729072 0.0003480534017317183 0.001202782004984471 0.001036062815396477 0.00348560774017237 0.000148119373028166 8.614975867438091e-05 0.0003697985932582526 0.0001499421013591018 8.605796317695535e-05 3.357271578252607e-05 5.974098919026005e-05 2.113751281740406e-05 2.191188414712997e-05 2.17858495972223e-05 0.0001536797216843411 0.0001358677597167457 0.000190565219419625 0.0001607135253323122 0.0009834143395366368 0.001038474792320443 0.0003916215387818056 0.001158747380596736 0.0006116190315417214 0.0007552615288553 0.0008660109341178668 0.005125402467186291 0.0004594065864189645 7.134768645400413e-05 9.0860622826483e-05 0.0006603132579687809 0.001614066011418558 0.003339237378312099 0.02238303397538743 0.0003053824488468138 0.0003624011847751518 0.0001385158775590867 0.0002004237327710712 0.0001334150095662068 0.0001246832332064685 3.423892614051738e-05 0.0001063616880614404 5.070319728517347e-05 5.387939308576506e-05 3.95011947134094e-05 1.642590191863746e-05 1.271023401727689e-05 1.027078209858701e-05 1.793685760276276e-05 5.883849651766582e-05 8.677360523989819e-05 0.000142537670519971 5.697242516689016e-05 9.655620836568346e-05 0.0001952966249199051 0.0001476767657919709 0.0001869229680977469 0.0001398474590175169 4.394273648244962e-05 5.198952959517555e-05 5.334717801019906e-05 0.0001955202870931316 3.604537488044457e-05 0.0003056115866897358 6.327775750847309e-05 4.177028002061434e-05 6.197573744159968e-05 0.0001089412441288573 3.711336480805016e-05 7.900351498690839e-05 0.0001164101975739129 0.0007355743082833044 0.0001844533572921137 0.0001178048530832143 0.001459632057507321 0.0001663949608214921 0.0001066300841543466 0.0001164976799259421 7.549095185765964e-05 0.0001467873157139366 2.510489821361261e-05 5.843940488148291e-05 0.000157101174465879 0.0001538092576751637 0.0003234337055921799 0.0004025347625997711 0.001071493867751627 0.0005183913437498688 + 0.0002950559378440687 0.00035861831977968 0.0001494996296571571 0.000169095943931552 0.0001828744839400542 0.0001660852061178275 0.0002727263064485896 9.120331823453398e-05 0.0002029452941059162 0.0001407379895681515 0.0001064768870264743 0.000244767284513614 0.0002468441600527171 0.0002566997434918505 0.0008613212106993728 0.0009331232008555901 0.002366612485314334 0.0001082872611668506 8.232492560367177e-05 0.0002505975574962349 0.0001106574271112493 6.512897261501394e-05 2.843756307058243e-05 4.212599296948838e-05 1.945932153546437e-05 1.836130713428474e-05 1.862905460825459e-05 0.0001039820897403843 9.313398240351489e-05 0.0001289036332252635 0.0001271404036700119 0.000681483247735315 0.0006849464275120454 0.000259199679858213 0.000768293941654008 0.0004108515589962281 0.000507646947379925 0.0005689945201190483 0.003703163386436614 0.0003421027606833604 5.231986306597491e-05 6.386818357029256e-05 0.0004424784159180462 0.001085963820056435 0.002265403736926963 0.0172804349250768 0.000224067424623442 0.000239689214842187 9.987774073394462e-05 0.0001366522252688185 9.635837441202e-05 9.148858490348744e-05 2.712172771524024e-05 7.269453114844282e-05 3.596868872079995e-05 3.797828903273626e-05 2.968443880746463e-05 1.392018005219597e-05 1.107680628820162e-05 9.732076748036889e-06 1.437688972316664e-05 4.652619407252701e-05 6.734084000470375e-05 0.0001056910965431257 4.0003328987126e-05 6.703164983790089e-05 0.0001436200218876138 0.0001084143472951382 0.0001272310228017659 9.501171453507595e-05 3.59863281289563e-05 3.992877790892635e-05 4.200928498221401e-05 0.0001368456374848392 3.010544797277248e-05 0.0002054575063645814 4.782725135399346e-05 3.363182221249872e-05 4.874878700533714e-05 8.429138605947628e-05 3.075794461615544e-05 6.033219515799715e-05 9.878383709249761e-05 0.000518888468750589 0.0001511434752430318 9.501119604848896e-05 0.001145078059099802 0.0001321761349117878 9.520394547735123e-05 0.000104750215868421 6.993665085985867e-05 0.0001227142535782377 2.305603669583434e-05 4.473525235937359e-05 0.0001064004541859731 0.0001045461538922154 0.0002239352159598695 0.0002753672948649921 0.0007051364208408017 0.0003433238036514297 + 0.0002508302030648224 0.0001650401058981288 0.0001104936990827809 0.0001439382541690293 0.0001504308318089898 0.0001737064728217774 0.000328974498415846 0.0001000203134822186 0.0001563242645943319 0.0001213733281275609 4.306293668321359e-05 0.0001339046067059257 0.0001053564294970499 0.0001208154527763128 0.0003263250239804449 0.0007101939680485003 0.0004478525147053602 5.516950176875923e-05 7.657053913057155e-05 7.357147920572515e-05 5.872381909455271e-05 3.679267435074962e-05 2.034337033762768e-05 1.53943780887289e-05 1.683488210346695e-05 1.277010791511657e-05 1.365218312088246e-05 3.249454708509347e-05 3.481374172409346e-05 4.122201784895196e-05 8.113495264439052e-05 0.0002224888564246186 0.0001344167874055557 5.632599162375129e-05 0.0001678194577561243 0.0001108231883399924 0.0001390736670394688 9.514442522728928e-05 0.001160802569796004 0.0001658307204017717 2.537367039323613e-05 2.632191945650675e-05 0.0001135643130929509 0.0002419382797889114 0.0002705241812428483 0.001440477637528303 0.0001043458813523301 4.953645564853559e-05 4.86427141552781e-05 4.66386769399918e-05 4.760477883891667e-05 4.818305088249986e-05 1.593573336933218e-05 1.795444319085959e-05 1.310156751088698e-05 1.343004152332128e-05 1.441614229946708e-05 9.95520937863148e-06 8.284396074031974e-06 8.288108062970423e-06 8.752312751880709e-06 2.859167789281969e-05 4.157792756842582e-05 5.796876571650955e-05 1.373334351839617e-05 2.525245320228464e-05 7.310923912129397e-05 5.740319694780283e-05 4.443725547531585e-05 3.255122022238766e-05 2.385530854098761e-05 2.219666103542295e-05 2.532664368004589e-05 5.687926922348652e-05 2.078666433646958e-05 5.687295069378706e-05 2.561939708556338e-05 2.107414744401126e-05 2.967275890242149e-05 5.225886854987039e-05 2.078134374450258e-05 3.47792823234272e-05 7.514717207257604e-05 0.0001967545461241116 0.0001031771876220944 6.481083068621274e-05 0.0006064433040400274 8.557098657746565e-05 8.074487405451691e-05 8.98242776798952e-05 6.341833987733025e-05 9.111166755815248e-05 1.985052620057104e-05 2.495215618125712e-05 3.555413059785906e-05 3.674523141938835e-05 7.794789854287387e-05 8.625731697620154e-05 0.0001287862898529113 7.807540325188711e-05 + 0.0003531036749180316 0.0002148826866630316 0.000154900573434702 0.0002055942737513305 0.0002123811702716694 0.0002607861600125716 0.0005174961036544801 0.0001546707294863836 0.0002171741662095883 0.0001760500210394866 5.012884464861145e-05 0.0001761339545325313 0.0001345320185421883 0.0001552166936971133 0.0004097687818322981 0.0009495493069415772 0.0005104189836551143 6.774205145987366e-05 0.0001117742223559759 8.647256273164317e-05 7.309889423012805e-05 4.472264357957556e-05 2.441246144968545e-05 1.305953217212164e-05 2.050151724120042e-05 1.339347765849652e-05 1.482180435630198e-05 3.284793054092461e-05 3.820218404726461e-05 4.517305413642703e-05 0.000108270573850433 0.0002751038597086364 0.0001506560480333263 5.658869888414131e-05 0.0001970088353591137 0.0001329684618767146 0.0001698370400404769 9.116399159836419e-05 0.001452457982292543 0.0002135731922230377 2.796239608215956e-05 2.762596567151832e-05 0.0001349754326600561 0.0002847568612427409 0.0002430293199804368 0.0009225116415052526 0.0001331801381585507 4.600001737564696e-05 5.871179682692684e-05 5.312520094946649e-05 5.755106819016476e-05 5.90184082831513e-05 1.677227114882385e-05 1.157426184406063e-05 1.021445545745792e-05 1.037455112395946e-05 1.368939943802161e-05 9.874652420194252e-06 8.027109984709568e-06 8.614037639631533e-06 7.731344673800322e-06 3.471201103621979e-05 5.21855277497707e-05 7.269529793063612e-05 1.053335446243864e-05 2.53445104121397e-05 9.222148438681188e-05 7.14697557171462e-05 5.053883131012071e-05 3.408308509733615e-05 2.89811381577465e-05 2.485915271677186e-05 3.013384576888711e-05 6.849854330681637e-05 2.477785942289756e-05 6.368665647826788e-05 2.92970967947781e-05 2.438273381599743e-05 3.605733239098186e-05 6.668614941673923e-05 2.456168990860874e-05 4.231155210021598e-05 0.0001049055967747847 0.0002486165154245157 0.0001407482622042266 8.642622021071134e-05 0.0007950273698398291 0.0001153598193326388 0.0001174850001390837 0.0001317228540074211 9.207708968972383e-05 0.0001288382494948337 2.526175940431585e-05 2.880111782133099e-05 3.794823211933362e-05 4.019152673606641e-05 9.46895470512743e-05 0.0001041488406130497 0.0001394525583684469 8.58176908984376e-05 + 0.0005754223755651822 0.0003698094134705343 0.000262490452143993 0.0003424744195399398 0.0003538275287979786 0.0004290563131803538 0.0008486381283319133 0.0002555803566650638 0.000363264269324759 0.0002948081197047259 8.183398870187375e-05 0.0003034260287009261 0.000230884187566005 0.0002679766085496027 0.0006748059355974334 0.001470439831226855 0.0008343361143907657 0.0001070527594020376 0.0001828497301410437 0.0001408736968961932 0.0001155316727299294 7.092275668796333e-05 3.672994904846405e-05 2.043027084397409e-05 2.907921933115176e-05 1.822351362790187e-05 2.019982714074331e-05 5.419395044015118e-05 6.289477065379856e-05 7.490649843333586e-05 0.0001794187762627075 0.0004644930510604439 0.0002484369974489198 9.447533889606063e-05 0.0003388907588650625 0.0002237519100454222 0.0002941400009781603 0.0001476592628755213 0.002327071752500132 0.0003625673375537986 4.439846950887727e-05 4.432924596997623e-05 0.0002273179180569684 0.0004837948850564544 0.0003704343936936638 0.001063181738317098 0.0002285442102003543 7.691613726912294e-05 9.296279409731767e-05 8.691917490288859e-05 9.111818919116388e-05 9.295192416658438e-05 2.41906793156943e-05 1.928508982729227e-05 1.565520433288725e-05 1.602611599338388e-05 2.017589661562624e-05 1.30847575263715e-05 1.036667421772108e-05 1.100307559909197e-05 1.015913365165488e-05 5.522685988168519e-05 8.176711094165512e-05 0.0001143697597996152 1.638240296841786e-05 4.067202649338242e-05 0.0001494347478612212 0.0001125790626446133 8.320607255996038e-05 5.616841376365755e-05 4.536235783803022e-05 3.842292196054586e-05 4.770896275374525e-05 0.0001096210739888193 3.750564401627798e-05 0.0001049584748891164 4.647287178372039e-05 3.710543950674605e-05 5.739107080771078e-05 0.0001040248318524561 3.716572080136871e-05 6.729065188437744e-05 0.0001721070386189183 0.0004224625234883206 0.0002379902967284409 0.00013817913115588 0.001281634581925317 0.0001925266508777668 0.0001946343182979149 0.0002200912556702406 0.0001482414734539361 0.0002166072088840565 3.776778504516187e-05 4.555939626982308e-05 6.291896327326185e-05 6.656371633795288e-05 0.0001546572016017933 0.0001714503476542006 0.0002254356603863528 0.0001403933204926489 + 0.0007946107472989183 0.0004626815495072378 0.0003581512321062519 0.0004769397908432893 0.0004902860028437317 0.0006147019540065912 0.001231806530256563 0.0003650700204360646 0.0004987671114520253 0.0004112438571866051 9.27733607340997e-05 0.0003920923988189884 0.0002756200505515949 0.0003325022689075752 0.0007813838972463572 0.001868637601852186 0.0007788759160973768 0.0001250160345094287 0.0002527626423844964 0.0001419609948278833 0.0001364303010227275 8.552579429377261e-05 4.485361803929777e-05 2.142056958831517e-05 3.579886420368439e-05 2.150008926804503e-05 2.383118788884531e-05 5.602108117130911e-05 6.949448688686743e-05 7.960579664612055e-05 0.000231799817807854 0.0005293269098789466 0.00023410413507996 8.871281332822889e-05 0.0003479777159203223 0.0002319028422768099 0.0003200951853692402 0.0001243026298247685 0.002408370982212915 0.0004539773706007111 5.0455069359856e-05 4.83271544808872e-05 0.000233323683191955 0.00049511228368182 0.0002907499876245723 0.0006385532525232662 0.0002797891129429075 7.087530631899597e-05 0.0001075461537780598 9.307309973038969e-05 0.0001059158926839388 0.0001094861709987072 2.740936524858739e-05 1.866172434716873e-05 1.691564209593821e-05 1.720430750751234e-05 2.231402005037353e-05 1.604831403767548e-05 1.279293296363448e-05 1.364244860724284e-05 1.218859697615926e-05 6.796760494509613e-05 9.993993606371987e-05 0.0001358061777807507 1.741901733609552e-05 4.289970571846879e-05 0.0001777550351356183 0.0001325483540028927 9.05816940885984e-05 6.003753356509378e-05 5.602069492738337e-05 4.437066371565379e-05 5.793727657987802e-05 0.0001218592117524508 4.555206108136645e-05 0.0001053038571647846 5.450756586711236e-05 4.396078098167777e-05 7.053122456923688e-05 0.0001266521827325562 4.4854061174604e-05 8.173597043992231e-05 0.0002293572071323524 0.0005028788456549194 0.0003184517106831208 0.0001758596337815277 0.001548630982473043 0.0002510757845115563 0.000266786803372554 0.0003044890547840851 0.0002008557336949934 0.0002930965071499259 4.814419756371535e-05 5.392597793729692e-05 6.753888330024438e-05 7.277528540328149e-05 0.0001648861734864226 0.0001788332342123056 0.0002022086460691241 0.0001313566338545513 + 0.0009854139991816169 0.0005173577891781633 0.0004251401921493425 0.0005828594825629807 0.0005959717191927894 0.0007876827831552191 0.001625147052422449 0.0004648148352117687 0.0005998914862033189 0.0005022985315861206 9.773041963967444e-05 0.000442915409529121 0.000295819476850312 0.0003640271160794128 0.0008864242497033104 0.002181707969365121 0.0008512075537314701 0.0001346817469869421 0.0003095353184292549 0.0001437702784166106 0.0001484033966114851 9.246515525873633e-05 4.822063884546424e-05 2.118109714288607e-05 3.963770667780864e-05 2.329747281493155e-05 2.572439541381755e-05 5.366964630582061e-05 6.998921600853691e-05 7.997470769538495e-05 0.0002647406028444266 0.0005795914264634661 0.0002314537597722932 8.64664790682923e-05 0.0003540461745377144 0.0002343681049126189 0.0003296058006938551 0.0001209596047857531 0.002623771618626591 0.0005086472140867215 5.069593235873526e-05 4.714931138849465e-05 0.0002346866890512445 0.0005228576990887746 0.000287209881810746 0.0007595005896288143 0.0003035274386196107 6.733657134283533e-05 0.0001148587802468626 9.508738987484833e-05 0.0001134740940624823 0.0001184987363274104 2.81170748905879e-05 1.787359563820701e-05 1.722825852112919e-05 1.748277495750017e-05 2.283116067047786e-05 1.807915162999052e-05 1.447821082933842e-05 1.59155165562197e-05 1.31632678517235e-05 7.344583622881373e-05 0.0001104362791863878 0.0001487996417495197 1.757069675178968e-05 4.095827081940229e-05 0.000193508295463829 0.0001444566172139616 9.326824865496519e-05 5.865771278479315e-05 6.047632211902965e-05 4.517192525099745e-05 6.155300462751256e-05 0.0001286448750690283 4.864713456953496e-05 0.0001060631606648599 5.618852716793299e-05 4.585641677579133e-05 7.627926817121988e-05 0.0001408423687827565 4.761578006373668e-05 8.850907564550425e-05 0.000270752794683915 0.0005552742112406861 0.0003707652201647704 0.0002012532702337921 0.001768373777768062 0.0002886677745408406 0.0003233473009274235 0.0003707672187829303 0.0002445175300067604 0.0003480788870007245 5.436262770786016e-05 5.597433232651383e-05 6.691231867250735e-05 7.329344204265453e-05 0.0001697995560867582 0.0001821677816273848 0.0001985936217785422 0.0001301726953890636 + 0.001296027950662193 0.0006319841673132487 0.0005340390448793642 0.0007456881463525633 0.0007609134673742801 0.001043691558720639 0.002223436064895168 0.0006060024343810255 0.0007625236826385162 0.0006406147088284797 0.0001183669104989349 0.0005418924997968588 0.0003581345043315309 0.0004374242047671117 0.001139830731171187 0.002890922495581094 0.001057525712939267 0.0001654453076707085 0.0003923284188029896 0.0001778362228996855 0.0001838681123409458 0.0001120615856073925 5.911117424517442e-05 2.708953493879562e-05 4.917385101066429e-05 2.931080407364561e-05 3.224434789217412e-05 6.376202790647767e-05 8.246262683897498e-05 9.381082050197165e-05 0.0003286471466950047 0.0007069228522382787 0.0002734182426920029 0.0001003039981135601 0.0004060331698561015 0.0002807683008434481 0.0003855345693892787 0.0001461427102356083 0.003439168748528232 0.0006217848943741444 6.115645572890571e-05 5.703463221706784e-05 0.0002782000493830594 0.0006149643966768537 0.0003131779190557182 0.0007320396395869011 0.000364879696380882 7.685300766802072e-05 0.0001400378128213475 0.0001132559803114219 0.0001386047095124354 0.0001456044650005595 3.508836200083465e-05 2.24606812615491e-05 2.117835226655984e-05 2.161587426030565e-05 2.908248427502258e-05 2.249160142753226e-05 1.778787600414944e-05 1.991438128357004e-05 1.574872615606182e-05 8.90869487442103e-05 0.0001361904526930857 0.000185840868269338 2.171915216209186e-05 5.026222764925592e-05 0.0002405837265513355 0.0001801892992077114 0.0001114675236593143 6.966462449042865e-05 7.41075341323949e-05 5.581396905540714e-05 7.500732822052214e-05 0.0001590947814449351 5.953917142065279e-05 0.0001275973347105719 6.782106598279825e-05 5.607899210602341e-05 9.243553384052916e-05 0.0001753362554595128 5.80887086787385e-05 0.0001073223690539749 0.0003404955492918305 0.0006770037771559601 0.0004598164381874881 0.0002517695434889333 0.002339422100604338 0.0003600509371892713 0.000411926655594641 0.0004728302943703966 0.0003143441721817908 0.000440554276082139 6.754516685703038e-05 6.814543105804205e-05 7.879325484339006e-05 8.641530494912786e-05 0.0002092811736815747 0.000223480105088214 0.0002397807012641806 0.0001596178008753668 + 0.00223387099441652 0.001195110062297999 0.0009128087545491326 0.001259128980805713 0.001294659447310664 0.001728268908962605 0.00372507061699423 0.0009686404211777244 0.001320054705914231 0.001072495268147122 0.0002233371255186967 0.0009756861542840056 0.0006639938280272872 0.0007858440472627848 0.002194269615266364 0.005400502198972035 0.002184242288647553 0.0002917357705847223 0.0006217245411761496 0.0003475789255951156 0.0003265289403771021 0.000195662355817916 0.0001051688621274138 5.445642587886823e-05 8.672093386508095e-05 5.477685328969528e-05 5.977566869574957e-05 0.0001302596249033172 0.0001562206062963867 0.0001780922493210824 0.0005617436377285401 0.001358583254942758 0.0005649509974627875 0.0001962889399003132 0.0008174212193576835 0.0005554421365800977 0.0007578846083440283 0.0003041868325084351 0.007518698229855403 0.00113793450759303 0.0001151138018435915 0.0001121511288850741 0.0005462550330204152 0.001218898066193574 0.0006799676086215456 0.001671559340103101 0.0006508707517038914 0.0001547888805077946 0.0002485362005337777 0.0002101039537940608 0.0002471232765124398 0.0002588008026656041 6.654334077538238e-05 4.610023862028356e-05 4.127068793025046e-05 4.242205832127866e-05 5.723853242045607e-05 4.129809785524685e-05 3.26580457539194e-05 3.494776537138478e-05 3.009996275693538e-05 0.0001565869533699527 0.0002380217187507583 0.0003342187429211663 4.260446300108356e-05 0.0001021832565406555 0.0004341051861374012 0.0003259861486384352 0.0002110771627812369 0.0001401886420282494 0.0001331244547913002 0.0001084892029155071 0.0001363668743721291 0.0002972193750068186 0.000106433149500873 0.0002459769526979017 0.0001246153513285719 0.0001026384195554897 0.0001618892965460361 0.0003057075802459508 0.0001034635328522882 0.0001878929923755379 0.0005659311871255568 0.001294937073200941 0.0007804696889799345 0.0004269050446552569 0.004571934323937654 0.0006213227988283165 0.0006820069699742248 0.0007858316127027365 0.0005175085059221374 0.0007556698625847957 0.0001168526317627538 0.0001270449130288398 0.0001553314324453936 0.0001666770510269089 0.0003981181903824904 0.0004323443871534494 0.0005066149074437476 0.0003194074177699235 + 0.005756902604790781 0.004889799433470898 0.002774862214920404 0.00343299947860487 0.003604395357214685 0.004151887788623299 0.00832115187407112 0.002265093452010092 0.003884786722011313 0.002925358791571853 0.001495242115765905 0.003536256263707571 0.00290094594264545 0.002950945980346731 0.007891082221558321 0.01407159267560054 0.01153054760502137 0.001230163273060469 0.001525861731563438 0.002324688219044191 0.00137435490654525 0.0008436454826821205 0.0004058311575221296 0.0004509431699268873 0.0003149458154751983 0.0002616673623165866 0.0002686863296119668 0.001152853597481851 0.001065125013990809 0.001316515763008397 0.001849559269672341 0.005704467336464347 0.004297155570080591 0.001923380429865063 0.005089158965239093 0.003314744085024302 0.004153368147804315 0.003776720222411711 0.02719598699316705 0.004127139388142353 0.0006321679968444016 0.0007505744440479134 0.003197228945534647 0.006402933156532953 0.008470099053495161 0.04494997870045481 0.002478955845541364 0.00172677688810019 0.001132878719115382 0.001329698920576661 0.001152304115924707 0.001166145593447965 0.0003276095751587604 0.0006618306514845074 0.0003713049943279145 0.0004014269589767139 0.0003656295177165703 0.0001960088552408479 0.0001450499706834307 0.0001231445189091573 0.0001712968555409589 0.0006577703619718989 0.0009885978351178437 0.001472017152103433 0.0004031758832248045 0.0007611283177837436 0.001831937516389104 0.001487725793587913 0.001494545352237253 0.00117869151031158 0.0005587820455303927 0.0006029223693246877 0.0006263502837953183 0.001660425339636618 0.0004214344350685906 0.001891501558294095 0.0006174419714817247 0.0004488873155459316 0.0006785156232957945 0.001195362043056036 0.0004071254570447991 0.0008149318844559161 0.001666943546624111 0.005373982551827083 0.002389670705248648 0.001406854883221342 0.01366163299006118 0.002080690586282685 0.001918143816617146 0.002195742206751561 0.001460381956277956 0.002384684109529189 0.0003982381667100299 0.0006466490829666327 0.00128113609406455 0.001268775042902348 0.002175895986134435 0.002489084051713775 0.004525339564164454 0.002672804297240816 + 0.02161260750277449 0.03377935007955557 0.01388030166579313 0.01469953801048973 0.01582809328039048 0.01466439538410214 0.02453200238726083 0.007851799931671621 0.0183489372601997 0.012653539235842 0.01345510157304375 0.02117120980498299 0.02061460048735242 0.01786584364174715 0.04738959699575496 0.04776445694113285 0.09935788623831598 0.00791904596644244 0.005703744562937985 0.02129571784615791 0.009017386554731388 0.005445945258632179 0.002329581142930692 0.003759779368024851 0.001703741392049096 0.001687282326265915 0.001670979162874175 0.010760719074419 0.00896075731476742 0.01161645088618712 0.009962902299779586 0.03995690308745026 0.04322332157780018 0.01905933313387642 0.04745205000043917 0.02927561743600648 0.03555424191197076 0.04377275449469664 0.157169858676415 0.02433101879713107 0.004635776242121636 0.006088976115105282 0.0273299232727009 0.05379837945408816 0.0953304999716309 0.496410816628762 0.01512548506644507 0.01714556895389663 0.007654600271038703 0.0108998193902714 0.007973096300807114 0.007947102732586586 0.002152292219570029 0.006080469159513768 0.003074480817598868 0.003418586484983166 0.002802102249226834 0.001218494781056734 0.0008257155678990102 0.0005792980912104895 0.001113643226403838 0.004183082249461734 0.006377165174235699 0.01019778740697319 0.003396662200390921 0.00641690360404823 0.01240440717077718 0.01058219873841892 0.01347526181763214 0.01106381046182037 0.003568360565196826 0.00465798891735858 0.004284526151494106 0.01350540556746438 0.002474578966690899 0.01781704318351629 0.004318188160066683 0.002843825584868398 0.004301467369597134 0.007394246197165444 0.002355931501881514 0.005311836664297687 0.007951310448355287 0.03744040957490924 0.01189094645082633 0.007510632244812854 0.06009126174538437 0.01155548521112593 0.008739995162734715 0.009927395749386392 0.006705734201091218 0.01260789656627992 0.002079074348827703 0.004716843770140144 0.01202494611797533 0.0115517582057123 0.01761501623326822 0.02103309550150811 0.04915971702808264 0.02696434668009218 + 0.01560826182079467 0.04499936143109551 0.0131393282466945 0.0117487129371483 0.01313457493343151 0.008755869393610283 0.01027439923123552 0.004694514288217988 0.01645015319121512 0.01007617290629526 0.022327149847996 0.02434232307590634 0.02787058053532832 0.02151739685542431 0.06352812341408587 0.03361184537017969 0.1626480856478558 0.009861107437684424 0.00410308267202808 0.0367051069212927 0.01124928930774161 0.006986197240518521 0.003034467121075579 0.008643472641168159 0.002053958271716283 0.002776742024771295 0.002561791436605176 0.02131914046064765 0.01493602519175141 0.02012368227850914 0.01046385160321961 0.05811147087755764 0.0797834875431267 0.038484734069403 0.0821752885542395 0.04906326657577154 0.05805140223788641 0.09780077689982036 0.2210534235328936 0.02915591935557416 0.007372616963770895 0.01062626659039267 0.04497112803553804 0.08782930334511008 0.1811145139804653 0.8447001283302829 0.01825540800275682 0.03679769001262834 0.009969370901263375 0.01718603115459594 0.01054506025410085 0.0103244384208665 0.003531010329488993 0.01944972714088422 0.008069625658198021 0.009217983629572046 0.005748344356106827 0.002058733375392308 0.001374651650351666 0.000705801726496702 0.002353742591274965 0.005515808991361837 0.007915457483228749 0.01311328481953211 0.00897122388171212 0.01194189303828708 0.01568131385618443 0.01390640992504899 0.02299657822464951 0.02139461929643005 0.004950496798727499 0.008032991225121577 0.006230542281684848 0.02015359456789412 0.0033012670192889 0.03225439236410921 0.006480293934462367 0.004108495637709098 0.005611907381211978 0.008745346209476423 0.003116166232913997 0.006898033946661997 0.007301895798853764 0.05253680518984183 0.0115619627249437 0.007790262128111181 0.06254406845355831 0.01227908737344308 0.007389947951331521 0.00823506415730435 0.005749663410497874 0.01236332134133988 0.002318609779678127 0.007365352596210073 0.02271675828436059 0.0206726207014114 0.02691191345280686 0.03368791624482981 0.0969965214401185 0.05200059256568679 + 0.001617449825804584 0.003948587171151985 0.001285618893675178 0.001172154056561681 0.001303872537036455 0.0008930621280853757 0.001057793364765303 0.0005101219375660548 0.001598736941716083 0.001009652104400516 0.001928702516195813 0.002304372492801576 0.002597131939694464 0.002144148429463755 0.006202445882498964 0.003565497021314812 0.01639814157510244 0.001039211000442464 0.0004703519414999136 0.003274304898809532 0.0011458343749986 0.0007334454875724816 0.0003389369911204199 0.0008609250089222087 0.0002357818822957825 0.0003035421571624397 0.0002838181262561079 0.001894072325953289 0.001412015977614089 0.001868879650846367 0.001081360607688708 0.00557010325333529 0.007235549701016808 0.003515350287106145 0.007531283994744342 0.004481424751599405 0.005278745859474299 0.008200644806660051 0.02279813426489952 0.002825395034498968 0.0007539417727144837 0.001035469045479687 0.00428570846246501 0.008585500413500924 0.01750858039901537 0.09321299375719683 0.001854444451124593 0.003394686978268169 0.001039064609130946 0.001672382949232443 0.001076111055475337 0.001045041422219839 0.0003912161074275389 0.001782601501059133 0.0008086341056632307 0.0008994843481495707 0.0005844079803694058 0.0002326558480660879 0.0001646645146990977 9.522022422459031e-05 0.0002656805133085527 0.0005768287775360648 0.0008003086632655254 0.001272569580699212 0.0008905064030493293 0.001146311054039728 0.00153125602196269 0.001338815583352471 0.002044881865479908 0.001857207820563644 0.0005080765718332714 0.0007565621793048649 0.0006234020155773123 0.001858590102180813 0.0003657316192899884 0.002886277684087446 0.0006658785439803694 0.0004433687631006933 0.0005891595733729105 0.0008937419901258181 0.0003527994776693077 0.0007154705494265556 0.000770526938826066 0.004811716584889325 0.001184827043399395 0.0008207636633699167 0.006267168544937363 0.001225035809021335 0.0007606505852777445 0.0008338949400155116 0.0005999574343320546 0.001189584071255467 0.0002623328352626686 0.0007200063425898406 0.001977213166973968 0.001832483515038064 0.002523556606270461 0.003111689027338826 0.008423401326105306 0.00458284503899975 + 5.311059527102202e-05 0.0001003637265739599 4.175524479421711e-05 3.938825044258465e-05 4.28221315189603e-05 3.235431995562976e-05 3.758692335509295e-05 2.187678346388111e-05 5.006293177700627e-05 3.501455067578263e-05 5.17202210232881e-05 6.670726664026461e-05 7.183707327484967e-05 6.429818746234162e-05 0.0001606044477551194 0.0001089398768954197 0.0003932632328247365 3.596488405221976e-05 2.102474202558824e-05 8.131682553980113e-05 3.821873154663535e-05 2.710749780021615e-05 1.589007903035622e-05 2.83724325775836e-05 1.274217936497735e-05 1.436790434894419e-05 1.389361161585612e-05 5.00705438284399e-05 4.186381424631236e-05 5.175109095389985e-05 3.721958836777617e-05 0.0001415527690138418 0.0001615642019388019 8.387290224121102e-05 0.000173122569501416 0.0001086968955732459 0.0001265554764202648 0.0001622604339104328 0.0005757004829547441 8.038912665142561e-05 2.678779560838507e-05 3.311882406009659e-05 0.0001074086758059423 0.0002084755568869667 0.000350844576329834 0.001545063546151582 5.740286636246594e-05 8.057730383370654e-05 3.556178764974049e-05 4.918026273870169e-05 3.61084649540544e-05 3.516653317703344e-05 1.717560757441561e-05 4.598283650381063e-05 2.689041450665286e-05 2.872975101197994e-05 2.165894417771597e-05 1.217181561230518e-05 9.949819173016294e-06 7.589918055828093e-06 1.302448797702027e-05 2.25402962712451e-05 2.85516827531751e-05 4.041493309614452e-05 2.877332681805456e-05 3.531412156476677e-05 4.745005897177634e-05 4.187101856700792e-05 5.477721556701454e-05 4.898839737421667e-05 2.029374687140262e-05 2.569410153796525e-05 2.320642219899582e-05 5.280992306921917e-05 1.665729360667001e-05 7.23194315703779e-05 2.457647752862613e-05 1.874665911216766e-05 2.295487625048054e-05 3.143139519679039e-05 1.640006848191433e-05 2.641256793367575e-05 2.892947836130588e-05 0.0001213985532615425 4.009761070378204e-05 3.015259978411677e-05 0.0001700835127280698 4.037185966865309e-05 2.839955443789677e-05 3.025719546201344e-05 2.388430191047064e-05 3.872596087717284e-05 1.366127617075108e-05 2.538944697505485e-05 5.177293898839253e-05 4.954599189943565e-05 6.867522472120413e-05 8.056499928343896e-05 0.0001766987250100271 0.0001048291241438903 + 3.021868359098789e-06 3.68540774786652e-06 2.477722929938864e-06 2.514575939471797e-06 2.599578891704368e-06 2.401606479907059e-06 2.677716537391461e-06 2.058667206483733e-06 2.755719776814658e-06 2.375330510062668e-06 2.237561247397934e-06 3.02189925349694e-06 2.958560752830408e-06 2.954462257065416e-06 5.403887428201415e-06 4.925044201797846e-06 1.0060789749744e-05 2.155167855732998e-06 2.007341427301412e-06 2.801002004559905e-06 2.200878643776605e-06 1.917605953138946e-06 1.664663013656309e-06 1.727941850049319e-06 1.599961493070623e-06 1.58209052614211e-06 1.584003868515538e-06 2.070329742309696e-06 2.050993938240708e-06 2.209206833470034e-06 2.305898913590454e-06 4.665827287197999e-06 4.157546440453075e-06 2.599343781994889e-06 4.680504272158714e-06 3.422360450144879e-06 3.888111372418734e-06 3.591290635540645e-06 1.573170396085288e-05 3.406404303518684e-06 1.812205979945247e-06 1.874610084939832e-06 3.446802839590646e-06 5.829516913635757e-06 6.962210465921714e-06 2.06745315534107e-05 2.764072771554993e-06 2.458192884802202e-06 2.108825167823625e-06 2.248291336215402e-06 2.105926741435837e-06 2.093838944006166e-06 1.640238444622355e-06 1.821769544108065e-06 1.692116317286718e-06 1.706106353083214e-06 1.667399139648751e-06 1.533597483671656e-06 1.486896522351344e-06 1.452203733265378e-06 1.526284769681752e-06 1.802924387561688e-06 1.959957415920144e-06 2.217296795947732e-06 1.709723214560199e-06 1.878188914616885e-06 2.412203603086027e-06 2.233934587536623e-06 2.278244764397641e-06 2.069772307322637e-06 1.737344277330521e-06 1.76492375203452e-06 1.778474000957431e-06 2.369028912596605e-06 1.676285069862615e-06 2.554973235646685e-06 1.794937730892343e-06 1.698626334700748e-06 1.816323820236221e-06 2.061765506766733e-06 1.674916349614364e-06 1.893647738171467e-06 2.138136224516529e-06 4.190602847842229e-06 2.442201473940031e-06 2.112764349249119e-06 6.210755458369022e-06 2.369481904906934e-06 2.139644294629761e-06 2.199665473767709e-06 1.992930933170101e-06 2.350108843529597e-06 1.637259003928193e-06 1.793119025705892e-06 2.134066335202078e-06 2.137364297993827e-06 2.714427573380362e-06 2.909572376808001e-06 4.182307741018576e-06 3.037601164379566e-06 + 1.965406767112654e-06 1.973107117692052e-06 1.825352384798862e-06 1.861477571196701e-06 1.874802791235197e-06 1.862437358113311e-06 1.923792623870213e-06 1.772186294601852e-06 1.89402237538161e-06 1.828810297865857e-06 1.59438479840901e-06 1.896597083828055e-06 1.835038474951034e-06 1.874212395946984e-06 2.200734911639302e-06 2.242774534977343e-06 2.512080465422173e-06 1.658577781782355e-06 1.733904326783886e-06 1.714549622278128e-06 1.674260126094396e-06 1.565267591985275e-06 1.428646928758326e-06 1.334314521983515e-06 1.392193681226672e-06 1.329379138326203e-06 1.341642828833756e-06 1.480237706630305e-06 1.524798744156897e-06 1.562875855398715e-06 1.757693475212818e-06 2.083153235687973e-06 1.862027481536188e-06 1.606242625129539e-06 1.974817120498074e-06 1.830938277436189e-06 1.917517828076143e-06 1.711691737682486e-06 3.11907103878184e-06 1.961164919350722e-06 1.453654824956629e-06 1.448947763549313e-06 1.837103983604038e-06 2.138458372158425e-06 2.040417525606131e-06 3.171863644624295e-06 1.831635458415803e-06 1.55030814674717e-06 1.628250199559034e-06 1.604878441696655e-06 1.623651311177809e-06 1.627784183000358e-06 1.36269294870317e-06 1.3215996226279e-06 1.303728193846609e-06 1.305976891075034e-06 1.337675250567827e-06 1.291670898240227e-06 1.264283255864029e-06 1.265300326735996e-06 1.263616496771647e-06 1.50557977462995e-06 1.596381167701111e-06 1.672271906727474e-06 1.307784270210277e-06 1.430934204904588e-06 1.729120455706834e-06 1.669593572728445e-06 1.593304716607236e-06 1.490889950162e-06 1.46373130860411e-06 1.427027655154234e-06 1.471375199457725e-06 1.663796297179942e-06 1.431392330886183e-06 1.642931458434305e-06 1.464864940459165e-06 1.42673308545227e-06 1.514586021045261e-06 1.648950600952048e-06 1.430113428568802e-06 1.552095532986186e-06 1.737436431170636e-06 2.034712178300424e-06 1.812786347699102e-06 1.701917330620972e-06 2.348049740419356e-06 1.77170122839243e-06 1.751929247006956e-06 1.7734011663606e-06 1.699367217611325e-06 1.785001174425815e-06 1.436082413874828e-06 1.459662456682054e-06 1.517445802790007e-06 1.534768479416471e-06 1.737846041294233e-06 1.761423245483229e-06 1.829845757583826e-06 1.709000425620388e-06 + 1.930217571555204e-06 2.037104806618117e-06 1.713963314387001e-06 1.728274554579912e-06 1.756478098968728e-06 1.690933757458879e-06 1.826234893087531e-06 1.563193038123245e-06 1.80225369206255e-06 1.679378442531743e-06 1.627962973316244e-06 1.888782080072815e-06 1.871024871036298e-06 1.885905897225371e-06 2.438979143093434e-06 2.664634500604279e-06 2.878343318357679e-06 1.617060766179179e-06 1.552749301581002e-06 1.806890601585565e-06 1.628710322165716e-06 1.510502897872357e-06 1.382487283763112e-06 1.409126767271118e-06 1.340620997325459e-06 1.329928494442356e-06 1.331601382048575e-06 1.5784654507911e-06 1.572720019993312e-06 1.635276198896918e-06 1.66825436664908e-06 2.23926690878784e-06 2.058073867772237e-06 1.75748832731415e-06 2.158342592650797e-06 1.957848294154019e-06 2.053528369572177e-06 1.932998973330768e-06 3.98568908721586e-06 2.00260540239583e-06 1.463069700946562e-06 1.492477327502684e-06 1.967856693596559e-06 2.347928568013913e-06 2.425898864899523e-06 5.641562179192761e-06 1.833759615266217e-06 1.725684265707628e-06 1.597201215730593e-06 1.652238749372259e-06 1.592342925960111e-06 1.583887836886788e-06 1.369312620624896e-06 1.462062368062789e-06 1.388908550836732e-06 1.394552160860485e-06 1.3766884734423e-06 1.303797290574948e-06 1.278873654086965e-06 1.252861139278139e-06 1.305704529386276e-06 1.453465841905199e-06 1.522028973965917e-06 1.625400507521135e-06 1.398723188827944e-06 1.493316624134877e-06 1.703684290532692e-06 1.631714745542467e-06 1.650538187902839e-06 1.574358499567552e-06 1.416105988027994e-06 1.427595890390876e-06 1.438110558638073e-06 1.681470102710136e-06 1.389136809137881e-06 1.740095296298705e-06 1.452847637750665e-06 1.401612411910946e-06 1.460713686896042e-06 1.567429404047971e-06 1.390779710064294e-06 1.497654967153039e-06 1.60151592254465e-06 2.152211511230462e-06 1.714295933652465e-06 1.592732683519671e-06 2.812949606578741e-06 1.684216627495516e-06 1.594115246916772e-06 1.615089217921195e-06 1.530436435359661e-06 1.666353611540217e-06 1.363268381737726e-06 1.446136991489766e-06 1.600395364675933e-06 1.601824862973444e-06 1.797518837776124e-06 1.846850871345396e-06 2.042542639912881e-06 1.850340037634624e-06 + 1.998107453715647e-06 1.964797633036142e-06 1.764473623211416e-06 1.804028357810239e-06 1.822318353106311e-06 1.820042555777945e-06 2.054740050994042e-06 1.690797617470707e-06 1.846600724775271e-06 1.760653518090294e-06 1.654277014040417e-06 1.870826196181952e-06 1.838296679324003e-06 1.864832544384853e-06 2.289585564696495e-06 2.644809757867961e-06 2.653670307495304e-06 1.668080157557483e-06 1.661722791368447e-06 1.781319422633487e-06 1.674117736882863e-06 1.592457241628153e-06 1.516698166170727e-06 1.530503087820989e-06 1.494397423584815e-06 1.494978214111597e-06 1.495048280730771e-06 1.618411502590789e-06 1.620938849811182e-06 1.662391525769635e-06 1.715942616442589e-06 2.121358168238885e-06 1.957973415400716e-06 1.739814781132054e-06 2.039805767850567e-06 1.890009993843478e-06 1.962720105552762e-06 1.851389626494893e-06 3.786675204509038e-06 1.956146245873924e-06 1.557303363597384e-06 1.571673145406294e-06 1.900661137810289e-06 2.202011687657546e-06 2.208613177678842e-06 4.407093923575189e-06 1.825183721493318e-06 1.71335024568009e-06 1.65176919963983e-06 1.680254200664422e-06 1.646544827593743e-06 1.640814168979432e-06 1.514020869564092e-06 1.547960756909106e-06 1.519213881806536e-06 1.521295931894429e-06 1.516803976642223e-06 1.48014927958684e-06 1.459766579614552e-06 1.441025702320076e-06 1.475776542747553e-06 1.553755009098268e-06 1.599287763554003e-06 1.667615485700935e-06 1.523287238569537e-06 1.571637643138502e-06 1.723611607218345e-06 1.670669099951283e-06 1.671513544465597e-06 1.614520762416305e-06 1.530199710941815e-06 1.533940604758754e-06 1.541302978580461e-06 1.69906495983696e-06 1.520056880366383e-06 1.733705733641955e-06 1.551598451499103e-06 1.526151940822729e-06 1.558760491349176e-06 1.633555548608001e-06 1.522123650232743e-06 1.582633711194603e-06 1.676961272067956e-06 2.052043271305592e-06 1.761548475087693e-06 1.660515039247912e-06 2.637409785677391e-06 1.725502720262284e-06 1.677942769617857e-06 1.697726773386421e-06 1.624733343419393e-06 1.719418690981911e-06 1.503501152910758e-06 1.544754780979929e-06 1.632190056000127e-06 1.635378417574884e-06 1.780323156452823e-06 1.812800171308027e-06 1.940957908175278e-06 1.807040579393515e-06 + 1.528934302896801e-05 2.153445993258174e-05 1.085924957067164e-05 1.067785950681355e-05 1.148120328764435e-05 8.905179385010342e-06 1.071465010227257e-05 6.017141174652352e-06 1.279694359368477e-05 9.469095218150869e-06 1.062720350830659e-05 1.642700955528653e-05 1.709031072749667e-05 1.734455432611526e-05 3.840727243442643e-05 3.348517409307306e-05 6.989027643911072e-05 1.023640274766535e-05 6.403770809626508e-06 1.684700546533691e-05 1.034238595210013e-05 7.163014711153437e-06 4.117968423145157e-06 5.533218811137885e-06 3.349130864194194e-06 3.520133510903634e-06 3.491014858525432e-06 9.74987691648721e-06 9.504963209394646e-06 1.144241750239416e-05 1.050162422089329e-05 3.2961088093586e-05 2.966899833900527e-05 1.580807649403937e-05 3.385810816958212e-05 2.278653170861844e-05 2.660789576225397e-05 2.392113010074581e-05 0.0001037642951047246 2.066787859433816e-05 6.343991383772618e-06 7.333289719468894e-06 2.36521321301808e-05 4.314120198678495e-05 5.071562533576213e-05 0.0001376857711097301 1.598397238922189e-05 1.443307559512164e-05 9.832205714488396e-06 1.199979186061739e-05 9.627439501613821e-06 9.21777832729731e-06 4.244073306125529e-06 6.544896304916392e-06 5.008017378571594e-06 5.14381173388756e-06 4.575492440039852e-06 3.174324433530273e-06 2.828657940767698e-06 2.44448031594402e-06 3.282870203236143e-06 5.586374271615568e-06 7.189500294657591e-06 1.00733284611465e-05 5.251558111041277e-06 7.490183978831055e-06 1.22185444446643e-05 1.033007130502028e-05 1.161660166815182e-05 9.488509071786666e-06 4.704117458231849e-06 5.253901605328792e-06 5.284255507831404e-06 1.221568989961952e-05 4.266035649180822e-06 1.482234241123592e-05 5.885538790550982e-06 4.617475060086917e-06 5.770450989928122e-06 8.319156670211214e-06 4.337310187452204e-06 6.77175338026359e-06 8.241963168842403e-06 2.76539463648362e-05 1.128492338153819e-05 8.541108918791451e-06 4.414898262794509e-05 1.074941886969327e-05 7.605573507873942e-06 8.008184011032426e-06 6.078051555391539e-06 9.699731606360729e-06 3.556623084932653e-06 5.614951149368608e-06 1.020961492059769e-05 1.023017102141921e-05 1.604281697709098e-05 1.797591758645467e-05 2.933809617644556e-05 1.938755907104905e-05 + 5.401543969441036e-05 9.310335859424868e-05 3.636518364658059e-05 3.518292436410775e-05 3.849518607523805e-05 2.758609809916379e-05 3.377742534382833e-05 1.6604980501711e-05 4.40109855475157e-05 3.037961043617088e-05 3.945708989760988e-05 6.319313924763037e-05 7.156139449904231e-05 7.081483297532998e-05 0.0002078702481043138 0.0001437471540270963 0.0005664206026736451 3.654957287579919e-05 1.851044254230771e-05 8.207360307110889e-05 3.652320750546778e-05 2.29287706474679e-05 1.02538746844516e-05 1.866719791721039e-05 7.022771328024646e-06 7.882099936296072e-06 7.708131441575006e-06 4.014997329448988e-05 3.586186506865374e-05 4.775671893497702e-05 3.593489833164654e-05 0.0001808568367298591 0.0002025672500636233 8.859958219886721e-05 0.0002197190587303055 0.0001253734968891251 0.0001487476681880651 0.0001747574117416661 0.0007288579723621069 8.767614765403664e-05 2.031488367038037e-05 2.552599324090465e-05 0.000134734199157549 0.0002908383086044353 0.0005440913112551016 0.002398310928889202 6.42595702284865e-05 8.310754990148439e-05 3.504571745693852e-05 4.952621462450679e-05 3.392320476258703e-05 3.168930306429729e-05 1.114663792023407e-05 2.988762014410895e-05 1.644475761963804e-05 1.729107519921058e-05 1.297350700468769e-05 6.481782619971455e-06 5.319285406812924e-06 4.236051523776041e-06 7.188417121994917e-06 1.634934858074644e-05 2.262527330287867e-05 3.488102721860287e-05 1.807723576874309e-05 2.713891382555289e-05 4.49872634540327e-05 3.619442153990349e-05 4.665207365661672e-05 3.700558811203791e-05 1.272122521811525e-05 1.529415069967399e-05 1.519956026641012e-05 4.725919726666916e-05 1.090726087582539e-05 7.079432005951958e-05 1.799095239007897e-05 1.25158965005312e-05 1.71033282079236e-05 2.719470025525084e-05 1.122694028588e-05 2.123988323887716e-05 2.615139690576029e-05 0.0001370069369457383 3.872489657652523e-05 2.777453446256573e-05 0.0002219468873647656 3.668605495477095e-05 2.325446252626762e-05 2.473269198333128e-05 1.731294653950499e-05 3.164181258341614e-05 7.815510542741322e-06 1.67127734442829e-05 4.07199848240225e-05 3.988245678243629e-05 7.185558488487231e-05 8.701698025959104e-05 0.0002088417870425019 0.0001117717140139973 + 8.230152704058469e-05 0.0001592414376005991 5.386366771631401e-05 5.210881386119581e-05 5.729855922709248e-05 4.06030212332098e-05 5.030292892627131e-05 2.386300046453016e-05 6.606542699216789e-05 4.462362994672731e-05 6.242768805009291e-05 0.0001012873904926437 0.0001214352449352418 0.0001178957136946934 0.0003949750924654438 0.0002440524073872297 0.001322315753620629 5.615843790707231e-05 2.683432790817619e-05 0.0001521628781269158 5.562730886055078e-05 3.399723117780695e-05 1.441001013446908e-05 2.969320653178897e-05 9.181033135519101e-06 1.061111667866044e-05 1.03014371717336e-05 6.892886931098019e-05 5.777707250231856e-05 8.205032910879595e-05 5.377319723010032e-05 0.000345956444833817 0.0004334131849326184 0.000176002844161971 0.0004558963310543618 0.0002431883850633199 0.0002883297800728712 0.0003867894346321066 0.001589762044986287 0.0001485412151716048 3.059005338457155e-05 3.972258485873681e-05 0.0002659723562885574 0.0006158134513363223 0.001483962663053617 0.01033691547422322 0.0001061265414303847 0.0001679077443981214 5.3904902337365e-05 8.420837603573261e-05 5.180844904906223e-05 4.772479493908577e-05 1.606999053649361e-05 5.610428897995234e-05 2.62066114657955e-05 2.781397486373294e-05 1.923293415728722e-05 8.36223195221919e-06 6.692197629831753e-06 5.361579439977504e-06 9.630718132314087e-06 2.395673192623349e-05 3.316644388462464e-05 5.24392137251084e-05 2.944973336127532e-05 4.33776910604422e-05 7.019917887873817e-05 5.47837410209695e-05 7.798750757359585e-05 6.121610624632012e-05 1.834653721743962e-05 2.243632047793653e-05 2.22192707042268e-05 7.662642518369012e-05 1.548424037522977e-05 0.0001305242763827152 2.67132584461649e-05 1.813456248811463e-05 2.510581092352027e-05 4.009469895649431e-05 1.601475996970692e-05 3.135892798056261e-05 3.830180212105461e-05 0.0002497628737003765 5.80576892232898e-05 4.090765274966657e-05 0.0004081188449127637 5.471588335126398e-05 3.374315039650355e-05 3.593307002347501e-05 2.484606436325976e-05 4.629482634754822e-05 1.04331245722733e-05 2.459541474308935e-05 6.817733000019643e-05 6.562999789849755e-05 0.0001276071360223341 0.0001605080625175503 0.0004559596150066625 0.0002227926276106018 + 6.027439392397582e-05 0.000110005764838661 3.837812442952782e-05 3.822216388016386e-05 4.173082113823057e-05 3.159389821405512e-05 4.063302934298463e-05 1.91880014739354e-05 4.754580784549489e-05 3.281548607958484e-05 4.22293183248712e-05 7.071481707043858e-05 8.395216905654479e-05 8.183960143881563e-05 0.0002729632051075015 0.0001799841249638945 0.0009300214243417315 3.839896197455062e-05 2.066192290683944e-05 0.0001040952556436991 3.80470803662547e-05 2.40049819595356e-05 1.125847259686452e-05 2.101905565865536e-05 7.62627017536488e-06 8.412300125826278e-06 8.239307888402436e-06 4.709393766688663e-05 3.932813238094468e-05 5.594976250478112e-05 3.755511357184105e-05 0.0002366718784436728 0.0002956855172637773 0.0001193811607649309 0.0003108480115869838 0.0001654304944302964 0.000195784896256157 0.000262700916703551 0.001136539025164751 0.0001031626734011581 2.172743664985433e-05 2.75147653283625e-05 0.000181119844752331 0.0004252017240009565 0.001056360000781353 0.008313659051486511 7.352050254816334e-05 0.0001136742528871082 3.679163483560899e-05 5.742013718190719e-05 3.536264902059827e-05 3.270665606791567e-05 1.219701531596229e-05 3.865990816720455e-05 1.870713438023586e-05 1.973632344487442e-05 1.423291038094021e-05 6.808390651258378e-06 5.672867999351183e-06 4.857873065589047e-06 7.59353085300063e-06 1.76637967967963e-05 2.35072658512081e-05 3.583922858041433e-05 2.08266112267097e-05 2.994421965851757e-05 4.807352064872816e-05 3.734693321177929e-05 5.301922253408975e-05 4.170086195642853e-05 1.396369987105572e-05 1.649293028549437e-05 1.647435614415826e-05 5.210832850366387e-05 1.198885740549827e-05 8.918259550938501e-05 1.931216540995706e-05 1.374134764731139e-05 1.840504734929027e-05 2.798852668206564e-05 1.234185164911139e-05 2.23372763841212e-05 2.761725904321111e-05 0.0001709183186235919 4.102451431009513e-05 2.890908181640839e-05 0.0002901582956091886 3.821216337485112e-05 2.485628148463093e-05 2.643684031511384e-05 1.890710326790668e-05 3.287117931449757e-05 8.580687875792137e-06 1.794175905445172e-05 4.640253144572171e-05 4.460131413708268e-05 8.76958263376082e-05 0.0001100670035185658 0.0003112058309255872 0.0001510248303375761 + 2.655766048320629e-05 2.567245326190459e-05 1.560135586942124e-05 1.767642643812906e-05 1.848515995561684e-05 1.860572544387651e-05 2.797540805943299e-05 1.262697925596967e-05 1.947397483093027e-05 1.562970979307465e-05 1.105203511997388e-05 2.035997619032059e-05 1.960287455915477e-05 2.054408444607247e-05 4.982092478655886e-05 6.438951867693277e-05 0.0001093615033269657 1.171091115281797e-05 1.147313740190725e-05 1.887967728109174e-05 1.194801982506988e-05 8.85156270413745e-06 6.000419954688141e-06 6.495473726886303e-06 5.172648585016759e-06 4.802272627557613e-06 4.884164944485292e-06 1.06357749487529e-05 1.01258066180776e-05 1.217793839458636e-05 1.362469878785078e-05 4.01008249362178e-05 3.858926699074061e-05 1.884583839562026e-05 4.232323759545409e-05 2.666972937603873e-05 3.113810574362219e-05 3.315991431662724e-05 0.0001693302928735818 2.529118671290576e-05 7.626836982410623e-06 8.263749609938031e-06 2.815356629959354e-05 5.678545247356226e-05 0.0001035568615330718 0.0006521271398298722 1.868497206380937e-05 1.779406981405884e-05 1.102660497309671e-05 1.274022503672256e-05 1.080280481247087e-05 1.059686855242603e-05 5.621969219049561e-06 8.405269355193923e-06 5.997996591844412e-06 6.136033487535997e-06 5.69020949114929e-06 4.248049449984137e-06 3.852567360240755e-06 3.69833111335538e-06 4.182075784342487e-06 7.511418225192301e-06 9.179916183654768e-06 1.165406614234143e-05 6.274567859065883e-06 8.380929987339414e-06 1.400434711129606e-05 1.174779045243213e-05 1.216066200271371e-05 1.014515772368441e-05 6.666518160614032e-06 6.780076347467912e-06 7.087454804377558e-06 1.304898989218373e-05 6.132376899614655e-06 1.635253934395564e-05 7.412334287693056e-06 6.362001194304412e-06 7.684813130737211e-06 1.04724788201338e-05 6.173155551181253e-06 8.519085426428319e-06 1.214486502121304e-05 3.287477124658267e-05 1.547772790289059e-05 1.1554527535651e-05 6.797568746819138e-05 1.397914078182794e-05 1.215798576481575e-05 1.290131126552296e-05 1.034019342682768e-05 1.372214939010519e-05 5.611407317474004e-06 7.208117992263396e-06 1.08374239857767e-05 1.07713851704716e-05 1.784194392584482e-05 2.035524781973663e-05 3.932143802742871e-05 2.306609181346175e-05 + 4.197252307136523e-05 3.382434420018399e-05 2.296244520039181e-05 2.735602649295288e-05 2.826149241741405e-05 3.123121153691955e-05 5.205203677860482e-05 2.111598433884865e-05 2.919910347998211e-05 2.433146823932475e-05 1.15396731104056e-05 2.754498887469481e-05 2.43240352872931e-05 2.635143954066166e-05 6.110097096190259e-05 0.000100054668100924 9.617976448694776e-05 1.381838220559928e-05 1.742914224323044e-05 1.916191675732648e-05 1.445721353121598e-05 1.00060068142227e-05 6.482547870945155e-06 4.758700242746272e-06 5.706890746637328e-06 4.492291935775938e-06 4.744229023856406e-06 8.984074924001106e-06 9.672352010881013e-06 1.134014351222845e-05 1.846642466674098e-05 4.623816276350112e-05 3.387450150071913e-05 1.49341319168883e-05 4.054523315488723e-05 2.765363441525892e-05 3.330135450596572e-05 2.364865463633237e-05 0.0001968131491949521 3.333370429103866e-05 7.440750486864545e-06 7.55389590878508e-06 2.849961183848393e-05 5.489242840894804e-05 6.21351347502852e-05 0.0002494361441112147 2.356786910517883e-05 1.289329627596203e-05 1.253905193010496e-05 1.263615881441638e-05 1.229874386332597e-05 1.234912170744451e-05 5.217386849665218e-06 4.728952720967072e-06 4.128585178619915e-06 4.179859825370613e-06 4.714751007384166e-06 3.796501516717399e-06 3.401680871206736e-06 3.483516252344998e-06 3.376467020643759e-06 8.300182496867592e-06 1.094948650148808e-05 1.424862954024775e-05 4.23277053585025e-06 7.220972488397592e-06 1.736270487739944e-05 1.41759875376124e-05 1.204418695976983e-05 9.039633617646814e-06 7.291037107393095e-06 6.727843270937228e-06 7.574272345323152e-06 1.453980399190868e-05 6.56971495160974e-06 1.530266320415308e-05 7.568973433791371e-06 6.572016747696807e-06 8.527094795596213e-06 1.306817113899683e-05 6.553152701371801e-06 9.588077649169691e-06 1.737270390123058e-05 4.041297201595739e-05 2.190105283261801e-05 1.550086666668449e-05 9.600347808458309e-05 1.923152100147263e-05 1.836771481578126e-05 1.983670178162811e-05 1.52982872236862e-05 2.012233738923896e-05 6.493123038353588e-06 7.427278674754234e-06 9.83426718192959e-06 1.014853197034427e-05 1.970588049715616e-05 2.186885170374353e-05 3.250912314101129e-05 2.043779756277786e-05 + 9.289848372873166e-05 7.552089205375978e-05 5.041060411770104e-05 6.031917841653467e-05 6.259345704506813e-05 6.80204788352512e-05 0.0001147838187876005 4.434425372323858e-05 6.515800049555764e-05 5.314732382544207e-05 2.269371331919956e-05 6.187728168782769e-05 5.240807189466068e-05 5.82981873851196e-05 0.0001302782589895912 0.0002160669281714434 0.0001823074130946623 2.71001985669983e-05 3.577164612167394e-05 3.769906410511226e-05 2.846139584278262e-05 1.913335139391847e-05 1.084489017699752e-05 7.880210855404357e-06 8.705601942438079e-06 6.437789075164346e-06 6.865030343305989e-06 1.706614946073159e-05 1.871481197568414e-05 2.213688623697863e-05 3.86774286980085e-05 9.861903399688288e-05 6.423962006607553e-05 2.857407828216196e-05 8.152126735438969e-05 5.582752302402127e-05 6.955853505274945e-05 4.303915185843721e-05 0.0004035049523807288 7.410594704282403e-05 1.360300307240436e-05 1.395308463969513e-05 5.721508432365852e-05 0.0001106319323458393 9.860042934040081e-05 0.0002676208995175955 5.129709947482297e-05 2.428902240403374e-05 2.444148991997963e-05 2.476835880393935e-05 2.39478345349653e-05 2.398105475620582e-05 8.197597633596843e-06 7.980420701159119e-06 6.471530397789138e-06 6.608351181824901e-06 7.427301405016351e-06 5.097694298683564e-06 4.337462897296973e-06 4.382796007007528e-06 4.405764421733238e-06 1.541897290735506e-05 2.09332066063439e-05 2.79343703084578e-05 6.745054264456485e-06 1.322887579036092e-05 3.525687307970315e-05 2.780251161027536e-05 2.368183227474674e-05 1.727818855101759e-05 1.296042964327171e-05 1.176937621494289e-05 1.375970661854353e-05 2.866758914876755e-05 1.110523512082295e-05 2.992164695214683e-05 1.383664462295542e-05 1.123203863073741e-05 1.593228044072248e-05 2.526639119793117e-05 1.109262217902085e-05 1.826604789911812e-05 3.576466505705866e-05 8.805611697226823e-05 4.780331014231365e-05 3.091060581894567e-05 0.0002100347093509924 4.06648636896989e-05 3.824019643872134e-05 4.201763609046338e-05 3.031282776078115e-05 4.29628854163866e-05 1.062911029237057e-05 1.347537912010921e-05 1.901025309791748e-05 1.973830721624381e-05 3.948250167340461e-05 4.381032707456711e-05 5.996583970713232e-05 3.927858221786096e-05 + 0.0001364483400614347 9.155299208885026e-05 7.055692292112781e-05 8.840875759119626e-05 9.09734759204639e-05 0.0001054080605911167 0.0001855611193519735 6.784639292334305e-05 9.304805584520182e-05 7.778273180747419e-05 2.466345443963291e-05 7.896910057070272e-05 5.946791667810203e-05 6.994498591339493e-05 0.000143462697433705 0.0002903493709514038 0.0001479784315545629 3.091461204540735e-05 5.170161085032987e-05 3.504754954875011e-05 3.294527311226148e-05 2.276470656781271e-05 1.324630325783005e-05 7.939813485791092e-06 1.085324929306353e-05 7.596490718242421e-06 8.143679430361317e-06 1.662909607347274e-05 1.968959977105555e-05 2.211600684987047e-05 4.994247735723434e-05 0.0001051472298332357 5.347027952495864e-05 2.44570115537357e-05 7.471514742540819e-05 5.251044811060979e-05 6.898578842751135e-05 3.224914235033793e-05 0.0003829054336073057 9.064407999659352e-05 1.500905215223725e-05 1.462335416135829e-05 5.308042007001745e-05 0.0001013022681739528 6.537035424614146e-05 0.000131135607961852 6.047145721765901e-05 2.04154039966653e-05 2.755141321664212e-05 2.504086625343405e-05 2.71708348513755e-05 2.773893594465449e-05 9.214276584401659e-06 7.298415109602274e-06 6.668287479527635e-06 6.758934720352272e-06 8.027863913184774e-06 6.152500091616275e-06 5.191924785208357e-06 5.30558732236841e-06 5.103134526507347e-06 1.877508208636414e-05 2.549220326386603e-05 3.264959238435949e-05 6.832163524705948e-06 1.33695565729397e-05 4.076530924024269e-05 3.211523199553312e-05 2.439886371519151e-05 1.750004152256679e-05 1.590157869202358e-05 1.335032280280757e-05 1.647523670555984e-05 3.053894086946229e-05 1.345557186382962e-05 2.778319896989956e-05 1.586148108145835e-05 1.31862754280121e-05 1.937070166491139e-05 3.06611073064289e-05 1.333582928175758e-05 2.190866259965674e-05 4.856445425005518e-05 9.969822933797445e-05 6.489111279961435e-05 3.951963798698443e-05 0.0002530454572600149 5.310949455150649e-05 5.411697347312838e-05 6.029564767118245e-05 4.24073136429115e-05 5.925348825996934e-05 1.370401476208372e-05 1.56342623256478e-05 1.927250333721986e-05 2.04475293301698e-05 3.926779692875471e-05 4.213061378521843e-05 4.737270305454899e-05 3.331443988585647e-05 + 0.0001665275008804201 9.754376185355795e-05 8.068906096525552e-05 0.0001050618815554571 0.0001073314366379918 0.0001335065531264945 0.0002484564007687595 8.539585375899605e-05 0.0001082119803044179 9.238765845509533e-05 2.446875569717122e-05 8.504444384982435e-05 6.058217070048499e-05 7.281130078595766e-05 0.0001585221441668949 0.0003387387468762881 0.0001601420817660681 3.161451678224125e-05 6.174738523867518e-05 3.376148951872437e-05 3.405039301185298e-05 2.323337891851907e-05 1.355336830499709e-05 7.545769761918564e-06 1.156507083521774e-05 7.916384944905985e-06 8.472643642676303e-06 1.505940039692177e-05 1.866323849952778e-05 2.096344113056148e-05 5.454966615303647e-05 0.0001105209287395326 5.078927735446825e-05 2.269197450743832e-05 7.293149898579543e-05 5.057964509447288e-05 6.771788210713225e-05 3.013025771991806e-05 0.0004197659606539617 9.694405488147595e-05 1.424115742665322e-05 1.34913306943929e-05 5.094730748389509e-05 0.0001032947421428787 6.385378353801485e-05 0.000163994813446422 6.234246819936118e-05 1.848870387810564e-05 2.786546880706453e-05 2.418233028222971e-05 2.755381501451382e-05 2.844027288517736e-05 9.080937321215288e-06 6.749939167605135e-06 6.503176244621045e-06 6.578484555319619e-06 7.886438638138316e-06 6.603571250707319e-06 5.57568154135879e-06 5.923528732409977e-06 5.231860463084104e-06 1.912838447992726e-05 2.668188833609975e-05 3.399120274139023e-05 6.608210487257793e-06 1.211798204892034e-05 4.219438262964559e-05 3.323625212203751e-05 2.369516258937665e-05 1.611631508069422e-05 1.622827814173888e-05 1.289210450750033e-05 1.650645621964486e-05 3.05545318468603e-05 1.366005561820316e-05 2.655129402739931e-05 1.542047333913388e-05 1.306493087227523e-05 1.975173208634828e-05 3.243398874275272e-05 1.345665982910305e-05 2.237819569828048e-05 5.518960222161695e-05 0.0001052550969120603 7.253304773868763e-05 4.326251915642843e-05 0.0002868642016977674 5.841739335465945e-05 6.351836699280966e-05 7.122596426256678e-05 4.993718818013804e-05 6.770756370144682e-05 1.479371175605593e-05 1.530789839421232e-05 1.798285403253885e-05 1.937946353791631e-05 3.842692433408956e-05 4.082016493711649e-05 4.475262512571021e-05 3.149874831365196e-05 + 0.0002199580744850493 0.000117379844965626 0.0001012409464919983 0.0001341602784776796 0.0001366200740164913 0.0001778354403256799 0.0003483115092137723 0.0001120891520258738 0.0001368283592313446 0.000117802980227566 2.95334158266769e-05 0.0001033006058577257 7.33791753368962e-05 8.706854262818808e-05 0.0002002644707594925 0.0004608511992305608 0.0001899295467318041 3.87421639995722e-05 7.85808026844137e-05 4.162285391728915e-05 4.210066843057803e-05 2.805509931036454e-05 1.660327266250761e-05 9.626927308659106e-06 1.42746725799725e-05 9.841769063712036e-06 1.052476027041394e-05 1.828982044571603e-05 2.21862404785611e-05 2.471905913381534e-05 6.785629460992482e-05 0.000131392976799205 5.979471444739204e-05 2.6445881312398e-05 8.245002741880114e-05 6.063824611857171e-05 7.865023857789311e-05 3.610380987240092e-05 0.0005457383438987051 0.0001168668898543501 1.73719392257965e-05 1.659943556475696e-05 6.039188900963666e-05 0.0001173908653910871 6.80448006828982e-05 0.0001429659248639581 7.490721248615273e-05 2.149923133920595e-05 3.384152454266598e-05 2.875494361198605e-05 3.350897594245339e-05 3.478479568386206e-05 1.131368531304133e-05 8.594149935703399e-06 7.988405354097949e-06 8.131618436379995e-06 9.980131416398308e-06 8.052625304344474e-06 6.706619572582895e-06 7.242626921311057e-06 6.192707012075971e-06 2.316640286181837e-05 3.272268698140124e-05 4.231485947059355e-05 8.172009149376436e-06 1.516429345471693e-05 5.252134584665669e-05 4.130569273286255e-05 2.828624208461861e-05 1.94911544681986e-05 1.98710033032512e-05 1.605189154929576e-05 2.014838887021142e-05 3.759930928737276e-05 1.67230111429717e-05 3.182436816118184e-05 1.873674315788776e-05 1.603143757122893e-05 2.388920864504485e-05 4.023606069836205e-05 1.643343785140416e-05 2.704275750886609e-05 6.954829028416043e-05 0.0001255951159500057 8.991047825901433e-05 5.41638982660686e-05 0.0003833484741235793 7.298492039353732e-05 8.110886906109727e-05 9.102260192150879e-05 6.427318756152545e-05 8.578145933313408e-05 1.827472947013575e-05 1.874145549152217e-05 2.146595468133228e-05 2.304881449788354e-05 4.738205545606888e-05 5.013367870176921e-05 5.379711157260658e-05 3.841121273850945e-05 + 0.0004399987740839606 0.0002610775715368163 0.0001986887505864843 0.0002597814861502457 0.0002671736457244833 0.0003356635846500922 0.0006711778510180011 0.0002019351827726723 0.0002733507373449129 0.0002254453713703697 6.434053280202079e-05 0.0002164785537317471 0.0001580602793609387 0.0001820756200405782 0.0004596139170143232 0.001040589482247611 0.0004742709358094288 7.808638828521453e-05 0.0001406324587645003 9.350350246961625e-05 8.546797904429582e-05 5.598450382748865e-05 3.339270966407071e-05 2.117218093644624e-05 2.829622677325005e-05 2.037568989265992e-05 2.166565646177787e-05 4.291112522736285e-05 4.855170057993519e-05 5.438608356200803e-05 0.0001328237052860004 0.0002999483154315641 0.0001446631470614079 6.021708566095185e-05 0.0001970450742181384 0.0001397385155961217 0.0001821863568949311 8.726677616976986e-05 0.001486933937229651 0.0002507648215477332 3.718421908160963e-05 3.706697848571139e-05 0.0001383280310776058 0.0002783403175978805 0.0001759334386868261 0.0004073930309793639 0.0001548913190596579 5.042970580859674e-05 6.872342052766101e-05 6.150942998672804e-05 6.837937795012294e-05 7.069402740711439e-05 2.379754116077493e-05 1.941930939608483e-05 1.722284351757253e-05 1.763807386723215e-05 2.157432376037605e-05 1.645264929095447e-05 1.373938869164704e-05 1.412857139371226e-05 1.321697200040717e-05 4.645843838346764e-05 6.523473648201161e-05 8.699242214049718e-05 1.770191782668462e-05 3.473224179373346e-05 0.0001086992802363795 8.546037560819286e-05 6.195186420399068e-05 4.519619330523028e-05 4.058268910966945e-05 3.521869763289942e-05 4.173779034033487e-05 8.055916445925959e-05 3.381167828209186e-05 7.082105767608482e-05 3.922365555553142e-05 3.315312449103658e-05 4.775069733398141e-05 7.998815270227055e-05 3.3099770238465e-05 5.410862996768628e-05 0.000131631937900778 0.0002842856839464503 0.0001752130533887453 0.0001046789699330475 0.0009050474580476475 0.0001444155828025373 0.0001526614408788873 0.0001722171310802878 0.0001197261385925685 0.0001684745913905772 3.57141371267744e-05 3.977777959107698e-05 4.901704046744726e-05 5.151686401916322e-05 0.0001036786924082378 0.0001118544723937021 0.0001324004465672601 8.856757189334985e-05 + 0.001735000428769951 0.001967342397620087 0.0009974752581456414 0.001115929166417118 0.001183104978082383 0.001191031795059416 0.002082277480539574 0.000691059837663488 0.001309523058495188 0.0009688619368688478 0.0007858304623482582 0.001384179112413619 0.001282296238983349 0.001222284604985191 0.003028218937547678 0.004015062489777677 0.005454909083477233 0.0005805299293246691 0.0005222136370797159 0.00122222543664563 0.0006374287749046914 0.0004080749265398254 0.0001999484253722983 0.0002721387489437177 0.0001544625688438828 0.0001441270777675641 0.0001447972214876359 0.0006595996165543738 0.0005801710056978493 0.0007265444972510693 0.0007431364160837006 0.002422082932554304 0.002318321504008125 0.00111953986382396 0.002564220631921188 0.001667923791796255 0.001998831033233728 0.00222963078497429 0.009682742720329429 0.001617061673350406 0.000337071379295395 0.0004152253494886793 0.001618359312343998 0.003051455870233255 0.005064019954152066 0.02873090656764177 0.00105648784994905 0.001032385430514537 0.0005523351713936364 0.0007109779043439346 0.0005626704624361878 0.0005594285266461441 0.0001793163830470235 0.0004248507414104097 0.0002307087513706563 0.0002498963925354758 0.000211740880011746 0.0001109319130705444 8.299550448498394e-05 6.685875622736148e-05 0.0001026369435379593 0.0003197478457011016 0.0004610840583012532 0.0006833565517609941 0.0002511914050167263 0.0004310590097809097 0.0008291891077831792 0.0006997678275766361 0.0008046363182288019 0.0006630192404486479 0.0002735091876360229 0.0003193407072785703 0.0003134617452644761 0.0008344043017416425 0.0002089560181985917 0.001039513976994755 0.0003193912293362189 0.0002291375615186553 0.000329097287501412 0.0005384543666338004 0.0002028868474326373 0.0003947243583617421 0.0006314084501362061 0.002223380685915544 0.0008913435798696412 0.0005797208946276555 0.004372025999352047 0.0008265623026275648 0.0006853658746024394 0.0007659792143641653 0.0005360551114961254 0.0008885340616444637 0.000185648997643284 0.0003334306828151057 0.0007163227317761311 0.0006982457489144167 0.00108271980466057 0.001252588225380435 0.002518024273399533 0.001484606434118518 + 0.01051378903852651 0.02033524817740329 0.007658848668256724 0.00755253352971863 0.008218261129954385 0.006696728948540454 0.009541184945064174 0.003693413009116853 0.00975911583068978 0.006559295332692727 0.008705660298261364 0.01245997218548922 0.01287102257051487 0.01088748374620785 0.02886098683127081 0.02218122828245406 0.06683325958539754 0.005008501722496561 0.002961644579754008 0.01407481975670066 0.005650387563115089 0.00342768095071122 0.001465005809155429 0.002534926097276013 0.001060864275999052 0.001102402472312747 0.001083112942211528 0.007155232379389531 0.005886227683031819 0.007695992626214121 0.005864767896479606 0.02531499637425583 0.02927305861590845 0.01292132335139584 0.03171683127251512 0.01935483520706427 0.02328264968092597 0.02980835444258645 0.09444123794197168 0.0145101486978767 0.003015752027359042 0.004006998512043225 0.01819867417544074 0.03586842234869536 0.06668893071802184 0.3607708216220313 0.009323220645923058 0.01167689671520655 0.004886396536546656 0.007191857330063556 0.005077938413682759 0.005015317244726702 0.001411646608243444 0.004146195392998209 0.002085780385257863 0.002318386781407611 0.001866815994915783 0.0008007797295732644 0.0005427965450053307 0.0003703559165160186 0.0007457956787035869 0.002622795236632669 0.003943483255497426 0.006358203006321617 0.002305793544113754 0.004252595584610219 0.007731365802570167 0.006634104779067229 0.008833397881602423 0.007301408701628986 0.00223601925353023 0.003004343516721519 0.002710743379438441 0.008701668786507355 0.001561521659912302 0.01186416738716645 0.002775941394819625 0.00181746341781519 0.002696675582054553 0.004535950405188061 0.001492013294612349 0.00333688657365272 0.004484127989364595 0.02319339927821673 0.006729876874480567 0.004441349173610831 0.0323765749882412 0.006756110202438492 0.004729613794346221 0.005298962761642656 0.003651542901138782 0.007073921468830235 0.001267242770637722 0.003018229899709013 0.007935348556273425 0.007593735608679708 0.01147336105719887 0.01380211798898756 0.03335951098523182 0.01813481542165007 + 0.01090758297933903 0.03190213563745203 0.009338440828770445 0.008305778213980375 0.009261747207546023 0.006173760117306415 0.007103335294715407 0.003349264491532722 0.01154338183728498 0.007165885464999633 0.01638361166129698 0.01726125677183887 0.02011143663346715 0.01549914378857942 0.04559856159125708 0.02317510277713275 0.1206853233966481 0.007262095422380099 0.002988191152335062 0.02709447762036632 0.008239236127817406 0.005188534645604648 0.002281038191831897 0.006527858739438841 0.001550503398689784 0.002106766140499872 0.001941941706064654 0.01589574300811591 0.01109342435936256 0.01493787264806556 0.00757589407396253 0.042131323329615 0.05944031510943226 0.02883924239662328 0.06067882133443092 0.03619702198751895 0.04257574354303628 0.07335896773101069 0.1568371960405841 0.02081171870395337 0.005526735179156361 0.007950827035671182 0.03331987771205647 0.06472840861089857 0.1387818002927776 0.6606785397399495 0.01322105545649777 0.02768071421190221 0.007360959032686409 0.01273316146421344 0.007774541646448085 0.007598583378211288 0.002674088241800376 0.01468547188809666 0.006106364594668179 0.006969603459971552 0.004350854376681923 0.001570595812466991 0.001056173869343979 0.0005436254899393589 0.00179688404137579 0.00411410965098824 0.005839962342435001 0.009562109329159796 0.006783459415498072 0.008943712736609655 0.01137944926228229 0.01014251655436027 0.01695881722170611 0.01590027720770593 0.003700000628526823 0.006020264330800273 0.004654896621218541 0.01473998539017174 0.002481284384625582 0.02392161603165022 0.004853556376879453 0.003090490560484938 0.004183894134659027 0.006418278076509409 0.002345319853290562 0.00512435731680938 0.005304567541770666 0.03773629689237978 0.008291221967780871 0.005692271060901533 0.0439014629506751 0.008833926515144697 0.005328854224110557 0.00591020380797147 0.004162029905387499 0.00882922606048453 0.001740160143313574 0.005507126166904186 0.0168561854724345 0.01531196130287071 0.01976095254464383 0.02480563077675058 0.072390476276464 0.03871452670783881 + 0.001070152756831533 0.002612783179131384 0.0008689279275841955 0.0007889054797800554 0.0008742072222389652 0.0006018721186080711 0.0007006197945997883 0.0003480895101972692 0.001063799830404832 0.0006843720981493107 0.001354562293371941 0.00153534354591045 0.001761514102135209 0.001450675846239591 0.004115417506840302 0.002289672769016704 0.01109351692192462 0.000731040629093016 0.0003270854048462724 0.002290702405634448 0.0008009436553635396 0.0005250226919457646 0.0002475524112384164 0.0006387351273424713 0.0001725943406114538 0.0002257163867156464 0.0002103540374918111 0.001364176995558353 0.00101014936863919 0.00133042085129631 0.0007453917730195769 0.003750356248312769 0.005056108677166549 0.002521377853682338 0.005184255494132373 0.003111257528445321 0.003625042639615828 0.00583528543130285 0.01455660303608042 0.001885822503904677 0.0005495413851726028 0.0007521873087306119 0.002986560471720523 0.005847998870326165 0.01260779498312115 0.06806693429977173 0.001264513692362357 0.002455974148094953 0.0007343855673074273 0.001184206467351956 0.0007598734967384502 0.0007370261814756418 0.0002902254787926495 0.001326937788761029 0.0006038002667736464 0.0006706357927015461 0.0004352889716088271 0.0001742808861706635 0.0001243599593863109 7.12227738972615e-05 0.0002006987749396671 0.0004165296263920482 0.0005679158383102845 0.0008859934833438388 0.0006637958176902714 0.0008342380062096311 0.001054377748523905 0.0009318737201056138 0.00144239932699719 0.00133209877106566 0.0003689004656024508 0.0005531691219289314 0.0004524115541642004 0.001293422065415939 0.0002672359175548422 0.002040108113970263 0.0004846633337258766 0.0003248381367413344 0.0004249343095672486 0.0006285521577638065 0.0002581059341366654 0.0005128276674177812 0.0005343271614357548 0.003215957900319921 0.0008075084361749418 0.0005731016570216241 0.004053177444223621 0.0008384856429515253 0.0005235690861979947 0.0005710059857619854 0.0004152606776983703 0.0008091860976406906 0.0001904000683765616 0.0005235770121316818 0.001412465284587938 0.001305137378075472 0.001751660001243494 0.002163743274302021 0.005908566458156628 0.003238807547703004 + 3.459505031955246e-05 6.299680050858569e-05 2.674433402205523e-05 2.543423602219264e-05 2.761648910620806e-05 2.107544227669678e-05 2.498249068594305e-05 1.388609138075481e-05 3.209277255677989e-05 2.254368973808596e-05 3.359206768038803e-05 4.218038556302872e-05 4.552220914533223e-05 4.09780749510702e-05 0.0001023987753043798 7.112110694684759e-05 0.0002472929394485845 2.332094391555017e-05 1.343820881238855e-05 5.246523596014185e-05 2.467672186057257e-05 1.771933880689858e-05 1.046358032041894e-05 1.973504355845535e-05 8.338333714164037e-06 9.741920948158622e-06 9.344034275216018e-06 3.348058446306368e-05 2.767492925315196e-05 3.402620593817574e-05 2.393563196179116e-05 9.036481288760001e-05 0.0001045254533877937 5.563327791335837e-05 0.0001109857809442616 7.002126231014927e-05 8.10791935954569e-05 0.000106760143275153 0.0003521008176612384 5.111322814599362e-05 1.794690846068647e-05 2.224689897900589e-05 6.947431725023989e-05 0.0001331423495116724 0.0002330040406430811 0.001002057860759464 3.667022884812354e-05 5.409607159734264e-05 2.313808992582267e-05 3.209502086676252e-05 2.347883916620219e-05 2.282949133558532e-05 1.166728582546739e-05 3.255094992482555e-05 1.898549491130552e-05 2.02602750825065e-05 1.498998368987259e-05 8.357577073070388e-06 6.935286236853244e-06 5.20304043050146e-06 9.186995235666018e-06 1.479665926140683e-05 1.850847103668229e-05 2.60157211329215e-05 2.027831319040274e-05 2.383260878247029e-05 3.034252933531434e-05 2.695039528788357e-05 3.569337410169737e-05 3.259613244210868e-05 1.337709683468802e-05 1.726738653928805e-05 1.536223624043487e-05 3.395001910178053e-05 1.09983088911747e-05 4.711699057580176e-05 1.637095844841951e-05 1.249041949691332e-05 1.505343135477233e-05 2.029547081860983e-05 1.08438569874636e-05 1.727191936140571e-05 1.85711422737711e-05 7.692973239414869e-05 2.578748231130135e-05 1.940540017031367e-05 0.0001087084938440341 2.586498161605277e-05 1.813111124704392e-05 1.933585200220023e-05 1.510961486417273e-05 2.471888321053939e-05 8.835550389107993e-06 1.691205720533162e-05 3.427352514506765e-05 3.265867265866973e-05 4.402912438550288e-05 5.177247172838406e-05 0.0001145443385368594 6.846056935216893e-05 + 1.850984023832325e-06 2.115180137707284e-06 1.701414419130742e-06 1.692183829504756e-06 1.722502588563657e-06 1.639744340309335e-06 1.7397733671487e-06 1.525980152905504e-06 1.780260930672739e-06 1.649141907478224e-06 1.694689885312073e-06 1.905142063662879e-06 1.923526916414176e-06 1.898218082274639e-06 2.555496063649798e-06 2.411509949951096e-06 3.831477020099783e-06 1.638335090703436e-06 1.518598965688511e-06 1.920072339345325e-06 1.654615299884199e-06 1.534907632105842e-06 1.399448372296774e-06 1.462723815848221e-06 1.35876011597702e-06 1.35476705054316e-06 1.354817960930177e-06 1.636357431777924e-06 1.619165399091571e-06 1.691776123635691e-06 1.66424773340168e-06 2.396709399832275e-06 2.371879121554343e-06 1.865088082197985e-06 2.486506588184056e-06 2.115037514016649e-06 2.237488207157412e-06 2.227038486068977e-06 4.92975573251897e-06 2.019998735391937e-06 1.496674943979315e-06 1.536838041715782e-06 2.12224527018634e-06 2.762965383595883e-06 3.21698345207011e-06 6.727587919641564e-06 1.843698807846295e-06 1.812338076945252e-06 1.624713975800773e-06 1.70322200965245e-06 1.624009643208524e-06 1.6155340745172e-06 1.39402410681555e-06 1.527910875154248e-06 1.438874257075895e-06 1.44923533440533e-06 1.417848793039411e-06 1.321171495760609e-06 1.288250430775406e-06 1.263631077108585e-06 1.316025361575157e-06 1.477305492159076e-06 1.550154649976321e-06 1.662323505513541e-06 1.451698420140701e-06 1.542588304204173e-06 1.734539161191151e-06 1.671925218715842e-06 1.716551125241494e-06 1.633476564677494e-06 1.443248947907705e-06 1.470913076673241e-06 1.46928174160621e-06 1.741054418857857e-06 1.407312463896915e-06 1.835771040958889e-06 1.482315042267146e-06 1.424586532294825e-06 1.483970038407278e-06 1.58973861275058e-06 1.406442837748045e-06 1.523537530800922e-06 1.588224424864393e-06 2.259909035018381e-06 1.696196740397227e-06 1.593811440159243e-06 2.7217834102089e-06 1.686473815709633e-06 1.580939745338128e-06 1.599056318468683e-06 1.529346093320783e-06 1.666408465439417e-06 1.37806839006771e-06 1.48193088023163e-06 1.660849953566412e-06 1.659623436012225e-06 1.873368319138535e-06 1.946186603873912e-06 2.39627389575503e-06 2.019779749673489e-06 + 1.555953200949034e-06 1.582588581072741e-06 1.468663086257038e-06 1.475941402873104e-06 1.486672658757016e-06 1.462803538743174e-06 1.529774692698993e-06 1.408194407304109e-06 1.503415930415031e-06 1.456410856803814e-06 1.403145773792858e-06 1.528845906761944e-06 1.516877148333151e-06 1.524856505952243e-06 1.737552112857088e-06 1.830855639539664e-06 1.959139918739083e-06 1.419028007987322e-06 1.404750022970802e-06 1.48133074873158e-06 1.425623906925466e-06 1.369493496383711e-06 1.302551257964524e-06 1.260381957024492e-06 1.282925765622167e-06 1.252880458935124e-06 1.259413068055437e-06 1.349563483188376e-06 1.366685388859423e-06 1.391879482781633e-06 1.448302811013491e-06 1.662390655354784e-06 1.585631775213869e-06 1.433222895030895e-06 1.630259609086693e-06 1.545340381881033e-06 1.585019738570281e-06 1.518814510603761e-06 2.31934960126523e-06 1.570398694639152e-06 1.323069735548188e-06 1.325009332475702e-06 1.549209635243187e-06 1.716725362754801e-06 1.74451395196229e-06 2.549873103774303e-06 1.504582108680097e-06 1.402846930176338e-06 1.406683374227669e-06 1.410784594924053e-06 1.404370099322705e-06 1.403605256911078e-06 1.273115412203651e-06 1.253786955146552e-06 1.238444689022344e-06 1.240218256981507e-06 1.260784536327719e-06 1.229314122497271e-06 1.209827104275973e-06 1.21014863907476e-06 1.208309171829569e-06 1.340064994082013e-06 1.380700844322291e-06 1.424822350770683e-06 1.241585927402866e-06 1.317472648310059e-06 1.45576379750878e-06 1.425868909166184e-06 1.406649445812036e-06 1.35378905952166e-06 1.32019621901236e-06 1.308434974589545e-06 1.326318979977259e-06 1.436395791643008e-06 1.304483557618141e-06 1.443227525044222e-06 1.325989902767333e-06 1.304425946813126e-06 1.344202203767964e-06 1.404341599453574e-06 1.304150023528905e-06 1.36293338570681e-06 1.424567933838716e-06 1.626324642955979e-06 1.467213870398609e-06 1.419338726549313e-06 1.867375662101267e-06 1.455001857664229e-06 1.422458630884194e-06 1.430833478366367e-06 1.397417491943997e-06 1.45064733203526e-06 1.302268415770413e-06 1.323367087024963e-06 1.368434496384907e-06 1.375564785632832e-06 1.48281788980853e-06 1.501228293676604e-06 1.57807881251415e-06 1.492932831581584e-06 + 1.401218227670142e-06 1.417454356555936e-06 1.340328253718326e-06 1.34600395540474e-06 1.353155909100678e-06 1.337255753242061e-06 1.379371198595436e-06 1.29967861539626e-06 1.36389039084861e-06 1.332721382141244e-06 1.307535939076843e-06 1.383721937031623e-06 1.378501053750369e-06 1.385191541913855e-06 1.516488985942033e-06 1.573975378477144e-06 1.609187437523474e-06 1.31110507162191e-06 1.298209543421081e-06 1.361534227584116e-06 1.313843135619663e-06 1.280405321324452e-06 1.233793433641495e-06 1.228293303512373e-06 1.214386259107414e-06 1.202566643598857e-06 1.204952674527249e-06 1.2903374937423e-06 1.292044938594472e-06 1.309734795285067e-06 1.327742150891709e-06 1.473607911250951e-06 1.442586492927944e-06 1.349627650526486e-06 1.464035143783349e-06 1.407925623198025e-06 1.432230806841517e-06 1.408506573596924e-06 1.794448248659819e-06 1.413155562346446e-06 1.259973949174764e-06 1.266358712115334e-06 1.413075741751868e-06 1.507594971528192e-06 1.539413712947635e-06 2.111852342778775e-06 1.371936374283678e-06 1.339928758170572e-06 1.304568128190908e-06 1.316447249877228e-06 1.302746321485415e-06 1.300730012587792e-06 1.221167718057359e-06 1.247238685664342e-06 1.21853994983212e-06 1.220577516392041e-06 1.218963269877804e-06 1.186629248195459e-06 1.169868056649648e-06 1.155949945541579e-06 1.182301339497371e-06 1.261896983351107e-06 1.284279129265542e-06 1.311844918916449e-06 1.222325145988634e-06 1.264406190415457e-06 1.333622453358885e-06 1.313097364175064e-06 1.313820874315752e-06 1.289497291168118e-06 1.247477612764669e-06 1.246454530701158e-06 1.254603404277077e-06 1.32449865475337e-06 1.236338412979876e-06 1.341250150943551e-06 1.258477979604322e-06 1.239898995919475e-06 1.264533839417936e-06 1.297889273388364e-06 1.23692469422565e-06 1.276342608491632e-06 1.310749926375365e-06 1.448335623877028e-06 1.341258915488197e-06 1.307059331878691e-06 1.594993321418769e-06 1.331202490462147e-06 1.308500365837517e-06 1.314395419171888e-06 1.289299049744841e-06 1.32658188078949e-06 1.227183773266916e-06 1.255622876783491e-06 1.297753684070813e-06 1.299090037321093e-06 1.358936394524335e-06 1.37392418864124e-06 1.439379371248606e-06 1.378490384951192e-06 + 1.480086726957097e-06 1.463328715090029e-06 1.397357877408467e-06 1.417808604742277e-06 1.42361281518788e-06 1.428327436769905e-06 1.50163408818571e-06 1.378170495058839e-06 1.430490399911832e-06 1.401086592522915e-06 1.311015637384116e-06 1.431491760683912e-06 1.41430984967883e-06 1.428297982997151e-06 1.569897570163903e-06 1.64236563016118e-06 1.689885131384017e-06 1.330753978123767e-06 1.356029146748483e-06 1.381892889895653e-06 1.335011585723578e-06 1.285889783986249e-06 1.233877743089806e-06 1.232285530505806e-06 1.220702884552338e-06 1.209358948983663e-06 1.211651799337687e-06 1.289152834260676e-06 1.292674848940578e-06 1.315667773837959e-06 1.368528419476434e-06 1.525782872491277e-06 1.482947730835349e-06 1.365466360425671e-06 1.516122354772165e-06 1.441913422439711e-06 1.475292581432086e-06 1.433224571911751e-06 1.875519405558634e-06 1.46114746968351e-06 1.256168577157268e-06 1.263268199380718e-06 1.448856428609702e-06 1.570375175674599e-06 1.5853070047811e-06 2.073418942316607e-06 1.411774414705746e-06 1.351864641563338e-06 1.318985248133231e-06 1.327227167280398e-06 1.315719655892167e-06 1.314212042302643e-06 1.223409618944515e-06 1.248931141617504e-06 1.224850919356868e-06 1.226470729420726e-06 1.222256251764975e-06 1.197666080088311e-06 1.189642205190466e-06 1.188575765809219e-06 1.195396002628968e-06 1.260785072787485e-06 1.293870887764115e-06 1.331070663468381e-06 1.228201330860657e-06 1.262054155404257e-06 1.361074204453416e-06 1.331198554055391e-06 1.319991191905956e-06 1.286587810511719e-06 1.244760625240815e-06 1.241745479774181e-06 1.250503970595673e-06 1.339015952339651e-06 1.235653741105125e-06 1.355866007912709e-06 1.254343903411836e-06 1.237666722886388e-06 1.264248510324251e-06 1.316765938952358e-06 1.236315894104223e-06 1.279721182356752e-06 1.355109539247223e-06 1.497244060288949e-06 1.393905616708935e-06 1.339505153907794e-06 1.650509048545246e-06 1.373552208860929e-06 1.360511348025284e-06 1.371530885307948e-06 1.331758582523435e-06 1.375899387312529e-06 1.230623738024406e-06 1.250543462560927e-06 1.296931507965837e-06 1.299328630466334e-06 1.38258163318028e-06 1.399790388489919e-06 1.475616080881537e-06 1.400648432792195e-06 + 4.051395968929228e-06 4.910624397780339e-06 3.452384703450662e-06 3.420833422751457e-06 3.543967352470645e-06 3.137759946980623e-06 3.432870755659678e-06 2.61508138521549e-06 3.735003147653515e-06 3.225943132179054e-06 3.493224085104885e-06 4.265435073591561e-06 4.434315194146166e-06 4.44317719860976e-06 6.871565819466241e-06 5.834163944840043e-06 1.08100591607041e-05 3.420739199455625e-06 2.682333661851999e-06 4.560019974064744e-06 3.429373094832044e-06 2.822115661160751e-06 2.148537895152458e-06 2.59281727466032e-06 1.942223661899334e-06 2.004239213704295e-06 1.993787755338872e-06 3.404854140853786e-06 3.317835176375183e-06 3.68071833634076e-06 3.420803118103777e-06 6.422968334973689e-06 6.455115554970803e-06 4.488955985593179e-06 6.828607126863062e-06 5.382397269215744e-06 5.810725479449275e-06 5.81268401589341e-06 1.264941180068035e-05 4.824361983679637e-06 2.680263161636276e-06 2.913282816763285e-06 5.529136078763486e-06 7.867786953497102e-06 9.437427919145591e-06 1.916167384408141e-05 4.280517648780346e-06 4.287257368673636e-06 3.351993916211882e-06 3.771887255865636e-06 3.310062140826631e-06 3.227351761836417e-06 2.208629627631353e-06 2.880328420218348e-06 2.46722786911846e-06 2.504138269188161e-06 2.315248373463419e-06 1.894039741046072e-06 1.774414201349828e-06 1.624310741021873e-06 1.942531120846525e-06 2.481449513425105e-06 2.821979919076512e-06 3.373928500138845e-06 2.534539561338534e-06 2.970013429859364e-06 3.733935166394531e-06 3.422213417536568e-06 3.688719267813667e-06 3.334158613199634e-06 2.281143366644756e-06 2.427309283348222e-06 2.415508788544685e-06 3.770337677622138e-06 2.185837363555265e-06 4.264509890106183e-06 2.563855268533644e-06 2.275921769268052e-06 2.522470438748314e-06 3.048531315386072e-06 2.205796741705512e-06 2.738052554462911e-06 3.021739804154322e-06 5.717870362076383e-06 3.531325923233908e-06 3.084576960077356e-06 7.056098855429127e-06 3.453810883513597e-06 2.901320144133024e-06 2.973420407670346e-06 2.609531804864673e-06 3.265957019493726e-06 1.995494557149868e-06 2.497682487501152e-06 3.458973694137057e-06 3.45117037880982e-06 4.394510664695872e-06 4.696673585158351e-06 6.475723616006235e-06 5.023256598235548e-06 + 1.494249695710437e-05 2.635222871560927e-05 1.156783099531822e-05 1.102769260796777e-05 1.18192472626788e-05 8.966986328573512e-06 1.0092912148707e-05 6.29905331095415e-06 1.312779602358205e-05 9.92809553679308e-06 1.413167613861788e-05 1.851424199372786e-05 2.210915755540555e-05 2.126907656929689e-05 5.561633669692867e-05 3.191154902104643e-05 0.0001607456784693539 1.286338348904792e-05 6.980653024513117e-06 2.796528654158692e-05 1.271430091165371e-05 8.857188582567233e-06 4.864795791093002e-06 8.564507911756891e-06 3.672034907253874e-06 4.131283880326464e-06 4.034729087720734e-06 1.555703232014594e-05 1.346830434911794e-05 1.752055234049976e-05 1.193902803464653e-05 5.135124282418246e-05 6.644039047820627e-05 3.250305528723629e-05 6.778933126838638e-05 4.050547182998798e-05 4.582334261371557e-05 6.18541097843206e-05 0.0001705492257499941 2.493539819781176e-05 8.374134520039433e-06 1.028040449213563e-05 4.378622188383474e-05 8.567451457430764e-05 0.0001828838146264999 0.0007800355361400335 1.986927793673487e-05 3.162411703883095e-05 1.255532740174203e-05 1.776822669263822e-05 1.218914311174046e-05 1.142989620461776e-05 5.397602151901992e-06 1.384429376827256e-05 7.877038182613205e-06 8.226508956710177e-06 6.19793672740343e-06 3.56356729014351e-06 3.061009053340058e-06 2.563593014315302e-06 3.962233776633184e-06 6.827417756483101e-06 8.655373811450318e-06 1.217027574540452e-05 8.566522996744652e-06 1.105382563082458e-05 1.492437024452897e-05 1.259843160283936e-05 1.674545458740795e-05 1.417268347836398e-05 5.669857230827802e-06 6.665055934718112e-06 6.5064214851418e-06 1.631173322635959e-05 5.103445470666657e-06 2.503960390143334e-05 7.505559850073951e-06 5.708348648880701e-06 7.061913120054442e-06 9.928650527513128e-06 5.229969156417269e-06 8.332900961249834e-06 9.225808277335545e-06 3.861150603512442e-05 1.23332516821506e-05 9.882149228701564e-06 5.262635212943678e-05 1.20353210633084e-05 8.324026111949934e-06 8.649424174222986e-06 6.772891708806128e-06 1.051576224142536e-05 3.917979071843547e-06 7.055539271050293e-06 1.530604844646177e-05 1.48185742503415e-05 2.396757964007179e-05 2.884721673979129e-05 6.973713471936094e-05 3.885754055588109e-05 + 2.560981672417029e-05 5.543337914559743e-05 1.895803896445614e-05 1.782132062544406e-05 1.933559654787587e-05 1.394029770551697e-05 1.582232630426006e-05 9.278466151840803e-06 2.195308128705165e-05 1.58148503146549e-05 2.589622386039991e-05 3.507192677432158e-05 4.540908988559522e-05 4.260097701980214e-05 0.0001334994736428285 6.622324533367419e-05 0.0004789606400432689 2.253262715257165e-05 1.063445281701547e-05 6.268125176589479e-05 2.203708696058015e-05 1.445697359159226e-05 7.050028223432037e-06 1.47417317180043e-05 4.796794698336271e-06 5.679370154609842e-06 5.483197249134264e-06 3.094860326058324e-05 2.493226448407881e-05 3.541674601237332e-05 2.002186803906625e-05 0.0001231225475493147 0.0001751805359955227 7.67623963113806e-05 0.0001751741672872953 9.645538968783285e-05 0.0001099894163552051 0.0001647645120570473 0.0004845549160457097 5.160415720339984e-05 1.376214101611595e-05 1.779455749328918e-05 0.0001062215261828925 0.0002283783557128771 0.0006192316828830258 0.004406696768352703 3.919826888321154e-05 7.53145744027961e-05 2.19853708713913e-05 3.565356015222676e-05 2.113070053866295e-05 1.940343339867923e-05 8.145611907650618e-06 2.878997388933158e-05 1.34918528438277e-05 1.427163454081892e-05 9.713476174511015e-06 4.649168090509193e-06 3.851199693372109e-06 3.191258059587199e-06 5.433584810532466e-06 1.07387280898763e-05 1.394083718508909e-05 2.073436073857238e-05 1.50974803680981e-05 1.976259808245118e-05 2.696228574450288e-05 2.170191167039093e-05 3.291503568902954e-05 2.704291097188616e-05 8.594131330141863e-06 1.044472608668912e-05 1.015668306081352e-05 3.105385916768455e-05 7.518143490869988e-06 5.526729126970054e-05 1.20576876163625e-05 8.703804255105752e-06 1.116650970445221e-05 1.626235555818312e-05 7.76599205565276e-06 1.346864339168974e-05 1.477344480704801e-05 8.783483953322957e-05 2.064773252286045e-05 1.609506919919568e-05 0.0001229291020905521 2.01113610174275e-05 1.304334026741572e-05 1.35813396013873e-05 1.030661657352994e-05 1.696659558092506e-05 5.234710172885571e-06 1.116962498315388e-05 2.980667294139039e-05 2.831677271331046e-05 5.15130111615747e-05 6.478467797776943e-05 0.0001867676020061992 9.331852498206672e-05 + 1.906644300930793e-05 4.218249189591461e-05 1.398147200859512e-05 1.32111711508287e-05 1.430458708284732e-05 1.051936935425601e-05 1.194125037784488e-05 7.239700821060069e-06 1.623849927057108e-05 1.177627738968567e-05 1.894958619175213e-05 2.644288066733225e-05 3.444245349015773e-05 3.229107409019605e-05 0.0001012923143406397 5.117620512429255e-05 0.0003688382088853359 1.654400712425286e-05 8.188281688248367e-06 4.675220605321329e-05 1.61625368164664e-05 1.07935093218714e-05 5.582130096826177e-06 1.088115206115958e-05 3.938956837146179e-06 4.549494690309075e-06 4.412975044942868e-06 2.256569630532113e-05 1.823435698256048e-05 2.607574402802015e-05 1.47347057399827e-05 9.263159979155944e-05 0.0001298384242804929 5.54765839115845e-05 0.000130689749715529 7.175023048588969e-05 8.194338801459367e-05 0.0001190161287780711 0.0003813089034423456 3.928993719171103e-05 1.030449122296773e-05 1.307572987485628e-05 7.89877664519878e-05 0.0001729645423456105 0.000469612347403725 0.003665953635064056 2.959240181432676e-05 5.378659605348446e-05 1.612693625929751e-05 2.638050340664222e-05 1.548628607928038e-05 1.42276050212331e-05 6.346543440116648e-06 2.029444386764112e-05 9.978231037877094e-06 1.048916320556259e-05 7.451673823766214e-06 3.821504776624352e-06 3.290401195954473e-06 2.861006308307878e-06 4.353870572515461e-06 8.240683023075235e-06 1.041522250488924e-05 1.517535515205282e-05 1.105516937371931e-05 1.445247120201998e-05 1.991746810148243e-05 1.588400987628802e-05 2.425114696080755e-05 1.971465501071634e-05 6.712936794883717e-06 7.989197314373087e-06 7.819044384405061e-06 2.297180995469716e-05 5.924725289929711e-06 4.089640762572344e-05 9.140456960210486e-06 6.780519321125666e-06 8.539099283666474e-06 1.201374689330237e-05 6.105342308160289e-06 1.011245842619246e-05 1.102768274563459e-05 6.630881027192004e-05 1.522826572397662e-05 1.192785904891025e-05 9.50037725999664e-05 1.478861818071664e-05 9.829082273427048e-06 1.020112222249736e-05 7.931479515832507e-06 1.251906709853756e-05 4.265855949370234e-06 8.512308681929426e-06 2.178955116960424e-05 2.07180883293745e-05 3.879970449460757e-05 4.865530577191635e-05 0.0001378797162772116 6.819427321147487e-05 + 4.625382086231866e-06 7.529643013981513e-06 3.842966322054053e-06 3.753821076202257e-06 3.912555925467132e-06 3.382921349270873e-06 3.63235594136313e-06 2.886170577198754e-06 4.191274172171688e-06 3.539322975143477e-06 4.396050968580312e-06 5.548957915380015e-06 6.48527793600806e-06 6.259944743902679e-06 1.456428686097411e-05 9.099826630887264e-06 4.225117262990352e-05 4.124354894941007e-06 3.017857601150808e-06 7.75192447832751e-06 4.078741952184828e-06 3.372446776950255e-06 2.597464749953815e-06 3.327495434746197e-06 2.320411667255939e-06 2.41684254831398e-06 2.395655471332248e-06 4.765134626438794e-06 4.286675228115655e-06 5.232014586908917e-06 3.918852431894493e-06 1.330977868185812e-05 1.651930532098334e-05 8.430754164123755e-06 1.697832581903924e-05 1.060399673136203e-05 1.182778094133141e-05 1.48150688836779e-05 4.722121807176904e-05 7.182515204817719e-06 3.299376810872445e-06 3.645089517334554e-06 1.136678336344232e-05 2.187237268636011e-05 4.721171428645476e-05 0.0002932842318088547 5.889157103311504e-06 8.117201648616401e-06 4.063768455964123e-06 5.301019845305177e-06 3.98124356948415e-06 3.821173343965256e-06 2.710075257539302e-06 4.328539045417301e-06 3.192136084351205e-06 3.251629618006291e-06 2.881150280131806e-06 2.289601226834748e-06 2.182727214972147e-06 2.076951034268859e-06 2.366892033478507e-06 3.016730129701273e-06 3.320458233702084e-06 3.949257155966279e-06 3.317898723764756e-06 3.801301325268014e-06 4.584665902029883e-06 4.039979479841804e-06 5.036929579205207e-06 4.440587893839165e-06 2.781739325996568e-06 2.973904344116818e-06 2.952114655840887e-06 4.927325910841773e-06 2.652679789605372e-06 6.999668048734975e-06 3.142590003335499e-06 2.786790300746134e-06 3.060424191403399e-06 3.532999091504507e-06 2.681229066325841e-06 3.280913567493826e-06 3.409268117593456e-06 1.034261966736949e-05 4.010585080038709e-06 3.525572822127288e-06 1.441109311883793e-05 3.930576149002718e-06 3.245176564803387e-06 3.301187746274081e-06 2.971514916794149e-06 3.62261012298859e-06 2.381202662604665e-06 3.05354122076551e-06 4.698292542570925e-06 4.582758776905393e-06 6.891893981730846e-06 8.034315282401394e-06 1.71709127485542e-05 9.956619525297583e-06 + 3.554272641537182e-06 4.630800432892102e-06 2.989487356330756e-06 3.003062047923777e-06 3.087438713578194e-06 2.862652522139797e-06 3.134537053028907e-06 2.528572309756782e-06 3.229173884733427e-06 2.869043626674284e-06 2.825767168701532e-06 3.775822065676948e-06 4.020622881739655e-06 4.008737997551748e-06 7.595626302148162e-06 6.098372647755923e-06 1.599411006125706e-05 2.849148831529646e-06 2.530923486787628e-06 4.158765168682521e-06 2.857237358711018e-06 2.449568938800439e-06 2.068196170768033e-06 2.103366803396511e-06 1.963568010410199e-06 1.900095504936417e-06 1.914192139906845e-06 2.748661437124156e-06 2.689638368025271e-06 3.035849069021879e-06 2.928407255353704e-06 6.819880153940971e-06 7.056421935658364e-06 4.039448128878576e-06 7.575362076295278e-06 5.345933555389593e-06 5.937843102543638e-06 5.970383572417859e-06 2.067804485506031e-05 4.495561402251269e-06 2.298259328625818e-06 2.389744938824379e-06 5.585072484493026e-06 9.491117257454107e-06 1.429701667898797e-05 5.709892154293073e-05 3.800109254825657e-06 3.79457828891816e-06 2.777031752998482e-06 3.137708077360912e-06 2.740084910968221e-06 2.689730170146731e-06 2.010429014376314e-06 2.272747575915446e-06 2.012170988052731e-06 2.028175021706602e-06 2.008789586227522e-06 1.824364360913933e-06 1.771988706877892e-06 1.764013376259754e-06 1.793716855047478e-06 2.267545177403463e-06 2.467374869752348e-06 2.803777064741553e-06 2.045581805276697e-06 2.401311689936847e-06 3.136340716025643e-06 2.831940228986696e-06 3.029295548628852e-06 2.678149463974933e-06 2.155530239633663e-06 2.170136383483623e-06 2.214476950257449e-06 3.12766459131808e-06 2.085731743761698e-06 3.739801051949598e-06 2.265320098615575e-06 2.116870465584952e-06 2.290390220593963e-06 2.616172729119626e-06 2.091564834216797e-06 2.403114088167513e-06 2.694427685412393e-06 5.730161902306463e-06 3.041959384830761e-06 2.691712083446873e-06 8.208867821934973e-06 2.952722020665988e-06 2.646522716531763e-06 2.697659454042878e-06 2.466599568151651e-06 2.844673304025491e-06 2.020752347675625e-06 2.233072578405881e-06 2.797150386868452e-06 2.792329624412559e-06 3.950731585433687e-06 4.377013834044874e-06 7.086672361822366e-06 4.771754966270692e-06 + 1.149498613273181e-05 1.282573754224359e-05 8.077600867295587e-06 8.587354798805791e-06 8.953186664939494e-06 8.36779558710532e-06 1.074099925801875e-05 6.272698300335833e-06 9.490225565400578e-06 7.83741339205335e-06 5.896035673913502e-06 1.055269305538786e-05 1.021120441535572e-05 1.070153919435768e-05 2.013141320489353e-05 2.199294156746134e-05 3.158402650882408e-05 6.285772862213435e-06 5.962833039774296e-06 9.016039491882566e-06 6.394802433362656e-06 4.915249185444281e-06 3.284066700359745e-06 3.195087266760765e-06 2.780984900141448e-06 2.52522816168721e-06 2.576684039468091e-06 5.186876528284756e-06 5.310695669891174e-06 6.118897577067628e-06 7.238517710561609e-06 1.7171162694396e-05 1.417249537283283e-05 7.86550399922703e-06 1.63607456009629e-05 1.200738348217101e-05 1.387745564329634e-05 1.102079753678709e-05 5.119078644355568e-05 1.254983418874644e-05 4.141993088069285e-06 4.352147154662589e-06 1.23671054410579e-05 2.063569834120926e-05 2.15919848747248e-05 5.115487190998635e-05 9.829804884731175e-06 7.09161946232939e-06 5.958661848382008e-06 6.527906872833e-06 5.853702688796147e-06 5.756107423593448e-06 2.969006505537664e-06 3.405139317180783e-06 2.860196531173642e-06 2.904820792792862e-06 2.93552915309192e-06 2.251602907676897e-06 2.078309762509889e-06 2.029748529253084e-06 2.159436235160683e-06 4.204147472819386e-06 5.062126760435604e-06 6.247803646886041e-06 2.950474225826838e-06 4.290988375288407e-06 7.413557082003308e-06 6.295943371981139e-06 6.274225789582033e-06 5.12749669923096e-06 3.703330293092222e-06 3.671253068660008e-06 3.938884233889439e-06 6.867587657666263e-06 3.360150291342734e-06 7.757993870427526e-06 4.083501149665381e-06 3.471469199212152e-06 4.301686548302541e-06 5.664495418500337e-06 3.381152636094953e-06 4.748008326060926e-06 6.449747335324219e-06 1.51480198660181e-05 8.088593066446492e-06 6.171990001746508e-06 2.544172167873171e-05 7.415563636925526e-06 6.421838214976106e-06 6.762577257291014e-06 5.476455285702286e-06 7.251400674590514e-06 3.08121639136516e-06 3.971814010128583e-06 5.474285210027574e-06 5.552878128867178e-06 8.954937257499296e-06 9.860435824293745e-06 1.370445194481817e-05 9.765442676723524e-06 + 1.626306779911602e-05 1.323315514412116e-05 1.051249880390515e-05 1.205091966482996e-05 1.237511925467061e-05 1.299382874719868e-05 1.849483855664857e-05 9.533504751857436e-06 1.270769065797595e-05 1.098293380152882e-05 5.741666569747395e-06 1.181921526693941e-05 9.879375532761969e-06 1.103629075949186e-05 1.806177638563611e-05 2.811938876767783e-05 1.895744003377331e-05 6.486647642134358e-06 8.282453819674629e-06 7.187349041259949e-06 6.708566086643941e-06 5.370152695860497e-06 3.786713062225999e-06 3.01234323885069e-06 3.30951105809163e-06 2.822654323608731e-06 2.908974728654812e-06 4.573457303536088e-06 5.028230702919245e-06 5.430721323307353e-06 8.514408104787208e-06 1.485143983437354e-05 9.489848780575016e-06 5.849755249087707e-06 1.184937314846479e-05 9.2826811091129e-06 1.1141441913054e-05 6.991404195133555e-06 3.646924969658016e-05 1.317796789379599e-05 4.211785689989256e-06 4.189167839285801e-06 9.383089166092873e-06 1.467858976411662e-05 1.101181051588185e-05 1.814382830112038e-05 9.992699933292215e-06 5.248623507370098e-06 6.081596669815781e-06 5.848268424202274e-06 6.024549236371968e-06 6.069561710120297e-06 3.160858401685118e-06 2.929120128669638e-06 2.742781394005078e-06 2.765281038819012e-06 2.980496240923003e-06 2.531476340550398e-06 2.303997305830308e-06 2.272253908586208e-06 2.326099817651084e-06 4.734379082549367e-06 5.699465397412951e-06 6.650770991711852e-06 2.785104456393128e-06 3.998368686808362e-06 7.643669796664199e-06 6.605290558070465e-06 5.742734089153601e-06 4.694282338846278e-06 4.242207239713025e-06 3.884769370188224e-06 4.37211795656367e-06 6.513969246668694e-06 3.835216865866187e-06 6.26869715958378e-06 4.320386125300502e-06 3.825599858231499e-06 4.831674214500481e-06 6.345278443120606e-06 3.826181128374628e-06 5.236224616567142e-06 8.179344739289718e-06 1.421214578911645e-05 1.007125382557206e-05 7.297581269938291e-06 2.624229741243767e-05 8.83075122004584e-06 8.613249022459968e-06 9.225774689980426e-06 7.315726250567423e-06 9.301101457026562e-06 3.769119160779155e-06 4.263927948500168e-06 4.97966723855825e-06 5.153451269279685e-06 7.647948638833668e-06 8.024346087154299e-06 8.800874471859288e-06 7.043417468821644e-06 + 1.780830957542889e-05 1.259168443823455e-05 1.066845550212747e-05 1.274118334038121e-05 1.297189882620842e-05 1.479559944073117e-05 2.297998302935866e-05 1.082689585985008e-05 1.310586362990307e-05 1.162125880682652e-05 5.160596032283138e-06 1.130814837324579e-05 9.043458078394906e-06 1.026452271091216e-05 1.834994969840409e-05 3.080654455622778e-05 1.993297301616792e-05 5.968871340300552e-06 8.836204024476046e-06 6.378097364034829e-06 6.224288238598774e-06 4.930599466490548e-06 3.575625207474786e-06 2.755284167932359e-06 3.275626013987676e-06 2.756087447153277e-06 2.839011457922425e-06 3.900519899957544e-06 4.388475691285976e-06 4.745286872775978e-06 8.269341822852994e-06 1.422231253656037e-05 8.455200395829365e-06 5.088489821503117e-06 1.076261315446914e-05 8.237025820534427e-06 1.002888032530791e-05 6.174504907363598e-06 4.030513423458615e-05 1.257431003764964e-05 3.717580561612976e-06 3.63240914325047e-06 8.318331646606225e-06 1.397938409830601e-05 1.055830882012998e-05 2.458411493577728e-05 9.224060120160971e-06 4.503902959029915e-06 5.547329969601833e-06 5.174036598276643e-06 5.504870673078699e-06 5.591951474315238e-06 2.950621592390235e-06 2.647721476733977e-06 2.560925747019382e-06 2.578619241688784e-06 2.784350613183051e-06 2.522152655615173e-06 2.305851197093034e-06 2.357580498824063e-06 2.249931917219783e-06 4.363649278360526e-06 5.336711666359406e-06 6.205936799119627e-06 2.587000956566499e-06 3.446127351480754e-06 7.098208516964633e-06 6.1348948321438e-06 5.095134881116792e-06 4.034469505143079e-06 3.950928956442112e-06 3.504433578882526e-06 4.001317563506746e-06 5.906399870525547e-06 3.594106352977633e-06 5.533181290928724e-06 3.870023906671349e-06 3.519779081528895e-06 4.450838900993404e-06 5.997258366363667e-06 3.569093665944933e-06 4.812710361790096e-06 8.257072114048469e-06 1.353544875470902e-05 9.991443825185797e-06 7.107699286024172e-06 2.805646910175597e-05 8.62822640357308e-06 8.989214549615099e-06 9.699647506522524e-06 7.648474635857383e-06 9.428978600567461e-06 3.724950403238836e-06 3.844412901798933e-06 4.306925468711142e-06 4.496498931416681e-06 6.836082764749563e-06 7.131564203177732e-06 7.830291945509771e-06 6.205873994247213e-06 + 2.232786546230159e-05 1.452731909523663e-05 1.297388709531333e-05 1.561839059149861e-05 1.583327471621487e-05 1.887442721226762e-05 3.12492873320025e-05 1.370467359151917e-05 1.587485712661874e-05 1.428308530648792e-05 6.227901764077615e-06 1.331959001049654e-05 1.079938110137846e-05 1.199989047684369e-05 2.115534074853542e-05 3.995115856092468e-05 2.064399383527871e-05 7.180624374214517e-06 1.087769698493446e-05 7.783323976440215e-06 7.538961565245472e-06 5.869189234175565e-06 4.268997965795052e-06 3.438320526072403e-06 3.890252642690939e-06 3.283683547294913e-06 3.383700445169779e-06 4.874495594719974e-06 5.305736394234373e-06 5.697702551543671e-06 1.005277134780158e-05 1.579396887763096e-05 9.863299311518858e-06 6.090687264759254e-06 1.187935980162536e-05 9.791839417516712e-06 1.145200993946105e-05 7.434330793643085e-06 4.573446016209459e-05 1.450257659385557e-05 4.538266356490794e-06 4.511455465205927e-06 9.782783374490123e-06 1.479977768958918e-05 1.101720072949064e-05 1.883558675430663e-05 1.090518717461464e-05 5.47538399509051e-06 6.638190274799172e-06 6.176416317060784e-06 6.595993873759198e-06 6.718704348429583e-06 3.566103046637181e-06 3.386625724743908e-06 3.112302270125156e-06 3.154063190180523e-06 3.41262801839548e-06 2.939419289305079e-06 2.651060555081131e-06 2.719811845963704e-06 2.595955784556736e-06 5.205914806793999e-06 6.402002952654584e-06 7.555562753225331e-06 3.167976387885574e-06 4.347165223350657e-06 8.670513494735133e-06 7.464296103876222e-06 6.123939996882655e-06 5.005529700952138e-06 4.74293509000745e-06 4.314470515964786e-06 4.821671737431643e-06 7.1669725585366e-06 4.297915015882836e-06 6.657983458779881e-06 4.680339834806091e-06 4.240076112438373e-06 5.303936276845889e-06 7.255702339392656e-06 4.262599436088976e-06 5.733830754195424e-06 1.010919036659175e-05 1.526065508272723e-05 1.205116568669951e-05 8.662957053928722e-06 3.467104528809273e-05 1.052584447336358e-05 1.11146240797666e-05 1.199675436680536e-05 9.492756575468775e-06 1.160418047163603e-05 4.434124804220119e-06 4.671631941732812e-06 5.273838162622724e-06 5.455409755938945e-06 8.328511061250765e-06 8.668642731635146e-06 9.318648494627269e-06 7.534077109738746e-06 + 5.734259451628532e-05 4.132178624161043e-05 3.162049456761906e-05 3.778837293566539e-05 3.88107163615814e-05 4.440080543588465e-05 7.650506763923204e-05 3.012751075459619e-05 3.994278488050895e-05 3.392915735389579e-05 1.617263707487382e-05 3.512335332089833e-05 2.875945388680634e-05 3.135548743493644e-05 6.49760263105037e-05 0.0001238784869510567 7.084684835234611e-05 1.735142918768418e-05 2.367684095894163e-05 2.100582081965285e-05 1.839691511307251e-05 1.385704104350793e-05 9.722560150748905e-06 8.038032806467754e-06 8.664175467743007e-06 7.380932288469921e-06 7.597623174149248e-06 1.289702743179078e-05 1.350600573957195e-05 1.477343387534802e-05 2.4078168877395e-05 4.711685850367076e-05 2.951139658691204e-05 1.650683269538433e-05 3.615904915044155e-05 2.769774814481707e-05 3.334344155447866e-05 2.187975505663076e-05 0.0001818225658389849 3.968973744150617e-05 1.095068107659358e-05 1.123044793516215e-05 2.754987174746759e-05 4.617515447336018e-05 3.682564230977903e-05 8.295373070055234e-05 2.789785918722032e-05 1.496342071405365e-05 1.609526800017136e-05 1.571056094107348e-05 1.606722644531544e-05 1.631626732034874e-05 8.142613651784814e-06 8.13814279965186e-06 7.163396325893245e-06 7.301943504955943e-06 7.895533101986985e-06 6.505163838710359e-06 5.811361063479126e-06 5.727438747271663e-06 5.848158700416661e-06 1.21728445670044e-05 1.519753200085461e-05 1.867380707665234e-05 7.319993063248376e-06 1.091712087131214e-05 2.17428561235522e-05 1.855329159639041e-05 1.595934585196801e-05 1.321870975345973e-05 1.111668107967034e-05 1.051869935508876e-05 1.146725735168275e-05 1.840539478337178e-05 9.837255547040513e-06 1.772493969909306e-05 1.116586667038177e-05 9.848631108866357e-06 1.239557835930327e-05 1.730540306255079e-05 9.710929255390965e-06 1.353960352545869e-05 2.335379406304128e-05 4.472556387824511e-05 2.905998540825294e-05 2.02880198472144e-05 0.0001128912373573598 2.556308727008627e-05 2.560337792090195e-05 2.789220320664754e-05 2.143280889299604e-05 2.809374740309067e-05 9.926247003022581e-06 1.127190792260535e-05 1.393644382829962e-05 1.424575748387724e-05 2.197948213122913e-05 2.339368685611021e-05 2.817568209678711e-05 2.090421261513598e-05 + 0.0005558745160705314 0.0008848602315651988 0.0003964967776823869 0.0003970191183384486 0.0004264718621698194 0.0003605594570217363 0.0005029074459059757 0.0002222894988079815 0.0004883408857239147 0.000350905112242117 0.0004262175209959196 0.000602465405485475 0.0006208300649142018 0.0005592981053030854 0.001317930613838669 0.00114814984704914 0.002873065449149337 0.0002918301558914038 0.0001914690993807255 0.0006736936637921076 0.0003161977839063468 0.0002072707418498965 0.0001028691317586095 0.0001642038367464238 7.897657958721993e-05 8.070286247630065e-05 7.97494033406565e-05 0.0003808059132452968 0.0003229335753367479 0.0004096139381779551 0.0003273844354048094 0.001154568506168019 0.001315204399350733 0.0006607368959272719 0.001393386581733935 0.0008986912938020453 0.001045944746852712 0.001332172804296761 0.003927127261484031 0.0007063639334070615 0.0001847629502123027 0.0002339094332981517 0.000877114603873963 0.001605653051308664 0.003082405144589018 0.01807931057896539 0.0004947022314834015 0.0006201474359119885 0.0002841471566128462 0.0003927528401668212 0.0002895016557751262 0.0002836545301825311 0.0001004157177568743 0.0002690599068309041 0.0001422271178448398 0.0001542822650826281 0.0001238112183159501 6.312270389230434e-05 4.746939509914228e-05 3.664973573336283e-05 6.095651867354945e-05 0.0001628069170465096 0.0002275446068722431 0.0003387707945279317 0.0001552158726667585 0.0002471671914534568 0.0004056976467303741 0.0003506046463570556 0.0004453218929825198 0.0003775226560449596 0.0001400519052481286 0.0001742813531109277 0.0001634633779019623 0.00044082298549597 0.0001080967435740376 0.0005883506442110331 0.0001709897853707787 0.000121460496963266 0.0001672744703569151 0.0002594114083755983 0.0001054008400132034 0.0002005688609543199 0.0002611232575979727 0.001031131019811227 0.00036674257799163 0.000259526992305581 0.00152347986325907 0.0003610871679811112 0.0002670916134093204 0.0002918811529468712 0.0002135010859518616 0.0003651906035173624 9.105033169021226e-05 0.0001780607885990548 0.000406341734247917 0.0003915330473276413 0.0005734192208883826 0.0006711087135045091 0.001454593595468623 0.0008521336601958751 + 0.005707495429859932 0.01257873343982396 0.004471620864720194 0.004226731375467807 0.004635999774379229 0.003443812617661024 0.004283965636801668 0.001918364021847196 0.005591350702133013 0.003679827838652727 0.00552162354360064 0.007602349197391334 0.008115273244154508 0.006809125266928007 0.01829485093379368 0.01170935877695456 0.04463625858327092 0.003166327815094405 0.001656128513843669 0.009127998466212262 0.003546325307762999 0.002147891449936878 0.000918751850615962 0.001655584214990569 0.0006594859232222916 0.0007059086802314596 0.0006903253220329475 0.004621904149189504 0.003777907295489769 0.004973340121232184 0.00356321607133836 0.01632223071061212 0.01936373082066467 0.008495850448287712 0.02090003601225732 0.01263253437247513 0.01515054228434209 0.01963069490638247 0.05970351153896658 0.008984652055417541 0.001926618976781924 0.002574770171957397 0.01196019698252826 0.02379256679247455 0.04499909014294978 0.2512686007563243 0.005863836810108936 0.007692924005777257 0.003099803271473078 0.004648803442675487 0.00321142403977781 0.00315121635776805 0.0009088058570192459 0.00272338991251786 0.001367180834012771 0.001518721870002793 0.001211024230244107 0.0005136077795953042 0.0003478182815683795 0.0002327223430000913 0.0004841056714610659 0.001637988267770396 0.002440086731382962 0.003964383209272171 0.001511846564920205 0.002743953194642046 0.004844142055400624 0.004149375360299246 0.005662091293750393 0.004688379184301539 0.001395403330121781 0.001905497446585969 0.001700357516213558 0.005534388826568204 0.0009813339611106642 0.00770969375014019 0.001760426624787925 0.001150675609810747 0.001684270326180126 0.00280138655897133 0.000940568167500544 0.002086501106003169 0.002645839650686099 0.01468829959032547 0.004004194618218548 0.0026950926267304 0.01916177871695268 0.004080655402958655 0.002710189097996363 0.003012383666685992 0.002089736687594268 0.004152722561372002 0.0007777142786835611 0.001905550040703474 0.005098042345814235 0.004868624000742727 0.007395121572336905 0.008946315491346724 0.02201909839905625 0.01188310571660978 + 0.007478846395578387 0.02198834634370428 0.006540008382657447 0.005802831770708394 0.006442276099093647 0.004323241330681071 0.004872480189902717 0.00237807146221769 0.007968616828677 0.005046364802964831 0.01165450701442694 0.01194254541265849 0.01409618195951268 0.01085775943051637 0.03164268443200768 0.01550729081430191 0.08604183124378828 0.005214729651518368 0.002157792022973837 0.01930037302276943 0.00588979303483228 0.003765030356916554 0.001678700560184154 0.00475000395302061 0.001152248770594611 0.001557131558612923 0.001436959485992872 0.01142208745493178 0.007971399285505498 0.01070658657448931 0.005383649882990227 0.02950849485719687 0.04251438797852281 0.02075706044927728 0.04309135263514463 0.0257406413464345 0.03011684704139839 0.05271014401337126 0.1073642580173804 0.01443922789596996 0.004022806353297881 0.005756364903099609 0.02377639489177952 0.04586889278266071 0.1015611092749511 0.4934774236947224 0.009314439257721574 0.01997828809506075 0.005293296443896978 0.009123708708182576 0.005583839746334363 0.005455862305897341 0.001968427240310433 0.01063048572073555 0.004445986735866825 0.005068726292719816 0.003185907440531821 0.00116773477532206 0.0007919390677244564 0.0004129787680255959 0.001328329554432628 0.003001196074411183 0.004220815247400367 0.006809425365545962 0.004932975261016992 0.006469038481732525 0.008053020737310845 0.007217768672390434 0.01209486767390189 0.0114037679225234 0.002704168542891239 0.004387404750701762 0.003395042938478809 0.01046335064686588 0.001824105021075439 0.01710436435906715 0.0035390504228765 0.002267787779796748 0.00305087464279552 0.00461588455205586 0.001725868862386903 0.003720862560093963 0.003804285761592752 0.02626197635025918 0.005844452777594711 0.004090078734858338 0.02985801556081569 0.006240499664819765 0.003806449355913344 0.004203846059567695 0.00298620198211097 0.006220521445840177 0.001287935973053322 0.004010824855058104 0.01207212083070175 0.0109596690933671 0.01404021881833728 0.01764378862863225 0.05181998629550577 0.02771087026796692 + 0.0006938813811174782 0.001678452141405273 0.0005857124733381625 0.0005298662526485032 0.0005829767871858849 0.000406316702523668 0.0004591461651983764 0.0002418042676453069 0.0007005374337154535 0.0004654307062708085 0.0009344081053797026 0.001002093022108852 0.001167501520683345 0.0009595183597941315 0.002612692946849293 0.001393127550867845 0.007134022104013482 0.0005107292529125118 0.0002313505445226127 0.001559153735886554 0.0005560475621670946 0.0003760629966258477 0.000182757868689265 0.0004644582170634237 0.0001292530695167216 0.0001684006268192206 0.0001570376846089516 0.0009589334339281663 0.0007099964100198974 0.0009264042907126679 0.0005125848579048409 0.002427197383450874 0.003393161833376013 0.001751340243519195 0.003425554391553121 0.002089893792607711 0.002403278368511508 0.003984471201196271 0.008744294466911384 0.001222751114838161 0.0003975495232140247 0.0005383031448644715 0.002011617100576402 0.003805888090282039 0.008648924507167699 0.04798162340085099 0.0008455101631472672 0.001719458235129423 0.0005150338941053434 0.000822167099569171 0.0005324871902647743 0.0005169299925746884 0.0002149247455989212 0.0009597822331954831 0.0004410338724696317 0.0004886796805827487 0.0003204645626553315 0.0001311633831164727 9.458683530283452e-05 5.466841541590384e-05 0.0001505045172152109 0.0003020643174664883 0.0004041826914402691 0.000612638976392077 0.0004835715531932294 0.0005961464727839427 0.000717627850807645 0.0006432414591444058 0.0009962067166000566 0.0009341112117411399 0.0002692141235769441 0.0004021677291632386 0.0003286774161921358 0.00088491071039698 0.0001969413272924214 0.00140390157497805 0.0003517336448659591 0.0002386844098118956 0.0003077655866192686 0.000442582439969641 0.0001904071207174951 0.0003681322483970462 0.0003734800243151426 0.00207555102824486 0.0005480881994088804 0.0004019685910385817 0.00248902043981758 0.000571927181319154 0.0003643532341612854 0.0003947121332146253 0.0002922941816905222 0.0005513057018191603 0.0001416542386039055 0.0003796124306347792 0.0009861954032146514 0.0009102371762281791 0.001187249453188599 0.001464181610021598 0.003975986921286534 0.002213105390687531 + 2.24448937800048e-05 3.819545281658066e-05 1.817840123408132e-05 1.734138254505524e-05 1.860981330992217e-05 1.468855921871182e-05 1.692224081750737e-05 1.01961534255679e-05 2.116200191437656e-05 1.564265333797721e-05 2.295136005159293e-05 2.684164014965518e-05 2.905677111897376e-05 2.633147223285448e-05 5.911621507515008e-05 4.131347186131507e-05 0.0001362014623467189 1.644448405357934e-05 9.954716658100438e-06 3.407238193986473e-05 1.724656990376161e-05 1.302376160694507e-05 8.086416478647607e-06 1.485329943307079e-05 6.5576490442254e-06 7.626648056202612e-06 7.320467396709773e-06 2.344575636925583e-05 1.952976493768688e-05 2.341677686246157e-05 1.6631915187304e-05 5.355419203389999e-05 6.406280082771332e-05 3.710052893346472e-05 6.652330959155961e-05 4.393914711542379e-05 4.969552261968602e-05 6.730529926812778e-05 0.000180192858227457 3.17309255883913e-05 1.337189598871191e-05 1.625181058884095e-05 4.368894437334347e-05 7.738917413924185e-05 0.0001406250064608372 0.0005791627372335739 2.398789895430298e-05 3.662189629949353e-05 1.639530986530247e-05 2.203339710327157e-05 1.662055513484972e-05 1.620730922269331e-05 9.033322118767728e-06 2.403448727861246e-05 1.443013448820807e-05 1.532817855576241e-05 1.150633190860617e-05 6.618067502017766e-06 5.552248623530431e-06 4.169957094291021e-06 7.262750699510434e-06 1.110917121494026e-05 1.348739466067173e-05 1.807307678802772e-05 1.533080103399698e-05 1.734207021186762e-05 2.051573491712588e-05 1.864768031367703e-05 2.42802246930296e-05 2.280241272245576e-05 1.01531096419194e-05 1.296375299375541e-05 1.155107312911241e-05 2.288981036002724e-05 8.474551037807032e-06 3.126518944185364e-05 1.226976438672978e-05 9.565254977417226e-06 1.127736428685466e-05 1.455411110029559e-05 8.365221564332614e-06 1.274279559027036e-05 1.330475026861677e-05 4.60023489416983e-05 1.765628057626145e-05 1.389497019488317e-05 6.09258740240648e-05 1.776351152216193e-05 1.297982233694484e-05 1.371530538563093e-05 1.105500773235235e-05 1.702653207757976e-05 6.904044269617771e-06 1.26534393274369e-05 2.375127216680539e-05 2.264417201303104e-05 2.874540505359846e-05 3.336281016075304e-05 7.0233644972717e-05 4.409522104253938e-05 + 1.428422166327437e-06 1.491531776309785e-06 1.384310479579653e-06 1.382175000230745e-06 1.391824511642881e-06 1.366771527955279e-06 1.398916836592434e-06 1.319917558362249e-06 1.409208181257782e-06 1.367115544326225e-06 1.39768856399769e-06 1.444373189940507e-06 1.453166781573145e-06 1.444126674243762e-06 1.558023875247727e-06 1.529504304542684e-06 1.735151702320081e-06 1.365402315656183e-06 1.312386332941173e-06 1.465718703741459e-06 1.371050267096052e-06 1.322875846199167e-06 1.254272756767705e-06 1.31274249426383e-06 1.230140782126909e-06 1.234456568965925e-06 1.233028712022133e-06 1.391130382444317e-06 1.374075132787311e-06 1.402048138032796e-06 1.371393121729625e-06 1.542281411914814e-06 1.572019906248556e-06 1.467824452205946e-06 1.579461185841069e-06 1.509145167943871e-06 1.528910161141539e-06 1.563035908702659e-06 1.798855606693905e-06 1.470340773579437e-06 1.315928287226598e-06 1.341799372056585e-06 1.51087973243591e-06 1.61044987478931e-06 1.724874036490576e-06 2.157655565326877e-06 1.430585658823702e-06 1.459674948023348e-06 1.362060245924113e-06 1.400214271640721e-06 1.362173112084974e-06 1.357658867107148e-06 1.258631186829007e-06 1.363467109882777e-06 1.300069943255266e-06 1.307478974865717e-06 1.2794937802596e-06 1.214054989873148e-06 1.193689968204126e-06 1.176291888782544e-06 1.214318544384696e-06 1.295961677527657e-06 1.327774448611763e-06 1.374260961028995e-06 1.309028888840658e-06 1.348530968670048e-06 1.39875701421488e-06 1.378567020537957e-06 1.407387145491157e-06 1.387489724891111e-06 1.279672190435122e-06 1.303466774515982e-06 1.295572431558867e-06 1.407051328783382e-06 1.25928787397811e-06 1.447492326889233e-06 1.304893167741739e-06 1.271669571423217e-06 1.298951637807022e-06 1.343328442260372e-06 1.258707623463806e-06 1.317956858315483e-06 1.340968079688309e-06 1.518408570433394e-06 1.382871221977666e-06 1.343069044423828e-06 1.570367327730082e-06 1.379282721813979e-06 1.338486399049543e-06 1.346603681895431e-06 1.313948587267078e-06 1.371601513255882e-06 1.239445111878013e-06 1.305527334238832e-06 1.39585890934768e-06 1.392062010552308e-06 1.446897435641858e-06 1.468016272099248e-06 1.583540839789066e-06 1.500866265047307e-06 + 1.277052128045852e-06 1.282732242202655e-06 1.241342076241381e-06 1.246517669528657e-06 1.250708706379555e-06 1.24318759731068e-06 1.270200428393764e-06 1.217059434566181e-06 1.256633410662289e-06 1.237674979392978e-06 1.221319578803559e-06 1.264252148303058e-06 1.260319386631181e-06 1.26318087012578e-06 1.326966716064248e-06 1.352050412961603e-06 1.374116791907909e-06 1.221219790181749e-06 1.213973989777628e-06 1.252568324616732e-06 1.223157049423662e-06 1.204048427183579e-06 1.183393735004756e-06 1.181112150305808e-06 1.17577015146253e-06 1.171667832977619e-06 1.172901015422667e-06 1.211813163592979e-06 1.211569490067177e-06 1.221649206684106e-06 1.231697282833011e-06 1.309072965582914e-06 1.299632694795605e-06 1.246007482080813e-06 1.308594336890678e-06 1.277928092235925e-06 1.290554582311643e-06 1.285915590898412e-06 1.430387786882648e-06 1.278760084488795e-06 1.195293148015253e-06 1.198855862583059e-06 1.280041022511114e-06 1.32800258434429e-06 1.35697365966081e-06 1.535324821944073e-06 1.255535504895988e-06 1.239895636828692e-06 1.217609211678905e-06 1.22498100019186e-06 1.216766783329604e-06 1.215681582067418e-06 1.179509276028057e-06 1.187492635779108e-06 1.173363358475399e-06 1.17440257696444e-06 1.178153006264893e-06 1.163313427809953e-06 1.154119942725629e-06 1.149564994307184e-06 1.15641567788316e-06 1.194735435916527e-06 1.206074045967398e-06 1.222571171410891e-06 1.175233027339573e-06 1.198426954118759e-06 1.234975719910381e-06 1.223376884240679e-06 1.224583634495957e-06 1.211342890883316e-06 1.188618057312851e-06 1.189685889357861e-06 1.191992240023865e-06 1.230385137773737e-06 1.184440389323527e-06 1.240858502171704e-06 1.194163417039817e-06 1.186204137582081e-06 1.195941123910416e-06 1.21377409101342e-06 1.184721742930606e-06 1.201932303018793e-06 1.22140271940907e-06 1.297337764327722e-06 1.240742559360797e-06 1.218903225463919e-06 1.358227475378726e-06 1.234282265727416e-06 1.220480307040361e-06 1.224692553591922e-06 1.208018758802609e-06 1.23243205507606e-06 1.17981511493781e-06 1.193007946653779e-06 1.215669549026188e-06 1.216115265378903e-06 1.249570367178876e-06 1.258423651506746e-06 1.300339189214128e-06 1.264071524786914e-06 + 1.186739758907152e-06 1.191803576716666e-06 1.169417274127227e-06 1.173116885411218e-06 1.174758793354158e-06 1.173174794644183e-06 1.184598602321785e-06 1.159902183189843e-06 1.176834246052749e-06 1.169099590470069e-06 1.15929977084761e-06 1.18078751398798e-06 1.180083327056991e-06 1.182635299912249e-06 1.225796351533859e-06 1.215950995003823e-06 1.280587973440106e-06 1.161081831568822e-06 1.158322110228482e-06 1.181539271755128e-06 1.161235147151274e-06 1.151980367097849e-06 1.136276267743597e-06 1.139595745769384e-06 1.128638587033493e-06 1.127280413015797e-06 1.127678309842395e-06 1.158799825873302e-06 1.156794581902432e-06 1.163611294430211e-06 1.165219419618779e-06 1.218906964695066e-06 1.225331834220356e-06 1.186551621401577e-06 1.229671910962793e-06 1.200626751796108e-06 1.209171095695183e-06 1.218371398437057e-06 1.293917382128029e-06 1.191021116397906e-06 1.14665813555348e-06 1.14943616225105e-06 1.204256356857059e-06 1.24485429608967e-06 1.276812520600856e-06 1.398100661020862e-06 1.178688076919343e-06 1.185648514478999e-06 1.159383113957801e-06 1.165014483106575e-06 1.158563987857519e-06 1.157662580908436e-06 1.134469211905298e-06 1.151234659602096e-06 1.13556332337339e-06 1.136529558465327e-06 1.134991656215334e-06 1.120429232059905e-06 1.111571890533014e-06 1.10296670641219e-06 1.117994138155609e-06 1.145754456643999e-06 1.152593355868703e-06 1.160019742485474e-06 1.137408393248052e-06 1.149881704520794e-06 1.166150784825959e-06 1.160374203834635e-06 1.163055003416957e-06 1.156741042507292e-06 1.140777399655235e-06 1.14172794951628e-06 1.143448514540069e-06 1.164561631128436e-06 1.137356520075627e-06 1.176021889648382e-06 1.145536778324185e-06 1.139295640939508e-06 1.146672314433772e-06 1.156639292787531e-06 1.137723337762964e-06 1.150545863026764e-06 1.161087986645271e-06 1.206104695228305e-06 1.169744233919801e-06 1.159543131734608e-06 1.230226605031248e-06 1.165780560086205e-06 1.160696086799362e-06 1.162710844937465e-06 1.154216036525213e-06 1.164805041753425e-06 1.132358306676906e-06 1.144180828305252e-06 1.159209013223972e-06 1.158871341999657e-06 1.177257381357322e-06 1.184292113265428e-06 1.227005800075176e-06 1.195460612279931e-06 + 1.236441878660344e-06 1.263042804566794e-06 1.218113055756476e-06 1.216017324168206e-06 1.220286421244055e-06 1.205473026288928e-06 1.213238022046426e-06 1.189322546224503e-06 1.226905453677318e-06 1.209655579259561e-06 1.216977295825927e-06 1.24532995471327e-06 1.251746855501779e-06 1.252045780830713e-06 1.316316218691327e-06 1.287789162418562e-06 1.404798171122934e-06 1.217058777314151e-06 1.1917542899198e-06 1.258653622215888e-06 1.217341267789607e-06 1.191306029824091e-06 1.15476492368316e-06 1.16444210718214e-06 1.143010379678344e-06 1.136523799516453e-06 1.137884368063169e-06 1.209194039120121e-06 1.208458716206451e-06 1.224471279925865e-06 1.217931419716933e-06 1.307116683335607e-06 1.31699096961313e-06 1.261217326131714e-06 1.323562171862136e-06 1.284534004497573e-06 1.294987782785029e-06 1.305074093238545e-06 1.441411267677495e-06 1.26159514834967e-06 1.179189055733332e-06 1.187882951114716e-06 1.289567556739257e-06 1.346989618511429e-06 1.377168006300167e-06 1.540554086076895e-06 1.247589064945487e-06 1.253718469484966e-06 1.213814035949667e-06 1.228956518772861e-06 1.211958743141395e-06 1.208852371092917e-06 1.15042813675359e-06 1.18036968288493e-06 1.157180523847501e-06 1.15908154540989e-06 1.152367126167064e-06 1.125526154055478e-06 1.117295838071186e-06 1.115985469368752e-06 1.123834302063642e-06 1.174617484167584e-06 1.1922942562137e-06 1.214891860001899e-06 1.160743295258726e-06 1.188317831690711e-06 1.22860209117448e-06 1.216559432748454e-06 1.224896926999008e-06 1.20663806058019e-06 1.163468624554298e-06 1.166542176633811e-06 1.169696290048705e-06 1.228804414665774e-06 1.156629600984616e-06 1.249068272812792e-06 1.175264117136976e-06 1.16012716588898e-06 1.176813700709545e-06 1.202541426437165e-06 1.157387114147923e-06 1.187354069287494e-06 1.203200397981163e-06 1.28649289976579e-06 1.221608382451222e-06 1.205077300170387e-06 1.318405779215936e-06 1.218899512878124e-06 1.198855414941136e-06 1.201364739245037e-06 1.18764808121341e-06 1.211663530398255e-06 1.149391835042479e-06 1.172157894302472e-06 1.213276746625525e-06 1.213758032747592e-06 1.2517543410695e-06 1.262418802383536e-06 1.31846562823057e-06 1.277700498292234e-06 + 1.712812380816331e-06 1.757116663725355e-06 1.660532959135708e-06 1.655311734793941e-06 1.667090799628568e-06 1.623736835654199e-06 1.652097665783003e-06 1.568018475950339e-06 1.683727518297928e-06 1.636448970998572e-06 1.668239761443147e-06 1.723825697297343e-06 1.736740831148609e-06 1.738093894587678e-06 1.857855631115513e-06 1.838637837536794e-06 2.009081960352432e-06 1.664165456105593e-06 1.583293686380216e-06 1.745996641489e-06 1.664307429649625e-06 1.599622716952354e-06 1.49919846847979e-06 1.57548154078313e-06 1.451725609058485e-06 1.454214327623049e-06 1.454930952604627e-06 1.670260843411597e-06 1.657435912960636e-06 1.68769135200364e-06 1.662505212607357e-06 1.834187202121029e-06 1.846091555179896e-06 1.746316147688276e-06 1.855156682495362e-06 1.791947113360948e-06 1.808965773619775e-06 1.82014026250954e-06 2.106472180685159e-06 1.757433182092427e-06 1.586378303386482e-06 1.618933687552726e-06 1.801309922555561e-06 1.896340569018662e-06 1.972506617597958e-06 2.529340086709908e-06 1.729457078880614e-06 1.737690777048329e-06 1.657341876182272e-06 1.693650382605938e-06 1.65284711428626e-06 1.644351591778559e-06 1.504363194015923e-06 1.624194926108657e-06 1.553665320841446e-06 1.560391670096806e-06 1.52173414136314e-06 1.417690526750448e-06 1.377733411800364e-06 1.322772916978465e-06 1.430216912012838e-06 1.553934019682401e-06 1.598429228977238e-06 1.658179748176281e-06 1.566216599968584e-06 1.627802095782727e-06 1.689971835361348e-06 1.662552186587618e-06 1.685568712161967e-06 1.661577840650352e-06 1.522430778777561e-06 1.546129539065078e-06 1.543883954013836e-06 1.691274214010718e-06 1.506181337873613e-06 1.727694407094305e-06 1.567953315628756e-06 1.521821111793997e-06 1.559901608771952e-06 1.625511739433705e-06 1.510016057082453e-06 1.588795999651893e-06 1.621776263505126e-06 1.799116109424403e-06 1.670170149736805e-06 1.630034194732843e-06 1.881630737443629e-06 1.664430627101865e-06 1.606135619169891e-06 1.612476253853856e-06 1.573626008166684e-06 1.643777025606141e-06 1.467837336122102e-06 1.557113932904031e-06 1.670971371936503e-06 1.668746165250923e-06 1.736619182679533e-06 1.755092185362628e-06 1.848276721005959e-06 1.774746198890398e-06 + 5.139432275313993e-06 8.252661501728653e-06 4.440450808829155e-06 4.247764024967182e-06 4.441546820999065e-06 3.684915412804912e-06 3.88092240655169e-06 3.038842166347422e-06 4.761946513553994e-06 3.996093383307198e-06 5.477849725821216e-06 6.24714306951546e-06 7.45937545687525e-06 7.105644886706841e-06 1.522506080497976e-05 8.560955475189758e-06 4.18250421940769e-05 5.037548980624251e-06 3.292073133209783e-06 9.624089312154638e-06 4.964885295777322e-06 3.951146084091306e-06 2.761237983150977e-06 4.157063035137298e-06 2.320066400329779e-06 2.501253426601124e-06 2.462386049728593e-06 6.275430635582779e-06 5.427491036158472e-06 6.695534558787131e-06 4.646291234422506e-06 1.4701198061573e-05 2.061976589473602e-05 1.165287515192404e-05 2.006970301060562e-05 1.301097156058972e-05 1.40789130966823e-05 2.044934412026578e-05 3.807607005512637e-05 7.892042322765747e-06 3.91017980305719e-06 4.529927156937674e-06 1.401899092989822e-05 2.395511885033841e-05 5.544395199397201e-05 0.0002245274500207728 6.807433422295617e-06 1.173113268215786e-05 4.979364303991929e-06 6.662060103579392e-06 4.86897455864721e-06 4.638514521815296e-06 2.988625595889971e-06 6.402830599938625e-06 3.98511419064107e-06 4.115451226027744e-06 3.284052390029046e-06 2.261368976519407e-06 2.046853850856678e-06 1.832669852319668e-06 2.45768941198321e-06 3.377204823351576e-06 3.86351821646258e-06 4.796920698879603e-06 4.248777315751795e-06 4.830582376769144e-06 5.529536771575749e-06 4.921346992148301e-06 6.339202435867719e-06 5.744592115775049e-06 3.023854119987845e-06 3.372807213963824e-06 3.294698032618726e-06 6.048010732229159e-06 2.847247891679672e-06 8.937622656191024e-06 3.622454261886787e-06 3.065410464131446e-06 3.445113954114731e-06 4.195533819029151e-06 2.894909741257834e-06 3.802804844355023e-06 3.927700660710798e-06 1.138828389812829e-05 4.673302537838708e-06 4.146773825652872e-06 1.356563772958452e-05 4.647088296394486e-06 3.659485919627059e-06 3.722880009604523e-06 3.266725826733818e-06 4.212765745137403e-06 2.403762337621629e-06 3.476289421655565e-06 6.062872614620574e-06 5.847339636488869e-06 8.304036203554688e-06 9.751306240701751e-06 2.183305903002974e-05 1.311522814262389e-05 + 1.024521322179339e-05 2.15787228512454e-05 8.204432702996201e-06 7.712311074214995e-06 8.213632426645745e-06 6.315552099067645e-06 6.799855000849675e-06 4.715897276241776e-06 9.088433827741937e-06 7.084191622652725e-06 1.149647826537148e-05 1.413131638372533e-05 1.86597537350508e-05 1.729581846987571e-05 4.722815636881705e-05 2.228084055211355e-05 0.0001662128862456314 1.002102079361578e-05 5.360277656407675e-06 2.619297515593644e-05 9.771175363937346e-06 6.973144682120846e-06 4.03471382526277e-06 7.536114033257491e-06 3.007300620083697e-06 3.430350368205382e-06 3.335803754112021e-06 1.425513587349769e-05 1.136012118507779e-05 1.57694219247162e-05 8.815093938352447e-06 4.513642471870583e-05 6.855568078201202e-05 3.28080395330943e-05 6.621232053660719e-05 3.85188504559153e-05 4.253202839521464e-05 6.695085798114064e-05 0.0001479698907118632 2.021543958719008e-05 6.827878241466578e-06 8.518344351671203e-06 4.238651798438298e-05 8.301193567739062e-05 0.0002406236154346431 0.001711697223177211 1.618202521136425e-05 3.293772179269183e-05 9.84801342340802e-06 1.567028747118115e-05 9.49712481101983e-06 8.800305462131064e-06 4.58510872292095e-06 1.455866248889492e-05 7.126628069897833e-06 7.489818553807481e-06 5.269854156608744e-06 2.914893329375445e-06 2.515590622920172e-06 2.200079407543853e-06 3.344943628746933e-06 5.556907193948746e-06 6.740949203276614e-06 9.234709878569447e-06 7.887240403903206e-06 9.446850512517813e-06 1.15946345147222e-05 9.614998525364626e-06 1.451904849147923e-05 1.243982330123572e-05 4.686832355105253e-06 5.479645494688157e-06 5.336831804925168e-06 1.346477469610363e-05 4.247432762838343e-06 2.361059098276996e-05 6.124107049032546e-06 4.782556928262238e-06 5.724159542808138e-06 7.593735887212461e-06 4.364354055041986e-06 6.595118033914105e-06 6.948192133648945e-06 3.288301708082031e-05 8.876038879890302e-06 7.49802391197818e-06 4.111662760308832e-05 8.791676400221604e-06 6.273430109615674e-06 6.422364563718475e-06 5.300625062432118e-06 7.605050925008072e-06 3.186941086141815e-06 5.752031853489825e-06 1.353930423420024e-05 1.279467382886423e-05 2.168015507919563e-05 2.683403402770068e-05 7.347928988465924e-05 3.833519765095161e-05 + 9.552513837718379e-06 1.969544071300788e-05 7.427081584410189e-06 7.065769338510108e-06 7.512557615996229e-06 5.919547419352966e-06 6.511490212801618e-06 4.435163390326124e-06 8.30186957045953e-06 6.491761723737e-06 9.729492830956588e-06 1.289964927053688e-05 1.67906870274237e-05 1.570019276009305e-05 4.196586471394426e-05 2.145758552352106e-05 0.0001431078033196087 8.726061764718906e-06 4.957637804281489e-06 2.220726228685521e-05 8.543661216720011e-06 6.036871585735071e-06 3.511407626888285e-06 5.995965587146657e-06 2.668859238497134e-06 2.941196257211232e-06 2.882893262778907e-06 1.151973381752214e-05 9.442941951931516e-06 1.309107445734981e-05 7.881789958474883e-06 3.947443653018468e-05 5.654181129344238e-05 2.584325755350392e-05 5.577152501068383e-05 3.26496922227193e-05 3.634535920227222e-05 5.213552236327246e-05 0.0001337215601751041 1.852343317310101e-05 5.755365751980435e-06 7.033507209541767e-06 3.575934917421364e-05 7.114231933158521e-05 0.0001940678603844503 0.001440940153099035 1.459731871200631e-05 2.526606359332106e-05 8.500475162875887e-06 1.323158316068884e-05 8.190743978175874e-06 7.620957372722614e-06 3.874793968350332e-06 1.065049539761276e-05 5.612602738125361e-06 5.857815370546859e-06 4.366034332292656e-06 2.530815507384432e-06 2.238360124806604e-06 2.017234095319509e-06 2.8113072048086e-06 4.822961166439654e-06 5.891337913510597e-06 8.072848011408951e-06 6.139048398523528e-06 7.687641076614682e-06 1.025097799001173e-05 8.386453025366336e-06 1.220880574948069e-05 1.016086335425825e-05 4.067891993031481e-06 4.65428274765145e-06 4.60031530735705e-06 1.163964144268448e-05 3.68585056165216e-06 1.961349470747109e-05 5.22392922164272e-06 4.111559622543837e-06 4.969206514715552e-06 6.678835493545421e-06 3.781080195608411e-06 5.712696005133466e-06 6.289762975342228e-06 2.931207185241647e-05 8.002051760769291e-06 6.700876358678443e-06 3.793511192640153e-05 7.873609952468996e-06 5.734520605926718e-06 5.877812924381942e-06 4.855503817680074e-06 6.867750926176086e-06 2.834327361256328e-06 4.915891750556511e-06 1.112031441863337e-05 1.060093429572362e-05 1.890063090570493e-05 2.314745660569884e-05 5.985398261998398e-05 3.107725657258698e-05 + 4.13263965981514e-06 5.64333502950376e-06 3.290157110313885e-06 3.298763999737275e-06 3.416339609429997e-06 3.100800114452795e-06 3.51832451883638e-06 2.576463501213766e-06 3.605627938441103e-06 3.111219882612204e-06 3.172436564113923e-06 4.406439963133835e-06 4.887524628571782e-06 4.817053799399673e-06 9.450346041717239e-06 7.305855906025727e-06 2.155417777593982e-05 3.219843824453505e-06 2.641409809100992e-06 5.210877720429608e-06 3.222952695836057e-06 2.584806807703899e-06 1.954387176539285e-06 2.212490930020294e-06 1.764204768051059e-06 1.76274229346518e-06 1.7648429988526e-06 3.162251630328683e-06 3.006793505733185e-06 3.553678915579894e-06 3.275582873385474e-06 8.629058360298814e-06 9.709575998329001e-06 5.108087963279218e-06 1.011813244566895e-05 6.958638579135368e-06 7.690212321165291e-06 8.161417177632302e-06 2.374170480123894e-05 5.475449697200929e-06 2.388405651032599e-06 2.560806649398728e-06 7.350101045133783e-06 1.249289772253803e-05 2.29364595192294e-05 0.0001189140816180156 4.550426140781383e-06 4.809068853361964e-06 3.108162625053978e-06 3.691879008727028e-06 3.045945449642318e-06 2.964480248834889e-06 1.95752070197841e-06 2.620801350161628e-06 2.114028873734242e-06 2.140962752861242e-06 2.007092696487689e-06 1.664080357954845e-06 1.59677016142723e-06 1.539492117785812e-06 1.690423367506355e-06 2.27971680999417e-06 2.605001256483774e-06 3.13330432533121e-06 2.173920872650115e-06 2.606766585699916e-06 3.622877962072835e-06 3.176186645248436e-06 3.509127459722094e-06 3.021534830338624e-06 2.087876808332112e-06 2.164743250432366e-06 2.199587726181562e-06 3.636753270086501e-06 1.99003315515256e-06 4.594588105533148e-06 2.312112396651855e-06 2.066243389720057e-06 2.318441328696963e-06 2.850105179419415e-06 2.008690469068597e-06 2.505684594922286e-06 2.92702167570269e-06 7.172276980327297e-06 3.386918340453349e-06 2.956555814392914e-06 9.717960978150586e-06 3.294502548101264e-06 2.824815702240357e-06 2.885841155375601e-06 2.554032590751376e-06 3.110701598529886e-06 1.824608119704862e-06 2.248620489808673e-06 3.195979346060085e-06 3.16854904980346e-06 4.903324814620191e-06 5.541963201238786e-06 9.842193133380306e-06 6.152399521397456e-06 + 1.859070597021173e-06 1.891506059337189e-06 1.617908239381904e-06 1.663386868244743e-06 1.682655877743855e-06 1.680596398045964e-06 1.876843640502557e-06 1.535475504965689e-06 1.70511871999679e-06 1.61456551950323e-06 1.538349522434146e-06 1.752990804959609e-06 1.775102390411121e-06 1.784511605151806e-06 2.417931920462024e-06 2.488411258383394e-06 3.758639383732998e-06 1.545839513283909e-06 1.514857689954852e-06 1.823429634839613e-06 1.547316848871105e-06 1.45183390998227e-06 1.354126411001744e-06 1.410699002946103e-06 1.321931947018129e-06 1.320674535065791e-06 1.320803150406391e-06 1.558842726012699e-06 1.521154459283025e-06 1.605898614087664e-06 1.580344068941031e-06 2.26715566853386e-06 2.387295900518893e-06 1.865496351172169e-06 2.426069118044438e-06 2.033874206830433e-06 2.121949194133776e-06 2.286556572528298e-06 4.202328565128255e-06 1.883651766121375e-06 1.423870035210939e-06 1.455496114743937e-06 2.084001639701683e-06 2.733232900453686e-06 3.855283594589309e-06 1.13361099849385e-05 1.743128095199609e-06 1.841261482837808e-06 1.528288199992289e-06 1.618106402645481e-06 1.519037445163463e-06 1.50752012118005e-06 1.353651150282076e-06 1.511925852071272e-06 1.39514226304982e-06 1.401125466315989e-06 1.365829881194713e-06 1.303861708379372e-06 1.29126632941734e-06 1.28287049960818e-06 1.309285003969762e-06 1.405736767878807e-06 1.455861308841122e-06 1.533629749417287e-06 1.408106914624341e-06 1.467764100482327e-06 1.607059417096934e-06 1.538722912641788e-06 1.592085098423013e-06 1.530336092514517e-06 1.375570548134419e-06 1.387543790087875e-06 1.392524552557006e-06 1.601050286126338e-06 1.359591493610424e-06 1.757165112081793e-06 1.410357157283215e-06 1.37099142349939e-06 1.411744300128248e-06 1.494723750994353e-06 1.362485502198751e-06 1.43993614543092e-06 1.534869173980269e-06 2.079636317375844e-06 1.622291446068402e-06 1.522952917554221e-06 2.625001965128604e-06 1.58620637336071e-06 1.529841014757949e-06 1.547767638498954e-06 1.478664842124999e-06 1.570924837324128e-06 1.334841215339111e-06 1.400266697260122e-06 1.555129706787284e-06 1.546779266448084e-06 1.769699437659256e-06 1.854431051384609e-06 2.421111940265064e-06 1.976297223649226e-06 + 2.191907757520539e-06 2.642676079744888e-06 1.961608518286084e-06 1.945099270983519e-06 1.993051782278599e-06 1.838646554119805e-06 1.928807634499208e-06 1.662510712208132e-06 2.071525116775774e-06 1.87442444143926e-06 2.007173222295933e-06 2.346001778619211e-06 2.45103771234767e-06 2.445664621930632e-06 3.385912215492226e-06 2.939682739011573e-06 4.843393794473627e-06 1.987523118529566e-06 1.705532906015605e-06 2.51122307659557e-06 1.98261827222268e-06 1.795258075532047e-06 1.520456525128111e-06 1.670731379022072e-06 1.416355928540725e-06 1.430791215284444e-06 1.428376776857476e-06 1.996436971296589e-06 1.960486805785422e-06 2.10933297140059e-06 1.967866918306527e-06 3.220351405985866e-06 3.228660679255313e-06 2.468944497735492e-06 3.361553122971372e-06 2.858741911637708e-06 3.010842718254025e-06 2.961251890809535e-06 5.630182354110502e-06 2.603188402616752e-06 1.745038087364037e-06 1.817160015349373e-06 2.919124213462965e-06 3.761758872400378e-06 4.272198924404336e-06 7.092530792007778e-06 2.37090113763827e-06 2.384849251413357e-06 1.965943075887822e-06 2.145586233126551e-06 1.948215649250074e-06 1.916010575087057e-06 1.532463347331259e-06 1.776228788941125e-06 1.611679319779569e-06 1.624313711090508e-06 1.570748132451172e-06 1.384110134949879e-06 1.349054457477905e-06 1.317887054597122e-06 1.393535512761446e-06 1.67921329108367e-06 1.78590499189113e-06 1.954298937789645e-06 1.637245361507667e-06 1.83233235162561e-06 2.100128654092259e-06 1.972625213397805e-06 2.100515310132778e-06 1.961393444105397e-06 1.591664016586947e-06 1.644201034878279e-06 1.650641863193414e-06 2.12362432705504e-06 1.53955249260207e-06 2.372336691536248e-06 1.706929943168234e-06 1.58185999765692e-06 1.694859189882436e-06 1.849971646095128e-06 1.548844782206515e-06 1.768022375614464e-06 1.823477752793679e-06 2.953705187991318e-06 2.004643015141028e-06 1.85354820558814e-06 3.485366292466097e-06 1.973712976166553e-06 1.773551510098059e-06 1.792630484942492e-06 1.682701437744072e-06 1.89115422699615e-06 1.447460434178538e-06 1.679958529621217e-06 2.01150623979629e-06 2.006417119559956e-06 2.436653407045242e-06 2.579796767321341e-06 3.220042643192755e-06 2.694844742023861e-06 + 2.017764195727523e-06 2.002142778678717e-06 1.866121834837031e-06 1.898661039945182e-06 1.915602922508697e-06 1.88576997572909e-06 1.976538328563038e-06 1.763240007335298e-06 1.93718388175057e-06 1.859290236438937e-06 1.725865843127394e-06 1.945835016670117e-06 1.896121599287426e-06 1.931396909071736e-06 2.125647519335416e-06 2.227413649080745e-06 2.174966976298265e-06 1.751744441946812e-06 1.750831714275591e-06 1.815813401861988e-06 1.759613482477107e-06 1.680911172030619e-06 1.537818192787199e-06 1.508574882791436e-06 1.475482974910847e-06 1.451169815425146e-06 1.456379870035107e-06 1.661043661727035e-06 1.683063295843112e-06 1.717190279748593e-06 1.812613220408821e-06 2.065844872944922e-06 1.932935115078749e-06 1.764631106127013e-06 1.999069494829087e-06 1.902843635548379e-06 1.96381592232342e-06 1.848479790567126e-06 2.360091464481684e-06 1.999802883290158e-06 1.605616542832422e-06 1.615254923592602e-06 1.909756417006747e-06 2.078863134968856e-06 2.031198453877892e-06 2.262030768918066e-06 1.89532084249322e-06 1.732682729738144e-06 1.734414141196794e-06 1.739748380913397e-06 1.730626966178761e-06 1.728979917459128e-06 1.498292739654516e-06 1.519548266770698e-06 1.475407483297886e-06 1.479356363631723e-06 1.490692042693809e-06 1.411552531749294e-06 1.370810707612691e-06 1.342988795727251e-06 1.392988231430081e-06 1.627521537983512e-06 1.695458308859088e-06 1.755490380617175e-06 1.483240051669554e-06 1.605335832266519e-06 1.801940669565738e-06 1.756107131711815e-06 1.732400100706855e-06 1.664723811245494e-06 1.581990190402394e-06 1.568080818969975e-06 1.600705900273169e-06 1.766398526115154e-06 1.54535667107325e-06 1.773473481847532e-06 1.60660075110286e-06 1.553407823706721e-06 1.635822609813431e-06 1.730146721001802e-06 1.546614321057405e-06 1.670029014633201e-06 1.778724488588068e-06 2.041588000878392e-06 1.861277507231307e-06 1.759844252546827e-06 2.229990762714351e-06 1.82280993499262e-06 1.77909890197725e-06 1.798752904846879e-06 1.723861757341183e-06 1.82260261283318e-06 1.514106585887021e-06 1.598733419427845e-06 1.685714593691046e-06 1.694774681482158e-06 1.825795031606958e-06 1.847023877843412e-06 1.91561608886559e-06 1.825254319243186e-06 + 1.745059595492648e-06 1.739422174296124e-06 1.628488561777885e-06 1.654421609487144e-06 1.663953923980444e-06 1.66237683174586e-06 1.747359519299607e-06 1.590321929256788e-06 1.677332335248138e-06 1.630282611131406e-06 1.534140281478358e-06 1.683712085309708e-06 1.655312015458321e-06 1.673670587010179e-06 1.904012883358064e-06 1.973786808662226e-06 2.109645246051173e-06 1.546560222109861e-06 1.563976390173138e-06 1.613803696898231e-06 1.553110656971057e-06 1.49535654969668e-06 1.420567674159656e-06 1.409846635880285e-06 1.399473376295646e-06 1.377798746204917e-06 1.381721304483108e-06 1.489387798869757e-06 1.500356862749186e-06 1.529447573034304e-06 1.588388364837101e-06 1.824714241038805e-06 1.726813126268212e-06 1.579287632225146e-06 1.781106778508956e-06 1.680739071474591e-06 1.728996057437371e-06 1.662953224013108e-06 2.461457814462165e-06 1.730591723259067e-06 1.449548364007569e-06 1.456828236712226e-06 1.687249945092617e-06 1.879448745967238e-06 1.906373102933401e-06 2.758024255200553e-06 1.647500022627923e-06 1.554081961785414e-06 1.534217311416342e-06 1.545677941194867e-06 1.531768516471743e-06 1.530468527022322e-06 1.397845526440733e-06 1.425132865051637e-06 1.391510817683184e-06 1.395148256477796e-06 1.396464668346198e-06 1.355839643224499e-06 1.330666634657973e-06 1.329326124732688e-06 1.332594770531159e-06 1.463822378866553e-06 1.507357296759437e-06 1.551579657643742e-06 1.397441156569812e-06 1.453225959124893e-06 1.585259472136613e-06 1.552546557093137e-06 1.541070083987961e-06 1.490221215760812e-06 1.441430583781766e-06 1.432521258948327e-06 1.449231433525711e-06 1.565510338252807e-06 1.423003194389594e-06 1.581090092628301e-06 1.4502077334555e-06 1.424552106499277e-06 1.468334904330959e-06 1.531799032505887e-06 1.422588066901653e-06 1.488668644356039e-06 1.570154044117089e-06 1.786441362838787e-06 1.621068502544176e-06 1.553530108111545e-06 2.026203357985423e-06 1.59668172017291e-06 1.577216259818215e-06 1.591402607914461e-06 1.543462516906402e-06 1.601369390868967e-06 1.419895482968059e-06 1.447276304133993e-06 1.505266901347113e-06 1.510822428940628e-06 1.613928692023592e-06 1.633132431066997e-06 1.717333667272669e-06 1.629427227811675e-06 + 2.012999832601281e-06 2.103165684275154e-06 1.917270878948329e-06 1.924184573454113e-06 1.940862318861036e-06 1.906430412645932e-06 1.986660777220095e-06 1.805490384754194e-06 1.969698445236645e-06 1.89343205647674e-06 1.880082976413178e-06 2.022748262220375e-06 2.024575870507306e-06 2.017309981283688e-06 2.204448456666341e-06 2.183015713086434e-06 2.38197997148859e-06 1.83999556746528e-06 1.77761875796989e-06 2.015585867098935e-06 1.852646050792828e-06 1.750732124605747e-06 1.608595791680045e-06 1.673806597324301e-06 1.557433151333498e-06 1.546235644411809e-06 1.548159843878238e-06 1.853729187928366e-06 1.829665020380844e-06 1.886375905257864e-06 1.876604901696055e-06 2.172524133925435e-06 2.175502231693827e-06 1.996818710381376e-06 2.19818088353918e-06 2.097247218557641e-06 2.13570185181311e-06 2.139796276168227e-06 2.467169998965346e-06 2.070409259147254e-06 1.713247911538929e-06 1.756853652779e-06 2.099714819792098e-06 2.244186731559239e-06 2.366653556684639e-06 3.038673190403074e-06 1.988085628568115e-06 1.978070098829221e-06 1.827585126790154e-06 1.890713335228611e-06 1.826376191615964e-06 1.819598352881258e-06 1.594961275941387e-06 1.759337553863816e-06 1.637137543752942e-06 1.649901403055765e-06 1.618926745550198e-06 1.499511810720833e-06 1.453704612686124e-06 1.432767305686866e-06 1.483009093306009e-06 1.694102731875091e-06 1.765782819518336e-06 1.856816950862594e-06 1.654635376269198e-06 1.766255309121334e-06 1.912361472733437e-06 1.863160385084939e-06 1.898579078840612e-06 1.846549523065733e-06 1.656912246517095e-06 1.682612889908341e-06 1.683886608816465e-06 1.91131677240719e-06 1.616879327315246e-06 1.973905060737025e-06 1.698115955406365e-06 1.634153431240293e-06 1.701131630227337e-06 1.802951903329131e-06 1.615609793503836e-06 1.740053061638491e-06 1.825334837946002e-06 2.142343383582102e-06 1.908660376415128e-06 1.817742926846222e-06 2.237090914292139e-06 1.893405340069876e-06 1.826903620383291e-06 1.84641190514867e-06 1.773963219875441e-06 1.888850832187927e-06 1.587072105735388e-06 1.696538319606589e-06 1.866171444930842e-06 1.862136741692666e-06 1.993682722911672e-06 2.029938457326352e-06 2.184031522745045e-06 2.060044835161534e-06 + 5.500095959121154e-06 5.951269429260719e-06 4.784111908406885e-06 4.852415784739605e-06 4.945744990436651e-06 4.792244112650224e-06 5.432460241650006e-06 4.215487379610749e-06 5.116572580732281e-06 4.678332942376073e-06 4.577837756869485e-06 5.344547368224539e-06 5.291086910830245e-06 5.230986758419931e-06 7.081534189268268e-06 7.637273068183958e-06 9.085813045928148e-06 4.299154875653244e-06 4.041657932774001e-06 5.235779116929962e-06 4.382263639968187e-06 3.923423406604343e-06 3.367020351419114e-06 3.525910319268633e-06 3.197219101025439e-06 3.148725632229343e-06 3.154881298428336e-06 4.377674279965049e-06 4.261796153315345e-06 4.532484968677863e-06 4.510403972091126e-06 6.53946414175266e-06 6.441791352784776e-06 5.121043903599798e-06 6.678168134044427e-06 5.772222735345167e-06 6.108901246193454e-06 6.256829625073124e-06 1.20295759664657e-05 5.655770046075759e-06 3.738958238130863e-06 3.910026403985967e-06 5.758893326657244e-06 7.179338954443892e-06 8.726949449311405e-06 2.207709985135864e-05 5.03352789849032e-06 5.00467459119136e-06 4.244714823187223e-06 4.531492932002834e-06 4.25322997976707e-06 4.235896170712294e-06 3.286945123193163e-06 3.851275895527806e-06 3.400434703593191e-06 3.44958550613228e-06 3.36985421256486e-06 2.99612956666806e-06 2.839246263874884e-06 2.732114424475185e-06 2.936803873865301e-06 3.702761752322203e-06 4.017872669237477e-06 4.435754604514841e-06 3.455151045272942e-06 3.935617744588171e-06 4.681291947861155e-06 4.465339195292017e-06 4.634311537188296e-06 4.369890945099542e-06 3.574179771703712e-06 3.668724161798309e-06 3.674213758131373e-06 4.690730925460684e-06 3.395836241537609e-06 5.000463744408989e-06 3.696680700215893e-06 3.453941630482404e-06 3.72800014147856e-06 4.176945271439081e-06 3.380024844901186e-06 3.886132684982613e-06 4.284894753681101e-06 6.273982648963283e-06 4.689555677117596e-06 4.237593572042897e-06 8.126996846158363e-06 4.617666007789012e-06 4.32196422650577e-06 4.427792873684666e-06 4.076334477076671e-06 4.644864390002112e-06 3.311432124064595e-06 3.717232118560787e-06 4.470988940852294e-06 4.44935724175366e-06 5.076416329075073e-06 5.293586994525867e-06 6.571580041025982e-06 5.543023704035477e-06 + 0.00024002888546093 0.0004622352972489807 0.0001917109986067089 0.0001810637857460051 0.0001964962804805737 0.000147574580211085 0.0001717880940361738 9.275698650412778e-05 0.0002297419016201729 0.000160622338071903 0.0002375612297953467 0.0003083354037229924 0.0003342824237613229 0.0002948562340279182 0.0006946489408097278 0.0004586958482466486 0.00165149133779785 0.0001581574813620534 8.726750616716572e-05 0.0003848542696758273 0.0001699180707959158 0.000112135847814443 5.616721679047032e-05 9.854171258183442e-05 4.274809299431581e-05 4.593248721107557e-05 4.497859867313991e-05 0.0002207940814358267 0.0001832447919447588 0.0002345916721431252 0.0001668473290941108 0.0006318532709528313 0.0007692933351037823 0.0003912977847129184 0.0008025801855939818 0.0005128370482090361 0.0005908620520571617 0.0007935752191876588 0.002019048185118777 0.0003657577926183819 0.0001044310654805258 0.0001340410967394234 0.0005035810625422243 0.0009207745900088327 0.001867584918260334 0.01103335201653621 0.000263204256075511 0.0003710855994967233 0.000155399613671392 0.0002230120406370162 0.0001580233618003746 0.0001534563996337113 5.759612069056175e-05 0.0001673191443032351 8.6556121633663e-05 9.397935460597751e-05 7.280876430826311e-05 3.60984305416423e-05 2.718086659569963e-05 2.045326424138239e-05 3.58261667372517e-05 8.824064806134402e-05 0.0001209570264535387 0.0001812102541620675 9.463728047975906e-05 0.0001431108976177597 0.0002173413381711953 0.0001885538334391867 0.0002518384090706149 0.0002166783320518562 7.614423267909842e-05 9.822308007301217e-05 8.976156523488044e-05 0.0002439698168217319 5.922764487564791e-05 0.0003394249488550827 9.537486531385753e-05 6.751562657214549e-05 9.057099477516317e-05 0.0001366311202986026 5.794751864129921e-05 0.0001084594600939681 0.0001278551658785432 0.0005527166091248148 0.0001813041202716192 0.0001323787057287973 0.0007119366230980972 0.0001829555074479572 0.0001259351308036116 0.0001361399529287155 0.0001010591235655056 0.0001783736781533207 4.821718135872288e-05 9.906598549491719e-05 0.0002327297286015551 0.0002227252532449597 0.0003214780435421005 0.0003797310819564359 0.0008549725769313454 0.0004980616349214984 + 0.003395123185235605 0.007757584999353639 0.002681211532149064 0.002505211655432049 0.002759498597129095 0.001970442662070582 0.00233015263953007 0.001091197646033493 0.003344447744083823 0.002173866271846236 0.00338184879061032 0.00466639846121808 0.005039106363309287 0.004249321347213453 0.01164047322759387 0.007043123287839848 0.02883123007296895 0.001961974946521394 0.0009805516093610578 0.005708610010394466 0.002184707178386702 0.001318390792594215 0.0005655742829375754 0.001034428473751348 0.0004027345371753199 0.0004369040072234043 0.0004264656631178809 0.002862529779434908 0.00233616479166443 0.003090393279599368 0.002176504797301249 0.01038705346509516 0.01228776335183213 0.005342506980252182 0.01328896151585113 0.007975334665367484 0.009574601381043379 0.01232876501432401 0.03810988066780752 0.005600089513286832 0.001191808889942081 0.001593899225021289 0.007599943148809629 0.01530449953522783 0.0288563304815046 0.1655968927116032 0.003664359626140978 0.004838588511649533 0.001919378423044904 0.002898388464465995 0.00198154684378693 0.001936276309539409 0.0005662096544369888 0.001702833692537098 0.000855464638885195 0.0009494798377893687 0.0007549638851642726 0.0003174463761297375 0.000214745254055515 0.0001421117145383732 0.0003010847457716181 0.001003162052917617 0.001485025409209584 0.002423627748598278 0.0009459694311146905 0.001701370288671455 0.002983550366103316 0.002539686522446516 0.00349647404346598 0.002890725198682276 0.0008537940121868814 0.0011715409953581 0.001041564097391756 0.00341393032893933 0.0006046566569253287 0.00481478929545176 0.001085412171768496 0.0007108791848082774 0.001031749726134734 0.00170815000773672 0.0005811222377225533 0.001278019492293225 0.001593206021844651 0.009223974097487542 0.002433257361818875 0.001639735073879933 0.01201314971304512 0.002478497495239651 0.001604507317665593 0.001777707378508353 0.001230377283604867 0.002480026948163072 0.0004725582817428631 0.001169793812508146 0.003145845040627648 0.003002561926834346 0.004625129323841293 0.005616740204160919 0.01390605505504894 0.007467484565353288 + 0.005039580766752039 0.01462687744498226 0.004490746848560434 0.003996851518607514 0.004410639348989775 0.003005892713559888 0.003340693395870176 0.001669943862367518 0.005399144761454977 0.003505326889367666 0.007923929058904378 0.008010727227528491 0.009499579965645211 0.007335472020743694 0.02108763906888633 0.01014827294221554 0.05812388064332019 0.003604820056077429 0.001529688015979858 0.0130759897668149 0.00405996023430788 0.00263012028873888 0.001187455524966907 0.003270962301591851 0.0008261414213137641 0.001100166772644684 0.001018316270382513 0.007780401380465207 0.005456020007457596 0.007294717672870377 0.003722295465962588 0.01977842227925208 0.02874889311981477 0.01411338410896512 0.02902470377646793 0.01740344479102873 0.02028819078069688 0.03567445236756583 0.07047932793357248 0.009673458750686592 0.002796059098375991 0.003966349969783067 0.01611475508093996 0.03085709820001448 0.06973549930508494 0.345691862457155 0.00632382924660746 0.01360011703161845 0.003657398718125648 0.006228334789009082 0.003854610367300282 0.003771861595520676 0.001382728736739836 0.007245602941338802 0.003058780994990684 0.003482261492592897 0.002216479409860028 0.0008299831098241839 0.0005682224126815072 0.0003028121068098244 0.0009332724904069778 0.00210660914923011 0.002947365227754517 0.004680454016337876 0.003388276733335971 0.004443534304630958 0.005497490521584325 0.004952282280534348 0.008218970161259165 0.007766797886439747 0.001899891469903991 0.003056964658327388 0.002377440601918579 0.007114293938641936 0.001287983108589685 0.01161005469609577 0.002470746999680529 0.001594678917776093 0.002141103382559351 0.003213175356489018 0.001219283023722539 0.002601285559851618 0.002669018546594515 0.01755802108726812 0.004023634796887166 0.002859299611106536 0.01968129805882057 0.004294371761815796 0.002672054067822671 0.002943608057563551 0.002101406311837195 0.004296153553852378 0.0009216450424247569 0.002798442243488353 0.008213390017814959 0.007463674652051111 0.009524837007560905 0.01195836708643228 0.03501768588067833 0.01877283960205034 + 0.0004494949800886161 0.001057470608685662 0.0003971784525163002 0.000359316029161505 0.0003916388638316448 0.0002777783942065071 0.0003040745904883124 0.0001700670350572864 0.0004628938338981925 0.0003202269959956539 0.0006297647456960931 0.0006469755507154673 0.0007591874678496424 0.0006244975746323433 0.001607778370942725 0.0008260280051377578 0.004361231463128945 0.000352699618774821 0.0001649807818644433 0.001028612854732103 0.0003821987544050387 0.0002665480086889715 0.0001335545867000576 0.000326114369439523 9.651926447418191e-05 0.0001234650659114322 0.0001155570372333159 0.0006514975599429818 0.0004859006700996815 0.0006261308076886962 0.0003523434871262054 0.001522030610134451 0.002177736434186173 0.001168508458915696 0.002170735486561881 0.00135659657863485 0.001540018162071277 0.002589625499513915 0.005001770470194344 0.0007784120030258634 0.0002814216076316711 0.0003748233874851792 0.001307721425746422 0.002371168108666666 0.005598087783217132 0.03261085994751767 0.0005567646132860204 0.001154171630380674 0.0003562160576695561 0.0005559880347174584 0.0003680830557364345 0.0003584793054862701 0.0001558938434058632 0.0006672410713655097 0.0003105101492835161 0.0003430286725318865 0.0002292970518311677 9.705346548116722e-05 7.084225332221195e-05 4.193734416446659e-05 0.0001099843247445165 0.0002166270707917306 0.0002858276202744037 0.0004197640384902002 0.000339398593141027 0.0004131374420310863 0.0004830134880009496 0.0004392833115289818 0.0006695454365797104 0.0006344570234233515 0.0001940552016463926 0.0002863307731217901 0.0002353362012570415 0.0005933349265347942 0.0001434604819401386 0.0009348989503159544 0.0002507403721097035 0.0001726609504544285 0.0002205094777423255 0.000310270613233854 0.0001387943840818195 0.0002615173690649897 0.0002627371752232932 0.001305500186784769 0.000372761333792937 0.0002822982330492607 0.001485194650925337 0.0003902735867384877 0.0002561931296440889 0.0002760276976800924 0.0002075989454226601 0.0003784685123662257 0.0001053237193104906 0.0002703956999994261 0.0006672833866190331 0.0006166605261626046 0.0007843388858361777 0.0009624181744243288 0.002551988077705403 0.001453718785111136 + 1.401988082250227e-05 2.228477036680943e-05 1.272752665215648e-05 1.198189312390241e-05 1.264693902669478e-05 1.022655598603706e-05 1.082606426905386e-05 7.812133745233041e-06 1.398538219632428e-05 1.115279715691031e-05 1.645097849234389e-05 1.699827517143149e-05 1.857661741411221e-05 1.685500393122652e-05 3.052020141502965e-05 2.045876575529348e-05 6.3812205070235e-05 1.230267879925862e-05 7.799848905420959e-06 2.232039460992041e-05 1.27652267991607e-05 1.033562811514344e-05 6.921913460189444e-06 1.183323290376848e-05 5.809258837530251e-06 6.581939004490778e-06 6.355709594174641e-06 1.713533137603918e-05 1.455402872352352e-05 1.680865667452736e-05 1.210420408170876e-05 2.92892793734012e-05 3.730707476989892e-05 2.498661624983356e-05 3.722670473038647e-05 2.691501277851671e-05 2.915210755460862e-05 4.102553278784171e-05 7.276070591188954e-05 1.905248014821836e-05 1.071599471558216e-05 1.264108821530385e-05 2.674554028914145e-05 4.057719716321628e-05 7.62360116057792e-05 0.0003024436929521812 1.584538011556447e-05 2.511287429030062e-05 1.235887695827387e-05 1.580606455320321e-05 1.252496977421913e-05 1.227552873217519e-05 7.630448937590018e-06 1.839126555580606e-05 1.15631750219336e-05 1.22047446815543e-05 9.4782557198414e-06 5.783011189919307e-06 4.89748093457365e-06 3.738858396218347e-06 6.221930952676757e-06 9.076949705644211e-06 1.06100477239579e-05 1.330570153612598e-05 1.21997572257726e-05 1.337409698720649e-05 1.447032093793155e-05 1.365224932925457e-05 1.721441219615372e-05 1.67021830392855e-05 8.430705676687467e-06 1.049395206109693e-05 9.433895655774904e-06 1.610360975234926e-05 7.206483022770271e-06 2.1172956696347e-05 9.942857499112279e-06 8.013201021839222e-06 9.1872072438548e-06 1.119034065411029e-05 7.118926898641575e-06 1.016781348184281e-05 1.009286257058761e-05 2.585275378663709e-05 1.246423407152975e-05 1.060270811237274e-05 2.908049960126391e-05 1.27374137548486e-05 9.816670598183919e-06 1.021175799564844e-05 8.687082072356134e-06 1.227171733830801e-05 6.076117102793432e-06 1.023203012096019e-05 1.719127055821446e-05 1.645070133804438e-05 1.90645119779731e-05 2.155964407535294e-05 4.091880092715883e-05 2.817151895939674e-05 + 1.262705399796005e-06 1.291094804400927e-06 1.247996451070321e-06 1.243766050151862e-06 1.24853417560189e-06 1.23114520533818e-06 1.241198503976193e-06 1.210843322496657e-06 1.25686216279064e-06 1.237169485079903e-06 1.265031116304272e-06 1.273377712607271e-06 1.279154101752056e-06 1.274343532031708e-06 1.322785292856565e-06 1.314691495224452e-06 1.390629030595392e-06 1.246968148294059e-06 1.212212577428318e-06 1.291018417504119e-06 1.249142798087632e-06 1.227590161079206e-06 1.191532930988615e-06 1.230480776825971e-06 1.177774819893784e-06 1.181248357795539e-06 1.179977012100153e-06 1.267297207618867e-06 1.255843134373436e-06 1.268585574365488e-06 1.245542147643164e-06 1.315470427698529e-06 1.333890166321794e-06 1.300993183406263e-06 1.333478184761816e-06 1.306289391322935e-06 1.312227141170297e-06 1.339072110084771e-06 1.449230719430261e-06 1.28328271031819e-06 1.226706213941497e-06 1.241347888480959e-06 1.307547901063799e-06 1.344409982451111e-06 1.395391611147545e-06 1.553162478629133e-06 1.269902776712684e-06 1.30176461254905e-06 1.24634191500661e-06 1.265602863398385e-06 1.246529649279182e-06 1.24410357926763e-06 1.19543150489676e-06 1.267770336710328e-06 1.225877149124699e-06 1.230376966532276e-06 1.209290502401927e-06 1.170128442140594e-06 1.158839523895949e-06 1.147971019577199e-06 1.173545946642207e-06 1.213890893581038e-06 1.22906020294522e-06 1.250784407602623e-06 1.231235437160194e-06 1.245876038780125e-06 1.25990322530356e-06 1.252971969734062e-06 1.269754839938741e-06 1.264609814199957e-06 1.20517255197683e-06 1.219803266394592e-06 1.21418212017943e-06 1.266344774819572e-06 1.194361338718863e-06 1.286789743204508e-06 1.220016240921495e-06 1.201533819994438e-06 1.215421139733053e-06 1.235794353959818e-06 1.194231160184245e-06 1.22514330413992e-06 1.229615357090097e-06 1.303608325287087e-06 1.248338197257226e-06 1.233305710002242e-06 1.333897266420081e-06 1.248743686232956e-06 1.22614905961882e-06 1.229134468871962e-06 1.215399848319976e-06 1.243500179270995e-06 1.183067965371265e-06 1.220249771449744e-06 1.267726368325839e-06 1.264824504687567e-06 1.280762614186415e-06 1.289551459393579e-06 1.339799755584181e-06 1.309451107545101e-06 + 1.1564315833823e-06 1.163889010058483e-06 1.147254650391005e-06 1.148461791444788e-06 1.149663361843523e-06 1.146976927657306e-06 1.152903934098504e-06 1.140669112942305e-06 1.15136698752849e-06 1.146113177696861e-06 1.140539808375252e-06 1.155377447048522e-06 1.156033015092817e-06 1.156510840871761e-06 1.185795690972213e-06 1.175709675393932e-06 1.232511570137262e-06 1.141022931250291e-06 1.140417406730876e-06 1.157879570001796e-06 1.141507809165887e-06 1.13395600820354e-06 1.122792603780454e-06 1.125230454590564e-06 1.117941479833462e-06 1.117621550861259e-06 1.117714106158019e-06 1.13920025768266e-06 1.137165213549451e-06 1.142891814964742e-06 1.144845345635304e-06 1.182283961398412e-06 1.189141116242354e-06 1.161211715228205e-06 1.192072717870474e-06 1.171466387006603e-06 1.177281482966919e-06 1.185415673177204e-06 1.246116646314022e-06 1.16184209275616e-06 1.129075126726775e-06 1.131020834321816e-06 1.173427611078637e-06 1.202603550964909e-06 1.226215522898144e-06 1.307224200886026e-06 1.153866204361975e-06 1.160433216185197e-06 1.139518722936828e-06 1.143718369789326e-06 1.139027384411406e-06 1.138572848446984e-06 1.121456044472779e-06 1.13771689314035e-06 1.123753868625954e-06 1.124445901723448e-06 1.121925961911074e-06 1.11445768880003e-06 1.109763857698454e-06 1.102862384527725e-06 1.11423116777587e-06 1.129093373464229e-06 1.134849910044977e-06 1.140946537248055e-06 1.124994160051074e-06 1.131348909666485e-06 1.145611602026975e-06 1.141184149844321e-06 1.143134468861717e-06 1.137785254456958e-06 1.125365145071555e-06 1.125442622651462e-06 1.127028994574175e-06 1.144409154107962e-06 1.12338220503716e-06 1.153401637310481e-06 1.128421811102953e-06 1.124276820974046e-06 1.129816666889383e-06 1.13824225778103e-06 1.123677062508932e-06 1.13284805891567e-06 1.141918080094229e-06 1.173344667648735e-06 1.147615108720856e-06 1.140769498420013e-06 1.185855012408865e-06 1.145379009415137e-06 1.141515781455382e-06 1.142636875783865e-06 1.137487586788666e-06 1.14452674893073e-06 1.12047092670764e-06 1.127399755773695e-06 1.139891807611093e-06 1.139498301938602e-06 1.15406356471226e-06 1.159456004984349e-06 1.190832318087587e-06 1.168487454350498e-06 + 1.123871697927825e-06 1.128538585248862e-06 1.113597107860187e-06 1.115277498797695e-06 1.116313129045921e-06 1.114365630883185e-06 1.120592770575968e-06 1.107019215851324e-06 1.117592432819947e-06 1.11298621163769e-06 1.104324837797321e-06 1.121026713235551e-06 1.121200742915107e-06 1.122967439926015e-06 1.155584934409148e-06 1.148369751291511e-06 1.195434371936699e-06 1.106747204104863e-06 1.106109394299892e-06 1.122426382949016e-06 1.106975769715746e-06 1.098348803907356e-06 1.08635865103679e-06 1.090747865362118e-06 1.081700929717044e-06 1.081751427989275e-06 1.081714515294152e-06 1.104127214546224e-06 1.102213012416087e-06 1.108247182912692e-06 1.111003825826629e-06 1.150225752866163e-06 1.154275848236352e-06 1.127196709305167e-06 1.15794442656636e-06 1.136664682377386e-06 1.14293519359876e-06 1.149531023258987e-06 1.215636810769638e-06 1.128411025064224e-06 1.093545300534515e-06 1.09594017061454e-06 1.139420858109474e-06 1.16953807527409e-06 1.18640034330042e-06 1.263372920945471e-06 1.120412361999001e-06 1.12655427209063e-06 1.105007067181418e-06 1.109446332137054e-06 1.104246557304123e-06 1.10356029026093e-06 1.085856016658227e-06 1.101885704457573e-06 1.089112753760446e-06 1.089770329087969e-06 1.086961106011586e-06 1.078494932471585e-06 1.074487741448138e-06 1.06899933882687e-06 1.078743231630597e-06 1.093050350675639e-06 1.099224050449266e-06 1.105855709226944e-06 1.090418233928858e-06 1.096548498225047e-06 1.111099081185785e-06 1.106041509046918e-06 1.107655450027778e-06 1.102200826608168e-06 1.089394103814811e-06 1.089972357704028e-06 1.091188593704828e-06 1.109064811544158e-06 1.087040946146089e-06 1.118441538494608e-06 1.092637415212039e-06 1.088300763285588e-06 1.093791020423396e-06 1.103185251594141e-06 1.087266561228262e-06 1.097068277999824e-06 1.108014583195427e-06 1.139940021488428e-06 1.114066670027114e-06 1.106429749597737e-06 1.159242351889134e-06 1.111391824792918e-06 1.107824004975555e-06 1.109194300852323e-06 1.102992811752301e-06 1.11068840169537e-06 1.084027488218453e-06 1.091642502615287e-06 1.1043549861256e-06 1.104026196685481e-06 1.11914740941188e-06 1.124469360291869e-06 1.155138441788495e-06 1.133247643281265e-06 + 1.173296709566785e-06 1.175559987132146e-06 1.149468303651702e-06 1.150408365901967e-06 1.153514688212454e-06 1.145608834463019e-06 1.163788354574535e-06 1.129755332840432e-06 1.157765282755463e-06 1.144877145975443e-06 1.147018096503416e-06 1.166319876233501e-06 1.167198451668128e-06 1.169565020830987e-06 1.215445809776838e-06 1.235343107808262e-06 1.256835760798936e-06 1.147453350114347e-06 1.130845518559909e-06 1.16830021212877e-06 1.147319579786199e-06 1.132400964110047e-06 1.110833167672354e-06 1.129949794176355e-06 1.102243103900946e-06 1.103763125342994e-06 1.103338618690941e-06 1.147613680529957e-06 1.144908502226372e-06 1.152176146490547e-06 1.148220491131724e-06 1.201061236244527e-06 1.19855778279998e-06 1.170085123902709e-06 1.202855539617076e-06 1.183104558322157e-06 1.189148470359669e-06 1.189633046294603e-06 1.317758883345732e-06 1.177046367928369e-06 1.12984999134369e-06 1.136625510156364e-06 1.186203041569911e-06 1.218328156582515e-06 1.227539061510186e-06 1.304739525309628e-06 1.166388639006755e-06 1.168242615534609e-06 1.145671864932751e-06 1.153892513983124e-06 1.144477057124504e-06 1.142427176858973e-06 1.113786414208562e-06 1.142099144146869e-06 1.126225519954005e-06 1.127618496354899e-06 1.118980904379896e-06 1.097059623589303e-06 1.090320324692584e-06 1.086687305473788e-06 1.098336234406361e-06 1.122563542566013e-06 1.131926993025445e-06 1.145519384238014e-06 1.128776467851367e-06 1.138469205130832e-06 1.153786023166958e-06 1.146494575721135e-06 1.151361807671947e-06 1.145354502796181e-06 1.115874454171717e-06 1.121670578640988e-06 1.120679371524602e-06 1.153021912614349e-06 1.112359452548617e-06 1.163206725607324e-06 1.125847333582897e-06 1.116051599581169e-06 1.123819576065443e-06 1.137999820599589e-06 1.113211364867084e-06 1.130024191553503e-06 1.138435301584195e-06 1.189046269445271e-06 1.151654743125619e-06 1.1395300916206e-06 1.241057638878829e-06 1.14872130296817e-06 1.13544290769596e-06 1.137538902185042e-06 1.12679097696855e-06 1.144158460419931e-06 1.104943521568202e-06 1.123614438824916e-06 1.147656362832095e-06 1.147202112861123e-06 1.165623601195875e-06 1.171224251805825e-06 1.198230840770975e-06 1.177609124880519e-06 + 1.352253171660323e-06 1.356786754058703e-06 1.314208233793579e-06 1.319911703490106e-06 1.323721761536945e-06 1.318914172543373e-06 1.350262081700748e-06 1.29757016509302e-06 1.328493553387489e-06 1.311652965796384e-06 1.302890737520102e-06 1.337930058298298e-06 1.337497899100981e-06 1.341688141920372e-06 1.418922323637162e-06 1.426365104251204e-06 1.541932210358254e-06 1.304978251681632e-06 1.29662367065464e-06 1.336413632202493e-06 1.304770659515953e-06 1.287342808353742e-06 1.263841937770849e-06 1.274607338785927e-06 1.250530459628862e-06 1.249457305618762e-06 1.250088089932433e-06 1.300869477915967e-06 1.298490772683181e-06 1.309883998601435e-06 1.309490482270803e-06 1.399132710133699e-06 1.395433466555573e-06 1.335706793170743e-06 1.404921212255772e-06 1.36241483872368e-06 1.37580303771756e-06 1.378205791269238e-06 1.610651541028574e-06 1.356626512460934e-06 1.280459628105746e-06 1.286128210153947e-06 1.367896128812163e-06 1.438513477225456e-06 1.540944839284464e-06 2.132694000067659e-06 1.335160298765459e-06 1.331583279196025e-06 1.302198459285364e-06 1.312934635677721e-06 1.30053899027871e-06 1.298233375024438e-06 1.261537114771727e-06 1.291316038987134e-06 1.271700021732158e-06 1.273092316012026e-06 1.263481081537066e-06 1.239140459574628e-06 1.225433607032755e-06 1.201715122078895e-06 1.241821266262377e-06 1.276399910210557e-06 1.286773560593701e-06 1.302022695881533e-06 1.274459322075927e-06 1.287147117778886e-06 1.313825944038172e-06 1.303104639305275e-06 1.309406201244201e-06 1.298010552375217e-06 1.268520122721384e-06 1.270527661745291e-06 1.272578231237276e-06 1.312223297134096e-06 1.265290737961777e-06 1.327480550372684e-06 1.277449356962279e-06 1.26775630704401e-06 1.277919025710617e-06 1.294146521502171e-06 1.266353825357669e-06 1.284511434107571e-06 1.299533057164126e-06 1.379400700329825e-06 1.316792783256915e-06 1.298334396437895e-06 1.443339193940574e-06 1.309878363997541e-06 1.296808328277166e-06 1.299823921385723e-06 1.285882746060452e-06 1.30476250603806e-06 1.256167138308228e-06 1.274385908800468e-06 1.302166580785524e-06 1.301954085874968e-06 1.332691638822325e-06 1.341819238831476e-06 1.396326130276293e-06 1.349824891860862e-06 + 2.626990230680804e-06 3.456374187749134e-06 2.390068559066094e-06 2.330346219991952e-06 2.393075590134686e-06 2.150947437939976e-06 2.221606607122339e-06 1.94652530183248e-06 2.495881417985402e-06 2.250077102416981e-06 2.712323407649819e-06 2.937050311402345e-06 3.271471371135704e-06 3.183512063742455e-06 5.046553109622209e-06 3.452573105633405e-06 1.109060657000782e-05 2.585339840877054e-06 2.04342227050347e-06 3.902671313227302e-06 2.55674597582356e-06 2.27308430922335e-06 1.871939140585255e-06 2.367791459789714e-06 1.696336695999889e-06 1.770062617367785e-06 1.753060516307414e-06 3.005021817159559e-06 2.722910384278521e-06 3.109100255471731e-06 2.46016136173921e-06 5.015693272270028e-06 6.707736430300315e-06 4.606976711230004e-06 6.437562090511051e-06 4.768501590035612e-06 4.983838085337311e-06 6.912221024890641e-06 9.548619974708572e-06 3.379383898050037e-06 2.273100236038772e-06 2.459911751628852e-06 5.045694170036086e-06 7.226733117704498e-06 1.579799826600947e-05 5.872370876502941e-05 3.102469920079898e-06 4.706355126060657e-06 2.571487863534117e-06 3.08225241241189e-06 2.536614809756088e-06 2.465616205427068e-06 1.964932955900167e-06 3.227262485694382e-06 2.336347755260704e-06 2.380382802869008e-06 2.071861231911498e-06 1.671954805715359e-06 1.583660761639294e-06 1.490402311787875e-06 1.766192006869005e-06 2.09487617652826e-06 2.234711324433647e-06 2.500303651231661e-06 2.428052802372349e-06 2.5554007194728e-06 2.716672199198911e-06 2.536948279896478e-06 2.981730929718651e-06 2.827272162164718e-06 1.969547909652647e-06 2.095874350516169e-06 2.068452829462331e-06 2.8703190579904e-06 1.905970279381108e-06 3.750975572813786e-06 2.181500136089198e-06 1.990977711585629e-06 2.117239262133808e-06 2.327673669810792e-06 1.925821093706759e-06 2.227747575744843e-06 2.237729805898425e-06 4.220391115694611e-06 2.470140298527213e-06 2.30889746077878e-06 4.557324132292706e-06 2.455522263744569e-06 2.147117903916751e-06 2.164716988772852e-06 2.019031441591324e-06 2.314086742671861e-06 1.728283223201288e-06 2.130649292553244e-06 2.921757292995153e-06 2.847908589842518e-06 3.52045977791704e-06 3.921004186224764e-06 7.046488374129467e-06 4.890347060637623e-06 + 4.970620313571317e-06 9.209874775706339e-06 4.237920592231603e-06 4.038485243995638e-06 4.225638477350913e-06 3.47563178593191e-06 3.625137793505928e-06 2.821221016802156e-06 4.548683179450563e-06 3.807807431144283e-06 5.621722252158179e-06 6.511348743742928e-06 8.302594554976395e-06 7.776017058702678e-06 1.730224350637855e-05 8.79886897919846e-06 5.546605706463481e-05 5.007322295469407e-06 3.15046956167464e-06 1.120383598163244e-05 4.89177112683592e-06 3.853932238229163e-06 2.607513543750883e-06 4.1438886881906e-06 2.114220407634093e-06 2.320330622751499e-06 2.273451464418486e-06 6.905505642862408e-06 5.636779377482526e-06 7.426048068026603e-06 4.507954848520512e-06 1.701952052357569e-05 2.591140730068275e-05 1.395502173373586e-05 2.458878339695048e-05 1.545131213731565e-05 1.662599942875431e-05 2.611399956720106e-05 4.637096125392759e-05 8.762128764772115e-06 3.817604500966354e-06 4.49888825215794e-06 1.685979768417667e-05 2.965950207745038e-05 8.621098535321892e-05 0.00059398547778855 7.37889714486073e-06 1.423076147943902e-05 4.950639930001444e-06 7.324979131695386e-06 4.808659257449222e-06 4.530396218171973e-06 2.874544197339901e-06 7.448083831462782e-06 4.026021112935041e-06 4.189437909474236e-06 3.166522205333422e-06 2.063987281530899e-06 1.863319468498048e-06 1.706618689922834e-06 2.293418603471764e-06 3.290031703073737e-06 3.741562423442701e-06 4.668801025786706e-06 4.372077363257176e-06 4.895995495246552e-06 5.580479047750941e-06 4.816866095325167e-06 6.867035018842671e-06 6.124250710115575e-06 2.905321579760312e-06 3.253751629017643e-06 3.196628796331424e-06 6.354581110201707e-06 2.709654864929689e-06 1.036538050769309e-05 3.533574759018165e-06 2.962503927506077e-06 3.360168712163158e-06 4.058590253208649e-06 2.767792121716184e-06 3.705473979209728e-06 3.798073386462875e-06 1.300934618342353e-05 4.51626639730307e-06 4.019843039770876e-06 1.481819428406084e-05 4.482565934438298e-06 3.512292465757128e-06 3.563452978028181e-06 3.104912565277118e-06 4.013767991750683e-06 2.194080792605746e-06 3.371841216903704e-06 6.560099173213985e-06 6.226664567066109e-06 9.523142736611589e-06 1.140764911866654e-05 2.773618992790716e-05 1.561190531873535e-05 + 5.140941830461543e-06 9.472644180164025e-06 4.326989866854092e-06 4.144418582541221e-06 4.334597619504166e-06 3.589880279264435e-06 3.768683427551878e-06 2.882506009882491e-06 4.664554793976095e-06 3.903331020183032e-06 5.343873510810226e-06 6.6968935570344e-06 8.41192688483261e-06 7.957612982778528e-06 1.720388594250721e-05 9.369311813500758e-06 5.156818355089854e-05 4.93025504155753e-06 3.209421601368945e-06 1.050458200424487e-05 4.843025376288779e-06 3.714849832192613e-06 2.462340550124509e-06 3.571270468682997e-06 2.015728910009784e-06 2.133583244301462e-06 2.110657987941522e-06 6.12130198618388e-06 5.224138693193936e-06 6.813551120643524e-06 4.564584163091467e-06 1.665779795523292e-05 2.328070959478623e-05 1.183831195561424e-05 2.281116787372639e-05 1.452282408820338e-05 1.582302861180551e-05 2.157799056590193e-05 4.565757875596432e-05 9.043103325723223e-06 3.552934291661813e-06 4.122085368152284e-06 1.572644563729853e-05 2.794823626928178e-05 7.173610766386673e-05 0.0004838538900493461 7.51087746131418e-06 1.163432932749231e-05 4.821812909838741e-06 6.876977174385956e-06 4.679367714643945e-06 4.425753541426047e-06 2.621169482353025e-06 5.703048845617786e-06 3.404479034685437e-06 3.517545358988627e-06 2.827840972940976e-06 1.902195506886528e-06 1.733938006509561e-06 1.609734525231943e-06 2.039197902092837e-06 3.132091269009152e-06 3.644173865779976e-06 4.622599455217369e-06 3.64967378629899e-06 4.401549826837936e-06 5.592246917984767e-06 4.759122347763878e-06 6.427317075008432e-06 5.531870279185114e-06 2.745106797874541e-06 3.016671172417773e-06 3.011566789723474e-06 6.179724898913719e-06 2.553059538001889e-06 9.457762352838017e-06 3.313200963361851e-06 2.767637454326177e-06 3.205381286619513e-06 4.013649437695221e-06 2.604423722019078e-06 3.561295198295511e-06 3.855993988111095e-06 1.306398516831564e-05 4.601811195215078e-06 4.043964132449673e-06 1.526645245775171e-05 4.547222310691268e-06 3.577131636234299e-06 3.637288301661101e-06 3.136735642783606e-06 4.086809425984939e-06 2.104054985352377e-06 3.158702156724758e-06 5.958934067962218e-06 5.733551702746809e-06 9.265665291025016e-06 1.094322490047261e-05 2.44354022136406e-05 1.379394756284569e-05 + 2.917772782495831e-06 3.777578783115132e-06 2.569765484849995e-06 2.538120639883346e-06 2.605504050734453e-06 2.369418851344562e-06 2.487453599542278e-06 2.082066558273254e-06 2.713616112259842e-06 2.439886415572801e-06 2.439522418740125e-06 3.179982222434319e-06 3.434768824917001e-06 3.411440236078533e-06 5.309177435464107e-06 4.095906124490512e-06 9.744172849934785e-06 2.528120432998548e-06 2.170175672944197e-06 3.474304708817044e-06 2.534046867452844e-06 2.120842392372424e-06 1.681286203591981e-06 1.72312513768702e-06 1.549829036662231e-06 1.507150805934998e-06 1.519356466417321e-06 2.331467804594922e-06 2.314096928301979e-06 2.594671801858794e-06 2.587027733369496e-06 5.066283241816905e-06 5.436493278665466e-06 3.269855948673239e-06 5.67365056269864e-06 4.348055078651214e-06 4.699464028590228e-06 4.540416892240273e-06 9.841308006741656e-06 3.708420472037233e-06 1.949559816694091e-06 2.032261836149019e-06 4.52454504973332e-06 6.582500306606676e-06 1.013424021767406e-05 3.942895287600834e-05 3.28084031586684e-06 3.069727362969843e-06 2.448050445025274e-06 2.701760029921729e-06 2.409738208086765e-06 2.366765048833486e-06 1.638930918090864e-06 1.855863146715819e-06 1.646370556329657e-06 1.65874243762687e-06 1.634842789144386e-06 1.425344763106295e-06 1.370891823171405e-06 1.335428521542781e-06 1.418555299892432e-06 1.909089810681053e-06 2.139716421822868e-06 2.478031909447509e-06 1.674628233416797e-06 2.030599898006358e-06 2.76771772789175e-06 2.499295327140771e-06 2.598156228827975e-06 2.282915765761118e-06 1.77237875220726e-06 1.799058168217016e-06 1.844612867785145e-06 2.72164707837419e-06 1.703878275804982e-06 3.120586615779075e-06 1.912607675791378e-06 1.746427081172897e-06 1.936844991945463e-06 2.308791550831302e-06 1.715881873920466e-06 2.066597232897038e-06 2.366825928135086e-06 4.465834642530808e-06 2.640797902131453e-06 2.389190878915315e-06 5.17460655657942e-06 2.59374597533224e-06 2.286867044176688e-06 2.319157033525698e-06 2.107592791844581e-06 2.47022795463181e-06 1.601110241722381e-06 1.869366201390221e-06 2.38814294561962e-06 2.393393785382614e-06 3.384106555870403e-06 3.68700080954909e-06 5.418682800240049e-06 3.830143970873223e-06 + 1.547384798072926e-06 1.534193089014479e-06 1.474277937063562e-06 1.490129648118454e-06 1.49684464645361e-06 1.49125108350745e-06 1.540551707535087e-06 1.435780632164096e-06 1.504040113786687e-06 1.472737480412434e-06 1.371875512745646e-06 1.507601346872889e-06 1.496618111218595e-06 1.507848079285168e-06 1.61903457573942e-06 1.636395674964319e-06 1.772641580188861e-06 1.405564699297202e-06 1.429240438000079e-06 1.46739322559597e-06 1.411544033658174e-06 1.345177881972859e-06 1.265391560423268e-06 1.244921868703841e-06 1.236094377077279e-06 1.207584190865418e-06 1.2137236993226e-06 1.347490119485428e-06 1.34918949967755e-06 1.381676870693127e-06 1.452373957988584e-06 1.590986061117405e-06 1.588376864702923e-06 1.451923136386313e-06 1.602542898382353e-06 1.530485263856463e-06 1.555752128012955e-06 1.552302023810626e-06 1.793359231783143e-06 1.534862001051351e-06 1.298337000577021e-06 1.305905819037889e-06 1.539807190198417e-06 1.649253634994352e-06 1.815190878495798e-06 2.674019320636489e-06 1.494065767104757e-06 1.438006341558662e-06 1.387891170878675e-06 1.396353766836e-06 1.383157840706417e-06 1.382393655546821e-06 1.236736046905662e-06 1.286616193141299e-06 1.230936746310363e-06 1.233958972335358e-06 1.22844896566221e-06 1.182932450660701e-06 1.16656242710178e-06 1.162223483675007e-06 1.178042325022943e-06 1.310316740443795e-06 1.357372234167542e-06 1.405889378247593e-06 1.237609073001522e-06 1.302794558455389e-06 1.442912953564246e-06 1.405021478717572e-06 1.385280221199992e-06 1.341950323308083e-06 1.285136818296451e-06 1.275278549428549e-06 1.293854936079697e-06 1.411403658835297e-06 1.268670246190595e-06 1.435180433162486e-06 1.298190159815249e-06 1.271118254209114e-06 1.315392754719369e-06 1.390615111063198e-06 1.269744682730334e-06 1.336680885088981e-06 1.43660995277628e-06 1.564431936884603e-06 1.474074384333335e-06 1.422131692407902e-06 1.649914388224261e-06 1.456438468494525e-06 1.436613167982159e-06 1.445559774992944e-06 1.406106832746445e-06 1.455019329910101e-06 1.25728105615508e-06 1.292355761961517e-06 1.356368983351786e-06 1.358507951465526e-06 1.467894431783634e-06 1.487703581659616e-06 1.589901344800637e-06 1.492680418380132e-06 + 1.296000704087419e-06 1.34086096181818e-06 1.265379054871119e-06 1.263804534801238e-06 1.26979767856028e-06 1.252058410727841e-06 1.268156594846914e-06 1.226336067361444e-06 1.279393558206721e-06 1.254429022878867e-06 1.278856501585324e-06 1.310416386957058e-06 1.323763260785427e-06 1.322226554023587e-06 1.398584686285176e-06 1.371144614736863e-06 1.478314219482968e-06 1.27197849053573e-06 1.229430354854344e-06 1.339738435746085e-06 1.270724283131131e-06 1.242884628993579e-06 1.188763587123276e-06 1.240529666546308e-06 1.164760078609106e-06 1.169070145579099e-06 1.167931650059018e-06 1.287211020439827e-06 1.276604436384332e-06 1.297386255316724e-06 1.266336365546294e-06 1.390637901721448e-06 1.408176080630597e-06 1.349940745853928e-06 1.410087085318423e-06 1.37132776600879e-06 1.380899504965782e-06 1.401034516845812e-06 1.487766539298718e-06 1.337425175051976e-06 1.240608821007072e-06 1.257103939167337e-06 1.377782329115007e-06 1.429969211486082e-06 1.486396405958601e-06 1.58465718946843e-06 1.315004576341039e-06 1.347011028940415e-06 1.270092425897928e-06 1.299141112909297e-06 1.267561277273899e-06 1.262183324968191e-06 1.19590809077863e-06 1.274806056272837e-06 1.232308893150957e-06 1.235617297368208e-06 1.210711040755541e-06 1.156312350758526e-06 1.145589095585819e-06 1.133681777787388e-06 1.163833601935949e-06 1.221369647197434e-06 1.240277271108425e-06 1.26678064304997e-06 1.238907479717e-06 1.262388305889317e-06 1.285165453168702e-06 1.269624753774679e-06 1.293103530031203e-06 1.279843367285594e-06 1.203845371833268e-06 1.219775299432513e-06 1.217180582102628e-06 1.291431225070028e-06 1.193134753663116e-06 1.328664094302212e-06 1.230679014696534e-06 1.20362837563448e-06 1.224333875171624e-06 1.250533983920832e-06 1.195370325390854e-06 1.238096135836031e-06 1.245888956447061e-06 1.369461422484619e-06 1.270509407902409e-06 1.250320448065168e-06 1.40227270151172e-06 1.267162417661893e-06 1.239393924379328e-06 1.242612356122663e-06 1.224810176836399e-06 1.256310056874099e-06 1.172106749436352e-06 1.225127661541592e-06 1.285752283308739e-06 1.283329794432575e-06 1.327814835860863e-06 1.343977675816177e-06 1.410946833146909e-06 1.365773503181344e-06 + 1.195571758927372e-06 1.202333294259006e-06 1.177935232021809e-06 1.18139087135205e-06 1.183059353593308e-06 1.180796573407861e-06 1.191469195305217e-06 1.16887599688198e-06 1.185144256510284e-06 1.17745416616799e-06 1.167937270452057e-06 1.190067209222434e-06 1.18946103810913e-06 1.192296760876843e-06 1.242441181048548e-06 1.236826163264482e-06 1.309907487367923e-06 1.169017240343351e-06 1.166819133757713e-06 1.18866105935922e-06 1.16917543024897e-06 1.159366174618981e-06 1.144927907148485e-06 1.153058850178468e-06 1.136926442768527e-06 1.138523082033771e-06 1.138212866180766e-06 1.167406423974171e-06 1.165564796679064e-06 1.172165127627522e-06 1.173507765628301e-06 1.231665764933609e-06 1.225322787234973e-06 1.190136657669427e-06 1.234908518554789e-06 1.206371823769814e-06 1.216351225963308e-06 1.213700340230162e-06 1.372043922032162e-06 1.20174475526369e-06 1.155288650522834e-06 1.15862792426924e-06 1.209770884358363e-06 1.257165859414044e-06 1.278384822001044e-06 1.438538960840674e-06 1.187936767621522e-06 1.188256856465841e-06 1.167356442621781e-06 1.173619075700572e-06 1.166522187290298e-06 1.165449823758991e-06 1.145124539192466e-06 1.163251560853951e-06 1.151281278310989e-06 1.151982136349261e-06 1.147471202500583e-06 1.132750654164738e-06 1.124933078244794e-06 1.114729286655347e-06 1.134115940715219e-06 1.153356709693298e-06 1.159809578155091e-06 1.167904294163691e-06 1.152760034983658e-06 1.159463529631921e-06 1.174489931088374e-06 1.168350145519526e-06 1.171680857225965e-06 1.165534236235999e-06 1.149025507629631e-06 1.150592225940272e-06 1.151516244135564e-06 1.17306092306535e-06 1.145978117733648e-06 1.183277614558165e-06 1.153734920933402e-06 1.147956410818551e-06 1.154177553530644e-06 1.16402013361494e-06 1.146334422941209e-06 1.157931340145524e-06 1.16914609193941e-06 1.218019090032385e-06 1.178346792585216e-06 1.167229498832967e-06 1.255890648366176e-06 1.174129387493394e-06 1.168935135353877e-06 1.171066855931713e-06 1.162215994554572e-06 1.173130939946532e-06 1.140288986789528e-06 1.152470801457639e-06 1.167858364681251e-06 1.167600558460435e-06 1.185696888228449e-06 1.192009236206104e-06 1.224157905710399e-06 1.198271132096806e-06 + 1.24579735683028e-06 1.241352237002502e-06 1.207929329893886e-06 1.215056840919715e-06 1.219036747102109e-06 1.214893245560233e-06 1.244190912075283e-06 1.188401554941265e-06 1.224320840265136e-06 1.205983053864657e-06 1.183932170079061e-06 1.228284681076275e-06 1.219581623246313e-06 1.225862309439663e-06 1.268077882699004e-06 1.289301485130068e-06 1.279177098467699e-06 1.184490649563941e-06 1.182514010267255e-06 1.206690978250435e-06 1.186113422591006e-06 1.167010534430801e-06 1.138576227077692e-06 1.150146950124054e-06 1.129872742922089e-06 1.128595343402594e-06 1.128652499460259e-06 1.176585804785191e-06 1.17596406923326e-06 1.185115912960555e-06 1.196415130522155e-06 1.255223878615652e-06 1.23203958857232e-06 1.200277285562379e-06 1.243358456193278e-06 1.223948352446769e-06 1.235328390691848e-06 1.218802836433497e-06 1.307407259787396e-06 1.240545181246944e-06 1.156704925620033e-06 1.162659117426301e-06 1.225488174938505e-06 1.259066717551605e-06 1.254938370109926e-06 1.299536974030957e-06 1.21813278042282e-06 1.195820081179022e-06 1.181125700355778e-06 1.188077822789069e-06 1.180226592012446e-06 1.179032064868579e-06 1.136540568325017e-06 1.16583792930669e-06 1.146437661248001e-06 1.148082976243359e-06 1.13993572625759e-06 1.124515520700697e-06 1.121079648669365e-06 1.118018460033454e-06 1.125186628314623e-06 1.1550304499508e-06 1.169112586296706e-06 1.185201050191154e-06 1.149198485705938e-06 1.163382918889511e-06 1.19694517408675e-06 1.185881934873123e-06 1.187098924049224e-06 1.175583122403623e-06 1.145912548849992e-06 1.148286287389055e-06 1.150930387439075e-06 1.191860860672023e-06 1.140005753796913e-06 1.198760589460335e-06 1.154454650986736e-06 1.142690688737957e-06 1.156730675688777e-06 1.177157734844059e-06 1.140543975708397e-06 1.164476454817986e-06 1.187229912602561e-06 1.249785004375781e-06 1.207091873567379e-06 1.183214909161734e-06 1.287969922714183e-06 1.198893514242627e-06 1.187455097806378e-06 1.192136394934096e-06 1.174225715772081e-06 1.198036741811848e-06 1.134553613724165e-06 1.152594592213063e-06 1.179448048560516e-06 1.17986937908654e-06 1.20671286651941e-06 1.212070788625397e-06 1.229603746821795e-06 1.210993755051959e-06 + 1.61884785754296e-06 1.611263883205538e-06 1.480208183579634e-06 1.500077573268754e-06 1.513192870561397e-06 1.501416207361217e-06 1.620887076114741e-06 1.411918688631886e-06 1.53317290596533e-06 1.471875577863102e-06 1.415572427276857e-06 1.550381789172661e-06 1.529711468606365e-06 1.539758182289575e-06 1.788959551163316e-06 1.97100374954573e-06 1.916058899098516e-06 1.405424402634026e-06 1.385695050259983e-06 1.497026506314114e-06 1.413622936041747e-06 1.347220589309472e-06 1.264722605753832e-06 1.305533800177727e-06 1.237082258853661e-06 1.236195600995416e-06 1.235454220704924e-06 1.388717997485855e-06 1.383048896741457e-06 1.414645801389725e-06 1.44104449972815e-06 1.68731027194724e-06 1.600957427072558e-06 1.469273144039107e-06 1.642821338521117e-06 1.560041564374615e-06 1.600630724851726e-06 1.545199065589031e-06 2.381820593200246e-06 1.597895650462533e-06 1.319327132875969e-06 1.340700698904129e-06 1.563765231082925e-06 1.722639726864372e-06 1.706928174805e-06 2.108360211749982e-06 1.5135409014988e-06 1.452650950639622e-06 1.394915154051546e-06 1.422989512889217e-06 1.393392491166878e-06 1.39004386667807e-06 1.259481408055763e-06 1.351539680172209e-06 1.295202267215245e-06 1.301058432545688e-06 1.27548393180632e-06 1.218015839299369e-06 1.19831803147008e-06 1.179576230470047e-06 1.21945644337984e-06 1.31282267901156e-06 1.357685739833414e-06 1.414723961090658e-06 1.303219239190412e-06 1.344344685350052e-06 1.452697691917137e-06 1.41765290351259e-06 1.424256808491009e-06 1.386375465983747e-06 1.291175507844855e-06 1.302823534388153e-06 1.305474910395787e-06 1.440967949406513e-06 1.269073969467627e-06 1.465817799584102e-06 1.312291772137542e-06 1.277947234257226e-06 1.317091431474182e-06 1.383336911686683e-06 1.268443737600933e-06 1.340368832813965e-06 1.409969044630088e-06 1.653454472005933e-06 1.47172750075697e-06 1.399076396069177e-06 1.996471489462692e-06 1.452432066173515e-06 1.414217649653438e-06 1.430132599011813e-06 1.374271079157552e-06 1.453757676017631e-06 1.253707694104378e-06 1.311211747179186e-06 1.398723149748093e-06 1.399239941690666e-06 1.492761153798483e-06 1.513929728247376e-06 1.59423925438773e-06 1.514340393526936e-06 + 2.939959369285816e-06 3.114340785259628e-06 2.60616485547871e-06 2.651342597914663e-06 2.692312108365513e-06 2.637189496113024e-06 2.92684688929512e-06 2.385049683084617e-06 2.760420329650515e-06 2.568264619640104e-06 2.491828169581822e-06 2.855572482474145e-06 2.827072638211803e-06 2.81938880242194e-06 3.642070186771207e-06 3.76633412280114e-06 4.815913497324686e-06 2.390304819854805e-06 2.314090272292901e-06 2.801571589827745e-06 2.418991591923714e-06 2.238278423050133e-06 2.033322580530239e-06 2.167459879132139e-06 1.962539414535058e-06 1.961610713863138e-06 1.960131349676431e-06 2.456656233107424e-06 2.388033976785664e-06 2.497680050339568e-06 2.488607844242097e-06 3.429133331067646e-06 3.405934592137783e-06 2.783356910285306e-06 3.521009062978919e-06 3.067054461070029e-06 3.227356160095951e-06 3.318406093910653e-06 6.085834538538393e-06 3.004313096965916e-06 2.193508667147626e-06 2.27035039657153e-06 3.07236638974473e-06 3.794502980269954e-06 4.666802272623727e-06 1.12706474943991e-05 2.731713117043455e-06 2.751310876902835e-06 2.36608067716304e-06 2.492625961636463e-06 2.3661458055102e-06 2.355736761217031e-06 2.024619494278568e-06 2.362128089572479e-06 2.127558545339525e-06 2.151185306331627e-06 2.077226113783581e-06 1.901276647231498e-06 1.839230250766377e-06 1.784370539326119e-06 1.89517364646008e-06 2.157243688571953e-06 2.266992574107007e-06 2.431300828220628e-06 2.155004935389115e-06 2.291499679785147e-06 2.547487422788208e-06 2.443484177661048e-06 2.525773062700409e-06 2.442822335524397e-06 2.109390095483832e-06 2.165547044796767e-06 2.151803130345797e-06 2.542193811905236e-06 2.045720332688461e-06 2.698752130214643e-06 2.1690271481134e-06 2.074378247840514e-06 2.16638752803533e-06 2.329637190712219e-06 2.041506865779752e-06 2.223969701731221e-06 2.391421830338913e-06 3.283333740000671e-06 2.577566764472294e-06 2.364664894116686e-06 3.995992642558122e-06 2.527980683453279e-06 2.402104470888844e-06 2.447244767722623e-06 2.294704302130413e-06 2.529923762040198e-06 2.001525459149889e-06 2.175376465629597e-06 2.476280840824074e-06 2.460408431659289e-06 2.72945697332716e-06 2.833711665317651e-06 3.46381697724496e-06 2.960839633914247e-06 + 0.0001352861057313248 0.0002603114414370111 0.000106244877670747 0.0001004724256148393 0.0001093301192867102 8.093571662470822e-05 9.40528146742281e-05 5.046915860873469e-05 0.0001277872098626176 8.858176053649913e-05 0.0001332506286928492 0.00017313614489467 0.0001889926196589897 0.0001678854357400894 0.0004019475688057383 0.0002619490748276831 0.0009553130745665328 8.938126474156149e-05 4.856723364454751e-05 0.0002204735930426693 9.546611236288527e-05 6.326030964487472e-05 3.196903774238535e-05 5.823174353025706e-05 2.40943462586074e-05 2.625678056489278e-05 2.564023802165138e-05 0.0001268517799388746 0.0001042689910519812 0.0001340136087293331 9.345275166339206e-05 0.0003656871757105051 0.0004459029777414969 0.0002282934968214079 0.0004641879898716894 0.0002958310100495964 0.0003404573450183079 0.0004617084120539516 0.001154180647791492 0.0002084585970862918 5.989005394013702e-05 7.701829483863776e-05 0.0002921871335228587 0.0005358728750071151 0.001095785318555365 0.006447843121490493 0.0001499123267976188 0.0002180022548152749 8.784509088854975e-05 0.0001272304149679826 8.906011926512747e-05 8.616090945068322e-05 3.334607334437578e-05 0.0001015923095764037 5.163292022913879e-05 5.607810947694247e-05 4.253585549207628e-05 2.061461751168281e-05 1.556151846671128e-05 1.163930352277021e-05 2.079110581121313e-05 4.9952791094654e-05 6.762177671504332e-05 0.0001010677821398076 5.652805565858898e-05 8.256829138986177e-05 0.0001219296137442427 0.0001052608759266604 0.000142555124753585 0.000123601607661783 4.312579144993833e-05 5.618529044681964e-05 5.094556362905678e-05 0.0001372188396828733 3.375927605020479e-05 0.0001948944388949769 5.447585204976235e-05 3.86666867697727e-05 5.125160776131565e-05 7.627819786648615e-05 3.312886421547034e-05 6.115386960559022e-05 7.104564430804317e-05 0.0003164506900787956 0.0001015920260485359 7.392308748066512e-05 0.0004100079126487799 0.0001018902571203739 6.909790970155427e-05 7.455864002281487e-05 5.521834788169144e-05 9.810887976868798e-05 2.707527438872148e-05 5.640828383945973e-05 0.0001325562579168604 0.0001264426901954607 0.0001833349923110461 0.0002177564316916403 0.0004945382537755449 0.000288322567769228 + 0.00204444652860758 0.004582285553894394 0.00157136094887278 0.001476577522211642 0.001628560209198326 0.001158197753099444 0.001384463313499396 0.000637683780226439 0.001969402785036323 0.001275131972548138 0.001957663616806826 0.00276000617183314 0.002981084895804287 0.002543563770306179 0.007085027493291207 0.004374563725075831 0.01745841208393806 0.001159265398436915 0.0005829683896756421 0.003363085720526016 0.001284475070701063 0.0007734637936813726 0.0003334655272908549 0.0006068903762361799 0.0002357205129754902 0.0002561263852243201 0.0002500637340290268 0.001667049683604205 0.001363458891571412 0.001808754911962751 0.001285252796069614 0.006277381146130523 0.007306193583545451 0.003149192105661669 0.007936181273942466 0.004743586409958311 0.005708376545452865 0.007238277281810923 0.02324586237095971 0.003360153319743375 0.0006989032443591725 0.0009316062232223032 0.004546911853779534 0.009254962234436448 0.01723020278065501 0.1013647574999847 0.002192377521094357 0.002849663590392737 0.001130941548710851 0.001705039393826269 0.001163478627114856 0.001134197429280448 0.0003343010501026811 0.0009954656507531467 0.0005018030046137767 0.0005563388987788187 0.0004435905108053362 0.0001855941992801036 0.0001255770826844582 8.29115951859194e-05 0.0001763709398616697 0.0005880923185799247 0.0008663004911184657 0.001413763446201699 0.0005547014059779087 0.0009939943996997158 0.001752735832688757 0.001481216121483442 0.002036470480710761 0.001678076802612338 0.0004999807790682098 0.0006834458925766285 0.0006088302758087138 0.001993925951659037 0.0003565322651901681 0.002828429590902459 0.0006364209655416175 0.0004187878764945197 0.0006050358783902254 0.0009995097654567076 0.0003435010416641404 0.0007484335348522109 0.0009381476347982698 0.005522214731698227 0.001440452594433594 0.000965477450616703 0.007400331966735507 0.001455132914593094 0.000936678180131878 0.001036319329813296 0.0007151332551558198 0.001442377014939211 0.0002767348175325424 0.0006830244533375662 0.001827770098437043 0.001745419753426347 0.002734874009419741 0.003328584344206575 0.008219484415235456 0.004403685537994306 + 0.003325952285358369 0.009236591330548549 0.002978776738274291 0.002683382584677929 0.002940267903667859 0.002060082923406981 0.002299716350606218 0.001145793917672222 0.003552543273357855 0.002369249415735908 0.005016823682339577 0.005131198927230685 0.006032791405491622 0.004696719803318317 0.01328581933326056 0.006544743356503346 0.03626724045406249 0.002342209782014493 0.001046080287114393 0.008209130687209409 0.002636762911283341 0.001721979609854429 0.0007827620110774092 0.002066460984959662 0.0005527858665743679 0.0007195678483142842 0.0006691628875898914 0.004880210693308129 0.003459479076635574 0.004595402552105554 0.002456786474230199 0.01244542740249699 0.01789066771297421 0.008806899809624014 0.01808441582256926 0.01091278115193361 0.01271394092411171 0.02208740832484679 0.04361110498420828 0.006164571129996688 0.001802180742743076 0.002526155787851536 0.010117935558414 0.01924686362649197 0.04359771721643835 0.2200935211402282 0.0040605618563756 0.008476996234852763 0.002368274353234057 0.003943881183145592 0.002494353293309715 0.002449462402996261 0.0008982727651343225 0.004506637871987351 0.001927130753674788 0.00219026910773934 0.001420100620386222 0.000545793133682082 0.0003773625775238543 0.0002068145691254131 0.0006035460401179193 0.001382800345165691 0.001937871232748023 0.003034276242523504 0.002130426862890999 0.002814177065229018 0.003543046156764262 0.003200628147304485 0.005180911929691945 0.004881743576973463 0.001245888758205638 0.001976730277050365 0.001552597348492668 0.004520671794615794 0.0008470925232195725 0.007279491395895121 0.00160398278291396 0.001042402247918517 0.001405820182974082 0.002113843421941652 0.0008019279834510229 0.001704024284208572 0.001796204830483816 0.0110749410226525 0.002662817850453081 0.001903119613356097 0.01249239407952629 0.002826415817878569 0.001809718593648313 0.001994498988509008 0.001420604342328602 0.002858703193851397 0.0006173132204452259 0.001816743321072067 0.005160778591147164 0.004703714726829844 0.006021315015665607 0.00753414450712242 0.02172493829186095 0.01170921631624111 + 0.0003091718410637156 0.0006747565084737062 0.0002772819125738124 0.0002544778704702821 0.0002747439969112975 0.0002010999922532619 0.0002208648350432441 0.0001237478761169086 0.0003186640750243441 0.0002288151176941255 0.0004119271832223603 0.0004259320063511041 0.0004929777331454943 0.0004101529102982227 0.001001579388880458 0.0005317990998339184 0.002579466410326248 0.0002399294379262784 0.00011966612563441 0.0006582904246634769 0.0002597514382607358 0.0001840598380837832 9.369796471148106e-05 0.0002160696675730378 6.915945455432393e-05 8.607610474342664e-05 8.101152702266745e-05 0.0004221353858753218 0.0003196725773619846 0.0004070290796143183 0.0002446167017531309 0.0009531821704911181 0.001342166752621665 0.0007434280809786031 0.001334484810397996 0.0008576973670813004 0.0009670721348093991 0.001594555679510279 0.002858071899531467 0.0005042781086395109 0.0001907390317228419 0.0002490900914331462 0.0008271741402392507 0.001442251159007313 0.003409262611931752 0.02143071269773422 0.0003682502677708754 0.0007356537050924317 0.0002413459719026179 0.000363795306185466 0.0002492122506243533 0.000244061921492289 0.0001075591403143505 0.0004398047845164399 0.0002060256431377638 0.0002269355548882857 0.0001552721866531215 6.818150475851326e-05 5.036612427034015e-05 3.079862204913297e-05 7.600808543628546e-05 0.000150305336219958 0.0001982776154818566 0.0002846243804768278 0.0002246171875377456 0.0002724303709626952 0.000323577650654272 0.0002964162518352964 0.0004349472762683604 0.0004119276472920319 0.000134682606258707 0.0001948953182875357 0.0001622331988784254 0.0003894825044596928 0.0001002953090178949 0.0005999120022792681 0.0001716512374834167 0.0001196268210037488 0.0001530245544394404 0.000215177965039004 9.706418973820519e-05 0.0001807539756626397 0.0001871857963600121 0.0008257367404418403 0.0002593117629103858 0.0001985768953467471 0.000927696983076487 0.0002698487069352495 0.0001837094120489269 0.0001979583658453521 0.000148669373032817 0.0002656812110046758 7.545786439777658e-05 0.0001849547759036341 0.0004325574972767754 0.0004014388561088822 0.0005074861454197332 0.0006177499614352655 0.001563985333330464 0.000916107706380842 + 1.192539783545499e-05 1.670019250354926e-05 1.096106608144964e-05 1.047083449634556e-05 1.095052290622789e-05 9.120259221617744e-06 9.729316346351879e-06 7.068636421081465e-06 1.186054443280682e-05 9.822777130352733e-06 1.311851572438627e-05 1.362131181537052e-05 1.449989889579228e-05 1.343512035134609e-05 2.104342728870279e-05 1.560671178246764e-05 3.637045762161506e-05 1.034763462293142e-05 7.030437513932952e-06 1.681940393538639e-05 1.071443738354105e-05 8.832318247442572e-06 6.121418998361605e-06 9.629496336316379e-06 5.279363577415097e-06 5.799972164766132e-06 5.641843209502895e-06 1.340403713356864e-05 1.171828511914441e-05 1.322833913164345e-05 1.038845421064138e-05 2.055485360052955e-05 2.542578909192628e-05 1.85195546578143e-05 2.508576330484402e-05 1.953992883585443e-05 2.074438809884782e-05 2.804707286330199e-05 3.757653392000293e-05 1.476395528499097e-05 8.980846295969513e-06 1.033335200872898e-05 1.940405414124768e-05 2.633687877562352e-05 4.62202501134712e-05 0.0001833927916869982 1.279085918071132e-05 1.863889912279149e-05 1.034740860816896e-05 1.258404876658403e-05 1.04723922795813e-05 1.032182355231726e-05 6.600843505566445e-06 1.440051016743382e-05 9.406093823827177e-06 9.87372058958158e-06 7.965716662283739e-06 5.143487271652702e-06 4.391472884890391e-06 3.433065927538337e-06 5.4061131038452e-06 7.817942687893265e-06 9.094168277101744e-06 1.11237433557676e-05 9.869886408608863e-06 1.080991036417345e-05 1.19245978886795e-05 1.135104409399901e-05 1.355162739713478e-05 1.314647448680262e-05 7.297731414723785e-06 8.825150985103392e-06 8.06456361601704e-06 1.289893604194958e-05 6.336395234285419e-06 1.609507581790126e-05 8.430366591483107e-06 6.942825301337052e-06 7.910170253921933e-06 9.59153560486925e-06 6.261835048704256e-06 8.695715742135235e-06 8.886814853781289e-06 1.871470609060566e-05 1.071446486022865e-05 9.225745031926635e-06 2.012764152325985e-05 1.087229729535011e-05 8.682977345131349e-06 9.024948823821433e-06 7.704199191493899e-06 1.061931808976624e-05 5.513371263532463e-06 8.654514488171117e-06 1.34864088963127e-05 1.301190778946193e-05 1.475845234466533e-05 1.632191367662017e-05 2.755933811826594e-05 2.042027111670563e-05 + 1.328794645871767e-06 1.33267019464256e-06 1.271005956482441e-06 1.281155547872004e-06 1.287187387788435e-06 1.27951959427719e-06 1.322026676575661e-06 1.241142271624085e-06 1.295378865506791e-06 1.267608070065762e-06 1.2435835259339e-06 1.302756608367872e-06 1.2949157799369e-06 1.300278102078778e-06 1.421909630039409e-06 1.448093609468515e-06 1.5498014587223e-06 1.241013270814051e-06 1.234848291176149e-06 1.286303099590214e-06 1.243304275533319e-06 1.219478491520931e-06 1.190629991043579e-06 1.21067136760189e-06 1.180095949848692e-06 1.180117408239312e-06 1.179776226933882e-06 1.239608486969246e-06 1.233822739976631e-06 1.246771379470601e-06 1.255610758477133e-06 1.385741018822273e-06 1.36507717662937e-06 1.283693110920581e-06 1.385192913261335e-06 1.325528604212423e-06 1.34838204601806e-06 1.341963344003716e-06 1.711032002305046e-06 1.326017663672019e-06 1.212581704379545e-06 1.220579566307833e-06 1.329161912977384e-06 1.429949717746126e-06 1.495147173180555e-06 1.942009870248285e-06 1.288393232101726e-06 1.278878343669021e-06 1.236821795203014e-06 1.248672436560128e-06 1.235834096391386e-06 1.234262033023015e-06 1.191056657745548e-06 1.237922788277501e-06 1.20791959901112e-06 1.210586201949582e-06 1.198157832504876e-06 1.171434064417554e-06 1.161930569537617e-06 1.154228755240183e-06 1.173379828856014e-06 1.207055902341381e-06 1.221586678923359e-06 1.242503081755331e-06 1.211236821063721e-06 1.222554757873695e-06 1.258493991684873e-06 1.243571333020554e-06 1.248815600263242e-06 1.237329094294637e-06 1.19897845252126e-06 1.205968629847121e-06 1.20482249599263e-06 1.253241450172027e-06 1.192460317156474e-06 1.271877049902059e-06 1.208996916801652e-06 1.19654650276857e-06 1.208612360414918e-06 1.231127306766666e-06 1.192862914223269e-06 1.216767653744455e-06 1.242221152608636e-06 1.36056673838425e-06 1.269749851928736e-06 1.237914990070976e-06 1.476639670983104e-06 1.259144745802132e-06 1.241846604216335e-06 1.248012367227602e-06 1.224937548727212e-06 1.257338567484112e-06 1.184736277082266e-06 1.207980858453084e-06 1.241441296429002e-06 1.240293073578869e-06 1.279871323589532e-06 1.293507349231504e-06 1.366207690978172e-06 1.306509059162408e-06 + 1.147702928250283e-06 1.154301443762051e-06 1.131256269104597e-06 1.133132471409226e-06 1.134698848659355e-06 1.133029911670747e-06 1.147715607885402e-06 1.124258332652062e-06 1.13690605019201e-06 1.129934744881211e-06 1.126011753171952e-06 1.142544974186421e-06 1.144769786520783e-06 1.144528201990624e-06 1.188374275429283e-06 1.193290065870656e-06 1.252009599994608e-06 1.126150275254645e-06 1.12323905021583e-06 1.14974683640412e-06 1.126618474955876e-06 1.117005382411662e-06 1.10387306051507e-06 1.103227390331085e-06 1.098871152294123e-06 1.096159778057881e-06 1.096688109214483e-06 1.123093454680202e-06 1.121061867337403e-06 1.129106340869157e-06 1.129001173438837e-06 1.179506137205522e-06 1.187997842322375e-06 1.152906882850857e-06 1.190977515719283e-06 1.165875271880168e-06 1.172267310778352e-06 1.182203231309131e-06 1.287242060499239e-06 1.151789604136866e-06 1.110105738888478e-06 1.112326799557195e-06 1.168378028992834e-06 1.205530448800118e-06 1.236976989282823e-06 1.365747738901746e-06 1.141362806933444e-06 1.150297819663137e-06 1.124450426104318e-06 1.130680825411901e-06 1.123801331104346e-06 1.123041464268226e-06 1.10029909095033e-06 1.117367308012263e-06 1.100914527540908e-06 1.101805032988068e-06 1.09996596364681e-06 1.092262493784801e-06 1.087349914996594e-06 1.081139245684426e-06 1.091283159837531e-06 1.111210107040961e-06 1.118079246964498e-06 1.125899466103419e-06 1.102390672969022e-06 1.112496956778841e-06 1.131717539237798e-06 1.126377057403261e-06 1.129641759689548e-06 1.121383093050099e-06 1.107070175976332e-06 1.106107077930574e-06 1.108655794723745e-06 1.131436548007514e-06 1.104426260667424e-06 1.143853602059153e-06 1.109696444956398e-06 1.104970341003764e-06 1.11204305497381e-06 1.122027033062523e-06 1.104596416112713e-06 1.115643577520586e-06 1.12493228243693e-06 1.167374549027045e-06 1.131855590585928e-06 1.124231435056799e-06 1.202258296473246e-06 1.129584809689277e-06 1.124295508247997e-06 1.125564864423723e-06 1.120003759069732e-06 1.127963017211187e-06 1.102324986845815e-06 1.108681544792489e-06 1.124429715559927e-06 1.124159560106364e-06 1.144242794737238e-06 1.151245843544757e-06 1.190058799949156e-06 1.163151743810431e-06 + 1.102668743868662e-06 1.106382228499569e-06 1.092700557592252e-06 1.093409181862626e-06 1.094691995717767e-06 1.091427904498232e-06 1.099322062714236e-06 1.083984699334906e-06 1.096322776561465e-06 1.090960111582717e-06 1.090560346028724e-06 1.100581016544311e-06 1.10200603131716e-06 1.102773845573779e-06 1.126278062812958e-06 1.124647885930585e-06 1.151693588496983e-06 1.091224628879672e-06 1.08480354299445e-06 1.105302633419569e-06 1.091136759612255e-06 1.084094947145786e-06 1.072591746975604e-06 1.074298680237007e-06 1.067778796937091e-06 1.065844926984028e-06 1.066183578757318e-06 1.089308227619767e-06 1.088351694988887e-06 1.093853104094933e-06 1.092100291089082e-06 1.122000776732079e-06 1.126650461813483e-06 1.109148948685856e-06 1.127743034956552e-06 1.114655223233285e-06 1.117905270575648e-06 1.124260304408153e-06 1.1682349772002e-06 1.106504090131466e-06 1.07962276985063e-06 1.081678853154244e-06 1.116692200042735e-06 1.134911270739281e-06 1.147905029696972e-06 1.212163706298952e-06 1.101125929992008e-06 1.107944418876627e-06 1.090180994367529e-06 1.094923383959667e-06 1.089545687449345e-06 1.088679731253706e-06 1.07050991715596e-06 1.08482832317236e-06 1.072692853654189e-06 1.073312589028319e-06 1.070769890532119e-06 1.06231678387303e-06 1.059074790532577e-06 1.055338259448035e-06 1.062823116626532e-06 1.079350681720825e-06 1.084384955163387e-06 1.090161141803492e-06 1.073951271024498e-06 1.081725443441428e-06 1.094270203338965e-06 1.090555599603249e-06 1.093484605974027e-06 1.08795833853037e-06 1.075832315677872e-06 1.075797172234161e-06 1.077620581213523e-06 1.094128499801172e-06 1.073247986482784e-06 1.102553447651644e-06 1.078917232888443e-06 1.07429329432307e-06 1.080013827703397e-06 1.087214752004684e-06 1.073445474730761e-06 1.082985864542252e-06 1.088156349027258e-06 1.11466260577231e-06 1.093769540716494e-06 1.088365774393196e-06 1.130941139848574e-06 1.09220457744641e-06 1.086850524245619e-06 1.087717649284059e-06 1.083159702375269e-06 1.090282808036136e-06 1.070633672384247e-06 1.077964796536435e-06 1.09019502758656e-06 1.090097988765137e-06 1.102167527022857e-06 1.106290142161015e-06 1.127409259282786e-06 1.113637832617087e-06 + 1.138886169371744e-06 1.140642311270312e-06 1.124366562521573e-06 1.125760547893151e-06 1.127851490423382e-06 1.122391211083595e-06 1.129340930106082e-06 1.111587224045252e-06 1.130721486219954e-06 1.121850559115956e-06 1.11283127068873e-06 1.135272547969635e-06 1.132660536029562e-06 1.136274232038659e-06 1.1588741841706e-06 1.163410379589891e-06 1.173915478602794e-06 1.117007235151846e-06 1.111679239329533e-06 1.125492758546898e-06 1.117314976539774e-06 1.106104413395315e-06 1.089686367805598e-06 1.101633117173151e-06 1.083035613191896e-06 1.083805074131305e-06 1.08355388306336e-06 1.111295162559145e-06 1.111086216809554e-06 1.114577884209211e-06 1.121712045915046e-06 1.152660363601399e-06 1.143808811221447e-06 1.122086624505414e-06 1.15005172141025e-06 1.137473361723096e-06 1.143591113361708e-06 1.131991059111215e-06 1.187023471516113e-06 1.141883874566929e-06 1.102830029964252e-06 1.106416767981955e-06 1.139313864584324e-06 1.159057836375155e-06 1.159227071667601e-06 1.196658006463736e-06 1.133356413163256e-06 1.12051395007029e-06 1.114824488723798e-06 1.116656331845434e-06 1.113923318030174e-06 1.11304242622623e-06 1.09146267845972e-06 1.10723905066834e-06 1.099632378043225e-06 1.100319373392722e-06 1.094837557502615e-06 1.078816438848662e-06 1.07377184122015e-06 1.070632123401083e-06 1.080843070155879e-06 1.098792981935048e-06 1.106492000246817e-06 1.11594105334234e-06 1.10097817085375e-06 1.107095481955866e-06 1.122398252562107e-06 1.116197644535077e-06 1.114674724078668e-06 1.11036644767637e-06 1.093547524533278e-06 1.097331420396586e-06 1.097012528816776e-06 1.118142549216827e-06 1.090835105799215e-06 1.12051491640841e-06 1.100465450321053e-06 1.093521699857547e-06 1.099785329472525e-06 1.111694079014569e-06 1.091499953531638e-06 1.104347962410657e-06 1.115646032445738e-06 1.147399682821515e-06 1.125595570528048e-06 1.114891041709143e-06 1.16716847742282e-06 1.122208892923027e-06 1.11412078496187e-06 1.115956635544535e-06 1.107018164248075e-06 1.119849613928636e-06 1.08534995035825e-06 1.098867230098222e-06 1.111657176977587e-06 1.111827685917888e-06 1.126602381162911e-06 1.129671222344086e-06 1.141475742372222e-06 1.128134993422236e-06 + 1.294178719746242e-06 1.322362493283435e-06 1.260661321111911e-06 1.266243074837803e-06 1.270466498226597e-06 1.262381516653477e-06 1.277515565334397e-06 1.238105156176061e-06 1.275959789381886e-06 1.257171561519499e-06 1.241136146745703e-06 1.293867036622487e-06 1.30313448565289e-06 1.30385214980322e-06 1.39426742151727e-06 1.347079100710857e-06 1.558966680192952e-06 1.246899596907269e-06 1.236448811781088e-06 1.315300622195537e-06 1.247123577741149e-06 1.212550959195369e-06 1.178924662781355e-06 1.195786559549106e-06 1.167396192158776e-06 1.170199354305623e-06 1.169901558739639e-06 1.242291290282083e-06 1.232109958948513e-06 1.258023907269035e-06 1.255265051014476e-06 1.386473892139861e-06 1.42380536161113e-06 1.322927031921495e-06 1.423120034260705e-06 1.360255989624193e-06 1.374234368967109e-06 1.410269316437507e-06 1.527292639025291e-06 1.320043708119556e-06 1.198030911808701e-06 1.208468813018726e-06 1.37053228321804e-06 1.453846728338704e-06 1.668594837411774e-06 2.069016300509929e-06 1.296213946844205e-06 1.318238279424122e-06 1.240601642749084e-06 1.263545501117846e-06 1.237317016844486e-06 1.233578320380957e-06 1.17897239348963e-06 1.230371925231566e-06 1.191634780184359e-06 1.193845456270992e-06 1.18180705044324e-06 1.164494676686445e-06 1.156125506440731e-06 1.142185155345032e-06 1.165462073515755e-06 1.194441043850247e-06 1.214528701609652e-06 1.242413553370625e-06 1.196084415511223e-06 1.212564431085639e-06 1.263941740603514e-06 1.244093276397962e-06 1.255846427739016e-06 1.234039103792384e-06 1.183745808930325e-06 1.185345837484419e-06 1.188172248589581e-06 1.261759422277464e-06 1.180371349107645e-06 1.298255188686426e-06 1.193931311149754e-06 1.182892322759699e-06 1.196818381288267e-06 1.229389315682283e-06 1.181589560417251e-06 1.20759843724727e-06 1.241573421850717e-06 1.356682929554154e-06 1.264201685557964e-06 1.238781759838048e-06 1.386131582847838e-06 1.255915734077462e-06 1.238606834874645e-06 1.242826797920316e-06 1.222935466671515e-06 1.249338794195864e-06 1.171594277593613e-06 1.189845477256313e-06 1.242171073556619e-06 1.240336089836092e-06 1.303872419811114e-06 1.322859102259599e-06 1.430759624554412e-06 1.348043031867974e-06 + 1.892657127910979e-06 2.09371147263937e-06 1.75063520657659e-06 1.736936113161391e-06 1.766597506502876e-06 1.666274343392615e-06 1.712604415615715e-06 1.561956779028151e-06 1.812008406432142e-06 1.694224167181346e-06 1.824140412054476e-06 1.955851807622366e-06 2.03189338421339e-06 2.026903143104164e-06 2.527182148881479e-06 2.213797991146293e-06 3.960231504507306e-06 1.805497873874629e-06 1.598691877546798e-06 2.191840856369254e-06 1.794790843945293e-06 1.672075988778943e-06 1.475858301347444e-06 1.681286498467216e-06 1.394754818306865e-06 1.4338919456236e-06 1.42403173697403e-06 1.895616286162749e-06 1.819266767455474e-06 1.946802360208721e-06 1.770435691383909e-06 2.501631739093568e-06 2.872837734813061e-06 2.380673722157667e-06 2.811766947274918e-06 2.417741512772409e-06 2.471026171235735e-06 2.941947709445003e-06 3.866195307011822e-06 2.091972369555606e-06 1.656921959636293e-06 1.720613994393716e-06 2.492258005304393e-06 3.019354457123313e-06 5.010106262304248e-06 1.523172083572888e-05 1.99811882239942e-06 2.402244431820577e-06 1.795239061408438e-06 1.949919992583204e-06 1.780610634938284e-06 1.754477111148844e-06 1.523230608313497e-06 1.979977312771553e-06 1.671911274314652e-06 1.686532186795375e-06 1.573286702694077e-06 1.393516726011512e-06 1.35621333186009e-06 1.311701311124125e-06 1.43950271791482e-06 1.586614317261592e-06 1.657183567260745e-06 1.770516348642559e-06 1.703383084361576e-06 1.748211008845146e-06 1.85527903795446e-06 1.783236328378734e-06 1.910711318942049e-06 1.841310115935357e-06 1.522296741995888e-06 1.580530579303741e-06 1.570438698195176e-06 1.889760845585897e-06 1.492091843857679e-06 2.146681797654537e-06 1.621372170745872e-06 1.532731676689991e-06 1.598017572490562e-06 1.701772276874181e-06 1.502372455775003e-06 1.650873947767195e-06 1.673528256418422e-06 2.296327565431966e-06 1.785338611171028e-06 1.699875689098462e-06 2.448435328261667e-06 1.768253099498907e-06 1.633821909763356e-06 1.644465569938802e-06 1.568273034990852e-06 1.707823955143795e-06 1.409394016604892e-06 1.597957819399198e-06 1.876196762395921e-06 1.857389484882788e-06 2.090744299465541e-06 2.200321048917431e-06 2.947377090833925e-06 2.45110513930058e-06 + 2.85521380760656e-06 4.26217046367583e-06 2.532576530711594e-06 2.471710971008179e-06 2.545345722637649e-06 2.253920371231288e-06 2.343349123634653e-06 1.94790497687336e-06 2.664455678313971e-06 2.372502578396052e-06 3.086563424403721e-06 3.355959279360832e-06 3.983458380929505e-06 3.814495437737264e-06 6.759911261866591e-06 4.24160167611376e-06 1.811019757269605e-05 2.839312207569833e-06 2.097304800940947e-06 5.05269853690038e-06 2.786855215930473e-06 2.416419423667548e-06 1.857526804371901e-06 2.559221190523431e-06 1.618864089891758e-06 1.736331476820396e-06 1.708470890093849e-06 3.636242126958678e-06 3.117277493913662e-06 3.804123615225308e-06 2.634318622796172e-06 6.7252667879103e-06 9.647112683808245e-06 6.117038431341371e-06 9.108992065520738e-06 6.354258008656188e-06 6.666567504254317e-06 1.005533307818496e-05 1.561869047250752e-05 4.144424057273e-06 2.408896705219377e-06 2.677875194478929e-06 6.818539965536274e-06 1.059641397027633e-05 2.844662625456351e-05 0.0001789985228377589 3.678111147209506e-06 6.283904019355191e-06 2.826628728413993e-06 3.742151312380315e-06 2.771966691739181e-06 2.663457546958625e-06 2.002691964264613e-06 4.025908172167192e-06 2.530566312941573e-06 2.602390271277955e-06 2.141945998346273e-06 1.617501354189699e-06 1.518795158972353e-06 1.434259729649057e-06 1.741673003152755e-06 2.179440713234726e-06 2.359594517997721e-06 2.698045626914336e-06 2.68316422591397e-06 2.83949362156477e-06 3.024205120993884e-06 2.754195598697606e-06 3.571578410799248e-06 3.320775299187062e-06 1.998285441118242e-06 2.166586853036279e-06 2.137934046686496e-06 3.335325374109743e-06 1.907757642527486e-06 4.831202510047206e-06 2.291068057047596e-06 2.032798082751697e-06 2.210866917096155e-06 2.474471184399363e-06 1.937613268054861e-06 2.356273409276355e-06 2.359886646985387e-06 5.482127658495983e-06 2.643765078857996e-06 2.450648530327726e-06 6.010481982343663e-06 2.618959349831584e-06 2.237019621986747e-06 2.259627578382606e-06 2.054069696555416e-06 2.435589550486839e-06 1.65329662138447e-06 2.21832652869125e-06 3.485283563975372e-06 3.34675481639124e-06 4.454543987009174e-06 5.087802236403149e-06 1.027111282425608e-05 6.52572241932603e-06 + 2.862485057875119e-06 4.397907801489964e-06 2.544080260236115e-06 2.485535190999144e-06 2.557412400960857e-06 2.267643665732066e-06 2.364656992881464e-06 1.938999147910181e-06 2.674664742130517e-06 2.386321938274705e-06 3.016570659042372e-06 3.423856526296731e-06 4.062710747376741e-06 3.90542131789573e-06 6.764933024427933e-06 4.410600666915343e-06 1.649813680515422e-05 2.818130315773715e-06 2.095954904746122e-06 4.827896400882992e-06 2.77392818759381e-06 2.358518102596463e-06 1.803535777611387e-06 2.31973020348164e-06 1.58416719386878e-06 1.65708873822723e-06 1.643146845253796e-06 3.352223714614411e-06 2.991677810371129e-06 3.600477594289941e-06 2.64189717569252e-06 6.665187864740574e-06 8.773972062670055e-06 5.319964294869806e-06 8.572733371181585e-06 6.081172042371463e-06 6.458448282842255e-06 8.352202424788402e-06 1.492141513281808e-05 4.27377563383402e-06 2.307922134292539e-06 2.550452240512868e-06 6.471319723644342e-06 1.005151434618767e-05 2.262941562847232e-05 0.0001294994427745166 3.749833089372601e-06 5.275660816650429e-06 2.790171544475584e-06 3.606095903663231e-06 2.734656112224343e-06 2.629211710569734e-06 1.889789174924772e-06 3.219493727613099e-06 2.255714246501839e-06 2.305151618031687e-06 1.988298478750039e-06 1.545081360632139e-06 1.453878653023821e-06 1.376562551058669e-06 1.614736518718018e-06 2.111400373649985e-06 2.314178274787082e-06 2.684973971156523e-06 2.362785210152651e-06 2.666139234719367e-06 3.040594961589704e-06 2.741081189583383e-06 3.43998026863801e-06 3.120026939029685e-06 1.933218726435371e-06 2.064601574147673e-06 2.058619486433599e-06 3.302820040573806e-06 1.847476919891733e-06 4.513120526183911e-06 2.200138350616498e-06 1.951353720386351e-06 2.143858853997926e-06 2.449222314737654e-06 1.873578062472347e-06 2.294956406245774e-06 2.365187061315055e-06 5.570120041653581e-06 2.655788524208447e-06 2.446163357205933e-06 6.188091113301653e-06 2.628470440413366e-06 2.243041429039749e-06 2.268225486545816e-06 2.048880176630519e-06 2.444263827783288e-06 1.622737897832849e-06 2.128110963894869e-06 3.283940493759019e-06 3.191524839962767e-06 4.400789951120032e-06 4.961521383961554e-06 9.131762134018118e-06 5.8863786911445e-06 + 1.882800027885878e-06 2.181128550660105e-06 1.754905042616883e-06 1.741356200568589e-06 1.768387733136478e-06 1.667953625883456e-06 1.722040138929515e-06 1.544368544159624e-06 1.809350351322792e-06 1.700541218951912e-06 1.742253289194196e-06 1.983454801290918e-06 2.077065030192671e-06 2.073405568125963e-06 2.643671519919621e-06 2.325755120935469e-06 3.794938679746451e-06 1.766723640272971e-06 1.590648704308251e-06 2.099055226523205e-06 1.764540986215479e-06 1.607456109553596e-06 1.409648969996624e-06 1.425308489899635e-06 1.344093718103068e-06 1.324712165740038e-06 1.331096257217723e-06 1.692410009468404e-06 1.695425169145892e-06 1.800059518330954e-06 1.769604427437343e-06 2.592371236787017e-06 2.698802138212386e-06 2.028668355080754e-06 2.773200202810244e-06 2.380775601551477e-06 2.489521978787934e-06 2.412961642050959e-06 3.826760696767906e-06 2.167067954417234e-06 1.539472197720215e-06 1.576262707914111e-06 2.439673089327243e-06 3.022611698710875e-06 3.900245876486963e-06 9.963932638967776e-06 2.030598640345715e-06 1.95240193789914e-06 1.740882119349862e-06 1.840518823570392e-06 1.725679650732559e-06 1.705545166430511e-06 1.389842150700815e-06 1.463405666868312e-06 1.385349296612048e-06 1.390601113371304e-06 1.386541327974555e-06 1.280879942555657e-06 1.24685161040361e-06 1.221484566826803e-06 1.272281302533429e-06 1.514199222896195e-06 1.607401841852152e-06 1.740884556511446e-06 1.397296951921589e-06 1.572084286749487e-06 1.845928053967327e-06 1.750974618630607e-06 1.801419202251964e-06 1.677411987088817e-06 1.450786371037793e-06 1.466017295115307e-06 1.485736476070088e-06 1.840274194364611e-06 1.420487457437503e-06 1.983458925991499e-06 1.520639589358552e-06 1.441151638914562e-06 1.526690930120367e-06 1.670644170559399e-06 1.426766422341075e-06 1.583985742570349e-06 1.675315839833047e-06 2.407787981439924e-06 1.787982810697031e-06 1.691754778931909e-06 2.616015454037779e-06 1.769119620576021e-06 1.635967748825351e-06 1.648556931854728e-06 1.559782049298519e-06 1.712687279109559e-06 1.367978072153164e-06 1.499132295634809e-06 1.719983742987097e-06 1.724530072522157e-06 2.068046796921408e-06 2.168972379479328e-06 2.684289135856943e-06 2.212905510390328e-06 + 1.273007015356598e-06 1.276495112279008e-06 1.25093973224466e-06 1.253560611758076e-06 1.255867871918781e-06 1.250833079780023e-06 1.266412169798059e-06 1.236655009506649e-06 1.258608349985479e-06 1.248761350325367e-06 1.230749575142909e-06 1.266144984413131e-06 1.266914392061835e-06 1.269922094593312e-06 1.310625496131479e-06 1.336428830711611e-06 1.347208577584524e-06 1.239381232309711e-06 1.238174681006399e-06 1.264240545140183e-06 1.240051130224629e-06 1.217613593951228e-06 1.182105030750336e-06 1.171980958503127e-06 1.165157499372071e-06 1.149340157269307e-06 1.152955995564753e-06 1.222028508607309e-06 1.222778124088109e-06 1.236663052850417e-06 1.248181426660722e-06 1.298818569139826e-06 1.294656739148081e-06 1.261301946442472e-06 1.298639698887882e-06 1.280434588579737e-06 1.286632159036571e-06 1.286052384585901e-06 1.402833966324124e-06 1.278002084603713e-06 1.198830492654679e-06 1.202839158054303e-06 1.283638757954009e-06 1.313330484364883e-06 1.339822370383104e-06 1.454462646321986e-06 1.266146279377267e-06 1.256368113544681e-06 1.234473172573303e-06 1.241865726697711e-06 1.23249910011225e-06 1.231113476052315e-06 1.167190880835278e-06 1.191394105148902e-06 1.163463423381472e-06 1.165169202010929e-06 1.162542112354004e-06 1.132521262547925e-06 1.119660524295796e-06 1.115296839770963e-06 1.128088470636612e-06 1.203272415040146e-06 1.220419115099958e-06 1.237296338274518e-06 1.167187733130959e-06 1.201515956950061e-06 1.249312944651138e-06 1.237665323117199e-06 1.237246145535664e-06 1.219484182968245e-06 1.191696696878353e-06 1.186885469905974e-06 1.195957040067697e-06 1.243869476752479e-06 1.183906729096407e-06 1.25574387155325e-06 1.198486664577558e-06 1.185345787746428e-06 1.205452388575168e-06 1.231086663722181e-06 1.184623945604812e-06 1.214145875394479e-06 1.241495798609549e-06 1.28897705664599e-06 1.253121638455923e-06 1.23905872229102e-06 1.336197097856484e-06 1.248374864815105e-06 1.239421514753758e-06 1.241517836092498e-06 1.229564475124789e-06 1.245133432803414e-06 1.176475862507687e-06 1.195348218629988e-06 1.225878605737307e-06 1.226729111181157e-06 1.262809814051025e-06 1.269022760652661e-06 1.294415348240818e-06 1.272108256955562e-06 + 1.153399651343534e-06 1.159298363972994e-06 1.137777630333403e-06 1.137792935423931e-06 1.140343613315054e-06 1.132989410734808e-06 1.142814141985582e-06 1.12115175454619e-06 1.143899964972661e-06 1.133517088192093e-06 1.13794193623562e-06 1.151630009132987e-06 1.152595160647252e-06 1.154483316057053e-06 1.186864928115483e-06 1.189427321079961e-06 1.23117331263245e-06 1.138004311229679e-06 1.123339696817993e-06 1.15381239851331e-06 1.137722705379929e-06 1.127662997646439e-06 1.108048468978495e-06 1.122599652347844e-06 1.099167107554422e-06 1.097841291652912e-06 1.097991500387252e-06 1.13836421888891e-06 1.136546817548378e-06 1.142048279945129e-06 1.137649721982825e-06 1.179281515106823e-06 1.182986279602005e-06 1.157083788783098e-06 1.184626551520296e-06 1.165924608415025e-06 1.170889625257132e-06 1.179165291631534e-06 1.254523336768898e-06 1.160373642505874e-06 1.124876860103541e-06 1.129777189134984e-06 1.168929241401884e-06 1.197199056335307e-06 1.232090818703568e-06 1.379201401974228e-06 1.151907929042295e-06 1.156727469364682e-06 1.136964780101835e-06 1.143218748111963e-06 1.136116475564108e-06 1.134594267426792e-06 1.108156041595976e-06 1.134826405291278e-06 1.119865405740939e-06 1.121038636142657e-06 1.112454796725615e-06 1.091514050699516e-06 1.085810836798373e-06 1.080922658047712e-06 1.093262106621751e-06 1.119658634252119e-06 1.126983498522804e-06 1.136364744525054e-06 1.12221478687502e-06 1.130930847637046e-06 1.142112200369638e-06 1.137103964765629e-06 1.14122911298864e-06 1.136571555093724e-06 1.113361264515333e-06 1.117424545782342e-06 1.117658456450954e-06 1.141997962861296e-06 1.109444696112405e-06 1.150216746736987e-06 1.121937220460723e-06 1.112505891853743e-06 1.120768104101444e-06 1.131028295020542e-06 1.110139688620393e-06 1.125848953620334e-06 1.129822525314239e-06 1.170012378537422e-06 1.139879149292256e-06 1.131391353936806e-06 1.196792045021766e-06 1.137876957102435e-06 1.126916629345942e-06 1.128221001067686e-06 1.120873179161208e-06 1.133783371187747e-06 1.103090340848212e-06 1.119948706218565e-06 1.13844045301903e-06 1.138165686143111e-06 1.15154811908269e-06 1.156060093876476e-06 1.184242748308861e-06 1.16234431857265e-06 + 1.138611196438433e-06 1.145860750284555e-06 1.119158426376998e-06 1.122110518281261e-06 1.124340215596931e-06 1.120266873044784e-06 1.132956796823237e-06 1.106364052816389e-06 1.127139142909073e-06 1.11735229779697e-06 1.11060305130195e-06 1.134326929275176e-06 1.134709663119793e-06 1.137205869028435e-06 1.173457420122759e-06 1.167647655009318e-06 1.209457472839404e-06 1.11331748442467e-06 1.106976608156174e-06 1.133374105677376e-06 1.113293546239902e-06 1.102263933461245e-06 1.084617206714711e-06 1.087244694275569e-06 1.078194330261795e-06 1.076772051078478e-06 1.076987111048311e-06 1.105537457135597e-06 1.106320407728845e-06 1.113903895344492e-06 1.116428254732682e-06 1.167382654543303e-06 1.162139007249152e-06 1.129849630743252e-06 1.168948386975899e-06 1.148988808097329e-06 1.156602177587729e-06 1.1506942527717e-06 1.223114328041675e-06 1.145652035461353e-06 1.094536852264127e-06 1.096901858232968e-06 1.151489108508486e-06 1.182731692139782e-06 1.193739406879502e-06 1.288948501709797e-06 1.133098857408754e-06 1.124832932575259e-06 1.11132918512169e-06 1.117005266948468e-06 1.110291838912758e-06 1.109112655939271e-06 1.082494691218017e-06 1.091799092023393e-06 1.084160640374421e-06 1.08470275961281e-06 1.083378400323909e-06 1.072628194265235e-06 1.068127502890093e-06 1.065288529389363e-06 1.071534171614985e-06 1.094839355175736e-06 1.102913486761281e-06 1.111630751893244e-06 1.085291327029836e-06 1.096612038509193e-06 1.118990983428603e-06 1.1121666290137e-06 1.114471317009702e-06 1.104473525970207e-06 1.089094254780321e-06 1.08901221551605e-06 1.091723973445369e-06 1.117476550405172e-06 1.085549197199498e-06 1.126667939388426e-06 1.093672373997379e-06 1.087011934686188e-06 1.095934361927675e-06 1.107436876424117e-06 1.085934592026661e-06 1.100530756303897e-06 1.110693492734072e-06 1.158056910810501e-06 1.120643965180079e-06 1.110067142207072e-06 1.177360658743964e-06 1.116710365067775e-06 1.109108460184416e-06 1.1107966884083e-06 1.102940018427034e-06 1.114043612915339e-06 1.081670433222826e-06 1.092133643965099e-06 1.107818633272473e-06 1.108413620443116e-06 1.131201507575952e-06 1.137038676546354e-06 1.160981753400847e-06 1.140579701797151e-06 + 1.188807381424795e-06 1.195626580852149e-06 1.171130975308188e-06 1.172580169850335e-06 1.175154480392848e-06 1.168721695421482e-06 1.179119465177791e-06 1.155197494995264e-06 1.178779129418217e-06 1.167801499946108e-06 1.160068393346592e-06 1.185731342445706e-06 1.185150299676252e-06 1.187345375797122e-06 1.221347934787786e-06 1.222071077222608e-06 1.24955998437315e-06 1.162044458880018e-06 1.155000235897319e-06 1.181952164586164e-06 1.163130264103529e-06 1.145628711896052e-06 1.115757669367667e-06 1.119027764673319e-06 1.106668022998747e-06 1.10286602961196e-06 1.103562375703859e-06 1.148651840310322e-06 1.150613147871127e-06 1.16025595531255e-06 1.167519922518068e-06 1.213114412479399e-06 1.204505212015761e-06 1.175401354913674e-06 1.210535206297436e-06 1.194845577145998e-06 1.201315363630329e-06 1.193593121229242e-06 1.271924595869223e-06 1.195531634579083e-06 1.131002239418422e-06 1.135390292006377e-06 1.196884667820086e-06 1.223882920342589e-06 1.234675402805863e-06 1.345261720686608e-06 1.183347544397861e-06 1.169119551391873e-06 1.159088309776735e-06 1.164537968278978e-06 1.158181911264933e-06 1.157195008261169e-06 1.110821813199436e-06 1.128032412367475e-06 1.112725907859158e-06 1.114225369747146e-06 1.111863298319804e-06 1.096449892656892e-06 1.089466579173859e-06 1.087403234123485e-06 1.091377939133054e-06 1.133059104319045e-06 1.148318020227634e-06 1.162290594436399e-06 1.115148254626774e-06 1.134964321636289e-06 1.170605408162828e-06 1.162915765462458e-06 1.162901043016973e-06 1.148255364569195e-06 1.123265590763367e-06 1.122706947853658e-06 1.127603681538858e-06 1.168241169580142e-06 1.117035274944556e-06 1.17477896921514e-06 1.129991584747359e-06 1.118805514011001e-06 1.134930148083413e-06 1.155746655712164e-06 1.117484130119806e-06 1.142966571165971e-06 1.160339397898724e-06 1.20546149773304e-06 1.171945477551617e-06 1.159463703714891e-06 1.230736444313152e-06 1.168612861590645e-06 1.158844398219117e-06 1.161015092066009e-06 1.150740487787516e-06 1.166239826488891e-06 1.112504520506263e-06 1.128080668877374e-06 1.152965538153694e-06 1.154234460898351e-06 1.180727863925313e-06 1.185469887587942e-06 1.203143867201106e-06 1.186649889461933e-06 + 1.379946059643089e-06 1.409954805353664e-06 1.343520395380438e-06 1.34301603793574e-06 1.350237681663202e-06 1.328929741362117e-06 1.347349112279517e-06 1.295768797149321e-06 1.362128813298114e-06 1.331441268348499e-06 1.314731974844108e-06 1.384034206353135e-06 1.382256542115101e-06 1.384292254158481e-06 1.458566037726428e-06 1.469467889592124e-06 1.509955644962702e-06 1.315628965770088e-06 1.291764974098442e-06 1.365149284282552e-06 1.320093613088602e-06 1.277145727840434e-06 1.217236594186488e-06 1.229441856764879e-06 1.196938924863389e-06 1.189328017403568e-06 1.190549468788049e-06 1.291040376827368e-06 1.293202277707906e-06 1.312088230065456e-06 1.332265465947557e-06 1.43924304829568e-06 1.420795030071531e-06 1.341443882196813e-06 1.435891510581655e-06 1.400443970567267e-06 1.417089812605354e-06 1.385834888623094e-06 1.574190836350908e-06 1.403699208424314e-06 1.253308631987693e-06 1.264506398257481e-06 1.402976900877206e-06 1.459473629950025e-06 1.472981401740014e-06 1.655811148637554e-06 1.373908318669237e-06 1.327680074325599e-06 1.308227203011825e-06 1.32077122216856e-06 1.306771062914436e-06 1.304801333645855e-06 1.207870678143763e-06 1.243810707762805e-06 1.214884552069861e-06 1.218623840060218e-06 1.214185530784562e-06 1.171624134599369e-06 1.151634847929017e-06 1.142256721209378e-06 1.160429690116871e-06 1.25290146968382e-06 1.284047904448471e-06 1.319789944886907e-06 1.220083667874405e-06 1.264550398616393e-06 1.34252539041313e-06 1.321430161738135e-06 1.319209999905979e-06 1.290901955997015e-06 1.23630417192544e-06 1.240797445234421e-06 1.245947274242099e-06 1.333870194741849e-06 1.220258873502189e-06 1.343818635035632e-06 1.25008507367852e-06 1.225666778736922e-06 1.256104987135132e-06 1.300982106045012e-06 1.219942166841292e-06 1.272225521375958e-06 1.310905929585715e-06 1.426648992719493e-06 1.343507765483309e-06 1.309103431879066e-06 1.489037799728976e-06 1.337208686891245e-06 1.308621136786314e-06 1.314995998313861e-06 1.288217220007937e-06 1.332262669961892e-06 1.21085616910932e-06 1.248664219133389e-06 1.299409767341331e-06 1.301535533571041e-06 1.364967179284804e-06 1.376515630369113e-06 1.416960326849903e-06 1.372641399655095e-06 + 2.518056891886999e-06 2.582857746347145e-06 2.228821514904666e-06 2.280538410559529e-06 2.311288554324165e-06 2.278397658983522e-06 2.487782268190131e-06 2.078976478969707e-06 2.358326995022253e-06 2.212972361803622e-06 2.052138654562441e-06 2.402321364058935e-06 2.347327828999823e-06 2.370954685915194e-06 2.980269442787176e-06 3.108712887112119e-06 3.610335950199328e-06 2.021479943437043e-06 2.018492828881335e-06 2.26645551748561e-06 2.043685096708714e-06 1.901855242181227e-06 1.715490640208372e-06 1.738490897906786e-06 1.647689970241117e-06 1.612550612151153e-06 1.61889218475153e-06 1.98861989275656e-06 1.969598748985391e-06 2.04142745729996e-06 2.125080420967151e-06 2.809073794907135e-06 2.670095197387923e-06 2.210799923574314e-06 2.789857934004658e-06 2.476826377773023e-06 2.611175716538128e-06 2.537972569882641e-06 4.424805709390967e-06 2.524737158893231e-06 1.829677557907416e-06 1.872025610083483e-06 2.48515115686132e-06 3.005352530394134e-06 3.343830347724008e-06 6.030602841988753e-06 2.298194198502301e-06 2.172982059178707e-06 1.995557797229708e-06 2.053780038480113e-06 1.993876059813715e-06 1.989950565217669e-06 1.672314525080765e-06 1.82861239395038e-06 1.691540639114919e-06 1.706347521945872e-06 1.688517293985115e-06 1.556565266014331e-06 1.508174591435818e-06 1.481412638781876e-06 1.536391039280716e-06 1.832394730172382e-06 1.930352325985041e-06 2.049045882301925e-06 1.709792680770761e-06 1.874387496769714e-06 2.138970550902286e-06 2.054420072283847e-06 2.068096122798124e-06 1.986921617458393e-06 1.783786530040743e-06 1.800654757744269e-06 1.814715631098807e-06 2.104280312664741e-06 1.725312333888951e-06 2.178777034345103e-06 1.821174631544409e-06 1.741943023603199e-06 1.841451709339026e-06 1.984650552344647e-06 1.72217539429198e-06 1.889332079230144e-06 2.061377152529076e-06 2.709449930193841e-06 2.206612609967351e-06 2.028204164616909e-06 3.245586409406087e-06 2.153256609460641e-06 2.074490843995136e-06 2.111461640197376e-06 1.987304173667326e-06 2.161587445925761e-06 1.696717021104632e-06 1.823556146973715e-06 2.014993143006905e-06 2.012944378293469e-06 2.240247088280967e-06 2.310078219380785e-06 2.679145630679614e-06 2.350060697153822e-06 + 7.722878597959948e-05 0.0001420776030727211 5.888235675399756e-05 5.63539148856762e-05 6.12066639718023e-05 4.608102598524511e-05 5.516471932764944e-05 2.905576495493278e-05 7.091571288242449e-05 4.960005560405989e-05 7.298889025264543e-05 9.510314119154373e-05 0.0001037981921463427 9.325690547257182e-05 0.0002227421622347237 0.0001517575559617512 0.000516172665470549 4.987517032795097e-05 2.81340984784606e-05 0.0001219532391303346 5.296303641699751e-05 3.555523623077761e-05 1.817701658168858e-05 3.350105688681992e-05 1.360675530293065e-05 1.481382624035632e-05 1.446398925963877e-05 7.084812376945138e-05 5.798263859091435e-05 7.444892317209906e-05 5.210913313291599e-05 0.0002023459431583774 0.0002460958388379453 0.0001284047321110648 0.0002550456464156525 0.0001637751240650687 0.0001877576049018614 0.0002568832046279113 0.0006172114923437277 0.0001157294729274838 3.383280566993108e-05 4.333762021246912e-05 0.0001625549062396203 0.0002944994738083295 0.0006077954498078242 0.003582082995851721 8.33874721255512e-05 0.0001235457810224716 4.899286954973547e-05 7.067829608686793e-05 4.953657653672394e-05 4.786753563834623e-05 1.903156527660599e-05 5.994485639604363e-05 3.000372284489572e-05 3.257225075614656e-05 2.430160522237657e-05 1.167086782061233e-05 8.91078481402019e-06 6.741984606151163e-06 1.193024127843501e-05 2.824010276825106e-05 3.777894746548327e-05 5.567065406353322e-05 3.286690130011038e-05 4.651408503875132e-05 6.713059592300397e-05 5.792679544924795e-05 7.852408594999361e-05 6.864051312760466e-05 2.435882079510066e-05 3.16506292961094e-05 2.873120821789144e-05 7.530668415256514e-05 1.919998028299119e-05 0.0001082281733175705 3.078640914111475e-05 2.199207225217492e-05 2.896901518312234e-05 4.250680525430539e-05 1.890024837258863e-05 3.437308241061032e-05 3.998765197721355e-05 0.0001743592286729267 5.675287010120655e-05 4.146458148568399e-05 0.000229774232046509 5.641238891485045e-05 3.873224397921149e-05 4.16667695049e-05 3.107701057558643e-05 5.411101301433519e-05 1.53138609277903e-05 3.176176333852254e-05 7.345838450589781e-05 6.993706614366602e-05 0.0001013009810790777 0.0001205849741054976 0.000272382488695655 0.0001603852444915788 + 0.00114190989788554 0.002473503728268156 0.0008511144157097306 0.0008076879888108124 0.0008902784216076043 0.0006392038339129158 0.0007821987400689068 0.0003536633819436474 0.001070860102217353 0.0006955609731988943 0.001036406165226822 0.001496480601531402 0.001611584138593969 0.001393042574136416 0.003916562208274854 0.002517358280780257 0.009535220922904486 0.0006288390373221375 0.0003259557033796767 0.001803783508414369 0.0006936247303919174 0.000418261071562398 0.0001816444855151644 0.0003244579011045801 0.0001276285844511449 0.0001379107055186068 0.0001348570226937795 0.0008848351255181797 0.0007271981117753512 0.0009655127534102803 0.0006996845252515982 0.003444179070834608 0.003934529145842802 0.001685963032862503 0.00429248566966578 0.002563406621987951 0.003090616020823944 0.00385003651725313 0.01282879937243564 0.001844071181849927 0.0003759479896139339 0.0004979826721900338 0.00246969839373179 0.005059970957505655 0.009282403643234183 0.05590896708130799 0.001200283582909023 0.00152348033391192 0.0006115032952198618 0.0009154407275104859 0.0006270825017633541 0.0006106394760685419 0.0001811638667241766 0.0005282542517015543 0.0002679824131490705 0.0002966802633537213 0.0002382620280982906 9.975624124081151e-05 6.775266373892919e-05 4.507153269628361e-05 9.472472930127651e-05 0.00031829672865058 0.0004666398578407893 0.0007578283231737259 0.0002960073867015467 0.0005303007904622348 0.0009440051668825333 0.0007932358237070503 0.001082813716216435 0.0008887793437537539 0.0002703275920197257 0.0003660227640125413 0.0003279493599990246 0.001064925794004523 0.0001941084442158569 0.001512700892508434 0.0003430507274835293 0.0002272667099703085 0.0003275610768760373 0.0005396744733587866 0.0001874457403214791 0.0004041852911775834 0.0005130007668157077 0.00301015322696685 0.0007867506660090839 0.0005259049608490329 0.004159426642978303 0.0007874705043775521 0.0005099965566159881 0.000563175152990425 0.0003894217248756604 0.0007762915315794316 0.0001503024327291769 0.0003667002284686305 0.0009687937909390598 0.0009263108004518017 0.001474647713784805 0.00179622489132214 0.004399909946837255 0.002358439053359973 + 0.00204590469120447 0.005265192669313024 0.001807038374437298 0.00166163160795918 0.001808078754038434 0.001314786498852527 0.001501031173447132 0.0007266279456246139 0.002154510787107711 0.001472286072043971 0.002793418844746043 0.002983916215242743 0.003425259037989292 0.002707406669584245 0.007526199693188573 0.003989850178943044 0.01974702810520057 0.001352004850980748 0.0006521751447738922 0.004512619283044472 0.001525481619971458 0.0009963816490206057 0.0004520908272240831 0.001125904652283793 0.000323827638851526 0.0004091727548072299 0.0003828803392025293 0.002655558141498204 0.001916406722195063 0.002525054453954567 0.00146484228758581 0.006980636145621943 0.009675481394415542 0.00475315300774426 0.009859081238969836 0.006003352124864136 0.007018810670654574 0.011786091851409 0.02411869530533295 0.003555616278859475 0.001014245626155486 0.001400575117319391 0.005566515991990428 0.01053844092240119 0.02336312312070188 0.1196239835266777 0.002340362203639756 0.004555422775194273 0.001357642536488513 0.002187091632498195 0.001429259073079336 0.00141133190045295 0.0005072430333257216 0.002403641328907469 0.001044884818817593 0.001185290666015248 0.0007875985982437328 0.0003116855222060622 0.0002176405966025641 0.000123237507565932 0.0003374540719676133 0.0007994733925329456 0.001131601899970747 0.001754100881747434 0.001152386590881349 0.00154717008940608 0.002041169521596942 0.001842322117752815 0.002860077430810293 0.0026688518703466 0.000717754340868737 0.001116367227325554 0.0008902404904063133 0.002538517320729738 0.0004880099007529282 0.003979215723958873 0.0009116771594470663 0.0005958224583828553 0.000813475148596865 0.001240925900592771 0.0004617582940262821 0.0009860068052560678 0.001095017018041489 0.006261067010598254 0.001604586555910004 0.001139161239933628 0.007285190161319122 0.00168424837337966 0.001116259814381237 0.001234429187533692 0.0008709306920025028 0.001732603741572802 0.0003632962238384607 0.001033184560185418 0.002823571249635393 0.002587457468159471 0.003356023018486809 0.004173684539942712 0.01167533553865141 0.006345585498870321 + 0.0002214427053353063 0.0004354695410313525 0.0001924229465970484 0.0001814890777609435 0.0001947017790087102 0.0001482522953324406 0.0001693451866913165 8.950873213109389e-05 0.0002224342510857014 0.000163088212019602 0.0002538210014932929 0.0002822807002829109 0.0003157725626046215 0.000268696117423417 0.0006397992545021935 0.0003810042732812491 0.001500170396269596 0.0001551713859804238 8.465896610765355e-05 0.0004028268880595931 0.0001685457263036483 0.0001183885356503822 5.968399559819204e-05 0.0001300253510265748 4.460637175895954e-05 5.393398475206368e-05 5.104827488366936e-05 0.0002538671843339557 0.0001955446494612545 0.0002479829434633984 0.0001655307349750501 0.0006000123825629089 0.0007943218410257913 0.0004446377733682283 0.0007986921324985019 0.0005247687551310776 0.0005939591499242169 0.0009275586155403914 0.001687322695680393 0.000331479022282366 0.0001183048723838453 0.0001517753778976783 0.0005062926361869557 0.0008659819753287223 0.001968697422235266 0.01373459160862822 0.0002407630525951276 0.0004389111184845973 0.0001544519189167204 0.0002243297122390686 0.0001592752727628266 0.0001569820429985214 6.703869932778161e-05 0.0002714852331244799 0.0001243923257057133 0.0001368361022642262 9.498376875427539e-05 4.289456690287352e-05 3.201423356813393e-05 2.027110812719002e-05 4.727624502720573e-05 9.607772895492417e-05 0.0001289871828404898 0.0001843331709139306 0.000135682979124141 0.0001646518954103726 0.0002097850745954588 0.0001909593571980395 0.0002661019344998294 0.0002482061289938997 8.548045873624233e-05 0.0001208681842399528 0.0001024980030024381 0.0002437961193635374 6.372418733135987e-05 0.0003644435780962851 0.0001076200554592788 7.537077386388091e-05 9.798330030008628e-05 0.0001415485222722168 6.168741005296852e-05 0.0001160980469308015 0.0001294158488462926 0.0005266309924500945 0.0001785047298348275 0.0001341770119722696 0.0006201811300954319 0.0001826224284684486 0.0001286002388027896 0.0001394271480705811 0.0001026191820727718 0.0001833451337915903 4.892988104643337e-05 0.0001158060400427985 0.0002612754154895924 0.0002438762008907247 0.0003164738161629543 0.0003823277099357369 0.0009151230372310692 0.0005481451068369836 + 1.334359449245426e-05 1.740665008753695e-05 1.117761138402784e-05 1.104500081794413e-05 1.158683798507809e-05 9.849116750615394e-06 1.133166081501713e-05 7.160885687085283e-06 1.254135581518767e-05 1.017418648530111e-05 1.148157006980455e-05 1.404947662564382e-05 1.433652620974613e-05 1.366964739091259e-05 2.312723295361252e-05 1.944900663986004e-05 3.783337619722715e-05 9.467524167305896e-06 6.924933609653294e-06 1.532039587814893e-05 9.884858403808039e-06 7.72597064724323e-06 5.183206781111949e-06 7.595649570646401e-06 4.509236063654498e-06 4.820020059526087e-06 4.719089098159657e-06 1.104642135629774e-05 9.91365640601316e-06 1.133039003420322e-05 1.014650980124543e-05 2.160036443932256e-05 2.390083243497543e-05 1.57893172687551e-05 2.454227943360365e-05 1.856255315146882e-05 2.03295247409585e-05 2.468634718866269e-05 4.2180237617373e-05 1.555765680194554e-05 7.452375850647286e-06 8.484333200442506e-06 1.847476178262752e-05 2.693952134080746e-05 4.295375135576762e-05 0.0001756047639709379 1.277631502638599e-05 1.549063785688531e-05 9.295544924015076e-06 1.1027906161587e-05 9.380890805488207e-06 9.278224915476585e-06 5.444694906486802e-06 1.123056402363432e-05 7.374211332233926e-06 7.720387348086888e-06 6.410301388370954e-06 4.294591207099074e-06 3.700276707263583e-06 2.977110213464584e-06 4.438984142041136e-06 6.689604397536186e-06 8.084401649455231e-06 1.023906629882276e-05 7.725895049048859e-06 8.781523529677315e-06 1.13098936438405e-05 1.042036307552507e-05 1.179794784178512e-05 1.090958536309472e-05 6.16358144611695e-06 7.266279538953313e-06 6.791879599177264e-06 1.169868197337109e-05 5.35120771161246e-06 1.416135290099874e-05 7.058690908223753e-06 5.808303239263068e-06 6.791291379926179e-06 8.767400274223291e-06 5.290327438345344e-06 7.564198824638879e-06 8.660953930927917e-06 1.965214353205624e-05 1.083473066287866e-05 8.749319430734204e-06 2.400053599771468e-05 1.068451258134928e-05 8.555529426246267e-06 9.016550492901843e-06 7.330655080295401e-06 1.057604940513102e-05 4.736722189591092e-06 7.225447106407046e-06 1.132076950227656e-05 1.10287376173801e-05 1.378386912520568e-05 1.528353050161968e-05 2.548241677757801e-05 1.819962800198027e-05 + 1.484422853081924e-06 1.476042086778762e-06 1.377871768681871e-06 1.404464811116668e-06 1.413689815876751e-06 1.410279281799376e-06 1.476180813142491e-06 1.342656432257172e-06 1.424761791213314e-06 1.380197730327382e-06 1.28883078787112e-06 1.428346159570992e-06 1.403370539776461e-06 1.42254336488179e-06 1.613120849341954e-06 1.626642948338031e-06 1.798376940698176e-06 1.299503139762237e-06 1.324111270406547e-06 1.365751082005318e-06 1.304253594014426e-06 1.260338741815303e-06 1.216946486692905e-06 1.228964197963478e-06 1.202582566861565e-06 1.200061937822738e-06 1.20046912854832e-06 1.274284215924126e-06 1.27079300327182e-06 1.291553143545343e-06 1.341928314246843e-06 1.559136135753647e-06 1.493256570839208e-06 1.346531066204193e-06 1.538818207080794e-06 1.439757298271616e-06 1.48488859963436e-06 1.436298717294449e-06 1.954678673143917e-06 1.470833367989144e-06 1.241287343134445e-06 1.248771273054672e-06 1.446662027504431e-06 1.618674549064281e-06 1.69210714418e-06 2.426963304102969e-06 1.398756145576385e-06 1.333813896664537e-06 1.288437516677732e-06 1.299434133628097e-06 1.285926829908135e-06 1.284639953524902e-06 1.213621022344569e-06 1.255541555167383e-06 1.22269192459612e-06 1.225323948972346e-06 1.218244015888104e-06 1.188175460242746e-06 1.1746519277267e-06 1.165471729791534e-06 1.186887359949651e-06 1.240550290049214e-06 1.266424327184268e-06 1.301130048148025e-06 1.22622711984377e-06 1.249525215740732e-06 1.333582229534613e-06 1.301577476908733e-06 1.296584919430188e-06 1.271741069786003e-06 1.227766347255965e-06 1.231846880500598e-06 1.234578860476176e-06 1.31222350319149e-06 1.219121994466832e-06 1.33506987864962e-06 1.238734963493471e-06 1.223135818406718e-06 1.243168107123438e-06 1.286025771207733e-06 1.219734803825645e-06 1.255709051406484e-06 1.324816693681896e-06 1.521236846713236e-06 1.374792201858099e-06 1.308179133019394e-06 1.668326909509688e-06 1.347886104952067e-06 1.328818882484484e-06 1.341507072538661e-06 1.295457167316272e-06 1.349297846786612e-06 1.209882498187653e-06 1.236764759937614e-06 1.27940057836895e-06 1.279443452517626e-06 1.363011513433321e-06 1.385414758914294e-06 1.487771658759129e-06 1.390753631369535e-06 + 1.159120529337088e-06 1.168756611491517e-06 1.140213129247059e-06 1.1438483937809e-06 1.146150808040147e-06 1.142492422445684e-06 1.151747611061182e-06 1.128817018525297e-06 1.14932592509831e-06 1.138769633257652e-06 1.128291259533398e-06 1.155559829157937e-06 1.155340072500621e-06 1.157023405085056e-06 1.199193258472064e-06 1.186231317618081e-06 1.247631045586672e-06 1.12644759830971e-06 1.125603924734264e-06 1.157118994399298e-06 1.127477730733517e-06 1.113577212663586e-06 1.09985682783531e-06 1.102248624818003e-06 1.09520779290051e-06 1.093132006246833e-06 1.093677411745375e-06 1.127312280857495e-06 1.122495721261885e-06 1.132608044684957e-06 1.133923966278871e-06 1.193629694640208e-06 1.198891256493084e-06 1.16119023196859e-06 1.203028380913906e-06 1.177031663246453e-06 1.185250660284964e-06 1.191881537465633e-06 1.261434874777478e-06 1.166597758839316e-06 1.108280994088773e-06 1.11244000677857e-06 1.179933819983603e-06 1.216025758310479e-06 1.242411120649933e-06 1.365573913503226e-06 1.151990149494964e-06 1.159049364929388e-06 1.123951129500256e-06 1.133418964016641e-06 1.123164258487463e-06 1.122003521203396e-06 1.097632313928898e-06 1.119636358737353e-06 1.098108842967349e-06 1.099427255013552e-06 1.097884272382998e-06 1.088391471171235e-06 1.082710440414303e-06 1.078248914154756e-06 1.085201809303271e-06 1.107183724258221e-06 1.114786179812199e-06 1.12658927520215e-06 1.100215431648621e-06 1.113589199519538e-06 1.136018955349982e-06 1.127302638792571e-06 1.132980329998645e-06 1.124866145119086e-06 1.103323384654686e-06 1.104456003986343e-06 1.105478133922588e-06 1.134407007441496e-06 1.100517948771085e-06 1.150147536321811e-06 1.10702058364609e-06 1.101662459035424e-06 1.107978235381779e-06 1.120343640081956e-06 1.10065213654309e-06 1.112036862593868e-06 1.127635652409253e-06 1.182200222160645e-06 1.14042413201787e-06 1.124836398247453e-06 1.200148567193082e-06 1.135317731382202e-06 1.127606502393519e-06 1.130449604147543e-06 1.119155044193576e-06 1.133949254494837e-06 1.097785883530378e-06 1.106288792129817e-06 1.128169408559643e-06 1.127114245491612e-06 1.151195455406651e-06 1.159759246860403e-06 1.200069956297511e-06 1.171961230284069e-06 + 1.104127409945477e-06 1.106823518171041e-06 1.093448418032494e-06 1.094941879387079e-06 1.096368166031425e-06 1.093052389933291e-06 1.099155454653555e-06 1.083827598336029e-06 1.09812958726252e-06 1.091976528755367e-06 1.089304404899849e-06 1.10136308961728e-06 1.10100816641534e-06 1.102741169489718e-06 1.122326422020592e-06 1.118486457230006e-06 1.141994802722479e-06 1.090155658189929e-06 1.084328284051139e-06 1.10129802877168e-06 1.090054322361311e-06 1.083984873417876e-06 1.073584886768231e-06 1.079330726128092e-06 1.068384420932489e-06 1.068720735020179e-06 1.068672290216455e-06 1.089905268258917e-06 1.088378741798124e-06 1.092360719212593e-06 1.091793631502469e-06 1.119131676219354e-06 1.118679662681643e-06 1.104016257968965e-06 1.121571436613067e-06 1.109965904078081e-06 1.113854626311195e-06 1.114604494034666e-06 1.150633163859993e-06 1.10705219213969e-06 1.081885361742252e-06 1.084094446213157e-06 1.111690222543871e-06 1.128827513241504e-06 1.135803978868921e-06 1.185505530187925e-06 1.100652122332235e-06 1.10378773321429e-06 1.089220232231014e-06 1.093016427589077e-06 1.088639169921635e-06 1.087842033342667e-06 1.073858946654127e-06 1.088566520479617e-06 1.077390770376496e-06 1.078036078183686e-06 1.075256989224727e-06 1.06482664818941e-06 1.060433248767367e-06 1.056654099329535e-06 1.064953693230564e-06 1.079770253653578e-06 1.083813124580502e-06 1.089098269346778e-06 1.078681183486196e-06 1.084578691745719e-06 1.093084577519221e-06 1.089418574906631e-06 1.091723326851479e-06 1.088511794478109e-06 1.076529244414814e-06 1.078229416862087e-06 1.078682927868613e-06 1.092245028644356e-06 1.074390773680989e-06 1.098806016841536e-06 1.080652740625965e-06 1.076093877117046e-06 1.080351211157904e-06 1.086370225777955e-06 1.074736530881637e-06 1.082997041379485e-06 1.087697341972671e-06 1.113526888474325e-06 1.094306071536266e-06 1.087604594829372e-06 1.123871122388209e-06 1.092011231662582e-06 1.086512114056859e-06 1.087719383008334e-06 1.081985772088956e-06 1.090342976795e-06 1.070266606006953e-06 1.079634671441454e-06 1.08988342617522e-06 1.089561941114425e-06 1.0993810626303e-06 1.102797760665908e-06 1.118326217408594e-06 1.107268559508157e-06 + 1.120960625655698e-06 1.123035090699886e-06 1.110188264874523e-06 1.110488000222176e-06 1.11220231246989e-06 1.107494867369496e-06 1.114164490445546e-06 1.099690592809566e-06 1.114576861027672e-06 1.107555689827677e-06 1.104726834455505e-06 1.119187643894293e-06 1.11855783302417e-06 1.1205490153543e-06 1.135288435705206e-06 1.141202597310098e-06 1.144582913781278e-06 1.107726346205595e-06 1.100815696375435e-06 1.115478909241574e-06 1.107801107735895e-06 1.098250528741573e-06 1.082419846198945e-06 1.085964502323122e-06 1.076709565950296e-06 1.074265696843213e-06 1.074802810308029e-06 1.099959973771547e-06 1.1017490706422e-06 1.105798268952185e-06 1.109508524166358e-06 1.131137814525118e-06 1.126765537762253e-06 1.112228865451925e-06 1.129427415591522e-06 1.122233548755958e-06 1.125372147470216e-06 1.121645095025769e-06 1.15750689033689e-06 1.124136606023285e-06 1.092951723791202e-06 1.095224110514437e-06 1.123457469276445e-06 1.135025820886426e-06 1.140383019127e-06 1.165588034979237e-06 1.118795255550253e-06 1.10924225538156e-06 1.106139649209581e-06 1.10834780997493e-06 1.105354453301288e-06 1.104465983559066e-06 1.081130115210271e-06 1.088129167214902e-06 1.083722157346756e-06 1.084111087124029e-06 1.081867253560631e-06 1.069247659302164e-06 1.065122617660563e-06 1.06337461147632e-06 1.070098655020502e-06 1.091285760423943e-06 1.098637071095254e-06 1.10666586294883e-06 1.084599521306018e-06 1.094749105590154e-06 1.111563197042642e-06 1.10703412303792e-06 1.106491978930535e-06 1.099756012479247e-06 1.086124569837921e-06 1.087868866989083e-06 1.089068135229354e-06 1.109592624004563e-06 1.083345612329367e-06 1.111838177081381e-06 1.09161394945545e-06 1.085210502793643e-06 1.092272384539683e-06 1.102921853401995e-06 1.083866287387991e-06 1.096606119688204e-06 1.104374110383333e-06 1.127713964876875e-06 1.111581788393323e-06 1.104681661701079e-06 1.141915099367452e-06 1.109704932389377e-06 1.102585670764711e-06 1.103644478916976e-06 1.097621492363032e-06 1.107145308765212e-06 1.079406274584471e-06 1.090162484729262e-06 1.101856440755e-06 1.102628331750566e-06 1.115870610135516e-06 1.117845208398194e-06 1.126153666319851e-06 1.117486878143836e-06 + 1.253030006864719e-06 1.275136341405414e-06 1.219594381041134e-06 1.22192855656067e-06 1.225693083029e-06 1.216123223457544e-06 1.236813972127493e-06 1.195006021248446e-06 1.23047230715656e-06 1.21485025772472e-06 1.211741803786026e-06 1.249623551302648e-06 1.261547659225926e-06 1.261006048025592e-06 1.349825138774463e-06 1.344066456354653e-06 1.491893291571955e-06 1.214943466720797e-06 1.199783543626154e-06 1.280069540143813e-06 1.214570751528754e-06 1.185035085171648e-06 1.150572188635124e-06 1.165905214151053e-06 1.13620849617746e-06 1.13572748716706e-06 1.136468789297851e-06 1.220440786653398e-06 1.206144187193559e-06 1.231585120109457e-06 1.218975842931513e-06 1.336981584998398e-06 1.370959274993311e-06 1.298150982265156e-06 1.367484150804898e-06 1.317220977625766e-06 1.32689872600622e-06 1.370120731536417e-06 1.511368836304428e-06 1.27455074050431e-06 1.172163539564508e-06 1.183579392716183e-06 1.326812462565385e-06 1.394189171222138e-06 1.588989827716603e-06 1.857434840601968e-06 1.255125351207198e-06 1.299173771229789e-06 1.209908822019656e-06 1.233989902260646e-06 1.206895568373056e-06 1.203324146104023e-06 1.148631440628378e-06 1.210188507627663e-06 1.158727616967781e-06 1.161682668282538e-06 1.149578579884292e-06 1.126075815705008e-06 1.116640433451721e-06 1.107168245084722e-06 1.125903750676116e-06 1.167888090236602e-06 1.186486578319546e-06 1.210167162923881e-06 1.164771337158754e-06 1.188548150565794e-06 1.228074065551255e-06 1.211708962500779e-06 1.226998179504335e-06 1.210522199812658e-06 1.156800848889361e-06 1.158463504680185e-06 1.161705512231492e-06 1.228519153073648e-06 1.152395846304444e-06 1.26832808433619e-06 1.16776154968079e-06 1.155492014959236e-06 1.170223722368746e-06 1.19939488385512e-06 1.153693263589162e-06 1.180444609616416e-06 1.20729026420463e-06 1.308311194492262e-06 1.224036299873887e-06 1.206667388231608e-06 1.367121775786018e-06 1.218812677450387e-06 1.203158610962873e-06 1.205490448796809e-06 1.191422171586964e-06 1.211885731322582e-06 1.141604386134532e-06 1.163525482184014e-06 1.21783752859983e-06 1.214561251572377e-06 1.266784156683798e-06 1.284686931057877e-06 1.377615042486013e-06 1.312773562744951e-06 + 1.574367310297475e-06 1.626378335117806e-06 1.478443550695374e-06 1.47180833209859e-06 1.488667905391594e-06 1.434331977634429e-06 1.47823742224773e-06 1.372847236780217e-06 1.513021913979173e-06 1.446804532179158e-06 1.491403182285467e-06 1.577824917831094e-06 1.597693245258824e-06 1.60600140652889e-06 1.836810746169704e-06 1.825843821023909e-06 2.260762718364617e-06 1.498753359641114e-06 1.395200426301813e-06 1.628782161589015e-06 1.494890739195398e-06 1.420648974459482e-06 1.301481987070474e-06 1.410147540070739e-06 1.256544422290062e-06 1.275526955168971e-06 1.270690638932592e-06 1.504124064410917e-06 1.483764926035747e-06 1.531693889944563e-06 1.48909423103305e-06 1.782615083101291e-06 1.833406788165348e-06 1.662852927353242e-06 1.835309491937664e-06 1.71085700628737e-06 1.735717237494327e-06 1.816282853894791e-06 2.527036293997753e-06 1.637230909068421e-06 1.40583559371521e-06 1.437819655336625e-06 1.735632707777768e-06 1.930060573585024e-06 2.338460936002207e-06 4.667602071961596e-06 1.593040757086328e-06 1.658708711715917e-06 1.489667907250691e-06 1.541534746962725e-06 1.481826384264195e-06 1.469806452547573e-06 1.327708542220307e-06 1.509966395474294e-06 1.39710022395434e-06 1.403143752298774e-06 1.35655249522415e-06 1.252381920835433e-06 1.232264850159481e-06 1.208516763995249e-06 1.273782793020928e-06 1.367665952045627e-06 1.415532850046475e-06 1.4822609557541e-06 1.410453013050983e-06 1.448503244461108e-06 1.526372663818165e-06 1.487763569230083e-06 1.522497655059851e-06 1.486371608905301e-06 1.327853212274022e-06 1.361893282592064e-06 1.356253818585174e-06 1.528270203721149e-06 1.310523249031803e-06 1.603633229763091e-06 1.386029985894766e-06 1.333445190709881e-06 1.374886480220994e-06 1.445642439534822e-06 1.316670273254772e-06 1.407678702491921e-06 1.435746504796498e-06 1.705236240212571e-06 1.497913537207296e-06 1.449298860478621e-06 1.898333074734637e-06 1.487951479361982e-06 1.412817887569418e-06 1.418570448663559e-06 1.375251940771705e-06 1.454858249871904e-06 1.265806460537533e-06 1.372345309391676e-06 1.500827998768273e-06 1.496816310009308e-06 1.605687867112238e-06 1.640679354153463e-06 1.842993135880988e-06 1.699162279322763e-06 + 1.903717677720351e-06 2.304115042761623e-06 1.757741728170004e-06 1.735762225507642e-06 1.765997168945432e-06 1.648601937631611e-06 1.704401952906665e-06 1.51447312646269e-06 1.810994106676844e-06 1.692798136332385e-06 1.964190047942793e-06 2.029851110307845e-06 2.226477747058198e-06 2.177705614059278e-06 3.102483182360061e-06 2.467755511048608e-06 6.168128889427749e-06 1.878309465297434e-06 1.580231858255843e-06 2.611196592283704e-06 1.857355751866407e-06 1.723737664605096e-06 1.468431797491121e-06 1.807872948234035e-06 1.356991461420876e-06 1.42393939484009e-06 1.407380175066919e-06 2.191503277515494e-06 1.98686393204639e-06 2.231978317723815e-06 1.798893237037191e-06 3.058198114302968e-06 3.908473440006333e-06 2.997494076950602e-06 3.71502164675519e-06 2.964786620651694e-06 3.033570035171351e-06 4.167337813498762e-06 5.735693328290381e-06 2.28195634832673e-06 1.726375380428635e-06 1.832523928158025e-06 3.103043244578885e-06 4.132040739790455e-06 9.080477585854396e-06 4.555456600030539e-05 2.137295398441097e-06 3.076774875765409e-06 1.875622862357318e-06 2.200057503287667e-06 1.855673311013106e-06 1.81619780192932e-06 1.551782492725806e-06 2.423909091220366e-06 1.799882621611459e-06 1.831054710521585e-06 1.626230393014794e-06 1.370455208871135e-06 1.321900683137756e-06 1.273945912316776e-06 1.436926027054142e-06 1.619359711213519e-06 1.698252034998404e-06 1.824464732180786e-06 1.865914804000113e-06 1.898343157336058e-06 1.930921680326492e-06 1.843980342641771e-06 2.140269927508598e-06 2.069291724637878e-06 1.533678300802421e-06 1.621813311203368e-06 1.601931344907825e-06 2.04296807027049e-06 1.492505418809742e-06 2.56758280414715e-06 1.674513026017621e-06 1.554662102165594e-06 1.633828901503875e-06 1.743700796197345e-06 1.507470605233152e-06 1.69842506991813e-06 1.689864937759467e-06 2.6847703153976e-06 1.801446970262077e-06 1.730490620133196e-06 2.961754780983483e-06 1.791702644027282e-06 1.635419714318687e-06 1.644306479420266e-06 1.556938642011119e-06 1.719270201760992e-06 1.371396990634821e-06 1.641858560219589e-06 2.124858298202525e-06 2.069479499766658e-06 2.404408263600999e-06 2.603029010117552e-06 4.112845573445156e-06 3.071417769007212e-06 + 1.767421746734499e-06 2.178514137085585e-06 1.647861765263769e-06 1.635109939002177e-06 1.657896149254157e-06 1.567758530995889e-06 1.618079508602932e-06 1.442618426494846e-06 1.69196208332778e-06 1.600308479510204e-06 1.85003999320088e-06 1.907527888533878e-06 2.097010955992573e-06 2.04977001772022e-06 2.782752387631149e-06 2.290962855866496e-06 4.774391840101089e-06 1.760105872605777e-06 1.501852034735407e-06 2.35214036692355e-06 1.741476118866103e-06 1.620120144707471e-06 1.415505906265935e-06 1.664214796193164e-06 1.32147282272399e-06 1.371473189237804e-06 1.361473671579461e-06 1.993426124613507e-06 1.85834336363655e-06 2.050132948738792e-06 1.682106152145479e-06 2.742887790674331e-06 3.252528877339955e-06 2.533049192621206e-06 3.172952368402093e-06 2.624845432563916e-06 2.695068804570155e-06 3.253833430250097e-06 4.618914037024524e-06 2.151975415642937e-06 1.621823390252075e-06 1.718766721836573e-06 2.718534826584573e-06 3.492313570774286e-06 6.059845429007282e-06 2.457180637271961e-05 2.008878949411042e-06 2.544119761083152e-06 1.759910773557749e-06 2.03723540437295e-06 1.742596255738249e-06 1.704926052781275e-06 1.467263658128104e-06 2.00884160861392e-06 1.646378915864943e-06 1.666422736690265e-06 1.519997219645575e-06 1.326557452330235e-06 1.281155959986791e-06 1.232408493478943e-06 1.363403775656025e-06 1.532763654665814e-06 1.597749950121852e-06 1.713029988081871e-06 1.689220376022149e-06 1.767102421723621e-06 1.813717837251261e-06 1.732966708800632e-06 1.989454126771761e-06 1.911837877344169e-06 1.465007159140441e-06 1.526680847518946e-06 1.515733075052594e-06 1.920113923858935e-06 1.433874309952898e-06 2.297460778066807e-06 1.575247328133855e-06 1.478630938578362e-06 1.544604522507598e-06 1.636213280420407e-06 1.445307725944645e-06 1.598199116159549e-06 1.594132900351042e-06 2.483318837676052e-06 1.683933017915251e-06 1.625227231016879e-06 2.709950241097658e-06 1.675820143987039e-06 1.550619629142602e-06 1.558529604039904e-06 1.484047672306588e-06 1.61545972332533e-06 1.334504986516549e-06 1.546520167039489e-06 1.960024825109485e-06 1.924219354521028e-06 2.221892035692008e-06 2.367284857029972e-06 3.352812431245411e-06 2.630146791915422e-06 + 1.349992295729407e-06 1.386012073112397e-06 1.294087269343436e-06 1.296865818289916e-06 1.304721294559386e-06 1.282545213143749e-06 1.314276104835699e-06 1.239382029893932e-06 1.314997945200957e-06 1.282386890011367e-06 1.303731309576506e-06 1.347272394980337e-06 1.361577584901852e-06 1.364471682308022e-06 1.496159292457833e-06 1.499242243241383e-06 1.66277869517728e-06 1.302106987566276e-06 1.249507615597167e-06 1.373802067661245e-06 1.300027719253194e-06 1.26525100085928e-06 1.210406949780918e-06 1.233133204436854e-06 1.188061744983315e-06 1.190019538910292e-06 1.19049805391569e-06 1.298622500200963e-06 1.296487496915688e-06 1.320114972003239e-06 1.295807532386561e-06 1.470864253505511e-06 1.478433185653216e-06 1.372387465892189e-06 1.489611523908252e-06 1.422189068733815e-06 1.441031479032517e-06 1.442337318025011e-06 1.759163176018319e-06 1.3879309932463e-06 1.254615664691983e-06 1.268353123862198e-06 1.433811780415795e-06 1.536882292541009e-06 1.665442334264355e-06 2.36022850685913e-06 1.354797904085103e-06 1.360562333019288e-06 1.298783812941906e-06 1.326436946058607e-06 1.29528143233415e-06 1.288977543367764e-06 1.21151786558471e-06 1.248846341894705e-06 1.221332496470495e-06 1.223236008485173e-06 1.215984646307788e-06 1.175385378360261e-06 1.159570771847029e-06 1.14285542451853e-06 1.173651043018253e-06 1.2398356297183e-06 1.261963710419423e-06 1.294205148383298e-06 1.225553717176808e-06 1.269287334793034e-06 1.316029006659392e-06 1.297434153002541e-06 1.318161565677656e-06 1.293789694045699e-06 1.221725113964567e-06 1.231374056942514e-06 1.233136671885404e-06 1.320813552752043e-06 1.213982354641985e-06 1.356614237835174e-06 1.246234653251577e-06 1.221771309900532e-06 1.243265746353472e-06 1.275390793864517e-06 1.216299629902551e-06 1.2589932403273e-06 1.270468015235338e-06 1.433564055020042e-06 1.302296162464245e-06 1.276167608921241e-06 1.533692174149337e-06 1.295366089948402e-06 1.259844871981386e-06 1.26390975196955e-06 1.239279043829811e-06 1.280331872521856e-06 1.194169044538285e-06 1.239236823380452e-06 1.303107616479338e-06 1.303240054539856e-06 1.36385902393954e-06 1.383462628012921e-06 1.4777322512316e-06 1.40051345809411e-06 + 1.159252722260362e-06 1.157901962756114e-06 1.133368087380404e-06 1.138500991260116e-06 1.140299673352274e-06 1.139846901310193e-06 1.156370316834909e-06 1.125243500155193e-06 1.142122385999755e-06 1.133680996190378e-06 1.128459729216047e-06 1.146907600002578e-06 1.14739832568489e-06 1.150004733219134e-06 1.19298444190008e-06 1.219709639954658e-06 1.213635041352745e-06 1.128467664202049e-06 1.124295016197152e-06 1.147310712212857e-06 1.127965969516254e-06 1.118884739526038e-06 1.10580949552741e-06 1.116991192873229e-06 1.09829498740055e-06 1.097946309869258e-06 1.09810525117382e-06 1.131247941543734e-06 1.127828056723956e-06 1.134668902835756e-06 1.130194522858119e-06 1.177810140973179e-06 1.165799258018296e-06 1.148158075281458e-06 1.171212129946753e-06 1.157922099537245e-06 1.163424595773677e-06 1.158988194305266e-06 1.265227975721928e-06 1.159313192999889e-06 1.116676823897933e-06 1.121318899066637e-06 1.160048242354605e-06 1.185184613561319e-06 1.191875384165542e-06 1.267075404598472e-06 1.146214660963096e-06 1.147380814359167e-06 1.127179713122928e-06 1.135696368947947e-06 1.126079045121742e-06 1.124427601695288e-06 1.106037291975781e-06 1.129870135230249e-06 1.11481267950353e-06 1.115788776928639e-06 1.108387813530953e-06 1.091592835678057e-06 1.085235780351468e-06 1.080697003885689e-06 1.09212011523141e-06 1.113433995669766e-06 1.118397101151913e-06 1.126099235193578e-06 1.116903707298889e-06 1.123115936252361e-06 1.133147321752404e-06 1.126831996600686e-06 1.133243941353612e-06 1.128618578150054e-06 1.109099329710261e-06 1.110958038452736e-06 1.111612078830149e-06 1.133550810550332e-06 1.106863013689008e-06 1.143554467120111e-06 1.114487627518201e-06 1.108905859581455e-06 1.114207957897406e-06 1.122083645554994e-06 1.107521349297258e-06 1.117454196730705e-06 1.125785345834629e-06 1.169515908117091e-06 1.134505364319693e-06 1.124624883885872e-06 1.220439280302799e-06 1.130228888257534e-06 1.124765603321976e-06 1.126599883605195e-06 1.118458357041163e-06 1.128186340793036e-06 1.101155660876429e-06 1.112764024924218e-06 1.130605340904367e-06 1.129862646109814e-06 1.145567416926951e-06 1.149948374745691e-06 1.164571390432911e-06 1.152370668222602e-06 + 1.116572502013469e-06 1.11737224983699e-06 1.099137605820033e-06 1.10087646021384e-06 1.103119998902002e-06 1.098338302085722e-06 1.109589817360757e-06 1.085551843971189e-06 1.105955490743327e-06 1.096446482051761e-06 1.091673794917369e-06 1.110677224858136e-06 1.110231107048776e-06 1.112724749674499e-06 1.145802260182904e-06 1.147366532450178e-06 1.194932748305177e-06 1.094154777447898e-06 1.08621413552612e-06 1.109166799295735e-06 1.094176699467653e-06 1.083544788116342e-06 1.069426954103392e-06 1.079610171927925e-06 1.063487061969681e-06 1.064907543479876e-06 1.064638759373793e-06 1.092914537537126e-06 1.090447955931495e-06 1.096143463996668e-06 1.097285373674595e-06 1.137826574293399e-06 1.14190156708105e-06 1.111809408982367e-06 1.144424825127999e-06 1.122817131715692e-06 1.128614243839365e-06 1.136108924271184e-06 1.212807333672572e-06 1.118656655307859e-06 1.080808004871869e-06 1.084617210267425e-06 1.1261411732022e-06 1.159210400558663e-06 1.195152193211868e-06 1.307644012626952e-06 1.110008422955389e-06 1.111587121016555e-06 1.092301273430962e-06 1.097454152443333e-06 1.091326980784402e-06 1.090133853409725e-06 1.070712094985993e-06 1.089840729662228e-06 1.077734971488553e-06 1.078515694530324e-06 1.073336164836292e-06 1.06168782565419e-06 1.058363125139294e-06 1.054608972594906e-06 1.063168994619446e-06 1.076965936874785e-06 1.083311197191961e-06 1.092613238995455e-06 1.079367510925522e-06 1.085791680566217e-06 1.099244652635889e-06 1.093057903744921e-06 1.095155511166013e-06 1.090759667476959e-06 1.072467910034902e-06 1.075342879630625e-06 1.075350340329351e-06 1.096857872084911e-06 1.07036563790075e-06 1.104813254215742e-06 1.078598081960536e-06 1.07248958869377e-06 1.077832553875169e-06 1.088034256468973e-06 1.070949013026734e-06 1.081881219278102e-06 1.090651679191978e-06 1.12794149487172e-06 1.100732127667925e-06 1.090559301530902e-06 1.155208551040232e-06 1.097600993205106e-06 1.088583609032412e-06 1.090269250880738e-06 1.081779103628833e-06 1.094511361543482e-06 1.065355888840713e-06 1.076957417467383e-06 1.092496219712302e-06 1.092021449267122e-06 1.107569175928802e-06 1.112227920430087e-06 1.142952584132217e-06 1.117587210330839e-06 + 1.088287771011665e-06 1.089360154082897e-06 1.079913246826436e-06 1.081298378835527e-06 1.082073936231609e-06 1.081280331050039e-06 1.08819561717155e-06 1.075267988426276e-06 1.082977490796111e-06 1.079465562270343e-06 1.076044839010137e-06 1.08547544641624e-06 1.085867104677618e-06 1.086695364804768e-06 1.098154065459767e-06 1.101406922998649e-06 1.106582320886673e-06 1.077119783587932e-06 1.074928798416863e-06 1.086108078141024e-06 1.077009024186282e-06 1.071328256330162e-06 1.059702999128831e-06 1.064680638762638e-06 1.054379055176469e-06 1.054557486668273e-06 1.054525753829694e-06 1.075746610013084e-06 1.074921350152636e-06 1.078635758489099e-06 1.078695220257941e-06 1.095887419921837e-06 1.096486011320508e-06 1.08643715535095e-06 1.097247151804481e-06 1.091463321500896e-06 1.093372404170623e-06 1.09454425256672e-06 1.113820349729622e-06 1.08942442622606e-06 1.068278074001228e-06 1.070443691020273e-06 1.092390949253286e-06 1.100210832660764e-06 1.106671369655032e-06 1.134171785821536e-06 1.085341329698508e-06 1.085418876556332e-06 1.076200243588232e-06 1.07951914785076e-06 1.075633429437062e-06 1.074935529032928e-06 1.059593103036605e-06 1.067995338388528e-06 1.062114375116607e-06 1.062557828390709e-06 1.060962119936448e-06 1.051472054314218e-06 1.048265275471749e-06 1.0466385589325e-06 1.050899385290904e-06 1.066791284642932e-06 1.071393803897536e-06 1.07607712607205e-06 1.063049658966975e-06 1.070764966470961e-06 1.079608288989675e-06 1.076336864969107e-06 1.078294943113178e-06 1.074713821935802e-06 1.062823542952174e-06 1.064094902858415e-06 1.065057773530498e-06 1.078988987046614e-06 1.060537510255699e-06 1.083910234456198e-06 1.067094807183366e-06 1.062145987162921e-06 1.067486234518356e-06 1.073970167908556e-06 1.060998684465631e-06 1.070294565863605e-06 1.076251489706692e-06 1.093168318533344e-06 1.08050220859468e-06 1.075633406344423e-06 1.102395284391378e-06 1.078783306240894e-06 1.075726217436568e-06 1.076612761607976e-06 1.072223611231493e-06 1.077754433254086e-06 1.056459311143954e-06 1.065878151962352e-06 1.076126544319322e-06 1.076012388523395e-06 1.084955872698856e-06 1.08727894954086e-06 1.096660344757083e-06 1.089541108001413e-06 + 1.134968428573302e-06 1.14015195151751e-06 1.117286217322544e-06 1.119326441312296e-06 1.121228621059345e-06 1.118063266858371e-06 1.131520235730932e-06 1.10702366384885e-06 1.123783761158847e-06 1.115438109877687e-06 1.11364512633827e-06 1.129810584643565e-06 1.131230760620383e-06 1.132229257905237e-06 1.167379046762562e-06 1.174999651354369e-06 1.1914734763252e-06 1.112216345688921e-06 1.106061398914449e-06 1.132136222992131e-06 1.11239636524374e-06 1.102307049194451e-06 1.088849653996249e-06 1.096700337654966e-06 1.083695991610512e-06 1.083465420492757e-06 1.083632895415576e-06 1.113495322613289e-06 1.110771339796202e-06 1.117677822293217e-06 1.114454967421352e-06 1.157995354716945e-06 1.152575279661505e-06 1.132102902090537e-06 1.15696109048713e-06 1.143270019099418e-06 1.148421144847589e-06 1.145555152959332e-06 1.221336823675756e-06 1.139578618136738e-06 1.098902266960522e-06 1.103362201604341e-06 1.145256650403326e-06 1.168170403076374e-06 1.178358581377381e-06 1.284806323553767e-06 1.128901830682594e-06 1.130313613373346e-06 1.110875976095826e-06 1.118745144523814e-06 1.110125921854888e-06 1.108830552709605e-06 1.088880697608374e-06 1.104825361863959e-06 1.092458049356537e-06 1.093603753332673e-06 1.090626042810072e-06 1.078454573644194e-06 1.071988506851085e-06 1.068993270791907e-06 1.074531418510105e-06 1.096244577780681e-06 1.10263372476993e-06 1.111400145248354e-06 1.094337978457816e-06 1.104670115381623e-06 1.117877246770149e-06 1.112107057110734e-06 1.117369386349765e-06 1.111680205667653e-06 1.091976400857675e-06 1.094266366408192e-06 1.094602851026139e-06 1.118187221038625e-06 1.089645074614509e-06 1.127811341206097e-06 1.097028892615981e-06 1.091340713799127e-06 1.097055815080239e-06 1.10662849905907e-06 1.09006088777619e-06 1.100885601346135e-06 1.109220612249828e-06 1.150320812826067e-06 1.117866659683386e-06 1.108644660519076e-06 1.183005409188809e-06 1.1151241849916e-06 1.108240333280719e-06 1.10992770885332e-06 1.102538135455688e-06 1.113329361146498e-06 1.085707438619465e-06 1.095872264045283e-06 1.113916354711364e-06 1.113420047715863e-06 1.129602377858419e-06 1.134453778917077e-06 1.151671085608541e-06 1.1380034337094e-06 + 1.233709472359124e-06 1.241071117874526e-06 1.204203655902347e-06 1.204603378823776e-06 1.209557012771256e-06 1.195887165295062e-06 1.217919958662605e-06 1.170521926496804e-06 1.216756032818012e-06 1.196162315864058e-06 1.201998344413369e-06 1.228187073820663e-06 1.226790704578207e-06 1.229267821756252e-06 1.27011047723613e-06 1.28661983467282e-06 1.29412495120107e-06 1.198436537563907e-06 1.173013290056701e-06 1.222024412328437e-06 1.199240159621695e-06 1.181907265390691e-06 1.151978306523915e-06 1.168182283350916e-06 1.140014958878055e-06 1.140095712059974e-06 1.140314125791519e-06 1.19913411822381e-06 1.196942015724289e-06 1.204750411432087e-06 1.20067819864289e-06 1.257931065978823e-06 1.246328270809727e-06 1.218478860920413e-06 1.253053437011431e-06 1.236468531118362e-06 1.244122039167905e-06 1.23536015550485e-06 1.344056535401705e-06 1.240046174189047e-06 1.177847838818025e-06 1.185779805012999e-06 1.238373608103416e-06 1.266539729982696e-06 1.275096542130427e-06 1.389260884110399e-06 1.224007773359403e-06 1.215441226776193e-06 1.196602580577633e-06 1.206444720125432e-06 1.19579260449143e-06 1.193793085718653e-06 1.152563264383843e-06 1.175478459458645e-06 1.158079047769434e-06 1.160388936938261e-06 1.157952937091977e-06 1.129087735307621e-06 1.116112201771102e-06 1.11022086457524e-06 1.1215924828889e-06 1.170152732044016e-06 1.182192029602902e-06 1.19842371049117e-06 1.161479342925986e-06 1.187205079133946e-06 1.208318682444087e-06 1.199688689723644e-06 1.205458723063657e-06 1.197925968199343e-06 1.161631232093896e-06 1.170109612758097e-06 1.168653227523464e-06 1.207805439662479e-06 1.154174135820085e-06 1.215767923667954e-06 1.173890296968239e-06 1.159423621999167e-06 1.171663448928939e-06 1.188618572456335e-06 1.154547982551435e-06 1.179517408189668e-06 1.186807025987946e-06 1.250841378919176e-06 1.205861344999448e-06 1.189080801822229e-06 1.292242032491231e-06 1.202413876910668e-06 1.182745052119571e-06 1.185719241902916e-06 1.171605646277385e-06 1.197072649006259e-06 1.144379623951863e-06 1.172537821503283e-06 1.200669636602925e-06 1.200462250494638e-06 1.220805831536609e-06 1.225938195403842e-06 1.244985604387239e-06 1.227135236092636e-06 + 1.864508181625979e-06 1.928630823044841e-06 1.764014555760696e-06 1.771510994785785e-06 1.786686894433842e-06 1.753288998429525e-06 1.818816215859442e-06 1.670527836949987e-06 1.810900073451194e-06 1.744002332770833e-06 1.734695203481351e-06 1.850577802997577e-06 1.847942176169681e-06 1.8466019788832e-06 2.076213560187057e-06 2.064419030389786e-06 2.301303917207065e-06 1.705403532170635e-06 1.656587990339631e-06 1.843542371204876e-06 1.715403048052622e-06 1.635950930278796e-06 1.507903760966656e-06 1.528267954853391e-06 1.460390237184583e-06 1.441751351194398e-06 1.445442741498937e-06 1.695602570350729e-06 1.686151993141038e-06 1.730552050105416e-06 1.73377606316194e-06 2.027421565742316e-06 2.022827711556374e-06 1.826521277337179e-06 2.051456801765994e-06 1.927548346714048e-06 1.97236933985323e-06 1.989378251465723e-06 2.412235826199094e-06 1.902348245153007e-06 1.591656452859525e-06 1.620735883278712e-06 1.932043261376748e-06 2.118407781637188e-06 2.289357324158914e-06 2.981816660252434e-06 1.820029693178071e-06 1.804273413341662e-06 1.694978802646574e-06 1.736688394871067e-06 1.694230874704772e-06 1.689995272613487e-06 1.48347465156462e-06 1.577496341553797e-06 1.495638016990597e-06 1.504971290700041e-06 1.495271575890911e-06 1.403847022629634e-06 1.368537482449028e-06 1.345687650200489e-06 1.390642893284166e-06 1.588406092878358e-06 1.650460390578701e-06 1.719059831373215e-06 1.507418815549499e-06 1.621871231094474e-06 1.759622438868291e-06 1.723721581470272e-06 1.745057353730317e-06 1.694918836392389e-06 1.554350959054318e-06 1.569871329820671e-06 1.577400183805366e-06 1.758457671030556e-06 1.515190444223435e-06 1.806148510752337e-06 1.584565843870678e-06 1.528688407859136e-06 1.594660865578135e-06 1.679477374949556e-06 1.51358875299934e-06 1.627428698469657e-06 1.693912338396331e-06 1.984296709167666e-06 1.759263774658848e-06 1.690262312337154e-06 2.129105794779207e-06 1.745639082173511e-06 1.691978717133225e-06 1.705936455209667e-06 1.652243469152381e-06 1.740156676532933e-06 1.49033768082063e-06 1.585067835208065e-06 1.713195608488149e-06 1.712575404155814e-06 1.821720431394169e-06 1.855623388280492e-06 2.034947964801859e-06 1.891881996840539e-06 + 3.866440901845181e-05 7.026721925740276e-05 2.992502525955842e-05 2.860354476297289e-05 3.092708148244583e-05 2.357229212179845e-05 2.803084869640315e-05 1.544899474481554e-05 3.546302589541028e-05 2.537708870420374e-05 3.795378876247923e-05 4.750409948428569e-05 5.25175067913608e-05 4.727935573889397e-05 0.0001093742724211921 7.49716991723659e-05 0.000249908704969215 2.623961852599166e-05 1.517664013661602e-05 6.320372568424659e-05 2.767294714089985e-05 1.904918420336799e-05 9.95588454699714e-06 1.867733440263919e-05 7.480272017801326e-06 8.196987892006291e-06 7.990738922103446e-06 3.780764361493993e-05 3.074359445065511e-05 3.928510194484147e-05 2.698373695153578e-05 0.0001006022914040727 0.0001256968297820293 6.831881947277907e-05 0.00012826275972877 8.382709961551882e-05 9.489103306137281e-05 0.0001344158992075961 0.0002860261353525573 5.797333149004658e-05 1.831856453904379e-05 2.337313746281211e-05 8.351209399570791e-05 0.0001461588906295219 0.0003136943476649279 0.001891537086107675 4.258289024150486e-05 6.651471103680251e-05 2.586110285740517e-05 3.716582800805668e-05 2.610340631825636e-05 2.519976650106059e-05 1.054102674657997e-05 3.441029742035084e-05 1.701692978883784e-05 1.844378271442793e-05 1.347090724834743e-05 6.589298209291883e-06 5.173801355340402e-06 4.009783651781618e-06 6.872244235012204e-06 1.527428321779212e-05 2.009403294067624e-05 2.892949124344568e-05 1.862589418877292e-05 2.513723928032618e-05 3.454257405977046e-05 3.007924792797212e-05 4.101028743264123e-05 3.640223483358795e-05 1.318705095343375e-05 1.710117669517786e-05 1.552072423294248e-05 3.895945818044311e-05 1.051072368341011e-05 5.670395418988505e-05 1.667031667196284e-05 1.203440307051551e-05 1.565904657141459e-05 2.243190729345201e-05 1.038423335941729e-05 1.843514600352592e-05 2.101742338922463e-05 8.662647725543593e-05 2.908284790592575e-05 2.185542190247247e-05 0.0001112770529019258 2.896920279482629e-05 2.025741974165385e-05 2.16255708380686e-05 1.650005884812344e-05 2.768554300303094e-05 8.357007246218018e-06 1.713172588324596e-05 3.880305729353495e-05 3.68390614013947e-05 5.225900974181741e-05 6.219068315971299e-05 0.0001394673169556881 8.366291041284057e-05 + 0.0005429697756405005 0.001142842147032752 0.0003972631821369532 0.000379869385682241 0.0004178669907304311 0.0003039025294242492 0.0003769975962200078 0.0001712531861812749 0.0004993572583202877 0.0003274223179801083 0.0004735663563906201 0.000695646464620836 0.0007477199811560808 0.0006536373792815908 0.001838149813599088 0.00122359486250545 0.00442201403694753 0.0002946771815981464 0.0001587700479177556 0.0008306507618378589 0.0003236490744455978 0.0001963420283637163 8.629278609717517e-05 0.0001497609579352854 6.049450472289664e-05 6.47778616666983e-05 6.349267306404727e-05 0.0004045102609211426 0.0003347021517470239 0.000443857722135732 0.0003287630382473594 0.00160878587182367 0.001810039942208519 0.0007742914990700456 0.001980806607496888 0.001185486616556375 0.001429905016280486 0.001752490851611554 0.005992593504394961 0.0008649938948153135 0.0001752067194260576 0.0002300579728036212 0.001147020134061094 0.002353233699393442 0.004261929565316791 0.02625974820048249 0.0005636466122123096 0.0006986197704730301 0.0002857742482067493 0.0004233048684909591 0.0002922508624116915 0.0002845435943363839 8.537168824673813e-05 0.0002409771025178031 0.0001235895298457024 0.0001365351871314147 0.000110875559172996 4.700262121559717e-05 3.232126050534134e-05 2.199093650290251e-05 4.455621311194591e-05 0.0001498534211776814 0.0002183891847877817 0.0003513082389190458 0.0001363066740900365 0.0002442418740784547 0.0004382870758981028 0.0003672142308417392 0.0004961432149954703 0.0004057963334531678 0.0001272318187375276 0.0001699843472238172 0.0001535354421520196 0.0004903147312873557 9.210744315524266e-05 0.0006952203111971755 0.0001604589114485577 0.0001072955638434792 0.000154235341355502 0.0002527540943475515 8.915249367191791e-05 0.000189588639710081 0.0002432570687638247 0.001400068874957583 0.0003699163035832953 0.0002483324943547416 0.001975565415992975 0.0003677896281359949 0.0002413169580748331 0.0002656079704337344 0.0001852726693840623 0.0003613461031903853 7.140678097528053e-05 0.0001708588959843382 0.000442524839904479 0.0004238673317260577 0.0006830190980764428 0.0008315358322725785 0.002013163251717742 0.00108263084860738 + 0.0009897713585402812 0.002325183472336789 0.0008512987408124673 0.0008015595625749938 0.0008673122755311624 0.0006551373940624217 0.0007689417277561006 0.0003593464300308824 0.00102128079799968 0.0007107536732746667 0.001175243141943838 0.00134810015221376 0.001493241790804234 0.001204621611837098 0.00328847961866785 0.001936520137887143 0.008059567793427647 0.0005944624871645487 0.0003144952478209007 0.00186768793156844 0.0006738005580544382 0.0004367724805334205 0.0001962488155839992 0.0004536581029981335 0.000142352080573005 0.0001735350620606368 0.0001636321287250553 0.001076358315110326 0.0007966209642766842 0.001039829028620431 0.0006731149488921062 0.002999108614814006 0.003910562282154473 0.001905674483605679 0.004046183447917073 0.002492371004269245 0.002936558676477574 0.004654692336647059 0.01020519900870909 0.00159070070096945 0.0004276697262532991 0.0005801995616678823 0.002308290429954951 0.004357104639009179 0.009208614170942653 0.04749353652498733 0.001038189171284287 0.00181159397666697 0.0005911053927665222 0.0009128355237812968 0.0006220810141854827 0.0006185898370709708 0.000213640959440653 0.0009418367620241952 0.0004179858011923443 0.0004730796511722701 0.000324286068398294 0.0001326509686094823 9.365046889797668e-05 5.514383798299605e-05 0.0001400815439538405 0.0003490561487495825 0.0005025590232250465 0.0007748679383325907 0.0004597140249416043 0.0006337367837616625 0.0009011595715158194 0.0008097191425875394 0.0011882987496179 0.001089855951434515 0.0003115170563887659 0.0004722506751875244 0.0003843361597972716 0.001082251153739833 0.0002112657191517542 0.001630015012199948 0.0003891924504593192 0.0002554788726563118 0.0003556583939570146 0.0005562480984764306 0.0001997292519906324 0.0004319868677207239 0.0005143188689196165 0.002724393082754517 0.0007490561914025307 0.0005232828118622024 0.003325195623595789 0.0007749574583471031 0.0005320728356181803 0.0005913354059288167 0.0004120314653732748 0.0008128678851733184 0.0001609718219555134 0.0004414588036212308 0.001155449557046495 0.001067283204832847 0.001417861155395883 0.001748220851990112 0.004672331867979551 0.002568433495707012 + 0.0001348274532162463 0.000250119062272347 0.0001117608877621024 0.0001079565108312863 0.0001156102963051353 9.058708161546747e-05 0.0001074735430677265 5.357388610605085e-05 0.0001312829448920638 9.646469253254963e-05 0.0001340453659963714 0.0001624730177667288 0.0001773645863885065 0.0001535097126197371 0.0003712274130016624 0.0002430175354479758 0.000830218468934163 8.423154369552321e-05 4.939590725427934e-05 0.0002201038897595708 9.18459023822038e-05 6.278932240988411e-05 3.069565914870509e-05 6.719046302805509e-05 2.286241881677142e-05 2.731773165720597e-05 2.588180730356271e-05 0.0001343777574334126 0.0001022072559209164 0.0001321096309041536 9.365716883280584e-05 0.0003424435744356913 0.0004371827274258777 0.0002429196223712182 0.000441779431179512 0.0002899448536339833 0.0003304974917526238 0.0005120503490232409 0.0009448942154151041 0.0001923727672767939 6.070701650884303e-05 7.778213987919003e-05 0.0002804914031955263 0.0004841307271945539 0.001115670615480902 0.008834924156335688 0.0001364028685326701 0.0002413584995935025 8.292934249531925e-05 0.0001200448939719934 8.533032962354525e-05 8.431928952745693e-05 3.417740109412648e-05 0.0001599837373049695 6.554326431995605e-05 7.246988487707995e-05 4.826330888363373e-05 2.175304508966747e-05 1.638862383401829e-05 1.070570124284131e-05 2.443577147204223e-05 5.023444262164389e-05 6.915634384796476e-05 0.0001002042779418844 7.228083078913983e-05 8.469556031442949e-05 0.0001157078806919287 0.0001035417487358359 0.0001415721798565528 0.0001300702777342622 4.4114640928683e-05 6.148631447899788e-05 5.292730330097584e-05 0.0001312849220838075 3.277348416119708e-05 0.0001977155893122529 5.545240505000493e-05 3.866782911998712e-05 5.136658377580261e-05 7.713777576512371e-05 3.177398508924512e-05 6.136588416083555e-05 7.395410489863252e-05 0.0003019578898992847 0.0001030262294712259 7.506557810188497e-05 0.0003750185291728769 0.0001035519064842561 7.432438504650918e-05 8.116194462104431e-05 5.832719939746767e-05 0.0001053339718453117 2.527681392905379e-05 5.947583674981161e-05 0.0001377261436488197 0.0001282621709108867 0.0001739626314574139 0.0002106690949332801 0.0005025711608226402 0.0002989354928821797 + 1.218928150237275e-05 1.624758186835606e-05 9.689506697441175e-06 9.724180884518319e-06 1.024181101172417e-05 8.759618793874324e-06 1.04193826757637e-05 6.13513208236327e-06 1.114938756074935e-05 8.853218474769164e-06 9.188296473894297e-06 1.263681797780691e-05 1.278338121935008e-05 1.226358111239279e-05 2.273434050259482e-05 1.921266688675871e-05 4.033814005133252e-05 7.669494396012055e-06 5.82652254266236e-06 1.327981588872262e-05 8.065105895127544e-06 5.959351511819477e-06 3.824946443131694e-06 5.409168867487324e-06 3.325906888562713e-06 3.499232839487831e-06 3.438877463679546e-06 8.505713687156913e-06 7.643208629559695e-06 9.023114060369153e-06 8.566505567131344e-06 2.085463595768999e-05 2.274844379357432e-05 1.324814206071778e-05 2.375943328303265e-05 1.692333884761865e-05 1.901919262792262e-05 2.290512936298228e-05 4.485204645376939e-05 1.438831765909754e-05 5.489046792206409e-06 6.265792148241189e-06 1.689148098904525e-05 2.69178336775866e-05 4.562156149567898e-05 0.0001957024787042627 1.127529665545524e-05 1.273587918149133e-05 7.424731922611727e-06 8.897188873646655e-06 7.473580692973769e-06 7.390266567597337e-06 3.947975752538468e-06 8.375011315564507e-06 5.244796046355304e-06 5.494774395486957e-06 4.57198498793332e-06 3.143731319710241e-06 2.762553023671899e-06 2.314361353228378e-06 3.250452571990081e-06 5.033854957758876e-06 6.320766345879747e-06 8.344216247735403e-06 5.513336592599671e-06 6.465510757891479e-06 9.519519814205069e-06 8.496657692091958e-06 9.511547034435353e-06 8.389399297925593e-06 4.560311552381791e-06 5.281745529828186e-06 5.033339277815685e-06 9.654745653620012e-06 3.945729119436692e-06 1.188924667161473e-05 5.220666931649021e-06 4.261400370353385e-06 5.129305534978812e-06 7.029637696831514e-06 3.906434853817586e-06 5.799821941820937e-06 7.250280372517182e-06 1.87201796819636e-05 9.353413762624996e-06 7.198072008662848e-06 2.400643839806094e-05 9.07325973287243e-06 7.214725116000409e-06 7.673890152659624e-06 6.030160420777975e-06 9.01892379090441e-06 3.512401434591084e-06 5.324672159190413e-06 8.838187703474887e-06 8.629870933418715e-06 1.193659571896433e-05 1.345779319095186e-05 2.437301271740466e-05 1.602676869794095e-05 + 1.518571984604478e-06 1.526743105273454e-06 1.416384279195881e-06 1.436093654660908e-06 1.446824740014563e-06 1.434268341427014e-06 1.506227619074707e-06 1.362393007298124e-06 1.461173994243836e-06 1.411609375168155e-06 1.337104734489003e-06 1.476450478321567e-06 1.459915107915322e-06 1.473492444503677e-06 1.646883362127483e-06 1.677836960922718e-06 1.807895714023289e-06 1.341359206818993e-06 1.347431503262442e-06 1.430038846450543e-06 1.34817109298524e-06 1.289341803101252e-06 1.224900003649054e-06 1.241958745623606e-06 1.204494324724692e-06 1.201750642110255e-06 1.202129766397775e-06 1.314064910218349e-06 1.308302262970074e-06 1.338131205841364e-06 1.383427608914189e-06 1.605488449740733e-06 1.56035928888798e-06 1.408488156329213e-06 1.598736583119376e-06 1.505168977899984e-06 1.546298399546231e-06 1.508318391074681e-06 1.917948640794975e-06 1.518978944403671e-06 1.261649646977503e-06 1.273796186751497e-06 1.511565491441047e-06 1.664527987443876e-06 1.734274331255392e-06 2.381478060087261e-06 1.450089159860113e-06 1.39205736182646e-06 1.328562211355688e-06 1.347379248173297e-06 1.326104701604436e-06 1.324206650110682e-06 1.219498621196635e-06 1.282061209195717e-06 1.231872982287996e-06 1.235965417123452e-06 1.22666088486767e-06 1.186202155167848e-06 1.168888061897633e-06 1.156427302362317e-06 1.184608770188333e-06 1.26108582421125e-06 1.298726147069829e-06 1.346379022493238e-06 1.237293002276374e-06 1.275077629259158e-06 1.383966534262981e-06 1.347794217565479e-06 1.346551883329994e-06 1.311225886979628e-06 1.242632933440291e-06 1.249224112598313e-06 1.25313675880534e-06 1.364956723648447e-06 1.228086329518874e-06 1.395250610158882e-06 1.258197631415214e-06 1.23412674923884e-06 1.264789514010545e-06 1.32357657989246e-06 1.228406723896569e-06 1.28320236214563e-06 1.359022224534101e-06 1.570080748081182e-06 1.414153285139719e-06 1.34524000827696e-06 1.69687001871921e-06 1.390884591501163e-06 1.360960702356806e-06 1.373896225231874e-06 1.324349938158775e-06 1.389276945928941e-06 1.215334847870508e-06 1.256456343412538e-06 1.322560507333037e-06 1.32250698925418e-06 1.423249241128133e-06 1.448756538735552e-06 1.556719549711261e-06 1.459400813530465e-06 + 1.15064444017321e-06 1.160502819175235e-06 1.135815722363986e-06 1.13735887907751e-06 1.139350871426359e-06 1.134904806576742e-06 1.146060967016638e-06 1.124107370742422e-06 1.142216248695149e-06 1.133522872009962e-06 1.131608883042645e-06 1.149362887531424e-06 1.151267049692706e-06 1.15139639866868e-06 1.188393778051022e-06 1.185985816221091e-06 1.232449807986313e-06 1.127617505147782e-06 1.123311733408627e-06 1.157375926652549e-06 1.128447618015116e-06 1.116057312344765e-06 1.102311543377255e-06 1.106972053577238e-06 1.09756696531349e-06 1.095955688867889e-06 1.096398278832567e-06 1.132685284233048e-06 1.126323368794147e-06 1.136555091818536e-06 1.132209717980004e-06 1.183210361688225e-06 1.19327753012044e-06 1.165144592363276e-06 1.194366907597555e-06 1.172908671520645e-06 1.178399603674052e-06 1.191844560821664e-06 1.260540280156874e-06 1.158454299599043e-06 1.111372057494009e-06 1.116156532532386e-06 1.175469023451114e-06 1.204300890123022e-06 1.229415470760387e-06 1.329133400673754e-06 1.147745884111373e-06 1.164929294361627e-06 1.125750872077447e-06 1.136183156447146e-06 1.125116590117159e-06 1.123903761168776e-06 1.100553195243492e-06 1.130593126674739e-06 1.103330760088284e-06 1.104947955354874e-06 1.101231589473173e-06 1.091516026008321e-06 1.086483962353668e-06 1.083069747664922e-06 1.088471393018153e-06 1.109890916950462e-06 1.117149828644415e-06 1.127820695501214e-06 1.105932419420697e-06 1.117744240275442e-06 1.135643628913385e-06 1.128626109903053e-06 1.136403525947571e-06 1.129787676745764e-06 1.10591767565893e-06 1.10740509740026e-06 1.108251339587696e-06 1.136027478310098e-06 1.103021460835407e-06 1.152748094312983e-06 1.109905927165755e-06 1.104312218558334e-06 1.110674773485698e-06 1.121934598558028e-06 1.103204823493797e-06 1.11463264929057e-06 1.126529806327881e-06 1.172634704005304e-06 1.136403810164666e-06 1.125068386897965e-06 1.196296349093018e-06 1.133269456943253e-06 1.125896091025425e-06 1.127818549662152e-06 1.119486412903825e-06 1.131518715169477e-06 1.100052926972239e-06 1.109197896198566e-06 1.132965223860083e-06 1.131401582199487e-06 1.150426491847156e-06 1.158223376762635e-06 1.195409826237892e-06 1.172235574387059e-06 + 1.119553289186115e-06 1.123182187257044e-06 1.108882102585085e-06 1.109190208126165e-06 1.110813300897462e-06 1.105911039189778e-06 1.113705124566877e-06 1.096197280503475e-06 1.113012743303443e-06 1.106357089497578e-06 1.101218629173673e-06 1.117491933655401e-06 1.117073459511175e-06 1.119085135670161e-06 1.140587702508356e-06 1.144218893855964e-06 1.161321534937088e-06 1.104046846833739e-06 1.097745039757569e-06 1.114221024778317e-06 1.104230136661499e-06 1.095371121806465e-06 1.080305985112773e-06 1.091630828398138e-06 1.073404433782343e-06 1.077179611286283e-06 1.076422606161032e-06 1.100926766639532e-06 1.099793923486914e-06 1.103855922224284e-06 1.107407520350989e-06 1.136041525739984e-06 1.132368428358177e-06 1.114433306526053e-06 1.13694090764227e-06 1.124235215144154e-06 1.129170598801466e-06 1.125931515133516e-06 1.175223765415012e-06 1.123559314919476e-06 1.092431944016425e-06 1.095320694588509e-06 1.125970475968074e-06 1.145720091244584e-06 1.150367646474137e-06 1.187572149063953e-06 1.116853733051926e-06 1.113734926505572e-06 1.102396629093505e-06 1.105260551526044e-06 1.101659414359801e-06 1.100923434194101e-06 1.083247063604631e-06 1.098951155853456e-06 1.089498702810943e-06 1.090124612801446e-06 1.086597585242544e-06 1.073159921816114e-06 1.06763488361139e-06 1.062653510075506e-06 1.074168054060465e-06 1.088920662084547e-06 1.09564478378843e-06 1.103126791690556e-06 1.090749467635987e-06 1.096042534953767e-06 1.108218164347363e-06 1.103336622065854e-06 1.103536227731183e-06 1.09958033078783e-06 1.084179331201085e-06 1.087893650719707e-06 1.087459381210465e-06 1.105584182425901e-06 1.081473527619892e-06 1.110532167558631e-06 1.090517642410305e-06 1.084257398531463e-06 1.089816109356434e-06 1.099823339956174e-06 1.082013003639304e-06 1.093891992098861e-06 1.102426168131387e-06 1.130226269907553e-06 1.109941120347457e-06 1.102178448064706e-06 1.147184619298969e-06 1.107787419130091e-06 1.100976632528727e-06 1.102300842603654e-06 1.095193624678359e-06 1.105864598116568e-06 1.074978726478548e-06 1.089150956090634e-06 1.100970855816286e-06 1.100837067724569e-06 1.113652984940927e-06 1.116908901366287e-06 1.131370385820674e-06 1.118817596790223e-06 + 1.124179476619247e-06 1.125053273653975e-06 1.109622871808824e-06 1.110461425923859e-06 1.112195704422447e-06 1.108181635345318e-06 1.120269857324274e-06 1.099658405223636e-06 1.11443475248052e-06 1.107282912471419e-06 1.103193142171222e-06 1.119854317721547e-06 1.119976509755816e-06 1.121887306609892e-06 1.146124734674459e-06 1.158026622150032e-06 1.162573230573116e-06 1.106230232750249e-06 1.100611418891617e-06 1.117232855563088e-06 1.106289921892767e-06 1.095314800636515e-06 1.079809663906417e-06 1.083199137497104e-06 1.074577838267032e-06 1.071900200599885e-06 1.072522273659615e-06 1.099004258264813e-06 1.099809100679749e-06 1.10527432894969e-06 1.108648870484785e-06 1.137042687560097e-06 1.130572345076075e-06 1.114209654318188e-06 1.133602253844401e-06 1.12511975913776e-06 1.128592252541694e-06 1.125246530619961e-06 1.186605210534708e-06 1.126431421027974e-06 1.089369519036154e-06 1.092175466510525e-06 1.126674384011039e-06 1.14258057415384e-06 1.152951859317852e-06 1.215528566689272e-06 1.119818852757248e-06 1.111371009443474e-06 1.104318084088618e-06 1.108015286632735e-06 1.103341697117344e-06 1.102238289973911e-06 1.078168736512453e-06 1.087712398373242e-06 1.08045685820457e-06 1.081030227112478e-06 1.078582222646673e-06 1.06713916636636e-06 1.063282525137765e-06 1.061637846078156e-06 1.066788072989766e-06 1.088129739201804e-06 1.095815733265226e-06 1.104867621393169e-06 1.081670585989514e-06 1.092165383909105e-06 1.11102221467263e-06 1.105336394857659e-06 1.105792435396324e-06 1.098204521099433e-06 1.083005699342721e-06 1.084066383327809e-06 1.085610065842957e-06 1.109097475193721e-06 1.080604548064912e-06 1.112987678908439e-06 1.088036690077843e-06 1.082090019366433e-06 1.089141928645176e-06 1.100692077926624e-06 1.081140663217184e-06 1.093535342278074e-06 1.103512694555775e-06 1.131566676804141e-06 1.111134288578342e-06 1.103290880877239e-06 1.161427029217066e-06 1.108824854156865e-06 1.101816152981883e-06 1.102989273249477e-06 1.096427396873878e-06 1.106230769210015e-06 1.07725595910324e-06 1.086462233956809e-06 1.100644595908307e-06 1.101209853970886e-06 1.117355377999729e-06 1.119930225002008e-06 1.129894169338286e-06 1.119885411071664e-06 + 1.215100692064652e-06 1.220675059698806e-06 1.178801326773282e-06 1.182051619252888e-06 1.185258938107836e-06 1.178525579348388e-06 1.206493266181496e-06 1.158663010869532e-06 1.188953291375583e-06 1.175726140445477e-06 1.177119131057225e-06 1.201468329270483e-06 1.208012307074569e-06 1.209884704422848e-06 1.29096480527835e-06 1.30347031657152e-06 1.408876782349466e-06 1.177237738403392e-06 1.163866304665362e-06 1.224682815603728e-06 1.176242175660036e-06 1.159290579977323e-06 1.132783637558532e-06 1.139963199392469e-06 1.118179980608147e-06 1.113914976258457e-06 1.115617486391329e-06 1.187003839220324e-06 1.175395670571788e-06 1.193538178512199e-06 1.178289473102723e-06 1.273809937529791e-06 1.290811068699327e-06 1.243712654641627e-06 1.290763510297666e-06 1.251314923678137e-06 1.259577807388723e-06 1.290996607394845e-06 1.444240204762082e-06 1.222403454903542e-06 1.151292380541236e-06 1.159265529793174e-06 1.259088314498058e-06 1.317849950055461e-06 1.458398282139228e-06 1.759513887478192e-06 1.204839332302754e-06 1.246030770118978e-06 1.174749952426168e-06 1.193426774293016e-06 1.17272971777993e-06 1.170010129669663e-06 1.128465900279707e-06 1.179231158943139e-06 1.132597294173365e-06 1.135242367666933e-06 1.126897913650282e-06 1.101777129974835e-06 1.091885749815447e-06 1.085174744730466e-06 1.101068704656427e-06 1.147719849825535e-06 1.15896163066509e-06 1.172912291735884e-06 1.138137214695689e-06 1.162440568691636e-06 1.184103165741135e-06 1.174052492558531e-06 1.188670189833374e-06 1.179252670624464e-06 1.1389494005698e-06 1.139959749707486e-06 1.143287263971615e-06 1.186193287594506e-06 1.134556647741647e-06 1.219009185149389e-06 1.148145724272354e-06 1.137417861230006e-06 1.149383010101701e-06 1.16624934776155e-06 1.135660177453701e-06 1.156304353600035e-06 1.169855270433118e-06 1.249208846587635e-06 1.18252692260512e-06 1.169970349934601e-06 1.31758033816709e-06 1.177729771484337e-06 1.166295746202195e-06 1.167951211300533e-06 1.157614619273772e-06 1.172355482026433e-06 1.124073605751619e-06 1.144767182381656e-06 1.184402435683296e-06 1.181423648688451e-06 1.213004171773946e-06 1.226740909743285e-06 1.29475785470845e-06 1.250332726243641e-06 + 1.382634501112534e-06 1.410656224720697e-06 1.321291762224064e-06 1.318659911930808e-06 1.328090476704347e-06 1.299207596616725e-06 1.33921408007609e-06 1.259885081594803e-06 1.341349531003289e-06 1.304021850501158e-06 1.330056221604536e-06 1.3804298504283e-06 1.389372421556345e-06 1.396649782492432e-06 1.529437557934443e-06 1.548977609289182e-06 1.668092505013874e-06 1.331988098485226e-06 1.274405441620274e-06 1.388874025565201e-06 1.329830912055741e-06 1.289075804322692e-06 1.219252574458096e-06 1.277755909967482e-06 1.19023754052705e-06 1.193390836817798e-06 1.192804006677761e-06 1.335965905013836e-06 1.327361367486901e-06 1.347761585890339e-06 1.32693032384168e-06 1.490812870486025e-06 1.478581882707886e-06 1.393542367722489e-06 1.494121091738521e-06 1.432698169878677e-06 1.452029284365608e-06 1.44752507225121e-06 1.822752224711621e-06 1.417612569554194e-06 1.282792847945302e-06 1.303337359814805e-06 1.44394997825259e-06 1.545754628295981e-06 1.614102586700028e-06 2.09973218545656e-06 1.387840821820419e-06 1.390813793022971e-06 1.327357292524312e-06 1.352790910402746e-06 1.323160889299402e-06 1.316238332549347e-06 1.229469830832386e-06 1.315621396713595e-06 1.263327511935586e-06 1.266842541980395e-06 1.243981046172848e-06 1.173925312514257e-06 1.159185444521427e-06 1.145189500562083e-06 1.182605508631696e-06 1.258828401518031e-06 1.285528739458641e-06 1.322889239929737e-06 1.271149763226731e-06 1.309366343349438e-06 1.347811352303552e-06 1.326129414280786e-06 1.343881201876229e-06 1.328445833337355e-06 1.235068893379321e-06 1.254573277265081e-06 1.251910660471367e-06 1.347820187902471e-06 1.224588586978825e-06 1.374961630773441e-06 1.270196698044401e-06 1.237672684339941e-06 1.263030963372103e-06 1.302230888455824e-06 1.22831665194667e-06 1.281763680083259e-06 1.297267598232565e-06 1.45322839983919e-06 1.332383334329279e-06 1.30458747804596e-06 1.584546232891171e-06 1.32617761749998e-06 1.283925250561424e-06 1.287230418256513e-06 1.262105357113796e-06 1.307549027274035e-06 1.198026595261581e-06 1.261681504161061e-06 1.334679353703905e-06 1.33309083594213e-06 1.384677531746092e-06 1.399498504639496e-06 1.47489604884754e-06 1.411860878874904e-06 + 1.470861388241929e-06 1.593988940840063e-06 1.414421888057404e-06 1.40040650364881e-06 1.414646249031648e-06 1.358525921091314e-06 1.387347026593488e-06 1.304009956015761e-06 1.435512075431689e-06 1.381068003070141e-06 1.482146245734839e-06 1.5108969364519e-06 1.570256099370226e-06 1.557163001209005e-06 1.851573447453347e-06 1.669549503091616e-06 2.620376033490857e-06 1.45920630245655e-06 1.33244106592656e-06 1.701253701469341e-06 1.452066314300282e-06 1.396760321625834e-06 1.279705355017313e-06 1.438749045234999e-06 1.229289864568273e-06 1.258014030725008e-06 1.250582087664043e-06 1.573127228482463e-06 1.494246792077547e-06 1.578777084176863e-06 1.432859011885057e-06 1.833762931724436e-06 2.072884003112563e-06 1.833242391668932e-06 2.012981767052224e-06 1.807552848731575e-06 1.825710359781851e-06 2.172869553618284e-06 2.469086528122943e-06 1.589377525590407e-06 1.40071553644816e-06 1.443042908277903e-06 1.848327064735145e-06 2.121173922731145e-06 3.388671978576951e-06 1.036695455880476e-05 1.544987258128572e-06 1.866248185322661e-06 1.45677377361153e-06 1.565001182868286e-06 1.449295893962699e-06 1.435307488861781e-06 1.32109290618132e-06 1.685112327010074e-06 1.433018361751692e-06 1.446372309032995e-06 1.358709731391627e-06 1.230811690788869e-06 1.205567741635605e-06 1.178589400296914e-06 1.263939125806246e-06 1.348911794707419e-06 1.385875627590849e-06 1.439644677247998e-06 1.461265117796984e-06 1.469404768528193e-06 1.477628742918569e-06 1.446097208201991e-06 1.543709792883874e-06 1.526351368852374e-06 1.309090691847814e-06 1.354540643205837e-06 1.342088495448479e-06 1.509758746465195e-06 1.290665387898571e-06 1.690763106410031e-06 1.376983735923432e-06 1.320272691174296e-06 1.355585119711122e-06 1.407351014393043e-06 1.297766175412107e-06 1.385518370256023e-06 1.382128093752044e-06 1.718813489759441e-06 1.433327902589099e-06 1.401934444089648e-06 1.815824266060417e-06 1.430378475220095e-06 1.356076943181961e-06 1.359839259862383e-06 1.321330287851197e-06 1.397942142489228e-06 1.236708953911148e-06 1.362314492325822e-06 1.543931475112004e-06 1.522389432295768e-06 1.630206888592056e-06 1.696372127213408e-06 2.135263631686257e-06 1.844995420441364e-06 + 1.321832005629631e-06 1.421994269890092e-06 1.295490505981434e-06 1.288184392933545e-06 1.295079599117344e-06 1.264644964749095e-06 1.275189120519826e-06 1.23115491135195e-06 1.305705623622089e-06 1.27884968037506e-06 1.363075313065565e-06 1.363943169963022e-06 1.410189899075931e-06 1.397052798779441e-06 1.525215907349775e-06 1.429764660443311e-06 1.771322457599922e-06 1.333724451768603e-06 1.251896691201182e-06 1.477320701326335e-06 1.328036614012262e-06 1.291717619977817e-06 1.226495374595515e-06 1.334209212444648e-06 1.18976105056845e-06 1.214838960095221e-06 1.209899764376132e-06 1.414116518105857e-06 1.370580147153078e-06 1.419517168699258e-06 1.308133821709134e-06 1.522339237780557e-06 1.621414170926982e-06 1.532268367299139e-06 1.596388235824975e-06 1.518426500979331e-06 1.523578184503549e-06 1.656003284722374e-06 1.726371987587072e-06 1.4156632381912e-06 1.299461697357174e-06 1.335469555385771e-06 1.533930118924332e-06 1.631634630072654e-06 1.939140828355335e-06 3.308991392003691e-06 1.389762376291515e-06 1.544540159770236e-06 1.33476050834247e-06 1.412233231690152e-06 1.329813935413426e-06 1.318061912058965e-06 1.2497957619928e-06 1.450536654346024e-06 1.331185046637984e-06 1.338551648188968e-06 1.274393824246545e-06 1.197531531715867e-06 1.175491519234129e-06 1.146672531149306e-06 1.215427609224662e-06 1.264000744072291e-06 1.283756709824502e-06 1.319896739460091e-06 1.346626643083937e-06 1.35418259361586e-06 1.347011842511847e-06 1.32602654900893e-06 1.400746675983555e-06 1.389550128294559e-06 1.242365684106517e-06 1.266520342824151e-06 1.259441447132303e-06 1.378084100167598e-06 1.232962187458497e-06 1.473189179534984e-06 1.281083729764987e-06 1.248955079802272e-06 1.267723540365751e-06 1.295816915103387e-06 1.237134544140872e-06 1.284701383497122e-06 1.281034933242609e-06 1.479832846484896e-06 1.306662419153781e-06 1.291682245607717e-06 1.507527986888135e-06 1.306232675801766e-06 1.266885860218281e-06 1.268514381536079e-06 1.247696104655915e-06 1.287077921574564e-06 1.194638414858673e-06 1.271147624493096e-06 1.399894465237139e-06 1.388192707452163e-06 1.44499981402646e-06 1.474790195743481e-06 1.644193055483356e-06 1.53667025415416e-06 + 1.143628026056831e-06 1.15135227929386e-06 1.136228902964831e-06 1.135099026328135e-06 1.136796825562669e-06 1.130821956962791e-06 1.134061434981959e-06 1.12420552511594e-06 1.139333434707623e-06 1.132658468350201e-06 1.140017801048998e-06 1.146182377453897e-06 1.148720649268853e-06 1.148784431137528e-06 1.168242791393936e-06 1.158239843590536e-06 1.205336367604559e-06 1.139399213201386e-06 1.127062866146389e-06 1.153979965806684e-06 1.138939985878551e-06 1.131251796238075e-06 1.117152052643178e-06 1.132511766144262e-06 1.109339990534863e-06 1.113538900199273e-06 1.112810778636231e-06 1.143622512245202e-06 1.139975370989532e-06 1.145221013132414e-06 1.137657818617299e-06 1.166236623717509e-06 1.176626662768854e-06 1.160242989683979e-06 1.174769950651466e-06 1.16177332287748e-06 1.163845734453162e-06 1.179038221721385e-06 1.198697621163092e-06 1.151492387663211e-06 1.130780972857792e-06 1.13522831313162e-06 1.164234554096311e-06 1.181864487165285e-06 1.232071991985606e-06 1.382363194579739e-06 1.147665994238878e-06 1.161586466125186e-06 1.138802215194801e-06 1.145208202046888e-06 1.138054285476642e-06 1.136647814092839e-06 1.120615873873021e-06 1.145904022337163e-06 1.131046172275774e-06 1.131838637036253e-06 1.1248399687247e-06 1.109087676809395e-06 1.10253708385244e-06 1.09357736732818e-06 1.111083761884402e-06 1.124970797405922e-06 1.130280104177928e-06 1.137720353483473e-06 1.132820059979167e-06 1.13683652713803e-06 1.1419308769689e-06 1.138383275645083e-06 1.14356946312455e-06 1.141056131359619e-06 1.120285688216427e-06 1.124722160739111e-06 1.123706582006889e-06 1.142890802441343e-06 1.118310347436591e-06 1.152429568662683e-06 1.127836057435161e-06 1.121147494842489e-06 1.125822649328256e-06 1.133508686024243e-06 1.119075456301744e-06 1.12972940158329e-06 1.131853466063149e-06 1.159126238547969e-06 1.138210659945571e-06 1.133535214137282e-06 1.166715662748175e-06 1.137573541143411e-06 1.129325710280682e-06 1.129889241724413e-06 1.125379725408493e-06 1.133946739173552e-06 1.111122969632561e-06 1.125947960645135e-06 1.142460824610225e-06 1.141564169415688e-06 1.150534718163954e-06 1.154486827914525e-06 1.179240761928213e-06 1.162077648331206e-06 + 1.102446105960553e-06 1.11621059772915e-06 1.094704373372224e-06 1.094655829092517e-06 1.096103005693294e-06 1.090831617034382e-06 1.094370375653853e-06 1.081604636965494e-06 1.098126858778414e-06 1.092103190103444e-06 1.095760481462094e-06 1.107448412085432e-06 1.111831192446289e-06 1.11175822326004e-06 1.12964260168269e-06 1.120443750224354e-06 1.142923212071878e-06 1.095416765295454e-06 1.084742264012561e-06 1.112108805045864e-06 1.094985808691717e-06 1.085339324191636e-06 1.07181273989454e-06 1.085236270625956e-06 1.065792176291325e-06 1.068022115191525e-06 1.067541859356425e-06 1.096681572221314e-06 1.094809256585449e-06 1.100290315747543e-06 1.095113589144603e-06 1.128037890651967e-06 1.127302862613533e-06 1.110747168908688e-06 1.1297661419718e-06 1.121358010891527e-06 1.124621451964458e-06 1.12083888836878e-06 1.142816277166503e-06 1.115770800197424e-06 1.084000231799109e-06 1.088900518197988e-06 1.122870090242145e-06 1.134176496719874e-06 1.146849311517428e-06 1.197570339783738e-06 1.109791371689539e-06 1.108979660102705e-06 1.094247435773354e-06 1.101632163269528e-06 1.09322120245281e-06 1.091503182948372e-06 1.074007276002931e-06 1.094181214966738e-06 1.084237236881336e-06 1.084926644523421e-06 1.077265217475087e-06 1.065042738446209e-06 1.061779570932231e-06 1.057731722653443e-06 1.067453816006037e-06 1.079320636421244e-06 1.08471125770393e-06 1.09330018460696e-06 1.085719290472298e-06 1.090313460849757e-06 1.099976895346799e-06 1.094127370038223e-06 1.099563277762172e-06 1.095077223567387e-06 1.074860264793642e-06 1.078117378483512e-06 1.077831555562625e-06 1.100523974173484e-06 1.072870169593898e-06 1.107941002942425e-06 1.081298830030164e-06 1.07528280679503e-06 1.080135650255443e-06 1.088606182975127e-06 1.073570421894487e-06 1.083795492462514e-06 1.089745445881363e-06 1.123577348494109e-06 1.096554839818964e-06 1.090234306388993e-06 1.129458848225795e-06 1.095038548726279e-06 1.087457007997727e-06 1.08841993551323e-06 1.081909090316913e-06 1.091874878511589e-06 1.06721897452644e-06 1.079550045801625e-06 1.096803373457078e-06 1.096466071714985e-06 1.111085502714104e-06 1.114783643174633e-06 1.12647865080362e-06 1.116018761848636e-06 + 1.083585686956212e-06 1.088921010250488e-06 1.075654168403162e-06 1.075407581652144e-06 1.076956877454904e-06 1.071938655172744e-06 1.075685545970373e-06 1.065187859694561e-06 1.079161279449181e-06 1.072920127853649e-06 1.07143539196386e-06 1.084117677407903e-06 1.08498083051245e-06 1.086067246802713e-06 1.105300365011885e-06 1.099417096028787e-06 1.13864177819778e-06 1.073377209337423e-06 1.066866365917463e-06 1.085679080858881e-06 1.073389988448525e-06 1.065163541369429e-06 1.053788047045146e-06 1.060271639374832e-06 1.048496415023692e-06 1.049444719569692e-06 1.049274324316229e-06 1.072232059584621e-06 1.070184396212426e-06 1.075307427100824e-06 1.075319833176991e-06 1.102606317360255e-06 1.108026728147138e-06 1.088393883463823e-06 1.109105143726197e-06 1.094767448250877e-06 1.098246066533193e-06 1.105380956545332e-06 1.141957593375764e-06 1.089330346815132e-06 1.062215705616154e-06 1.064871415934476e-06 1.097076886225068e-06 1.117985904741658e-06 1.139064833566295e-06 1.195596466274651e-06 1.084451069388592e-06 1.088245856095682e-06 1.071921310824564e-06 1.076325503390763e-06 1.071155008247615e-06 1.070264147529087e-06 1.054121952392961e-06 1.070586492346592e-06 1.05910618941607e-06 1.059753259369245e-06 1.05564441810202e-06 1.046744216637308e-06 1.043932982724982e-06 1.040155453324587e-06 1.048482225485259e-06 1.060026200150332e-06 1.065127229082918e-06 1.072202998386729e-06 1.060491740645375e-06 1.065620452322946e-06 1.077125151738301e-06 1.072533407864285e-06 1.074464250905294e-06 1.070379667567067e-06 1.05638190461832e-06 1.058063503478479e-06 1.058562773437188e-06 1.075636433256477e-06 1.054543112388728e-06 1.082669289331761e-06 1.060822750531543e-06 1.056098373197756e-06 1.0607202263202e-06 1.068808277437938e-06 1.054985512283224e-06 1.063870300299641e-06 1.070443822470679e-06 1.096043099835242e-06 1.077095113544146e-06 1.070679381598438e-06 1.105917402099976e-06 1.075471168121567e-06 1.068675842930134e-06 1.069580207513354e-06 1.064176856857557e-06 1.07291509721108e-06 1.05039066511381e-06 1.059582558582406e-06 1.072051098560678e-06 1.071653208839507e-06 1.084020091468574e-06 1.087518899822726e-06 1.108951874329023e-06 1.09218751376261e-06 + 1.061210344488472e-06 1.061670431568018e-06 1.056587251468954e-06 1.057421556538429e-06 1.057880012922396e-06 1.056934479493066e-06 1.059267248137985e-06 1.053707549658611e-06 1.058413076293618e-06 1.056384775210972e-06 1.053530056083218e-06 1.059520947421788e-06 1.058806947895619e-06 1.059958414373341e-06 1.068856844810284e-06 1.069965547273455e-06 1.077425572759694e-06 1.054222494190071e-06 1.053660449557015e-06 1.057960517414358e-06 1.054216813400899e-06 1.051219765457745e-06 1.04468803385771e-06 1.048703275330354e-06 1.041335281115607e-06 1.041297402082364e-06 1.041243280042181e-06 1.053439703468939e-06 1.052960019620741e-06 1.054615825779592e-06 1.055570507446646e-06 1.066680532346709e-06 1.064698155417432e-06 1.058455621816279e-06 1.066234130320254e-06 1.061230204157937e-06 1.063128273415259e-06 1.063108580723338e-06 1.081064755936723e-06 1.062092238157675e-06 1.049608226111332e-06 1.050858305262636e-06 1.061938370128246e-06 1.070301832939435e-06 1.074035992587596e-06 1.096933900157637e-06 1.058940904741235e-06 1.058291326572203e-06 1.053708293952127e-06 1.054999872351914e-06 1.05343789869039e-06 1.053128237060719e-06 1.044542386807734e-06 1.052179687377475e-06 1.048020852323361e-06 1.048309282936088e-06 1.045806115484993e-06 1.039359190713185e-06 1.037373763779215e-06 1.035617572142655e-06 1.040113154715527e-06 1.048753524912627e-06 1.051292393583481e-06 1.053774326464918e-06 1.048600140052258e-06 1.051097228810249e-06 1.055538000116485e-06 1.053873120326898e-06 1.05445969467155e-06 1.052905325593656e-06 1.046532105419828e-06 1.047179807756038e-06 1.047762140160557e-06 1.054875774286756e-06 1.045172322022836e-06 1.056958488732107e-06 1.048902518618888e-06 1.046065325027712e-06 1.04913522136485e-06 1.052723650474263e-06 1.045436780700015e-06 1.050662820745174e-06 1.054349461071524e-06 1.064449662635525e-06 1.056868093485264e-06 1.053795880778807e-06 1.071263675100909e-06 1.055653548576174e-06 1.054139175948876e-06 1.054693470337043e-06 1.052018504310581e-06 1.055261620308556e-06 1.042869982370576e-06 1.048208062570666e-06 1.053523696725733e-06 1.053453502208868e-06 1.057577271978971e-06 1.058710314083555e-06 1.064577652698517e-06 1.059736913333609e-06 + 1.101597913333308e-06 1.107998429006329e-06 1.086594579646771e-06 1.089326730152607e-06 1.090970243922129e-06 1.088622667566597e-06 1.097462913435265e-06 1.07897348300412e-06 1.093072981461773e-06 1.085664422362242e-06 1.081122007917656e-06 1.098231678042794e-06 1.098666395193959e-06 1.100202414505702e-06 1.126857739564002e-06 1.122918249052418e-06 1.143032852368719e-06 1.080235232819859e-06 1.07770031831933e-06 1.097849093412151e-06 1.080329795399848e-06 1.072334665508379e-06 1.063079647423137e-06 1.06968022350884e-06 1.059324929997274e-06 1.059099666633756e-06 1.059082556764679e-06 1.08119019159858e-06 1.078997364345469e-06 1.084786930505288e-06 1.08314496571893e-06 1.121890637278966e-06 1.115536997886579e-06 1.096825817725744e-06 1.120326302839203e-06 1.108439896313484e-06 1.113733194557653e-06 1.108411591843605e-06 1.152181173580402e-06 1.107247769027708e-06 1.069853666990639e-06 1.073272429152894e-06 1.110003502446943e-06 1.128982253462141e-06 1.133981167633635e-06 1.213560006263492e-06 1.096734083105844e-06 1.094882001950737e-06 1.07902624613132e-06 1.085796393240912e-06 1.078336323345752e-06 1.077232255397575e-06 1.062871618273675e-06 1.077525791259859e-06 1.068188197450581e-06 1.068924312619401e-06 1.064531119254752e-06 1.056207480587545e-06 1.052625535180596e-06 1.04918609622473e-06 1.056047587155717e-06 1.0681939421886e-06 1.072566732318592e-06 1.079311942930872e-06 1.069455944247011e-06 1.074381454913009e-06 1.085369504494338e-06 1.07988747544141e-06 1.084467001533085e-06 1.079643844548173e-06 1.065331517224877e-06 1.06653163811643e-06 1.066976793140384e-06 1.085261146727134e-06 1.063614881502417e-06 1.093641497362796e-06 1.068527289760368e-06 1.064681455886785e-06 1.068741397602935e-06 1.075646341774927e-06 1.063878833917897e-06 1.071310016698135e-06 1.079129077652397e-06 1.116321804772724e-06 1.087040704561559e-06 1.077896222057007e-06 1.130746781541347e-06 1.083714337823949e-06 1.078660062603376e-06 1.080265803921066e-06 1.073790016903331e-06 1.082478291891675e-06 1.061230690879711e-06 1.067701930423937e-06 1.081488598231317e-06 1.081088669252495e-06 1.095925252769803e-06 1.100334074521925e-06 1.11439139161007e-06 1.102582835699195e-06 + 1.170561201746523e-06 1.167073861552126e-06 1.144131047681185e-06 1.147536863754794e-06 1.150695510432342e-06 1.144449640833045e-06 1.163943593951444e-06 1.122941725384408e-06 1.154830343352842e-06 1.140987265557669e-06 1.132196771891358e-06 1.1580317433868e-06 1.15312406734347e-06 1.157307709220845e-06 1.19761407013641e-06 1.22319175588359e-06 1.217951771437242e-06 1.132057263930619e-06 1.122242560214204e-06 1.144953031939622e-06 1.132890208310755e-06 1.120177628877173e-06 1.096984608039975e-06 1.110813538929278e-06 1.087926449372389e-06 1.090253022084653e-06 1.089806652032621e-06 1.128944767003759e-06 1.128343068756976e-06 1.133185090651523e-06 1.13805409540646e-06 1.182126471377387e-06 1.163260717973458e-06 1.140770599761254e-06 1.172105111635346e-06 1.157054889233677e-06 1.165112511358757e-06 1.151363417051243e-06 1.283843950261598e-06 1.167395499379609e-06 1.115606824697579e-06 1.120547960198337e-06 1.158629002517841e-06 1.187523661627665e-06 1.187238935607127e-06 1.284325142236753e-06 1.152549783611789e-06 1.138479069240361e-06 1.130168540086629e-06 1.134828659488107e-06 1.129566296498297e-06 1.128553456908321e-06 1.098585229897253e-06 1.118608835781743e-06 1.10665958530376e-06 1.107960894586313e-06 1.103108303368572e-06 1.085291586377934e-06 1.079894218491972e-06 1.075091546454132e-06 1.085380802123836e-06 1.111041289192372e-06 1.120920622099675e-06 1.132221839839076e-06 1.10873166647707e-06 1.12131258589443e-06 1.139468707833657e-06 1.132758015387481e-06 1.134005948699723e-06 1.128369362390913e-06 1.104016718045386e-06 1.10966746547092e-06 1.109248174202548e-06 1.136630380926817e-06 1.09864923558689e-06 1.140059950444083e-06 1.113060903890073e-06 1.102533371266645e-06 1.112293375626905e-06 1.126276181651065e-06 1.099115472413814e-06 1.118336857786062e-06 1.129885426109922e-06 1.17550455769333e-06 1.144180640011427e-06 1.128976645503599e-06 1.227224341704414e-06 1.139549603124124e-06 1.12847980915376e-06 1.131546156329932e-06 1.118376815156807e-06 1.137797710271116e-06 1.090748327214897e-06 1.111836837708324e-06 1.130291479967127e-06 1.130443386898605e-06 1.145488305098752e-06 1.148829291253151e-06 1.160914624875886e-06 1.147238791077143e-06 + 1.537858295819206e-06 1.581347333967642e-06 1.497870158573278e-06 1.495899908832143e-06 1.504666116147746e-06 1.478023804679651e-06 1.505968413084702e-06 1.429835378985445e-06 1.518816574730408e-06 1.481680030224197e-06 1.486090496882753e-06 1.545069302721913e-06 1.548445215604488e-06 1.545536930436242e-06 1.642141642221873e-06 1.642567328374867e-06 1.72653208885265e-06 1.471285656862165e-06 1.427923594476965e-06 1.544771151884561e-06 1.476768499486525e-06 1.42821343729338e-06 1.354496877326028e-06 1.390130783818222e-06 1.327134413031672e-06 1.329391089655019e-06 1.328869934980048e-06 1.467290893231166e-06 1.46100383702219e-06 1.484873504153938e-06 1.485149475399794e-06 1.623481558965523e-06 1.624889714335609e-06 1.531774184826418e-06 1.636506087976386e-06 1.585307973783756e-06 1.60408810501167e-06 1.602322509342002e-06 1.785364123207955e-06 1.568544714558584e-06 1.408954226178594e-06 1.42757053467335e-06 1.587577774131432e-06 1.661296408883572e-06 1.714575516231776e-06 1.907862625216694e-06 1.533632426387044e-06 1.519993135801201e-06 1.465101387765344e-06 1.489116089103959e-06 1.46431220215959e-06 1.461306702310594e-06 1.352859246850358e-06 1.421315946714685e-06 1.375365812350537e-06 1.380811269768856e-06 1.367097816284968e-06 1.309183318198848e-06 1.285062566580564e-06 1.260889447962654e-06 1.30628012584566e-06 1.399382284716921e-06 1.435408229610857e-06 1.478371665086797e-06 1.382252719395183e-06 1.430480867981032e-06 1.502372128925344e-06 1.481192519747765e-06 1.492164166450038e-06 1.465956358970288e-06 1.380236511749899e-06 1.396814127474499e-06 1.395342181353953e-06 1.501126675407249e-06 1.359250600074802e-06 1.524119472406937e-06 1.402436382136329e-06 1.37001826061578e-06 1.402980480236238e-06 1.45363384973507e-06 1.358697558018207e-06 1.422815934404298e-06 1.457964781792498e-06 1.605070409027576e-06 1.496673050382924e-06 1.458775912510646e-06 1.669433782325314e-06 1.491724198388056e-06 1.453966724795919e-06 1.461747601183561e-06 1.428010904191979e-06 1.486079469259494e-06 1.339379522846684e-06 1.402337971967427e-06 1.475039205445228e-06 1.474629094389002e-06 1.53570141847581e-06 1.552310109786958e-06 1.627892476818715e-06 1.565224049926428e-06 + 1.644795274202693e-05 3.0963333500722e-05 1.36375538630773e-05 1.282548471692735e-05 1.3770390282275e-05 1.057191317954675e-05 1.19749698654914e-05 7.364059783299126e-06 1.561616656431397e-05 1.158062713102481e-05 1.858499057050267e-05 2.121124855847256e-05 2.413011060298231e-05 2.151708116748807e-05 4.659382257443667e-05 3.050292407991151e-05 0.0001079910564545372 1.280921132895685e-05 7.404750279604855e-06 3.039944416372009e-05 1.338992550259377e-05 9.600293264355741e-06 5.312418839054089e-06 1.029718990253059e-05 4.103521590081982e-06 4.609017949519512e-06 4.470903490982892e-06 1.931851008407648e-05 1.549549480373003e-05 1.961260993965652e-05 1.269869447639849e-05 4.415900770027292e-05 5.901628474447307e-05 3.42582808219305e-05 5.848232210503568e-05 3.920244295230191e-05 4.337041531954355e-05 6.602812429790106e-05 0.0001142278237225014 2.572138035006333e-05 9.523914190623373e-06 1.21212760930689e-05 3.915681674371285e-05 6.48538360845663e-05 0.0001506359826484172 0.000957405526293087 1.964694710032688e-05 3.400038203693612e-05 1.273957944114557e-05 1.836988855608013e-05 1.28497426459262e-05 1.237627036942968e-05 5.794971283279438e-06 1.955470295200712e-05 9.664576939627523e-06 1.043488077101529e-05 7.414741283184867e-06 3.87618209174434e-06 3.189137373738049e-06 2.548268625446326e-06 4.161103483113493e-06 7.854821408415091e-06 1.000234073700312e-05 1.394189530401491e-05 1.054011469037164e-05 1.310886661443078e-05 1.635382337639157e-05 1.450235419753199e-05 2.017953540445205e-05 1.844793069238904e-05 6.852305631355193e-06 8.910704565323613e-06 8.023270382295777e-06 1.879091068701655e-05 5.592911342944262e-06 2.783678997531069e-05 8.648671670385966e-06 6.391559686846904e-06 8.033576808230691e-06 1.098595642545774e-05 5.548763795104605e-06 9.320401460399808e-06 1.005531565567708e-05 3.811564986122562e-05 1.337229486253477e-05 1.057229068379684e-05 4.531021169285054e-05 1.350725270299336e-05 9.623737604158578e-06 1.015562239103929e-05 8.033598490442273e-06 1.283974366117491e-05 4.462741713950891e-06 8.855721503664427e-06 1.951466695970794e-05 1.842590024381252e-05 2.488665245792276e-05 2.953445517661635e-05 6.607164312200098e-05 4.062742332422431e-05 + 0.0001921249842062878 0.0003965724412893223 0.0001403827675545699 0.0001347837161063126 0.0001477289908393686 0.0001090917814536851 0.0001351014242629844 6.355731372309492e-05 0.0001751851278157801 0.0001167936142678627 0.0001645528966918164 0.0002434109730771183 0.0002616196826785711 0.0002307458947541363 0.0006420614687705495 0.0004381200929444162 0.001529424880196473 0.0001051712886432909 5.926770593589481e-05 0.0002888871939425997 0.0001149835343738914 7.072966199572761e-05 3.200901412725443e-05 5.317038004548635e-05 2.270196205245156e-05 2.403354316271589e-05 2.36303487213263e-05 0.0001405543380528229 0.0001173532822207335 0.000154925347118251 0.0001173102335094711 0.0005613098318342225 0.0006251532835825913 0.0002685389005403493 0.00068507495562109 0.0004122888258173418 0.0004965298215111602 0.0006002737291375126 0.002078823422234422 0.0003041850050351513 6.274601027911331e-05 8.131871024019688e-05 0.0004002751866689636 0.000817538153910391 0.001465838565136046 0.009226043288544261 0.0001994976878307853 0.0002420238503706429 0.0001018203653568861 0.0001485969757482053 0.0001038816873677462 0.0001012098405759332 3.141745877854873e-05 8.379913536415984e-05 4.400731974030236e-05 4.840466455391379e-05 3.999038666790966e-05 1.779102723276083e-05 1.270720451884699e-05 9.157491248856786e-06 1.687986124210283e-05 5.441209464152053e-05 7.839061984782347e-05 0.0001240707230465432 4.834867644376573e-05 8.596761999868363e-05 0.0001543952746487776 0.0001294506218343372 0.0001726078584951551 0.0001409209138856227 4.634238638345778e-05 6.07464417328174e-05 5.542787532419879e-05 0.0001713822177293878 3.406206565159664e-05 0.0002416876294581982 5.778493753538783e-05 3.932087906832749e-05 5.597713914440305e-05 9.052849791402195e-05 3.306674933511999e-05 6.83072286982167e-05 8.801817822146063e-05 0.0004874497235860531 0.0001315847427534322 8.95341613009748e-05 0.0006937806827203019 0.0001303955520697286 8.725768495310149e-05 9.555608305333863e-05 6.778006532215386e-05 0.0001278846573598003 2.666319963395836e-05 6.126386735161304e-05 0.0001536184197732382 0.0001474764140354523 0.0002390371904432698 0.0002903630478883201 0.0006920154267504586 0.0003746339089865103 + 0.0001936715228261221 0.0004166500818598706 0.0001620616836390809 0.0001558868527951063 0.0001679423006066827 0.000131209813716282 0.0001572424781386417 7.222345729474e-05 0.0001959669829005861 0.0001382816584936108 0.0001980772109391182 0.0002472684194358976 0.000263056223584357 0.0002170573681787857 0.000579917573315214 0.0003810854819761289 0.001300819765257089 0.00010559861327053 6.175391487950321e-05 0.000308232125860286 0.0001202283637375956 7.74157032665812e-05 3.498394368506297e-05 7.259607463083739e-05 2.598258060970693e-05 3.021824600324408e-05 2.880730018262057e-05 0.0001728260020925632 0.0001323111774524932 0.0001706092930575664 0.0001251022166961491 0.0005186143670314891 0.0006251113749424775 0.0003010396719584918 0.000660709029773443 0.0004129208398282458 0.0004916093583382519 0.0007200332127084152 0.001729164611081302 0.0002886662912970905 7.247566796664273e-05 9.599156974715584e-05 0.0003816076781184563 0.0007179077429970704 0.00141095803840674 0.007253602224157163 0.0001863366615850737 0.0002828018184821701 0.0001038617124891061 0.0001524387863511834 0.0001092228523393857 0.0001094317210608153 3.666973033134013e-05 0.0001442472023249763 6.636006130378291e-05 7.473937518653884e-05 5.356362189701258e-05 2.346541921838252e-05 1.713842176798153e-05 1.104222289427526e-05 2.407358108058588e-05 6.176842881799871e-05 9.021217980631491e-05 0.0001382045256264064 7.262796182772036e-05 0.0001033214138139726 0.000160770993662851 0.0001436310938913721 0.0001972233444007543 0.0001767314753848837 5.486644359109505e-05 8.011426001530708e-05 6.701357268923402e-05 0.000185511335565991 3.746173341667713e-05 0.0002653696260175309 6.698632489587908e-05 4.456170161759587e-05 6.301496510019433e-05 0.0001008068579650967 3.544945261957366e-05 7.651593966429004e-05 9.769687402183536e-05 0.0004787583617940072 0.0001413935153138368 9.726382624464236e-05 0.0006144461554207226 0.0001442173954799841 0.0001025367878000338 0.0001143773189511421 7.923296942635716e-05 0.0001540124594896497 2.950466364382009e-05 7.589444109612486e-05 0.0001879243667062269 0.0001754356165477589 0.0002402656817181992 0.0002929461387282117 0.0007369232135481241 0.0004113358482094043 + 4.223238507705673e-05 9.143963215763051e-05 3.454198839847322e-05 3.293566855688823e-05 3.549815629355635e-05 2.731241370668158e-05 3.245063123813452e-05 1.63947255344965e-05 4.083793179177064e-05 2.927999015867044e-05 5.194999084778829e-05 5.530904137174275e-05 6.550035403307675e-05 5.437413001274649e-05 0.000142791430704392 8.227670725702296e-05 0.0004132047808749206 2.876368794346718e-05 1.526243938343441e-05 9.773901306076027e-05 3.096168499538976e-05 2.097540810197529e-05 1.033113887771719e-05 3.167178348562061e-05 7.499642009634044e-06 9.897617033516326e-06 9.141878273055681e-06 6.410505847043169e-05 4.149962864374857e-05 5.829234086363044e-05 2.970498198351379e-05 0.0001369025482240716 0.0002219768314351001 0.0001281006751696623 0.0002070739098982699 0.0001281573822886628 0.0001420656399453435 0.0003027123335712645 0.000399088918914714 6.869695224409611e-05 2.221144281477905e-05 3.097390840522962e-05 0.0001255017041099649 0.0002227177007263492 0.0007219100267192857 0.006340780448592653 4.819209675943625e-05 0.0001353702794233413 2.882379976654192e-05 4.983623430199202e-05 2.953491903667782e-05 2.852893951654778e-05 1.273410354230009e-05 0.0001079312678093913 3.336706765466602e-05 3.780113425833065e-05 1.946450683476542e-05 8.063036304406523e-06 6.209315458249876e-06 4.061804503407984e-06 1.04570141203908e-05 1.67763494012263e-05 2.248799383863798e-05 3.350852866645937e-05 3.823395826074716e-05 3.614112864269714e-05 3.972157522724729e-05 3.510206750689804e-05 5.927103046587945e-05 5.836059934694049e-05 1.469057258418616e-05 2.179671824364959e-05 1.793357991175526e-05 4.956082873519563e-05 1.109921718622786e-05 9.18134786616065e-05 1.947046863293167e-05 1.343774859208224e-05 1.7142106855772e-05 2.49020677927092e-05 1.086643767500561e-05 2.04480058449974e-05 2.286537566220659e-05 0.0001162703722208391 3.228739648619694e-05 2.36661950054895e-05 0.0001340313919051539 3.271910183144655e-05 2.265094602904583e-05 2.46443294713572e-05 1.783700437840707e-05 3.24277103516124e-05 8.126978727318601e-06 2.064031569659619e-05 6.167043927263194e-05 5.473694380242478e-05 7.102056690655445e-05 8.959079789150337e-05 0.0002700130449007077 0.0001480353179985627 + 5.889595328767427e-06 8.509699426895168e-06 4.826128929380502e-06 4.794864366886031e-06 5.032593293208265e-06 4.347000384541388e-06 5.002785840702018e-06 3.244578550720689e-06 5.469346675113229e-06 4.418382445692259e-06 5.064729961645753e-06 6.420798285944329e-06 6.760039159559028e-06 6.349439152231184e-06 1.215273197985312e-05 9.371090833099061e-06 2.598398135056357e-05 4.092695252921885e-06 3.128218860837251e-06 7.693222851656856e-06 4.259905029613265e-06 3.287756765502081e-06 2.315451929746359e-06 3.384530348427006e-06 2.06980459438455e-06 2.212221296815642e-06 2.168538280500343e-06 5.136749578582567e-06 4.350196334712564e-06 5.244917169022756e-06 4.3801599822757e-06 1.141365790857662e-05 1.437727395448007e-05 8.421796934499071e-06 1.435987306308562e-05 9.803410883080232e-06 1.087506054275877e-05 1.589018596348524e-05 2.60782751801969e-05 7.424382182819045e-06 3.160088706266606e-06 3.629940547256183e-06 9.831160543427586e-06 1.608170758515826e-05 3.492786571168693e-05 0.0001693140200220711 5.860900756715637e-06 8.37353644733696e-06 4.006106244958119e-06 5.040052025506725e-06 4.025495339732288e-06 3.956575341135249e-06 2.443072251168132e-06 5.98231384429937e-06 3.385703855940392e-06 3.555490977191766e-06 2.807129121151775e-06 2.06445602657368e-06 1.906935679585331e-06 1.695600118978291e-06 2.204413497963742e-06 2.868037842773674e-06 3.425563768644224e-06 4.382433957061949e-06 3.582719109829213e-06 3.817489496071858e-06 4.973662811380564e-06 4.476419242394059e-06 5.393054870239666e-06 4.935402159844671e-06 2.647501503361127e-06 3.037510822423428e-06 2.88124438441173e-06 5.240411105944531e-06 2.375309119173608e-06 7.043172679743748e-06 2.997407232641081e-06 2.540716248944364e-06 2.910927822341591e-06 3.731630776826478e-06 2.36352206783863e-06 3.214260267725422e-06 3.761848077488139e-06 1.005179160884495e-05 4.698832558602817e-06 3.769091975414085e-06 1.222194390493314e-05 4.603980819695153e-06 3.731114063043606e-06 3.923361632018896e-06 3.226207539341885e-06 4.536165363333566e-06 2.141247364306764e-06 3.037489619828193e-06 5.179320631043538e-06 4.961254845170515e-06 6.630934990425885e-06 7.619133931768829e-06 1.599991644596344e-05 9.894465893722781e-06 + 1.342093732148442e-06 1.387377764672237e-06 1.303401731433951e-06 1.302012194059898e-06 1.309978657104693e-06 1.287882014366915e-06 1.316713323262775e-06 1.247119385539008e-06 1.323133318464897e-06 1.289079889943423e-06 1.306285085433956e-06 1.35131845269143e-06 1.359968013758817e-06 1.353833308570529e-06 1.44368585175414e-06 1.428571975381487e-06 1.545216374410074e-06 1.283144401398317e-06 1.245037061892162e-06 1.378531177209652e-06 1.288008043331956e-06 1.244387082266485e-06 1.186157966515111e-06 1.229246187506305e-06 1.166537558106029e-06 1.170455739440968e-06 1.169136581324892e-06 1.302988330564858e-06 1.282668783630925e-06 1.313392438362371e-06 1.292906265604188e-06 1.435233230040467e-06 1.470079366683308e-06 1.392335260419486e-06 1.469216812211016e-06 1.416766089334942e-06 1.429774879824208e-06 1.47822877849535e-06 1.5566539275369e-06 1.374256207498092e-06 1.230991163225781e-06 1.250441759026444e-06 1.419631432852952e-06 1.486210988943526e-06 1.578411397140655e-06 1.762604693311687e-06 1.342888831246114e-06 1.389942728025062e-06 1.278224051048937e-06 1.311907473322549e-06 1.277591508141995e-06 1.274108480942004e-06 1.188063453838595e-06 1.312938060493707e-06 1.223545890383093e-06 1.230180565414685e-06 1.203144833539227e-06 1.157157882403226e-06 1.142109098850597e-06 1.128586220033867e-06 1.162332004867039e-06 1.220444211469385e-06 1.249976513406637e-06 1.289597918230356e-06 1.232059190670043e-06 1.2566461400354e-06 1.312935651753833e-06 1.292907157335321e-06 1.317395586397652e-06 1.296368495218303e-06 1.204707402280292e-06 1.220291238723803e-06 1.217297651123772e-06 1.318141173101139e-06 1.189686887670405e-06 1.3630980220114e-06 1.224212763162313e-06 1.198207066011037e-06 1.223392850135951e-06 1.265428846153327e-06 1.18970552165365e-06 1.239816086240353e-06 1.268205298998737e-06 1.413462406674171e-06 1.30315313384699e-06 1.269065069919861e-06 1.451536103758144e-06 1.298783487868604e-06 1.264791762878303e-06 1.271374941325121e-06 1.243378662252326e-06 1.29237255919179e-06 1.174950611471104e-06 1.223898792090949e-06 1.305596825318389e-06 1.300870010823019e-06 1.357635021292936e-06 1.379028283565731e-06 1.48131755750569e-06 1.417138502546322e-06 + 1.151982175429112e-06 1.160786467835351e-06 1.13980762250776e-06 1.141145787642017e-06 1.142467098702582e-06 1.140225563744934e-06 1.150029490304405e-06 1.131624827621636e-06 1.144300384225971e-06 1.138426114266622e-06 1.139865588584144e-06 1.150569310937044e-06 1.154256441537882e-06 1.152963479356117e-06 1.187930806167969e-06 1.182682016320769e-06 1.245220405010627e-06 1.13715261917946e-06 1.131688785349638e-06 1.164759481753208e-06 1.137409331164463e-06 1.127749605700501e-06 1.112884568499339e-06 1.114377553790291e-06 1.10694831789715e-06 1.103441178429421e-06 1.104143471764019e-06 1.139933750948785e-06 1.134881262743193e-06 1.145103308175521e-06 1.138368482145324e-06 1.183344108923734e-06 1.202681930934091e-06 1.174407403325972e-06 1.200329791117838e-06 1.177927313023019e-06 1.181631137825434e-06 1.206625103833403e-06 1.260220667376188e-06 1.158332345596591e-06 1.120559808498456e-06 1.124048857548132e-06 1.180366959729895e-06 1.209337460394977e-06 1.256812413252817e-06 1.328538909106669e-06 1.150551286244195e-06 1.174266339276642e-06 1.135858161305237e-06 1.145145963832306e-06 1.135208126612497e-06 1.134112480372096e-06 1.108553217221697e-06 1.143164251260487e-06 1.112572316941396e-06 1.114220207654171e-06 1.1081778907851e-06 1.099263101878023e-06 1.095309727361382e-06 1.091236256911543e-06 1.098256284137733e-06 1.121514099367005e-06 1.128678626116653e-06 1.136685327196574e-06 1.115289528286212e-06 1.124868347801566e-06 1.142311297996912e-06 1.137399770811953e-06 1.144726560653453e-06 1.136975932070072e-06 1.116693027825022e-06 1.115532626272397e-06 1.118630279961508e-06 1.14410898532924e-06 1.113566437282998e-06 1.161132665572495e-06 1.119879669886359e-06 1.114217543118912e-06 1.122432589539812e-06 1.13241387822427e-06 1.113844298572531e-06 1.126321784283846e-06 1.134382248579868e-06 1.172639457536206e-06 1.140550914158212e-06 1.134079113285225e-06 1.194314783958816e-06 1.138788512378142e-06 1.133469709202473e-06 1.134588686113602e-06 1.129239777242219e-06 1.137045146037963e-06 1.110901223455585e-06 1.118685020173871e-06 1.140562474688522e-06 1.139367391544965e-06 1.156864534834767e-06 1.16426334173525e-06 1.207645041745309e-06 1.180960680358112e-06 + 1.143566237260529e-06 1.150300306562713e-06 1.130178475250432e-06 1.129212975570226e-06 1.131704891577101e-06 1.123839609817878e-06 1.132909559942163e-06 1.111079711790808e-06 1.135303733690307e-06 1.125316472894156e-06 1.128833616803604e-06 1.143251310509186e-06 1.145120318568615e-06 1.146295007359299e-06 1.17239312835693e-06 1.180483776508368e-06 1.195064387005118e-06 1.130335000709692e-06 1.114172780702916e-06 1.14500957337782e-06 1.130346547029148e-06 1.117619937929248e-06 1.092663140411787e-06 1.104563608578246e-06 1.082208470393198e-06 1.08530741016466e-06 1.084573817422552e-06 1.123465814600877e-06 1.124783278072528e-06 1.131251277541878e-06 1.13053153327769e-06 1.165275378411934e-06 1.164005018594594e-06 1.143232475797618e-06 1.16645039227592e-06 1.154342985643098e-06 1.158106933019099e-06 1.158968270686955e-06 1.213750955741943e-06 1.151100637031277e-06 1.111049968471889e-06 1.115074557134221e-06 1.15634615482918e-06 1.175459077629171e-06 1.189865438178117e-06 1.228184961732381e-06 1.144207462999702e-06 1.139490466428583e-06 1.128725342525172e-06 1.134083658982377e-06 1.127795311361979e-06 1.126411376617398e-06 1.09436863482415e-06 1.110306403262484e-06 1.102047111345428e-06 1.102681071785128e-06 1.098324986514854e-06 1.079883830357176e-06 1.073585238486885e-06 1.067337038307414e-06 1.083285269487533e-06 1.107158265511998e-06 1.1179203482925e-06 1.129085070772362e-06 1.103328283846849e-06 1.114911700739185e-06 1.135184920286747e-06 1.129763738560996e-06 1.131822997990639e-06 1.122813216625218e-06 1.09936227943308e-06 1.103857982798218e-06 1.104520350736493e-06 1.134552917392284e-06 1.094355251751722e-06 1.140623609785507e-06 1.108692643470022e-06 1.098146491074203e-06 1.108618199907596e-06 1.123321233365004e-06 1.09501383604993e-06 1.115342588065005e-06 1.122181878088213e-06 1.158638731624251e-06 1.13220957942417e-06 1.124059100021668e-06 1.184949621091391e-06 1.130859104137016e-06 1.119042018160599e-06 1.120396674991753e-06 1.112016590809617e-06 1.126728520262077e-06 1.085738929873514e-06 1.106779180304329e-06 1.125878455354723e-06 1.126606036905287e-06 1.143959057259281e-06 1.147414018021209e-06 1.164092090277791e-06 1.150008603900687e-06 + 1.130051852982206e-06 1.134228099886059e-06 1.113430087684719e-06 1.1158852544213e-06 1.117656267979328e-06 1.114354489573088e-06 1.125425427517257e-06 1.10410584852616e-06 1.119776612767964e-06 1.112086948751312e-06 1.102050404711008e-06 1.126047877164638e-06 1.125549811575866e-06 1.128651476278719e-06 1.159723071353369e-06 1.162117840181054e-06 1.187138897407181e-06 1.105970341086504e-06 1.104615380498331e-06 1.12049283984561e-06 1.106066431333375e-06 1.094314239225014e-06 1.080217028714969e-06 1.085863683414345e-06 1.074547682833327e-06 1.07281092454059e-06 1.073228318659858e-06 1.101168074058023e-06 1.099449757901994e-06 1.105739304563258e-06 1.1109515618557e-06 1.151649630770635e-06 1.142663020203827e-06 1.11827081461513e-06 1.149229747809954e-06 1.134083468912195e-06 1.140681085587403e-06 1.131169344859018e-06 1.203511139635793e-06 1.135268000496126e-06 1.088791986347815e-06 1.092334532160066e-06 1.13661268663634e-06 1.162045847991067e-06 1.179117786520578e-06 1.292220797921573e-06 1.125338956242672e-06 1.116836829240242e-06 1.103479583264289e-06 1.107987682047451e-06 1.102306637079664e-06 1.101182725449235e-06 1.078847038371578e-06 1.095823350283354e-06 1.082888321235487e-06 1.08382223018566e-06 1.079654673219466e-06 1.068177638785528e-06 1.063961292402382e-06 1.06108780073555e-06 1.067280109623425e-06 1.08767580542235e-06 1.094975694115874e-06 1.104214554459304e-06 1.084729603917367e-06 1.093319994538433e-06 1.112070155073752e-06 1.104610291235986e-06 1.105465734951849e-06 1.099223993605847e-06 1.0829323997541e-06 1.083411831359626e-06 1.085028898728524e-06 1.108719260400903e-06 1.080947516385322e-06 1.114924337741741e-06 1.087306149116785e-06 1.082150401288118e-06 1.088621342404394e-06 1.100291438405065e-06 1.081521851631351e-06 1.092571999095071e-06 1.106195245625941e-06 1.143810255399558e-06 1.115037878918201e-06 1.104594524292679e-06 1.169576336224054e-06 1.111084962701625e-06 1.10486218574124e-06 1.106412597096096e-06 1.098560645118596e-06 1.108751476408543e-06 1.077488548162364e-06 1.085647156173764e-06 1.101385791457687e-06 1.10122151397718e-06 1.120526984976777e-06 1.124833115540014e-06 1.140333438343077e-06 1.124588376200109e-06 + 1.174145584315056e-06 1.178847170990593e-06 1.149666118749337e-06 1.153041807810951e-06 1.155671085939503e-06 1.149674318412508e-06 1.162813745736457e-06 1.133564808242227e-06 1.158744822760127e-06 1.147612280760768e-06 1.140315944780923e-06 1.166034778066205e-06 1.167377153166171e-06 1.171191726712095e-06 1.226009453958454e-06 1.217174926182452e-06 1.307427254459981e-06 1.143197623676429e-06 1.135906030569345e-06 1.174895224664851e-06 1.142621329108806e-06 1.129843710145906e-06 1.109284671230171e-06 1.11399930702305e-06 1.097489672474694e-06 1.094066199414101e-06 1.095347542445779e-06 1.14558395836184e-06 1.139021499341197e-06 1.150903976565587e-06 1.147125292533246e-06 1.217388730267999e-06 1.227893305255634e-06 1.184793102737558e-06 1.230377156602458e-06 1.197958248155828e-06 1.206120266772359e-06 1.219076501968175e-06 1.31451398388549e-06 1.180856923355122e-06 1.123722402240901e-06 1.128305136433028e-06 1.204164513879391e-06 1.25038595122362e-06 1.344502244648993e-06 1.60478871080727e-06 1.166796737450682e-06 1.184574129453608e-06 1.140819312794861e-06 1.151644090313653e-06 1.139289517837483e-06 1.137565700304322e-06 1.106195401945342e-06 1.141962385986517e-06 1.108732519128353e-06 1.110578281782182e-06 1.105084585617533e-06 1.084056549416346e-06 1.075968739883137e-06 1.070869473096536e-06 1.083979029203874e-06 1.121146130600437e-06 1.129494762608374e-06 1.139946007810977e-06 1.112695567684341e-06 1.129796707743935e-06 1.148836897613137e-06 1.1405248088181e-06 1.147845139826131e-06 1.140712726055426e-06 1.114279896796688e-06 1.115385941830027e-06 1.117910869652405e-06 1.147482514340936e-06 1.110727097852759e-06 1.169147509472168e-06 1.121672944748298e-06 1.11318284368167e-06 1.122407802256475e-06 1.135223357096038e-06 1.111619821969612e-06 1.127645656850973e-06 1.140019136869341e-06 1.199750062852445e-06 1.152273693350025e-06 1.139073123823664e-06 1.232110133031483e-06 1.146901603021888e-06 1.137590857069881e-06 1.139675276817798e-06 1.128762335156352e-06 1.143170791806369e-06 1.102338302416683e-06 1.119140719652023e-06 1.144274669684364e-06 1.142605981385714e-06 1.167707335270052e-06 1.178101264542875e-06 1.229053015805448e-06 1.192698000807013e-06 + 1.256539487570763e-06 1.278987355135541e-06 1.223517756443471e-06 1.225641995006299e-06 1.230298479981684e-06 1.217981917989164e-06 1.236012039385059e-06 1.192338018540795e-06 1.236574206586738e-06 1.216985978658158e-06 1.231807758017567e-06 1.258685131233506e-06 1.264163639547178e-06 1.268172267643308e-06 1.329204867062117e-06 1.322651364432659e-06 1.374611391824487e-06 1.228581508527782e-06 1.198672800128975e-06 1.262954128833371e-06 1.226752999627934e-06 1.20496766342626e-06 1.164302549483409e-06 1.192320965515137e-06 1.144353902304829e-06 1.141115276936944e-06 1.142249637098303e-06 1.234683523421154e-06 1.230529026230442e-06 1.242592318817515e-06 1.224330627991321e-06 1.316251596605866e-06 1.306349901142312e-06 1.265088711122075e-06 1.315925205247481e-06 1.285258175443005e-06 1.296442952991583e-06 1.29081778865725e-06 1.399044361249935e-06 1.281403246622403e-06 1.201157779462392e-06 1.214312320030331e-06 1.29063483633729e-06 1.338482356061377e-06 1.352778737029325e-06 1.473332847723441e-06 1.262239994304082e-06 1.263470574386361e-06 1.226949954968859e-06 1.244980412096197e-06 1.224521151144131e-06 1.219819807829481e-06 1.165100350419834e-06 1.212291781627073e-06 1.182262764132247e-06 1.184532173681418e-06 1.170718903154011e-06 1.125717886907296e-06 1.114451634975921e-06 1.104996144363213e-06 1.129212456874029e-06 1.187968020843755e-06 1.202016811419071e-06 1.222521227361995e-06 1.187286844839264e-06 1.21754762716364e-06 1.237285335520255e-06 1.224864185189745e-06 1.240298416860242e-06 1.230761270676339e-06 1.173910590068772e-06 1.182837308988383e-06 1.183237699819983e-06 1.240601932295249e-06 1.16744114109224e-06 1.256362637036545e-06 1.193753536909981e-06 1.17431448387606e-06 1.190401881956404e-06 1.210504311899285e-06 1.169629594954813e-06 1.200831995618046e-06 1.209034977023293e-06 1.300264344195057e-06 1.229040151429217e-06 1.211785896515494e-06 1.341386933972899e-06 1.223763320012949e-06 1.202426517465938e-06 1.205073843379978e-06 1.188531214779687e-06 1.214178084296691e-06 1.151040450508845e-06 1.18833794715556e-06 1.234863546528686e-06 1.234146232320654e-06 1.260977569472743e-06 1.268564329137689e-06 1.304012108960251e-06 1.27358735113603e-06 + 1.298566026264325e-06 1.342399258419391e-06 1.261730901092051e-06 1.258359333178305e-06 1.266716679992896e-06 1.239830439203615e-06 1.256818634942647e-06 1.20851218810003e-06 1.278553526162796e-06 1.245282462036812e-06 1.279398929909803e-06 1.309103829782998e-06 1.326273924462384e-06 1.32562048094087e-06 1.443163935022085e-06 1.372069611704774e-06 1.678510720637405e-06 1.27515388470556e-06 1.216862964170673e-06 1.37158147239802e-06 1.272330610646577e-06 1.243854413246481e-06 1.185682524607046e-06 1.250513268047371e-06 1.161973230523472e-06 1.167929262635425e-06 1.166116760487057e-06 1.311011821769625e-06 1.282740441865826e-06 1.316500252812602e-06 1.266836367364021e-06 1.438572189371712e-06 1.507294120628444e-06 1.41658836483316e-06 1.494216537167858e-06 1.418706325750918e-06 1.429823118570539e-06 1.529971985547718e-06 1.613748811024607e-06 1.342174215324121e-06 1.243161079855781e-06 1.260271471181795e-06 1.433873158873666e-06 1.533289644584102e-06 1.881430115702187e-06 3.241953390187291e-06 1.318613437106819e-06 1.426237183466128e-06 1.272954849085295e-06 1.312992365498644e-06 1.269476539889069e-06 1.263412659824326e-06 1.200420701508165e-06 1.346552600978157e-06 1.245510922842641e-06 1.251071012120519e-06 1.216061974673721e-06 1.151741543026219e-06 1.137653185878662e-06 1.122633079830848e-06 1.166604448599173e-06 1.219321625001157e-06 1.238479960363748e-06 1.266371583596992e-06 1.257405966015313e-06 1.269470907061532e-06 1.285090817759738e-06 1.269079540122675e-06 1.303293132082217e-06 1.292825210441606e-06 1.199474596091932e-06 1.22038866834373e-06 1.215509627172651e-06 1.293292463344642e-06 1.190554289820511e-06 1.364222654842706e-06 1.232465958622697e-06 1.203808601246692e-06 1.222710579895647e-06 1.249956262938667e-06 1.193849545444436e-06 1.238108243484248e-06 1.238629231181676e-06 1.394345698457755e-06 1.270826956556448e-06 1.247886444843971e-06 1.422989452493084e-06 1.266189151749586e-06 1.225866071763448e-06 1.22918621059398e-06 1.206817671572935e-06 1.249427697302963e-06 1.167598142615134e-06 1.225248411174107e-06 1.300634814072055e-06 1.293064606500138e-06 1.34437691912126e-06 1.372323865211911e-06 1.524632651239699e-06 1.424390877247106e-06 + 1.224336504179746e-06 1.245353843160046e-06 1.194261514569916e-06 1.196594524799366e-06 1.200905273890385e-06 1.188811097563303e-06 1.201118990934447e-06 1.166099494298578e-06 1.206688793331523e-06 1.188603363289076e-06 1.203349981437896e-06 1.226287395184045e-06 1.233820619006565e-06 1.235670135102396e-06 1.294356962944221e-06 1.279945092136359e-06 1.376484869197725e-06 1.198761545140314e-06 1.171432259639005e-06 1.244177941117641e-06 1.196974757533553e-06 1.176658532386909e-06 1.148578490983709e-06 1.184600392889479e-06 1.131550675381732e-06 1.13824982861388e-06 1.137333057954493e-06 1.212706479236658e-06 1.203439772723414e-06 1.218519223300518e-06 1.194542026183854e-06 1.285822984087304e-06 1.299054247283493e-06 1.254820164220405e-06 1.299861390080537e-06 1.267101922053371e-06 1.274581094889982e-06 1.294032095700004e-06 1.401674879275561e-06 1.246893507556024e-06 1.175449391155325e-06 1.189116087374487e-06 1.273503867693648e-06 1.320041313590536e-06 1.387425868415448e-06 1.626573563839884e-06 1.230613296598904e-06 1.255203441630215e-06 1.197241401129645e-06 1.219538274810361e-06 1.19483103588891e-06 1.190188417155014e-06 1.152731059050893e-06 1.219391474904796e-06 1.182788547993141e-06 1.185371914402822e-06 1.160264623933926e-06 1.128844218101221e-06 1.116834042136361e-06 1.100529132713746e-06 1.135713588951148e-06 1.163843773355211e-06 1.174236750500768e-06 1.192895567214691e-06 1.188184480582777e-06 1.194625063760668e-06 1.207347970932915e-06 1.19519370400667e-06 1.214310863417722e-06 1.206397747921528e-06 1.154716699147684e-06 1.16107290182299e-06 1.160643094522129e-06 1.212341153689067e-06 1.150890298617924e-06 1.237959299515978e-06 1.168601848178241e-06 1.155780196882006e-06 1.165530928659564e-06 1.181689086138249e-06 1.152446266416973e-06 1.173245397723122e-06 1.181097630365002e-06 1.267627578016572e-06 1.19905342188531e-06 1.183182416042428e-06 1.29962873529621e-06 1.194129012560552e-06 1.175789648755199e-06 1.178099921617104e-06 1.164607382975191e-06 1.185816813631391e-06 1.135636011895258e-06 1.164349171745016e-06 1.210301121545854e-06 1.208142712982863e-06 1.2368632695825e-06 1.247471040244363e-06 1.30146117172103e-06 1.263127249018225e-06 + 1.141213992639223e-06 1.145960411008673e-06 1.120763911899303e-06 1.122919215390539e-06 1.125130566492771e-06 1.120482195915429e-06 1.130937761217865e-06 1.10843377854053e-06 1.12781363270642e-06 1.118539188382783e-06 1.117995083177448e-06 1.134804513469589e-06 1.137368872861089e-06 1.139509246073089e-06 1.188650990968654e-06 1.193410247068982e-06 1.246876882632364e-06 1.119715321351578e-06 1.110088632572115e-06 1.143864903241365e-06 1.119077499112109e-06 1.109219414985319e-06 1.091281003340328e-06 1.099025894291117e-06 1.08315066427167e-06 1.083468326612547e-06 1.083418766256727e-06 1.120284068178989e-06 1.116605467643694e-06 1.126054879563299e-06 1.120164061063633e-06 1.176148478165828e-06 1.180817880808149e-06 1.148749939616778e-06 1.181614694090172e-06 1.15847689485804e-06 1.163894697953083e-06 1.177724968215443e-06 1.276974035846479e-06 1.147877547680309e-06 1.104627898484978e-06 1.107789053378383e-06 1.162774832863533e-06 1.199976948029757e-06 1.252712791277588e-06 1.420371477323101e-06 1.136217894881497e-06 1.147536631052049e-06 1.118222638041289e-06 1.127262430955511e-06 1.117030254960127e-06 1.115505710913567e-06 1.091690926102729e-06 1.11432688143509e-06 1.097187102061525e-06 1.098039589919608e-06 1.093399930596206e-06 1.078537778198552e-06 1.074058985750526e-06 1.069554741661705e-06 1.081048850437583e-06 1.101647381318571e-06 1.108616189071654e-06 1.117063305855481e-06 1.099170443552566e-06 1.108508271840947e-06 1.123500808830613e-06 1.117675410000629e-06 1.123977881434257e-06 1.116892775598899e-06 1.095570084430619e-06 1.098119724929347e-06 1.099290415140786e-06 1.123926310242496e-06 1.092558726156767e-06 1.13960054193285e-06 1.102868132818458e-06 1.095266284778518e-06 1.102745667225236e-06 1.112922372925595e-06 1.093365421311887e-06 1.107377567421963e-06 1.113927410756332e-06 1.162552006661599e-06 1.123053081641956e-06 1.114531897883353e-06 1.204701273849196e-06 1.1198808493873e-06 1.111345589777102e-06 1.112688821081065e-06 1.104960901443519e-06 1.116224453312498e-06 1.08597740222649e-06 1.100803714848553e-06 1.120057106618333e-06 1.119211525235642e-06 1.139111450498831e-06 1.146081729075377e-06 1.183090059697633e-06 1.154930547642152e-06 + 1.10163832189869e-06 1.107742264139233e-06 1.08859953229512e-06 1.089058144998489e-06 1.090731359454367e-06 1.085614954376979e-06 1.093690812581372e-06 1.075479374890165e-06 1.092843334049576e-06 1.085986269799832e-06 1.093345531444356e-06 1.10071240300158e-06 1.103944807567814e-06 1.104512321603579e-06 1.128324575105921e-06 1.135444902544691e-06 1.145625502019243e-06 1.091962744226294e-06 1.07873630561528e-06 1.106142228479712e-06 1.091243287731913e-06 1.082121855233709e-06 1.066281395623037e-06 1.075675569950363e-06 1.059374298506555e-06 1.05970745067907e-06 1.059736845832049e-06 1.092456237472561e-06 1.092090013088409e-06 1.097178486730854e-06 1.089563024692097e-06 1.121039950646718e-06 1.119055763609822e-06 1.106771360781522e-06 1.1205164849315e-06 1.11244781919595e-06 1.114759630382878e-06 1.11621299225817e-06 1.171117094855845e-06 1.108782580416801e-06 1.079885482369036e-06 1.084847156107571e-06 1.11406670022518e-06 1.127789637678234e-06 1.141373463298123e-06 1.208716929212983e-06 1.102893243398739e-06 1.10496245220304e-06 1.091360807947694e-06 1.098543672028995e-06 1.090404433412573e-06 1.088494755663305e-06 1.066443562791619e-06 1.081560622395727e-06 1.073134374252049e-06 1.073782829763559e-06 1.068317835972721e-06 1.056071738503306e-06 1.052775672860662e-06 1.04877268825021e-06 1.057580149677051e-06 1.075184385967987e-06 1.081082494636121e-06 1.089640356610744e-06 1.07454045306099e-06 1.085465463290802e-06 1.095096727965483e-06 1.090611064569202e-06 1.096682638035418e-06 1.091462237923224e-06 1.069859763447312e-06 1.072674223223657e-06 1.073234216164565e-06 1.097003924144246e-06 1.067409314714496e-06 1.103663020529666e-06 1.07709357166641e-06 1.069771926154317e-06 1.07614667754774e-06 1.084647443860831e-06 1.068162166717457e-06 1.080403571052102e-06 1.083812730229283e-06 1.115399477669143e-06 1.09072395559906e-06 1.085057729000027e-06 1.140831599855119e-06 1.089293817813086e-06 1.081111747680552e-06 1.081993872276144e-06 1.075656157922822e-06 1.085628198893573e-06 1.061474705466026e-06 1.075019895324658e-06 1.093517283834444e-06 1.093585055400581e-06 1.104685722452814e-06 1.107448213133466e-06 1.119004657823552e-06 1.110457098718598e-06 + 1.069006270171258e-06 1.07189021036902e-06 1.061978224470295e-06 1.0619390593547e-06 1.062962866171802e-06 1.060360816040884e-06 1.065239473518886e-06 1.056102078678123e-06 1.064397892491797e-06 1.06027120239105e-06 1.062685939245966e-06 1.068031295403671e-06 1.069562930666734e-06 1.069798782893372e-06 1.083134360868598e-06 1.084146170171607e-06 1.099547246141697e-06 1.062712808419519e-06 1.057092029910223e-06 1.072272969082633e-06 1.062481835845119e-06 1.058411189802655e-06 1.051118179162813e-06 1.055696642993098e-06 1.046702166718205e-06 1.046941115134814e-06 1.046921930480949e-06 1.064154695029629e-06 1.062267262597061e-06 1.065896420016088e-06 1.062321324241111e-06 1.080774804762541e-06 1.085268221956426e-06 1.075283201146249e-06 1.08487765260179e-06 1.077353250167334e-06 1.078770445417376e-06 1.084899277969953e-06 1.106539677664387e-06 1.07212208177998e-06 1.057100206480754e-06 1.058828708266901e-06 1.078767844830963e-06 1.088914753921699e-06 1.100863697089949e-06 1.133556741805819e-06 1.068817171656633e-06 1.075458154531361e-06 1.062228905723828e-06 1.066187200748914e-06 1.061782379352394e-06 1.061082688380566e-06 1.05120281190807e-06 1.064666470540487e-06 1.054739801276128e-06 1.055284720052896e-06 1.052193638884091e-06 1.043956828539194e-06 1.040711097743952e-06 1.037025128880487e-06 1.045134155219785e-06 1.055458731968884e-06 1.058031948275584e-06 1.06174942970938e-06 1.055920073156358e-06 1.059433401451315e-06 1.064404308692701e-06 1.062072016111415e-06 1.065025372781747e-06 1.062693492315248e-06 1.05309462128389e-06 1.054423137247795e-06 1.054682002177287e-06 1.064820587259874e-06 1.0517038795399e-06 1.070866979091534e-06 1.056209661953744e-06 1.052922502964293e-06 1.055870512800539e-06 1.059655573953933e-06 1.052019635849888e-06 1.057698387540995e-06 1.059175108508725e-06 1.07681032446294e-06 1.063035220738584e-06 1.059874808362338e-06 1.086789520599041e-06 1.062293982556639e-06 1.057908711743494e-06 1.058325594271992e-06 1.055625503454394e-06 1.060395575791517e-06 1.048414802085063e-06 1.055428370477784e-06 1.063805058265643e-06 1.063362802256052e-06 1.070393565782979e-06 1.07288969886099e-06 1.086075382517038e-06 1.077136726479466e-06 + 1.055109233760732e-06 1.055736831290233e-06 1.049772876626776e-06 1.050333963803496e-06 1.050928773338455e-06 1.049673812758556e-06 1.054140682299476e-06 1.045043262593026e-06 1.051625517334287e-06 1.049059918045714e-06 1.049032988476029e-06 1.053534695927283e-06 1.053996815159053e-06 1.054418303780835e-06 1.062840690124744e-06 1.064516634841084e-06 1.073858435063357e-06 1.049338100855834e-06 1.045840031466128e-06 1.054655850651898e-06 1.049256074026061e-06 1.045780816610886e-06 1.040137568963928e-06 1.044325475874075e-06 1.03773899695625e-06 1.037919069801774e-06 1.037845336782084e-06 1.048797891201048e-06 1.048190380714686e-06 1.050301968064105e-06 1.049557390331302e-06 1.061078602759835e-06 1.062944305019187e-06 1.055288958440315e-06 1.063164665637828e-06 1.058106317231022e-06 1.059335843933695e-06 1.061740480423623e-06 1.078593836467689e-06 1.055962187024306e-06 1.044277873063493e-06 1.045762509477299e-06 1.058944018694774e-06 1.066239791569501e-06 1.075918092396932e-06 1.100364316997116e-06 1.053716401244742e-06 1.054899444241642e-06 1.048871395070705e-06 1.050805906288588e-06 1.048559754579514e-06 1.048091444744159e-06 1.040217505021701e-06 1.0484537185107e-06 1.043976418202419e-06 1.044306770836556e-06 1.041445493399351e-06 1.036423910250051e-06 1.034663142718273e-06 1.032779593401756e-06 1.037054282448935e-06 1.043282036761184e-06 1.045744525640657e-06 1.048754207033653e-06 1.04456627525451e-06 1.046116462788405e-06 1.050714132588837e-06 1.048978212736529e-06 1.050151340109551e-06 1.048170510387081e-06 1.04146039348052e-06 1.04210806739502e-06 1.042453206423488e-06 1.050591009743584e-06 1.040489248538279e-06 1.053424341534992e-06 1.043504298081643e-06 1.041164104265135e-06 1.043630980746002e-06 1.047201678261445e-06 1.040682951369831e-06 1.045174215619227e-06 1.047609906379421e-06 1.05863206556478e-06 1.050351652764903e-06 1.047748710902852e-06 1.065786531029289e-06 1.049554903431726e-06 1.046829211759359e-06 1.047277976340411e-06 1.044697171437292e-06 1.048506021561479e-06 1.038736101577342e-06 1.0428864811729e-06 1.048915507340098e-06 1.048844787021608e-06 1.053848880161468e-06 1.055299687635625e-06 1.063308580739886e-06 1.057069567877988e-06 + 1.06982779612963e-06 1.07745782429447e-06 1.063400887346688e-06 1.063534739387251e-06 1.064483043933251e-06 1.062304050947205e-06 1.066933734250597e-06 1.058383190866152e-06 1.065872808680979e-06 1.061922120015879e-06 1.064813687889909e-06 1.071288252774139e-06 1.07410160765653e-06 1.073632951431591e-06 1.088152892236849e-06 1.085523045674108e-06 1.099868361720269e-06 1.063840686654771e-06 1.059027590954997e-06 1.076440156566605e-06 1.063737570916601e-06 1.057958449734997e-06 1.04902049358202e-06 1.054461044702748e-06 1.045580717118355e-06 1.045380699338239e-06 1.045287426393315e-06 1.063678837454063e-06 1.0627130890839e-06 1.067255777087439e-06 1.06345524031326e-06 1.086024729701762e-06 1.087234640095858e-06 1.075693260688126e-06 1.088010110450455e-06 1.08188414316146e-06 1.083718093042307e-06 1.084571994880434e-06 1.106376124937469e-06 1.076666197974419e-06 1.054900735653064e-06 1.057552289296382e-06 1.082815304087603e-06 1.091557175314506e-06 1.100643451934502e-06 1.141363393131201e-06 1.072249965261562e-06 1.073691528574727e-06 1.063185635530317e-06 1.068295818029696e-06 1.062674627405613e-06 1.061785276590399e-06 1.048532979552874e-06 1.060506377825732e-06 1.053766144565316e-06 1.054274996192817e-06 1.050087654164145e-06 1.043471456796397e-06 1.041351751496222e-06 1.038504876760271e-06 1.044558523233263e-06 1.054211200113286e-06 1.058220860272741e-06 1.0630388089794e-06 1.054681149526004e-06 1.058240865603466e-06 1.066674979455229e-06 1.063551209767866e-06 1.067279761457485e-06 1.062700569320896e-06 1.051334706403395e-06 1.051877916324884e-06 1.052785123079047e-06 1.067859798808968e-06 1.049515304885063e-06 1.073837466947225e-06 1.05396669169977e-06 1.050401007063329e-06 1.054749962037249e-06 1.060359583249237e-06 1.049736823688363e-06 1.057079305866182e-06 1.060611761971586e-06 1.08255756359199e-06 1.064284017360251e-06 1.060980597600292e-06 1.09102887435597e-06 1.063529303735322e-06 1.059593408569981e-06 1.060006212583176e-06 1.057537986071111e-06 1.061845139815887e-06 1.047505051587905e-06 1.053201557965622e-06 1.064365520164756e-06 1.064304044007258e-06 1.07461867671077e-06 1.077376904135008e-06 1.087416055867152e-06 1.079891646327269e-06 + 1.109556368561471e-06 1.116595896633044e-06 1.103533378454813e-06 1.102870513136622e-06 1.104397938433976e-06 1.098930681564525e-06 1.101862721952784e-06 1.090183758378771e-06 1.106780942450314e-06 1.100479693150191e-06 1.100161298950297e-06 1.111640436590733e-06 1.112337624675774e-06 1.112726273788667e-06 1.127000128775535e-06 1.125863883899569e-06 1.138555536073227e-06 1.099997698261745e-06 1.091293746924293e-06 1.110500342349496e-06 1.10062316949211e-06 1.091271236930424e-06 1.072840248639295e-06 1.080436398126494e-06 1.065531890276361e-06 1.066631682533625e-06 1.066331776655716e-06 1.095747087731525e-06 1.095973676257245e-06 1.100503020268206e-06 1.102222253024365e-06 1.123950184478417e-06 1.121086585342823e-06 1.107214862017258e-06 1.123682421777517e-06 1.116977269788322e-06 1.119851418707185e-06 1.115396621287346e-06 1.148295655895026e-06 1.116043211624174e-06 1.085492343122496e-06 1.088582937569527e-06 1.117845780385096e-06 1.1284482113183e-06 1.136298537041114e-06 1.193864447301962e-06 1.110961008521372e-06 1.104776444549316e-06 1.098659726750384e-06 1.102198053715142e-06 1.098264275967153e-06 1.097644645398077e-06 1.072580865013606e-06 1.087088282503146e-06 1.078239414198379e-06 1.079052246666379e-06 1.075323602606204e-06 1.063438944015616e-06 1.060355813820024e-06 1.056595934301185e-06 1.065166145508556e-06 1.084141125318183e-06 1.092397006630108e-06 1.100355419225707e-06 1.079573607398743e-06 1.088718999397997e-06 1.104734561607756e-06 1.100759597250089e-06 1.101573815276424e-06 1.095445135490536e-06 1.078471058235664e-06 1.08099212070556e-06 1.082064159163565e-06 1.103823130677029e-06 1.074023792568823e-06 1.106913273929422e-06 1.084238693493944e-06 1.076434042346364e-06 1.085160654668016e-06 1.096264622191256e-06 1.074314697646628e-06 1.089866938031037e-06 1.097113596415511e-06 1.120766647488836e-06 1.104005459495738e-06 1.097479501055432e-06 1.131463761794294e-06 1.102983652856437e-06 1.095795930439181e-06 1.097053171861262e-06 1.090601074338338e-06 1.101334689224132e-06 1.068647762281216e-06 1.083351207853411e-06 1.097506498126677e-06 1.097883902900776e-06 1.110157011652291e-06 1.112460044083718e-06 1.12041519528816e-06 1.112420662252589e-06 + 1.430989630790691e-06 1.450999704388778e-06 1.389562910958375e-06 1.392730723637214e-06 1.399938824420133e-06 1.379882860419457e-06 1.403856970227935e-06 1.333068681219629e-06 1.41074086457138e-06 1.37939721867042e-06 1.363600702575241e-06 1.424144699058161e-06 1.417024069638728e-06 1.422188438127137e-06 1.507560602576064e-06 1.51243545865043e-06 1.555181196266631e-06 1.360590971444253e-06 1.332729135938848e-06 1.398598573842946e-06 1.364152272032015e-06 1.333347906751214e-06 1.284006021506912e-06 1.308057541393737e-06 1.262538191326712e-06 1.266229432417276e-06 1.265572677766613e-06 1.352568439472179e-06 1.350586028792122e-06 1.362741414823176e-06 1.375562877825587e-06 1.482600019642177e-06 1.443918392851629e-06 1.383795448006708e-06 1.465160874403182e-06 1.429550717801931e-06 1.44894235276638e-06 1.412980143555842e-06 1.636775323277107e-06 1.445566237379126e-06 1.322358556876679e-06 1.332765176442763e-06 1.431715197952599e-06 1.496431799807851e-06 1.48012272926934e-06 1.607834827055399e-06 1.410709238314212e-06 1.376542279274418e-06 1.355678753256484e-06 1.366726165130672e-06 1.354891365323851e-06 1.353339129650521e-06 1.284491926156761e-06 1.321873938309182e-06 1.296260286665074e-06 1.299639084351156e-06 1.294240405513847e-06 1.250036831379475e-06 1.229546427339301e-06 1.208954060416545e-06 1.24599462481001e-06 1.315039103388926e-06 1.337426873249115e-06 1.364385589397443e-06 1.300673289961196e-06 1.334113605366838e-06 1.381777593678635e-06 1.365633259808874e-06 1.366723793694291e-06 1.35203098494685e-06 1.302025282257091e-06 1.313980533268477e-06 1.312611118464702e-06 1.375058225505654e-06 1.287679094019722e-06 1.383484423911341e-06 1.318057751831248e-06 1.295973067527711e-06 1.317383933496785e-06 1.349575139641956e-06 1.287544503014715e-06 1.329933205340694e-06 1.356055555845614e-06 1.469400682907462e-06 1.387986067413749e-06 1.355018742543734e-06 1.539457514354581e-06 1.380398778394465e-06 1.353330070230641e-06 1.360174834985628e-06 1.332058630509891e-06 1.377527681256652e-06 1.271119288048794e-06 1.317581677540147e-06 1.356650301431728e-06 1.356918581052469e-06 1.39860049941376e-06 1.408138494696232e-06 1.438302259515467e-06 1.404348378031273e-06 + 6.718106750014385e-06 1.319462076310174e-05 6.100369205341849e-06 5.629784894267686e-06 5.987903620052748e-06 4.672475213851612e-06 4.921828548276608e-06 3.529120007783604e-06 6.711033492479146e-06 5.204535398206644e-06 9.160784401274213e-06 9.270343888090338e-06 1.084440405563214e-05 9.561446475458979e-06 1.867388533938197e-05 1.142500130590918e-05 4.494104825347733e-05 6.266010734279348e-06 3.631834919914922e-06 1.433568928632667e-05 6.472506793642196e-06 4.959567402096354e-06 3.119017765840226e-06 6.050945398072827e-06 2.557505609956934e-06 2.938738319357981e-06 2.838856602238593e-06 1.008055122042606e-05 7.969969345822392e-06 9.880591928634885e-06 5.900977480877145e-06 1.839428384187158e-05 2.686806748464221e-05 1.699427255275054e-05 2.565686928868161e-05 1.770598858641392e-05 1.902354700789033e-05 3.186910600305737e-05 4.333735410710915e-05 1.104122032558053e-05 5.185710406863109e-06 6.529927979670447e-06 1.771710907760848e-05 2.755738964133059e-05 7.00673218689829e-05 0.0004744414805468722 8.887236434773627e-06 1.731076369893003e-05 6.320687068850361e-06 9.123176912595454e-06 6.373746838761463e-06 6.12082834550165e-06 3.508131026563888e-06 1.156856517070537e-05 5.898259061609679e-06 6.321488484672955e-06 4.4329976489621e-06 2.615526611293717e-06 2.262564464672323e-06 1.861810417835841e-06 2.872217379490394e-06 4.240103191222033e-06 5.067322092600079e-06 6.708155254386838e-06 6.378807611895354e-06 7.106578610915903e-06 7.678140786282484e-06 6.983477987887454e-06 9.98075614688787e-06 9.549452585133622e-06 3.815429678866167e-06 4.912658113198631e-06 4.381464179914474e-06 9.04233492349249e-06 3.256395924466915e-06 1.35243292334053e-05 4.71429098780618e-06 3.672267258281181e-06 4.310966215115286e-06 5.404701429512215e-06 3.241480762028459e-06 4.850354834218251e-06 4.782099761513336e-06 1.600883539154552e-05 6.037752484644443e-06 5.096622007982887e-06 1.706521343081135e-05 6.209132926926486e-06 4.555819799634264e-06 4.737067499149816e-06 3.962459032891275e-06 5.867906580192539e-06 2.674573607919228e-06 4.813597996644603e-06 9.973284953446182e-06 9.356153043427184e-06 1.164969467026822e-05 1.369187601341082e-05 3.048142387740427e-05 1.92766869062666e-05 + 3.368652798840799e-05 6.728447193893317e-05 2.528668890988683e-05 2.436472800582123e-05 2.645261824341105e-05 2.021285848741172e-05 2.437951351907941e-05 1.28045894882689e-05 3.086809300612003e-05 2.146496245813978e-05 2.904079413212912e-05 4.225287318604387e-05 4.535488075774197e-05 4.042595500308721e-05 0.000107855026955761 7.516286553865825e-05 0.0002530263919862108 1.953367914886428e-05 1.208341723746287e-05 4.969409835453575e-05 2.113763758160303e-05 1.376840684841341e-05 7.221028504034166e-06 1.06059787547963e-05 5.607787116446161e-06 5.812605799349058e-06 5.750933254944357e-06 2.500293468443715e-05 2.131040030306508e-05 2.750263472961478e-05 2.15804094985117e-05 9.465330088076485e-05 0.0001046719989066247 4.616240816623929e-05 0.0001145688717230087 7.006898649919435e-05 8.384290110541315e-05 9.995160831977046e-05 0.0003431418432384703 5.250958062319455e-05 1.23331617380984e-05 1.535339867331231e-05 6.823687169976722e-05 0.0001366699370137781 0.0002420718168210101 0.001545510858054655 3.527148439630423e-05 4.171231705996092e-05 1.894203464658517e-05 2.656870582740112e-05 1.926316619815793e-05 1.882442644784987e-05 7.080313721985476e-06 1.552685325378889e-05 9.065490687021338e-06 9.782332828223161e-06 8.465994291384504e-06 4.760423564675875e-06 3.911236746034774e-06 3.317191271889897e-06 4.599362100066173e-06 1.102232787175694e-05 1.505586728001163e-05 2.258960527257159e-05 9.775914492138327e-06 1.608059126922967e-05 2.762964221147968e-05 2.346373604922292e-05 3.039163797069477e-05 2.506496928589286e-05 9.641913777613809e-06 1.197816416720343e-05 1.115327580691883e-05 3.031211670645462e-05 7.570453355754125e-06 4.183897750564824e-05 1.153359078287508e-05 8.448409392514122e-06 1.128982077958085e-05 1.710404403709731e-05 7.407976774231884e-06 1.335537928426334e-05 1.678729951137825e-05 8.237588897230808e-05 2.39117533062938e-05 1.700692505934853e-05 0.0001163864762396827 2.369390016809803e-05 1.666289340107596e-05 1.801981100868488e-05 1.342836061724029e-05 2.325743309938844e-05 6.294607743484448e-06 1.209861731865658e-05 2.716944744207694e-05 2.620225198768367e-05 4.162171158839101e-05 5.008005195961118e-05 0.0001152559873816017 6.361908135943395e-05 + 9.610650773339557e-05 0.0001928825088839403 7.865272755225305e-05 7.686413474061737e-05 8.25747466564053e-05 6.61699469475252e-05 8.027505445795668e-05 3.676010730657708e-05 9.584505977500157e-05 6.821514962496167e-05 8.608240237606424e-05 0.0001166965169332457 0.0001195371451494509 0.0001006332055233372 0.0002631498241179031 0.0001900804446748339 0.0005364047873861466 4.831397829185846e-05 3.084659729601924e-05 0.0001308464217970595 5.523019909858817e-05 3.54050942661388e-05 1.624484190898556e-05 2.982512734561737e-05 1.239239553285643e-05 1.373451041786211e-05 1.324703803362581e-05 7.112978798318181e-05 5.660225820136588e-05 7.200175275912102e-05 5.950620476014024e-05 0.0002309588110893657 0.0002557648012295743 0.0001214058790868222 0.0002771060374691103 0.0001759515729595762 0.0002119133305349408 0.0002830381044489627 0.0007528082102723488 0.0001348521835993211 3.171918649869099e-05 4.0899263463956e-05 0.0001621159096458769 0.0003037776747483178 0.0005452685323374951 0.002758516272708178 8.603012308938673e-05 0.0001123574018766504 4.704900300289694e-05 6.559051310439656e-05 4.944149649332985e-05 4.98880528176926e-05 1.638411553983588e-05 5.596505831917398e-05 2.703781539992178e-05 3.02391633297816e-05 2.285077407293556e-05 1.089085337468987e-05 8.298549502683272e-06 5.884348809104267e-06 1.08731486179181e-05 2.82689446677864e-05 4.171336209424226e-05 6.347443613918813e-05 2.939915344057908e-05 4.330327044854698e-05 7.385643876745007e-05 6.563730082831398e-05 8.431374713069317e-05 7.357906693528093e-05 2.503357302430231e-05 3.50432328275474e-05 3.020418679966497e-05 8.204022155666735e-05 1.728895687946874e-05 0.0001109514001527145 2.979947506176472e-05 2.01815018918694e-05 2.886597354034848e-05 4.697769646000438e-05 1.639091152760841e-05 3.497695958643021e-05 4.734006048678907e-05 0.00021695629781604 6.810754008057529e-05 4.630250344916931e-05 0.0002906586589368487 6.870361134758696e-05 5.031385597931148e-05 5.625229739791848e-05 3.897281453646428e-05 7.446761317453365e-05 1.409609173208537e-05 3.368417024773862e-05 7.85176168704993e-05 7.419003967612525e-05 0.0001049271378299466 0.0001263871587120491 0.0002968342574867222 0.0001687004956707483 + 2.722765964335849e-05 7.064263122913417e-05 2.486380091681895e-05 2.208280488957826e-05 2.402582740046455e-05 1.717207753415551e-05 1.851511001405015e-05 1.125858484840592e-05 2.838977430030809e-05 1.986169236545265e-05 5.264666773996396e-05 4.290525224348585e-05 5.462709721726355e-05 4.30290746802342e-05 0.0001054107213747102 4.898370568007238e-05 0.0003845812706106955 2.548003144653421e-05 1.102952340659158e-05 9.399100008877781e-05 2.715095833139003e-05 1.876707968762048e-05 9.971855931212303e-06 3.511157026281353e-05 7.67893925512908e-06 1.031174687682324e-05 9.535462098142489e-06 7.030906665050907e-05 4.315929112053141e-05 6.043180346182453e-05 2.303776923540113e-05 0.0001080297451192536 0.0002240693221864376 0.0001366417433015243 0.0001944569390790463 0.0001172281863652813 0.0001248866249738967 0.0003431212429170216 0.0003128266221281706 5.178734183530764e-05 2.181374494014676e-05 3.260846278507756e-05 0.0001148814710631996 0.000199672171261156 0.0008106461862027459 0.00643354757230874 3.910360495140708e-05 0.0001494578738281405 2.634269410783929e-05 4.960785130947443e-05 2.709922248200769e-05 2.564381222214251e-05 1.269836300821225e-05 0.0001252291048743359 3.728862063567817e-05 4.276301991623654e-05 1.993101490427307e-05 8.843982143957874e-06 6.927080619334447e-06 4.37092317895349e-06 1.127265982603376e-05 1.535598149260409e-05 1.959414815644323e-05 2.955891890366047e-05 4.32280577413735e-05 3.91738314107215e-05 3.45861348343135e-05 3.147996174135415e-05 6.041405226397956e-05 6.354367970118346e-05 1.374823669664238e-05 2.141842713854203e-05 1.689545599958819e-05 4.718631087285985e-05 1.063543102475251e-05 9.260405817812511e-05 1.857229910839919e-05 1.289806845150565e-05 1.561261710136819e-05 2.101614856542255e-05 1.040414227837516e-05 1.838350283733803e-05 1.70135198089838e-05 9.039721097181541e-05 2.375557745537549e-05 1.86569461710917e-05 8.674421017573763e-05 2.528339854279693e-05 1.630569696686734e-05 1.740648207260165e-05 1.342973020257432e-05 2.393711295667345e-05 8.056133637523999e-06 1.97933043040166e-05 6.624862415804955e-05 5.775804591934275e-05 6.519996984977183e-05 8.24078688559382e-05 0.0002853441259595968 0.0001509063843094793 + 3.184776492304309e-06 4.474506880569606e-06 3.045253492928168e-06 2.922223956147718e-06 3.014027015524334e-06 2.676123003197972e-06 2.744469341564582e-06 2.346022853316754e-06 3.200167626005168e-06 2.812702803112188e-06 3.860422012280651e-06 3.719891516595908e-06 4.046873986141009e-06 3.738811665598973e-06 5.478758049903831e-06 4.02025306200926e-06 1.117152138618849e-05 3.061987049690629e-06 2.355592554792452e-06 5.031806249888859e-06 3.12352666753668e-06 2.74803327471318e-06 2.281166533890655e-06 3.224560899184326e-06 2.120475187439297e-06 2.292029321893096e-06 2.24874047916046e-06 4.285495059264122e-06 3.573806687029446e-06 4.090640658205302e-06 2.980317059808613e-06 5.510510055373175e-06 7.974370845431622e-06 6.071204939672725e-06 7.379429552756278e-06 5.653179613318571e-06 5.835857621150353e-06 1.009027358733761e-05 9.711085734664948e-06 4.010967938228305e-06 2.836792365457086e-06 3.207369992708209e-06 5.648116403023096e-06 7.60175762337667e-06 1.877041471232133e-05 9.342890123242853e-05 3.607945846084704e-06 6.372346655680872e-06 3.081751687616929e-06 3.822394750940816e-06 3.10310987039486e-06 3.045439644466796e-06 2.427952999539684e-06 5.624413859095512e-06 3.268828248081945e-06 3.422859936819123e-06 2.728151635267295e-06 2.20082505109076e-06 2.060992073893431e-06 1.836284596379301e-06 2.332884065481267e-06 2.570930170975316e-06 2.782369030285281e-06 3.19907749712911e-06 3.445049053141247e-06 3.400267818420843e-06 3.40706520418621e-06 3.266415191660599e-06 4.082493511248231e-06 4.091553158502848e-06 2.478459734334137e-06 2.80268915275883e-06 2.630501043654476e-06 3.764356442559347e-06 2.319473761502877e-06 4.973324671198043e-06 2.711391797305396e-06 2.440566007066991e-06 2.586385924985279e-06 2.862119401925156e-06 2.308640931758532e-06 2.724687053756725e-06 2.684201149349974e-06 5.018093951036917e-06 3.016820951273758e-06 2.768534677954904e-06 5.048577921940023e-06 3.067700980352583e-06 2.635911855008999e-06 2.688837099640295e-06 2.479140576383543e-06 2.990793547041903e-06 2.146988620665979e-06 2.752793363924866e-06 4.183397138035616e-06 3.973588299288622e-06 4.312779161352864e-06 4.778339160793621e-06 9.078475152080046e-06 6.364371838429861e-06 + 1.296050243126956e-06 1.428577789397423e-06 1.260060685126518e-06 1.252103814408656e-06 1.262521848843789e-06 1.229282474923821e-06 1.245898957336067e-06 1.196871423303492e-06 1.28159980761211e-06 1.238186499108451e-06 1.334042309508732e-06 1.344186166818417e-06 1.379249450650377e-06 1.357152155989638e-06 1.577382150230733e-06 1.425043143044036e-06 2.216822378997563e-06 1.268722449765392e-06 1.19953267763151e-06 1.471088523885555e-06 1.27076472722365e-06 1.231643903309987e-06 1.182822845890996e-06 1.294965773723789e-06 1.164411401077814e-06 1.182017754786102e-06 1.177214357994671e-06 1.38803029869905e-06 1.319534458588123e-06 1.373242159985466e-06 1.256969770935257e-06 1.571508626341256e-06 1.784442783758777e-06 1.569865883510602e-06 1.748151015945609e-06 1.553709832791128e-06 1.581157235364117e-06 1.898149452728148e-06 2.105553548403805e-06 1.392602111849328e-06 1.245629064783316e-06 1.285709696929871e-06 1.564342140270014e-06 1.808238087264158e-06 2.681910022062084e-06 5.586090150444534e-06 1.340826484508284e-06 1.593755735385116e-06 1.270166984923549e-06 1.350430057556196e-06 1.269687983196377e-06 1.260967927407819e-06 1.202911857234312e-06 1.507607482409412e-06 1.30086556993092e-06 1.314603810698145e-06 1.236158340134352e-06 1.171472831629217e-06 1.15839986847277e-06 1.142204709481121e-06 1.190428527308995e-06 1.2117049941196e-06 1.23005279561994e-06 1.27210525135979e-06 1.318566948071975e-06 1.306753841134878e-06 1.300103587453805e-06 1.279211090832177e-06 1.364013876070658e-06 1.364013790805529e-06 1.199666087359219e-06 1.233349024687413e-06 1.21588041679388e-06 1.333181927520855e-06 1.187133786828554e-06 1.460927826713032e-06 1.229390118595575e-06 1.200812285162556e-06 1.213706681824078e-06 1.239458150337214e-06 1.187780990008491e-06 1.227872054698764e-06 1.225187176601139e-06 1.503943149572251e-06 1.263104604021237e-06 1.233042450365929e-06 1.539386744298099e-06 1.262399365486999e-06 1.217495714911365e-06 1.222361859731791e-06 1.200180520299909e-06 1.248897817163197e-06 1.166913051520169e-06 1.229292763582635e-06 1.3731533172745e-06 1.353270796755623e-06 1.40465758136088e-06 1.455865916710763e-06 1.861611817588482e-06 1.600650850974716e-06 + 1.207965489413709e-06 1.212314387544211e-06 1.186527498475698e-06 1.193221038420234e-06 1.195030094436333e-06 1.193770984286857e-06 1.203896687229644e-06 1.177694542775498e-06 1.196912990053534e-06 1.187882801900741e-06 1.160080643103356e-06 1.199727336143042e-06 1.195747941551417e-06 1.200593830574803e-06 1.242962518688273e-06 1.232524509120481e-06 1.317361698838226e-06 1.164485594173925e-06 1.17373515884367e-06 1.192734838895149e-06 1.165291699578574e-06 1.150977777086837e-06 1.135061900470191e-06 1.135198672841398e-06 1.12792942275064e-06 1.124977181632403e-06 1.125651095890134e-06 1.15925029575692e-06 1.155129748298123e-06 1.16577173869814e-06 1.177278264208326e-06 1.238807405101738e-06 1.249727835883618e-06 1.198479406383512e-06 1.253530564682137e-06 1.217535722020102e-06 1.228719860080218e-06 1.247878966381677e-06 1.312060589953035e-06 1.211316835281195e-06 1.142119828045907e-06 1.144690337184784e-06 1.221263438822007e-06 1.269685224514205e-06 1.346374619792812e-06 1.489466244564142e-06 1.194619420274989e-06 1.197150623966081e-06 1.160842376890514e-06 1.167477629238078e-06 1.159591743515875e-06 1.158771496534428e-06 1.130463331833198e-06 1.16217072942959e-06 1.133837269406968e-06 1.135295143228632e-06 1.129569710656142e-06 1.120478700045169e-06 1.115939554097167e-06 1.109225934214919e-06 1.120611891280987e-06 1.143767608624557e-06 1.152503116941261e-06 1.163339575782629e-06 1.136307055560337e-06 1.145141524716564e-06 1.174088673394635e-06 1.16350570067425e-06 1.165464809105288e-06 1.156092814369458e-06 1.138618955565107e-06 1.13655704581106e-06 1.140286954637304e-06 1.168328473966085e-06 1.135790562045713e-06 1.184606386317455e-06 1.141653232394901e-06 1.136337939300347e-06 1.144815659159804e-06 1.15923507593152e-06 1.136163641390908e-06 1.149122653032464e-06 1.173138294063847e-06 1.226811484400514e-06 1.186514062112565e-06 1.167348905539711e-06 1.24195878825617e-06 1.178329569029302e-06 1.174179125484898e-06 1.177758875314794e-06 1.1634338221711e-06 1.178546540359093e-06 1.132110213575288e-06 1.14003540829799e-06 1.159861561461639e-06 1.158957587676923e-06 1.187686056169923e-06 1.197048554502089e-06 1.254832191932564e-06 1.210501803683428e-06 + 1.179727721734025e-06 1.196268854641858e-06 1.160094569740977e-06 1.159046078669235e-06 1.163340044740835e-06 1.149671575717548e-06 1.156620086817384e-06 1.131680676280666e-06 1.169794060729146e-06 1.152300185935928e-06 1.161904407354086e-06 1.183950487870788e-06 1.185530393854606e-06 1.188137522589727e-06 1.226231573170367e-06 1.224417472300843e-06 1.258113664803773e-06 1.159805973927064e-06 1.134707522609801e-06 1.18286127559486e-06 1.159739074552135e-06 1.142184903102361e-06 1.109793359432842e-06 1.125434174298334e-06 1.096145410883764e-06 1.097322780196919e-06 1.096850837711827e-06 1.154362351485361e-06 1.156181642869569e-06 1.165156451321536e-06 1.159264375161229e-06 1.216869156550615e-06 1.207056568475195e-06 1.17861774029393e-06 1.21374248784889e-06 1.196295322358765e-06 1.203323460430283e-06 1.196471323794412e-06 1.27159562879342e-06 1.197110297113113e-06 1.135293121734549e-06 1.141871880605549e-06 1.199025827958167e-06 1.229053681939263e-06 1.246073621175015e-06 1.335669002955342e-06 1.183831782824996e-06 1.172903802526548e-06 1.158176347715312e-06 1.168494259573549e-06 1.156980721006562e-06 1.154472659692374e-06 1.110625323264003e-06 1.133270654207763e-06 1.122663082497866e-06 1.123644782552446e-06 1.115859852518497e-06 1.089448730340337e-06 1.081986368944854e-06 1.0743224692078e-06 1.096086222673875e-06 1.12890717218761e-06 1.141789127245829e-06 1.158089894204295e-06 1.124467974733534e-06 1.14169041154355e-06 1.167854961181547e-06 1.159514511073212e-06 1.166052960854813e-06 1.15389971000468e-06 1.119046473263552e-06 1.125669911061777e-06 1.126241230053893e-06 1.16865270172184e-06 1.112013016779656e-06 1.177006048180829e-06 1.131844079793609e-06 1.117104286407766e-06 1.130684847083785e-06 1.148377343440643e-06 1.112787863633002e-06 1.139333722477431e-06 1.145638524491233e-06 1.20802870640091e-06 1.163077339327856e-06 1.148402066775134e-06 1.23655142658663e-06 1.160080152828868e-06 1.141043284746956e-06 1.143480204746083e-06 1.130363116885746e-06 1.153569357370543e-06 1.10145924736571e-06 1.129605095684383e-06 1.158209634866125e-06 1.159192450472801e-06 1.181983080300597e-06 1.18669144200112e-06 1.205645489221752e-06 1.18773007073969e-06 + 1.12986939271309e-06 1.134984472628275e-06 1.111964579081359e-06 1.115597896728104e-06 1.117320522325826e-06 1.114785064260104e-06 1.124560085941084e-06 1.103320499851179e-06 1.11918679124301e-06 1.111489908112162e-06 1.103867944607373e-06 1.125106322774627e-06 1.125191275264115e-06 1.128246855941484e-06 1.161254534309819e-06 1.154301719097361e-06 1.198667815671683e-06 1.105966388692536e-06 1.104147985486748e-06 1.124952685671587e-06 1.105682397195551e-06 1.096385172871805e-06 1.084041468146779e-06 1.087750273853771e-06 1.077016747785819e-06 1.074908190901169e-06 1.075501593561512e-06 1.105747649887689e-06 1.102278893938546e-06 1.10941907038864e-06 1.109462345993961e-06 1.156588311346241e-06 1.154409536852086e-06 1.127089218400101e-06 1.160000342892431e-06 1.140324069837106e-06 1.147277398416691e-06 1.143645530277126e-06 1.209307402660897e-06 1.135611263691771e-06 1.091736343994398e-06 1.095196800804388e-06 1.143645267376314e-06 1.173019366973449e-06 1.20056627039844e-06 1.330681287825541e-06 1.124642970751211e-06 1.126360062997378e-06 1.104101905013977e-06 1.110507399815219e-06 1.103011291192502e-06 1.101783986712235e-06 1.081391573620749e-06 1.102429777688485e-06 1.084807951912126e-06 1.085946617962463e-06 1.081331866714663e-06 1.069511881723884e-06 1.064404685280351e-06 1.059862142938073e-06 1.068744310828151e-06 1.091063712266305e-06 1.096547279644255e-06 1.103789685430456e-06 1.087027360568982e-06 1.09629183953075e-06 1.110836606699195e-06 1.104269266249958e-06 1.108164774166198e-06 1.103065493168742e-06 1.086900212499131e-06 1.08639903828589e-06 1.088591261577676e-06 1.109236272611724e-06 1.084797744965726e-06 1.120180741054355e-06 1.090472391496178e-06 1.08574515422788e-06 1.091848918832738e-06 1.100525054198442e-06 1.085312902660007e-06 1.094965416115201e-06 1.105364312081747e-06 1.147057226091874e-06 1.11366932742385e-06 1.103926081214013e-06 1.162707150115239e-06 1.109318610303944e-06 1.104083239056308e-06 1.105521079125538e-06 1.098490201911773e-06 1.107005630274216e-06 1.080619924209714e-06 1.088894279632768e-06 1.105282024127519e-06 1.104495225945357e-06 1.122385302920748e-06 1.128344425893602e-06 1.152796489378716e-06 1.132966112038503e-06 + 1.135390650830459e-06 1.140914221764433e-06 1.120746162541764e-06 1.122510226991835e-06 1.12465338020229e-06 1.11891759502214e-06 1.124373525840383e-06 1.107428346358574e-06 1.127396345168563e-06 1.118381021569803e-06 1.107039167891344e-06 1.132717180496456e-06 1.132070348575098e-06 1.135723485035101e-06 1.170183534071612e-06 1.16141651140822e-06 1.215310742708198e-06 1.112725700025408e-06 1.108552687867359e-06 1.131630671835637e-06 1.112768512001594e-06 1.100839071455084e-06 1.08415545341245e-06 1.091123412066963e-06 1.07628324030884e-06 1.075733621291874e-06 1.07604534349548e-06 1.108331552757136e-06 1.105306221660385e-06 1.112763786892401e-06 1.11829015381204e-06 1.165781808865063e-06 1.170232888370037e-06 1.13373247145887e-06 1.173935171294715e-06 1.15023275171211e-06 1.157293496589773e-06 1.157867718148964e-06 1.219724929057975e-06 1.142474133075666e-06 1.095534738482229e-06 1.098432441892783e-06 1.154476887421652e-06 1.187201856822639e-06 1.235732247195642e-06 1.388596471585402e-06 1.132354682908954e-06 1.132429483519104e-06 1.110000189541438e-06 1.114658196854634e-06 1.108759670742643e-06 1.107810291500755e-06 1.084026518327619e-06 1.108156361340207e-06 1.088019399020368e-06 1.089137089849146e-06 1.084925244754231e-06 1.069701355049801e-06 1.064276958118171e-06 1.060366855654138e-06 1.070455134311032e-06 1.093225989734492e-06 1.101191649865996e-06 1.110734928033708e-06 1.090466344777496e-06 1.099324730802209e-06 1.118308613712315e-06 1.110908868895422e-06 1.111483499016686e-06 1.105459737971159e-06 1.087664202259475e-06 1.089589773073385e-06 1.090728602548552e-06 1.114092640364106e-06 1.085220016960875e-06 1.125367852239378e-06 1.093897068926708e-06 1.087377668795853e-06 1.09430155603718e-06 1.106915874515835e-06 1.08595333614403e-06 1.098919046427227e-06 1.112062772534728e-06 1.154490778532136e-06 1.122587480750781e-06 1.111027099653938e-06 1.170941892780775e-06 1.118422623846982e-06 1.110177777263743e-06 1.112031682737324e-06 1.102494763927098e-06 1.11560686377743e-06 1.079320483654556e-06 1.091966382205101e-06 1.107810497558148e-06 1.107183344117857e-06 1.128899999258692e-06 1.135822817133203e-06 1.169680636792236e-06 1.142146146548839e-06 + 1.17735626048443e-06 1.1921207345722e-06 1.158807236834036e-06 1.160900339414184e-06 1.163353942956746e-06 1.156992610162888e-06 1.164862624136731e-06 1.141433813245385e-06 1.166492424431453e-06 1.155919107986847e-06 1.160741632588724e-06 1.17990742865004e-06 1.184749372384886e-06 1.186029580324544e-06 1.216697446793091e-06 1.212559428864779e-06 1.246593877013424e-06 1.160439797587287e-06 1.145021039761218e-06 1.186100345051955e-06 1.159356205704398e-06 1.1425325538994e-06 1.116497042374931e-06 1.13179958916021e-06 1.103419918990767e-06 1.102380934980829e-06 1.102955906162606e-06 1.159505188752519e-06 1.157955871633476e-06 1.167975803184618e-06 1.158904041176356e-06 1.211204688544854e-06 1.211672072898295e-06 1.18498316936666e-06 1.213900212349017e-06 1.19884767357803e-06 1.203527105531066e-06 1.205053930419808e-06 1.255669946687021e-06 1.192947905792607e-06 1.136801397905174e-06 1.145082155318278e-06 1.201752551693858e-06 1.223651183934749e-06 1.246279223821034e-06 1.325876739954879e-06 1.182839911351152e-06 1.181623998647297e-06 1.158619969743313e-06 1.171039528458095e-06 1.156733679508193e-06 1.153591341562787e-06 1.115633562420726e-06 1.14569149189947e-06 1.127475609763451e-06 1.128857803678329e-06 1.118363705643333e-06 1.093304774713033e-06 1.085662077571214e-06 1.07835646190324e-06 1.095600751455095e-06 1.130923116932081e-06 1.141573925167449e-06 1.1562515425112e-06 1.130469396315448e-06 1.146880734381739e-06 1.167142638536234e-06 1.157785440852876e-06 1.167148560909936e-06 1.157026581211085e-06 1.122110177220748e-06 1.125306397398163e-06 1.12694317522255e-06 1.169049788529719e-06 1.118285069878766e-06 1.18049463893044e-06 1.132675727433252e-06 1.12167283106146e-06 1.132574226403449e-06 1.148386552074498e-06 1.119539875915621e-06 1.139544639983114e-06 1.150377574532513e-06 1.203251883907797e-06 1.16205826117266e-06 1.150956606466025e-06 1.222268402045756e-06 1.15847188197904e-06 1.146854870626157e-06 1.148587372767906e-06 1.137879152679488e-06 1.15300193215262e-06 1.108068829580588e-06 1.129184965975583e-06 1.160747430617448e-06 1.160765641827766e-06 1.184256657182914e-06 1.189368099119292e-06 1.211900048758707e-06 1.193012487021861e-06 + 1.212949015894083e-06 1.223142859885229e-06 1.178027417836347e-06 1.179773633452896e-06 1.184953362098895e-06 1.173110746321981e-06 1.190628509561975e-06 1.151994297288184e-06 1.191767154296031e-06 1.170465367295037e-06 1.180133011757789e-06 1.205891862809949e-06 1.211249784915935e-06 1.213659903243069e-06 1.289061133391556e-06 1.273500167542352e-06 1.402110047621363e-06 1.181929929927605e-06 1.154135183867311e-06 1.229825119963834e-06 1.180502092523739e-06 1.162127393428136e-06 1.128291273744253e-06 1.15287441815326e-06 1.115897703130031e-06 1.115314134381151e-06 1.115206529789248e-06 1.18751863453781e-06 1.178586849448493e-06 1.196246749657348e-06 1.179031855258472e-06 1.275843921177966e-06 1.293863872930956e-06 1.245266499694253e-06 1.29266105020065e-06 1.255069957295518e-06 1.262268511936782e-06 1.29458172537511e-06 1.424705818209304e-06 1.225630622769813e-06 1.156788574263601e-06 1.16409488981617e-06 1.262629986342745e-06 1.319621857120978e-06 1.43464331969767e-06 1.948005710517009e-06 1.208853520395792e-06 1.244949629608527e-06 1.179837310516518e-06 1.197656736451336e-06 1.177691258291702e-06 1.174471154996581e-06 1.132054418206963e-06 1.191957068158445e-06 1.149890849205804e-06 1.152150257865969e-06 1.138088371988033e-06 1.10608009151747e-06 1.098015317779755e-06 1.089270057264002e-06 1.112311672102351e-06 1.147086347685899e-06 1.159946634743392e-06 1.17688272638361e-06 1.15486789908914e-06 1.166718824663349e-06 1.1883123747225e-06 1.178302632354189e-06 1.191539787726015e-06 1.180026828251357e-06 1.13554011704764e-06 1.144158602528478e-06 1.143613815202116e-06 1.190373964732316e-06 1.130583960673448e-06 1.223379452852669e-06 1.152045054908513e-06 1.136483682273592e-06 1.149182981663444e-06 1.167490964348872e-06 1.132210732279759e-06 1.158526309552599e-06 1.163244011337383e-06 1.25145032114915e-06 1.183125611703417e-06 1.167438345106575e-06 1.296904777348118e-06 1.178664824408315e-06 1.156748446362599e-06 1.159042923859488e-06 1.146080393255033e-06 1.169292204394878e-06 1.120295266332505e-06 1.1479924211244e-06 1.185343407428263e-06 1.183243568902981e-06 1.217707410461344e-06 1.231695122783094e-06 1.298750337497268e-06 1.25406020501373e-06 + 1.204926277864615e-06 1.20028055050625e-06 1.159457852395462e-06 1.167260847978469e-06 1.171153343193509e-06 1.165759144328149e-06 1.189906768672699e-06 1.138754583962509e-06 1.175211806980769e-06 1.158048434035663e-06 1.152648025026792e-06 1.184270644216667e-06 1.183660931047825e-06 1.190139416351599e-06 1.271829596305452e-06 1.282712119632379e-06 1.355188640417282e-06 1.154460001373536e-06 1.141175335561684e-06 1.183149752392865e-06 1.153417116483979e-06 1.136492766562469e-06 1.11354115617246e-06 1.126286459651737e-06 1.101889779420162e-06 1.10280138443386e-06 1.103119302570121e-06 1.150533599059145e-06 1.149758553253832e-06 1.15984566662064e-06 1.155716734757561e-06 1.245401929139689e-06 1.235600610272058e-06 1.184354394112574e-06 1.243218498814258e-06 1.206970999589885e-06 1.217952291909796e-06 1.219383129580365e-06 1.422414133145367e-06 1.205659412306659e-06 1.129762470242213e-06 1.137148295526913e-06 1.213501450436638e-06 1.276662253246741e-06 1.341811000976634e-06 1.730290160040227e-06 1.183947185623424e-06 1.180219964425078e-06 1.152172595553225e-06 1.163527223013716e-06 1.150217340040172e-06 1.147290397796041e-06 1.112019408111564e-06 1.139512828984834e-06 1.123093994692681e-06 1.124320963441505e-06 1.11364999355601e-06 1.095842904419442e-06 1.087648058728519e-06 1.077564448337398e-06 1.09774309464683e-06 1.125656460487789e-06 1.135806449781285e-06 1.150085118695188e-06 1.125755161979214e-06 1.138672924838602e-06 1.161727688270275e-06 1.151415204958539e-06 1.158892267483225e-06 1.148180857057923e-06 1.117974463227256e-06 1.119207297506364e-06 1.121661000524909e-06 1.161493138113201e-06 1.114927460577064e-06 1.175292123178906e-06 1.126325798850303e-06 1.117195896682688e-06 1.127165592862411e-06 1.142535307252501e-06 1.115937612539142e-06 1.133644740747286e-06 1.146321171319187e-06 1.224088023832337e-06 1.162607709659369e-06 1.145855986095512e-06 1.301897739836022e-06 1.155460175539247e-06 1.143110189616436e-06 1.145833479654357e-06 1.132865122599469e-06 1.150301798702458e-06 1.105785614186061e-06 1.12312747546639e-06 1.151981841474026e-06 1.15223473073911e-06 1.18039080376775e-06 1.188547653185879e-06 1.234879043465753e-06 1.196479807674677e-06 + 1.167479194208454e-06 1.167000689861197e-06 1.129919596110085e-06 1.134733551566569e-06 1.138501559694305e-06 1.132008762283476e-06 1.152383248381739e-06 1.111290615085636e-06 1.142832388723036e-06 1.126888705016427e-06 1.123453387208428e-06 1.151221304951378e-06 1.152589511832502e-06 1.156979649863388e-06 1.228584455503778e-06 1.237137489340512e-06 1.287536573357784e-06 1.126109275162435e-06 1.112973846417731e-06 1.159650835802495e-06 1.125203578311584e-06 1.11091882359915e-06 1.08652449526403e-06 1.097703925978522e-06 1.076709111202945e-06 1.076955278733749e-06 1.076896595009202e-06 1.127330804706617e-06 1.121843588691718e-06 1.135284382058899e-06 1.127799393429996e-06 1.20708496531563e-06 1.201423030394722e-06 1.165737760544516e-06 1.204764453532903e-06 1.17863024584608e-06 1.186261531671562e-06 1.19760439787342e-06 1.3365709747859e-06 1.170692691232489e-06 1.104819347119701e-06 1.109544950139707e-06 1.183696038964399e-06 1.229022171145289e-06 1.268239638640978e-06 1.447368966012164e-06 1.151619427375294e-06 1.163966995676446e-06 1.123865118302092e-06 1.136937259005322e-06 1.122105281581298e-06 1.119874156074729e-06 1.087899939022918e-06 1.116159499048308e-06 1.094267698675822e-06 1.095485632873761e-06 1.090188590069374e-06 1.070519985546525e-06 1.065359569452085e-06 1.061665301449466e-06 1.073147032570887e-06 1.100278641530394e-06 1.109983223557265e-06 1.122187967439459e-06 1.097040602360266e-06 1.110844564777835e-06 1.132011675508693e-06 1.123050211049303e-06 1.132149051841225e-06 1.122377135232e-06 1.091913134132483e-06 1.095741907874981e-06 1.097007412909079e-06 1.132007533044543e-06 1.088200676235829e-06 1.153885492044537e-06 1.102165217758966e-06 1.091936237429536e-06 1.101814543602586e-06 1.116170576409559e-06 1.089354071837079e-06 1.108300988761357e-06 1.118260716026498e-06 1.189799867518104e-06 1.133202346181861e-06 1.118826418178287e-06 1.253207429385839e-06 1.127519809074329e-06 1.114533240809124e-06 1.116779159815451e-06 1.104969484799767e-06 1.122184443147489e-06 1.080021633015349e-06 1.099194506082313e-06 1.126794181516289e-06 1.125513982458415e-06 1.153596841163562e-06 1.162924181841163e-06 1.202975315806043e-06 1.173251025221589e-06 + 1.110066797593845e-06 1.110762767098095e-06 1.092271432412417e-06 1.094441998361617e-06 1.096281309287406e-06 1.092601323193776e-06 1.102284187481928e-06 1.081890360410398e-06 1.098457445891654e-06 1.09062588649067e-06 1.091083703386175e-06 1.104207512980793e-06 1.104488760006461e-06 1.106904402803366e-06 1.136874894669404e-06 1.142045997326591e-06 1.160478285910926e-06 1.091208778447594e-06 1.083093289722115e-06 1.103570490101902e-06 1.090683628746092e-06 1.081386162837816e-06 1.067771801643858e-06 1.076680756995074e-06 1.061392964629704e-06 1.062004088225876e-06 1.062069991064618e-06 1.090885660914864e-06 1.090197041975216e-06 1.09472266984767e-06 1.091371068184799e-06 1.126860155409304e-06 1.120527706177654e-06 1.104520306327572e-06 1.12433057175565e-06 1.111896054339923e-06 1.116127062772421e-06 1.11542501812778e-06 1.181813061634784e-06 1.11280892411969e-06 1.079351715560506e-06 1.084096552972369e-06 1.114044504646472e-06 1.136361033715616e-06 1.148594605204778e-06 1.223254493254444e-06 1.104513122740514e-06 1.10349608384297e-06 1.090184806429306e-06 1.096136914569001e-06 1.089193991887782e-06 1.087501811269931e-06 1.067985099467705e-06 1.081604956709725e-06 1.07382538061529e-06 1.07445296748665e-06 1.069705170664292e-06 1.058225734595908e-06 1.054388349075452e-06 1.04971800851672e-06 1.058864597780484e-06 1.075086391466584e-06 1.080620407378774e-06 1.088999553644499e-06 1.075162170849353e-06 1.084986081423267e-06 1.094979882765301e-06 1.089775807372462e-06 1.094112604960173e-06 1.089703509649098e-06 1.070500061928215e-06 1.072767162213495e-06 1.073214633606767e-06 1.095060852662755e-06 1.068690540506623e-06 1.100766500172767e-06 1.076692381474231e-06 1.070565517125033e-06 1.075947881901129e-06 1.084450715893581e-06 1.06937602950552e-06 1.079757939947967e-06 1.086072508371672e-06 1.119488857170836e-06 1.094092063169683e-06 1.086098976088579e-06 1.148813623785827e-06 1.09127396541453e-06 1.08415912336568e-06 1.085422823621229e-06 1.07850769381912e-06 1.088228685830472e-06 1.063398954670447e-06 1.074731997618983e-06 1.091379004947157e-06 1.091370776862277e-06 1.10282877230361e-06 1.105641359799847e-06 1.119835591367746e-06 1.108122258841604e-06 + 1.073909135840267e-06 1.078172971347158e-06 1.067504229013139e-06 1.067903852458585e-06 1.068859390329635e-06 1.06647651421099e-06 1.06962006896083e-06 1.062203409674112e-06 1.070178484496864e-06 1.066190691290103e-06 1.065482166495713e-06 1.073821565000799e-06 1.074687663304985e-06 1.075620891910489e-06 1.088407010740866e-06 1.086124074234363e-06 1.10153051302575e-06 1.065930316457298e-06 1.062383782723941e-06 1.075337362266282e-06 1.065765708574418e-06 1.06119729537113e-06 1.053740888323773e-06 1.060332881053228e-06 1.049727003987755e-06 1.050804222302304e-06 1.050572571159591e-06 1.06762829688023e-06 1.065437974290262e-06 1.068837384821109e-06 1.066894490975301e-06 1.08669332377076e-06 1.088079725874991e-06 1.077776634161864e-06 1.088992766185015e-06 1.081512447598243e-06 1.083785114985858e-06 1.085880835915987e-06 1.103646695810312e-06 1.078533333753739e-06 1.060502192729018e-06 1.06254204013112e-06 1.082903249738365e-06 1.092952048864504e-06 1.105047051197516e-06 1.152004699633835e-06 1.074195724370952e-06 1.078059970183176e-06 1.065242768660823e-06 1.069103698014828e-06 1.064737551459416e-06 1.064028843700271e-06 1.055040730335577e-06 1.068725524078218e-06 1.05923350091075e-06 1.059745795117806e-06 1.056668772037028e-06 1.048094858902004e-06 1.044831137164692e-06 1.0413780557883e-06 1.049186721502338e-06 1.05808030781418e-06 1.060846507527913e-06 1.064924077809337e-06 1.060370394156962e-06 1.063418242353009e-06 1.068207559740131e-06 1.06520074183436e-06 1.067873633076033e-06 1.066066865007542e-06 1.05561521479558e-06 1.057722414543605e-06 1.057443796526059e-06 1.067867593462779e-06 1.05436017605598e-06 1.073575205623456e-06 1.059316122820064e-06 1.05587337273505e-06 1.058510438411986e-06 1.062819432462447e-06 1.054741831651995e-06 1.060443118205967e-06 1.063878869445034e-06 1.083159020254243e-06 1.068368977286127e-06 1.063832350212124e-06 1.089756715089152e-06 1.066978143171582e-06 1.062968145504328e-06 1.063695904690576e-06 1.059878243836465e-06 1.065497784225045e-06 1.051026444542913e-06 1.058461606362471e-06 1.066972238561448e-06 1.066429391016754e-06 1.073988634914258e-06 1.076571130909088e-06 1.08812157506577e-06 1.079776918544439e-06 + 1.066312140807213e-06 1.070258576874039e-06 1.060334753333336e-06 1.060939567310015e-06 1.06180732473149e-06 1.059131747638276e-06 1.061624189446775e-06 1.053924734151224e-06 1.062975243826259e-06 1.059273131431837e-06 1.058194172287585e-06 1.066504331959095e-06 1.066819322659285e-06 1.06771499019942e-06 1.080066901693044e-06 1.076617342832265e-06 1.096535914513197e-06 1.058160325584367e-06 1.054729844796043e-06 1.066981944575218e-06 1.058074801107978e-06 1.052355440123165e-06 1.044430767649374e-06 1.05026034091793e-06 1.041055185169171e-06 1.041956714686876e-06 1.041824987169093e-06 1.05909175118768e-06 1.057381162183901e-06 1.060843942468637e-06 1.059419748372648e-06 1.078328757841973e-06 1.078590623038167e-06 1.068452538888209e-06 1.080128939179303e-06 1.072471395247021e-06 1.074931081035402e-06 1.076547093248337e-06 1.099636548929084e-06 1.070323520480088e-06 1.05081970858123e-06 1.053576671239398e-06 1.073698443931903e-06 1.08542210952578e-06 1.098175591351946e-06 1.140935303567403e-06 1.066373974012436e-06 1.068359937406171e-06 1.057381039615279e-06 1.061194550899813e-06 1.056863204951242e-06 1.056037124413933e-06 1.044868348287764e-06 1.055807686611843e-06 1.04890650831635e-06 1.049445820910933e-06 1.046238743640515e-06 1.04015006741065e-06 1.037886590893322e-06 1.03563253617267e-06 1.040048921652215e-06 1.04867540073883e-06 1.052222529551727e-06 1.05723101029298e-06 1.049881323211821e-06 1.054328507166247e-06 1.060832719446125e-06 1.057603299159382e-06 1.060238218997256e-06 1.057867038412041e-06 1.046083369260487e-06 1.047406954057806e-06 1.047597251613297e-06 1.060457179846708e-06 1.04494015573664e-06 1.065344761741471e-06 1.049396328056673e-06 1.045986092407247e-06 1.049174262135466e-06 1.054667805533427e-06 1.045276789568561e-06 1.051428149878575e-06 1.056649914232821e-06 1.07469271881655e-06 1.061100640242785e-06 1.056182156844443e-06 1.080365422012619e-06 1.059535712499837e-06 1.055860685994503e-06 1.056669049148695e-06 1.052347798236042e-06 1.05823535534455e-06 1.04207087758823e-06 1.048422561211737e-06 1.058946338616806e-06 1.058572877354891e-06 1.065844337233557e-06 1.068120067060363e-06 1.078666439724429e-06 1.070351533627445e-06 + 1.062888244973692e-06 1.067484490135939e-06 1.057727345710191e-06 1.058076279036868e-06 1.05878498857237e-06 1.057174117136128e-06 1.059913742551544e-06 1.054220504670411e-06 1.059836833405825e-06 1.056820593703378e-06 1.057479764199343e-06 1.063223486141851e-06 1.064067042477745e-06 1.064481537582651e-06 1.077235028290602e-06 1.076281760603592e-06 1.087095657936743e-06 1.05652313742155e-06 1.054057051419477e-06 1.064338167822143e-06 1.056461986337354e-06 1.052269055890065e-06 1.045545346300969e-06 1.051911031169084e-06 1.04244564624878e-06 1.043239819864539e-06 1.043041471859851e-06 1.05800681637902e-06 1.056730440041065e-06 1.059454426410866e-06 1.05701511188272e-06 1.074317280469472e-06 1.072553871495074e-06 1.06463527060896e-06 1.07409009153514e-06 1.068401793702378e-06 1.070483474308048e-06 1.07070480126481e-06 1.092695907090047e-06 1.067265625209757e-06 1.051267958018798e-06 1.053710626308657e-06 1.069190695091038e-06 1.078579753510667e-06 1.08454185543394e-06 1.106634082148616e-06 1.063211163554456e-06 1.064096071701215e-06 1.056081458727931e-06 1.059772774425483e-06 1.055714724529366e-06 1.055021058959937e-06 1.0463147610551e-06 1.055796371218776e-06 1.050819101067191e-06 1.051247465966298e-06 1.048059793617995e-06 1.041286708414191e-06 1.038953044485424e-06 1.036843869428594e-06 1.041625914410815e-06 1.049511542561277e-06 1.052249324118293e-06 1.055932472127097e-06 1.05160220797984e-06 1.054537349887141e-06 1.058703407608164e-06 1.056288908785064e-06 1.059170344319682e-06 1.057169967566551e-06 1.047330997039353e-06 1.048840886141988e-06 1.048773242473544e-06 1.059203889042237e-06 1.046046705255321e-06 1.062949202434993e-06 1.050144515346574e-06 1.047183097568904e-06 1.049899420735301e-06 1.05390546423223e-06 1.046308300445276e-06 1.051625382331167e-06 1.054935680144808e-06 1.071394901686062e-06 1.05818304163563e-06 1.054736141981039e-06 1.080437144196367e-06 1.057191063580376e-06 1.054465485594847e-06 1.05501992209156e-06 1.052292375902653e-06 1.056279472777533e-06 1.043519333165932e-06 1.04950197510334e-06 1.058011228849409e-06 1.057755888211886e-06 1.063439437842817e-06 1.065135194266986e-06 1.072574992377895e-06 1.066618256828633e-06 + 1.098126379162068e-06 1.102972376543221e-06 1.088455690023693e-06 1.088733483811666e-06 1.090220337118808e-06 1.086282026108165e-06 1.093000889795803e-06 1.078267374055031e-06 1.092438537853013e-06 1.086177107367803e-06 1.088601806031875e-06 1.097288844675859e-06 1.098222266904259e-06 1.098648491293375e-06 1.113687723375278e-06 1.119180812025888e-06 1.121719577668046e-06 1.087080800488138e-06 1.079058177921866e-06 1.098421435585806e-06 1.087212570638485e-06 1.081258492519055e-06 1.071068375324558e-06 1.075682284579216e-06 1.066219383005773e-06 1.066847659103587e-06 1.066804593108373e-06 1.088129678805672e-06 1.086701999497564e-06 1.090813714910155e-06 1.08744297833141e-06 1.109754084183123e-06 1.107086502472043e-06 1.09834510375606e-06 1.108595393262135e-06 1.103451229056418e-06 1.105640276222175e-06 1.105236670184695e-06 1.138852368853804e-06 1.102594897162135e-06 1.079207649468117e-06 1.081727919682862e-06 1.104191140299804e-06 1.112549950832431e-06 1.118560570390059e-06 1.16050640208698e-06 1.096750802176416e-06 1.09738563125461e-06 1.086461233867908e-06 1.091392586971551e-06 1.086090568591658e-06 1.085294993430352e-06 1.071142534669889e-06 1.080423626120819e-06 1.073201964629789e-06 1.073852040178735e-06 1.072630048781775e-06 1.063125594669145e-06 1.058692461697319e-06 1.055271127370361e-06 1.062704406251669e-06 1.077280952443971e-06 1.081372651867696e-06 1.086778048886572e-06 1.074228482167428e-06 1.08223516548378e-06 1.090465499231641e-06 1.08726304404172e-06 1.090747332455066e-06 1.08722458946886e-06 1.074319612826002e-06 1.076537756716789e-06 1.076543952649445e-06 1.091064795843977e-06 1.071827441023743e-06 1.096237284059498e-06 1.078124075348796e-06 1.073490025760293e-06 1.07780651958933e-06 1.083526839806837e-06 1.071991849954657e-06 1.080426038413407e-06 1.083179153482661e-06 1.107105727982116e-06 1.089067776405273e-06 1.083777494415017e-06 1.121312752871972e-06 1.087920615816529e-06 1.081993488583066e-06 1.082937956198293e-06 1.078384229913354e-06 1.086195922539446e-06 1.06799615195996e-06 1.077604210308891e-06 1.088662550330355e-06 1.088405582549967e-06 1.097244194170344e-06 1.099562492612449e-06 1.107052828075439e-06 1.101191191565931e-06 + 1.40525503766753e-06 1.399614120600745e-06 1.361716144288039e-06 1.367482767022921e-06 1.372187725223739e-06 1.362793099701776e-06 1.393943648508866e-06 1.326536292367564e-06 1.378390351192138e-06 1.357531957069114e-06 1.336619831704411e-06 1.382708639141583e-06 1.375578889906137e-06 1.381882563933345e-06 1.456614475259244e-06 1.523630352551208e-06 1.480005018095198e-06 1.33943949975901e-06 1.325601775903351e-06 1.36327209432352e-06 1.341735401894084e-06 1.31798311286957e-06 1.263846801435875e-06 1.261601290991621e-06 1.23889709868763e-06 1.23170005394968e-06 1.23347616920455e-06 1.320597448284389e-06 1.324224783161299e-06 1.33480781983053e-06 1.351452603159942e-06 1.426245280100602e-06 1.393039237740368e-06 1.351820287709415e-06 1.406044537688445e-06 1.383765102502821e-06 1.39612879124229e-06 1.376123595520085e-06 1.615474037208742e-06 1.400184508781877e-06 1.298451522302457e-06 1.304160523574183e-06 1.386114096391111e-06 1.431120779216144e-06 1.424710776021243e-06 1.59124611620598e-06 1.373793043768501e-06 1.343487259219955e-06 1.335104913735563e-06 1.340094025081839e-06 1.334277133224759e-06 1.333608778963935e-06 1.252917034122447e-06 1.264249462451517e-06 1.24434044224131e-06 1.247048906805048e-06 1.254331792210905e-06 1.212257430438513e-06 1.192614035971928e-06 1.179655015448589e-06 1.201991764787635e-06 1.299690090661443e-06 1.322352254362613e-06 1.341315893910178e-06 1.248168754131029e-06 1.301790280905379e-06 1.352792999398389e-06 1.34179428812331e-06 1.338796366212591e-06 1.321616821314819e-06 1.283836837728813e-06 1.287522167103816e-06 1.293362700494072e-06 1.346586287809259e-06 1.267547624195231e-06 1.35223600850054e-06 1.296962544472535e-06 1.273823439618127e-06 1.302432202976433e-06 1.332427792988256e-06 1.267592459441857e-06 1.314653363948537e-06 1.339895067786756e-06 1.415119008640886e-06 1.360889960722034e-06 1.3379119820911e-06 1.522492677707987e-06 1.354115042317972e-06 1.338560444708037e-06 1.343366179185068e-06 1.323236872963207e-06 1.352722392766736e-06 1.252499146175978e-06 1.295570896786558e-06 1.327174075527182e-06 1.328861273464099e-06 1.363669184684113e-06 1.370015340285136e-06 1.389994331191247e-06 1.367866715895616e-06 + 4.179696794892607e-06 7.409061907992509e-06 3.834098450283818e-06 3.587748807376556e-06 3.770645236045311e-06 3.11063229219144e-06 3.229632483225942e-06 2.551805820871778e-06 4.154062253292068e-06 3.37939970052048e-06 5.653716911524498e-06 5.51475196886031e-06 6.312478586067982e-06 5.656964331635095e-06 9.882381299064491e-06 6.49472842972898e-06 2.316966761028993e-05 4.030754929829072e-06 2.602893623304681e-06 8.157334484337753e-06 4.125368768370663e-06 3.381061571161581e-06 2.44620234113313e-06 4.274592285469225e-06 2.114739558578549e-06 2.385950587324714e-06 2.314288181537449e-06 6.340602347165714e-06 5.098661770119861e-06 6.097383909775544e-06 3.759847224671375e-06 9.788698116963701e-06 1.443424519109726e-05 9.780798173153471e-06 1.359492019403774e-05 9.662865799953124e-06 1.021247785359947e-05 1.753493630474168e-05 2.202718485122546e-05 6.361498854801084e-06 3.594781258442481e-06 4.371985923512511e-06 9.676602914510113e-06 1.448880725796187e-05 3.599715352731181e-05 0.0002417430670025311 5.330868406261402e-06 1.012284784174255e-05 4.084400442749825e-06 5.635410813553676e-06 4.11386137599834e-06 3.966848698411241e-06 2.706771578431244e-06 7.728420026609228e-06 4.262125234077985e-06 4.522100383042016e-06 3.285637184546886e-06 2.188331990282677e-06 1.946986998291322e-06 1.638267406178784e-06 2.394177514020157e-06 3.037489264556825e-06 3.417929683280363e-06 4.245061397512018e-06 4.553151370600972e-06 4.730658524465525e-06 4.739638331585638e-06 4.398524161786099e-06 6.105070610828989e-06 6.023402029597946e-06 2.835999225681007e-06 3.470980203701401e-06 3.141154678587554e-06 5.51903657708408e-06 2.524936480341466e-06 7.870091618400465e-06 3.320716565724524e-06 2.765905879442698e-06 3.069142962885962e-06 3.556734977649967e-06 2.512888631400756e-06 3.332483426987665e-06 3.186840160651627e-06 8.677778712495865e-06 3.813435153432465e-06 3.361448182914728e-06 9.086856227469298e-06 3.913027917690215e-06 3.07690284984119e-06 3.161862366596324e-06 2.80710617062141e-06 3.720856440736497e-06 2.183827987778386e-06 3.38480914763295e-06 6.214942366966625e-06 5.848989410139893e-06 6.784428478567861e-06 7.767900903843383e-06 1.640958700122042e-05 1.070365503252901e-05 + 3.070019179318706e-06 4.257631019299879e-06 2.782245317689558e-06 2.748023291587742e-06 2.820610873754958e-06 2.60289625941823e-06 2.74235597430561e-06 2.344333523751629e-06 2.973829140273665e-06 2.647735200866919e-06 2.907095407067573e-06 3.381424342308037e-06 3.494427527783728e-06 3.324457582110085e-06 5.67372734749938e-06 4.539640343637075e-06 1.074542024959158e-05 2.581143917268491e-06 2.319550592488895e-06 3.641789415809171e-06 2.63736846051188e-06 2.374522640735677e-06 2.136969939670053e-06 2.25076559701165e-06 2.078175242559155e-06 2.083127235152915e-06 2.08159949011133e-06 2.759649660788455e-06 2.635013068186254e-06 2.853189240425991e-06 2.654846927185872e-06 5.219966041636326e-06 5.562778005341329e-06 3.509108955412898e-06 5.9111826509195e-06 4.360402403591479e-06 4.841279100276097e-06 5.376515574084806e-06 1.385943364340392e-05 3.748613181642213e-06 2.319187313304383e-06 2.42399537242477e-06 4.299502270654898e-06 6.692017471721101e-06 1.035907689672655e-05 5.702642962113202e-05 3.142695753410862e-06 3.348531024016665e-06 2.558887581827207e-06 2.824399144785161e-06 2.569582823852556e-06 2.554194036719082e-06 2.129715898746554e-06 2.417350337680091e-06 2.194451507619988e-06 2.219305336836896e-06 2.176811825904679e-06 2.045405793182908e-06 2.015534008137365e-06 1.99451150706409e-06 2.037662156340048e-06 2.274877438424028e-06 2.420581580508951e-06 2.687211647867116e-06 2.21923780685529e-06 2.447808284955499e-06 2.866744864604698e-06 2.717652179740071e-06 2.954932234899843e-06 2.762359919472601e-06 2.223693485348122e-06 2.304916222328757e-06 2.27789928430866e-06 2.957263426139889e-06 2.149512294380429e-06 3.361213082087033e-06 2.291632497986029e-06 2.1806459820084e-06 2.284784493156167e-06 2.494755761972556e-06 2.14398873765731e-06 2.35932055048238e-06 2.485346325187265e-06 4.787994782873284e-06 2.736069660613794e-06 2.493098847367037e-06 5.956402088003188e-06 2.728252887607141e-06 2.480214682520909e-06 2.527797605011983e-06 2.365000966619846e-06 2.711672792088393e-06 2.10342287232379e-06 2.310916457304302e-06 2.837203460615001e-06 2.804957716762146e-06 3.361577341820521e-06 3.659864010074898e-06 5.922345913234039e-06 4.125352749184685e-06 + 0.00167494683792313 0.00325430226843082 0.001338534887153742 0.001321011412130702 0.001420901650774908 0.00114875680753812 0.001414283288184492 0.000621410977657888 0.001654720750536853 0.001167036974564439 0.001340792905494936 0.001974572387815954 0.001958781947450916 0.001666515408627944 0.004359391635437859 0.003377978567355555 0.008151213894725728 0.000763789070457932 0.0005049416498490444 0.002015196776746109 0.0008839558336504183 0.0005468784152569128 0.000228365085536808 0.0004043929422437031 0.0001669806632946802 0.0001810496716458943 0.0001751470580799719 0.001037729489624439 0.0008496679032745647 0.001079744421492279 0.0009830407622111181 0.003757668696557914 0.003837537847454442 0.001766293073334424 0.004270839915342606 0.002735830979499809 0.003343845302055115 0.004069494355452008 0.01213052203688036 0.002268711565221793 0.0004645592157608291 0.0005969375456764681 0.002506697766914812 0.004722568630350921 0.007702232943374909 0.03801276198391967 0.001410958799858975 0.0016027193813688 0.0007363111449745219 0.0009981561134200234 0.0007761049708303602 0.0007886287349982979 0.0002213153304424509 0.0007499555776675493 0.0003584335870563393 0.0004032396052195963 0.0003116955931474763 0.0001367416857362969 9.752170920762637e-05 6.242007604839728e-05 0.000132407129754597 0.0004275547995646889 0.0006598981480223642 0.001024337420901134 0.0003909879274850425 0.0006239366849776218 0.001200226936965976 0.001056580081900904 0.001290639409340599 0.001088968175686489 0.0003721966348706474 0.0005182153423675118 0.0004536072575405115 0.001295848678104505 0.0002446521650369959 0.00167489232903506 0.0004407899390308501 0.0002881282433122578 0.0004379153247633383 0.0007538027906655032 0.00022981255479948 0.0005396456890345291 0.0007831507930617931 0.003589134477770983 0.001143676961678608 0.0007544134321690876 0.004988498690352117 0.001145553275492261 0.0008450723903408175 0.0009523520304668409 0.0006465091889538144 0.001261579227602283 0.0001971810746539404 0.0005036932977304787 0.001170118402235687 0.001116870660716529 0.001650394860376991 0.00197488487052766 0.004389925955422314 0.002521177922130136 + 0.0003124049752578628 0.0005359427401145922 0.0002501534845151809 0.0002445354878517492 0.0002623936380103942 0.0002103839179738998 0.0002522061188727776 0.0001231549808267118 0.0003007093274050021 0.000217664162292408 0.000260915537765527 0.0003609599736265068 0.0003641486336292132 0.0003242609655167428 0.0007433917180943439 0.000589352862794712 0.001364597279533086 0.0001687480221708171 0.0001082409811647977 0.0003892520728285831 0.0001877257311129199 0.0001192246648251682 5.366370741555215e-05 0.000100587362013016 4.116401575515738e-05 4.453011137428575e-05 4.333912951182128e-05 0.0002267506960578203 0.0001848350416508993 0.0002330708365079204 0.0002006803753538122 0.0006580523295625085 0.000734719557645036 0.0003876071574016038 0.0007705955250454366 0.000510278650406093 0.0005969503534082321 0.0008403734778710259 0.001740753039772613 0.0004132999156389872 0.0001032032081731415 0.0001332546456893624 0.00048724668685729 0.0008508114600722649 0.001701117410824793 0.01014035543276925 0.000285067379165227 0.0003764859771706597 0.0001631799227190811 0.0002185435192387786 0.0001685518852028167 0.0001679492634387714 5.371315153723799e-05 0.0002324992398499148 9.460877017275493e-05 0.0001058443039525514 7.168082418473887e-05 3.625044492139295e-05 2.759047806932813e-05 1.839688064819711e-05 3.66876155979412e-05 9.230481160926729e-05 0.0001367311379851799 0.0002075066259408231 0.0001053625580311746 0.000141850348502004 0.0002430727039630654 0.0002140216892527746 0.0002615104166139304 0.0002275881448738915 7.898145958051828e-05 0.0001046045183841215 9.477829905790713e-05 0.000259746394348781 5.687414119037726e-05 0.0003397958206718954 9.62345924548913e-05 6.560013452272528e-05 9.488693588721731e-05 0.0001569468985103128 5.468840212330406e-05 0.0001160566855951117 0.0001593102022852122 0.0006080558355314736 0.0002261604665214634 0.0001574098679526514 0.0008224916161054807 0.0002251686018368559 0.0001643620846252247 0.0001812572614312558 0.0001279134952909544 0.0002342063612275069 4.678627590237738e-05 0.0001043736661046069 0.0002428335146191785 0.000231464313451113 0.0003267684733003762 0.0003826231486883103 0.0008372676080092845 0.0004964450164628431 + 3.40447620175155e-05 4.745679109419143e-05 2.721079540890514e-05 2.705099899458219e-05 2.862034359907284e-05 2.415031855207417e-05 2.827248542303096e-05 1.612241241844004e-05 3.166547575972345e-05 2.456521335147954e-05 2.411284771142164e-05 3.63759347195014e-05 3.585828241980948e-05 3.430046712971091e-05 6.415658339875563e-05 5.755185147648945e-05 8.738647712469572e-05 2.001473096768791e-05 1.499639141044895e-05 3.354756237428091e-05 2.149705600373863e-05 1.456604265470673e-05 8.03141521288353e-06 9.284549534527287e-06 6.749021750351858e-06 6.752771255946755e-06 6.743222911609337e-06 1.85206909506519e-05 1.818429307931524e-05 2.154576227653138e-05 2.337692230724997e-05 5.692833866000058e-05 5.132832731291614e-05 2.807404349702836e-05 5.758090585494813e-05 4.274687990601933e-05 4.92692821794094e-05 4.441721495140882e-05 0.000114051178101704 4.106940743398013e-05 1.188347539127221e-05 1.35381016228564e-05 4.192819447546015e-05 6.575728115976176e-05 7.02935567833407e-05 0.0001441011386109636 3.117263742424825e-05 2.487413010676676e-05 1.90767236727396e-05 2.210172164041069e-05 1.928969943421066e-05 1.919903092684194e-05 7.596269732346173e-06 1.156381575739829e-05 8.308424458647323e-06 8.687119873229676e-06 8.315823833981995e-06 5.947166172859397e-06 5.066909935180774e-06 4.154345859319619e-06 5.690348920950328e-06 1.166422780229937e-05 1.608844480216476e-05 2.261065818487396e-05 8.683005887633044e-06 1.350780897269033e-05 2.629494337114124e-05 2.304377471062935e-05 2.40069932360143e-05 1.914019859583505e-05 1.014284676159605e-05 1.140676207000979e-05 1.138410053158623e-05 2.59779013092043e-05 8.307911585347938e-06 2.871417006033994e-05 1.154810834691489e-05 8.936691191507862e-06 1.197889551107778e-05 1.845681339673888e-05 8.16167644934751e-06 1.408429831428748e-05 1.946708770006467e-05 5.289391770446628e-05 2.581228668674385e-05 1.914498976063328e-05 7.17776126251124e-05 2.518096133030667e-05 1.966072692738408e-05 2.113499982669964e-05 1.60310318477741e-05 2.53628727477917e-05 7.391015103053178e-06 1.191563441693688e-05 2.065309743670696e-05 2.077741896044927e-05 3.15502878649454e-05 3.490503783964982e-05 5.230014541268702e-05 3.68036774247571e-05 + 2.882244352520047e-06 3.627444186804496e-06 2.494188251489504e-06 2.497803222922812e-06 2.568306825878608e-06 2.387261361036508e-06 2.621157491944359e-06 2.056128252547751e-06 2.693995241997982e-06 2.383406197736804e-06 2.525781937379179e-06 3.039313114072684e-06 3.179789690221924e-06 3.081789980541316e-06 4.696888744604166e-06 3.98304423399054e-06 8.738600728364077e-06 2.300307075486785e-06 2.025160689811401e-06 3.460237206098782e-06 2.341373765091248e-06 1.9697924535933e-06 1.604055384518688e-06 1.873473522095992e-06 1.512255707325494e-06 1.526000403373473e-06 1.520139079502769e-06 2.500496350421599e-06 2.303125928193595e-06 2.621091041987711e-06 2.387228690281518e-06 4.538394611230956e-06 5.536778930448349e-06 3.622638416800328e-06 5.481651019323408e-06 4.13125786025148e-06 4.419290164037193e-06 5.830555064534337e-06 8.160359762143798e-06 3.38592606752286e-06 1.87170733312314e-06 2.023279773055719e-06 4.184991327704779e-06 5.985764689242501e-06 1.156464345708486e-05 3.711726031951912e-05 2.937933929914038e-06 3.543681993178893e-06 2.256197900507573e-06 2.602636529402957e-06 2.248371485435996e-06 2.21399931277233e-06 1.615268889310073e-06 2.434710498988579e-06 1.8437049646991e-06 1.886007606088924e-06 1.696268768114351e-06 1.469349186322688e-06 1.413946733919147e-06 1.365375950967973e-06 1.493557768128539e-06 1.803435523584085e-06 2.01151436129976e-06 2.351319025706289e-06 1.898632131513978e-06 2.073433634564026e-06 2.587548856070043e-06 2.383875909117705e-06 2.659103245150618e-06 2.434445384835726e-06 1.705068228829987e-06 1.789889068959383e-06 1.777893047005819e-06 2.651397061015359e-06 1.623082010127064e-06 3.225353715663459e-06 1.822074050750189e-06 1.668821848710422e-06 1.822876242840721e-06 2.137692600712171e-06 1.624668300337362e-06 1.934690157412433e-06 2.189146083964033e-06 4.11651514298228e-06 2.488585202797822e-06 2.180432471021732e-06 4.675817535826354e-06 2.440389842206514e-06 2.172193141802836e-06 2.228748073207498e-06 2.001056060407791e-06 2.388474698022947e-06 1.549152599977788e-06 1.816233250906407e-06 2.532442607616758e-06 2.482036549622535e-06 3.16405503397732e-06 3.476243392697143e-06 5.962884447541228e-06 4.117806781778199e-06 + 1.300663324599327e-06 1.282808568703331e-06 1.254661867733375e-06 1.264590423488698e-06 1.267554495143486e-06 1.267060383725038e-06 1.309211299371782e-06 1.240499770460701e-06 1.270294546884543e-06 1.256277514016801e-06 1.213715023595796e-06 1.269889288835202e-06 1.260167451277994e-06 1.269708818085746e-06 1.33856479855865e-06 1.41444066237284e-06 1.4206055531929e-06 1.222266192257848e-06 1.236296919060464e-06 1.246079865069305e-06 1.223676544981345e-06 1.205146539007274e-06 1.18638043034025e-06 1.190143844809199e-06 1.176992000750943e-06 1.178141204150052e-06 1.178318960626257e-06 1.212834312980249e-06 1.209103409394174e-06 1.218460504048835e-06 1.241941280483161e-06 1.314536898888718e-06 1.305471831969385e-06 1.247254354908023e-06 1.315091266107515e-06 1.275249314147686e-06 1.290600160075428e-06 1.298714114028598e-06 1.536550978897822e-06 1.285349430446558e-06 1.197028097976727e-06 1.20019732463561e-06 1.279529188380479e-06 1.341658377285171e-06 1.42301126704325e-06 1.778879052949378e-06 1.261700401045118e-06 1.245717326625595e-06 1.21697615362848e-06 1.22094515297988e-06 1.21544006503882e-06 1.214877496380495e-06 1.184905965345706e-06 1.206336627035398e-06 1.185820284632655e-06 1.187057382168177e-06 1.185267016978742e-06 1.171537405753043e-06 1.162902975693214e-06 1.152400088244576e-06 1.169475609685833e-06 1.196445104767463e-06 1.207291894900209e-06 1.221172261978154e-06 1.188021869324984e-06 1.200937390422041e-06 1.234794734017441e-06 1.220952498215411e-06 1.218487135190571e-06 1.210109438432028e-06 1.190865276612385e-06 1.191600858874153e-06 1.193449790548584e-06 1.223751986856314e-06 1.187510530797908e-06 1.235826989187672e-06 1.195739699255682e-06 1.189335577578277e-06 1.197623848980811e-06 1.216576677620651e-06 1.187921721879093e-06 1.202900591579237e-06 1.236487946698617e-06 1.300143523508268e-06 1.254604214295796e-06 1.228438325284742e-06 1.403264068500221e-06 1.243402039108332e-06 1.237818224808507e-06 1.242526835198987e-06 1.223438914621511e-06 1.243991704313885e-06 1.180563899083609e-06 1.194169868767858e-06 1.213204193106776e-06 1.21239428096942e-06 1.244859685556321e-06 1.253723368677129e-06 1.308849579828575e-06 1.260876924646936e-06 + 1.22972559779555e-06 1.255039762781962e-06 1.198935478896601e-06 1.197051915369229e-06 1.203155861162486e-06 1.184093278538967e-06 1.203088658030538e-06 1.161273885941227e-06 1.212649536341814e-06 1.18781353819486e-06 1.201218324808906e-06 1.235364223362012e-06 1.237015684552034e-06 1.240519306833221e-06 1.298343670796953e-06 1.30945476151112e-06 1.337876913254377e-06 1.194439263940694e-06 1.16432662089494e-06 1.229533395985527e-06 1.194698565853969e-06 1.171176176484323e-06 1.135809700514301e-06 1.172769845680932e-06 1.120514511399051e-06 1.126023107644869e-06 1.124518057338264e-06 1.201233025938109e-06 1.196827653870969e-06 1.207828692173507e-06 1.196267547243224e-06 1.283389154949077e-06 1.261469222413325e-06 1.225532846760302e-06 1.27525429149955e-06 1.250397886565224e-06 1.262596136086813e-06 1.242664332323784e-06 1.386376769829667e-06 1.254480526569068e-06 1.170569824182621e-06 1.182981620218015e-06 1.253637606168923e-06 1.297838922553751e-06 1.30259020902912e-06 1.430777412991802e-06 1.233406353051691e-06 1.22236825639277e-06 1.192264429406009e-06 1.209415946945569e-06 1.190716620413923e-06 1.18696992856826e-06 1.143311248341661e-06 1.189851651872686e-06 1.169861857164278e-06 1.171971781843695e-06 1.154839814887509e-06 1.116072311901917e-06 1.105695218939218e-06 1.095071525014646e-06 1.125493497511343e-06 1.156565861748504e-06 1.169996544092555e-06 1.192548964468187e-06 1.173237585305742e-06 1.186238229422543e-06 1.208195712365523e-06 1.194701980011814e-06 1.207353655274801e-06 1.198732768159516e-06 1.146161821452552e-06 1.159958173957421e-06 1.155747696657272e-06 1.208764089710712e-06 1.138680477907883e-06 1.221771992021559e-06 1.164036884659936e-06 1.146472733637438e-06 1.158370473319792e-06 1.178527398337792e-06 1.139780133385671e-06 1.167974069460342e-06 1.177838345967075e-06 1.271338454955639e-06 1.202624197560453e-06 1.180074633566619e-06 1.323634453598288e-06 1.197982804512776e-06 1.172429925588858e-06 1.175962026422894e-06 1.157842135057763e-06 1.189760581610244e-06 1.124725216072875e-06 1.16175053221923e-06 1.202233612218606e-06 1.201469515876852e-06 1.22858888929045e-06 1.235793011034048e-06 1.257114220720723e-06 1.234861731091996e-06 + 1.129945232491991e-06 1.135725923973041e-06 1.113625259563378e-06 1.115757115144334e-06 1.117448690024503e-06 1.113382879225355e-06 1.123892047871777e-06 1.102737869018711e-06 1.119403506777417e-06 1.112246238221815e-06 1.109970739321398e-06 1.125775291654918e-06 1.127956274160624e-06 1.12943620678152e-06 1.164976488610137e-06 1.157680978636222e-06 1.212237805248151e-06 1.110639479051656e-06 1.104860960055021e-06 1.134008812186948e-06 1.110255997360809e-06 1.101981126794271e-06 1.089655935260225e-06 1.091990721846514e-06 1.081341451936169e-06 1.079974936146755e-06 1.080589612456606e-06 1.112489499632829e-06 1.108397803761818e-06 1.11669517011137e-06 1.112335471731285e-06 1.160531951427402e-06 1.168878048574129e-06 1.139798001759118e-06 1.170926777760428e-06 1.149167875524881e-06 1.154622552235196e-06 1.162513111552244e-06 1.222373274600841e-06 1.135842484956129e-06 1.097730784493933e-06 1.100754115412883e-06 1.152727124420494e-06 1.182840902558269e-06 1.217135314313111e-06 1.338281789386997e-06 1.126477814139548e-06 1.138706117842503e-06 1.109244715635782e-06 1.117214694090762e-06 1.108273194105891e-06 1.106998588795705e-06 1.086812662975944e-06 1.109826627043731e-06 1.089807582843605e-06 1.090925429991785e-06 1.086254258098052e-06 1.07400261128987e-06 1.067885534666857e-06 1.061290802795156e-06 1.074474390350133e-06 1.096930173360988e-06 1.101840503281437e-06 1.108571026975369e-06 1.092045966544219e-06 1.101517923984829e-06 1.114714013539242e-06 1.109120518094642e-06 1.11502926358753e-06 1.109487406836251e-06 1.092961483095678e-06 1.092528151502847e-06 1.094774873422466e-06 1.114711061234175e-06 1.090541676518342e-06 1.129823367307381e-06 1.096614830942144e-06 1.091699147082181e-06 1.097660828008884e-06 1.105216870911363e-06 1.090994777186438e-06 1.100670580456153e-06 1.107953821133378e-06 1.149366507746663e-06 1.115343287949599e-06 1.107449161708018e-06 1.167347431163535e-06 1.112202134834206e-06 1.106403303197112e-06 1.107543511125186e-06 1.101424203397983e-06 1.109719619307725e-06 1.084919489358072e-06 1.095134877004966e-06 1.112131023717211e-06 1.111091016525734e-06 1.128666848870807e-06 1.135833532117658e-06 1.169389982180746e-06 1.146217371683633e-06 + 1.101139048387267e-06 1.10194528701868e-06 1.089383331986937e-06 1.089924950292698e-06 1.091482104698116e-06 1.087637713226286e-06 1.096106885256631e-06 1.080141899478804e-06 1.09353547372848e-06 1.087164349655723e-06 1.082930964457773e-06 1.097287018581028e-06 1.096906675712717e-06 1.09893895761104e-06 1.122211806148243e-06 1.125981551552968e-06 1.145105176902916e-06 1.086507538161641e-06 1.081313206086065e-06 1.096152058011057e-06 1.086492716240173e-06 1.078464599402196e-06 1.065810987910254e-06 1.07283488404164e-06 1.060945621134124e-06 1.061183176886971e-06 1.061144111247359e-06 1.082996227808053e-06 1.081723247864375e-06 1.086045436693439e-06 1.088716000907652e-06 1.115989226363467e-06 1.115678184504532e-06 1.097560154761368e-06 1.117905249259366e-06 1.105346466800938e-06 1.109074290184253e-06 1.110655290403884e-06 1.156153697223772e-06 1.103227251775252e-06 1.074954976587605e-06 1.077197797627605e-06 1.107455439353089e-06 1.126942047235957e-06 1.143781774182173e-06 1.213454142501291e-06 1.097070819966461e-06 1.097187045218107e-06 1.0849283533787e-06 1.087496507068408e-06 1.084141377560854e-06 1.083453291528258e-06 1.066806539995468e-06 1.081838913563615e-06 1.070787710943932e-06 1.071437484512217e-06 1.068417532223975e-06 1.057680833582708e-06 1.054240243547611e-06 1.051578635724582e-06 1.058585496593878e-06 1.072585998684872e-06 1.078614680238843e-06 1.08528509201733e-06 1.072219582454181e-06 1.077821575989901e-06 1.089700504053326e-06 1.08546122135067e-06 1.085461150296396e-06 1.08136831045158e-06 1.068303163265227e-06 1.0706137913985e-06 1.070866076702259e-06 1.087445241410023e-06 1.066589923937045e-06 1.092819164938419e-06 1.073524714456653e-06 1.068424282379965e-06 1.073419404917786e-06 1.082501420057724e-06 1.067158532208623e-06 1.077025419959909e-06 1.084216396662896e-06 1.109474833782542e-06 1.090689423222102e-06 1.084411888285786e-06 1.1297838682367e-06 1.088799699289211e-06 1.082574186739294e-06 1.083529227230429e-06 1.078094598483403e-06 1.086548763851169e-06 1.062669056750565e-06 1.072084174325028e-06 1.082842359778624e-06 1.082673826147129e-06 1.095098372871917e-06 1.098346476879897e-06 1.115553008190773e-06 1.101674811820885e-06 + 1.127194348526928e-06 1.13492387754377e-06 1.110366127932139e-06 1.111459468461362e-06 1.113440333710969e-06 1.107874496142358e-06 1.118746979500429e-06 1.096870903438685e-06 1.11592244422809e-06 1.107776768094482e-06 1.107786246734577e-06 1.125755851205668e-06 1.129084346018772e-06 1.13035770787917e-06 1.160386803533697e-06 1.164486619131821e-06 1.192659787818684e-06 1.109557279832529e-06 1.100096165274067e-06 1.12936568896771e-06 1.109119398989833e-06 1.095564552855421e-06 1.07966993567743e-06 1.091816816511937e-06 1.071838468647002e-06 1.074277378165789e-06 1.073976243048946e-06 1.106990822563603e-06 1.105316851379712e-06 1.113107281014436e-06 1.110375926316465e-06 1.152915292124135e-06 1.151813144417702e-06 1.127132724931812e-06 1.154204781528279e-06 1.141085977707235e-06 1.14530643813282e-06 1.144432182798027e-06 1.21249736295681e-06 1.136021310799151e-06 1.090995112917881e-06 1.096634779429451e-06 1.143572267991999e-06 1.1643326232047e-06 1.189835129977723e-06 1.267594061715727e-06 1.127804361900075e-06 1.12424216958118e-06 1.107505786634988e-06 1.115730203338217e-06 1.10605174796774e-06 1.104048806155333e-06 1.08049528435572e-06 1.102290749344093e-06 1.090609771381423e-06 1.091474747028087e-06 1.082999048662714e-06 1.070069885145131e-06 1.065130177835272e-06 1.059378476497841e-06 1.071985032297107e-06 1.087695043366921e-06 1.095670896233969e-06 1.106844720766276e-06 1.092401937796694e-06 1.098252013775891e-06 1.115453095223984e-06 1.107756169460572e-06 1.112583163376257e-06 1.10489122562285e-06 1.082546674524565e-06 1.084176176391338e-06 1.085028685565703e-06 1.115136299745245e-06 1.080665775532452e-06 1.123887887644059e-06 1.088344095734328e-06 1.08249568953056e-06 1.08876016113868e-06 1.101378266810116e-06 1.08139011167907e-06 1.09341964460441e-06 1.104385237482575e-06 1.145066132579586e-06 1.112794652868843e-06 1.104389525607985e-06 1.171979992165006e-06 1.110178601493317e-06 1.102016170761999e-06 1.103084784404018e-06 1.096252518095753e-06 1.10642912432013e-06 1.074169247772261e-06 1.086194842514487e-06 1.107554616908146e-06 1.107455886995012e-06 1.128032621977582e-06 1.132592540642463e-06 1.151748445948897e-06 1.134720562845359e-06 + 1.139561113916443e-06 1.143921636526102e-06 1.120095390660936e-06 1.120147473443467e-06 1.122862215652276e-06 1.116267952738781e-06 1.129133707422625e-06 1.106386235960599e-06 1.126516153249213e-06 1.115697529030513e-06 1.117224655899918e-06 1.135260198736887e-06 1.138035358394518e-06 1.139732171751007e-06 1.181923629189896e-06 1.183263968584924e-06 1.2365402248804e-06 1.120965645640126e-06 1.108705706798219e-06 1.144568255284639e-06 1.120492981954158e-06 1.108320457632317e-06 1.088529113957293e-06 1.101619755417005e-06 1.081456119322866e-06 1.082133849195088e-06 1.081853177709036e-06 1.118902517305287e-06 1.115342008972675e-06 1.124719634759686e-06 1.121244562085622e-06 1.172210497557558e-06 1.177809874519653e-06 1.149203585626424e-06 1.179047556476576e-06 1.159000330375193e-06 1.163475971566186e-06 1.173305577140127e-06 1.263298010201197e-06 1.145809250147067e-06 1.103559991832981e-06 1.107259929966631e-06 1.163027476991374e-06 1.194519404279504e-06 1.23542062979709e-06 1.444340464118454e-06 1.137242470861111e-06 1.147686843339102e-06 1.118941979072474e-06 1.126686829167056e-06 1.117607766332185e-06 1.116089183739177e-06 1.090739932152474e-06 1.119752155886999e-06 1.100134383591467e-06 1.101142899528895e-06 1.094262827905368e-06 1.077457469023102e-06 1.072679751246142e-06 1.067398713416878e-06 1.079993666053269e-06 1.09927088232098e-06 1.108055464271729e-06 1.118369169716971e-06 1.102424523224954e-06 1.108429874108197e-06 1.125470664220529e-06 1.118953910861364e-06 1.122952404841726e-06 1.115318696065515e-06 1.092535399038752e-06 1.096709866033052e-06 1.096769878472514e-06 1.124535010887939e-06 1.089767902584526e-06 1.13965339565425e-06 1.101156570371131e-06 1.092834068572301e-06 1.100548082888508e-06 1.113448014677942e-06 1.090669668357691e-06 1.106110484982992e-06 1.113266971941584e-06 1.158852750648975e-06 1.12318304346104e-06 1.114954297776194e-06 1.193626651740942e-06 1.120982595637088e-06 1.109868328796892e-06 1.1107632360563e-06 1.104585066968866e-06 1.115944328944352e-06 1.084070319734565e-06 1.098896277085259e-06 1.118305313241308e-06 1.117612690393344e-06 1.139713486253413e-06 1.146722976130832e-06 1.178810681068398e-06 1.155952684683825e-06 + 1.147466736739489e-06 1.152365726397875e-06 1.125467520068923e-06 1.127689074564842e-06 1.129984113390492e-06 1.124157591902986e-06 1.138348764584407e-06 1.108413201222902e-06 1.132609696696818e-06 1.122999933045321e-06 1.12270433305639e-06 1.141619591749077e-06 1.143938618497486e-06 1.146572891741471e-06 1.191374314757354e-06 1.193564054702279e-06 1.232351438673618e-06 1.124372143834762e-06 1.113069798108768e-06 1.14382752514075e-06 1.123758291754484e-06 1.110643964352676e-06 1.091390537055759e-06 1.104243256833115e-06 1.082256204654186e-06 1.084381942462187e-06 1.084290794040044e-06 1.122778513718004e-06 1.120922661357326e-06 1.128542088224549e-06 1.125053298522971e-06 1.178391551448499e-06 1.175764751337738e-06 1.145587987139152e-06 1.179356560854217e-06 1.158494669084575e-06 1.164675865084064e-06 1.167720935058014e-06 1.254688331897569e-06 1.154673675785034e-06 1.10546621812091e-06 1.111704019507442e-06 1.162357067485686e-06 1.196287268356855e-06 1.23403371610209e-06 1.445103153585592e-06 1.143308926643272e-06 1.144041945622121e-06 1.122525791430462e-06 1.130800002968613e-06 1.121087986888369e-06 1.119068425481373e-06 1.091852457335563e-06 1.115390347194989e-06 1.100885722138401e-06 1.101928045699196e-06 1.093869450130569e-06 1.079188663766217e-06 1.072470240615075e-06 1.065001569600099e-06 1.079794728298111e-06 1.101587457696951e-06 1.110499134426846e-06 1.121424496375312e-06 1.103174149363895e-06 1.113450956324868e-06 1.129619359829803e-06 1.12229407278619e-06 1.127510785181585e-06 1.12046544131772e-06 1.095001479711755e-06 1.096835319458478e-06 1.098290354661913e-06 1.129273272226783e-06 1.092599497098945e-06 1.138869045291813e-06 1.102425979837562e-06 1.09485180743718e-06 1.102879760850328e-06 1.116108144572081e-06 1.093520230810441e-06 1.108327264631725e-06 1.118604810557144e-06 1.166548976527793e-06 1.127985186144542e-06 1.118819294987361e-06 1.205965556749788e-06 1.124776701999508e-06 1.115740204227222e-06 1.117034841513487e-06 1.108847143882485e-06 1.120889123740199e-06 1.084936286588345e-06 1.099736977039356e-06 1.123108177125687e-06 1.122932587804826e-06 1.142280321886346e-06 1.147399164125318e-06 1.175682335485817e-06 1.152279697436143e-06 + 1.141478577437738e-06 1.153612544158023e-06 1.120610733096328e-06 1.119985256536893e-06 1.123618176279706e-06 1.113205868819023e-06 1.124418147924189e-06 1.100786064966996e-06 1.128781207171414e-06 1.114346943609235e-06 1.118782464004653e-06 1.141335289389644e-06 1.145545585501395e-06 1.147085754382715e-06 1.190154144126154e-06 1.176722594919966e-06 1.243339113443653e-06 1.121282988236771e-06 1.104074314639547e-06 1.153227703554194e-06 1.120572438395584e-06 1.106128070915702e-06 1.084125614170262e-06 1.102200961611288e-06 1.075320639642996e-06 1.077577536534591e-06 1.076987729220491e-06 1.125220592257392e-06 1.118112891163037e-06 1.130465683729653e-06 1.121725372144056e-06 1.183952717198622e-06 1.190758492697341e-06 1.159660570237975e-06 1.191702846625731e-06 1.170804655004076e-06 1.176099111432904e-06 1.187514602207784e-06 1.248956202459794e-06 1.154725033813975e-06 1.102533293106944e-06 1.108144029871028e-06 1.175098457650847e-06 1.205167103890403e-06 1.259065784964264e-06 1.511493463723923e-06 1.143696449545928e-06 1.159379451109999e-06 1.119038008923212e-06 1.131477514348944e-06 1.117354923252378e-06 1.115154255160178e-06 1.088297004514516e-06 1.123541732539479e-06 1.099550523520065e-06 1.100936543707576e-06 1.092743872277424e-06 1.071429736043683e-06 1.065572504899137e-06 1.060965360011323e-06 1.074698985803479e-06 1.096089434327041e-06 1.105093545561431e-06 1.117759914848193e-06 1.102625503790478e-06 1.110563438544432e-06 1.127543548307131e-06 1.118632482643989e-06 1.127045628379619e-06 1.11977256267437e-06 1.088614524746845e-06 1.094041181204375e-06 1.093600658919058e-06 1.126991733713112e-06 1.085699850023047e-06 1.147670783296917e-06 1.099154200545627e-06 1.089667534870387e-06 1.097480375022997e-06 1.111234169570707e-06 1.086856576293371e-06 1.103616863673551e-06 1.111001054709959e-06 1.170796963378962e-06 1.124468433033599e-06 1.113092469751109e-06 1.191332394512301e-06 1.121561524541903e-06 1.10656556273625e-06 1.107886944851089e-06 1.099125867654038e-06 1.115056946332516e-06 1.077916607528095e-06 1.096314818482824e-06 1.123285784387917e-06 1.121543249382739e-06 1.147361032849403e-06 1.156238024435652e-06 1.192289836637883e-06 1.166155115583933e-06 + 1.105347916308119e-06 1.111531133801691e-06 1.094744192187136e-06 1.095473990631035e-06 1.096875351436211e-06 1.093346554625896e-06 1.099900032386358e-06 1.085802836087169e-06 1.09873036535646e-06 1.09287529426183e-06 1.091149911758293e-06 1.105438407478232e-06 1.107081605056237e-06 1.10844338330196e-06 1.128636725411525e-06 1.126419830299596e-06 1.148936137340684e-06 1.09300188633199e-06 1.087316794823323e-06 1.105313426563725e-06 1.092728997065251e-06 1.083489188147269e-06 1.072411560443243e-06 1.082053184831011e-06 1.066661354798271e-06 1.068328238318372e-06 1.068146019633787e-06 1.09111480384172e-06 1.090158630034921e-06 1.094455228667357e-06 1.094427961589872e-06 1.124853966416595e-06 1.124408644415098e-06 1.104500560344945e-06 1.127231442410448e-06 1.115209407487328e-06 1.119134054761162e-06 1.117400771022403e-06 1.154531577896023e-06 1.112362316035842e-06 1.08116503483302e-06 1.085225697750047e-06 1.117355310498169e-06 1.134973393490668e-06 1.147935592804572e-06 1.191034309400152e-06 1.106563257025073e-06 1.103324271056749e-06 1.091482213055883e-06 1.09622986954605e-06 1.090475258536117e-06 1.089127547260205e-06 1.073071821622307e-06 1.088282541417129e-06 1.080532381791954e-06 1.081131202340657e-06 1.075232205494103e-06 1.065108975240037e-06 1.061164454085883e-06 1.055687320672405e-06 1.066114812431351e-06 1.078165432488731e-06 1.083280182001545e-06 1.091065605862696e-06 1.081771952016197e-06 1.086389293192269e-06 1.097328116372864e-06 1.091625030369414e-06 1.093979768995723e-06 1.089808471022025e-06 1.074483591878561e-06 1.075970686770233e-06 1.076407770028709e-06 1.096019033752782e-06 1.073132992246428e-06 1.101130035152664e-06 1.079037495799184e-06 1.074513740206839e-06 1.078889390271343e-06 1.087232494256796e-06 1.073686068053803e-06 1.082052214940177e-06 1.089936326081897e-06 1.118831097102202e-06 1.096435795489015e-06 1.089670597309578e-06 1.132354380928291e-06 1.094363305753632e-06 1.08832947631754e-06 1.089257807507238e-06 1.083664514567317e-06 1.091703794031673e-06 1.068496786160722e-06 1.077431804219486e-06 1.091199074210181e-06 1.091156228483214e-06 1.1050293338144e-06 1.108248920189681e-06 1.123724807428061e-06 1.109748033911728e-06 + 1.097226117963146e-06 1.100475188309247e-06 1.085335767925244e-06 1.085415689772162e-06 1.087098866037195e-06 1.08258110742554e-06 1.091154871346589e-06 1.074440390880227e-06 1.089358079298108e-06 1.082528541473948e-06 1.08435372681015e-06 1.095056092026425e-06 1.096501076602863e-06 1.097692566176534e-06 1.118994230608905e-06 1.125593863449126e-06 1.145478284669821e-06 1.085233044761935e-06 1.075964368268956e-06 1.098095143703404e-06 1.08493233241802e-06 1.076606629624166e-06 1.062301116405706e-06 1.07175069175014e-06 1.056990768688593e-06 1.05830932994877e-06 1.057890607114587e-06 1.084964651454356e-06 1.083276643498721e-06 1.08851403624044e-06 1.085394952582419e-06 1.113354210602324e-06 1.115664016282381e-06 1.100883023852361e-06 1.1164712176992e-06 1.105709582560621e-06 1.108383649750522e-06 1.11313563877502e-06 1.164843673961968e-06 1.101531797331745e-06 1.073887794689199e-06 1.077214673017579e-06 1.107679027612107e-06 1.124063226498606e-06 1.146719047717681e-06 1.243056015454158e-06 1.09602847153667e-06 1.100338948845092e-06 1.084175112353591e-06 1.08959362599137e-06 1.08334697657142e-06 1.082109843508761e-06 1.063868200645857e-06 1.082389385231863e-06 1.070301049566069e-06 1.070919072532206e-06 1.066445946662498e-06 1.055747105738192e-06 1.052827286684987e-06 1.049369757311069e-06 1.058010006715904e-06 1.070383699897093e-06 1.076164494406839e-06 1.083630003506642e-06 1.071706758892788e-06 1.07798809523274e-06 1.088477983302027e-06 1.084159997333245e-06 1.087645145503302e-06 1.083189516748462e-06 1.065604834593614e-06 1.068606366061431e-06 1.068806056991889e-06 1.088313844377353e-06 1.063252604183162e-06 1.095619918345392e-06 1.071966824639503e-06 1.065552417855997e-06 1.07124929726865e-06 1.079731138275974e-06 1.06385211928739e-06 1.075134516526077e-06 1.079938332537722e-06 1.107607971562174e-06 1.086961301410838e-06 1.080751975024441e-06 1.129544330069621e-06 1.085439158998724e-06 1.077815483085942e-06 1.078780982766148e-06 1.072917171995869e-06 1.082524377693517e-06 1.058845725765423e-06 1.070400401204097e-06 1.08504421092448e-06 1.084739473355967e-06 1.096279945045353e-06 1.099489949751842e-06 1.116094523467837e-06 1.104134234708454e-06 + 1.090826224015018e-06 1.092972979677143e-06 1.075384616910924e-06 1.076823892276479e-06 1.07834576112964e-06 1.075257884508574e-06 1.085255874500035e-06 1.067496270934498e-06 1.080313523971199e-06 1.073908180160288e-06 1.075629597835359e-06 1.08604613302532e-06 1.086781423964567e-06 1.08823037336947e-06 1.115312386446021e-06 1.122093717498274e-06 1.136387353994905e-06 1.074554463187383e-06 1.068701843465192e-06 1.088066536425458e-06 1.074270649326081e-06 1.066869817378802e-06 1.054962282864835e-06 1.059979204853789e-06 1.04942012058018e-06 1.049192277946531e-06 1.04926308353015e-06 1.075366952818513e-06 1.073846149779456e-06 1.079068045584108e-06 1.074654573329781e-06 1.107739041827926e-06 1.103510939515218e-06 1.089145566623984e-06 1.106649239801527e-06 1.095634036829551e-06 1.099463595721772e-06 1.099588921249506e-06 1.159253670834914e-06 1.093674732999261e-06 1.063610643114998e-06 1.067212199501455e-06 1.097482201117828e-06 1.116410103918497e-06 1.133150107079928e-06 1.20992253904717e-06 1.0859280052955e-06 1.087880926675666e-06 1.073784275718026e-06 1.079791587699219e-06 1.073091830505746e-06 1.071813603203964e-06 1.053606904832805e-06 1.067660647890989e-06 1.057971832807425e-06 1.058699041323052e-06 1.054645366593832e-06 1.046525738956916e-06 1.043656027377438e-06 1.04047119009465e-06 1.046455388120648e-06 1.061777073374515e-06 1.066622061784983e-06 1.073152709807346e-06 1.059347791709797e-06 1.06777326180918e-06 1.07788189396274e-06 1.073818516772462e-06 1.078523972353196e-06 1.074008977752783e-06 1.057747482491322e-06 1.058380490803756e-06 1.059794882962706e-06 1.078618083738547e-06 1.055671049243756e-06 1.085769820718951e-06 1.06199891547476e-06 1.05679661643876e-06 1.06250930187457e-06 1.069513277940359e-06 1.056133898558187e-06 1.065618885576214e-06 1.070789526380622e-06 1.101221389632201e-06 1.076736534599831e-06 1.070732132291141e-06 1.12716688605019e-06 1.074678621648673e-06 1.06950683687046e-06 1.070332288577447e-06 1.065831384039484e-06 1.072425490633577e-06 1.051999547030391e-06 1.060579691625207e-06 1.075948787843117e-06 1.075690136076446e-06 1.086170883013438e-06 1.089470341497645e-06 1.103192921902973e-06 1.092482857956156e-06 + 1.073104737514541e-06 1.073602575729637e-06 1.064733666567008e-06 1.066098121782488e-06 1.066972998842175e-06 1.065911945374864e-06 1.071848998890346e-06 1.060221933357752e-06 1.068027700057428e-06 1.064118805516046e-06 1.061280315184376e-06 1.070062189967302e-06 1.06938127331091e-06 1.070778376188741e-06 1.083141937030518e-06 1.085493170904783e-06 1.092048409034874e-06 1.061467422402984e-06 1.059722803731233e-06 1.067505813523439e-06 1.061530976897984e-06 1.056794104670189e-06 1.048933949476805e-06 1.053541740958508e-06 1.045153382506214e-06 1.045017612000265e-06 1.044971085661928e-06 1.060343087999627e-06 1.060023965493428e-06 1.062386093764189e-06 1.063134881462702e-06 1.079862013142474e-06 1.075846029152672e-06 1.066604273347593e-06 1.078285547961855e-06 1.072174111271806e-06 1.07484230937871e-06 1.072729954643137e-06 1.099451729658085e-06 1.074012129009816e-06 1.054726205040879e-06 1.056692966017181e-06 1.07303761431865e-06 1.083442750626773e-06 1.087375755659536e-06 1.115048354094483e-06 1.069231727157671e-06 1.065726619842167e-06 1.060741544378629e-06 1.063172158310977e-06 1.060363009841581e-06 1.059804883851712e-06 1.04864029637497e-06 1.05635920988334e-06 1.052144263269383e-06 1.052531896306164e-06 1.050065122853994e-06 1.042556121433336e-06 1.039841095007432e-06 1.037963642147588e-06 1.042578539056649e-06 1.053707048725983e-06 1.056990711845174e-06 1.060973886524152e-06 1.052864345041371e-06 1.057083565569883e-06 1.063969680359378e-06 1.061236702071255e-06 1.062477444691012e-06 1.059873405040435e-06 1.051203270208134e-06 1.052169039894579e-06 1.052701975368109e-06 1.063350531183005e-06 1.049464533053879e-06 1.065638279840186e-06 1.053882058954514e-06 1.050503673383218e-06 1.054149247892155e-06 1.058946146770268e-06 1.049694427379677e-06 1.056094461659995e-06 1.060766567917426e-06 1.07718571129567e-06 1.065099297647976e-06 1.060217538650932e-06 1.087320246284662e-06 1.063392502942406e-06 1.060333786995216e-06 1.061201160723613e-06 1.05740507194696e-06 1.062596965084595e-06 1.04705269166061e-06 1.053258685601577e-06 1.060798574314958e-06 1.060840986610856e-06 1.06739920724408e-06 1.068875228327215e-06 1.075460573929377e-06 1.069154311750253e-06 + 1.118994205739909e-06 1.123881645526126e-06 1.104388672956702e-06 1.106159274399943e-06 1.10795922125817e-06 1.104148822150819e-06 1.1128744290545e-06 1.094213047281301e-06 1.110489805000725e-06 1.102656142393243e-06 1.09496855316138e-06 1.115564046472173e-06 1.11442183126087e-06 1.116801241707321e-06 1.142213488236621e-06 1.148944472006974e-06 1.157913212423978e-06 1.097010391859499e-06 1.0941382075913e-06 1.109028520573929e-06 1.09743660203776e-06 1.088975956520244e-06 1.078353125905096e-06 1.081663448587733e-06 1.073737465162594e-06 1.074012153878812e-06 1.074009723822655e-06 1.092949439396307e-06 1.092199042318498e-06 1.096766975905439e-06 1.101377325340991e-06 1.135788073369781e-06 1.12679655828174e-06 1.105106216314766e-06 1.132747948773272e-06 1.120178847457964e-06 1.126297970444057e-06 1.116852139659841e-06 1.176998743801505e-06 1.123689354898261e-06 1.084994742939216e-06 1.086967408525652e-06 1.121547587246141e-06 1.142171237589196e-06 1.147179878202564e-06 1.195610073168041e-06 1.113397045671149e-06 1.103081945785789e-06 1.095210640400524e-06 1.098560309387153e-06 1.09455295849159e-06 1.093934422158327e-06 1.077938517113353e-06 1.08661979325575e-06 1.079445937079981e-06 1.080034490286153e-06 1.079054484875996e-06 1.069933873054651e-06 1.064352929347478e-06 1.059498600852748e-06 1.069099511141758e-06 1.084454883226726e-06 1.089746042737261e-06 1.096504504971563e-06 1.080398639885516e-06 1.087337370364594e-06 1.102419716403347e-06 1.096776195197435e-06 1.097203757183252e-06 1.092027581250932e-06 1.081364288779696e-06 1.082464933688243e-06 1.083131309087548e-06 1.099863425224612e-06 1.079011923366124e-06 1.104022107512037e-06 1.084291774589019e-06 1.080290488175706e-06 1.085067150796704e-06 1.093296255305631e-06 1.079140073301232e-06 1.087918398923193e-06 1.096996147254004e-06 1.130928570347578e-06 1.104999142853558e-06 1.095973139797479e-06 1.152175055807447e-06 1.102004318909167e-06 1.09622421007316e-06 1.097725558452112e-06 1.09109318202627e-06 1.100563039813096e-06 1.075763435665067e-06 1.083692680481363e-06 1.093706899268909e-06 1.093735633617143e-06 1.109213759065142e-06 1.112599054664543e-06 1.125333024987185e-06 1.11166851723965e-06 + 1.408691311155508e-06 1.409811218877621e-06 1.375411514459302e-06 1.382012300155111e-06 1.385174456913774e-06 1.380561599262364e-06 1.401381723553641e-06 1.354621758764551e-06 1.389057629808121e-06 1.374414452470774e-06 1.326835075587951e-06 1.394178660518719e-06 1.388683422476333e-06 1.394999872061931e-06 1.451496427051779e-06 1.486063228028911e-06 1.502787116081095e-06 1.340122294024582e-06 1.349076832468654e-06 1.371195111232737e-06 1.343882789939244e-06 1.308237521868705e-06 1.240269966729102e-06 1.224834925039886e-06 1.214190021414652e-06 1.199585035749351e-06 1.202613695738819e-06 1.297561787794166e-06 1.305446268418109e-06 1.321570369583469e-06 1.363299535483975e-06 1.436400077992062e-06 1.425376181529714e-06 1.349106778292253e-06 1.435924687598344e-06 1.403869156035853e-06 1.417958571892086e-06 1.399995884554528e-06 1.574024189210377e-06 1.409876301039503e-06 1.272442432309617e-06 1.276419844487009e-06 1.4070730465221e-06 1.454907689435458e-06 1.500736561688143e-06 1.894417245296154e-06 1.38690916351436e-06 1.334438122668757e-06 1.331542302196453e-06 1.332008627841219e-06 1.329944421257778e-06 1.330187721748644e-06 1.22094631649361e-06 1.233210678464047e-06 1.207957961213424e-06 1.210614271940358e-06 1.218449902751217e-06 1.18127562132031e-06 1.166094094173786e-06 1.159756806146106e-06 1.171154188739365e-06 1.283392425222019e-06 1.317098067943334e-06 1.342613295207684e-06 1.211860325867065e-06 1.271914946698871e-06 1.359506168086e-06 1.342435503204342e-06 1.329228624058487e-06 1.29929217962399e-06 1.262371355892355e-06 1.258265001524705e-06 1.271314715722838e-06 1.345401088315157e-06 1.243779902182496e-06 1.351150579864679e-06 1.273131420731488e-06 1.247873331777782e-06 1.287270745109481e-06 1.33354362574778e-06 1.243942371331741e-06 1.303326428114815e-06 1.354895822203162e-06 1.425149317668684e-06 1.374954713639909e-06 1.347341122226453e-06 1.485332955297736e-06 1.365863184332738e-06 1.356158897181103e-06 1.361332422789019e-06 1.339228433039352e-06 1.366061738394819e-06 1.231948019153606e-06 1.270771733175025e-06 1.3082820373711e-06 1.311717198859697e-06 1.372327343318602e-06 1.382266368921137e-06 1.424681929762528e-06 1.379677129875745e-06 + 4.61421451092292e-06 6.87166648560833e-06 4.072507465480157e-06 3.953087571062497e-06 4.112223692231964e-06 3.606898303587514e-06 3.86260836648944e-06 3.013121769868121e-06 4.439385747900815e-06 3.743095689401343e-06 5.042627250873011e-06 5.415530281993597e-06 5.848433314525892e-06 5.442043436332256e-06 9.034755256820404e-06 6.912627538824268e-06 1.857816032391213e-05 3.935140513888769e-06 2.976343628446898e-06 6.815787688907449e-06 4.037487162378284e-06 3.333215417455904e-06 2.489762792379224e-06 3.749502461403154e-06 2.17710605454613e-06 2.357774832262294e-06 2.307383404343e-06 5.34223681114554e-06 4.533930773931161e-06 5.261535672929085e-06 3.898953917058634e-06 8.656757925606939e-06 1.127460149064063e-05 7.65516976564129e-06 1.097383257686602e-05 8.012155625181094e-06 8.569828757742926e-06 1.294297004150735e-05 1.946147124343156e-05 6.093327026945872e-06 3.369670057651319e-06 3.928204748149255e-06 8.017393597015143e-06 1.197824504295397e-05 2.436025195606817e-05 0.0001384629885059496 5.138512921831762e-06 7.801944475360756e-06 3.92944680172036e-06 4.992811343029757e-06 3.94990047958288e-06 3.853986680013577e-06 2.625580130199978e-06 6.096198877258985e-06 3.713536415261842e-06 3.905369421630667e-06 3.045218896602364e-06 2.160953485486061e-06 1.936769436383656e-06 1.660257225921669e-06 2.309991103288667e-06 3.019591634512153e-06 3.410219200361553e-06 4.134321180515599e-06 3.924272927946504e-06 4.168363020085053e-06 4.575051079314107e-06 4.241340441524244e-06 5.333456947198556e-06 5.157693692581233e-06 2.842911882794397e-06 3.281182870296107e-06 3.072682034144236e-06 5.027762874476593e-06 2.555161842110465e-06 6.513552857967397e-06 3.183182180066524e-06 2.735282645716097e-06 3.050132601600808e-06 3.581134908614558e-06 2.538106803839923e-06 3.285328219249095e-06 3.439001211802406e-06 7.814221529400811e-06 4.029149568651746e-06 3.508790435091669e-06 8.95137040046734e-06 4.043366182315822e-06 3.393873093671118e-06 3.494465900644173e-06 3.109980511339927e-06 3.926006357346523e-06 2.281144205085184e-06 3.239750441252909e-06 5.315820189366605e-06 5.085551599393057e-06 5.968738388872907e-06 6.639841487299236e-06 1.252516103278367e-05 8.435246744653568e-06 + 3.991084806287404e-05 8.060603947512845e-05 3.048252453652367e-05 2.927728246504557e-05 3.17019382265471e-05 2.442160649707148e-05 2.885473783464931e-05 1.565906462985822e-05 3.686952899784046e-05 2.594619434148626e-05 3.450430423868056e-05 5.099328078017606e-05 5.488058807756602e-05 4.913744878187742e-05 0.0001273409967055272 8.916382663493039e-05 0.000297155405814209 2.355774327433835e-05 1.473324844702972e-05 5.961152514188939e-05 2.549649297378664e-05 1.642701110071698e-05 8.152848320008843e-06 1.19013316250971e-05 6.054331464611096e-06 6.221554052388001e-06 6.170702476993029e-06 2.928620592257403e-05 2.51813052116745e-05 3.261139129406843e-05 2.614916450838223e-05 0.000112546644897904 0.0001239423069936407 5.473685653534233e-05 0.0001356973189405863 8.386771719415265e-05 9.99898459994597e-05 0.0001171461095061943 0.0003987336232427197 6.349622967505297e-05 1.441549526148833e-05 1.795087503708714e-05 8.182526567779291e-05 0.0001619369534839876 0.0002843053188472666 0.001878565902259766 4.293250926323822e-05 4.915982918696216e-05 2.27616070578307e-05 3.173442638093604e-05 2.312376824953333e-05 2.261049068863485e-05 7.854400507767423e-06 1.743521074004661e-05 9.952435963356265e-06 1.079230641565232e-05 9.430088113049351e-06 4.913842644782562e-06 3.889650756150331e-06 3.2245831249611e-06 4.645287866367198e-06 1.299182435232638e-05 1.805195969240003e-05 2.719640367843112e-05 1.079007476434413e-05 1.871716772328114e-05 3.338282927600744e-05 2.822787580925024e-05 3.611217012178258e-05 2.941160135350174e-05 1.120637023177551e-05 1.393780956959745e-05 1.307069106815106e-05 3.635187566430886e-05 8.595875684136445e-06 4.995548704656017e-05 1.350290655821595e-05 9.673453689629241e-06 1.333551340820804e-05 2.062240282896255e-05 8.403830737080398e-06 1.590473629065059e-05 2.039842998158292e-05 9.820389526282725e-05 2.890575026270881e-05 2.061752085324997e-05 0.0001358025017133002 2.865923183748009e-05 2.027289356476558e-05 2.190854841899181e-05 1.630672194607996e-05 2.813065326279229e-05 6.950156972607147e-06 1.417515088064647e-05 3.197743598093439e-05 3.093006024101896e-05 5.024425129818155e-05 6.033798249660549e-05 0.0001357736439686619 7.569088967684934e-05 + 0.006573231201915775 0.01247268554699588 0.005179174426260147 0.005144105039377678 0.005535631966992582 0.004515760022073323 0.005595421067638995 0.002432044071937867 0.006464524891072188 0.004538051770595075 0.004838656130090158 0.007593063377342446 0.007333705835936399 0.006291157339116893 0.01633884853068679 0.01335073477868498 0.02820883546685593 0.00281470921032323 0.001937171998489973 0.007140885241781803 0.003281753257322606 0.002002939527205427 0.000814411194546949 0.001316708702955083 0.0005925305605956055 0.0006185723313336666 0.0006035297936932693 0.003529306337092919 0.002988126333722363 0.003770421157856418 0.003729321282825993 0.01388503538733943 0.01317763164370156 0.005924563842732766 0.01504092101926879 0.009741360259290843 0.0120525497726014 0.01338278135465032 0.0445426248961347 0.008660901551252209 0.001632194194709058 0.002065823683526702 0.008875702137936869 0.01673500532192485 0.02468676188967045 0.1169649638857493 0.005291284673729635 0.005270584553626279 0.002695102874010757 0.003538137161923416 0.002845735764921642 0.00290867368408243 0.0007577042237691956 0.00233422282499518 0.001145676841378673 0.00128711503807466 0.001041845197256919 0.0004618025388225533 0.0003276019703122302 0.0002129204703180676 0.0004332092941297105 0.001557716628365569 0.002451968514073144 0.003822440258730353 0.001246800188418717 0.002126895565275788 0.004487470598522947 0.003932754687241413 0.004583350783669005 0.003755562639454979 0.00134725367018973 0.001829684745104032 0.001637495044647608 0.004731072797717673 0.000872053566403963 0.005838383245659884 0.001568817421585322 0.001020209025742957 0.001597364875909335 0.002818359339954668 0.0008164759809936584 0.001976826820381916 0.00299004052819285 0.01348379866647065 0.004381482537510806 0.00285001186104239 0.01921830570641703 0.004371284684452803 0.003264691134830855 0.003691927534674733 0.002499803360137776 0.004872881511175819 0.0007121553952060822 0.001800444008466684 0.004057379331463551 0.003915048398503984 0.00597190874927378 0.007087020165833735 0.014858892548542 0.00865750772009477 + 0.001319055233715005 0.00220581465630687 0.001024868478779695 0.00101478680113587 0.001089456491286001 0.0008845353072644002 0.001076551243002655 0.0005069489154578832 0.001252134166861651 0.0009000681881730088 0.0009231006688281695 0.001472984197491201 0.001426680970787686 0.001293368821770002 0.00305219522639355 0.002600437127140864 0.004741732805404908 0.0006341295980298867 0.0004347876578876253 0.001345206481804695 0.0007141040383729091 0.0004401387525483358 0.0001844197333014108 0.0002677598347951005 0.0001383732330140219 0.0001390518563084697 0.0001377656266896565 0.0006784066753127149 0.0006163967514396518 0.0007618195024292618 0.0007972371629705322 0.002606950436526034 0.002366013346273732 0.001124154323603577 0.002701801203480514 0.00181867053753848 0.002207032829886657 0.002252142213595931 0.007181408821242741 0.001692658100921562 0.0003473167423493351 0.0004278585358328257 0.001720359222632695 0.003088406840252134 0.004170275863067729 0.01965257848111612 0.001120943001950536 0.001006814044282933 0.0006034955531557529 0.0007488470901897415 0.0006243565114711913 0.0006293167308335512 0.0001695729252162437 0.00046562833379582 0.000233605329388098 0.0002575270484186376 0.0002123345274966937 0.0001094829256231833 8.199183601220739e-05 5.651690372587836e-05 0.000101574573960761 0.000334314576242889 0.0005177766177837384 0.0007940836977695653 0.0002545274862448821 0.000434439392257957 0.0009371616302260577 0.0008144217867211978 0.0008929111882949314 0.0007117210451497158 0.0002806383878493079 0.0003537649780582797 0.0003359363658006487 0.0009516290978197617 0.0001956678230641273 0.001113480462159089 0.0003331676779509962 0.0002232393884717965 0.0003449459647519859 0.0006039074454449178 0.0001871856498123492 0.000427617554429105 0.0006384349385086807 0.002456668369070769 0.0009145014140017338 0.0006191762096037223 0.003561444720329376 0.0009016289091192675 0.0006694629040069344 0.0007431092416112506 0.0005169290013213867 0.0009544667415042341 0.0001627462800115609 0.0003633016447253112 0.0007721356364314147 0.0007610825993324966 0.001190227020323675 0.001374261395152843 0.002547578468192313 0.001572887713720661 + 0.0001658812991713887 0.0002448642401162715 0.0001283926628445897 0.0001278716604389274 0.0001361108532904609 0.000113327671215302 0.0001351119372543508 7.140372952108009e-05 0.0001526685888393331 0.0001149549767234248 0.0001097104724152587 0.0001788006862710745 0.000175382491551801 0.0001666390191878975 0.0003467191112633827 0.0003075214456984554 0.0005092201333507518 8.927174034845109e-05 6.509042092339712e-05 0.0001606704703434048 9.715624892336905e-05 6.159409175410246e-05 2.848024521995285e-05 3.043629462595732e-05 2.236006699263271e-05 2.135761619825871e-05 2.154533407150439e-05 7.736945140379703e-05 7.796231352585892e-05 9.5084300617998e-05 0.0001073999401128845 0.0003007667567178629 0.0002631828301833394 0.0001272294469529811 0.0003025461561421139 0.0002135046872204782 0.0002526624999532601 0.000217614351562645 0.0007138661710150984 0.0002065343577797307 4.661696749153066e-05 5.385495103027438e-05 0.0002086117593371739 0.0003550924874478056 0.0003846927763788699 0.0008807864024191758 0.0001488469500898759 0.0001077283484676173 8.430084990784792e-05 9.885806796283703e-05 8.54654845454661e-05 8.523760991963059e-05 2.534950255039803e-05 3.258537125816474e-05 2.507469850243638e-05 2.63288081043811e-05 2.75764306252313e-05 1.764462075470874e-05 1.413095854729818e-05 1.111226941929999e-05 1.585161703587801e-05 4.683948226613666e-05 6.976394696778243e-05 0.0001031858137707786 2.627186101733514e-05 5.280263080820191e-05 0.0001223811213222348 0.0001053370226742345 0.0001087034616773508 8.138120781353564e-05 3.896519056922898e-05 4.402323440899636e-05 4.495816813232523e-05 0.0001201844849703093 2.979354135845824e-05 0.0001332211999134358 4.541772960564572e-05 3.257797295219689e-05 4.846726348972652e-05 8.195833276047892e-05 2.909617108493023e-05 5.915780893062106e-05 8.781495097665015e-05 0.0002772674073732162 0.000120362573643007 8.573325720817593e-05 0.0003967550005121723 0.0001171047029089323 8.945866427723104e-05 9.720857805461947e-05 7.091304949824462e-05 0.0001188425313927155 2.569013832953715e-05 4.718441273610097e-05 8.962614278829051e-05 9.098256590789333e-05 0.0001504466239978797 0.0001688673707285204 0.0002683439099833151 0.0001774947371266933 + 1.090151260285666e-05 1.484874243828926e-05 8.903912416258208e-06 8.913361426721167e-06 9.295913713458503e-06 8.269389368820157e-06 9.38678218176392e-06 6.281113698491936e-06 1.000829614383747e-05 8.29324321216518e-06 8.540816850199917e-06 1.171276922917741e-05 1.222332902628409e-05 1.173221684958037e-05 2.061149620047331e-05 1.728847287907342e-05 3.916361091249598e-05 7.502341729193063e-06 6.057074243059901e-06 1.302490662169475e-05 7.799238204597714e-06 5.645134141474273e-06 3.482386791375802e-06 4.103955777878809e-06 2.996714968617198e-06 2.921749292283948e-06 2.930141924650798e-06 7.56515019162407e-06 7.046017493905765e-06 8.593040888627002e-06 8.176461424369563e-06 1.922750565341858e-05 2.24744047319092e-05 1.283622306402776e-05 2.278907055952573e-05 1.636170748042787e-05 1.799402914670623e-05 2.284693284693162e-05 3.993421967862787e-05 1.346662756418482e-05 4.789874303412489e-06 5.41618402394306e-06 1.650517196871704e-05 2.562623663138197e-05 4.829313615584141e-05 0.0001734579800061198 1.092720518158785e-05 1.198505251842619e-05 7.212956866453624e-06 8.708718336691845e-06 7.192402659228492e-06 7.061655352913476e-06 3.335416334238062e-06 5.490286547171763e-06 3.784305050658077e-06 3.925358331713369e-06 3.553964212699157e-06 2.616698992596866e-06 2.345886031207556e-06 2.155954959448536e-06 2.579261057178428e-06 4.664018536715275e-06 5.982632707457469e-06 7.922280680361382e-06 3.965105459968754e-06 5.505419959916935e-06 9.170546157122317e-06 8.077415287743861e-06 9.033392061041923e-06 7.446720466930401e-06 4.082766750457267e-06 4.373743081487191e-06 4.461747892037238e-06 9.324652992859228e-06 3.577981093627614e-06 1.161081597089719e-05 4.62125410294334e-06 3.776239818620297e-06 4.781307591628092e-06 6.737809766121927e-06 3.571829315873742e-06 5.447341337116995e-06 7.100146152794196e-06 1.723788304630602e-05 8.767072642967833e-06 7.010814208285865e-06 2.1368535097821e-05 8.530350690705291e-06 7.069423681116405e-06 7.419789753271289e-06 6.056815465171894e-06 8.354057371207091e-06 3.242642634404547e-06 4.60885112829601e-06 8.027694178736056e-06 7.930523238997012e-06 1.179988117527841e-05 1.324951702486032e-05 2.421486632542269e-05 1.571405089606515e-05 + 1.422914703397282e-06 1.41104902695588e-06 1.393566734009255e-06 1.397202396447028e-06 1.399688883907402e-06 1.396563035882536e-06 1.423506319042644e-06 1.37611638706403e-06 1.402419229634688e-06 1.391576262221861e-06 1.375564863792533e-06 1.404450713948791e-06 1.401347162754973e-06 1.405255771302905e-06 1.447755423100716e-06 1.500287815758838e-06 1.4864736410658e-06 1.382469561050925e-06 1.376440751599262e-06 1.39503665153029e-06 1.383461697201938e-06 1.364302523398919e-06 1.321894327332984e-06 1.319457329174156e-06 1.30123821406869e-06 1.294410324703676e-06 1.296246807669377e-06 1.362993558018388e-06 1.36647206616658e-06 1.375349317100927e-06 1.38970857577192e-06 1.42836457861506e-06 1.418015495247005e-06 1.389518317296279e-06 1.422919938320888e-06 1.407189866853287e-06 1.413253748694387e-06 1.411596858957864e-06 1.578157327486451e-06 1.413381561121696e-06 1.345475617142711e-06 1.349417718898849e-06 1.409155768072878e-06 1.438562915012653e-06 1.473006799201926e-06 1.725542681185743e-06 1.401830306946295e-06 1.384761617373442e-06 1.378680750008243e-06 1.380415506346822e-06 1.377487876652594e-06 1.376836362254608e-06 1.311853694119236e-06 1.327541813367361e-06 1.306782451138133e-06 1.308738241334595e-06 1.311309091533985e-06 1.277164244584128e-06 1.257992153114174e-06 1.243929318661685e-06 1.269024870964586e-06 1.348417040247796e-06 1.367542900254648e-06 1.382115783599147e-06 1.310379044383581e-06 1.347764879255919e-06 1.390065865081169e-06 1.382299295471512e-06 1.377916561295933e-06 1.362867884324714e-06 1.335041901029399e-06 1.334333433078427e-06 1.341326708370616e-06 1.384808015814087e-06 1.324347341125076e-06 1.388013433967217e-06 1.344537466252405e-06 1.327770643655413e-06 1.350878513051157e-06 1.376541874265058e-06 1.324834991933699e-06 1.361000574462423e-06 1.382806349425891e-06 1.420308755939459e-06 1.394459275161353e-06 1.381602110939184e-06 1.495660388428632e-06 1.390447522453542e-06 1.38113649228444e-06 1.383607624916294e-06 1.371468073330107e-06 1.388372908195379e-06 1.313349997644764e-06 1.342000956583433e-06 1.367790012807291e-06 1.369390410843607e-06 1.395639500856305e-06 1.39909106877667e-06 1.41845686130182e-06 1.399472093766008e-06 + 1.302017874849071e-06 1.346777324329196e-06 1.270752306936629e-06 1.265794978166923e-06 1.272934198937037e-06 1.249853966101e-06 1.271865968988095e-06 1.221395393713465e-06 1.28453383752003e-06 1.255561514312831e-06 1.297777259878785e-06 1.319481334860484e-06 1.332334651493738e-06 1.329001431571442e-06 1.39429364587329e-06 1.387591002099953e-06 1.437716502294961e-06 1.278617169475638e-06 1.226610512716775e-06 1.345651163831008e-06 1.278572408835998e-06 1.246159342827013e-06 1.19480559845897e-06 1.263621349778532e-06 1.173965912926178e-06 1.187214095921263e-06 1.183857285980139e-06 1.305636651238729e-06 1.29167126772245e-06 1.311386270685944e-06 1.272098561599933e-06 1.384194741049782e-06 1.38987936004753e-06 1.351361017754016e-06 1.392944065869983e-06 1.368011091074095e-06 1.37537910305241e-06 1.383087024464658e-06 1.47833312524881e-06 1.342135764303976e-06 1.249019284443875e-06 1.271515301937143e-06 1.371750787626524e-06 1.4067348725888e-06 1.431192866441222e-06 1.496475892537319e-06 1.322487838351094e-06 1.348763374764417e-06 1.27727471621597e-06 1.310470025828181e-06 1.275366596331651e-06 1.269208393495092e-06 1.211275566959102e-06 1.295137984413941e-06 1.257526584197421e-06 1.261792263562711e-06 1.232531403161374e-06 1.173533533460613e-06 1.15650624366026e-06 1.140742270422379e-06 1.182500966478983e-06 1.225163966722675e-06 1.244367325625717e-06 1.276286013762729e-06 1.263859463307426e-06 1.27945995131995e-06 1.296304887432598e-06 1.280197345465695e-06 1.309163799589896e-06 1.299634369900105e-06 1.210031555842761e-06 1.234191074672708e-06 1.224813175326744e-06 1.305841820453679e-06 1.199218253589152e-06 1.337579284665935e-06 1.237735780534877e-06 1.211828504210644e-06 1.227749962140479e-06 1.255113531328789e-06 1.200896951658592e-06 1.241689883357822e-06 1.247689432659627e-06 1.368711355809182e-06 1.275932024924487e-06 1.253597442740784e-06 1.411071611556736e-06 1.274035987819389e-06 1.239565527555442e-06 1.243146826368502e-06 1.222274761403241e-06 1.26194451866013e-06 1.177961323151067e-06 1.234762621038499e-06 1.304484356978719e-06 1.301168481404602e-06 1.33517240996639e-06 1.348168936488037e-06 1.390612528240354e-06 1.362579791219787e-06 + 1.146339329238799e-06 1.155169059074979e-06 1.132757219579617e-06 1.133333697111993e-06 1.135250272454869e-06 1.129034544078422e-06 1.137339509682533e-06 1.117196276823051e-06 1.137783655735802e-06 1.129867612803537e-06 1.127182869709031e-06 1.144864725688421e-06 1.147706083060029e-06 1.148383848459389e-06 1.18655716718763e-06 1.179481445845454e-06 1.239957462928487e-06 1.12893617831844e-06 1.119953724426637e-06 1.153874833903501e-06 1.128870323441333e-06 1.118172637148973e-06 1.102177908052226e-06 1.113027590093907e-06 1.092433578264718e-06 1.096222902674526e-06 1.095811747120479e-06 1.130627538259432e-06 1.12553810183158e-06 1.13452082217691e-06 1.131613771576667e-06 1.181312786258104e-06 1.194082555500131e-06 1.160789329546219e-06 1.195016409383243e-06 1.170440349085311e-06 1.176042864869942e-06 1.189645058019551e-06 1.251535678647997e-06 1.154618583854017e-06 1.114483293207513e-06 1.118186418125333e-06 1.173971217127701e-06 1.206875239745386e-06 1.2443098054149e-06 1.360940279582223e-06 1.145543944147676e-06 1.160406617017884e-06 1.127078000706661e-06 1.135142264629962e-06 1.1260285308623e-06 1.12478566549612e-06 1.103648351374886e-06 1.133876036618631e-06 1.111819564414418e-06 1.112964490346258e-06 1.105964770431456e-06 1.090713794837939e-06 1.083217753716781e-06 1.073419852559709e-06 1.093468277701959e-06 1.111152929667014e-06 1.118149853596151e-06 1.127234980913272e-06 1.114197424101349e-06 1.119593093790172e-06 1.1340831065354e-06 1.127709445825076e-06 1.132720186092229e-06 1.127016687973992e-06 1.106091602309789e-06 1.108639395397404e-06 1.109170540303239e-06 1.133032490940877e-06 1.103443597827436e-06 1.148953629126481e-06 1.112440077832844e-06 1.105997739614395e-06 1.112120916246795e-06 1.122943412923405e-06 1.104106063465338e-06 1.116429910297256e-06 1.12563360232798e-06 1.169435854819767e-06 1.134348011078146e-06 1.125562761217225e-06 1.190879334700412e-06 1.131845721147329e-06 1.123570491756709e-06 1.124995819168362e-06 1.117008295636879e-06 1.129073652350598e-06 1.094969874770868e-06 1.110619692212822e-06 1.129664518373374e-06 1.128389293114651e-06 1.148226228764315e-06 1.155868428526219e-06 1.195897453953876e-06 1.168098091142156e-06 + 1.078421284717024e-06 1.080158270383436e-06 1.072250100264682e-06 1.072129407475586e-06 1.073121026706758e-06 1.070342065645491e-06 1.074876792017676e-06 1.066083456180422e-06 1.07448488506634e-06 1.070499280331205e-06 1.070693556926017e-06 1.077760536816186e-06 1.078211724347966e-06 1.078996366032925e-06 1.089084960881337e-06 1.090876686760112e-06 1.102497206417752e-06 1.072275500391129e-06 1.067116114583655e-06 1.078030816614728e-06 1.072157338910529e-06 1.06671931732194e-06 1.056853619729736e-06 1.061064601515227e-06 1.053410443319081e-06 1.052621279029609e-06 1.052772695686599e-06 1.069633007944049e-06 1.069571275991166e-06 1.07238424718048e-06 1.072516514710742e-06 1.086325228882856e-06 1.087382520026381e-06 1.078895676798197e-06 1.087836349000781e-06 1.082073943337036e-06 1.083515019928427e-06 1.086477976031119e-06 1.107543546652323e-06 1.080817611409657e-06 1.064003527062596e-06 1.065785948384246e-06 1.083108513100228e-06 1.092035867955587e-06 1.103527474732857e-06 1.137359259217874e-06 1.078176380175933e-06 1.078529164644237e-06 1.071458472168274e-06 1.07356657075286e-06 1.070937875269351e-06 1.070304378458786e-06 1.056963114365317e-06 1.065645076181454e-06 1.059522979574012e-06 1.059925136104312e-06 1.057925295810946e-06 1.049923767482142e-06 1.047549275767778e-06 1.045805120725163e-06 1.050674448777045e-06 1.062365665660536e-06 1.066711554642552e-06 1.071372039973539e-06 1.060403761243833e-06 1.066008564976073e-06 1.07419522521468e-06 1.071628069837516e-06 1.072255791711996e-06 1.068884515120772e-06 1.059024356209193e-06 1.060693790577716e-06 1.06105383679278e-06 1.073550613739371e-06 1.05745388978562e-06 1.076323826509906e-06 1.062971957566106e-06 1.058837739265073e-06 1.062995057310445e-06 1.069179901946882e-06 1.057844658092222e-06 1.065691694890347e-06 1.069318223301252e-06 1.083400878343355e-06 1.073307966947823e-06 1.069900523731349e-06 1.092769437605057e-06 1.072498832854762e-06 1.067980967661697e-06 1.068455262043244e-06 1.065281665546536e-06 1.070650100132298e-06 1.054831614055729e-06 1.0619467474271e-06 1.070039346018348e-06 1.070179578732677e-06 1.077605183752439e-06 1.079032458051188e-06 1.087746383632293e-06 1.080955705390352e-06 + 1.088147062233702e-06 1.094650642130546e-06 1.075912038572824e-06 1.07696008910807e-06 1.078466198123351e-06 1.074214011964614e-06 1.080690253729699e-06 1.066379070380208e-06 1.080404857134454e-06 1.074146666724118e-06 1.076194749316528e-06 1.087080143236108e-06 1.088961948170208e-06 1.090323726415932e-06 1.115531102158229e-06 1.113180742251529e-06 1.140288324208427e-06 1.075606276046415e-06 1.068298217887786e-06 1.09014525406792e-06 1.075178136744626e-06 1.067764099360602e-06 1.059177307638492e-06 1.068759811317932e-06 1.0542158008775e-06 1.056525348985815e-06 1.05623495016971e-06 1.078384464392457e-06 1.075671050898563e-06 1.080699423283704e-06 1.075498509806039e-06 1.110190758879526e-06 1.1073914851778e-06 1.091027753474805e-06 1.110282306981958e-06 1.09907521661512e-06 1.103022359671968e-06 1.102275579256684e-06 1.149421212431889e-06 1.095459797539888e-06 1.066595267218418e-06 1.070806817438097e-06 1.101129754488284e-06 1.119145112582487e-06 1.137726763467128e-06 1.200419779578965e-06 1.088062608900486e-06 1.090377947932097e-06 1.07475767308074e-06 1.081332403174429e-06 1.07392757442426e-06 1.07252273195968e-06 1.060311291212201e-06 1.077152099071554e-06 1.067832751999731e-06 1.068511483737211e-06 1.062192126255468e-06 1.05377095849235e-06 1.050051537276886e-06 1.045681614186833e-06 1.054993568061491e-06 1.063470943307721e-06 1.067341187876991e-06 1.073803879592106e-06 1.069197420378032e-06 1.072383096101248e-06 1.079001119563827e-06 1.074473111373209e-06 1.079614399657203e-06 1.076455994564185e-06 1.060714851064404e-06 1.062221087977377e-06 1.062251399730485e-06 1.079678924043037e-06 1.05979523468136e-06 1.087333949101321e-06 1.064552538565522e-06 1.061027553816984e-06 1.064028719355292e-06 1.070246945289455e-06 1.06025211010774e-06 1.066578260378037e-06 1.071313782574634e-06 1.103609253760851e-06 1.0774618317555e-06 1.071497532478816e-06 1.120934648213279e-06 1.075416804496854e-06 1.069763627015163e-06 1.070571215677774e-06 1.066098676005822e-06 1.072940150947943e-06 1.055409995842638e-06 1.063211598761882e-06 1.077855550590812e-06 1.077250651349004e-06 1.088441401009277e-06 1.092125721413595e-06 1.107038489323031e-06 1.094635354803586e-06 + 1.090783673163287e-06 1.094621055131029e-06 1.082297643506536e-06 1.082704002897117e-06 1.084036298948376e-06 1.080459441027415e-06 1.084342613921763e-06 1.074930040090294e-06 1.085858826854746e-06 1.080413085219334e-06 1.078853671288016e-06 1.090022621497155e-06 1.090592004260316e-06 1.091987895662783e-06 1.110291295347565e-06 1.105437762660699e-06 1.13071979157553e-06 1.080749781223744e-06 1.075823689689059e-06 1.092041323147441e-06 1.080583270862689e-06 1.074448693572094e-06 1.064105784820413e-06 1.0727546708722e-06 1.059514161738662e-06 1.060534664532042e-06 1.060276161979345e-06 1.081013593307034e-06 1.078522053887809e-06 1.082872845614702e-06 1.081949669412552e-06 1.107857986681893e-06 1.109434530022213e-06 1.09437806017354e-06 1.111218411509185e-06 1.100195898828815e-06 1.103368866495202e-06 1.10564931077306e-06 1.133299377897856e-06 1.095364495995454e-06 1.072858417217049e-06 1.075098065683733e-06 1.102260043239767e-06 1.118144606238047e-06 1.131510659391211e-06 1.18485366051857e-06 1.090370419731812e-06 1.094341170571056e-06 1.0796400857771e-06 1.083510102972696e-06 1.07896680034969e-06 1.078222602757251e-06 1.065930781862789e-06 1.082134353680431e-06 1.071314589040639e-06 1.071908602767735e-06 1.068256871405993e-06 1.057470370824376e-06 1.054279266554659e-06 1.051365799753512e-06 1.058312705026765e-06 1.070038766926018e-06 1.074267245826377e-06 1.079483496368994e-06 1.072670027468803e-06 1.076025569091144e-06 1.083408083246695e-06 1.079736605902326e-06 1.081732527552504e-06 1.079006537452187e-06 1.066480194822361e-06 1.069123470642808e-06 1.068885495669747e-06 1.082377089289821e-06 1.064899006308906e-06 1.089528517184135e-06 1.071378651573696e-06 1.0668384682333e-06 1.07067206300826e-06 1.077067324217751e-06 1.065456995519298e-06 1.073380659022405e-06 1.07809686511473e-06 1.101778536849451e-06 1.083626198550292e-06 1.078364576301283e-06 1.110679413329763e-06 1.08192482883851e-06 1.07665534443413e-06 1.077383558367728e-06 1.073232425596871e-06 1.079762341760215e-06 1.060942878439164e-06 1.070160124072572e-06 1.080200227931982e-06 1.079616062327204e-06 1.090144170490248e-06 1.09360636812994e-06 1.10934701780252e-06 1.097415651685196e-06 + 1.104989692635172e-06 1.116627885267008e-06 1.098549788025593e-06 1.098019964729247e-06 1.099393131198667e-06 1.093933221341103e-06 1.096163586566945e-06 1.086123404547834e-06 1.101382125057171e-06 1.095827357744383e-06 1.101447452356297e-06 1.109852561853586e-06 1.113451592260617e-06 1.113600355040489e-06 1.13073690499732e-06 1.122793284125123e-06 1.152547019600547e-06 1.100903414652521e-06 1.08951276622804e-06 1.115640248627869e-06 1.100341261661697e-06 1.091139466780078e-06 1.07703797525005e-06 1.090668824588192e-06 1.06990725612377e-06 1.072219255604523e-06 1.071943884767279e-06 1.104048884315034e-06 1.10108831208322e-06 1.106641292381028e-06 1.099553152528188e-06 1.128875929623518e-06 1.134031732519247e-06 1.119204965149834e-06 1.134245497524944e-06 1.123550379844573e-06 1.126039308019244e-06 1.13208959717781e-06 1.15389891774953e-06 1.116710397042198e-06 1.089255494690633e-06 1.094894841457972e-06 1.125649102817761e-06 1.139728084353919e-06 1.160231096086761e-06 1.279517494623406e-06 1.112153888982448e-06 1.119661074966416e-06 1.100012209320766e-06 1.107404413502877e-06 1.099022451711562e-06 1.09731799113888e-06 1.078654609187879e-06 1.102182270784624e-06 1.088043060093469e-06 1.089051146152542e-06 1.081164313632144e-06 1.067954826794448e-06 1.062052959355242e-06 1.056077863381688e-06 1.068581077845465e-06 1.084566047637736e-06 1.090535612036092e-06 1.098756605699691e-06 1.090223189947892e-06 1.096925892341005e-06 1.104324805822898e-06 1.099555227312976e-06 1.105312463778318e-06 1.101774337541883e-06 1.079787338653659e-06 1.082360597592924e-06 1.082616307712669e-06 1.105420444957872e-06 1.078056467207489e-06 1.113266954178016e-06 1.086332304112148e-06 1.080226191163547e-06 1.085474632844807e-06 1.09434936845787e-06 1.078823189004652e-06 1.089456336700323e-06 1.094375040366913e-06 1.123542297420954e-06 1.100449004809434e-06 1.095349603019713e-06 1.131090929362699e-06 1.09937064252108e-06 1.092053004470017e-06 1.092794363444227e-06 1.087298770130474e-06 1.096138035450167e-06 1.07171233310055e-06 1.08421900790745e-06 1.103360339982373e-06 1.102741855163458e-06 1.113893571158542e-06 1.117173688669482e-06 1.13461386064273e-06 1.12187524692331e-06 + 1.122340549386536e-06 1.136831613735012e-06 1.110771648882292e-06 1.108229071178357e-06 1.111118649532727e-06 1.101528283697917e-06 1.106153519003783e-06 1.094966890491378e-06 1.115635569703954e-06 1.104476709201663e-06 1.11584836304246e-06 1.127572936354682e-06 1.132732048603202e-06 1.132674061210537e-06 1.167221860498557e-06 1.14926494454437e-06 1.223152885643231e-06 1.115927364736535e-06 1.097543266936896e-06 1.142382391350338e-06 1.115160021214479e-06 1.104482254987715e-06 1.086847042586214e-06 1.105895197639484e-06 1.079120252711618e-06 1.081113161660596e-06 1.08049672320476e-06 1.122619408988612e-06 1.115947107166448e-06 1.125508781285589e-06 1.113405236452536e-06 1.164013225363192e-06 1.176073809006084e-06 1.149327575333814e-06 1.175788135299172e-06 1.156323818918281e-06 1.160046412707061e-06 1.173017931677123e-06 1.217053064550555e-06 1.137148018415246e-06 1.10343894732523e-06 1.108651304093655e-06 1.160227405705427e-06 1.18752106814668e-06 1.257951367072963e-06 1.601556313346464e-06 1.130731435594612e-06 1.149725569860038e-06 1.114804467405861e-06 1.125634435439338e-06 1.113581607370406e-06 1.111591107161303e-06 1.091151219156927e-06 1.128705630293325e-06 1.104615293456845e-06 1.105929154476826e-06 1.096110366916037e-06 1.075273459605341e-06 1.069128529707086e-06 1.063726401184795e-06 1.079030674588921e-06 1.096537161515698e-06 1.103033945071275e-06 1.113128980989586e-06 1.107546271583715e-06 1.111095425443409e-06 1.120024755607574e-06 1.114033281623961e-06 1.122442142786895e-06 1.117920263027372e-06 1.090613579890487e-06 1.096306931458457e-06 1.09509079493364e-06 1.121294815220608e-06 1.088219629963305e-06 1.138792608657013e-06 1.100158115718841e-06 1.091884335835402e-06 1.097603416155835e-06 1.107281711654196e-06 1.08920912289534e-06 1.102520624129966e-06 1.103874744501354e-06 1.15139234679873e-06 1.114156781056863e-06 1.106960052510431e-06 1.164169987077912e-06 1.113243122574659e-06 1.09983135132552e-06 1.100550491628383e-06 1.094777374532896e-06 1.107219759433065e-06 1.081453348206196e-06 1.097843480124538e-06 1.1204014143118e-06 1.118709988645605e-06 1.136465140660903e-06 1.143853072704815e-06 1.177911691740974e-06 1.15411583934133e-06 + 1.119939692983962e-06 1.126504642456894e-06 1.108562699414506e-06 1.109391703835172e-06 1.110685559524427e-06 1.107265902078325e-06 1.114754738296142e-06 1.098284002409855e-06 1.112297240979387e-06 1.10687369669904e-06 1.109767381990423e-06 1.119449564157549e-06 1.122520075114153e-06 1.123028475547017e-06 1.143983043405683e-06 1.144102402150793e-06 1.160167080627161e-06 1.109591137193888e-06 1.100958847644051e-06 1.124443741673531e-06 1.109019368783493e-06 1.101111390511278e-06 1.08837976142695e-06 1.099574223673017e-06 1.080504247852332e-06 1.082311527511592e-06 1.08210308269463e-06 1.110582878993682e-06 1.108975556718406e-06 1.114092537335409e-06 1.10887190984954e-06 1.139512509240603e-06 1.14071636581059e-06 1.125681075464513e-06 1.141397303783265e-06 1.132382262625242e-06 1.134870800001408e-06 1.138304636327803e-06 1.171025335366949e-06 1.127039350734549e-06 1.098852045799958e-06 1.103188584039572e-06 1.134244575595744e-06 1.147116593713804e-06 1.156919888778418e-06 1.191714074977313e-06 1.121319561647738e-06 1.124878556524322e-06 1.108698910456951e-06 1.115334610446439e-06 1.107762320984307e-06 1.106215968604829e-06 1.088750952504824e-06 1.109510780139544e-06 1.098546565714287e-06 1.099355369404975e-06 1.091117944440612e-06 1.078056726555587e-06 1.073144375141055e-06 1.066509170755126e-06 1.080086995841611e-06 1.095789794902657e-06 1.100520030661301e-06 1.107428808211353e-06 1.100233657069793e-06 1.104491346382019e-06 1.112936299563216e-06 1.108163054652778e-06 1.113234340266445e-06 1.108970543839405e-06 1.091526925733888e-06 1.093172954824695e-06 1.093964499432332e-06 1.113814583675321e-06 1.089397571263362e-06 1.121253340841122e-06 1.096742128225969e-06 1.091279191456351e-06 1.096552313839538e-06 1.103646422251359e-06 1.090035217643504e-06 1.099750157607104e-06 1.104553678743514e-06 1.134055789719923e-06 1.110294860495742e-06 1.104904356452607e-06 1.149747546946855e-06 1.108640823588303e-06 1.102669727970351e-06 1.103476975572448e-06 1.098003565402905e-06 1.10589193980104e-06 1.082994671719462e-06 1.095062941658398e-06 1.11063074825779e-06 1.110383827551686e-06 1.122817870680137e-06 1.126257078709614e-06 1.14110159898928e-06 1.12978013078191e-06 + 1.130869669907497e-06 1.137004446150058e-06 1.112649954393419e-06 1.111740331793953e-06 1.114841325033922e-06 1.105767850617667e-06 1.117719520493665e-06 1.092906032340579e-06 1.119222929446551e-06 1.106861901689626e-06 1.117098094027824e-06 1.129203916150345e-06 1.132259946245995e-06 1.133341822168177e-06 1.165061478403118e-06 1.169621491214912e-06 1.213310280689939e-06 1.116569201542461e-06 1.096118616317199e-06 1.137248357707676e-06 1.115879019408794e-06 1.103241881850181e-06 1.080631655270281e-06 1.095251775495854e-06 1.072700555937445e-06 1.074076756424347e-06 1.073566977538576e-06 1.117263494165854e-06 1.115193569489747e-06 1.12326462797796e-06 1.114044071215403e-06 1.157766325476928e-06 1.166732529256365e-06 1.142444331136971e-06 1.166650918094092e-06 1.14838115550242e-06 1.151872123017483e-06 1.163837129780632e-06 1.236561725903584e-06 1.138453718851906e-06 1.099546004468266e-06 1.10510598361202e-06 1.151656169540161e-06 1.178629418063792e-06 1.222080759255562e-06 1.375840188444499e-06 1.13124039557988e-06 1.141500257872963e-06 1.11552072112886e-06 1.124794721363287e-06 1.114320200557017e-06 1.112077733012029e-06 1.082668077856397e-06 1.111286355381935e-06 1.092964172499933e-06 1.093917024519442e-06 1.08660361775037e-06 1.07033187646266e-06 1.066455610043704e-06 1.061674893776399e-06 1.074382552701536e-06 1.093349126790599e-06 1.101990854124324e-06 1.113961303644828e-06 1.095104995130214e-06 1.106065781186771e-06 1.121000330783772e-06 1.11506131617034e-06 1.122019789079332e-06 1.114792517853402e-06 1.085883269524857e-06 1.090852492779959e-06 1.091076981651895e-06 1.122348706417142e-06 1.082112461858742e-06 1.134042644679312e-06 1.096266892375297e-06 1.085724093741192e-06 1.09469411313512e-06 1.106927967953197e-06 1.083010362279424e-06 1.100928670894064e-06 1.103960322268449e-06 1.148144075813207e-06 1.115685162034197e-06 1.106711771114988e-06 1.177057832535411e-06 1.114067323726431e-06 1.099812131144517e-06 1.101120361113317e-06 1.092555905302106e-06 1.108296117990903e-06 1.075374427728093e-06 1.093792832307372e-06 1.117840746189813e-06 1.11753254117275e-06 1.133718821932916e-06 1.138702902636624e-06 1.168262812711873e-06 1.147265670908837e-06 + 1.106287498942038e-06 1.111091577854495e-06 1.087929106802221e-06 1.089357610339903e-06 1.09119049795936e-06 1.088048207975589e-06 1.101008066939357e-06 1.079565052464204e-06 1.093647185257396e-06 1.085932467503881e-06 1.091250922513609e-06 1.101901951017226e-06 1.104610589663935e-06 1.105376295384985e-06 1.13667960199848e-06 1.148103020653934e-06 1.156570386129374e-06 1.089235494688978e-06 1.080818286425256e-06 1.107326582427959e-06 1.088810154925568e-06 1.080305775502666e-06 1.067002152410623e-06 1.071816388531488e-06 1.060655492324258e-06 1.059249811419249e-06 1.059491651744793e-06 1.089397862585884e-06 1.088356320622097e-06 1.094889807262689e-06 1.087912004038571e-06 1.128124123894736e-06 1.12541037999847e-06 1.106661214222981e-06 1.12801780183247e-06 1.116615113261332e-06 1.120416335709251e-06 1.119484227984913e-06 1.190934693084955e-06 1.111560354871699e-06 1.075985711196381e-06 1.07990800657376e-06 1.118743652384069e-06 1.136817829205938e-06 1.16046793685598e-06 1.271904878308305e-06 1.10279185250306e-06 1.103738263452669e-06 1.088487872280552e-06 1.096213493312348e-06 1.087675268962585e-06 1.086045234188759e-06 1.064431668140742e-06 1.081799194224686e-06 1.070337965813906e-06 1.071149394960003e-06 1.065487751361616e-06 1.055907389968525e-06 1.052375210974787e-06 1.047705850965031e-06 1.056601234949994e-06 1.074689922830885e-06 1.07994547704493e-06 1.08750701599547e-06 1.071914553563147e-06 1.080362842742488e-06 1.093226643433809e-06 1.08844499635552e-06 1.094710974314239e-06 1.088115318736982e-06 1.070200738695348e-06 1.070146538495464e-06 1.07229837453815e-06 1.095071390011526e-06 1.067727076531355e-06 1.103826942738806e-06 1.074442845805379e-06 1.068679434723663e-06 1.07550030747916e-06 1.082937117757865e-06 1.068186316288688e-06 1.0789196629446e-06 1.083026209158788e-06 1.120864403958421e-06 1.089775821583316e-06 1.083601976148429e-06 1.153774547901776e-06 1.087845994618419e-06 1.08122673481148e-06 1.081983853623569e-06 1.077603442922737e-06 1.0846356701677e-06 1.064213577706141e-06 1.072902946930299e-06 1.090706810202846e-06 1.090674189185847e-06 1.104864804091221e-06 1.109121829045989e-06 1.125000181900759e-06 1.112387057133901e-06 + 1.081132932512219e-06 1.080879115988864e-06 1.072269228075129e-06 1.073077115165688e-06 1.074013795232531e-06 1.072595935625031e-06 1.080819089338547e-06 1.066364049506774e-06 1.075147750384531e-06 1.071116088269264e-06 1.069654146590437e-06 1.077846619068623e-06 1.078256133268951e-06 1.079030003126036e-06 1.090683754867428e-06 1.099106903268421e-06 1.100104039863936e-06 1.070829480198654e-06 1.066712041364326e-06 1.07752871869593e-06 1.070949508630292e-06 1.064593153188298e-06 1.053048968913117e-06 1.055360709045772e-06 1.048426142347125e-06 1.046791112457868e-06 1.04692585267685e-06 1.065611172634817e-06 1.066735713095568e-06 1.070107842338075e-06 1.071749455405779e-06 1.086821306728325e-06 1.085316380766699e-06 1.075362236591104e-06 1.086355785773208e-06 1.081688694171135e-06 1.083290531056491e-06 1.082786049266815e-06 1.113880585990046e-06 1.08146405253251e-06 1.059514961099239e-06 1.061184580208874e-06 1.082515490580249e-06 1.0903614562352e-06 1.096615920737065e-06 1.135416477282547e-06 1.077955914752238e-06 1.073099854309589e-06 1.06981408265483e-06 1.071909352390321e-06 1.069354210514462e-06 1.068798383130343e-06 1.050869009588951e-06 1.058408287235579e-06 1.05398786942601e-06 1.054362506636153e-06 1.051965860199289e-06 1.044178716824717e-06 1.041759588815694e-06 1.039833989580075e-06 1.044886481338381e-06 1.060042013278917e-06 1.065265415434169e-06 1.070357726007387e-06 1.054681288081838e-06 1.06094911345167e-06 1.073487947422791e-06 1.070651528323197e-06 1.070849549478226e-06 1.065463465010907e-06 1.056392804343886e-06 1.056195884530098e-06 1.058114406760069e-06 1.072839225457756e-06 1.053632910696933e-06 1.075017085128138e-06 1.05905802882944e-06 1.054471564287951e-06 1.060713572087479e-06 1.067870861959364e-06 1.053800341210831e-06 1.063595071570944e-06 1.068769197587471e-06 1.084231779913125e-06 1.072980122529543e-06 1.068900125744676e-06 1.098897037365987e-06 1.071889116133207e-06 1.067794201503602e-06 1.06848315795105e-06 1.064895741365035e-06 1.070467234853822e-06 1.051662721351931e-06 1.05831217922514e-06 1.06718396608585e-06 1.067754105577023e-06 1.077329784493486e-06 1.078824922728927e-06 1.085319102145377e-06 1.079278238336201e-06 + 1.139331015309608e-06 1.142140291676697e-06 1.124279719988408e-06 1.126477926050029e-06 1.128082189438828e-06 1.124910525618361e-06 1.133072998982243e-06 1.115319804512183e-06 1.130194277720875e-06 1.123169184324979e-06 1.108059990428956e-06 1.133899587557607e-06 1.131597475279023e-06 1.134800017510429e-06 1.166263805529866e-06 1.169794854760653e-06 1.190292469033238e-06 1.113568183441771e-06 1.11483760001363e-06 1.123664695512616e-06 1.114418552106144e-06 1.103029919846676e-06 1.085363965813713e-06 1.089014109112441e-06 1.078113712082995e-06 1.078564928036485e-06 1.078344020299937e-06 1.101907223244325e-06 1.103077757136361e-06 1.108129008997594e-06 1.120640877871892e-06 1.157806085672064e-06 1.147229813369677e-06 1.116724220651122e-06 1.154827970140104e-06 1.137448240484673e-06 1.145262491064614e-06 1.133827225885398e-06 1.206102183459734e-06 1.142405992027307e-06 1.09402707693107e-06 1.095712146792494e-06 1.139208920974966e-06 1.168112166993751e-06 1.176817312931178e-06 1.230658053685829e-06 1.131189650394049e-06 1.113312874778671e-06 1.11073426367625e-06 1.111420962374154e-06 1.10994121982344e-06 1.109723982040123e-06 1.083756760777987e-06 1.095640204340498e-06 1.087352927697793e-06 1.087933863885837e-06 1.085296084113452e-06 1.07467150201046e-06 1.069341934112344e-06 1.061892632492345e-06 1.075955054830047e-06 1.095850461041437e-06 1.105177737770191e-06 1.113435317279254e-06 1.088413021932411e-06 1.095530841155323e-06 1.119832806040222e-06 1.113420474041504e-06 1.109688042788548e-06 1.101423031002469e-06 1.090334251330205e-06 1.089944646537333e-06 1.092651359613228e-06 1.114900250342998e-06 1.086324420640494e-06 1.116868599382315e-06 1.093718267952681e-06 1.087769803120864e-06 1.09693225169849e-06 1.110519008307165e-06 1.086547896989032e-06 1.101429909056151e-06 1.117024343244566e-06 1.150984807907207e-06 1.124713460143312e-06 1.115022101316754e-06 1.176045618223043e-06 1.121295824191293e-06 1.116696331848743e-06 1.118291507395952e-06 1.111116134211443e-06 1.120475587867986e-06 1.082007216268721e-06 1.092676484404365e-06 1.103812167002616e-06 1.104552531216996e-06 1.124731493717945e-06 1.12828778497942e-06 1.145715380346246e-06 1.126265132711524e-06 + 1.40759593847406e-06 1.413319992593642e-06 1.349602385403159e-06 1.364686141869242e-06 1.369802447470647e-06 1.367952478403822e-06 1.4021743908188e-06 1.32707265265708e-06 1.376089215909815e-06 1.350945680655968e-06 1.27492774026905e-06 1.382326786369958e-06 1.368995878436863e-06 1.379972685455755e-06 1.478331766335828e-06 1.471929758523061e-06 1.594878227706431e-06 1.290554205723993e-06 1.314184025602572e-06 1.338020172880761e-06 1.295812715795819e-06 1.252415103181193e-06 1.192886944778593e-06 1.190669227213448e-06 1.174069709009018e-06 1.164183018431686e-06 1.165784198065012e-06 1.247992749142668e-06 1.251083524778096e-06 1.270657456586832e-06 1.326216679586878e-06 1.456829085810796e-06 1.431106692706408e-06 1.309592727594122e-06 1.455868195776588e-06 1.392809796385563e-06 1.42123132462757e-06 1.385349058580232e-06 1.635879520733852e-06 1.408863518292947e-06 1.218053334639535e-06 1.223292610319504e-06 1.396952489685077e-06 1.495055144573598e-06 1.564638938411633e-06 2.138223127445826e-06 1.364552504767857e-06 1.29469265353066e-06 1.279267474174617e-06 1.281615558568205e-06 1.277230877505531e-06 1.277514332542751e-06 1.179104323512092e-06 1.218077755993363e-06 1.18276931004857e-06 1.185605754017161e-06 1.180253676125176e-06 1.153548765842061e-06 1.1456262569709e-06 1.142097218576055e-06 1.150768675017844e-06 1.228346242498901e-06 1.262679340641171e-06 1.294117922157056e-06 1.186768475491817e-06 1.221276274776528e-06 1.319349347994603e-06 1.293908844957059e-06 1.278923932090947e-06 1.247711907126359e-06 1.209812083402539e-06 1.205600199227774e-06 1.216734162312605e-06 1.298795929471908e-06 1.195394947473005e-06 1.309192537490844e-06 1.218172005934548e-06 1.197977148592599e-06 1.231966155756936e-06 1.28256798603843e-06 1.195691877953209e-06 1.247310247975975e-06 1.315792342637678e-06 1.438452255086986e-06 1.347221914471675e-06 1.302668614755476e-06 1.496032790981872e-06 1.330680461819611e-06 1.319584775671956e-06 1.327891652636026e-06 1.29725759734356e-06 1.332820389166045e-06 1.187952449299701e-06 1.215901818341081e-06 1.256799450288781e-06 1.259101168216148e-06 1.339061004301811e-06 1.355235589528547e-06 1.429220287008093e-06 1.351741559574293e-06 + 5.548206331695837e-06 7.621230793120048e-06 4.795288887748939e-06 4.750526272800926e-06 4.919548032944476e-06 4.440475819933454e-06 4.872365437336157e-06 3.634860959778052e-06 5.253528556181664e-06 4.493648248171667e-06 5.22456342366695e-06 6.122308334965965e-06 6.401359332386392e-06 6.088536476767104e-06 1.005080185834117e-05 8.421895545396296e-06 1.857860833354152e-05 4.334518344251137e-06 3.53167764721718e-06 6.932623502819979e-06 4.467838316202233e-06 3.639977318670162e-06 2.673596650737409e-06 3.636044770161106e-06 2.332116821435193e-06 2.453088377762924e-06 2.41768493225436e-06 5.209820407969801e-06 4.628383077687204e-06 5.298632842709594e-06 4.497274805004281e-06 9.411880965259911e-06 1.094527048550731e-05 7.263230017429123e-06 1.104202838675405e-05 8.229956289795837e-06 8.932848395204473e-06 1.169221416574828e-05 2.112352547101182e-05 6.863376466270665e-06 3.516810352266475e-06 3.988164230861457e-06 8.225223487201561e-06 1.228220041937789e-05 2.083275867015288e-05 9.375869477068477e-05 5.729038999646718e-06 7.211477042190495e-06 4.274785126767711e-06 5.150491437788673e-06 4.292134626382449e-06 4.222151311239486e-06 2.727988622552857e-06 5.360109714303007e-06 3.539280641007281e-06 3.699542016732948e-06 3.069720996506931e-06 2.238666581888538e-06 2.015823426404495e-06 1.767136623698207e-06 2.333544976806934e-06 3.267457838518339e-06 3.767153145872726e-06 4.569189478331737e-06 3.71382060748715e-06 4.1596573154834e-06 5.055736249204301e-06 4.657858653445146e-06 5.446618288829086e-06 5.102435451931342e-06 3.05818048218498e-06 3.421272424475319e-06 3.281274430833037e-06 5.330093024724647e-06 2.740601402706488e-06 6.494642047272237e-06 3.367976660229033e-06 2.906420693449263e-06 3.306394052771111e-06 4.0129493719121e-06 2.720865037275644e-06 3.578719685037868e-06 4.0236716642994e-06 8.581345824154596e-06 4.714087950219437e-06 4.029263557470131e-06 1.046986546171524e-05 4.667553938020319e-06 4.00960552582319e-06 4.150965523308514e-06 3.62211513049715e-06 4.597061618483167e-06 2.466512142973443e-06 3.421767047484536e-06 5.279903653843121e-06 5.124684193447138e-06 6.27917058437788e-06 6.899181006048138e-06 1.1847768028872e-05 8.205213301692993e-06 + 9.73258632441798e-05 0.0001983997471768362 7.430858413215446e-05 7.123302449940638e-05 7.724132230180203e-05 5.92039324800453e-05 6.966725531754037e-05 3.732703436298834e-05 9.013799763124553e-05 6.301850257273145e-05 8.327307702415965e-05 0.0001256336053927498 0.0001349745959871029 0.0001209074138781574 0.0003091740913916396 0.0002153666397148868 0.0007187053136217258 5.668118668822331e-05 3.489867659212109e-05 0.0001454347704168413 6.155400287255475e-05 3.882990439407763e-05 1.793946816519565e-05 2.674424761295313e-05 1.255103579467232e-05 1.288163626611549e-05 1.278051606590225e-05 6.973385485053996e-05 6.005459793811951e-05 7.83309467706772e-05 6.3415451265314e-05 0.0002742907656561044 0.0003010777144041299 0.0001321848143067683 0.0003300881382397591 0.00020477223061377 0.000244057051023816 0.0002829594718569695 0.0009552412493007978 0.0001563342880643859 3.352456503336043e-05 4.212144683535257e-05 0.0001996695606667487 0.0003937027296263551 0.000686937157029277 0.004589754760207398 0.0001054360737917648 0.0001181025593623986 5.460101358067959e-05 7.647168320978892e-05 5.549208483834889e-05 5.426011183118362e-05 1.702580217610716e-05 3.987594976351261e-05 2.182788918148049e-05 2.387120036928536e-05 2.080481163346803e-05 9.592285110215926e-06 7.029451921880536e-06 5.406665934515331e-06 8.842193089719785e-06 3.023778057453796e-05 4.297581742918055e-05 6.577261871854034e-05 2.386739124204951e-05 4.386557943547587e-05 8.133518176123289e-05 6.830619091147128e-05 8.71215732090036e-05 7.016712155660798e-05 2.570525350620301e-05 3.234588831446672e-05 3.036295761660313e-05 8.824919120797858e-05 1.906451159072731e-05 0.000121227018144765 3.135157358613583e-05 2.175388408076628e-05 3.110443682885489e-05 4.944235493198335e-05 1.858151394884544e-05 3.753010258833456e-05 4.908009447035511e-05 0.0002401872175390452 7.033867063910293e-05 4.954808839485736e-05 0.0003265728693371273 6.970920998838892e-05 4.885078494254458e-05 5.29695385012019e-05 3.891130356237227e-05 6.846988117104047e-05 1.486047393939316e-05 3.304093513634143e-05 7.654054783046149e-05 7.411522580014207e-05 0.0001228618515298763 0.0001475765549372454 0.0003291773966260791 0.000183927963153252 + 0.01721407022499122 0.03234345052911181 0.01343946837948806 0.01339828975923751 0.01443172730705555 0.01183885563003173 0.01473488594518813 0.006342453431344097 0.01692739327577897 0.01180448283885482 0.01193131058045083 0.01967001270836022 0.0185869547922799 0.01600395487585082 0.04137368971051991 0.03503128564351066 0.06680866353113757 0.007014871329916517 0.004960082929272858 0.01728957726667701 0.00823703360764938 0.004981559918519451 0.001987998130623225 0.002939309458259487 0.001440782482930558 0.00145054535213518 0.001427190592934835 0.008244831645924933 0.007193392169732249 0.009017463248696345 0.009502761884107258 0.03476466665003386 0.03099529503582943 0.01363770350767801 0.03619982648703157 0.02365978642864874 0.02959636007178545 0.0302420422084424 0.1119813478376734 0.02227188633661115 0.003924770903623198 0.004901046289788269 0.0214209207894438 0.0404417203629901 0.05416591926108083 0.2433247258177467 0.01337374139598069 0.01189739599157669 0.006687207584297639 0.008562854224573258 0.007077323299945704 0.007270748459170306 0.001779921445965726 0.004960106521032515 0.002506841710236074 0.002812017732317429 0.002388992536353385 0.001070587199805573 0.0007564106127802006 0.000501293722706464 0.0009729658764072724 0.003867354323443095 0.006174994297374781 0.009652984403508924 0.002721386990518937 0.004975557663847496 0.01133955590102431 0.009914236401918686 0.01113608820929812 0.008893509633622898 0.003332906061899621 0.004426433597842561 0.004038909492393827 0.01175407134004303 0.002127435406961808 0.01393702380417849 0.003817031265935356 0.002473233655940987 0.003968017300419291 0.007118876631881932 0.001985265396642788 0.004921681095471087 0.007652996032366133 0.03429983364498312 0.01125202250914725 0.007238948032277648 0.04970645849688893 0.01121034006529698 0.008449232937344675 0.009584685933788251 0.006488216399304747 0.01263823743448711 0.001759433822627443 0.004401823764354162 0.009655730119412453 0.00940709740270762 0.01470277986681623 0.01732714207008357 0.03451880060217505 0.02037952779654617 + 0.003743413030726117 0.006349039963211567 0.00286437154663588 0.002845856969955207 0.003060985719770315 0.002490282234887786 0.003052694156892244 0.001406081938114312 0.003541274524920368 0.002517552985366933 0.002456341312964128 0.004165305859558543 0.003969319715846353 0.003602640716442451 0.008765600778334104 0.007601691540363831 0.01306743919709596 0.001701342086535718 0.001186658620783376 0.003569657289069994 0.001930666811436055 0.001172978884714126 0.000471937096193642 0.0005992169355337751 0.0003476191322846489 0.0003350052758506195 0.0003352818736743757 0.001670444994616105 0.001587475745793654 0.001956906023213634 0.002186571033021778 0.007368092066696974 0.006167997335136732 0.002757429938116118 0.00731399529584742 0.004905526859928955 0.006065520811318947 0.005381617320324494 0.02167188888006066 0.004805731851050155 0.0008871131412391264 0.001073523147692157 0.004610955446315401 0.008499026948408428 0.009624905726101751 0.03871922377396331 0.003090736814854722 0.00236384718970406 0.001610962022610352 0.001956855663459933 0.001670438956326237 0.001691973187913476 0.0004137637893606438 0.0008813575324708722 0.0004973822075911016 0.0005445679636544298 0.0005013014880574929 0.0002572367167630318 0.0001901265046626577 0.0001338623343229983 0.00022737393852168 0.0008844586442755542 0.001398804400515985 0.00216065901824436 0.0005365851337373329 0.001066443562464769 0.002560731326315846 0.002213094669251348 0.002342519424267664 0.001789483668211744 0.0007356926089840954 0.0009066664777606093 0.0008811040532634706 0.002562297933955904 0.000501520317737203 0.002884655639366684 0.0008623349407486103 0.0005701696097482056 0.0009139005515024223 0.001638900771489205 0.000478062759137643 0.001139918999022882 0.001753552209404319 0.00700999548579162 0.002529759136084664 0.001688703477441322 0.01045257088902218 0.002490577673718519 0.00185820736133735 0.002070684270435663 0.001433565921360014 0.00266374212353071 0.000418187862280206 0.0009449252391533491 0.001960720115718573 0.001959422809299838 0.003209676927966143 0.003697519844823915 0.006497488550689212 0.004038922406323309 + 0.0005297389601786051 0.0008205129369400765 0.0004032689968482828 0.0004011176994822563 0.0004286597176843543 0.000353542847932431 0.0004254466138888802 0.0002158157339664513 0.0004859841626654315 0.0003587967852070051 0.0003459422127889411 0.0005781558199373649 0.0005654704816429046 0.0005330137482850716 0.001192710269274144 0.001042365014043867 0.001857294625633443 0.0002738008392277891 0.0001945654258470597 0.000516652604776624 0.0003001376517239862 0.0001864674843830016 7.98190734379034e-05 8.262237451006627e-05 6.025716002966419e-05 5.612280268252334e-05 5.693890824431946e-05 0.0002379037824979946 0.0002398081123935469 0.0002963870574532734 0.0003320030397553353 0.001019295457428626 0.0008804571242322368 0.0004050801420820704 0.001024577331602217 0.0006998926084342827 0.0008414234819831279 0.0007249574331247288 0.002788773417751855 0.0006768538238652866 0.0001377413897252211 0.0001606571763446141 0.0006810083775068421 0.001222483760395576 0.001363346321466175 0.003586997303111517 0.0004705841161598556 0.0003393552775285968 0.0002584598510999569 0.0003076264356298708 0.0002628466770353555 0.0002624431826561135 6.888623317991005e-05 8.445778938792614e-05 6.493777628335806e-05 6.851390002893254e-05 7.485298183240729e-05 4.455157782956576e-05 3.444428733700988e-05 2.669915690489688e-05 3.858418050839418e-05 0.0001394872057218777 0.0002135756744721107 0.0003213684973673026 6.836791192910141e-05 0.000156689312174052 0.0003833051715069757 0.0003285716209262546 0.0003421494662347868 0.0002516191321646488 0.0001140592465418422 0.0001296469231704123 0.0001334233247405336 0.0003785677171634916 8.40319571757675e-05 0.0004242257292403906 0.0001342923231852922 9.281664269167322e-05 0.0001446846532857649 0.0002518795881201186 8.174988204068256e-05 0.0001789841005717108 0.0002691928950895317 0.0009368452343530009 0.000374390037436001 0.0002625839179408729 0.001384924894239248 0.0003650538461670294 0.0002759943146770638 0.0003014321195280445 0.0002170065626927453 0.0003728441075878663 7.112310187551429e-05 0.0001403425535926317 0.0002791366703007725 0.0002834912427971403 0.0004795524699687803 0.000543207561467085 0.0009028759855453927 0.000576640210326218 + 3.823438275674107e-05 5.424916396634671e-05 3.017677582306533e-05 3.01791667567386e-05 3.172296963782628e-05 2.753239320441025e-05 3.208410225852276e-05 1.938964722114633e-05 3.470382245041037e-05 2.771192731643168e-05 2.847782994308545e-05 4.123911232767341e-05 4.25130792294226e-05 4.06664412011537e-05 7.924926559432777e-05 6.763154213373923e-05 0.000150741188280179 2.425610000855727e-05 1.846600963339995e-05 4.419725065574198e-05 2.553179606223921e-05 1.73719535645489e-05 9.043915088824406e-06 1.045579491787407e-05 7.249453204849488e-06 6.879752355359869e-06 6.94407695789323e-06 2.365311690510907e-05 2.235735545852435e-05 2.786650620834052e-05 2.701049841746794e-05 7.132211849025794e-05 7.75944816240326e-05 4.189494025297336e-05 8.113335355375284e-05 5.671336172596853e-05 6.382965012008412e-05 7.619429677063749e-05 0.0001764000184074632 4.820003659489203e-05 1.391801049166475e-05 1.608924611673501e-05 5.690404903369028e-05 9.423136179798064e-05 0.0001645001176457939 0.0006271027512187999 3.730505915910953e-05 3.81749249385166e-05 2.318859119299077e-05 2.843744912794932e-05 2.320009985723459e-05 2.279591580389706e-05 8.318035778387411e-06 1.356002315233695e-05 9.050289598633299e-06 9.472328507342809e-06 8.918657378842454e-06 5.764847529121653e-06 4.812635808093546e-06 4.200471892090718e-06 5.442446699532866e-06 1.363358408212889e-05 1.880369348583599e-05 2.622004603836103e-05 9.580148095267305e-06 1.619832919175224e-05 3.081057494114248e-05 2.679832201124555e-05 2.990762720855855e-05 2.358800260537919e-05 1.143137134818062e-05 1.247542010673897e-05 1.289250438674117e-05 3.130517122684751e-05 9.401046099810628e-06 3.871042925496226e-05 1.338601750688895e-05 1.012830649216312e-05 1.40775449750663e-05 2.162930924498596e-05 9.342646098531304e-06 1.665557684304986e-05 2.285861188155991e-05 6.366230784848881e-05 2.935583780327988e-05 2.253555886255754e-05 8.618363108681137e-05 2.854602121260541e-05 2.285303943949657e-05 2.427277415506524e-05 1.89272928992068e-05 2.811383639311771e-05 8.183777381987056e-06 1.342798445591598e-05 2.581344037366762e-05 2.565656111386261e-05 4.00503657687068e-05 4.523342965967458e-05 8.304053140051337e-05 5.294995865057217e-05 + 2.145046657631156e-06 2.118353961577668e-06 2.02013536920731e-06 2.051724294460655e-06 2.06201379171489e-06 2.059478035221218e-06 2.161721809557093e-06 1.964571737289589e-06 2.073885795539354e-06 2.022799620249316e-06 1.86335853413766e-06 2.074828934439665e-06 2.038815633653712e-06 2.065665578143694e-06 2.240585896373659e-06 2.370826804209969e-06 2.338273189295137e-06 1.894057023221762e-06 1.934333106135e-06 1.970267557993566e-06 1.903280917758821e-06 1.809591523738163e-06 1.655803497868646e-06 1.635529159216276e-06 1.596446921325878e-06 1.546426112497556e-06 1.556113168987849e-06 1.802392930017049e-06 1.817768293221889e-06 1.858780215968636e-06 1.967490419474416e-06 2.182863466870799e-06 2.095646793875972e-06 1.922702688617051e-06 2.145058594749116e-06 2.056079182466419e-06 2.105733003077148e-06 2.022081837083078e-06 2.552901566588162e-06 2.116884232350458e-06 1.730808595112876e-06 1.745775747963307e-06 2.06345226061444e-06 2.213655609040188e-06 2.245733658590154e-06 2.654644529087591e-06 2.037635193019582e-06 1.892800712610665e-06 1.872526777191297e-06 1.882074442960402e-06 1.867500991181714e-06 1.86555463344007e-06 1.60507117641373e-06 1.680606622755931e-06 1.599783722383563e-06 1.607608613340972e-06 1.600736915463585e-06 1.49288223383337e-06 1.446856529696561e-06 1.426399336423856e-06 1.475521258953449e-06 1.750140903311603e-06 1.827109230134738e-06 1.898139558420553e-06 1.612669823458646e-06 1.73869020869688e-06 1.951045337733603e-06 1.898463686700325e-06 1.873286734621615e-06 1.802710713150191e-06 1.701163924394677e-06 1.690171984591871e-06 1.721760270356754e-06 1.91081207390198e-06 1.662769772536876e-06 1.924990446156016e-06 1.729766161417956e-06 1.670297073985694e-06 1.759257159505978e-06 1.870474818588264e-06 1.663882976288278e-06 1.797067390896245e-06 1.941710511488282e-06 2.15581962592637e-06 2.013898161123961e-06 1.912775548618129e-06 2.362020133261922e-06 1.97736849827379e-06 1.94928992414134e-06 1.969816295854798e-06 1.889947910171941e-06 1.982822723789468e-06 1.642855821160083e-06 1.721236770890755e-06 1.824753880441676e-06 1.832159981063342e-06 1.977519783480375e-06 2.000732777673875e-06 2.08431043802193e-06 1.98540178431017e-06 + 1.597787704810116e-06 1.700783329283695e-06 1.530648901848508e-06 1.527141918700181e-06 1.541145664418764e-06 1.494606706842205e-06 1.530702562035913e-06 1.425411213062944e-06 1.563652986646957e-06 1.504788031070348e-06 1.544431455613449e-06 1.630857298096089e-06 1.651137587543872e-06 1.648485987715276e-06 1.84570314409882e-06 1.787698918676028e-06 2.039007384269098e-06 1.517199885725518e-06 1.430337110974733e-06 1.669627916811578e-06 1.520227066009738e-06 1.442895317893544e-06 1.323822040433242e-06 1.392837670977087e-06 1.282859628304323e-06 1.286459855975863e-06 1.284686064195739e-06 1.524239969796781e-06 1.51316571717075e-06 1.562538642474465e-06 1.521662209569286e-06 1.814309221970234e-06 1.812590960881266e-06 1.663855531575109e-06 1.83608202952712e-06 1.743826430811168e-06 1.775418400740136e-06 1.771989481369474e-06 2.142516098757596e-06 1.687983502307588e-06 1.417026371797192e-06 1.451370923888362e-06 1.75439051552928e-06 1.894693978599093e-06 1.973246205544399e-06 2.345770246492407e-06 1.628754002780397e-06 1.638547287186043e-06 1.509702487467734e-06 1.569348720309449e-06 1.505897273545997e-06 1.4958902099238e-06 1.328140427858671e-06 1.433703051390012e-06 1.374448782343052e-06 1.381496769425894e-06 1.350377402786762e-06 1.260226810018139e-06 1.231362347198228e-06 1.210784034810786e-06 1.26165458880223e-06 1.39412872357525e-06 1.446641668678694e-06 1.516472018181503e-06 1.384706752816101e-06 1.456500111629566e-06 1.561618692136335e-06 1.523198918107482e-06 1.566361326865717e-06 1.518216002693862e-06 1.358757387492915e-06 1.385444790003021e-06 1.38488150014382e-06 1.57097689168495e-06 1.33160911275354e-06 1.639083908600014e-06 1.402950658757618e-06 1.349887796209259e-06 1.400523270689291e-06 1.474270270307443e-06 1.333659986002544e-06 1.432717173344145e-06 1.475287422891824e-06 1.765541696840955e-06 1.537251183236776e-06 1.479770194379171e-06 1.871575669554204e-06 1.527554722713376e-06 1.463113918021008e-06 1.473599112955526e-06 1.420391583906166e-06 1.509163794821688e-06 1.298972705399137e-06 1.397307698880468e-06 1.536909437049871e-06 1.535566617860695e-06 1.645836590569161e-06 1.681334147463076e-06 1.811397559947636e-06 1.714342104719435e-06 + 1.212170307240967e-06 1.222572251435849e-06 1.193575471347685e-06 1.195058047187558e-06 1.197933713115162e-06 1.18967295748007e-06 1.199847091015727e-06 1.171430056956524e-06 1.201598379907409e-06 1.189484905239624e-06 1.189395760547995e-06 1.210116160166308e-06 1.212513520698622e-06 1.214631794255183e-06 1.259616734472502e-06 1.248598435310555e-06 1.328034608505391e-06 1.190624701052911e-06 1.17447282477201e-06 1.219084836634465e-06 1.190072200785153e-06 1.175136659981035e-06 1.144898494231938e-06 1.168729863110229e-06 1.129341171690612e-06 1.137289942221287e-06 1.13587341843413e-06 1.193513945452196e-06 1.187850003248059e-06 1.198773972532763e-06 1.192208618050472e-06 1.253487473817927e-06 1.269352097210685e-06 1.229140316638677e-06 1.269601916931151e-06 1.238057077301846e-06 1.245130384575077e-06 1.26753911544597e-06 1.327524998373519e-06 1.222873347472841e-06 1.170526005012107e-06 1.177194995705122e-06 1.242862426309443e-06 1.285038893072965e-06 1.348082718344301e-06 1.549366382747053e-06 1.210950761887375e-06 1.229562405669071e-06 1.188709759958329e-06 1.199678584029584e-06 1.187257359092087e-06 1.185169086426185e-06 1.150169406827217e-06 1.19177342128296e-06 1.164926299423996e-06 1.16658532434144e-06 1.156843801197738e-06 1.129630035734408e-06 1.11822998860589e-06 1.104204841340106e-06 1.133144536424879e-06 1.162352518235821e-06 1.174243408286202e-06 1.187699517402052e-06 1.168354824443441e-06 1.179367178139046e-06 1.196117906943073e-06 1.188539314966874e-06 1.196408156545203e-06 1.189134238188672e-06 1.152429035755631e-06 1.159829878361052e-06 1.15927086596912e-06 1.196121758084701e-06 1.147287960634458e-06 1.214337540744737e-06 1.166244562256225e-06 1.152857628028414e-06 1.16416636330996e-06 1.181068768119076e-06 1.148578489207353e-06 1.172191311127335e-06 1.182590786186211e-06 1.239518706341869e-06 1.196183614382562e-06 1.183398527615509e-06 1.262908636334714e-06 1.192251644965836e-06 1.17876465566269e-06 1.181094916091752e-06 1.167677964986069e-06 1.187481828424097e-06 1.133174805545423e-06 1.162934751164357e-06 1.192544353045832e-06 1.191204148653924e-06 1.213050971671237e-06 1.22125849699728e-06 1.272971580590365e-06 1.236458235354121e-06 + 1.088306749608137e-06 1.08935049070169e-06 1.07862068432496e-06 1.080184361512693e-06 1.081365937238843e-06 1.079053404851038e-06 1.083956746583681e-06 1.072132079116273e-06 1.082824468312538e-06 1.077650551906117e-06 1.0708139086546e-06 1.085591215144177e-06 1.084324654954116e-06 1.086448387255246e-06 1.100643988394268e-06 1.101708315687233e-06 1.11475430664143e-06 1.073717239563621e-06 1.071956477360914e-06 1.079723073615924e-06 1.073931677808559e-06 1.067170988022781e-06 1.058470587622651e-06 1.061581013317436e-06 1.055324688081782e-06 1.054334596517492e-06 1.054523288246401e-06 1.068734732712073e-06 1.069144712317893e-06 1.071697443677522e-06 1.076847699010841e-06 1.096920295040604e-06 1.091907533279368e-06 1.076976962721687e-06 1.095357056613011e-06 1.087196526583512e-06 1.090859832686419e-06 1.085050939764187e-06 1.120632223461371e-06 1.090158818328746e-06 1.064079651058591e-06 1.065650735654344e-06 1.088449696595717e-06 1.101879517406701e-06 1.112577324491326e-06 1.16060107657745e-06 1.084551378482956e-06 1.075664933125609e-06 1.072219580677825e-06 1.073456989075794e-06 1.07162128948346e-06 1.071129918983615e-06 1.058109500462479e-06 1.064888067503489e-06 1.06032059932204e-06 1.060645438144547e-06 1.058765661809957e-06 1.051847377198101e-06 1.049833116439913e-06 1.048217868060419e-06 1.05252188831173e-06 1.063310271831597e-06 1.067693887080168e-06 1.073035548415646e-06 1.061039725414048e-06 1.065797462729279e-06 1.077338090738067e-06 1.073190070144392e-06 1.072035217930534e-06 1.068321537900374e-06 1.060472627045783e-06 1.061387024492433e-06 1.062014433728109e-06 1.074733013695095e-06 1.05897370161756e-06 1.076125609955625e-06 1.063331151129887e-06 1.060001228125884e-06 1.063854533356334e-06 1.070740097475209e-06 1.059271546921536e-06 1.066221503975839e-06 1.073682124541619e-06 1.093571565746743e-06 1.07935395021741e-06 1.072977472205139e-06 1.104284120145849e-06 1.077084647249649e-06 1.072900154497347e-06 1.073938634021943e-06 1.06908194652533e-06 1.075786684623381e-06 1.056861464121539e-06 1.062546672869757e-06 1.069377262297166e-06 1.069681097476405e-06 1.080595644964433e-06 1.082502027571763e-06 1.090847032259035e-06 1.081359712884478e-06 + 1.069406490472602e-06 1.076872123917383e-06 1.064513227788666e-06 1.064569488562483e-06 1.065393590238273e-06 1.062791568529065e-06 1.064849499243792e-06 1.058619645277759e-06 1.066601825527869e-06 1.063171083615089e-06 1.067248234676299e-06 1.071727744772488e-06 1.074225174590993e-06 1.07423409545504e-06 1.087913897634962e-06 1.08267726517397e-06 1.102235025030041e-06 1.066023411766537e-06 1.059913495637943e-06 1.077420090922487e-06 1.065636965336125e-06 1.060511301886891e-06 1.052802463874514e-06 1.060181247680703e-06 1.048508295298234e-06 1.049116065132694e-06 1.049164389144153e-06 1.06967409152503e-06 1.067006888177957e-06 1.071055901746831e-06 1.064923342397606e-06 1.086372961367488e-06 1.088100775703538e-06 1.079612463428248e-06 1.0885432057961e-06 1.082441862365613e-06 1.084108944837681e-06 1.08719589775319e-06 1.103378377109721e-06 1.076787349063579e-06 1.059525072122369e-06 1.063014401836426e-06 1.083701734572173e-06 1.092215121900608e-06 1.107014237611281e-06 1.147765196662931e-06 1.073114471950021e-06 1.079633902278943e-06 1.06565518365187e-06 1.071099163141298e-06 1.065101590924655e-06 1.064029152786361e-06 1.052973605197849e-06 1.068803516801609e-06 1.058999270497907e-06 1.059673671477412e-06 1.054206435924243e-06 1.046180827302123e-06 1.042839670617468e-06 1.039071676700587e-06 1.047073197923964e-06 1.056902299012563e-06 1.060051502577153e-06 1.064732110478417e-06 1.060372870398396e-06 1.064300182207489e-06 1.067963594891808e-06 1.065267014155324e-06 1.069993004421121e-06 1.067945099464396e-06 1.054342391171303e-06 1.055533260796437e-06 1.055790605164475e-06 1.069307771217609e-06 1.053340479728604e-06 1.076099316321688e-06 1.057819972061225e-06 1.054388881982504e-06 1.05739358957635e-06 1.06205828842576e-06 1.05372306791196e-06 1.05957417062541e-06 1.062008415431137e-06 1.082527884221918e-06 1.065614334549991e-06 1.062481061353537e-06 1.088568229334896e-06 1.064808508033366e-06 1.060819393217116e-06 1.061261414747605e-06 1.058289768707255e-06 1.062927211137321e-06 1.049889718274244e-06 1.056637202623278e-06 1.069044913037942e-06 1.068391242142752e-06 1.075372420444864e-06 1.078078359029178e-06 1.088503033486177e-06 1.081233236277512e-06 + 1.074484789143071e-06 1.073246423288765e-06 1.064843559106521e-06 1.066412878003575e-06 1.067395174914054e-06 1.065862861082678e-06 1.071610142844293e-06 1.059857495988581e-06 1.068503593160131e-06 1.064228769109832e-06 1.062660928141668e-06 1.07001613258717e-06 1.069843250434133e-06 1.071030485633173e-06 1.085672021616801e-06 1.087815745037801e-06 1.095935038719631e-06 1.063538903167682e-06 1.060077957859562e-06 1.071059703150468e-06 1.06330118754272e-06 1.059484702636837e-06 1.051804822793656e-06 1.055602524502319e-06 1.048132617142983e-06 1.047536784426484e-06 1.047675446841367e-06 1.063287463409779e-06 1.062229205928134e-06 1.065300761382559e-06 1.063979741644516e-06 1.081697611482468e-06 1.080902686467766e-06 1.072513802213848e-06 1.081828564508669e-06 1.07551570138753e-06 1.077322934861513e-06 1.079442959905919e-06 1.103587628392688e-06 1.074068610051881e-06 1.057787784475295e-06 1.059180121387726e-06 1.076710557157412e-06 1.086799146676753e-06 1.092908427757777e-06 1.122270020914584e-06 1.069773293949083e-06 1.072090308085194e-06 1.062963447040488e-06 1.065863054705574e-06 1.062505557314353e-06 1.061913806665871e-06 1.051867133838869e-06 1.060860167712008e-06 1.054051011806223e-06 1.054457790417018e-06 1.052734759809937e-06 1.044747079959052e-06 1.042528907646556e-06 1.040997261725352e-06 1.045163685375883e-06 1.056431056412066e-06 1.059227024313714e-06 1.062510676774764e-06 1.054984917203683e-06 1.059513657253319e-06 1.065043548464928e-06 1.062741809221279e-06 1.064654007620902e-06 1.062164621146167e-06 1.053751432777972e-06 1.054926229926423e-06 1.055381844139447e-06 1.064883392132288e-06 1.052387400335419e-06 1.069650938489985e-06 1.056955017730843e-06 1.053605160450388e-06 1.056891310469155e-06 1.060887960591117e-06 1.052774484477936e-06 1.058756030403174e-06 1.061488053011317e-06 1.077918966529978e-06 1.065547508005693e-06 1.06157389012651e-06 1.090255310032262e-06 1.063942349333047e-06 1.060587720758122e-06 1.061275270330952e-06 1.057905109291823e-06 1.062638617099765e-06 1.049556672683138e-06 1.056053505976706e-06 1.063209808194188e-06 1.062994989808885e-06 1.069782978646572e-06 1.071835203703131e-06 1.081046583806256e-06 1.074376886123218e-06 + 1.108688177708927e-06 1.111810760789922e-06 1.091887853021944e-06 1.093753638770067e-06 1.095532880412975e-06 1.092242854383585e-06 1.101659464097793e-06 1.081879091202609e-06 1.097779886549688e-06 1.090147662807794e-06 1.093177061761708e-06 1.104355881409447e-06 1.105799061207335e-06 1.107615947404383e-06 1.140725805370835e-06 1.142977099632958e-06 1.175623751237254e-06 1.092866638074952e-06 1.083010847224841e-06 1.107936355992933e-06 1.092225989651752e-06 1.083357290099229e-06 1.070275356340744e-06 1.079505100420874e-06 1.064157373775743e-06 1.064421290664086e-06 1.064508985848533e-06 1.093704483423608e-06 1.092224682253118e-06 1.097670043748167e-06 1.091658621277247e-06 1.130614457167667e-06 1.13061280870852e-06 1.110914343627201e-06 1.132323678376679e-06 1.117425306063069e-06 1.121199264986217e-06 1.126399507000997e-06 1.199908574278652e-06 1.11352117571073e-06 1.08085836814098e-06 1.085527969735267e-06 1.120209537575079e-06 1.144911589534559e-06 1.164497751560134e-06 1.280057595920425e-06 1.105288907510271e-06 1.110003896798162e-06 1.092034114691387e-06 1.098965116241857e-06 1.091054409485537e-06 1.089344124238778e-06 1.070242358736095e-06 1.089731679115857e-06 1.077606416544086e-06 1.078467615656109e-06 1.071695656662541e-06 1.060349944737027e-06 1.055362048418829e-06 1.05060820487779e-06 1.061235927579673e-06 1.077195673104825e-06 1.082612996583521e-06 1.090595468156152e-06 1.079464997388868e-06 1.086750394563296e-06 1.096096536201685e-06 1.091410375408941e-06 1.096755710250363e-06 1.092035581962136e-06 1.0728589501241e-06 1.074525101785184e-06 1.075325982924369e-06 1.097177538156302e-06 1.071115566020353e-06 1.105097631182161e-06 1.07849415442729e-06 1.072785618561056e-06 1.07802836524229e-06 1.086151659279722e-06 1.071728187085341e-06 1.08175357738105e-06 1.086304123987247e-06 1.121769564349506e-06 1.093738077884154e-06 1.086995332855167e-06 1.152182036889826e-06 1.091482580761749e-06 1.084324686928539e-06 1.085402644207534e-06 1.079514149182614e-06 1.088260205506231e-06 1.066253375370252e-06 1.076598948657193e-06 1.093902959325987e-06 1.093711581745538e-06 1.105869564810291e-06 1.109594442993966e-06 1.130880033173298e-06 1.115238941196139e-06 + 1.151095815998815e-06 1.158188766225976e-06 1.132710281126492e-06 1.132926911395771e-06 1.135586401801447e-06 1.128583960507967e-06 1.139905904778971e-06 1.116602049933135e-06 1.139112399073383e-06 1.128339462752592e-06 1.135383328687567e-06 1.148096330894077e-06 1.151661113141245e-06 1.153006351728436e-06 1.198350087605604e-06 1.193578803793116e-06 1.250911363825935e-06 1.135332073687323e-06 1.118807137601152e-06 1.160323218840631e-06 1.134498162969066e-06 1.123228052790637e-06 1.101414994764127e-06 1.1186966375476e-06 1.091785748030816e-06 1.092250272449746e-06 1.092009853209674e-06 1.140635362162357e-06 1.135000442076262e-06 1.144756776483291e-06 1.133621147175745e-06 1.187847168182543e-06 1.19145414245736e-06 1.167570275129037e-06 1.192831646790182e-06 1.172989904318911e-06 1.177547357400499e-06 1.189192040840226e-06 1.265869272515374e-06 1.159838358688603e-06 1.120673221777224e-06 1.126097185277786e-06 1.176836834204664e-06 1.208890301640508e-06 1.267455992604027e-06 1.621813831675922e-06 1.150389145720965e-06 1.167674874125169e-06 1.134258925006293e-06 1.1451377162075e-06 1.133005259390529e-06 1.130943225291503e-06 1.104190335610156e-06 1.142448134316965e-06 1.116576200388408e-06 1.117858310806241e-06 1.108435434105104e-06 1.08521324193589e-06 1.078522728903408e-06 1.072509036248448e-06 1.08886477789838e-06 1.11390675172629e-06 1.121848832497108e-06 1.132428920413986e-06 1.119592681675385e-06 1.128035062691879e-06 1.139043583009425e-06 1.133335118197465e-06 1.141947478799921e-06 1.13624329145523e-06 1.106509429860125e-06 1.11211448938775e-06 1.111805005393762e-06 1.140708327795892e-06 1.103086660236841e-06 1.15754230378684e-06 1.117329915700793e-06 1.107192563409853e-06 1.1152078940313e-06 1.126636686166194e-06 1.104219292002995e-06 1.120998366133108e-06 1.124952603959173e-06 1.174308884799302e-06 1.135600644630586e-06 1.127037172921064e-06 1.207310990736232e-06 1.133408744635744e-06 1.121202949150302e-06 1.122515385532097e-06 1.114124131618155e-06 1.128322352883515e-06 1.095079852575509e-06 1.114665352019983e-06 1.139163913421726e-06 1.13778887822491e-06 1.154756308352489e-06 1.161460122744984e-06 1.192911433633981e-06 1.171334197636043e-06 + 1.180176930404286e-06 1.195206323245657e-06 1.16157039542486e-06 1.161974765295781e-06 1.164768931971594e-06 1.155680379838486e-06 1.166217316495022e-06 1.139831255159152e-06 1.168670024753737e-06 1.157191846345995e-06 1.165024187343988e-06 1.182837372937229e-06 1.187436240002171e-06 1.18878457122662e-06 1.227021288130459e-06 1.216124314140643e-06 1.271143425185528e-06 1.163107290480525e-06 1.145226757870432e-06 1.19155955147221e-06 1.16213007217425e-06 1.147919316935031e-06 1.124794454909761e-06 1.145856874273932e-06 1.110498317302699e-06 1.113817923226179e-06 1.113465536661806e-06 1.169668948364233e-06 1.16459945331826e-06 1.174398402525867e-06 1.161914465086511e-06 1.221277990737235e-06 1.226615790272945e-06 1.198023001691695e-06 1.228434623357089e-06 1.207120309487664e-06 1.212855838872429e-06 1.223515859294366e-06 1.275326013683298e-06 1.195987170632407e-06 1.145852301931427e-06 1.154395981473044e-06 1.211142320656222e-06 1.241439141708156e-06 1.284127239209454e-06 1.462788196349152e-06 1.185424403971069e-06 1.198298733129377e-06 1.161731386645215e-06 1.17538667154804e-06 1.160112072184916e-06 1.157171446664051e-06 1.126611088864138e-06 1.164101561812458e-06 1.142294681955036e-06 1.143953682003485e-06 1.13055717321231e-06 1.10564519673062e-06 1.096905521080771e-06 1.086943740347124e-06 1.108627543544571e-06 1.138469663430897e-06 1.146446422239933e-06 1.159368522962723e-06 1.145800172963618e-06 1.157355793424131e-06 1.169578897730617e-06 1.160782694853424e-06 1.171960448687059e-06 1.165907150380008e-06 1.130779594404885e-06 1.135318086653569e-06 1.135805916874233e-06 1.17143100908379e-06 1.126836984610691e-06 1.18713731822595e-06 1.141503410906353e-06 1.131001631904383e-06 1.139794687077256e-06 1.151896064754965e-06 1.128101152048089e-06 1.145526713486333e-06 1.152876311749651e-06 1.20957913196662e-06 1.164874760206658e-06 1.153764511485633e-06 1.229582160533482e-06 1.161754795475645e-06 1.149280564050059e-06 1.150858054188575e-06 1.140595813353684e-06 1.156316315586992e-06 1.114513608513334e-06 1.138420600454992e-06 1.168725084710331e-06 1.16758874213474e-06 1.187587979956106e-06 1.194290941697318e-06 1.227788274604791e-06 1.203392695714456e-06 + 1.177326357293396e-06 1.202347817752525e-06 1.158670627887659e-06 1.154840560957382e-06 1.159880781642642e-06 1.142168827072965e-06 1.148661425531827e-06 1.127883308527089e-06 1.167855970152232e-06 1.148104047388188e-06 1.163470486176266e-06 1.187458629203775e-06 1.192534622163066e-06 1.194399912307631e-06 1.242620728092447e-06 1.216177656360173e-06 1.3206684599254e-06 1.162511818364464e-06 1.132707861728477e-06 1.197052228008033e-06 1.161694029860882e-06 1.142876239867974e-06 1.113933137730783e-06 1.140085327477891e-06 1.102019425047729e-06 1.106122489602512e-06 1.105178611737756e-06 1.168018521013892e-06 1.162344158700535e-06 1.173831087442068e-06 1.160598920080247e-06 1.239279447062813e-06 1.253848811444414e-06 1.204318520464653e-06 1.25730879751984e-06 1.221308572496582e-06 1.230565224830116e-06 1.242056175243533e-06 1.312553045806908e-06 1.202919015952375e-06 1.141476481336667e-06 1.150557753959447e-06 1.227340161946699e-06 1.276346091927394e-06 1.349559664021172e-06 1.641944498587122e-06 1.190181251331524e-06 1.203979859809579e-06 1.160691894597221e-06 1.175257361651916e-06 1.15889513097045e-06 1.155527222351793e-06 1.119305260033343e-06 1.163624546052233e-06 1.135883437086704e-06 1.137495512892883e-06 1.125955670033818e-06 1.099295829476432e-06 1.091166154765233e-06 1.082163990417939e-06 1.104462882040025e-06 1.129853249182133e-06 1.140627908569058e-06 1.158722021443737e-06 1.139355539692133e-06 1.153214668647706e-06 1.170881905210308e-06 1.160345377115846e-06 1.171123926724249e-06 1.163513346114087e-06 1.120498083651e-06 1.129486918216571e-06 1.12775678928756e-06 1.171318601222993e-06 1.116090359687405e-06 1.190419524732533e-06 1.135801234397604e-06 1.121699614969884e-06 1.13153649650144e-06 1.147828992742461e-06 1.11744395958624e-06 1.139723799781223e-06 1.144397991481583e-06 1.222545805035224e-06 1.163574630425046e-06 1.148141905105149e-06 1.237496277894934e-06 1.160981405234907e-06 1.138380739007516e-06 1.14030535769416e-06 1.127994849525749e-06 1.15179986437397e-06 1.1050414627789e-06 1.132329245479013e-06 1.166988994327767e-06 1.165725791452132e-06 1.191861834115571e-06 1.201435086528591e-06 1.254962363361756e-06 1.213462123672571e-06 + 1.110768405254703e-06 1.125608804386502e-06 1.102013072795671e-06 1.102268726071998e-06 1.103836694937854e-06 1.099289207218135e-06 1.102153177612308e-06 1.093478445568508e-06 1.10629214589153e-06 1.099688759609307e-06 1.102036293332276e-06 1.115898520254177e-06 1.118893159457457e-06 1.119425025564169e-06 1.141509562430087e-06 1.132856816354888e-06 1.159658564731103e-06 1.10001625941436e-06 1.09402049019991e-06 1.119269288807345e-06 1.099793799141935e-06 1.090547637971895e-06 1.079738741083247e-06 1.089695015110692e-06 1.074423323643714e-06 1.074968359660033e-06 1.074884565355205e-06 1.103049434902914e-06 1.100183578017777e-06 1.106623503943638e-06 1.100999309500139e-06 1.139361536672823e-06 1.137689627839222e-06 1.118855436743615e-06 1.140996877424527e-06 1.129981065162156e-06 1.134417747294947e-06 1.131056890812943e-06 1.163821828242817e-06 1.12474871727386e-06 1.088744685517895e-06 1.09343476850654e-06 1.131878670790343e-06 1.147207969509623e-06 1.170167833741687e-06 1.313882671993838e-06 1.11663106494575e-06 1.117133868078213e-06 1.098947169708708e-06 1.107419169699142e-06 1.098067601290609e-06 1.096400644939877e-06 1.079964189187876e-06 1.100969342360258e-06 1.088652410885516e-06 1.089545722976482e-06 1.082366878790708e-06 1.071425359100431e-06 1.066650867187491e-06 1.060449505985162e-06 1.07212848377003e-06 1.085530474398411e-06 1.090108128209977e-06 1.098375044250588e-06 1.090366378520002e-06 1.094938248513699e-06 1.105338938600653e-06 1.099261915271654e-06 1.105919814392564e-06 1.101122236946139e-06 1.082009973174536e-06 1.083768268017593e-06 1.084079897850643e-06 1.106132216932565e-06 1.080430990896275e-06 1.115323193801032e-06 1.086602988920049e-06 1.081807521785549e-06 1.086192209953651e-06 1.093578553934549e-06 1.080912996442862e-06 1.089234714868326e-06 1.096054656812839e-06 1.133871379010998e-06 1.103516190426035e-06 1.095564147846062e-06 1.142279614896324e-06 1.101247370627334e-06 1.094727458905709e-06 1.095867872891176e-06 1.089796143105559e-06 1.098611633665314e-06 1.076541479960724e-06 1.085225591168637e-06 1.103134430024966e-06 1.102562286803277e-06 1.117290342023125e-06 1.121837950535109e-06 1.13686895630849e-06 1.124172559485714e-06 + 1.085088420893499e-06 1.087690279177878e-06 1.076140847544593e-06 1.076916333886402e-06 1.07809877647469e-06 1.075366725444837e-06 1.080703071920652e-06 1.069147842258644e-06 1.079765567624236e-06 1.074695319402963e-06 1.072650164246625e-06 1.083350845476616e-06 1.0830271470752e-06 1.084355897518208e-06 1.099146821559316e-06 1.102883940617971e-06 1.109197047099997e-06 1.072941142155059e-06 1.068918043856115e-06 1.081416890258424e-06 1.073115555527693e-06 1.06631365426324e-06 1.055915458181289e-06 1.060938998875827e-06 1.052202932783075e-06 1.051991681322306e-06 1.051917003280778e-06 1.07077911337683e-06 1.070536633562824e-06 1.07414658145899e-06 1.074650967325397e-06 1.095237285753115e-06 1.091184685719782e-06 1.080444070211684e-06 1.093571023957907e-06 1.086950071282899e-06 1.089791393127371e-06 1.087933735988145e-06 1.117761932789563e-06 1.088087756784262e-06 1.063259208677891e-06 1.065670684141651e-06 1.087975450175804e-06 1.099057026721084e-06 1.105966040526596e-06 1.152195796549904e-06 1.082570550536843e-06 1.079008395521441e-06 1.071961445830993e-06 1.07532962978496e-06 1.071490117965368e-06 1.070763829602583e-06 1.055566425378629e-06 1.06466214688794e-06 1.059422501725749e-06 1.0598506960946e-06 1.057305681229082e-06 1.049819147169728e-06 1.047690233235699e-06 1.045999525217667e-06 1.050677788327903e-06 1.061901333088144e-06 1.066657773662882e-06 1.072493894582749e-06 1.06017227352595e-06 1.065973414426935e-06 1.076367734498263e-06 1.072862431783506e-06 1.074325446381863e-06 1.070140811521014e-06 1.058699851341771e-06 1.060065727642723e-06 1.06064341309775e-06 1.075626030910826e-06 1.056503087681904e-06 1.079054840147364e-06 1.062171243404464e-06 1.057721632946595e-06 1.062502139603794e-06 1.069427955968649e-06 1.056709692193181e-06 1.065321349358328e-06 1.071113587158834e-06 1.092062522189963e-06 1.076700698376953e-06 1.070782108314461e-06 1.104400077167611e-06 1.075053120302982e-06 1.070402433356321e-06 1.071452658152339e-06 1.066527872239931e-06 1.073746744850723e-06 1.054142259704349e-06 1.06143180289564e-06 1.071609382563565e-06 1.071745984404515e-06 1.08104440599277e-06 1.082991001766231e-06 1.090863197106273e-06 1.083693231151983e-06 + 1.140986611858352e-06 1.136195095341463e-06 1.123834067584539e-06 1.127330321537556e-06 1.128588664300878e-06 1.128169600406181e-06 1.140224867413053e-06 1.117373358283658e-06 1.129835339952479e-06 1.123999041396928e-06 1.113099173721821e-06 1.130219629885687e-06 1.127540151912854e-06 1.130445692609783e-06 1.160010297596159e-06 1.176056505514111e-06 1.187467892904692e-06 1.115777422455722e-06 1.11597225149751e-06 1.124569340760218e-06 1.116144854762524e-06 1.107804948219382e-06 1.090214006183032e-06 1.096737083372545e-06 1.081016137050028e-06 1.083074877783474e-06 1.082634980775765e-06 1.110337436216469e-06 1.110198454057354e-06 1.114450405736989e-06 1.12028640586459e-06 1.150284118622835e-06 1.145520345247064e-06 1.12411321140371e-06 1.149118718402065e-06 1.133954377507962e-06 1.139392853843901e-06 1.142470843262799e-06 1.229583219242159e-06 1.137011881979788e-06 1.101522663304877e-06 1.103915511890818e-06 1.1355681959202e-06 1.160887508788733e-06 1.180569338288251e-06 1.231701332926605e-06 1.127628934227687e-06 1.122814557774632e-06 1.114103348243134e-06 1.116082239960292e-06 1.113502866800786e-06 1.113078678116608e-06 1.089827609490612e-06 1.103392555990013e-06 1.094321110173269e-06 1.094965522696612e-06 1.092012610115489e-06 1.078742485560724e-06 1.073389782391132e-06 1.064204482759123e-06 1.080829846955567e-06 1.101280059145893e-06 1.108974238661631e-06 1.115347863844818e-06 1.095569601261559e-06 1.10408795350736e-06 1.119577081709622e-06 1.115440873888929e-06 1.114915981759168e-06 1.109521605258124e-06 1.095732287126339e-06 1.096791237387151e-06 1.098656838394163e-06 1.117166185338192e-06 1.091496677929626e-06 1.121024101990997e-06 1.100536781706296e-06 1.093771047067094e-06 1.102280233311603e-06 1.112963783356236e-06 1.091884307413693e-06 1.106404202033673e-06 1.117607826728317e-06 1.143949099002839e-06 1.123956206328103e-06 1.115990805544698e-06 1.177433805565897e-06 1.120723055691997e-06 1.117541479800366e-06 1.119074966027256e-06 1.112565968242052e-06 1.12035462507265e-06 1.084855881572366e-06 1.099308477137129e-06 1.111397338604547e-06 1.11158480819995e-06 1.123854865170415e-06 1.126754646918471e-06 1.146697389486917e-06 1.129421832501976e-06 + 1.299550589806131e-06 1.305073126900425e-06 1.235767541629684e-06 1.249857476182115e-06 1.255254446164145e-06 1.254607127521012e-06 1.301550980770116e-06 1.213571323432916e-06 1.262285493908166e-06 1.235930554344122e-06 1.202563396418554e-06 1.270348839454982e-06 1.2620409464148e-06 1.268099696360991e-06 1.384029220119487e-06 1.424935616611833e-06 1.507584210358459e-06 1.199243659044669e-06 1.203545314965027e-06 1.252309090205017e-06 1.202061717719971e-06 1.176574517813833e-06 1.147927470412924e-06 1.168694854669639e-06 1.138784583076813e-06 1.139051477139219e-06 1.138604950767785e-06 1.200884838681304e-06 1.190922571225883e-06 1.207365034616714e-06 1.217271737630199e-06 1.351313903441564e-06 1.333799483305143e-06 1.248515744123324e-06 1.35112001053983e-06 1.292727358048751e-06 1.315678545665833e-06 1.31490058308259e-06 1.63487237259119e-06 1.297649493636754e-06 1.166801240515269e-06 1.175559443566954e-06 1.295758744745967e-06 1.391410600959375e-06 1.468074196431246e-06 1.840607755099199e-06 1.254146923201915e-06 1.24511525889659e-06 1.194232851275956e-06 1.20866760688898e-06 1.193185413583819e-06 1.191826601854018e-06 1.147278059221435e-06 1.210410143670515e-06 1.167892364151157e-06 1.171118842790975e-06 1.154229671840312e-06 1.134298713623139e-06 1.129939860788909e-06 1.126705598153421e-06 1.136602115536789e-06 1.164346272730654e-06 1.18035703167152e-06 1.201340658951722e-06 1.172100169810619e-06 1.178666202861223e-06 1.219247433681403e-06 1.202381909592987e-06 1.209302070037666e-06 1.196904079847627e-06 1.155830588572826e-06 1.15989035975872e-06 1.160684931278411e-06 1.213669264643613e-06 1.149418451973361e-06 1.236292085593504e-06 1.163747253229985e-06 1.152331506659721e-06 1.165986923012952e-06 1.190588982069585e-06 1.149787244969502e-06 1.173942315801924e-06 1.20679927917422e-06 1.331539433380158e-06 1.233405839684565e-06 1.199869561929745e-06 1.439981581086158e-06 1.221052173150383e-06 1.208628319204763e-06 1.215175643665134e-06 1.192994758980603e-06 1.22139489633355e-06 1.143634634104274e-06 1.162683261668462e-06 1.201698289321484e-06 1.199437747345655e-06 1.245354756207462e-06 1.260441859329831e-06 1.337601808870659e-06 1.272200741198048e-06 + 5.700910129746717e-06 7.699264628513447e-06 4.897692690519762e-06 4.870513734545057e-06 5.038141338786772e-06 4.562112806638652e-06 5.022493709816445e-06 3.714858905823348e-06 5.365857603578661e-06 4.608364719160818e-06 5.072914703418974e-06 6.197558739984288e-06 6.415561529138358e-06 6.156619228647742e-06 1.004993663400455e-05 8.759046108863799e-06 1.738997494982186e-05 4.346842347402458e-06 3.614554321629271e-06 6.720399763793239e-06 4.482901221791735e-06 3.67228071951331e-06 2.702893304729059e-06 3.444536218921712e-06 2.367768601629905e-06 2.441795757590626e-06 2.419238683160074e-06 4.91591703166705e-06 4.484475802257748e-06 5.089095857613302e-06 4.57274359533244e-06 9.356330719967332e-06 1.024123841375513e-05 6.772780547947832e-06 1.052883019703188e-05 8.008105393031428e-06 8.733491796419912e-06 1.047021114786162e-05 2.021198628199272e-05 6.977178042433252e-06 3.486639908345524e-06 3.875947740539232e-06 7.995789840009593e-06 1.177308313060621e-05 1.817759197120239e-05 6.699909354779265e-05 5.777618760305359e-06 6.618585443263214e-06 4.269712905013989e-06 5.011745699334824e-06 4.2844133290032e-06 4.230753098966034e-06 2.710202458899857e-06 4.764149981184573e-06 3.319144312285971e-06 3.452663783320986e-06 2.986682567041044e-06 2.235072713574482e-06 2.031864269724792e-06 1.832688425906781e-06 2.281454989372378e-06 3.300366206104854e-06 3.808434222207779e-06 4.578382998943198e-06 3.465301315230818e-06 3.997609073991271e-06 5.058095904786342e-06 4.65304155738977e-06 5.257548579606919e-06 4.848893674136434e-06 3.081142196492692e-06 3.386443182762378e-06 3.292916318287098e-06 5.239098420872779e-06 2.767909187184614e-06 6.221407030437831e-06 3.367124314479497e-06 2.91932309082199e-06 3.34104100119248e-06 4.06248761564143e-06 2.750420886599159e-06 3.610737952186582e-06 4.112916474952044e-06 8.609217218236154e-06 4.806033057747072e-06 4.104456881037777e-06 1.061283836634175e-05 4.743803764029053e-06 4.102208563949716e-06 4.249750887197479e-06 3.699507004739644e-06 4.693411696621297e-06 2.502811142335304e-06 3.41333533526722e-06 5.025560781746208e-06 4.916939126076159e-06 6.185011415027475e-06 6.765760421245659e-06 1.089801271803026e-05 7.754198009024549e-06 + 0.0001431570821104344 0.0002884653575421225 0.0001092680401200141 0.000104939879818744 0.0001137776408484115 8.74339700942528e-05 0.0001024087693508591 5.502678780544557e-05 0.000132829353290731 9.282320016268386e-05 0.0001195339941943985 0.0001843740142462025 0.000196587495000955 0.000176687030140954 0.0004399231397282932 0.0003061446303522786 0.001007999218721523 8.220558828320179e-05 5.119491310345836e-05 0.0002086658796791596 8.939195850032888e-05 5.623905711260591e-05 2.57166671033815e-05 3.74292758209549e-05 1.774043941793479e-05 1.800199282797621e-05 1.790957758629474e-05 9.891328881650452e-05 8.585735346500201e-05 0.0001118267044013521 9.279405162487819e-05 0.0003916103162868723 0.0004260797953055118 0.0001872923233694479 0.0004682516702292361 0.000292907263524711 0.0003487409181914813 0.0003976874982356549 0.001328391682918095 0.0002278473322299135 4.806073723528925e-05 6.009631913883595e-05 0.0002852821757191037 0.0005575933841459602 0.000959088441188527 0.006416005501318267 0.0001540528185657308 0.0001666233030341857 7.899443105863213e-05 0.0001096845428278925 8.027742375382729e-05 7.859960147982292e-05 2.405587696685529e-05 5.530859258939813e-05 3.02605896287389e-05 3.312571747571269e-05 2.924198131637468e-05 1.321158622147323e-05 9.499003368773629e-06 7.238174589474511e-06 1.197331820890213e-05 4.382023558235915e-05 6.24302937026755e-05 9.551039408250972e-05 3.311955502027786e-05 6.233543687628185e-05 0.0001184420023108146 9.910881580310615e-05 0.0001247435584161849 9.977995613041912e-05 3.716825851540762e-05 4.641892505219403e-05 4.388096826346555e-05 0.0001273995522197424 2.736098810984799e-05 0.0001732489430779083 4.511795292572174e-05 3.121263662819729e-05 4.508257595503551e-05 7.1902829727577e-05 2.664643129435262e-05 5.437740658109647e-05 7.188515169076481e-05 0.00034519304436742 0.000103265471857128 7.233520743099575e-05 0.0004607286460895921 0.0001021049109724004 7.174676227350574e-05 7.788354706406153e-05 5.718636933238486e-05 0.0001005243317280247 2.122892760780815e-05 4.760010287441219e-05 0.0001089523301800455 0.0001057632251644236 0.00017743848997398 0.000212429986767404 0.0004644788453838089 0.0002615351312051928 + 0.03689000581529811 0.0693432141395931 0.02867303631953178 0.028646518750719 0.03089237196475381 0.02543494838748472 0.03176260786869989 0.01352755103313541 0.03642803250923521 0.02520719583375808 0.02454369553998959 0.04199706450597773 0.03896667521383179 0.03354700311725267 0.0864622596820066 0.07470721437017325 0.1323258686235516 0.01444316066652895 0.01038753364198008 0.03492388444008654 0.01707973921970662 0.01027296611379924 0.004050040941358191 0.005508526881992992 0.002926022292015773 0.002848763667373078 0.002825044683447686 0.01617617110028391 0.01447496405708293 0.01803803785896818 0.01991203916568196 0.07203395079299568 0.06101301536688908 0.02634647957216707 0.0727095951771588 0.0478633316971333 0.06045953729048392 0.0574910538210176 0.2349755194065359 0.0471702957072857 0.00788741482958244 0.00973918518291228 0.04302967850441775 0.08138740183676951 0.09973715417175466 0.4204378397598525 0.02785581633926704 0.02256903746550876 0.01373550402574786 0.0172719553415579 0.0145792255415067 0.01504545673857294 0.00350162777634111 0.008831421187885269 0.004599884751797845 0.005152785048032626 0.004595853842538133 0.002076931948067795 0.00146005159351148 0.0009856343178284988 0.001829465318721191 0.007985926408508703 0.01287612147623918 0.02016037151265948 0.004981867728655942 0.009765033842260351 0.02367146763228334 0.02068306989673374 0.02260145267491964 0.01767393578399634 0.006877237739615794 0.008964898700043022 0.008309991330762045 0.02426285552918017 0.004331834338024976 0.02782491048647273 0.007751035975758214 0.005008795508842923 0.008193500122068542 0.01484843407629555 0.004027970901143263 0.01016834485431062 0.0160855126575683 0.07216881769432959 0.02373617690334839 0.01512719588723499 0.1054964071990412 0.02365912160554728 0.0179559784678105 0.02043371516604964 0.01384048731364373 0.0269744843433557 0.00362495632280968 0.008989139418545733 0.01926857993718301 0.01892347528092131 0.03007115380221492 0.03524045804734754 0.06728143379524809 0.04017956144684121 + 0.008646848675677887 0.01501491187828208 0.006556844896223879 0.006522170419273721 0.007030461098594287 0.005715098407279129 0.007042839048850169 0.003176775832827161 0.008195212793197015 0.00575508304672212 0.005504874593583509 0.009667690890942993 0.009110831354071536 0.00823751130221595 0.02058960656226283 0.01784229530054837 0.03049973590899491 0.003776276866885198 0.00264039202684252 0.007985615169356919 0.004314616732575161 0.002602841354608643 0.001021869165622746 0.001187918479772065 0.0007418437307364911 0.0006932492978535265 0.0006990007121316921 0.00358051690906791 0.003477171652715327 0.004288217457485644 0.004918355070334002 0.01714030135403988 0.01375464416469185 0.00590969916057027 0.01667461644867352 0.01108868417670195 0.01389517218267144 0.01147557558649837 0.05404521250404315 0.01117055778061626 0.001924203320719187 0.002309498290099299 0.01035782791129947 0.01955942211097295 0.02027114036699817 0.07306563012490308 0.007003211224311912 0.00493924492036335 0.003571117183447825 0.004313769450570604 0.003713964574632911 0.003774349338048211 0.0008660220002845165 0.001563833931157887 0.0009484332734785994 0.001035094738792708 0.001027221471161965 0.0005207512969889194 0.0003800077207358754 0.0002717734476647138 0.0004439186371527626 0.00196048444825081 0.003135332959693926 0.004864381186493461 0.001018311489268342 0.002265806358348499 0.005777393417321974 0.004981696858806117 0.005203486608714059 0.003884387483331864 0.001625093247909604 0.001977610924257078 0.001947759478866828 0.005756767917823424 0.001087469913105821 0.006367493668410162 0.00188611881956291 0.001234640161381861 0.002026301446420575 0.00367280105233192 0.001032967732214729 0.002533642799544822 0.003943042353878212 0.01644234059174465 0.005728258639589257 0.00378192225303664 0.02484702817383777 0.005645122295383942 0.004219167056504602 0.004718856130949689 0.003258124436186449 0.006096136879108371 0.0009083107421758996 0.002078485854156042 0.004282001620779852 0.004307487234704865 0.007217476510142262 0.008318901069987561 0.01436496898008599 0.008897086944070765 + 0.001357596935044114 0.002196323371521203 0.00102067783336679 0.001014040718885667 0.001087723744689129 0.0008887036801326076 0.001077623205944178 0.0005269933291742745 0.001246034312956112 0.0009028125105601248 0.0008811638176098313 0.001500683567599026 0.001459501472265146 0.001365431332132516 0.003237193768397262 0.002772814173969351 0.005275752172265058 0.0006775032407926318 0.0004699786768007641 0.001326026640978029 0.0007475266690732951 0.0004608995581314446 0.000189234766924784 0.0001921869364309714 0.0001391933747498797 0.0001273853929291136 0.000129760926327549 0.00059852728630716 0.0006009361799286239 0.0007474893470345023 0.0008264244967577383 0.002735776375168086 0.002324162908148963 0.001033738002345075 0.002741079614844821 0.001823319646224064 0.002224950462078823 0.001905384404064847 0.008445371151420744 0.001771953574820628 0.0003375425968812351 0.0003963527523076493 0.001765233482537099 0.003314323058896562 0.003730294910814003 0.01073720037299886 0.001192309982936735 0.0008627562439844638 0.0006405842789245497 0.0007719907660099778 0.0006537961026591432 0.000653768625287654 0.0001600025004471206 0.000193080796123013 0.0001461965199140991 0.000154926045709658 0.000173916771451843 9.816200372370076e-05 7.402226559349856e-05 5.710254835378237e-05 8.27318637703911e-05 0.000343191844251578 0.000532204965679739 0.0008072155450022933 0.0001546198964348378 0.0003856596667510814 0.0009651437908182459 0.0008263432859934028 0.0008688353565631246 0.0006353917798591624 0.0002787463040192506 0.0003187759147351699 0.0003288153236979952 0.0009589470585709137 0.0002000640420938282 0.001082335455965477 0.0003293751485458074 0.0002225647327840363 0.0003561844774608858 0.0006266363858209445 0.0001939151786736204 0.0004431013655725735 0.0006659210602997234 0.002515486802170841 0.0009374602539153898 0.0006494516946204953 0.003794312845695202 0.000916419771066046 0.0006874199244109036 0.0007542071697343999 0.0005383343965377207 0.0009432232920971728 0.0001674077094975246 0.0003464782771516184 0.0007070215533744317 0.0007173164021736511 0.001221972400188065 0.001393820395868772 0.002392475624308332 0.001489454775573051 + 0.0001132625887230176 0.0001676840591500195 8.68946412282412e-05 8.673586475538286e-05 9.182075702085513e-05 7.788558779964205e-05 9.277257704809472e-05 5.168642124431244e-05 0.0001019671415747325 7.878375154746209e-05 8.180975743243835e-05 0.000123002822974172 0.0001251331872857975 0.0001193355011483987 0.0002542566968291027 0.0002162152632436687 0.0004910978024419421 6.760156556850916e-05 4.883190889337641e-05 0.0001268418593731724 7.181153685564823e-05 4.762401076519041e-05 2.265210222773817e-05 2.570360738118893e-05 1.738777949356063e-05 1.629114822065958e-05 1.650600991354167e-05 6.551651626551802e-05 6.24655069358937e-05 7.831536633062797e-05 7.614487461893304e-05 0.0002228772329679884 0.0002265757403030477 0.0001168712962424934 0.0002449229563659117 0.0001661589742916192 0.0001917014400483197 0.0002145101219355183 0.0006443717421120709 0.0001457642904512113 3.728958419202399e-05 4.359696392342016e-05 0.0001658363516217065 0.0002932261620891552 0.000476639815150115 0.001898220158503605 0.0001078903567997003 0.0001050197235965555 6.460049807444079e-05 7.993131056061031e-05 6.489794600206267e-05 6.387451303524472e-05 2.035055806359765e-05 3.200524757218659e-05 2.123808642195968e-05 2.234833173275774e-05 2.190277356817205e-05 1.306768628239752e-05 1.038302060862861e-05 8.745195117398907e-06 1.188013199993065e-05 3.656598205381556e-05 5.220945548956024e-05 7.451593784679744e-05 2.26013731143837e-05 4.360118261459434e-05 8.808150632688694e-05 7.627938641974197e-05 8.518660176548565e-05 6.601869529987425e-05 3.008592494779805e-05 3.337035337835914e-05 3.457359905212343e-05 8.964689050117158e-05 2.372189242905165e-05 0.0001098470509219851 3.583104163951134e-05 2.592356416997177e-05 3.786395312843638e-05 6.038344321268596e-05 2.346021728882874e-05 4.561830417770807e-05 6.330079486360773e-05 0.0001983519084589602 8.355351488376073e-05 6.253174939629957e-05 0.000284562674469413 8.136036427686122e-05 6.350892689965804e-05 6.800425323660875e-05 5.165461945466632e-05 8.063225016030628e-05 2.012704894127637e-05 3.622744846154546e-05 7.267871406213544e-05 7.246637889579688e-05 0.0001150196551549243 0.0001305010146097629 0.0002405922714814324 0.0001508072964746532 + 5.068932122043179e-06 4.793632285782223e-06 4.026617204999638e-06 4.231267510590442e-06 4.302442050629907e-06 4.324842123537564e-06 5.32713677614538e-06 3.694781938179403e-06 4.388024336776652e-06 4.040098673385728e-06 3.335808159476983e-06 4.41646082549596e-06 4.245994695395439e-06 4.365650145388145e-06 6.183491972677757e-06 7.835169775205486e-06 8.013579122945202e-06 3.376257527776261e-06 3.525936115522654e-06 4.000551108163108e-06 3.429011378841551e-06 2.970779636513043e-06 2.41975203962852e-06 2.465186756950288e-06 2.249319109637327e-06 2.127335257284813e-06 2.150098509900999e-06 3.142583985038527e-06 3.120183809102173e-06 3.35139976570531e-06 3.735855788278286e-06 5.480799773138756e-06 5.064159038781213e-06 3.849474321526714e-06 5.333390738826438e-06 4.553997626999262e-06 4.877645121581509e-06 4.766730619110149e-06 1.138735838068783e-05 4.751368056332694e-06 2.720766797636998e-06 2.821940839226045e-06 4.603273763947868e-06 5.981777158936552e-06 7.204573236663236e-06 1.770575662085605e-05 4.186283138807312e-06 3.715067293796892e-06 3.277532284684526e-06 3.420554893551753e-06 3.257768542042072e-06 3.242350654630854e-06 2.301736799381615e-06 2.689194072758028e-06 2.351206592976496e-06 2.383450716791913e-06 2.320114198539613e-06 1.976384524482455e-06 1.855495327163226e-06 1.805312805913672e-06 1.941898901236527e-06 2.737123825369281e-06 3.047483978946275e-06 3.413067837243489e-06 2.399140814901557e-06 2.821941176733844e-06 3.700210967849671e-06 3.422075799619506e-06 3.41140551540775e-06 3.123746033395491e-06 2.572349188767475e-06 2.586367713774962e-06 2.65560207424187e-06 3.543737193467678e-06 2.444062008777337e-06 3.75786760642427e-06 2.695574483624341e-06 2.48212521825053e-06 2.769329700669232e-06 3.247449924970169e-06 2.44640173896471e-06 2.920550951301948e-06 3.588571090062942e-06 5.17323322668517e-06 3.985326369360109e-06 3.446146148888829e-06 7.828281017197014e-06 3.79609802791947e-06 3.631798342951242e-06 3.740369166393975e-06 3.336911944984422e-06 3.822101504624698e-06 2.372028959030104e-06 2.672856155072623e-06 3.220104147771963e-06 3.225348017110719e-06 3.957265576559621e-06 4.138153503419062e-06 5.096375542024134e-06 4.224565081756282e-06 + 2.712131482951463e-06 2.758287720894259e-06 2.245576851578335e-06 2.301864142850718e-06 2.348151028286338e-06 2.260813829479957e-06 2.618975557311387e-06 1.972053922827399e-06 2.413608996221228e-06 2.207749759008948e-06 1.955426341737621e-06 2.518099073256508e-06 2.456335305822677e-06 2.518673948515016e-06 3.561524454909204e-06 4.052742236027029e-06 4.34823651573879e-06 1.983250058401609e-06 1.940702309966014e-06 2.282385128893338e-06 2.00684802109663e-06 1.78040247789113e-06 1.518068629025038e-06 1.514572819161231e-06 1.441021424852806e-06 1.399031724247379e-06 1.40631169642802e-06 1.833385063321202e-06 1.853480299018884e-06 1.957812052921781e-06 2.133603381082594e-06 3.185814342998583e-06 2.768255889407101e-06 2.15465032482598e-06 3.014105066867501e-06 2.604145642237654e-06 2.809833745232027e-06 2.438662487946885e-06 6.30744403196104e-06 2.73687505369935e-06 1.661597437419005e-06 1.702466583708429e-06 2.636031092961844e-06 3.411059916302861e-06 3.345119885089787e-06 5.578647170878526e-06 2.41802693423665e-06 2.065298492226475e-06 1.935864309743351e-06 2.001289439945708e-06 1.925152524506757e-06 1.915140224184597e-06 1.470613959497769e-06 1.548194674683145e-06 1.473977434329754e-06 1.483053331696738e-06 1.472549357117714e-06 1.348258166444793e-06 1.305504525817014e-06 1.285458921529425e-06 1.334981348577458e-06 1.667479789801973e-06 1.812426447145299e-06 1.996567398521165e-06 1.48741204242242e-06 1.690389080266641e-06 2.145086860139145e-06 2.002213911111994e-06 1.988192188662197e-06 1.836049420944619e-06 1.590882973800944e-06 1.599389207740387e-06 1.632812114849003e-06 2.062540389147216e-06 1.530448663800144e-06 2.147100765625964e-06 1.651907801658581e-06 1.55127567325053e-06 1.68245590970173e-06 1.908251363147428e-06 1.531904658236272e-06 1.755742950138028e-06 2.030753144310893e-06 2.994902185804449e-06 2.238471726201396e-06 1.988547726483603e-06 4.271461243376962e-06 2.16243889639145e-06 2.028289983968534e-06 2.074955247621801e-06 1.885453670524839e-06 2.15272787329468e-06 1.488612838329573e-06 1.641726726120396e-06 1.885933237133486e-06 1.896787651389786e-06 2.285339409269227e-06 2.380122545275754e-06 2.698607751483451e-06 2.344735506198958e-06 + 1.470708024697842e-06 1.472301590865754e-06 1.393058994381136e-06 1.399145261871126e-06 1.407734686154072e-06 1.386604679964876e-06 1.447902945983515e-06 1.338680505114098e-06 1.418372036710025e-06 1.382800491001035e-06 1.355506242362026e-06 1.439375076017768e-06 1.435794064974516e-06 1.448383063262781e-06 1.605104140267599e-06 1.659422611766104e-06 1.781832603242606e-06 1.366454490892011e-06 1.341968165036178e-06 1.419561300508576e-06 1.367342413516326e-06 1.323495773419836e-06 1.246714990799092e-06 1.261754707826412e-06 1.214299928165019e-06 1.210373802962295e-06 1.211327649741634e-06 1.341885642602847e-06 1.343520949603771e-06 1.365714609846691e-06 1.383995019921258e-06 1.55616922015156e-06 1.53135631286716e-06 1.413435281705233e-06 1.555883901716015e-06 1.4754626782576e-06 1.504373503991019e-06 1.489734128057307e-06 1.940625676155605e-06 1.477708121200294e-06 1.299682075739383e-06 1.310978490209891e-06 1.486825457419627e-06 1.621161839437946e-06 1.723619877047611e-06 2.422770931431728e-06 1.435088000434348e-06 1.402610868339593e-06 1.358325940614691e-06 1.374068624215852e-06 1.354786050455914e-06 1.350985694870133e-06 1.24015583580217e-06 1.281792364693501e-06 1.246508571028926e-06 1.249384190771252e-06 1.244407883405074e-06 1.190586260690907e-06 1.169951332258279e-06 1.152836475171171e-06 1.189024985137621e-06 1.29198047460477e-06 1.325204607383057e-06 1.361710893377222e-06 1.252275740881714e-06 1.309605167421068e-06 1.387758853610421e-06 1.363050010638744e-06 1.366587930817786e-06 1.338822606555823e-06 1.267453086484238e-06 1.275271699796576e-06 1.282086387277559e-06 1.376463281133056e-06 1.251551299930043e-06 1.399522076894755e-06 1.29381098901149e-06 1.260996462804087e-06 1.296489656965605e-06 1.34522427686079e-06 1.253491978658872e-06 1.316402087780943e-06 1.360662889027253e-06 1.517338461098916e-06 1.398570280031208e-06 1.357857765782455e-06 1.688946614564202e-06 1.385494471151105e-06 1.353625940225811e-06 1.360366880476249e-06 1.324740992458828e-06 1.375962838778833e-06 1.228896707061722e-06 1.28739698368463e-06 1.348920463328795e-06 1.350240090403076e-06 1.417677584214516e-06 1.434651188958469e-06 1.527913060073161e-06 1.44270635971111e-06 + 1.119468702626136e-06 1.11443523564958e-06 1.101742441278475e-06 1.104976604437979e-06 1.106372508274944e-06 1.105175641669121e-06 1.118060438898283e-06 1.095681142260219e-06 1.107862914295765e-06 1.101565928252057e-06 1.093051508860299e-06 1.109323733317069e-06 1.10691431487453e-06 1.109885824135404e-06 1.136571841087175e-06 1.151908001872926e-06 1.15243197029713e-06 1.095727530042723e-06 1.095052907018612e-06 1.102645896366994e-06 1.095830274522314e-06 1.089263442111132e-06 1.080318217105969e-06 1.081947555547913e-06 1.076126267207655e-06 1.073850633304119e-06 1.074399541778348e-06 1.091644520556656e-06 1.091667268582341e-06 1.094533391921004e-06 1.098964307999495e-06 1.12593248502435e-06 1.114658536138791e-06 1.100439222412319e-06 1.119352790013295e-06 1.110293556649822e-06 1.114641925425985e-06 1.107869248784255e-06 1.179246712723625e-06 1.115993693900919e-06 1.086109151060555e-06 1.087896713158898e-06 1.111636699135943e-06 1.130108900682103e-06 1.134281832015915e-06 1.207944221093271e-06 1.107299107516724e-06 1.099185922726065e-06 1.094313367033806e-06 1.096119760291003e-06 1.09367958955886e-06 1.093113620953545e-06 1.078937902576627e-06 1.084548699736843e-06 1.078940027099407e-06 1.079368260548108e-06 1.078819792610375e-06 1.069758909011398e-06 1.0666105083601e-06 1.065113224285597e-06 1.069022587785184e-06 1.085404260692258e-06 1.089668785425602e-06 1.094845558213819e-06 1.07993337650214e-06 1.088115158864866e-06 1.099174752994259e-06 1.095020714103612e-06 1.094586430383515e-06 1.091001678332759e-06 1.082427516507778e-06 1.082860848100609e-06 1.083914156652099e-06 1.096860422933332e-06 1.080867782832229e-06 1.099220682476698e-06 1.08529760822762e-06 1.081805777403133e-06 1.085961088165277e-06 1.092654798640069e-06 1.08122875808192e-06 1.088290893846988e-06 1.09611804788301e-06 1.120836177648243e-06 1.102229763461082e-06 1.095034779297066e-06 1.152738391851926e-06 1.099208731147883e-06 1.095616589452675e-06 1.096867947580904e-06 1.091592281454723e-06 1.098254472253757e-06 1.078342975802116e-06 1.08435423840092e-06 1.092114700895763e-06 1.092293551607781e-06 1.103154719572785e-06 1.105316979277404e-06 1.113343653713628e-06 1.104526962336649e-06 + 1.092342184705331e-06 1.097124155080564e-06 1.080962775290573e-06 1.081970268046462e-06 1.083310678495764e-06 1.080637659356398e-06 1.088107140390093e-06 1.073332612122613e-06 1.085131614786405e-06 1.079418993299441e-06 1.078835865087058e-06 1.090667005598789e-06 1.092185172524296e-06 1.093057164780475e-06 1.115471469859131e-06 1.112689275828416e-06 1.135011277852982e-06 1.07966983442509e-06 1.074024325475875e-06 1.093706433863417e-06 1.079553200611372e-06 1.070864840357899e-06 1.059560883476252e-06 1.068998592756998e-06 1.054646219245114e-06 1.055628473523029e-06 1.055541638095292e-06 1.080038281031648e-06 1.077496648349552e-06 1.083060624296195e-06 1.080448946311208e-06 1.110722640973449e-06 1.109912444618999e-06 1.094790132327716e-06 1.111755874916298e-06 1.101721220919671e-06 1.104886017344597e-06 1.106410628892718e-06 1.142947922971871e-06 1.097475529121539e-06 1.067965747836297e-06 1.071885417758267e-06 1.103433922011732e-06 1.119164352303414e-06 1.136790700684287e-06 1.199608682611597e-06 1.091119729679235e-06 1.094156342418273e-06 1.078419002098485e-06 1.084030492037868e-06 1.077599904419912e-06 1.076452669224182e-06 1.060112651884992e-06 1.080467672665009e-06 1.068002230653065e-06 1.068794574621279e-06 1.061989252093554e-06 1.0525018296903e-06 1.048812052317771e-06 1.044677787831461e-06 1.053484830038087e-06 1.065285662349424e-06 1.070936271219125e-06 1.078345164273742e-06 1.069664421038397e-06 1.073275122109862e-06 1.083439254756513e-06 1.078864947601232e-06 1.082228614279757e-06 1.077953903916296e-06 1.061585294337419e-06 1.062977190713355e-06 1.063478151763775e-06 1.083188180928119e-06 1.060228630223037e-06 1.090694450311958e-06 1.066013918915587e-06 1.061562382886905e-06 1.066045467013055e-06 1.074714472082405e-06 1.060710033584655e-06 1.069414526710943e-06 1.076435353297711e-06 1.104826267805947e-06 1.082223153758832e-06 1.07643256086476e-06 1.119528619142329e-06 1.080526445207397e-06 1.075178140297339e-06 1.076044014780564e-06 1.07122554027228e-06 1.078286928191119e-06 1.056277014299667e-06 1.064456796484592e-06 1.079675591597606e-06 1.079178012730608e-06 1.091825708954275e-06 1.095354729585551e-06 1.110053375441566e-06 1.098547141253903e-06 + 1.072713097016731e-06 1.072677918045883e-06 1.064000429096268e-06 1.064884401102972e-06 1.065850696591042e-06 1.063747532725756e-06 1.070641388878357e-06 1.058684247823294e-06 1.066956002659936e-06 1.06296243984616e-06 1.059528358382522e-06 1.06956107259748e-06 1.069753125193529e-06 1.07098236057368e-06 1.083716409056024e-06 1.089738617565672e-06 1.093398363849474e-06 1.061966973026074e-06 1.059614426424105e-06 1.068985252317134e-06 1.061935012813819e-06 1.056568859070239e-06 1.048541410142434e-06 1.051244993277578e-06 1.045527582732575e-06 1.045113293685063e-06 1.045173952718415e-06 1.058342071758034e-06 1.058142686360952e-06 1.061457265194576e-06 1.063554179836501e-06 1.080312907575376e-06 1.078555330380482e-06 1.068062990938756e-06 1.080226246230609e-06 1.074273857426533e-06 1.076398270072332e-06 1.074969173231466e-06 1.103567367266578e-06 1.073541493923358e-06 1.05334273570179e-06 1.054494553898166e-06 1.07537525551038e-06 1.08487778760491e-06 1.090770588518808e-06 1.122288718846676e-06 1.069769684391986e-06 1.066710211716781e-06 1.060823571208402e-06 1.062823306696714e-06 1.060261801910656e-06 1.05979640352416e-06 1.048318182483854e-06 1.055544142758436e-06 1.05045905840484e-06 1.050741037289527e-06 1.04897726771469e-06 1.043190394511839e-06 1.041596334516726e-06 1.040157044940315e-06 1.044026127772213e-06 1.05296792796139e-06 1.056921298925317e-06 1.061044144989864e-06 1.051124314699337e-06 1.054629162666743e-06 1.064290234609189e-06 1.061184299544493e-06 1.06136533162271e-06 1.05750986278963e-06 1.050236818400663e-06 1.050726268658764e-06 1.051537921625822e-06 1.062958425279703e-06 1.049000086794649e-06 1.066489883072563e-06 1.052763835218684e-06 1.049858852297803e-06 1.053499243397482e-06 1.059398357483587e-06 1.049318578694169e-06 1.055670516336704e-06 1.061062423701742e-06 1.076972584002078e-06 1.064990705401669e-06 1.060930827634365e-06 1.089976013446403e-06 1.063490685737634e-06 1.060062928104344e-06 1.060576067857255e-06 1.057609537724602e-06 1.062033376797444e-06 1.04687707391804e-06 1.051904078508414e-06 1.058798851261145e-06 1.058901119677103e-06 1.068583131313972e-06 1.070556173488058e-06 1.07812291005871e-06 1.071317068834787e-06 + 1.115552617392268e-06 1.119610459454634e-06 1.09987125540556e-06 1.101210088449989e-06 1.102959870991072e-06 1.09938325465464e-06 1.110216743427372e-06 1.090313261897791e-06 1.105251087096804e-06 1.097899527735535e-06 1.094359475928286e-06 1.112272073555687e-06 1.113230474913962e-06 1.11561804239102e-06 1.146463237233775e-06 1.152312517405107e-06 1.183335783139228e-06 1.097359149326849e-06 1.091589957979977e-06 1.11189095264308e-06 1.09713501572628e-06 1.085579796722413e-06 1.070559090265988e-06 1.077596699872174e-06 1.064881146817243e-06 1.064607126011197e-06 1.06477848760278e-06 1.092401618052463e-06 1.092123696366798e-06 1.097995077969927e-06 1.099356321532241e-06 1.138630315367095e-06 1.138492720542672e-06 1.11198155217096e-06 1.141501416057622e-06 1.124632802884662e-06 1.12966237963974e-06 1.130422756290272e-06 1.206372939321909e-06 1.121347693811003e-06 1.080438526201988e-06 1.084465431233639e-06 1.12773769700425e-06 1.153994865887853e-06 1.176909495193001e-06 1.261102143601533e-06 1.113085172477213e-06 1.109975176660782e-06 1.095402344830632e-06 1.100457604152894e-06 1.094235726029069e-06 1.092833628035805e-06 1.069937354714057e-06 1.086498144786674e-06 1.075999168875796e-06 1.076738477934214e-06 1.070960855997782e-06 1.06088192808329e-06 1.056870971183343e-06 1.052871766660246e-06 1.06193279236777e-06 1.07822324935114e-06 1.0857704566547e-06 1.095277795570837e-06 1.077608882127379e-06 1.085198974237755e-06 1.102126812924098e-06 1.095824792685107e-06 1.097706650909913e-06 1.091009323772596e-06 1.073248469651844e-06 1.074159683867038e-06 1.075607727329952e-06 1.100360165651182e-06 1.071327126567212e-06 1.106959807373187e-06 1.078488743644357e-06 1.072731670603844e-06 1.079237630818852e-06 1.090924779845182e-06 1.071906760685692e-06 1.083663931922274e-06 1.094210922758521e-06 1.129772577712629e-06 1.101845011675096e-06 1.093882652014599e-06 1.157163556086971e-06 1.099257040948487e-06 1.092456557216792e-06 1.093537875362927e-06 1.087213789219277e-06 1.096230676012055e-06 1.067266509835463e-06 1.076543213685e-06 1.09329730690888e-06 1.093533221308007e-06 1.110988836927618e-06 1.115213535740622e-06 1.137990899735541e-06 1.118855777804129e-06 + 1.223494738411546e-06 1.241152048692129e-06 1.200522419253502e-06 1.200811567514393e-06 1.204605183602325e-06 1.192214980960671e-06 1.208354035497905e-06 1.170001823425082e-06 1.209450971373371e-06 1.193961253420639e-06 1.18975405882793e-06 1.224846087666265e-06 1.231663549816631e-06 1.233138807066325e-06 1.283859070611015e-06 1.276014751638854e-06 1.340755222400958e-06 1.196446898887871e-06 1.175509302342448e-06 1.236656967051886e-06 1.195915046992013e-06 1.170828252128331e-06 1.132326957531404e-06 1.154576469986068e-06 1.117470404210508e-06 1.11882425812837e-06 1.118500655650223e-06 1.192396780425042e-06 1.186473177483549e-06 1.203001392724445e-06 1.200378150656434e-06 1.277387534415197e-06 1.287312116460271e-06 1.240002461599943e-06 1.289554781180868e-06 1.26125985744352e-06 1.268723181624409e-06 1.277476584959913e-06 1.353418880967183e-06 1.241881864899597e-06 1.16156364526887e-06 1.169934087386082e-06 1.26679336176494e-06 1.304916420252766e-06 1.362442846541967e-06 1.669332402087775e-06 1.229013838255355e-06 1.237349820826239e-06 1.19213116001049e-06 1.206884252979989e-06 1.189490706821061e-06 1.186437490474646e-06 1.135618035164043e-06 1.18126797232776e-06 1.149024740243476e-06 1.150614210132517e-06 1.140811356492577e-06 1.109333013005198e-06 1.101085459254136e-06 1.093318445555269e-06 1.112874450370782e-06 1.153679178855782e-06 1.170612129897108e-06 1.191761576535555e-06 1.152906818902011e-06 1.172365607260417e-06 1.206923219143619e-06 1.192872964850267e-06 1.200168618709085e-06 1.186267532204965e-06 1.140671457733333e-06 1.147453019711975e-06 1.148645765169931e-06 1.203970249719077e-06 1.134938433011712e-06 1.226685697020002e-06 1.156781674893637e-06 1.140889910544729e-06 1.156099660448717e-06 1.182025375356943e-06 1.136738987383978e-06 1.166590578804971e-06 1.187065677754617e-06 1.261739541291718e-06 1.204745746719027e-06 1.187787017187247e-06 1.29112400060194e-06 1.200304680537556e-06 1.181496301683183e-06 1.184171836143832e-06 1.166974300303991e-06 1.193214330896808e-06 1.12237250959879e-06 1.152281427607704e-06 1.191773158382148e-06 1.190689808083789e-06 1.23154226372435e-06 1.242273352630718e-06 1.287993839582668e-06 1.252367344051208e-06 + 1.319280784173316e-06 1.359475774620478e-06 1.275770571851353e-06 1.27382497794315e-06 1.281381102558043e-06 1.257185573422248e-06 1.280730216990378e-06 1.224584252668137e-06 1.292834085120376e-06 1.262148359160165e-06 1.277665830912156e-06 1.330039332003707e-06 1.342043137952942e-06 1.344566079808374e-06 1.462000540186636e-06 1.437485444455433e-06 1.647994160691724e-06 1.278975304330743e-06 1.234995037791009e-06 1.349734382927181e-06 1.277428012258497e-06 1.238057205199539e-06 1.189082400543384e-06 1.234094852975431e-06 1.163581586638429e-06 1.171215778583701e-06 1.170133728578548e-06 1.285794930083739e-06 1.274780977666978e-06 1.298329987520219e-06 1.278015044903213e-06 1.440531999463701e-06 1.468427843320796e-06 1.358472086820939e-06 1.474163427772623e-06 1.399630601639501e-06 1.417339387188576e-06 1.442647477034598e-06 1.694701499133089e-06 1.361259087673261e-06 1.231838293591636e-06 1.251075211428088e-06 1.412502840025809e-06 1.520251400322081e-06 1.708177296499969e-06 2.690218206424788e-06 1.336864663414872e-06 1.355186750373605e-06 1.27375793290696e-06 1.303159603338599e-06 1.269532001302309e-06 1.262789243838824e-06 1.194323786535278e-06 1.27130311966539e-06 1.225560581019636e-06 1.229111717293563e-06 1.203104574187819e-06 1.156829682713578e-06 1.140418504519403e-06 1.122403347153522e-06 1.161245130276711e-06 1.215690165423666e-06 1.235695158641192e-06 1.270560161970025e-06 1.232951362339918e-06 1.258055693398319e-06 1.29788792690988e-06 1.273740224405628e-06 1.293651955336372e-06 1.277083171657978e-06 1.199759552150681e-06 1.209163031035132e-06 1.209649738598273e-06 1.29745330212927e-06 1.192809286010288e-06 1.333039723050433e-06 1.222024209823758e-06 1.200705579407213e-06 1.218648638001696e-06 1.25097452752243e-06 1.195336512438416e-06 1.232110204085757e-06 1.25326842592699e-06 1.400752640989822e-06 1.284267398204975e-06 1.256440608443654e-06 1.481710558692839e-06 1.278140118188276e-06 1.244337312300559e-06 1.247787395186606e-06 1.2257874146826e-06 1.263288837094478e-06 1.170831694707886e-06 1.215207674931662e-06 1.283742015800726e-06 1.281528071217508e-06 1.340966779395103e-06 1.359671980338817e-06 1.471673620301317e-06 1.382682125239398e-06 + 1.27741985522789e-06 1.310378664243217e-06 1.235239537322741e-06 1.231483579999804e-06 1.239243715644989e-06 1.215932002196496e-06 1.239010401832275e-06 1.191977446524106e-06 1.251317911510341e-06 1.220458571538074e-06 1.239384161522139e-06 1.282133169411281e-06 1.290364021855339e-06 1.293736143992419e-06 1.403030969626684e-06 1.393777386837769e-06 1.534646445477961e-06 1.240175183880865e-06 1.198715510852821e-06 1.296668141748114e-06 1.238990392948836e-06 1.210938702200792e-06 1.169940105683054e-06 1.208349246439866e-06 1.149614206497063e-06 1.157146726882274e-06 1.15561981317569e-06 1.247492740219514e-06 1.237979365242836e-06 1.255766022723037e-06 1.238024850636066e-06 1.380375273640766e-06 1.388962623138923e-06 1.30257956953983e-06 1.398138675057226e-06 1.338937913430982e-06 1.355971686933799e-06 1.362462544562959e-06 1.619316485346189e-06 1.311819463722941e-06 1.20850100415737e-06 1.221728716416237e-06 1.348772405762588e-06 1.435722035481035e-06 1.538918817267643e-06 2.215606370370438e-06 1.285847829990416e-06 1.299840167945376e-06 1.236818993888278e-06 1.258472032361624e-06 1.233942985123804e-06 1.22911597344455e-06 1.177195805723841e-06 1.241285968234251e-06 1.201000877415481e-06 1.203650167980186e-06 1.186798002095202e-06 1.145064274510332e-06 1.128884491663484e-06 1.111835601363964e-06 1.150280702688633e-06 1.192683495077063e-06 1.207918472800884e-06 1.234215481815681e-06 1.20644781276269e-06 1.226230043727128e-06 1.253530829359306e-06 1.236496210310634e-06 1.25155425223511e-06 1.240345341102511e-06 1.179354399027943e-06 1.190847285670316e-06 1.189048290939354e-06 1.253020542435479e-06 1.173127849085631e-06 1.283516418482122e-06 1.20038633610875e-06 1.180874580342106e-06 1.195079775584418e-06 1.218737356367683e-06 1.175165788680488e-06 1.206368310135986e-06 1.214558643880537e-06 1.349008076800828e-06 1.242776161092252e-06 1.21992150781125e-06 1.432310284599225e-06 1.238446515117175e-06 1.20588634899832e-06 1.208449290857061e-06 1.192331239963096e-06 1.224539730060314e-06 1.155617667336628e-06 1.195093673800329e-06 1.245233910651677e-06 1.243047918819684e-06 1.288673939114915e-06 1.305195109324586e-06 1.389171369936548e-06 1.321318041647146e-06 + 1.140495555773668e-06 1.148206351331282e-06 1.125087749187514e-06 1.126038853271893e-06 1.127775078657578e-06 1.124111165040631e-06 1.136109489152659e-06 1.114421323222814e-06 1.130153748363227e-06 1.12280137898324e-06 1.126648427884902e-06 1.138418291191101e-06 1.141070324450766e-06 1.141794044201561e-06 1.170791644966584e-06 1.177313846412176e-06 1.191892232910163e-06 1.124512708727821e-06 1.115626384162738e-06 1.143065215813976e-06 1.12412843122911e-06 1.11509459443937e-06 1.100945905108119e-06 1.112526206270559e-06 1.093947787467187e-06 1.095215530710902e-06 1.095010382812234e-06 1.129047809911299e-06 1.125493206188821e-06 1.132222173794162e-06 1.124388727902215e-06 1.163677820770204e-06 1.161368460955714e-06 1.145503983224216e-06 1.163910722468131e-06 1.152350652233736e-06 1.156417848591218e-06 1.15847490533838e-06 1.214858155407228e-06 1.147962869652019e-06 1.112958276650033e-06 1.118216147233397e-06 1.154302612604852e-06 1.172216199663012e-06 1.193921233877404e-06 1.340943017069662e-06 1.139094486291015e-06 1.145057444418285e-06 1.123654371326666e-06 1.132634187328563e-06 1.122758071403496e-06 1.121053273323014e-06 1.101705262129826e-06 1.122558551003294e-06 1.109658089859522e-06 1.110731428610734e-06 1.104563324361152e-06 1.090660134650534e-06 1.08406084109447e-06 1.07743362320889e-06 1.089496620920727e-06 1.109130874255015e-06 1.114625689524473e-06 1.122715154622256e-06 1.111648273877108e-06 1.11996675045134e-06 1.128932062499644e-06 1.123582329398687e-06 1.130963774187421e-06 1.126701789644358e-06 1.104453460243349e-06 1.10710823264526e-06 1.107412430201293e-06 1.130428358919744e-06 1.101977037620827e-06 1.140293363732781e-06 1.110520503999624e-06 1.104143994012929e-06 1.109961964118611e-06 1.118101796038218e-06 1.102595739155277e-06 1.113639171990144e-06 1.119249155578927e-06 1.157361019465952e-06 1.1265444079811e-06 1.119457298415227e-06 1.183534919846352e-06 1.124550720987827e-06 1.117497028246817e-06 1.118596458127286e-06 1.112471892383837e-06 1.121852406527069e-06 1.096488063012657e-06 1.108915625991358e-06 1.128737842748251e-06 1.127933650479918e-06 1.140630523366326e-06 1.144816625497924e-06 1.161511452352215e-06 1.148939301032215e-06 + 1.09155667260552e-06 1.098261265042311e-06 1.082742898006472e-06 1.082652431705355e-06 1.084143036678142e-06 1.080397765917951e-06 1.086174449937971e-06 1.074456932315115e-06 1.086469254119038e-06 1.08027280987244e-06 1.084312089005834e-06 1.092257662094198e-06 1.093593251511038e-06 1.093959156150959e-06 1.109777487684482e-06 1.109587074665797e-06 1.121637815515442e-06 1.082479217373589e-06 1.074846469606427e-06 1.093839902210902e-06 1.082483432668369e-06 1.076685038015057e-06 1.06864543880647e-06 1.076629708052224e-06 1.065423163026935e-06 1.066663138260537e-06 1.066397302906807e-06 1.085082679708194e-06 1.083226180753627e-06 1.086731867161461e-06 1.082247667483216e-06 1.107036487368873e-06 1.105749115382082e-06 1.093847703970141e-06 1.107582697557064e-06 1.100179666480017e-06 1.102991355139693e-06 1.102336582903263e-06 1.126911936211172e-06 1.097851722420273e-06 1.07654907566257e-06 1.079635836731541e-06 1.101344496490242e-06 1.112039607065185e-06 1.126224525194175e-06 1.193208660765777e-06 1.092114047196446e-06 1.093237674609782e-06 1.082013728392894e-06 1.087055414572546e-06 1.081619032561321e-06 1.080643045270335e-06 1.070187650498156e-06 1.081918476586452e-06 1.074934019129614e-06 1.075465458910685e-06 1.072564032256196e-06 1.064183464905e-06 1.060965942656367e-06 1.058943624343556e-06 1.064364425928943e-06 1.073070752255489e-06 1.07632438073324e-06 1.081941590541646e-06 1.075862609667411e-06 1.080538293507516e-06 1.085778063014686e-06 1.082519446526931e-06 1.086366324898336e-06 1.084005923246423e-06 1.070644302103574e-06 1.0736032152181e-06 1.07269481475214e-06 1.086446481224357e-06 1.069234645711958e-06 1.091557230381568e-06 1.074813258838958e-06 1.070815685011439e-06 1.07351598188643e-06 1.078368963902676e-06 1.069509906415078e-06 1.075855827536998e-06 1.077827743500848e-06 1.103521466205848e-06 1.083643926591549e-06 1.078492829265087e-06 1.113575759603691e-06 1.082643159122654e-06 1.076593868276632e-06 1.07738669896662e-06 1.073420605735009e-06 1.080510216411312e-06 1.066257027559914e-06 1.074098250342104e-06 1.085018951130223e-06 1.084623683311747e-06 1.092680445680116e-06 1.095276747520302e-06 1.105646628474233e-06 1.096966865787863e-06 + 1.130608538346678e-06 1.136851651040161e-06 1.121607382970069e-06 1.122402807141043e-06 1.123657781931797e-06 1.120787075592489e-06 1.126739306300806e-06 1.11211997477767e-06 1.125367248278053e-06 1.119936968052571e-06 1.12046068068139e-06 1.130138130633895e-06 1.131410449772829e-06 1.131928598852028e-06 1.153337269244048e-06 1.147926823819034e-06 1.193482459527218e-06 1.12009172958949e-06 1.112844367767707e-06 1.133188366253535e-06 1.120040906243958e-06 1.1132743260589e-06 1.100105684770369e-06 1.108201555410915e-06 1.091672231723351e-06 1.093998356793691e-06 1.093691224696158e-06 1.121002178194885e-06 1.119064119592394e-06 1.123364839372698e-06 1.120825213973831e-06 1.150346127687385e-06 1.157903303905528e-06 1.13558598968666e-06 1.158480426255437e-06 1.14260230787977e-06 1.146548580521767e-06 1.157457269584938e-06 1.197099084748743e-06 1.136048059180439e-06 1.111202447390269e-06 1.114245048228213e-06 1.144254868634675e-06 1.166508987182624e-06 1.208959369947138e-06 1.282372725341929e-06 1.130038365104724e-06 1.135197981838587e-06 1.119247368563947e-06 1.123882467979342e-06 1.118698570223842e-06 1.117775337178273e-06 1.100918026963882e-06 1.114944495839154e-06 1.105197114270595e-06 1.105979574589355e-06 1.103361839227546e-06 1.088400324533723e-06 1.081746319187005e-06 1.072144399927311e-06 1.088996384623897e-06 1.108453606235571e-06 1.113199566304957e-06 1.119183330899887e-06 1.106563527031312e-06 1.114991295736445e-06 1.123262521218749e-06 1.119641787283854e-06 1.122995556102069e-06 1.119718120889956e-06 1.1046731742681e-06 1.107404841604875e-06 1.107413226009157e-06 1.123290275018007e-06 1.101319213603347e-06 1.130244182689921e-06 1.109611229566099e-06 1.103832595106269e-06 1.109110353780807e-06 1.115924497696597e-06 1.101615106691156e-06 1.112191743146695e-06 1.116664154920954e-06 1.144298245492337e-06 1.122599432079596e-06 1.116872475392938e-06 1.155459610657772e-06 1.121020844152554e-06 1.11538429337088e-06 1.116407048584733e-06 1.111035061285293e-06 1.119052853937319e-06 1.094483863539608e-06 1.108691577655918e-06 1.121125734471207e-06 1.120685013233924e-06 1.130722381503801e-06 1.134479965969604e-06 1.1606844090295e-06 1.140483050221519e-06 + 1.188981411104351e-06 1.219597024260111e-06 1.176478789943758e-06 1.175458834268284e-06 1.178260660594788e-06 1.169604132655877e-06 1.176928321910964e-06 1.155657344042993e-06 1.183294571660554e-06 1.171076988271125e-06 1.188289928677477e-06 1.198888519127195e-06 1.206237058681836e-06 1.20161162087129e-06 1.248499984285445e-06 1.229726432683265e-06 1.318061027433259e-06 1.173908552587477e-06 1.155878909031571e-06 1.220255217759814e-06 1.175144838327924e-06 1.160244973874569e-06 1.139857076282169e-06 1.162046967095876e-06 1.131894194372762e-06 1.133213849868753e-06 1.132812542437023e-06 1.194455293784813e-06 1.181262895499913e-06 1.195448138702204e-06 1.173811405408287e-06 1.243857351340694e-06 1.266241989483774e-06 1.231260823075786e-06 1.263383502703164e-06 1.235637398622202e-06 1.241362429738047e-06 1.278186655184754e-06 1.323346090487121e-06 1.211654335975254e-06 1.158847599214141e-06 1.168907985515943e-06 1.23677156871338e-06 1.273414010682927e-06 1.355734089436567e-06 1.487636907882006e-06 1.19679071630685e-06 1.232678085827388e-06 1.173152094580132e-06 1.192266884331161e-06 1.172936398674551e-06 1.170918405790644e-06 1.141249093450369e-06 1.199230943882412e-06 1.159151047147589e-06 1.162550912425786e-06 1.148394247252327e-06 1.126802743556254e-06 1.120378598784555e-06 1.116928530109362e-06 1.127044129134447e-06 1.15198908900993e-06 1.16123534610324e-06 1.175659164687204e-06 1.163424972361327e-06 1.172981203723111e-06 1.184427656397702e-06 1.177383900596851e-06 1.195125236108652e-06 1.190139705897764e-06 1.146737290014244e-06 1.154227760480353e-06 1.151589700043587e-06 1.190816817597806e-06 1.141301762430658e-06 1.215873808746437e-06 1.154956265736473e-06 1.14487719216072e-06 1.152946794036325e-06 1.165919172763097e-06 1.141381337887992e-06 1.15864688154943e-06 1.164760263350217e-06 1.233510456444264e-06 1.176601973185143e-06 1.165840856742761e-06 1.250389512819083e-06 1.175765866889833e-06 1.163015738825379e-06 1.165134833058801e-06 1.155686675247125e-06 1.172894982914841e-06 1.134927742896252e-06 1.154794972535456e-06 1.193508857966208e-06 1.189929960787595e-06 1.208935518803855e-06 1.218862916374519e-06 1.275273927348053e-06 1.239356222981769e-06 + 5.21530549946192e-06 6.804786863767731e-06 4.448318307481713e-06 4.469881446311774e-06 4.613702785150053e-06 4.232139517057476e-06 4.645933543656611e-06 3.488928044248496e-06 4.887797800279259e-06 4.230340408639677e-06 4.357145215294622e-06 5.555107321697506e-06 5.67417178487517e-06 5.509175617035567e-06 8.616472573663714e-06 7.587637677275438e-06 1.394117390418614e-05 3.867798323398119e-06 3.379462647501441e-06 5.768582671095146e-06 3.980676467563171e-06 3.320212318413951e-06 2.497508319265762e-06 3.031598922120793e-06 2.211977545130139e-06 2.235393111504891e-06 2.224233824676958e-06 4.201725928965061e-06 3.887556903947598e-06 4.376717118503848e-06 4.12783146330753e-06 8.03415028372001e-06 8.444239028904121e-06 5.699645727830216e-06 8.75961161916905e-06 6.844160690633316e-06 7.451017566495466e-06 8.456155352831729e-06 1.609078277553522e-05 6.230178964727884e-06 3.121443331366436e-06 3.400239464212973e-06 6.831334946610923e-06 9.781577659850882e-06 1.441427957882269e-05 4.403579083955833e-05 5.166167802883592e-06 5.554663042417474e-06 3.787525670873038e-06 4.346684050915428e-06 3.795150256280522e-06 3.759971551886565e-06 2.467580443976658e-06 4.120951249575455e-06 2.93615574520345e-06 3.042050064294699e-06 2.676648563237904e-06 2.063576431510228e-06 1.903156558569208e-06 1.764563805295438e-06 2.085789624572953e-06 3.014735934669943e-06 3.441252083291602e-06 4.047870781676011e-06 3.054295728333045e-06 3.481938612992508e-06 4.468975468796543e-06 4.10033606357274e-06 4.512910322773678e-06 4.146707155427976e-06 2.816399955918314e-06 3.029136081522665e-06 2.986894259038309e-06 4.548453006236741e-06 2.55133031856758e-06 5.312793394551818e-06 3.040238873097678e-06 2.66852462971201e-06 3.050552091821146e-06 3.655543370228997e-06 2.538901862081389e-06 3.270263498222903e-06 3.761542707536591e-06 7.489855459397177e-06 4.363648706373624e-06 3.725661020581583e-06 9.048459659766195e-06 4.270979133025321e-06 3.76586332606621e-06 3.897040841138733e-06 3.429199139759476e-06 4.247163204240678e-06 2.339114629990036e-06 3.072135086767958e-06 4.293989753989536e-06 4.217823402541399e-06 5.389549361467516e-06 5.861234861015419e-06 8.875438822997239e-06 6.514507706611994e-06 + 0.0001582920910720986 0.0003081156249464811 0.0001195521752208606 0.0001159322559090015 0.0001255840028449029 9.784658129774471e-05 0.0001157217975276126 6.128060950061354e-05 0.0001463293016996658 0.0001023316452801737 0.0001249861210510517 0.0001996463611249055 0.0002097494071335859 0.0001896721282150793 0.0004594622455993402 0.0003260189332063845 0.001025339281653714 8.738414625852897e-05 5.629002559359719e-05 0.0002174901247578021 9.519655894152379e-05 5.985700611077505e-05 2.752937499295172e-05 3.840490436246569e-05 1.901804488113612e-05 1.892759647148523e-05 1.890908566792859e-05 0.0001018911182626425 8.939704894217471e-05 0.0001160088319949182 0.0001003320016899067 0.0004085847632371298 0.0004366100259254324 0.0001919369748435429 0.0004821679989301941 0.000304493994949695 0.0003626628316197866 0.0004036608464801361 0.001358001488075189 0.0002441162414079656 5.052621098045051e-05 6.260523367629389e-05 0.0002960091180597146 0.000573824378827581 0.0009636764879896731 0.006396253874454416 0.0001652422483555682 0.0001698935147587122 8.366386979119511e-05 0.000114467350893932 8.501002264260649e-05 8.342729364940737e-05 2.528208693419742e-05 5.58290113801263e-05 3.087164160575639e-05 3.376026466028748e-05 3.034326605444448e-05 1.387649757589315e-05 9.984657552308818e-06 7.739744518175939e-06 1.238425613081517e-05 4.685636562129503e-05 6.668747928983976e-05 0.0001016777278337599 3.374965220359627e-05 6.459609622311291e-05 0.0001265037669071489 0.0001053432311906022 0.0001299075609964007 0.0001031274601572818 3.978081286959423e-05 4.891992753641716e-05 4.673499906004963e-05 0.0001341783230088822 2.925435451572866e-05 0.0001796117952643783 4.773106296696028e-05 3.318784828465482e-05 4.819028544034154e-05 7.68812680682629e-05 2.847329855981684e-05 5.793076564586386e-05 7.810448376943668e-05 0.0003632481432020995 0.0001125708441840345 7.796639124890703e-05 0.0004829266222827755 0.0001105521713995472 7.841575657607791e-05 8.532090704704842e-05 6.26023577012802e-05 0.0001094436335904447 2.29154015585209e-05 5.039464244305236e-05 0.0001126884132034434 0.0001097532344260799 0.0001866809878059428 0.0002224739002834042 0.0004741273396859924 0.0002693585691773137 + 0.06982756841907189 0.1322475018392595 0.05429036849064062 0.05431654556886656 0.05864047316261178 0.04843786329816169 0.06066025249926099 0.0255258044057598 0.06953838126622713 0.04774065506337877 0.04526625352274039 0.07961312822841649 0.0727180726828287 0.06239795493324074 0.1602984948169777 0.1395555987144981 0.2353260588423076 0.02644317151232833 0.01922301547272554 0.06323673846872069 0.03149710285812901 0.01889755776022994 0.007406157654045842 0.009336541759832784 0.005340994698357804 0.005043555928637034 0.005037837332551476 0.02865369707172505 0.02616524776955842 0.03242645947244327 0.03700181714502193 0.1327833364453817 0.107982658857857 0.04591467559142437 0.130928014231662 0.08666634019866137 0.1104174315431656 0.0988653079266939 0.4403054546922434 0.08857847407105268 0.01424372602106416 0.01742839088532477 0.07731514597183065 0.1465064750760749 0.1658892318780607 0.6511858950253107 0.05149162510968708 0.03869935514182643 0.02512671937345523 0.03120277768517887 0.02676301162085259 0.02773406295827385 0.006207234368833525 0.01421409814364694 0.007630062433477747 0.008537449806869546 0.007986180323953818 0.003630419632585813 0.002536514904505793 0.001741262221159445 0.00310192812400345 0.01475199417890494 0.02392746407506507 0.03748548194717927 0.008245815655552491 0.01728994346274959 0.04395236401108704 0.03843223744767954 0.04117088857042717 0.03167896283417804 0.01272934108112622 0.01634722173437808 0.01533750897235109 0.04474144461420337 0.007917441783742873 0.04991538599163192 0.01412518351241232 0.00911316239518456 0.01512653793401597 0.02754137861158412 0.00733373612028565 0.01875422488348732 0.02996273098758451 0.1350598128406766 0.04438438285847468 0.02803999143226932 0.197594212919153 0.04431557379926687 0.03383178472919468 0.03863441339360918 0.02618385979805282 0.05113097354906415 0.006701653825928133 0.0164883286861226 0.03464854457686783 0.03424458021923016 0.05492842273559262 0.06408390853493984 0.1182201452225229 0.07128183360851281 + 0.01756792173024735 0.03130751867941228 0.01326674617584445 0.01320857951823484 0.01426709183186858 0.01158755152974322 0.01434871131510818 0.006331678130749196 0.01675607777926302 0.01162552025040497 0.01100366914199924 0.01980282232019448 0.0184762281214077 0.0166005838518668 0.04237314014472027 0.03631456121608423 0.06314297255960177 0.007413100617720048 0.005173659517859974 0.01590336880698828 0.008528656861475525 0.005129598466091068 0.001986997559619397 0.002165598758477216 0.001427366023463605 0.001300612150700431 0.001319327597002484 0.00695330576015607 0.006824971114529177 0.008420366295109005 0.009765641656546364 0.03507461327298422 0.02742913993066054 0.01145363694629431 0.03377528997708268 0.02224818851846422 0.02819006803915869 0.02232021696813646 0.1177092860468818 0.02283900574582987 0.003747034234375946 0.004478855572930485 0.02064184895211696 0.03981618605405401 0.03925552415658551 0.1306872738819234 0.01399321673125087 0.009424987977331156 0.007013324520231734 0.008474734285242036 0.007319727926098807 0.007460805457263575 0.001639911239514902 0.002631999292411535 0.001673863743125281 0.001824463262931175 0.001916642582507677 0.0009575366943010977 0.0006898861211794838 0.000499640797144707 0.0007916040432505156 0.003875685651966165 0.006233392180064357 0.009695969429635909 0.001793024523262687 0.00435973745288365 0.01152691610091949 0.009932076417641156 0.0103250538179438 0.007611400266590351 0.003214709148323891 0.003883015820605351 0.003854301856222264 0.01148100675668928 0.002116862905975125 0.01257141145141816 0.003695553400074658 0.002401913188482041 0.00400377086551984 0.007282658764452776 0.002003243143404276 0.005006368102783654 0.007824337626690436 0.0339461394887266 0.01144917443118487 0.007478151199634908 0.0514449402480075 0.01130330454720507 0.00845878695024993 0.009499138528056505 0.006540565118129393 0.01233786774400869 0.001773193792715233 0.004099381056732909 0.00842075982864543 0.008498289377349977 0.01438592462020694 0.01660447999326919 0.02856560530996433 0.01756633219925519 + 0.003038961807753537 0.005113114814193409 0.002265727065605461 0.002250528595922674 0.002422393626147823 0.001962537163379352 0.002394569718191519 0.001130435764309823 0.002802345209673263 0.001994191847302318 0.001955751564452157 0.003402126710895459 0.003281094055722633 0.003047049501374133 0.007543821401249318 0.006302178413482906 0.01274433032273592 0.001461416528043102 0.0009943665165206284 0.002948948550947961 0.001623720616400703 0.0009979775579829209 0.0004001743390702472 0.0004000605292375781 0.0002891596947307562 0.0002606132266578243 0.0002663846885724297 0.001316334862664803 0.001315548607625061 0.0016407975523407 0.001798555716430172 0.006331209225818313 0.005285615358525675 0.002281616612080484 0.006323815482746298 0.004111964270393287 0.005092051979456613 0.00429977167236828 0.0214814024629213 0.004031478905872632 0.0007292492190664746 0.0008603173200860681 0.003957563994946511 0.007717654227349158 0.008676113347243053 0.02650661852462299 0.002632157916943711 0.001900333771052587 0.001384405198301408 0.001684648094872898 0.001418554825855622 0.001421472803549761 0.0003327944236453106 0.0003983573612842406 0.000296741073061213 0.0003156927779777163 0.0003619856710130875 0.0001959655047016895 0.0001448188637596104 0.0001116375619432119 0.0001613504953397182 0.0007439899591936694 0.001161228274021653 0.00176933303099247 0.0003150511237386411 0.0008358740548821686 0.002119379903831486 0.001812915095790402 0.001919643710188268 0.001402570058665731 0.0006036535331190862 0.0006940086685460756 0.0007158375626517 0.002114018316412114 0.0004243011048075118 0.002393243678213253 0.0007126428757331382 0.0004744343662181905 0.000771868667591491 0.001362570000573271 0.0004096406328510938 0.0009620346046901318 0.001442091238413212 0.005843052217574751 0.00205512931784213 0.001404463003115808 0.008878593050173578 0.002012948004441739 0.001501024138441664 0.001655317924885935 0.001171653564796316 0.00209247957472769 0.0003530233643260772 0.0007551825831626502 0.001562448969380625 0.001583169149107277 0.00270313224948282 0.003101114594294074 0.005453900347163199 0.003322582954009334 + 0.0002924253953260347 0.0004554562106733329 0.0002208450915901494 0.0002197034739310766 0.0002341647431052252 0.0001936147117191922 0.0002319238326151662 0.0001219444677502679 0.0002640002310130285 0.0001976623978805492 0.0002066507742597423 0.0003231590458696587 0.0003241981017261253 0.0003078921068109253 0.000700595069918819 0.0005774681195180875 0.001378727637375121 0.0001659642190663391 0.0001142721662876767 0.0003191061853549115 0.0001778599024504501 0.0001163818045313292 5.250931866740416e-05 5.837053953783311e-05 3.920275342750301e-05 3.637824088542629e-05 3.696341759251709e-05 0.0001611300335468968 0.000154516134770688 0.0001938304229227583 0.0001891884654838805 0.0006055327636786956 0.0005819008991103658 0.0002862468376001459 0.0006496866529008827 0.0004277900709155347 0.0005060433391861352 0.0005299704028800534 0.001958085474417004 0.0003863015778868828 9.015009927892947e-05 0.0001060466077511535 0.000424466456120598 0.0007948619089308551 0.001219617408241724 0.005008870990053538 0.0002743627203898313 0.0002546287157674243 0.0001587086740197918 0.0001974414766721111 0.0001601472012211502 0.0001580104940650529 4.632629920564568e-05 7.00562853026554e-05 4.658730893325469e-05 4.920443620903825e-05 4.995368022520097e-05 2.83302361197002e-05 2.178141146202961e-05 1.797031798389526e-05 2.495713373207309e-05 8.856314713412416e-05 0.0001289288219226137 0.0001865164495171712 4.973002610597632e-05 0.0001054904903803333 0.000221434055401204 0.0001911281724886749 0.0002132223484423434 0.0001638361473013106 7.231490566539378e-05 8.115312081713455e-05 8.406988472131616e-05 0.0002253186991225675 5.525707558362569e-05 0.0002732622918166783 8.669915087722302e-05 6.0967211059193e-05 9.178849341395789e-05 0.0001491551493550958 5.436911418499335e-05 0.0001116367695104259 0.0001549259729216601 0.0005395197841373545 0.0002095829595631926 0.0001533509565199154 0.0007902262375445446 0.0002044606473603494 0.0001561690756659573 0.0001684894815241478 0.0001253848838871363 0.0002043251258498913 4.619704452579754e-05 8.842732347602578e-05 0.000180852481392435 0.0001806850105339208 0.0002897887883541728 0.0003303847672597726 0.0006131163232616643 0.0003764940954802398 + 1.196655487589737e-05 1.277573673519328e-05 8.934986368558384e-06 9.337936859310503e-06 9.633602019221144e-06 9.28226752705541e-06 1.192451841802722e-05 7.215728231813046e-06 1.009050866684902e-05 8.711101372682606e-06 7.887542267326353e-06 1.081694328064486e-05 1.064612341394877e-05 1.070731283725479e-05 1.845208187312153e-05 2.091512592095057e-05 3.0231361321853e-05 7.429284202942199e-06 6.855139323747039e-06 1.050635410138057e-05 7.625183258141988e-06 6.065489841944327e-06 4.222551655885809e-06 4.654751183608141e-06 3.724676375327363e-06 3.550864192902736e-06 3.583925234806884e-06 7.232827648806506e-06 6.986044471801733e-06 7.948476014263406e-06 8.174428081986207e-06 1.604094808449474e-05 1.542187378689164e-05 1.016784553975469e-05 1.639001035158572e-05 1.261649458683678e-05 1.389406594398679e-05 1.457971276508374e-05 4.161863379792408e-05 1.220073144736489e-05 5.381630717948838e-06 5.848447443668192e-06 1.276171833985984e-05 1.92942567451837e-05 2.777167301015737e-05 9.818650390158723e-05 1.005770755924118e-05 9.633141569764803e-06 7.188417150416626e-06 8.075348295832896e-06 7.157166136195769e-06 7.071475035758112e-06 4.026808106516455e-06 5.3655038954048e-06 4.27133987912498e-06 4.380877044241061e-06 4.180066198955501e-06 3.151924417466034e-06 2.818460231424069e-06 2.656223500707711e-06 3.055346809333059e-06 5.268246198397719e-06 6.314454687128546e-06 7.659393666870074e-06 4.422845584883817e-06 5.892934481721568e-06 8.57816779742393e-06 7.743737882037749e-06 8.19963629794529e-06 7.163781617691711e-06 4.75430211110961e-06 4.985412374480802e-06 5.082628078412199e-06 8.465588869910334e-06 4.310098866255885e-06 9.650820036455343e-06 5.240699454844844e-06 4.487598051383657e-06 5.369380900788201e-06 6.907518212528885e-06 4.307137560388696e-06 5.906822767798303e-06 7.47791025190736e-06 1.455812806128165e-05 8.807356358886409e-06 7.263246331490336e-06 2.27417458944501e-05 8.413148130159698e-06 7.511816733085652e-06 7.828283074218234e-06 6.635759021378362e-06 8.372015855684367e-06 4.010203923598965e-06 5.207213106928066e-06 7.538849779109569e-06 7.506821482650139e-06 1.000434957276752e-05 1.081222017162986e-05 1.586424194144342e-05 1.171766801633112e-05 + 4.696520388591807e-06 4.277262050322861e-06 3.228704116509107e-06 3.475582133205535e-06 3.580569583050419e-06 3.532264912564642e-06 4.717012117794184e-06 2.752533063699047e-06 3.713503204494373e-06 3.222907764666161e-06 2.267620459406317e-06 3.745859828541143e-06 3.446990433531028e-06 3.656758075010202e-06 6.490319503171804e-06 8.77411667588035e-06 8.134554116523418e-06 2.434798178185815e-06 2.600224789262029e-06 2.840948823745748e-06 2.497035183068874e-06 2.057936658417248e-06 1.66201998652582e-06 1.555294090849202e-06 1.561203504252262e-06 1.466195641341983e-06 1.484518328709328e-06 2.019529837582468e-06 2.082387606350267e-06 2.229728504943296e-06 2.881184791192481e-06 5.221688999412777e-06 3.807915737397138e-06 2.484586488549212e-06 4.487341536574263e-06 3.562090611808344e-06 4.087291522125724e-06 2.949678041375137e-06 1.543583097785017e-05 4.255129777419597e-06 1.822985595367754e-06 1.857061523224957e-06 3.616895345004423e-06 5.556300537890024e-06 4.927676926058666e-06 1.031387179750709e-05 3.400800439479212e-06 2.32609850492338e-06 2.315906318273164e-06 2.328802628071003e-06 2.295150482112263e-06 2.295418582320963e-06 1.556738329355767e-06 1.568953244657223e-06 1.499446373287583e-06 1.50777052354556e-06 1.528152218099876e-06 1.396927245878032e-06 1.350314462911228e-06 1.338146375928773e-06 1.372774079300143e-06 1.876545521639628e-06 2.13938324833407e-06 2.478173570352737e-06 1.512463750685811e-06 1.824848823162029e-06 2.787960788452892e-06 2.474024981324874e-06 2.298731835992385e-06 2.034647458515337e-06 1.763074536142994e-06 1.73953714011077e-06 1.811860755651651e-06 2.504670952419019e-06 1.676231555336472e-06 2.53525921678488e-06 1.8242391135459e-06 1.69227662993876e-06 1.900385242947777e-06 2.3432008333657e-06 1.676391329752391e-06 2.016160621565177e-06 2.717772964899723e-06 4.796500640225076e-06 3.169916400480588e-06 2.570900484499816e-06 9.104089759404133e-06 2.954819834144473e-06 2.758179903139535e-06 2.875501863286445e-06 2.456624898172777e-06 2.994805313960569e-06 1.638733436948314e-06 1.810888718978276e-06 2.111572825924668e-06 2.138945653484825e-06 2.932623196727491e-06 3.099064436185017e-06 3.599768515272217e-06 2.871734299247919e-06 + 2.231078177317158e-06 2.138860764944184e-06 1.876846624782047e-06 1.929404604084084e-06 1.959034861442888e-06 1.921463208987007e-06 2.176689832822376e-06 1.726614101471569e-06 1.994491711343471e-06 1.863204957430753e-06 1.625586719455896e-06 2.018430762973367e-06 1.956036935979455e-06 2.015118971243623e-06 2.677293093000799e-06 3.070547439421034e-06 3.146926008668061e-06 1.691071108922415e-06 1.7013842281699e-06 1.805642906305138e-06 1.704918194178617e-06 1.561854414688923e-06 1.389842310572931e-06 1.359548281953948e-06 1.330931667098412e-06 1.294511477567539e-06 1.302286882776116e-06 1.550823448326355e-06 1.574674701743106e-06 1.623996393362859e-06 1.804129546201239e-06 2.403848000653852e-06 2.104393741930721e-06 1.708454666626835e-06 2.255132315553965e-06 2.006010003441361e-06 2.132306697433251e-06 1.876310857795715e-06 4.354997340527689e-06 2.154845045510001e-06 1.477993169629599e-06 1.493072460334588e-06 2.030790286156048e-06 2.527586397960135e-06 2.52209590900776e-06 4.478896356019391e-06 1.954498006995209e-06 1.660763100375107e-06 1.654315068932988e-06 1.659731390546426e-06 1.645210451428625e-06 1.642348777863845e-06 1.349488250923514e-06 1.370256178745421e-06 1.326274272628325e-06 1.330645996944213e-06 1.340654108616945e-06 1.252859931355488e-06 1.219591709400447e-06 1.202703629132884e-06 1.24076555607644e-06 1.487668594535307e-06 1.582810959632752e-06 1.693028139015951e-06 1.334780684203452e-06 1.481330773600575e-06 1.784905698798411e-06 1.692352633142491e-06 1.641053664513947e-06 1.553403635057293e-06 1.435668991689454e-06 1.433183086874124e-06 1.460648107354245e-06 1.704630861354417e-06 1.397985634810084e-06 1.716731915735181e-06 1.474178422000705e-06 1.409965094012477e-06 1.497957683227469e-06 1.650422952081954e-06 1.399693728032503e-06 1.544698520206111e-06 1.745831330168812e-06 2.283046445228365e-06 1.874761796472058e-06 1.7143010850873e-06 3.155520669650969e-06 1.818699828959325e-06 1.744157728467144e-06 1.77308805859866e-06 1.656072868172487e-06 1.813396124816791e-06 1.368030055459712e-06 1.464167823428397e-06 1.579629412162831e-06 1.589414395652966e-06 1.832998666628782e-06 1.879276720018197e-06 2.057711398606443e-06 1.824154558960345e-06 + 1.187126468238375e-06 1.184310519874998e-06 1.175334332970124e-06 1.178356228592747e-06 1.179207941959248e-06 1.179390963557125e-06 1.18671827920025e-06 1.171944774114309e-06 1.17991990578048e-06 1.175788341356565e-06 1.158347956220496e-06 1.180988206783695e-06 1.179257811401158e-06 1.181798396032718e-06 1.195840454215613e-06 1.204555044154176e-06 1.204503336182938e-06 1.165606622777204e-06 1.17042522518318e-06 1.173977359769651e-06 1.166189960599695e-06 1.153810732290594e-06 1.134293665217001e-06 1.123079730547261e-06 1.126367465076328e-06 1.115138324792042e-06 1.117881105017204e-06 1.15093352093254e-06 1.153531556497001e-06 1.15910889419979e-06 1.172292964923827e-06 1.191628218322194e-06 1.186536639607993e-06 1.16796159943533e-06 1.189497686127083e-06 1.182560232848573e-06 1.185894010546917e-06 1.178933295875595e-06 1.21819897103137e-06 1.185608876852484e-06 1.142630225103858e-06 1.144142132147863e-06 1.18376440383372e-06 1.195029431855232e-06 1.199747090119274e-06 1.255357483742614e-06 1.179777894932954e-06 1.163765068312728e-06 1.162571352963937e-06 1.163061456921355e-06 1.161530908788677e-06 1.161157328510853e-06 1.125354646802634e-06 1.122810374454275e-06 1.114610764574309e-06 1.115300900522698e-06 1.12064791579769e-06 1.104913167182531e-06 1.098153902034937e-06 1.098124059240035e-06 1.099764588730068e-06 1.145484890940907e-06 1.155913516015517e-06 1.16476974909574e-06 1.116256616029432e-06 1.142832022793527e-06 1.171006072553382e-06 1.164718568702483e-06 1.160413589218479e-06 1.1506577095588e-06 1.138965401992209e-06 1.136330894269122e-06 1.141140927529705e-06 1.166066134317134e-06 1.135113507189089e-06 1.168143050733761e-06 1.142517813690347e-06 1.135649227990143e-06 1.146772362403681e-06 1.162160163659109e-06 1.135520601991402e-06 1.151803243004679e-06 1.169984770399424e-06 1.188515518890654e-06 1.175866181313268e-06 1.167485290665127e-06 1.203099262880869e-06 1.172535071702896e-06 1.169964093605813e-06 1.171357425278075e-06 1.164988532309508e-06 1.171930605892157e-06 1.132452112528881e-06 1.1407851303602e-06 1.153598930159205e-06 1.154716045448367e-06 1.174945925441762e-06 1.177457182421904e-06 1.185428597949567e-06 1.175845547152221e-06 + 1.153703163225828e-06 1.161043584829713e-06 1.126569088683027e-06 1.129557617218779e-06 1.132687302174418e-06 1.126264322692805e-06 1.141500632684256e-06 1.111341731530047e-06 1.13696096093463e-06 1.123592767271475e-06 1.121673591342187e-06 1.147328212880439e-06 1.147819997271426e-06 1.151415245814746e-06 1.206308374079867e-06 1.205337397891526e-06 1.25877152967746e-06 1.122727272928614e-06 1.112021221771897e-06 1.148048355048559e-06 1.122302506928463e-06 1.108330174304228e-06 1.090680616044892e-06 1.102361888882797e-06 1.083031023085823e-06 1.083691657299823e-06 1.083792056988386e-06 1.122281304333228e-06 1.11932473600973e-06 1.128857810783757e-06 1.124329209289954e-06 1.193047248548851e-06 1.187203555019778e-06 1.150496638402387e-06 1.194266548765199e-06 1.166990550416358e-06 1.176211082309919e-06 1.174832092942779e-06 1.287995377907691e-06 1.162329322568212e-06 1.103504825294976e-06 1.109206692717635e-06 1.171397885357806e-06 1.214751675249204e-06 1.253908044951402e-06 1.471772142380701e-06 1.14664147687904e-06 1.149038025616278e-06 1.120805265486524e-06 1.130874174748442e-06 1.119379218650352e-06 1.117216687163136e-06 1.090928044789052e-06 1.118183597270672e-06 1.099744714849749e-06 1.10089590066309e-06 1.093034057930709e-06 1.077871843335743e-06 1.071452004453022e-06 1.06688193568516e-06 1.077566786022999e-06 1.099715820629399e-06 1.10794091057187e-06 1.120003460641783e-06 1.102237725092436e-06 1.110927129843731e-06 1.129502781083147e-06 1.121011543148143e-06 1.127489085206435e-06 1.119081808553801e-06 1.093973367005674e-06 1.095700270070665e-06 1.096883352147415e-06 1.128973977415626e-06 1.09171987006107e-06 1.142286720323682e-06 1.100700409040201e-06 1.09371595868879e-06 1.100880599125276e-06 1.113532508867365e-06 1.092439559258196e-06 1.106074368095733e-06 1.116203126372284e-06 1.178653313615996e-06 1.129020006374049e-06 1.116067124939946e-06 1.219927732165615e-06 1.124539963370808e-06 1.11391518231585e-06 1.115829789455347e-06 1.106634215375379e-06 1.120164654366818e-06 1.085729891769915e-06 1.098249981623667e-06 1.122383110896408e-06 1.121950035098962e-06 1.144995202650989e-06 1.15204074546682e-06 1.186197142288847e-06 1.158234443465744e-06 + 1.08744945848116e-06 1.089409508381323e-06 1.077944176586243e-06 1.079671392290038e-06 1.080734165270769e-06 1.078757051686807e-06 1.083530079881712e-06 1.072287858505661e-06 1.081995478102726e-06 1.077284366601816e-06 1.072992773742953e-06 1.084867136569301e-06 1.084420418351328e-06 1.086257299220961e-06 1.10174341649838e-06 1.102003370334614e-06 1.112680193315896e-06 1.074534333511679e-06 1.072106346811097e-06 1.082647081318555e-06 1.074431342118487e-06 1.06946546551967e-06 1.062311355326528e-06 1.066718642306341e-06 1.059037543882368e-06 1.059410884352019e-06 1.05932499394612e-06 1.073429899633993e-06 1.072402582735776e-06 1.075478234469074e-06 1.076418929102374e-06 1.098310594471741e-06 1.094700044390606e-06 1.082332458324231e-06 1.097511445280475e-06 1.089508668172812e-06 1.092784028600136e-06 1.089932442965846e-06 1.116664012812407e-06 1.090117198287999e-06 1.067770060814155e-06 1.069377649542957e-06 1.090845927365081e-06 1.103422750503569e-06 1.110689731298464e-06 1.141597032017216e-06 1.084374424920043e-06 1.081735398145156e-06 1.073556765263106e-06 1.076378319808668e-06 1.07300213336714e-06 1.07238798463527e-06 1.062833970166821e-06 1.071436738442344e-06 1.065630829799602e-06 1.065972707436913e-06 1.063820526781001e-06 1.057136557847116e-06 1.05429666064083e-06 1.05242796166749e-06 1.057225766487591e-06 1.066351725143022e-06 1.069403033682192e-06 1.073478131274896e-06 1.066432414376095e-06 1.069879552062503e-06 1.077170352914436e-06 1.073697539766272e-06 1.074991921257151e-06 1.072335784613188e-06 1.063896050368385e-06 1.064983251808371e-06 1.065339120032149e-06 1.075977550613061e-06 1.062819823260952e-06 1.080068880554563e-06 1.066861784693174e-06 1.063901049036531e-06 1.066798478888131e-06 1.071565286281384e-06 1.063189715821977e-06 1.068684468918946e-06 1.0735236877224e-06 1.094598871986818e-06 1.078762807082967e-06 1.073065643453219e-06 1.105050841943012e-06 1.076476110029034e-06 1.072692398906838e-06 1.07365758594824e-06 1.069254025765076e-06 1.075122781912796e-06 1.060213293158085e-06 1.065973791014585e-06 1.073329102041498e-06 1.073157569919658e-06 1.082301135824082e-06 1.084670653739295e-06 1.093970094956376e-06 1.085379793153152e-06 + 1.128592590049493e-06 1.133452343538011e-06 1.11514827949577e-06 1.116753622909528e-06 1.118317911164013e-06 1.115021802888805e-06 1.12230240745248e-06 1.106480624457618e-06 1.120397456588762e-06 1.113659507723241e-06 1.107051474491527e-06 1.126490815295256e-06 1.127191953997908e-06 1.12905965110599e-06 1.149542637080003e-06 1.147794096212351e-06 1.170906246628078e-06 1.110468900833439e-06 1.10661282981539e-06 1.124838128419015e-06 1.11045791229003e-06 1.098706594149235e-06 1.083780293953396e-06 1.092465453211844e-06 1.078236763873974e-06 1.078440277524351e-06 1.078506045359973e-06 1.105949053226141e-06 1.104868140089366e-06 1.110928224079544e-06 1.113616090009373e-06 1.146091245018965e-06 1.146237128324401e-06 1.124218478310013e-06 1.148463045552717e-06 1.136215416863706e-06 1.140409612077065e-06 1.139966567365036e-06 1.173238633356277e-06 1.134149439252496e-06 1.093733231982696e-06 1.097698167029648e-06 1.1384157065919e-06 1.155634551608387e-06 1.176034591487962e-06 1.227370663769989e-06 1.126555410735364e-06 1.1230501453241e-06 1.108329449550638e-06 1.113232947602683e-06 1.107193803306927e-06 1.105943105983442e-06 1.08418267785737e-06 1.101161593908273e-06 1.090103392442643e-06 1.09090710509463e-06 1.085734375294578e-06 1.074400486800187e-06 1.070396905333837e-06 1.066945998218216e-06 1.074722376870341e-06 1.091329334457214e-06 1.09909921519602e-06 1.108715153463891e-06 1.091837329880718e-06 1.098780249009224e-06 1.115796809614267e-06 1.109178306535341e-06 1.110535862380857e-06 1.104136778451448e-06 1.086326989252484e-06 1.087713172864824e-06 1.088747779931509e-06 1.11345463693624e-06 1.084581150223585e-06 1.11975634808914e-06 1.091733725644417e-06 1.086181509180051e-06 1.092355930154554e-06 1.104463887457996e-06 1.08521386010807e-06 1.096799230992929e-06 1.108897894397387e-06 1.140759756879106e-06 1.116547160506798e-06 1.107932032340386e-06 1.152328653830637e-06 1.113762891691294e-06 1.107731620209051e-06 1.109106165131379e-06 1.101866288877318e-06 1.11144584025169e-06 1.080326242686169e-06 1.089778223217763e-06 1.106340803858075e-06 1.106368465286778e-06 1.124352177583887e-06 1.128262827165827e-06 1.145936874280551e-06 1.13029802051301e-06 + 1.369750478374954e-06 1.403505294206298e-06 1.308637081365305e-06 1.311637518597308e-06 1.320304633622982e-06 1.29414915761572e-06 1.326650618693748e-06 1.249049745410957e-06 1.33165103477495e-06 1.296008477424948e-06 1.28216640860046e-06 1.364367200551442e-06 1.375294161221063e-06 1.380708107845408e-06 1.538801193134987e-06 1.50314991564926e-06 1.718577379961062e-06 1.296929131200386e-06 1.257773652341143e-06 1.377580709061021e-06 1.296223455682366e-06 1.247882924104715e-06 1.185857747998398e-06 1.221501296555516e-06 1.163845055884849e-06 1.167795637968538e-06 1.166863889068281e-06 1.280579319029584e-06 1.273921402145106e-06 1.303131188734596e-06 1.305965422915278e-06 1.503107352363031e-06 1.507957414048633e-06 1.373958273376275e-06 1.522130297360036e-06 1.440591347545706e-06 1.463437659054989e-06 1.465762970553897e-06 1.787175612832925e-06 1.40611719956496e-06 1.230144398789434e-06 1.244306567116382e-06 1.454275331269628e-06 1.582210060746547e-06 1.684315086514232e-06 2.366242791040918e-06 1.369705385556585e-06 1.363505591100989e-06 1.287974507491185e-06 1.313450935569449e-06 1.282860166540445e-06 1.277079441308615e-06 1.191228093944119e-06 1.256209788635942e-06 1.212602633415827e-06 1.214947857874904e-06 1.199978285626457e-06 1.154940250103209e-06 1.143434218420225e-06 1.131259821818276e-06 1.159902382141809e-06 1.218883156184347e-06 1.248064933179194e-06 1.288083559813913e-06 1.218162903882103e-06 1.248119115615509e-06 1.320016657757606e-06 1.290344258109144e-06 1.300110476165628e-06 1.271436396166337e-06 1.198268847701911e-06 1.207429278338168e-06 1.210035378562679e-06 1.311855427843511e-06 1.189707312221344e-06 1.350880591388659e-06 1.222492436170342e-06 1.198227622012382e-06 1.222876548467866e-06 1.268891612227208e-06 1.192415417961001e-06 1.240478553654611e-06 1.279432240153255e-06 1.456648501374502e-06 1.31668112146599e-06 1.280095368372258e-06 1.562897693929699e-06 1.306293746949905e-06 1.269688148397563e-06 1.275247555554415e-06 1.242872698981046e-06 1.292518973627921e-06 1.170752554457977e-06 1.215174009416842e-06 1.281482745696394e-06 1.280883992649251e-06 1.369690412644786e-06 1.393161248586239e-06 1.50657513842134e-06 1.411969368092514e-06 + 1.558355648967336e-06 1.633647158882923e-06 1.45421653030553e-06 1.452864808015875e-06 1.469062823389322e-06 1.422685585339423e-06 1.471667630426055e-06 1.358466548140314e-06 1.493588897005793e-06 1.427195087444488e-06 1.462542897456842e-06 1.568393109607769e-06 1.591433917980112e-06 1.598292000082324e-06 1.912808036408364e-06 1.863313912053854e-06 2.441473471392896e-06 1.463970697557215e-06 1.373305147822634e-06 1.611635568110614e-06 1.460749157189412e-06 1.379651514810121e-06 1.286273590750397e-06 1.371054864307553e-06 1.245064453314626e-06 1.257135522791941e-06 1.254960316998677e-06 1.472492137111203e-06 1.45344798596625e-06 1.501943735604527e-06 1.458370761042715e-06 1.833583919363946e-06 1.880138853493918e-06 1.625897798618325e-06 1.895370747462266e-06 1.718997069133366e-06 1.758895542991468e-06 1.820265360663598e-06 2.671818958077665e-06 1.640821018611405e-06 1.363477501570287e-06 1.401766322572939e-06 1.747767678139667e-06 2.029618435983593e-06 2.499665360033987e-06 6.293492409881196e-06 1.581094004166061e-06 1.614430463092731e-06 1.45379852511951e-06 1.513591261215197e-06 1.445325613858017e-06 1.4313503378105e-06 1.2933525006531e-06 1.45257136807686e-06 1.358566713349774e-06 1.365636450145757e-06 1.310915010321878e-06 1.235550740830149e-06 1.208303928024179e-06 1.175299530586926e-06 1.244714233905597e-06 1.334454076129532e-06 1.375069849984811e-06 1.447142821575653e-06 1.372912510788638e-06 1.414906357410928e-06 1.501952656468575e-06 1.453996794964496e-06 1.494070502872091e-06 1.456210419803483e-06 1.304453235206893e-06 1.319102040042708e-06 1.321781809338063e-06 1.503139706926504e-06 1.29219313649287e-06 1.575198783854148e-06 1.344731359154139e-06 1.304514388067446e-06 1.340287528961426e-06 1.405549877375734e-06 1.296363974390147e-06 1.367536128782376e-06 1.406681807480936e-06 1.733717610363783e-06 1.471354085680332e-06 1.414190549553496e-06 1.981107097037693e-06 1.458788112529419e-06 1.389086342840073e-06 1.3963081073598e-06 1.35344822638217e-06 1.427764516392926e-06 1.2584920767722e-06 1.331572349272392e-06 1.470799439573511e-06 1.467469871840876e-06 1.592156465335393e-06 1.631858545181331e-06 1.889687744949242e-06 1.684026823767226e-06 + 1.423311154269413e-06 1.456848835346136e-06 1.353513141566509e-06 1.353998882791529e-06 1.363800990361597e-06 1.339534989597269e-06 1.378859622036543e-06 1.299756590356083e-06 1.378148397179757e-06 1.337896861741683e-06 1.357558474524012e-06 1.416953750776884e-06 1.428615313159298e-06 1.433191673783085e-06 1.600829509840196e-06 1.629354891008461e-06 1.785300231205156e-06 1.358770610693227e-06 1.307189176458223e-06 1.441734351459445e-06 1.356906224714294e-06 1.315317874173161e-06 1.247322398256756e-06 1.291057252217342e-06 1.212438718312114e-06 1.218798402646826e-06 1.217273840836697e-06 1.360924635207539e-06 1.350730162386071e-06 1.380215987722977e-06 1.355739417618906e-06 1.55210568131281e-06 1.545516191470142e-06 1.443400577727516e-06 1.557831458498526e-06 1.491156051969256e-06 1.510429186168949e-06 1.513017025445151e-06 2.029557084171074e-06 1.46070461681802e-06 1.301135938547304e-06 1.318958855023311e-06 1.502504323624976e-06 1.614476868638803e-06 1.711854514141464e-06 2.721527813775992e-06 1.422146349128184e-06 1.433873764611349e-06 1.353635827427979e-06 1.385926932329085e-06 1.34933398676651e-06 1.342400643977726e-06 1.248284448251979e-06 1.342622500288826e-06 1.281163360289383e-06 1.285375915927034e-06 1.259273325615595e-06 1.20012811066772e-06 1.174614581600508e-06 1.146106654914547e-06 1.206853781354766e-06 1.286764419461406e-06 1.312147766441285e-06 1.34978284194176e-06 1.289547903127186e-06 1.323496576333127e-06 1.377357975229643e-06 1.353162119244189e-06 1.376015752896365e-06 1.351796406368067e-06 1.264260788502725e-06 1.272740320246157e-06 1.277470829563754e-06 1.37884680384559e-06 1.252054381950529e-06 1.423438835246316e-06 1.291769436306822e-06 1.261349673598033e-06 1.290780467400054e-06 1.32825117660218e-06 1.254798741356922e-06 1.308293775537095e-06 1.325580686994954e-06 1.509829605339519e-06 1.363599110959512e-06 1.331213923094765e-06 1.677345771611272e-06 1.355768233679555e-06 1.314443494493389e-06 1.318622835810856e-06 1.293850445449607e-06 1.337407582013839e-06 1.227057822461575e-06 1.283471419810667e-06 1.361656536857936e-06 1.359681348844788e-06 1.429808079933537e-06 1.451563331755779e-06 1.545256584023491e-06 1.470854709140212e-06 + 1.202498957297848e-06 1.207879307685289e-06 1.17914996167201e-06 1.181467894184607e-06 1.183975740559617e-06 1.178697743853263e-06 1.195074872839541e-06 1.163386755820284e-06 1.187166844829335e-06 1.176434864191833e-06 1.172775981217455e-06 1.196307430006982e-06 1.197519878815001e-06 1.200347748309127e-06 1.241127073114967e-06 1.256560173246157e-06 1.277547866607165e-06 1.17472696992138e-06 1.164789162899638e-06 1.196201278474973e-06 1.174736070197469e-06 1.159936701355946e-06 1.12942088037471e-06 1.127296037850556e-06 1.116183156568695e-06 1.110400695836233e-06 1.111281818566567e-06 1.163258659175881e-06 1.165976268424629e-06 1.175864756675082e-06 1.17725074488817e-06 1.231418123026629e-06 1.22794358681233e-06 1.192788714021731e-06 1.232724459399037e-06 1.212234547409707e-06 1.219561202248087e-06 1.217950700294068e-06 1.317839380732266e-06 1.209177654004634e-06 1.145816661107801e-06 1.1495103784398e-06 1.215546754806951e-06 1.246570468182995e-06 1.275276863665908e-06 1.385665481024034e-06 1.196356436139467e-06 1.186555998344829e-06 1.172431579377076e-06 1.179819015817429e-06 1.171202622884948e-06 1.169577846127368e-06 1.120706347279565e-06 1.134160164895093e-06 1.121504389800521e-06 1.122676824394375e-06 1.120370193063991e-06 1.103743556996051e-06 1.096824050250689e-06 1.091854159085415e-06 1.100930163033809e-06 1.148837071696107e-06 1.161096655266647e-06 1.172895693457576e-06 1.123655437140769e-06 1.148104331605282e-06 1.181515717263437e-06 1.17372142227623e-06 1.177009387731687e-06 1.162702638168867e-06 1.138673837886017e-06 1.13598866846587e-06 1.143127761338292e-06 1.180487799956609e-06 1.131065371140494e-06 1.189653044519901e-06 1.145317515494071e-06 1.132890002253362e-06 1.150583127440541e-06 1.166971387078775e-06 1.131646168772704e-06 1.157539173846089e-06 1.169982503768097e-06 1.221382095906165e-06 1.181187307963683e-06 1.16975386177387e-06 1.259456361424327e-06 1.177517262362926e-06 1.167637002197353e-06 1.169503008213724e-06 1.159687386120822e-06 1.173948675159409e-06 1.12513261285585e-06 1.143036541861875e-06 1.167817828218176e-06 1.169080114493681e-06 1.194459532172232e-06 1.200146272140046e-06 1.227764492739425e-06 1.203661547322099e-06 + 1.152254178293788e-06 1.166537558106029e-06 1.14378474336263e-06 1.143133502523597e-06 1.144882247672285e-06 1.139532230354234e-06 1.143900519195995e-06 1.132688566940487e-06 1.147642024079687e-06 1.14048202703998e-06 1.144397472785386e-06 1.156467810403683e-06 1.160049873050184e-06 1.159524163796277e-06 1.184646974294878e-06 1.175690545807129e-06 1.214202008270604e-06 1.143022137384264e-06 1.133522408380827e-06 1.162865292059223e-06 1.143163832040273e-06 1.132561731509441e-06 1.112331482033824e-06 1.123598231345113e-06 1.102714591638687e-06 1.103270996338779e-06 1.102871578950726e-06 1.142049811164725e-06 1.140447722036697e-06 1.147828736947076e-06 1.1435504383428e-06 1.181402115690844e-06 1.185912465118122e-06 1.163920117619455e-06 1.186918469286979e-06 1.173261711784335e-06 1.177160520171583e-06 1.184795568320851e-06 1.217216034632429e-06 1.164758675287203e-06 1.126870035506045e-06 1.131181019076166e-06 1.175016445031929e-06 1.193999995763306e-06 1.232024739117321e-06 1.495359850167688e-06 1.157041094046463e-06 1.161934966020794e-06 1.141797554282675e-06 1.149246763532119e-06 1.141082368150137e-06 1.139787904946843e-06 1.111763175742908e-06 1.137630203373874e-06 1.12219014170023e-06 1.123117961299158e-06 1.115645439142554e-06 1.097550338613473e-06 1.09011072879639e-06 1.081894993149035e-06 1.100618170823964e-06 1.124615742753576e-06 1.1329689684203e-06 1.14226359926306e-06 1.12402432606018e-06 1.131862987335808e-06 1.148101020476133e-06 1.143010649684584e-06 1.148006759876807e-06 1.140451438175205e-06 1.118235815056323e-06 1.120311480917735e-06 1.12194837242896e-06 1.149012973655772e-06 1.113673057773212e-06 1.158611635077023e-06 1.12491737169762e-06 1.116229558562054e-06 1.125760189069069e-06 1.137234935555398e-06 1.114147645253638e-06 1.130824667683328e-06 1.137825552888216e-06 1.175080040383136e-06 1.145186441675605e-06 1.138439099435118e-06 1.186259069640982e-06 1.143957852889343e-06 1.136009430524609e-06 1.137027524578116e-06 1.13108647781246e-06 1.14106406101655e-06 1.107640926534259e-06 1.123297323601946e-06 1.143354573684974e-06 1.143231116884635e-06 1.159766771507975e-06 1.164509917828127e-06 1.187481100117793e-06 1.170495540492311e-06 + 1.206497856287569e-06 1.216856631458541e-06 1.184787322472403e-06 1.185937506420487e-06 1.189074453122885e-06 1.181381549031357e-06 1.195881822013689e-06 1.162108191010702e-06 1.194051179709277e-06 1.18038222751693e-06 1.183868462817372e-06 1.203258889859171e-06 1.203395367355142e-06 1.204179397973348e-06 1.249492639132654e-06 1.264896905439628e-06 1.289421525996204e-06 1.179182481436669e-06 1.162277012412005e-06 1.203446824860066e-06 1.18011138994234e-06 1.16501337288355e-06 1.140768201679521e-06 1.163202909992833e-06 1.12953586040021e-06 1.134453029294491e-06 1.133279518228392e-06 1.183369668922296e-06 1.17888594175497e-06 1.187233429789103e-06 1.181020301999069e-06 1.23679426344836e-06 1.230942821450753e-06 1.203696665896814e-06 1.23629978787676e-06 1.216487131472377e-06 1.223672782657559e-06 1.224501961161195e-06 1.35067876527728e-06 1.214480853661826e-06 1.161423814011187e-06 1.169035176218358e-06 1.218214709552967e-06 1.251133163293616e-06 1.286123924693072e-06 1.515798803808366e-06 1.199615457636583e-06 1.202735750993611e-06 1.177736525193041e-06 1.187798757129599e-06 1.177188323708833e-06 1.175547762244378e-06 1.144077295123225e-06 1.183839870577685e-06 1.161565780449791e-06 1.16349105994118e-06 1.151531982657161e-06 1.12721185985265e-06 1.118040430014844e-06 1.103794346590803e-06 1.131268163589993e-06 1.1555787793327e-06 1.166082661541168e-06 1.179842954002197e-06 1.164345359683239e-06 1.171327390636634e-06 1.187704828709002e-06 1.180966421543417e-06 1.187540775049456e-06 1.181250887327678e-06 1.149135130162904e-06 1.155731183644093e-06 1.154363246769208e-06 1.188427638965095e-06 1.142704476819745e-06 1.198585938055885e-06 1.157954571340269e-06 1.147188129380083e-06 1.156753580033865e-06 1.171505370933801e-06 1.142897668060527e-06 1.163089056177569e-06 1.171954000511732e-06 1.228320574142572e-06 1.185089754329738e-06 1.172433851337473e-06 1.272941435814801e-06 1.182701275581621e-06 1.170497611724386e-06 1.173001479060076e-06 1.161993466780586e-06 1.179943978968367e-06 1.13325978645662e-06 1.157153619146811e-06 1.183814866578814e-06 1.182945730704432e-06 1.20036646222843e-06 1.205744968757472e-06 1.23170258348182e-06 1.210674710705462e-06 + 1.38172351782373e-06 1.348615697338573e-06 1.291132136316264e-06 1.311395052994158e-06 1.317294533009772e-06 1.321725818570485e-06 1.397733100816367e-06 1.264755411511942e-06 1.324269774727327e-06 1.294505537430268e-06 1.234028445651347e-06 1.318432651942203e-06 1.297711115455513e-06 1.309207789290667e-06 1.445761229845743e-06 1.621788047856398e-06 1.502027743072176e-06 1.238460468400149e-06 1.249927706226117e-06 1.272229610549402e-06 1.242909810628134e-06 1.212796526317561e-06 1.177985918587865e-06 1.186687065057868e-06 1.166816659292635e-06 1.164940577780271e-06 1.165018097992743e-06 1.220437020776899e-06 1.218431652461049e-06 1.231653179445402e-06 1.265111958304033e-06 1.387620704562664e-06 1.328581792137129e-06 1.256574032382218e-06 1.354303224232467e-06 1.307004701800452e-06 1.33208998676082e-06 1.301296336464475e-06 1.843170355897428e-06 1.344724680052423e-06 1.195428165345902e-06 1.201349984825129e-06 1.308628739593587e-06 1.400392362072012e-06 1.405154989697621e-06 1.809820778575499e-06 1.293753348008408e-06 1.249441082151748e-06 1.231542661628282e-06 1.236603091925303e-06 1.230666251572643e-06 1.230668182472527e-06 1.173731323689253e-06 1.208653852557973e-06 1.182870860816365e-06 1.185205164233594e-06 1.177649046724127e-06 1.158061763817386e-06 1.151272883248566e-06 1.144564677701965e-06 1.158767759079637e-06 1.198113508849019e-06 1.219580099132145e-06 1.243072581758042e-06 1.185933466985034e-06 1.202052779092355e-06 1.260611945497203e-06 1.243240525639067e-06 1.236833263362769e-06 1.219412482100779e-06 1.18851060904035e-06 1.189837945503314e-06 1.193271543797891e-06 1.248042423185325e-06 1.179634121939444e-06 1.25543255080629e-06 1.194399150250547e-06 1.182332994176249e-06 1.200080824048655e-06 1.232904615733332e-06 1.17947067401758e-06 1.209742382712875e-06 1.255867093874485e-06 1.371352748691379e-06 1.285217869906319e-06 1.245836593000149e-06 1.590422428421334e-06 1.270362481875509e-06 1.260135846337107e-06 1.268911063334599e-06 1.239449730405795e-06 1.275009879009303e-06 1.173997148384842e-06 1.193963100831752e-06 1.224687551371062e-06 1.225031368790042e-06 1.272486532144512e-06 1.282453624185109e-06 1.326202834661672e-06 1.27999059884587e-06 + 5.137019233103501e-06 5.690516715617377e-06 3.965075492828873e-06 4.196446710125201e-06 4.318003902881173e-06 4.252960877693113e-06 5.254017182210191e-06 3.341797523148671e-06 4.510780286182126e-06 3.910758451297625e-06 3.572685400854425e-06 4.778849515219008e-06 4.716132583126864e-06 4.673923093889698e-06 7.313564772459813e-06 8.15031267720201e-06 1.096591334004415e-05 3.219288107203511e-06 3.094292319261172e-06 4.74292247787389e-06 3.307440820776719e-06 2.774552797291108e-06 2.131378241898574e-06 2.697453179933973e-06 1.909380216602585e-06 1.938613422680646e-06 1.922632243633871e-06 3.598775002444654e-06 3.241927650776688e-06 3.6752769716486e-06 3.546694415490492e-06 6.593263229603963e-06 6.791580316800605e-06 4.836418057152514e-06 6.980452512905799e-06 5.538342580990729e-06 5.996166443367201e-06 7.083158028109438e-06 1.444086797874888e-05 5.310829216398361e-06 2.630760111088648e-06 2.867197210321137e-06 5.534795180395236e-06 7.81844963171352e-06 1.219256021656179e-05 4.283241378821856e-05 4.368626250084162e-06 4.821526157883227e-06 3.142099572528423e-06 3.620812252691508e-06 3.142408651513051e-06 3.11536942021462e-06 2.129673575268498e-06 3.951139703417539e-06 2.680762975160178e-06 2.781580743516088e-06 2.344536227383287e-06 1.813186614185724e-06 1.697769405950567e-06 1.57269360556711e-06 1.878236531638322e-06 2.534204117665695e-06 2.871517416735969e-06 3.34520608191724e-06 2.796159833451384e-06 2.962159030062139e-06 3.713040459984995e-06 3.380908871974952e-06 3.744198934896303e-06 3.503916836677945e-06 2.37295323302078e-06 2.546952401871749e-06 2.504563610727928e-06 3.736157204059509e-06 2.172954406631789e-06 4.42716251924935e-06 2.556220866978265e-06 2.264935368145871e-06 2.563287551993199e-06 3.05594890193106e-06 2.165936892950526e-06 2.733630815043853e-06 3.286678953884348e-06 6.182371556917587e-06 3.857947763918901e-06 3.177769912099393e-06 8.674061245272924e-06 3.667831663278776e-06 3.34141907387675e-06 3.488789673156134e-06 3.019840022489007e-06 3.701060961702751e-06 2.017372210616486e-06 2.574486003936727e-06 3.617675766065531e-06 3.523977810004908e-06 4.441424938050886e-06 4.805479992597839e-06 7.173960227646603e-06 5.361605566633898e-06 + 0.0001335455790076878 0.0002408121126933338 9.761761701554406e-05 9.707995172902883e-05 0.0001048299828028121 8.514785831437166e-05 0.0001057321797617305 5.251095829805763e-05 0.0001212130071053252 8.526977759970578e-05 9.432321776614572e-05 0.0001589799732215624 0.000162855181258692 0.0001488555574766792 0.000353236861021955 0.0002720642892697356 0.0007540146098765632 6.756985430023121e-05 4.675600815495784e-05 0.0001631977720215616 7.381400628148072e-05 4.639817198537344e-05 2.171584609556021e-05 2.858197073152269e-05 1.522663761477361e-05 1.475685247953606e-05 1.48196552487434e-05 7.546667011837371e-05 6.712135861874913e-05 8.660436372309732e-05 7.996545572197533e-05 0.0003106696744978876 0.0003212217233485859 0.0001408997122425149 0.0003577787556992007 0.0002282203559360596 0.0002725735069866175 0.0002931815606714849 0.001038026982651985 0.0001917488219831398 3.852042441820913e-05 4.711171322924201e-05 0.0002212867054485201 0.0004267982352086364 0.0006906426839519142 0.004506086540915888 0.0001293940956106354 0.0001239833207034025 6.43314994324129e-05 8.609519874269722e-05 6.5350945531506e-05 6.437187341390427e-05 1.950166720021684e-05 4.065613570958249e-05 2.294047166984114e-05 2.501622341810616e-05 2.29689900095309e-05 1.093501607840608e-05 8.009494038674347e-06 6.43295915381259e-06 9.649370106501465e-06 3.658213623936035e-05 5.197331827133667e-05 7.879589332304704e-05 2.50027090231697e-05 4.829598048061712e-05 9.843033267387113e-05 8.142157702906161e-05 9.746914276576035e-05 7.670097442513679e-05 3.115352950544548e-05 3.743170108805316e-05 3.627528613492359e-05 0.0001022080567736339 2.300048489445317e-05 0.000133805623690364 3.670641836350796e-05 2.58233225309823e-05 3.760247078687939e-05 6.005608351955516e-05 2.237335669086349e-05 4.496126525310729e-05 6.300696931660354e-05 0.000279011394990647 9.120838689113953e-05 6.184577750190101e-05 0.0003848898275968793 8.829327131820719e-05 6.404078409616432e-05 7.004415481048909e-05 5.110444575961992e-05 8.845857996675477e-05 1.843733789996804e-05 3.87744702834425e-05 8.385885826811545e-05 8.201801128393527e-05 0.0001418579021503774 0.0001680796377137028 0.000347050862650633 0.0001990964302649445 + 0.1212972048022856 0.2323571009920613 0.09475545746222735 0.09493764033598495 0.1025749973026109 0.08511838526567317 0.1069964773965069 0.04437883907351647 0.1222852401804033 0.08336778200647643 0.07743875607368977 0.1389326023329716 0.1251411577187618 0.106747781257047 0.2728086030140684 0.2371516692188003 0.3879392986313412 0.04461244904601536 0.03269648297682259 0.1061666025402523 0.05354119982649763 0.03211703345161254 0.0125847268653061 0.01482326460202898 0.009075681174849137 0.008335987608788287 0.008381224890868566 0.04738366947245964 0.04394336363905538 0.05417106609429112 0.0632947951635856 0.22530317847575 0.177627374922908 0.07462562173457954 0.2185176498751318 0.1452987278443949 0.1865001316115453 0.1590072463702867 0.7581841487222505 0.1528206442825812 0.0239154023546142 0.02905216343983241 0.1285420756110121 0.2438273258868282 0.2578311690101751 0.9378206395169144 0.087567646878707 0.06203347169664397 0.04240435508765295 0.05222662055904337 0.04534596726846551 0.04718014423342609 0.01026325837118236 0.02144594824634183 0.01185756737740817 0.0132560773433994 0.01297927055953352 0.005923633980501108 0.004109844885149982 0.002864326023839681 0.00491468591569344 0.025239143969916 0.04105786507341236 0.06430906988116192 0.01278930883067986 0.02856805813329899 0.07524184576989867 0.06590909972145198 0.06961872011589065 0.05295491541019715 0.02187698880064204 0.02777056257562549 0.02628307827454535 0.07629888191330281 0.01344595536199478 0.08319440227971953 0.02390593084687609 0.01541682053232307 0.02585213296309519 0.04709770687691872 0.01240296558031062 0.03197876543218925 0.05137639219104528 0.2326985890854694 0.07639738067042856 0.04784823251528891 0.338161582786654 0.07646815327905898 0.05872881508918226 0.06733099264438636 0.04563516177699967 0.0893927283576943 0.0115148150106279 0.0281114207592168 0.05804902877711271 0.05764775767418229 0.09274701103445082 0.1078177500767623 0.1935571664580387 0.117641689592233 + 0.03271465557977749 0.05969788853312252 0.02469498706231832 0.02463358059203813 0.02664827690109917 0.02168420419734218 0.02704478048489989 0.01163428988191129 0.0315053576794071 0.02162863215939126 0.02025027491636422 0.03717219044990827 0.03432949469092961 0.03060283076846559 0.07917068700919572 0.0668657841670548 0.119093309043599 0.01333904650642381 0.009309345169524974 0.02909400556309194 0.0154602259461285 0.009291300828294879 0.003580881879049258 0.003711938920339719 0.002555400192633783 0.002277446622898083 0.002322113371860723 0.01253621622301893 0.01236212001705539 0.01524659108796556 0.01779410837014339 0.06537186149616936 0.05029144439143352 0.02054494342544366 0.06267944575803241 0.04092899599725186 0.05236200695628668 0.0403283783412256 0.2303121540397122 0.04262831933931821 0.006750428746272519 0.008051344561653906 0.03769250244260647 0.07395851147905397 0.07073774687098133 0.2218045574890013 0.02558995722083068 0.01673964343440204 0.01263386802454747 0.0153055896710601 0.0132387322732157 0.01353544734493184 0.002891454397921933 0.004247649741071058 0.002791185647854633 0.003041793271744808 0.003343901377022007 0.001645867833275361 0.001170928507676194 0.0008572259926751258 0.001323920774076726 0.007063147338961073 0.01138698483033806 0.01773893073288235 0.002986796322954177 0.007796554409964074 0.02109577784496963 0.01817594373478926 0.01886610031584013 0.01382146991228694 0.005880954246578085 0.007071967622835018 0.00704880386864204 0.0210240444344123 0.003817540271992215 0.02285126225299905 0.006691728068506819 0.004329583577757035 0.00728875415503083 0.0132526928649952 0.0035979601954228 0.009098593514906383 0.01425821631033841 0.06392220237711754 0.02101604667103629 0.01356713504367235 0.09635022488524214 0.02078658758494356 0.01559506760668228 0.01759673601030443 0.01207069807580297 0.02297757260532762 0.003213731329935854 0.007478714364879124 0.01532025712292295 0.01548311963339444 0.0262917083644858 0.03039396852379284 0.05238310216628861 0.03195000943444271 + 0.006239633712318948 0.01080893652236625 0.004620999707128703 0.004601623259773646 0.004966134731816396 0.004011561087907012 0.004947566114111623 0.002243938710648763 0.00579224767022879 0.004058155484344184 0.003940783201315412 0.007038747247086974 0.006711971790895888 0.00618770043833905 0.01576352209306009 0.01291494272815541 0.0273224128020324 0.002866751961509095 0.001934382931757739 0.005935217566022999 0.003210176559402811 0.001969026908220428 0.000779912536117422 0.000766864584416993 0.0005571094060172754 0.0004942000822225623 0.0005068337622304853 0.002628459212019152 0.002615675888911539 0.00326361693760191 0.003580024773278012 0.01318201916026851 0.01083144541530423 0.00454292129895606 0.0131422502726064 0.008388159255876104 0.01053355851576043 0.008720360608190703 0.04786627863747484 0.008324337433705864 0.001439119370417075 0.001702807358270775 0.008018376588196929 0.01610667664921905 0.01801041184168284 0.05717300794523261 0.005289943467163383 0.00377706385810761 0.002719261769872361 0.003330949732381683 0.002798113726186102 0.002811862204239901 0.0006385256344572099 0.0007588073849973398 0.0005572881388111739 0.0005949524439579079 0.0006948393343790826 0.000363766325037318 0.0002641817726356521 0.0002040232095765759 0.0002931383954063449 0.001474653431223771 0.002310227967257106 0.003531873658737084 0.0005935476610510193 0.001652283848489589 0.004239849009632479 0.003620545537707187 0.00384507876913176 0.002812084344142818 0.001199708124147492 0.001384514450279539 0.001426751576261154 0.004231474449525763 0.0008284617045113407 0.004785251272661384 0.001409532467878449 0.0009293275615256391 0.001528463706971905 0.002701257224885012 0.000796395385648907 0.001904500701215284 0.002862315446872543 0.01225383075132314 0.00412997381052449 0.002775712411388298 0.01860782719680998 0.004047730231022229 0.00301174676858551 0.00334194132072696 0.002342138244287639 0.004262992062180615 0.0006891374438140474 0.001505812421058295 0.003133010639110978 0.003170793933733762 0.00542198166531449 0.006250159690814883 0.0111945020369042 0.006689064447343185 + 0.0006999320217282445 0.001129687264949553 0.0005212428856395945 0.0005191762446230541 0.0005563319650150333 0.0004523431455538685 0.0005464716990104534 0.0002711557046239932 0.0006350919392730248 0.0004629005876068959 0.0004734967292421288 0.0007806169832491605 0.000768829189837561 0.000727560501305291 0.001726843076488294 0.001395692108673074 0.003422599304283125 0.000371757760682101 0.0002496572774433048 0.0007283956004577874 0.0004023436688704862 0.0002604239715253698 0.0001137383078528842 0.000122781370013314 8.339246605260087e-05 7.62103302136552e-05 7.771020143110263e-05 0.0003601059531277429 0.0003472341141446122 0.0004347553468129206 0.0004333494827086781 0.001480297558471122 0.001355606835279133 0.0006341606641928621 0.001559646829843331 0.001001237542148203 0.001213100176926218 0.001185450215572814 0.005168639098044991 0.0009344029955187239 0.0001999780241419558 0.0002357686221223787 0.0009866782659919693 0.001930951181334351 0.002823978625450252 0.01180406821405988 0.0006391045388998151 0.0005590457580790797 0.0003552576873779856 0.0004420453995326312 0.000360087858142677 0.0003565969425558535 9.828396125044492e-05 0.0001426963528743386 9.533232192637797e-05 0.0001009769317974474 0.0001058477567639216 5.798960808078846e-05 4.354730214117808e-05 3.558020156901875e-05 4.966878471890368e-05 0.0001976867177937436 0.0002917548649037371 0.0004264593670129102 0.0001019606452814514 0.0002332828702726886 0.0005092244618047914 0.0004370496661394441 0.0004836401830559112 0.0003693368960639987 0.0001611463497681598 0.0001818100814432455 0.0001885451893741674 0.0005145990909625198 0.0001200449652216662 0.0006154238802693612 0.0001929010889512028 0.0001331468071867903 0.0002048744793441415 0.0003376219409680914 0.000117478861728415 0.0002504139668850769 0.0003512747749354617 0.001328073265600693 0.0004865588816080901 0.000346459585149006 0.001962750262933355 0.0004742242978110767 0.0003574098410652482 0.0003890627598508445 0.0002833904435988188 0.0004804089881389473 9.991395521069535e-05 0.0001985617479789425 0.0004082953795290223 0.0004086727167020854 0.0006641177485207095 0.0007605422290772879 0.001417475082217123 0.0008513389338951072 + 2.871282046257306e-05 3.922134310130332e-05 2.271171133827465e-05 2.274892781883864e-05 2.387145730153861e-05 2.063843716371139e-05 2.404511533882214e-05 1.486072174827768e-05 2.601175908978348e-05 2.094968732535563e-05 2.187172678702609e-05 3.056673604362459e-05 3.073515120988191e-05 2.997057395504044e-05 5.660016631203746e-05 4.859376481824995e-05 0.0001059034057231401 1.905220153552989e-05 1.440800571295142e-05 3.059273303307464e-05 1.981719170629503e-05 1.486123970551034e-05 8.885339482844756e-06 1.014848633573706e-05 7.383278472161692e-06 7.104165376858873e-06 7.160432367925296e-06 1.913316705781654e-05 1.836356358708713e-05 2.164043710806141e-05 2.057509811237423e-05 5.059852754030203e-05 4.896999369030652e-05 2.899587327220843e-05 5.357941450867543e-05 3.836041299010162e-05 4.364417761593131e-05 4.479640738352941e-05 0.000137456428788596 3.537837746847572e-05 1.276453829035518e-05 1.434733642469155e-05 3.854406469372407e-05 6.418707332578322e-05 9.719247141415366e-05 0.0003913402780177933 2.757098453898266e-05 2.693273680343111e-05 1.849678350573924e-05 2.189582339617857e-05 1.852721032769011e-05 1.824567796759879e-05 8.387875045201554e-06 1.185357350408367e-05 8.919219808944945e-06 9.234779156486184e-06 8.89433005824003e-06 6.03729880310766e-06 5.121864646184804e-06 4.646725997758949e-06 5.685175729297498e-06 1.231965117298728e-05 1.572083048984041e-05 2.025895001622757e-05 9.333021615987036e-06 1.441851834016461e-05 2.308193591815666e-05 2.063263770679669e-05 2.274358261189491e-05 1.909015647783008e-05 1.074255627031562e-05 1.166354647352819e-05 1.187808467761897e-05 2.343484212730118e-05 9.174960457158932e-06 2.754762066103922e-05 1.231344188212802e-05 9.794370953386533e-06 1.262664930123947e-05 1.738412592899863e-05 9.120011920771276e-06 1.440625856119482e-05 1.775336465215105e-05 4.546992227361102e-05 2.214014894974525e-05 1.772313729375696e-05 6.170041436348583e-05 2.158309730049268e-05 1.762550784434325e-05 1.856120790932891e-05 1.505968009496428e-05 2.129633946879039e-05 8.161374978499225e-06 1.234095400093338e-05 2.042819146197417e-05 2.03376565437452e-05 2.853345750963854e-05 3.149790080669845e-05 5.054806363347097e-05 3.478136485668415e-05 + 4.680804558176987e-06 3.954050086463212e-06 3.032787219581223e-06 3.361112462130222e-06 3.459960879581558e-06 3.535861893055881e-06 4.872592143101429e-06 2.687525437750082e-06 3.574348951929096e-06 3.089474489570421e-06 2.010230005566882e-06 3.458082879603808e-06 3.0898856273609e-06 3.315950412030588e-06 6.243156285279383e-06 9.093646285762702e-06 7.63474474574366e-06 2.20346712787034e-06 2.477431308989253e-06 2.465477546564898e-06 2.262499464222856e-06 1.893813607267703e-06 1.612062593636665e-06 1.520551386136049e-06 1.548380268445726e-06 1.477404651950565e-06 1.491657222629783e-06 1.816815469624089e-06 1.867787574383328e-06 1.966263457831019e-06 2.648671774352351e-06 4.809255417015379e-06 3.273907093870321e-06 2.12787235298606e-06 3.931956639391387e-06 3.102229811702273e-06 3.598855006003987e-06 2.475068964002958e-06 1.632281903951593e-05 3.942352204688859e-06 1.70338751104282e-06 1.718760870517144e-06 3.141411221818657e-06 4.999422348106464e-06 4.200187105674047e-06 9.240937313137465e-06 3.063873199593559e-06 2.01191196502748e-06 2.092093341232726e-06 2.053710547400556e-06 2.074140299512806e-06 2.082775967693351e-06 1.535623255222163e-06 1.527427919256752e-06 1.485070608708838e-06 1.489195550874456e-06 1.508601911837104e-06 1.431421480901918e-06 1.403601345373318e-06 1.398878737290943e-06 1.416887045024851e-06 1.756354411242e-06 1.970434389875209e-06 2.247102251828892e-06 1.49254961812062e-06 1.695510700727709e-06 2.515089750687594e-06 2.236809024225295e-06 2.0244277223469e-06 1.828105155254889e-06 1.675246394938767e-06 1.648023470579574e-06 1.703513092365938e-06 2.224141546491865e-06 1.620223617493366e-06 2.192656115340696e-06 1.708306548664495e-06 1.626378839603149e-06 1.774413192379143e-06 2.151296431662786e-06 1.620733348417502e-06 1.860549687648927e-06 2.534104844187368e-06 4.426090381315362e-06 2.948116680556723e-06 2.375533654230821e-06 9.273136296172879e-06 2.720958228508152e-06 2.598146927823564e-06 2.717906880889132e-06 2.326810772501631e-06 2.792928853523335e-06 1.602231009201205e-06 1.697974823855475e-06 1.879774707447268e-06 1.902097451988993e-06 2.577851120122432e-06 2.707849610317226e-06 3.073675184595004e-06 2.452668613983633e-06 + 3.206672214872697e-06 2.89850783019574e-06 2.38576707545235e-06 2.550981335502911e-06 2.610986669537851e-06 2.597028327500084e-06 3.166111440577879e-06 2.130326947735739e-06 2.680719518366459e-06 2.396192115838858e-06 1.797914492840391e-06 2.643492834408789e-06 2.453043578043435e-06 2.585778211994239e-06 4.010456878589252e-06 5.047383545786488e-06 4.712254817462735e-06 1.929203969908144e-06 2.023480263346755e-06 2.102532448589045e-06 1.963241654578951e-06 1.70907918217722e-06 1.464135124251698e-06 1.40483291843907e-06 1.392176912418108e-06 1.338091962566068e-06 1.349420649887634e-06 1.660815080128941e-06 1.703069596459272e-06 1.775348827948164e-06 2.181562376080137e-06 3.367809503274088e-06 2.591814899588485e-06 1.885927639833085e-06 2.925888713534164e-06 2.47649185780574e-06 2.739459507239417e-06 2.129484780510893e-06 7.826468266358688e-06 2.916808096387058e-06 1.567785339773309e-06 1.584573123381006e-06 2.507967931109079e-06 3.485022881832833e-06 3.145482907029873e-06 6.138047293546833e-06 2.447578618003377e-06 1.803633358221646e-06 1.857853289877198e-06 1.840317846557582e-06 1.844202287770713e-06 1.846033228503074e-06 1.402437693087677e-06 1.413555846596637e-06 1.365671625563891e-06 1.370758695884433e-06 1.386480050769023e-06 1.28617972450229e-06 1.248447674129238e-06 1.232781897897439e-06 1.270507901551809e-06 1.598084889309348e-06 1.756985959389112e-06 1.949250382438095e-06 1.375163904526744e-06 1.565874779174692e-06 2.119236082620546e-06 1.944633361006254e-06 1.812614584650873e-06 1.66863188866273e-06 1.52732509661746e-06 1.514512831590764e-06 1.556998071805538e-06 1.945257082525131e-06 1.473751510161492e-06 1.928440465093217e-06 1.567363671739486e-06 1.485510967569326e-06 1.612981538556824e-06 1.878400073707098e-06 1.474163228820657e-06 1.683058052037723e-06 2.087732791977714e-06 3.161016298491859e-06 2.351074989803692e-06 2.007644283708032e-06 5.154311665478417e-06 2.220786960549503e-06 2.109612076139911e-06 2.179039924499193e-06 1.940283297585665e-06 2.24268376314285e-06 1.443775985876528e-06 1.557050950395933e-06 1.707527410133025e-06 1.72517061258759e-06 2.171812603535273e-06 2.249992171243775e-06 2.48557436677288e-06 2.099693716672846e-06 + 1.456494437945821e-06 1.399092695919535e-06 1.365453385915316e-06 1.395993848518629e-06 1.399972006765893e-06 1.418859653767868e-06 1.481923732171708e-06 1.363073209859067e-06 1.402022675733861e-06 1.378277900698777e-06 1.257249252262227e-06 1.381662642074843e-06 1.352027435785885e-06 1.371939879035722e-06 1.476011538770194e-06 1.559129982453555e-06 1.490298155104597e-06 1.289710883867201e-06 1.337929704803287e-06 1.303533935015366e-06 1.295019064428971e-06 1.252715922106518e-06 1.206960615007802e-06 1.178116004751928e-06 1.194165406559478e-06 1.170199269040495e-06 1.175809998699151e-06 1.229767661925507e-06 1.239497041893856e-06 1.251376573918606e-06 1.333573184325587e-06 1.430524354972817e-06 1.353768613654438e-06 1.26662008170797e-06 1.385634368133992e-06 1.3460740966309e-06 1.372583160019758e-06 1.299715695068926e-06 1.605913851676632e-06 1.404673650284849e-06 1.218451487261518e-06 1.218892350607348e-06 1.349189304278298e-06 1.429714394873827e-06 1.387094240357101e-06 1.487921659659719e-06 1.356579364397703e-06 1.25206851109283e-06 1.276369880898187e-06 1.265449537157792e-06 1.273672671331383e-06 1.275294362557133e-06 1.186290777610566e-06 1.177598470292196e-06 1.165011610737565e-06 1.166056829760009e-06 1.176075635100915e-06 1.152855958252985e-06 1.142084130378862e-06 1.143006130632784e-06 1.14404348039443e-06 1.231428953474278e-06 1.263786444383186e-06 1.292109750750114e-06 1.167446342265066e-06 1.214833499574297e-06 1.315532799139874e-06 1.290340257753542e-06 1.258777949431078e-06 1.230914442373887e-06 1.216947850934957e-06 1.208039662969895e-06 1.220068654106399e-06 1.285272304585305e-06 1.208104599470516e-06 1.276907770630942e-06 1.220292045189808e-06 1.207618385734577e-06 1.234615545797624e-06 1.286088490815018e-06 1.208310580480543e-06 1.247532065207224e-06 1.329712929987181e-06 1.417513821877492e-06 1.359765352759723e-06 1.311795713831998e-06 1.544723502888701e-06 1.337685937130573e-06 1.337357147690454e-06 1.347520324657125e-06 1.314257218609782e-06 1.344801106029081e-06 1.207213088605386e-06 1.217554327581638e-06 1.23770003312984e-06 1.241735226642504e-06 1.315165583548605e-06 1.323065134783974e-06 1.34241946980751e-06 1.300353208222305e-06 + 1.293886306541481e-06 1.30267349618407e-06 1.241673089680262e-06 1.246800891863131e-06 1.252019842468144e-06 1.24196608908278e-06 1.278452259612095e-06 1.217741157688579e-06 1.25913773274533e-06 1.236947170468738e-06 1.220230828380409e-06 1.277703937319075e-06 1.277499880103505e-06 1.285061998146375e-06 1.397991269413978e-06 1.420694655251964e-06 1.516894229780519e-06 1.228168144962183e-06 1.217714087786703e-06 1.272103158811433e-06 1.228185983137564e-06 1.197976999378625e-06 1.159464613209593e-06 1.166325954926606e-06 1.144071461567364e-06 1.138007213796755e-06 1.139830388297014e-06 1.212694506591561e-06 1.21171541422882e-06 1.229999909924118e-06 1.23646850980208e-06 1.365729104918501e-06 1.349920031756824e-06 1.270391679852878e-06 1.366303813199465e-06 1.311687679361739e-06 1.331105107027497e-06 1.318958958052008e-06 1.616294007078523e-06 1.305412038021814e-06 1.180785346832636e-06 1.189251285893533e-06 1.32029508570497e-06 1.409750984393554e-06 1.484079031222052e-06 2.143778939256435e-06 1.276016309503802e-06 1.264598061823108e-06 1.222724611338322e-06 1.236815737826191e-06 1.219887133530051e-06 1.216651625668419e-06 1.153195370307003e-06 1.189885342256503e-06 1.158573265769292e-06 1.160548094958358e-06 1.152918635227707e-06 1.123473296615884e-06 1.110407154669701e-06 1.105095961406732e-06 1.120162238521516e-06 1.179852898047784e-06 1.199837242893409e-06 1.223831219476779e-06 1.162936886345278e-06 1.190384757876473e-06 1.242744456675382e-06 1.225203476451497e-06 1.229686752424186e-06 1.208259121199262e-06 1.167436849414116e-06 1.166398334362384e-06 1.172302773966294e-06 1.237340597981529e-06 1.161267146443379e-06 1.257769504547923e-06 1.177476278257927e-06 1.163736488507539e-06 1.182403210009397e-06 1.212513012660565e-06 1.162277261101963e-06 1.193376267139001e-06 1.223024142404938e-06 1.336688104203176e-06 1.245829931662001e-06 1.220540323032537e-06 1.444791173810245e-06 1.237035505141648e-06 1.220050926065142e-06 1.223701062258442e-06 1.206376495588302e-06 1.23024331344368e-06 1.152571755369536e-06 1.173188849179496e-06 1.215669811927e-06 1.216401173564918e-06 1.268639675089389e-06 1.281927289653595e-06 1.34636447057801e-06 1.289985565477991e-06 + 1.16016678930464e-06 1.162340723226407e-06 1.142567043643794e-06 1.144102157013549e-06 1.145866917795502e-06 1.142059346648239e-06 1.156996646045627e-06 1.131696890865896e-06 1.148075924106706e-06 1.140648762998353e-06 1.131436079049308e-06 1.154381166657004e-06 1.154881108078598e-06 1.157271150020733e-06 1.18901794898818e-06 1.202998875626804e-06 1.212928703253624e-06 1.13714878047233e-06 1.133101694250627e-06 1.15067162553828e-06 1.137279763696597e-06 1.125747310481984e-06 1.106441512632728e-06 1.103026615822955e-06 1.098276726452241e-06 1.09256708213934e-06 1.093933590823326e-06 1.125679013114222e-06 1.127483841401045e-06 1.133632085981162e-06 1.141284105443674e-06 1.179198536149784e-06 1.172839063201536e-06 1.145455907902715e-06 1.177156741860585e-06 1.163513029922569e-06 1.168775202842198e-06 1.162677008892388e-06 1.242815315549706e-06 1.163605720222449e-06 1.11663226221026e-06 1.118405439370918e-06 1.165811344350232e-06 1.188969216414648e-06 1.205532485393235e-06 1.350939038857746e-06 1.154437848427392e-06 1.14127984751633e-06 1.134536415037246e-06 1.137311231858007e-06 1.133405749698113e-06 1.132571295414664e-06 1.101218352062006e-06 1.106720549870488e-06 1.097762158508431e-06 1.098436516855372e-06 1.099317117336795e-06 1.08480779204001e-06 1.077544041550027e-06 1.075876383538343e-06 1.081406139746832e-06 1.117952589169136e-06 1.126789527461369e-06 1.135496752624476e-06 1.09932392078349e-06 1.117527517635608e-06 1.142645164264877e-06 1.135745115732334e-06 1.13431672588149e-06 1.124993445955624e-06 1.111295887312735e-06 1.110022310513159e-06 1.114104151156425e-06 1.138958829471903e-06 1.107463667437969e-06 1.143876133369304e-06 1.116115758037495e-06 1.108764593027445e-06 1.119165712992753e-06 1.132023868422039e-06 1.108047683828772e-06 1.123917801493235e-06 1.136402396184621e-06 1.171797677557151e-06 1.144208649606071e-06 1.135679639219234e-06 1.205345647292688e-06 1.141328127118868e-06 1.134653651035933e-06 1.135928044959655e-06 1.128651462067864e-06 1.138808528367008e-06 1.103339627661626e-06 1.114233995735958e-06 1.127957418134429e-06 1.12881894409611e-06 1.150981113084981e-06 1.155098569682877e-06 1.171736634830722e-06 1.154788719759381e-06 + 1.193530046350588e-06 1.192134632788111e-06 1.158875278406413e-06 1.163421501360062e-06 1.166514209671732e-06 1.16249549364511e-06 1.18915077962356e-06 1.145406486102729e-06 1.170242313719427e-06 1.156932512458297e-06 1.147966628423092e-06 1.178686133584961e-06 1.177741122404541e-06 1.182339667948895e-06 1.240990897599659e-06 1.266221355322728e-06 1.278284857519907e-06 1.1520206246729e-06 1.145857993378741e-06 1.172951730410432e-06 1.151959153844473e-06 1.138090635066646e-06 1.120099678786346e-06 1.123457181506637e-06 1.112807709091612e-06 1.108518986825402e-06 1.10950658438469e-06 1.144043224599045e-06 1.143951184445768e-06 1.152564113482413e-06 1.155960902110564e-06 1.221399037021342e-06 1.204728508952257e-06 1.169331699912846e-06 1.213891541951284e-06 1.190604059786438e-06 1.200040042448336e-06 1.190474410606157e-06 1.334784577977643e-06 1.194460509168493e-06 1.130438942453793e-06 1.133827261412534e-06 1.194003099058705e-06 1.236602825471778e-06 1.250957664566954e-06 1.356384853323789e-06 1.177124641316141e-06 1.165587043772121e-06 1.149407939493585e-06 1.15608591144678e-06 1.148028848874105e-06 1.146502562221485e-06 1.117092928382135e-06 1.132027062311636e-06 1.119128544502246e-06 1.120071821958391e-06 1.117060818955906e-06 1.101417467452848e-06 1.095561728448047e-06 1.092922317980083e-06 1.099944938687258e-06 1.129652474674003e-06 1.138649601273301e-06 1.149754922380453e-06 1.121159343142608e-06 1.13417151936801e-06 1.159166252762134e-06 1.150410547268166e-06 1.152667948645103e-06 1.142214173910361e-06 1.123721759199725e-06 1.123762842780707e-06 1.126308646348662e-06 1.156590698769833e-06 1.121024315153818e-06 1.165599108787774e-06 1.129013444511884e-06 1.12245053074389e-06 1.130850655783888e-06 1.144549866438638e-06 1.121634248590908e-06 1.13592620465397e-06 1.149080212314857e-06 1.208418876075257e-06 1.161153601714204e-06 1.148187980248849e-06 1.270775506156951e-06 1.156118287326535e-06 1.147179162330758e-06 1.149019425383813e-06 1.140232228635796e-06 1.152465543441394e-06 1.116714102522565e-06 1.126927742234329e-06 1.14570082132559e-06 1.146125399031916e-06 1.172261693938026e-06 1.178091906695045e-06 1.202718927117985e-06 1.179305268550479e-06 + 1.55838510806916e-06 1.599383537609356e-06 1.433823285879043e-06 1.441214038777616e-06 1.456378655007029e-06 1.415539813365285e-06 1.486591543198301e-06 1.345269126318271e-06 1.476598924909922e-06 1.414309210190368e-06 1.409569236443531e-06 1.528788217797228e-06 1.538303372683458e-06 1.553287145128479e-06 1.912059865105675e-06 1.883639772159995e-06 2.348040494482007e-06 1.420863391388139e-06 1.35713537297022e-06 1.54180875711063e-06 1.41897656646961e-06 1.356221073223196e-06 1.274747635449103e-06 1.33392645906838e-06 1.24381254806849e-06 1.249924572732652e-06 1.248281201071677e-06 1.409306349842154e-06 1.400027471731846e-06 1.438674718912125e-06 1.428408101133982e-06 1.807009375909274e-06 1.778114949502196e-06 1.545743533171162e-06 1.816866131321149e-06 1.649529053793231e-06 1.698028274432772e-06 1.702007981663201e-06 2.705241634259892e-06 1.608190910218354e-06 1.337453465311e-06 1.360014280749056e-06 1.675015367297306e-06 1.971053990246219e-06 2.148687263670013e-06 4.243699672557e-06 1.531597479953462e-06 1.531842757529489e-06 1.410994320494297e-06 1.451081026004886e-06 1.404353120904034e-06 1.395184263230931e-06 1.282493791165962e-06 1.389064674839346e-06 1.325088582859735e-06 1.328935884004068e-06 1.297577952641404e-06 1.231335744478201e-06 1.213103899999624e-06 1.191447964288272e-06 1.24199313944473e-06 1.318111973347413e-06 1.354228636785137e-06 1.407971595313029e-06 1.333621042931554e-06 1.366193263407922e-06 1.451876467939428e-06 1.412031579661743e-06 1.433870984612895e-06 1.39752926742176e-06 1.291367283329237e-06 1.305380806115863e-06 1.307447107024018e-06 1.445527381349621e-06 1.279929151110082e-06 1.504634180804487e-06 1.325291044906862e-06 1.291494118760284e-06 1.323252000418051e-06 1.379377643218049e-06 1.283437111254671e-06 1.346546078195843e-06 1.387858308277146e-06 1.706395373446412e-06 1.44639437138494e-06 1.390366922038311e-06 2.007631039191438e-06 1.429027769006552e-06 1.373491329559329e-06 1.381546894663188e-06 1.337278661139862e-06 1.407531982522414e-06 1.253577053716981e-06 1.315406649382567e-06 1.410588524208833e-06 1.409622448989012e-06 1.527040716098327e-06 1.564772833972938e-06 1.774600807635807e-06 1.603829275609314e-06 + 1.81661625120455e-06 1.965580992191462e-06 1.668209762328843e-06 1.661039704003997e-06 1.686414577761752e-06 1.610253150374774e-06 1.67394816230626e-06 1.523236662137606e-06 1.72680437060535e-06 1.623323527155662e-06 1.731880232114236e-06 1.855728406496837e-06 1.899237126679054e-06 1.905731114248965e-06 2.375936988485705e-06 2.253663344831125e-06 3.249322544363054e-06 1.704266939128729e-06 1.543594507324997e-06 1.960040748372194e-06 1.697268210421043e-06 1.574745720489545e-06 1.424394586280187e-06 1.592431917885051e-06 1.362883651268021e-06 1.382996046572771e-06 1.378857639622311e-06 1.769044310151457e-06 1.723143995491228e-06 1.807886768290246e-06 1.67793278649242e-06 2.26875764397505e-06 2.37179235718088e-06 2.026116003861489e-06 2.375926024811292e-06 2.108775646547656e-06 2.162171547581693e-06 2.345013982107957e-06 3.554155806995141e-06 1.974087130207636e-06 1.560209089035425e-06 1.634107544390417e-06 2.152851370951225e-06 2.577963728711552e-06 3.522590986015928e-06 1.465561906499602e-05 1.878510229147423e-06 2.025442219277807e-06 1.69506768443739e-06 1.815774357538658e-06 1.682709694250661e-06 1.65738089918932e-06 1.438553308474866e-06 1.779222134956626e-06 1.578187848849666e-06 1.592310685083476e-06 1.474420201930116e-06 1.352831944245736e-06 1.311420916749739e-06 1.253370015774635e-06 1.375145330939631e-06 1.501444874207891e-06 1.563452478592353e-06 1.677591114912502e-06 1.606405600540484e-06 1.661452678547448e-06 1.758954844888194e-06 1.690820248256841e-06 1.788353316101166e-06 1.736966758869585e-06 1.45330189127435e-06 1.48291161394809e-06 1.483242868971502e-06 1.782736447353273e-06 1.433633819658553e-06 1.920970220226081e-06 1.524350754067427e-06 1.454144449297701e-06 1.510741597599008e-06 1.606448236657343e-06 1.440022112220163e-06 1.555600974256777e-06 1.595289329969773e-06 2.120219146917179e-06 1.694927394879642e-06 1.610452333267176e-06 2.440418072069406e-06 1.678974477670181e-06 1.568093850323748e-06 1.578792719669764e-06 1.51493665612179e-06 1.629186598961496e-06 1.38235391489161e-06 1.502514706430702e-06 1.760814086537721e-06 1.750918379173072e-06 1.916671543256143e-06 1.97892072861805e-06 2.402443019633438e-06 2.089277622019381e-06 + 1.541222871992431e-06 1.619290983967403e-06 1.48608063454958e-06 1.484558055153684e-06 1.494930614853729e-06 1.464330537714886e-06 1.486293783159454e-06 1.420392521822578e-06 1.511413671551054e-06 1.468112060365456e-06 1.504973724308911e-06 1.567680087077861e-06 1.58987930021226e-06 1.589173642457808e-06 1.721750990668625e-06 1.685761338521274e-06 1.84769772104687e-06 1.490399963444133e-06 1.426623047251496e-06 1.620186331763307e-06 1.487921920784174e-06 1.427840228274135e-06 1.329814423911557e-06 1.404174618357956e-06 1.281213002357617e-06 1.291261298774771e-06 1.288828094914152e-06 1.519911037917154e-06 1.494525868395158e-06 1.544988705859396e-06 1.486030328123888e-06 1.700844608265584e-06 1.711310691376866e-06 1.637474493776381e-06 1.714972789557123e-06 1.663665113227353e-06 1.677162373425745e-06 1.703553049736684e-06 1.923855968755106e-06 1.617009790066959e-06 1.40919804891837e-06 1.441055097473054e-06 1.673342985952786e-06 1.750406918077374e-06 1.823388888766431e-06 2.205313588632407e-06 1.576155586491268e-06 1.631970899751423e-06 1.485016154489927e-06 1.547191146755722e-06 1.479287869088353e-06 1.468118501435356e-06 1.33114040679061e-06 1.510551079775269e-06 1.39444416902279e-06 1.401818341406624e-06 1.348738123851945e-06 1.268087785888383e-06 1.235769119034558e-06 1.192491538404283e-06 1.283400457907646e-06 1.386798643920883e-06 1.423506446940337e-06 1.478788284714483e-06 1.409107948546762e-06 1.451445605482604e-06 1.518315034587658e-06 1.484612148772158e-06 1.536532714396799e-06 1.5027192645789e-06 1.354714328272166e-06 1.36670715278342e-06 1.373607162236112e-06 1.530614241573858e-06 1.336596039180904e-06 1.605359393863637e-06 1.394266046617076e-06 1.349799013894426e-06 1.392525042831494e-06 1.446115451386731e-06 1.340235787239408e-06 1.417891887456335e-06 1.448969680239998e-06 1.668366675033894e-06 1.497145440509939e-06 1.452086291209298e-06 1.738321198985204e-06 1.486993383537083e-06 1.437699083339794e-06 1.444585038257173e-06 1.405673202725666e-06 1.46617161078666e-06 1.300864823861048e-06 1.382399460680972e-06 1.518857366988868e-06 1.513024699306698e-06 1.598835254412734e-06 1.625403754701438e-06 1.71488020228594e-06 1.656604357691549e-06 + 1.258081322674798e-06 1.265574951503368e-06 1.229214404929735e-06 1.235167829349848e-06 1.238293009464542e-06 1.233374987918978e-06 1.248239769324755e-06 1.21345011905305e-06 1.242594478867431e-06 1.228145251275237e-06 1.190040308074458e-06 1.24983960603231e-06 1.241908936577829e-06 1.250337028579906e-06 1.303649820982855e-06 1.300993961450558e-06 1.347658578509936e-06 1.198541198732528e-06 1.2078016400352e-06 1.2198526420093e-06 1.200395256972797e-06 1.178716150462833e-06 1.149734131900004e-06 1.143798254332751e-06 1.138674022627129e-06 1.131635386286689e-06 1.132675336634748e-06 1.175815121712276e-06 1.180753610441343e-06 1.190246095461589e-06 1.217263417174763e-06 1.292822297216389e-06 1.267329935217276e-06 1.206354482974348e-06 1.28579805469542e-06 1.251024354331776e-06 1.269245203161518e-06 1.237280592647494e-06 1.363133229403957e-06 1.265848311504669e-06 1.16242672376643e-06 1.164575785139732e-06 1.254973916786639e-06 1.309352137823794e-06 1.320043456765063e-06 1.404193294973766e-06 1.241749529867775e-06 1.197296271016057e-06 1.193149197220578e-06 1.196250048351999e-06 1.191670696343294e-06 1.190827244812454e-06 1.139985570830504e-06 1.150576110831025e-06 1.140206091321261e-06 1.141080780087123e-06 1.1386876508368e-06 1.126584962207744e-06 1.12308705979558e-06 1.120377746133272e-06 1.1264617896245e-06 1.167521990197429e-06 1.181680758577386e-06 1.198225007215115e-06 1.141835404894209e-06 1.162370907081822e-06 1.213538478594955e-06 1.198370021882056e-06 1.19309794399669e-06 1.176253825008189e-06 1.1582950776301e-06 1.154235945932669e-06 1.161844735975137e-06 1.202077136497337e-06 1.151032765989157e-06 1.206704400402714e-06 1.162828752399037e-06 1.151999015291949e-06 1.169193510008881e-06 1.191340778916583e-06 1.151342933880528e-06 1.176186589901818e-06 1.209555673398199e-06 1.281461130986372e-06 1.229064594099327e-06 1.202259849009124e-06 1.313386068346745e-06 1.219475642244561e-06 1.210772019533124e-06 1.21564166022381e-06 1.195638773765495e-06 1.219306454913749e-06 1.147236588394662e-06 1.161096975010878e-06 1.181532240934757e-06 1.183568961948822e-06 1.222920293031393e-06 1.230699794518841e-06 1.261899885918183e-06 1.224839294877711e-06 + 1.440312562550616e-06 1.503120785173451e-06 1.382984677888999e-06 1.385062503800327e-06 1.393882143929659e-06 1.368947948776622e-06 1.402040055609177e-06 1.320594307685496e-06 1.406910982382215e-06 1.369647833371346e-06 1.379281727054149e-06 1.446795934612055e-06 1.45957702457622e-06 1.461159103044452e-06 1.639593728341993e-06 1.574586494967889e-06 1.933010993937501e-06 1.372787933107134e-06 1.325277729335994e-06 1.469815792631834e-06 1.372635551888379e-06 1.332369489404073e-06 1.262233201515528e-06 1.318422899743155e-06 1.225949176841823e-06 1.240018121961839e-06 1.237055464287096e-06 1.388219210696207e-06 1.372517630215953e-06 1.401744651019499e-06 1.377582833583801e-06 1.614014831119448e-06 1.652171480515108e-06 1.483891383102787e-06 1.667564822227519e-06 1.54612133229648e-06 1.580364060060901e-06 1.618673422854044e-06 1.989006126024151e-06 1.494147593206208e-06 1.324387966405993e-06 1.343832643385667e-06 1.55978356630726e-06 1.731625072665111e-06 1.992661010419283e-06 3.706158713256968e-06 1.446110815095381e-06 1.480402493925226e-06 1.367974899579849e-06 1.403787464937523e-06 1.364608415599378e-06 1.358482307978193e-06 1.272315454770023e-06 1.361198826543841e-06 1.307081458179482e-06 1.310852908886773e-06 1.28919695185914e-06 1.220419207470513e-06 1.195818256860548e-06 1.163106148283077e-06 1.231858718142576e-06 1.305748661195594e-06 1.331389526626481e-06 1.36743864231903e-06 1.314219822745599e-06 1.350232704311338e-06 1.395703634443635e-06 1.370601708572394e-06 1.397764819444092e-06 1.378334935964176e-06 1.284429075099069e-06 1.302156420024403e-06 1.300376169410811e-06 1.397801199232163e-06 1.268453186042962e-06 1.447987585834198e-06 1.31424169680372e-06 1.282510989852881e-06 1.309385609715719e-06 1.346930083911957e-06 1.270663409158601e-06 1.326383287647559e-06 1.35103523390967e-06 1.563266906146055e-06 1.388732098206447e-06 1.352584948932645e-06 1.651764968357838e-06 1.379608541185462e-06 1.343137192577615e-06 1.349168769593234e-06 1.317826928470822e-06 1.367583806199946e-06 1.236263528880954e-06 1.308554089973768e-06 1.387102159355891e-06 1.383421512457517e-06 1.452739073926068e-06 1.481343687714798e-06 1.661912524042464e-06 1.520242875585609e-06 + 1.644872195782909e-06 1.77402361600798e-06 1.585828854899773e-06 1.569747368534991e-06 1.588544378705592e-06 1.519607764066677e-06 1.546360124393686e-06 1.437422255889942e-06 1.621904885951153e-06 1.544246558182749e-06 1.626792339948224e-06 1.702741862175117e-06 1.725210445613357e-06 1.716517916250382e-06 1.878563518076248e-06 1.819319676243936e-06 2.013483227258916e-06 1.58806311212345e-06 1.451415498010533e-06 1.735029350413697e-06 1.592945583439587e-06 1.512112802970478e-06 1.387294549459739e-06 1.48577235492553e-06 1.332780001916944e-06 1.355182241979946e-06 1.350487565332514e-06 1.620153582848616e-06 1.598849902251231e-06 1.642244601640641e-06 1.581544122331024e-06 1.854481311625022e-06 1.851184844525733e-06 1.722016143901328e-06 1.867767855046054e-06 1.799063575447235e-06 1.824747048573272e-06 1.812733248840459e-06 2.075870774831401e-06 1.755702111694291e-06 1.502362305672023e-06 1.54471643298848e-06 1.805740939886391e-06 1.907485399854636e-06 2.003084024870816e-06 3.071896054862577e-06 1.696789944105603e-06 1.707111941584571e-06 1.582804388888803e-06 1.645196713084829e-06 1.58047124010352e-06 1.569803377066137e-06 1.40393028402741e-06 1.551080572426144e-06 1.458634081075161e-06 1.468234987811456e-06 1.434926538479431e-06 1.325334991975069e-06 1.295356867103692e-06 1.259383807905579e-06 1.334761286386765e-06 1.464402281214916e-06 1.514286076087501e-06 1.592607191014395e-06 1.4723415482365e-06 1.55538018375978e-06 1.637106013419043e-06 1.600541352786422e-06 1.645724587717723e-06 1.61226427053407e-06 1.431413281238747e-06 1.472632675358909e-06 1.461778992961626e-06 1.649164246941837e-06 1.397950814663318e-06 1.704856501305585e-06 1.482673010144708e-06 1.423387498533657e-06 1.470031953942907e-06 1.539940360117953e-06 1.399621108788551e-06 1.502567350541995e-06 1.519615853595724e-06 1.823057527161609e-06 1.592454818677425e-06 1.53411106040835e-06 1.896184151917168e-06 1.590914315841019e-06 1.503465938412774e-06 1.513735981006903e-06 1.462059429968576e-06 1.565583204410359e-06 1.345859800494509e-06 1.479318044061984e-06 1.625635654534108e-06 1.621611289692737e-06 1.717814331669842e-06 1.747804724061552e-06 1.851719286349862e-06 1.767331696100882e-06 + 1.477877226818691e-06 1.481280136772511e-06 1.471265761665563e-06 1.471333760605376e-06 1.472339647534682e-06 1.468934826220902e-06 1.474289604175283e-06 1.460092434513172e-06 1.473732666568139e-06 1.469507850515583e-06 1.471894776727822e-06 1.477103026559234e-06 1.478269268773147e-06 1.478322939618693e-06 1.495378525007141e-06 1.501379024659855e-06 1.529629241048269e-06 1.470654462210064e-06 1.461025332716304e-06 1.480927895869399e-06 1.470836817674126e-06 1.464786727467526e-06 1.449159530153565e-06 1.454757970975606e-06 1.438933338704373e-06 1.439128084257391e-06 1.439388761070859e-06 1.471056435775608e-06 1.469822880295624e-06 1.473592888601161e-06 1.470792017954636e-06 1.491443482493082e-06 1.498444911263164e-06 1.483473896612963e-06 1.49785197578467e-06 1.486631369118641e-06 1.488800030813309e-06 1.500755903549589e-06 1.560149819113121e-06 1.480884328941556e-06 1.461614562714431e-06 1.464497856318303e-06 1.487723578108557e-06 1.503840937999712e-06 1.543126458614097e-06 1.916725073769499e-06 1.477244172320979e-06 1.48303035452102e-06 1.470057799934921e-06 1.474013643587568e-06 1.469774559836878e-06 1.469124448760795e-06 1.447831905920793e-06 1.460521943386084e-06 1.449196911806894e-06 1.450712680650668e-06 1.450557199689229e-06 1.42665335545189e-06 1.408267934266405e-06 1.390199500406197e-06 1.419994433149441e-06 1.459967613470781e-06 1.465414719348246e-06 1.470506376222147e-06 1.451153803344596e-06 1.464815149176957e-06 1.473268628870983e-06 1.470902340372504e-06 1.4736608946464e-06 1.470358036215202e-06 1.456130945598488e-06 1.459108688095512e-06 1.45921407579408e-06 1.473830508302854e-06 1.450624605325856e-06 1.479196143350237e-06 1.460523851193329e-06 1.453568138742867e-06 1.46062272321501e-06 1.467611504324395e-06 1.450344424114292e-06 1.463921503130905e-06 1.467174122637971e-06 1.48658326537543e-06 1.471770509908765e-06 1.467806477251088e-06 1.504026009513382e-06 1.471116028994857e-06 1.466040657760459e-06 1.466940474870171e-06 1.461995665863469e-06 1.469798803555022e-06 1.44366610754787e-06 1.460400000041773e-06 1.471748355186264e-06 1.47151840224069e-06 1.478679074295997e-06 1.481231372224556e-06 1.501449439444968e-06 1.486800204730798e-06 + 4.346069207628034e-06 6.016116671503369e-06 3.567540858284701e-06 3.546870757986653e-06 3.696129994068542e-06 3.393461241785189e-06 4.144788775306552e-06 2.67658815289451e-06 3.977392083243103e-06 3.30572031259635e-06 4.581481732657267e-06 4.715423536083563e-06 5.166887842023016e-06 4.758907655499911e-06 7.811275347435753e-06 7.333520338548283e-06 1.433782538562411e-05 3.461605736276852e-06 2.568107863254454e-06 6.276394568516253e-06 3.544681373313097e-06 2.935268163639648e-06 2.2088858315783e-06 3.544990118342639e-06 1.967092643440083e-06 2.172226537311417e-06 2.114091010696484e-06 5.089552431059019e-06 4.172706201899246e-06 4.931382481032642e-06 3.38468426974714e-06 7.478795236437463e-06 9.868173981075756e-06 7.159384701083127e-06 9.440231105273256e-06 7.170160085223642e-06 7.538682780250383e-06 1.153128685871252e-05 1.541620409284405e-05 5.335786489979455e-06 3.080309571856787e-06 3.618062379473486e-06 7.152465153481558e-06 1.002363961966068e-05 2.107225833647419e-05 0.0001235575978117964 4.493954643081111e-06 7.325641211863854e-06 3.47828120794702e-06 4.606293959596997e-06 3.499588537181353e-06 3.4042947767432e-06 2.412537181584185e-06 5.838245154876631e-06 3.541344796076373e-06 3.722772305536637e-06 2.870233323903904e-06 2.026526402687523e-06 1.857790735471099e-06 1.59513000141942e-06 2.199818268877607e-06 2.646049654941862e-06 2.965509452224069e-06 3.633460089247365e-06 3.747411582821769e-06 3.877526733475634e-06 4.004820805647569e-06 3.734349043327256e-06 4.940563663069497e-06 4.855134150716367e-06 2.494218364290646e-06 2.968539149605931e-06 2.714834096195773e-06 4.518592902513774e-06 2.268074588585023e-06 6.094040799098366e-06 2.867571144093972e-06 2.44426613704718e-06 2.672195549280332e-06 3.110380433213322e-06 2.259819691374787e-06 2.888510021392676e-06 2.93934213857483e-06 6.802545158279827e-06 3.523561385776475e-06 3.011520558260372e-06 8.323153380729309e-06 3.514369893764524e-06 2.896920157979821e-06 3.002808327323692e-06 2.620380300299985e-06 3.39133205784492e-06 2.018161026740017e-06 2.905263556840509e-06 5.004733935720651e-06 4.737029911439095e-06 5.420807394074245e-06 6.03331506709992e-06 1.0959108841746e-05 7.728166941944892e-06 + 6.694028406073471e-05 0.0001055637919620267 4.60689181664975e-05 4.788185279380741e-05 5.13437809104289e-05 4.508845756845403e-05 6.152718886198727e-05 2.719970440523412e-05 5.840471749252174e-05 4.179960448880138e-05 3.975729151761698e-05 7.150538618816427e-05 7.054730511057983e-05 6.558046747251467e-05 0.0001539461947128729 0.0001416069277198062 0.0003067997617307583 2.95369290874703e-05 2.303430900951753e-05 6.767482453540197e-05 3.232814963638475e-05 2.056133912020641e-05 1.023518612441876e-05 1.248803128461873e-05 7.558788936989913e-06 7.165149533250315e-06 7.224648683745727e-06 3.132619831092143e-05 2.833388229817047e-05 3.608478613514876e-05 3.640324113618476e-05 0.000132003239786016 0.0001297328598166558 5.711755282256092e-05 0.0001461874610022562 9.440998229592878e-05 0.0001132710129212455 0.0001168259404416006 0.0004614479286360051 8.48115670599725e-05 1.686950482593375e-05 2.017980279944709e-05 9.126019784311268e-05 0.0001753940470159421 0.0002698152768445539 0.00171838335204022 5.684272696626635e-05 5.007249973409955e-05 2.795322708237791e-05 3.61544596181318e-05 2.838132140148275e-05 2.810617977289098e-05 9.074176411161261e-06 1.71412912450819e-05 1.021218069396923e-05 1.102901672922485e-05 1.035938684879056e-05 5.593126573444351e-06 4.393184639184256e-06 3.782161812182494e-06 5.008782196114225e-06 1.649064977726766e-05 2.311758782980178e-05 3.445311961058906e-05 1.102034911326655e-05 2.053760014320005e-05 4.30439557383977e-05 3.544849440828557e-05 4.075686961613201e-05 3.196591157461626e-05 1.420993191914022e-05 1.648678176024987e-05 1.624854860438063e-05 4.345519675297282e-05 1.075039207876216e-05 5.515777993636561e-05 1.626173018465238e-05 1.183139096738728e-05 1.692032957123502e-05 2.671458573644259e-05 1.046968860585196e-05 1.997280736532048e-05 2.94171187391612e-05 0.0001199674312175603 4.251404814681337e-05 2.812515277028638e-05 0.0001824559266054848 4.025140763275203e-05 3.050132934845351e-05 3.360495905724292e-05 2.435011739976289e-05 4.115922322966981e-05 9.027297508623633e-06 1.714592110602098e-05 3.48848001081592e-05 3.428320687248743e-05 5.979353377227881e-05 7.025554322837024e-05 0.0001393009210275409 8.103131152026322e-05 + 0.1979401385250981 0.3836023406303752 0.1558764631887897 0.1565393194954083 0.1691587154262777 0.1415174466307008 0.1791943700782497 0.07292285938515874 0.2025497230009421 0.1373807619573313 0.1252244910085807 0.2278508706965354 0.2026059355095136 0.1714342001377247 0.4344085168826037 0.3756352623292578 0.6025964055124025 0.07078709538144778 0.05235857151508583 0.1683750617534798 0.08563465260652592 0.05144087859510194 0.02025587831485254 0.02246745373827252 0.01463969583186042 0.01311126638299243 0.01326028275758517 0.07447461587448601 0.06984635617428125 0.08565291412061882 0.1018587364742132 0.3585945547999909 0.2764800492907895 0.1151494615410851 0.3441740058698084 0.2298013327200898 0.2968226984419182 0.2434221227054039 1.217027132024498 0.2471812519249426 0.03803704490410453 0.04594691058210998 0.2014789200289346 0.3818897577460909 0.3811734280248391 1.281637963209786 0.1398506022723165 0.09462849280412478 0.06735381778548799 0.08252636662162161 0.07234585697031726 0.07557633007471054 0.01612922578985376 0.03094613113916012 0.01760509595848347 0.01966962183021437 0.02010452792452355 0.009200246785837862 0.006334840197652625 0.004476061413768662 0.007421170824237322 0.04078020651221692 0.06638573743055076 0.1038979207879862 0.01895482199398657 0.04485816840533019 0.1212250451344303 0.1064590496821083 0.111328466549125 0.08405581197576595 0.03558681567677979 0.04477893629118057 0.0426240210037605 0.122694223256687 0.0216273908474065 0.1312043792051156 0.03829164210026903 0.02471346067170899 0.0417084487216961 0.07581309797362934 0.01986077607954151 0.05141832331747409 0.0829335875798094 0.3762725290761324 0.1237515769393021 0.07681570395196857 0.539631832773491 0.1242216378294856 0.09610008013697069 0.110676310689712 0.07495375005773042 0.1473779812559428 0.01875270095919745 0.04539766120937827 0.0922631566376495 0.09194088823674917 0.1475862917574595 0.1710534784711513 0.300554532488853 0.183898271458478 + 0.05737885560057521 0.1063836105292779 0.04333928079554994 0.04342191022946906 0.04700164320934164 0.03856977826174557 0.04881871952441941 0.02030143678382501 0.05583940173225699 0.03803786040647594 0.03498642615903691 0.06539875974972631 0.05972669696572908 0.05276784862448025 0.1372344976558537 0.1148831697537958 0.208054918514744 0.02248600305344262 0.01580764156841497 0.04986242047878164 0.02627295341831726 0.01579180167378169 0.006094782419104661 0.006064279000543848 0.004337348969528421 0.003786727810648927 0.003878637606803181 0.02131508091115109 0.02104292741563896 0.02592061369148269 0.03046896200069682 0.1132957485671877 0.08630548799404814 0.03464577505492983 0.1085940060490866 0.07042659118030059 0.09085062383181608 0.06861050657797918 0.4122258709918682 0.07426730572043283 0.01145639924947872 0.01364697219203492 0.06432853876323819 0.1277294112554568 0.1198478013178574 0.3582837262446379 0.04379692262463841 0.02804647649444725 0.02132290479549859 0.02590716554347949 0.02244176220968974 0.02302372206826675 0.004828892460668754 0.006623958523093165 0.004454576700545942 0.0048570700905195 0.005542157439677453 0.002690152859102568 0.001890414728876522 0.001397577461304422 0.002110363770377433 0.01210468490394589 0.01952617754677988 0.03044738547775694 0.004765115461704994 0.01316793335511335 0.03620961144667234 0.03120172228429396 0.03235136524808269 0.02364830247601191 0.01014247233226229 0.0121624724554863 0.01214343682812569 0.03608957741452201 0.006499170149716349 0.03895417613969698 0.0114096559610708 0.007365581830857337 0.01247276852268087 0.02263094687219436 0.006098342780097354 0.01552456044077033 0.02445829033087321 0.112133639049965 0.03629913375752025 0.02312341482841873 0.1673128258851015 0.03594966388101994 0.02712157999829401 0.03077621362548655 0.02100076806351581 0.04034759010411904 0.005513194012735312 0.01285784077428787 0.02623111480448159 0.02651966965132857 0.04498284028944965 0.05207242875383855 0.09006956504948604 0.05449473974957897 + 0.01219225096047438 0.02129317693407984 0.008922999824633848 0.008960570926703326 0.009681779242626476 0.007899962968096474 0.01001102204877213 0.004287439003263671 0.0113485646706124 0.007862660239709385 0.007389860502001966 0.01365121443618733 0.01282302808231961 0.01174086380936856 0.03038125268977332 0.02501242625965361 0.05332184368996273 0.005249666033892098 0.003582137313443923 0.01109469006221175 0.005931327355533256 0.003627537093510824 0.001430446933031959 0.001378986664420268 0.001015595121785395 0.0008845634525300738 0.0009104415844731761 0.004877854270887383 0.004837087361472925 0.006028065978586739 0.006706681268724424 0.02533614582250188 0.02052313486111856 0.008370699039012663 0.02522433538895186 0.01587884843116782 0.02019521372074706 0.01633032678715907 0.09626105781547878 0.01602231356099892 0.0026519593862524 0.003142248412114412 0.01506136063339625 0.03088309237875819 0.03429168181779385 0.1112295104710661 0.009939029508503339 0.006945466168311043 0.004980006404910142 0.006118318529370725 0.0051468621970443 0.005191550462864569 0.001151995645901849 0.001356910914878995 0.0009852144108180028 0.001055094503410459 0.001253226850622013 0.0006387052832081963 0.0004567232496555107 0.0003541224698579981 0.0005042047011016848 0.0027348246437775 0.00429750592792999 0.006591624056461853 0.001051971618021952 0.003044635364876314 0.007936330373059519 0.006756177542129649 0.007157965766850793 0.005242658630450592 0.00223670537570797 0.002585608305707865 0.002662077128036344 0.007890176810143146 0.001520870389686735 0.008875710078978472 0.00260578377674392 0.001708253991729691 0.00283093557566616 0.005013103028385757 0.001455168760044145 0.003521742233271397 0.005366515661950899 0.02380830805729772 0.007836315144274408 0.005157616909436058 0.03620413003392642 0.007666800442983401 0.005729906219507086 0.006406910989795733 0.004434639912233251 0.008214903014419406 0.001271846455821901 0.002808190452668669 0.005838391421413291 0.005903289078297291 0.0101211587255321 0.01171066452038261 0.02124064472132403 0.01247501000311502 + 0.001663355957504109 0.002637820970917915 0.001192214583980444 0.001207276193497364 0.001296917651302465 0.001069384834806897 0.001359233889374423 0.0006084401935027017 0.001488760130385458 0.001065123522522526 0.001007809287543182 0.001793439932463059 0.00171790347285139 0.001625921565116428 0.003968461304699744 0.00337825626268895 0.007719058619072072 0.0007817355508326074 0.0005378870130137159 0.001546873369719037 0.0008559433456802878 0.0005462147472279355 0.0002337757764685477 0.0002418919832365418 0.0001696135919218023 0.0001510794181669439 0.0001548503337929219 0.0007461107292741076 0.0007242725524712057 0.0009038212220175978 0.0009496581146990479 0.003357224581117535 0.002927711138470457 0.001299509585347636 0.003463800493989311 0.002182957005118169 0.002705204752402324 0.002454107972802433 0.01247005434083093 0.002134772350903091 0.000414406724605243 0.0004879458227087241 0.002134157805663506 0.004309060018355737 0.006017428087926824 0.02527472700387179 0.001407757044159297 0.001135102404179023 0.0007439237587192338 0.0009186960719258508 0.0007572077897428642 0.0007539138529146783 0.0001966104970847482 0.0002731145168830551 0.0001835110913788185 0.0001948379296017322 0.00021060250195859 0.0001125632851284308 8.298041124987776e-05 6.771096913382735e-05 9.38511878416648e-05 0.0004148631332085984 0.0006205227651321366 0.0009166712480066508 0.0001965149125702226 0.0004799319004860081 0.001104410619195306 0.000938186340079028 0.001017759512741634 0.0007719981617597682 0.0003387482708774314 0.000381454576483975 0.0003971281086450063 0.001096318552747277 0.0002470517994019872 0.001285074510409601 0.0004018827801104408 0.0002742580433157116 0.0004297457634230284 0.000721004950143822 0.0002404042087178482 0.0005266196398423517 0.0007689288566083974 0.003050426673649298 0.001089483307985972 0.0007470777571896292 0.004676402031098092 0.001053344797803391 0.0007962293823950972 0.000877043923594556 0.0006221805251414025 0.001090719540584928 0.0002068483205874827 0.0004175734920153218 0.0008543196974599709 0.0008570221999875116 0.001421911583197044 0.001633802800402151 0.003037838306678253 0.001785243810807913 + 0.0001055363912207952 0.0001416897004276052 7.559532480172493e-05 7.770177907673315e-05 8.245804055206918e-05 7.063453851685608e-05 8.946449017344094e-05 4.434828477428709e-05 9.15949040063424e-05 6.952068936527667e-05 6.275281482714945e-05 0.0001057081260071868 0.0001010828243721562 9.946656763659689e-05 0.0002091799628054503 0.0002025094408928396 0.0003696988545875968 5.426989277701466e-05 4.083142551714047e-05 9.075844186057225e-05 5.764728974355648e-05 4.03966655539989e-05 2.151508697778581e-05 2.299854093479325e-05 1.704955640491335e-05 1.577380547956864e-05 1.602362993224915e-05 5.123113202643026e-05 5.007531780520935e-05 5.986235889565705e-05 6.348588005167244e-05 0.0001784606187147375 0.0001535450382181835 8.026194938892672e-05 0.000178455155912971 0.0001215636972240475 0.0001453689613413189 0.0001285124918020131 0.0005788939333264409 0.0001240367458059666 3.279627186003609e-05 3.713497957846812e-05 0.000121047025981369 0.0002196254572712775 0.0003038078593791127 0.001256124185239571 8.862780232732348e-05 7.278031882052005e-05 5.19268332954681e-05 6.112304609828811e-05 5.222866968068729e-05 5.176509732507384e-05 1.924420158516682e-05 2.627809104183143e-05 1.938890991226572e-05 2.019015684950887e-05 2.023662234762469e-05 1.283793814366163e-05 1.041829169423636e-05 9.25180503941192e-06 1.158539811285664e-05 3.241981461243881e-05 4.39527070241752e-05 5.975545571601515e-05 2.039719167967746e-05 3.679433830328094e-05 7.036096790713486e-05 6.077411904925611e-05 6.442986821753038e-05 5.185644814531543e-05 2.762465517491819e-05 2.989061655966907e-05 3.104172353118884e-05 6.859191655195218e-05 2.236904697028308e-05 7.852287940224301e-05 3.182840315218982e-05 2.408522685470871e-05 3.336227201700126e-05 4.992285702343224e-05 2.206622956713034e-05 3.904536400156644e-05 5.346321497512463e-05 0.000162253704328208 7.136181341493852e-05 5.214714439105705e-05 0.0002524579340423827 6.824462152366095e-05 5.422106386276937e-05 5.85683121130387e-05 4.400947874216854e-05 6.931092380568771e-05 1.962773323782585e-05 3.222630941479565e-05 5.62078676793476e-05 5.633454985343178e-05 8.62105103536237e-05 9.622613041315731e-05 0.0001554468774997986 0.0001012752307048004 + 1.936202522756503e-06 1.936207709718474e-06 1.903268483260945e-06 1.908934834204956e-06 1.912505766199502e-06 1.907787691379781e-06 1.93425415773163e-06 1.879937030935253e-06 1.917960460673385e-06 1.900961251521949e-06 1.873697996757073e-06 1.920024949697563e-06 1.912577069163035e-06 1.915694936016621e-06 1.978522261580906e-06 2.025802331218074e-06 2.011709646865256e-06 1.875195362543991e-06 1.871820938248447e-06 1.898505125552674e-06 1.878375414321454e-06 1.855480867618553e-06 1.814830138613388e-06 1.805274170152416e-06 1.796307245172102e-06 1.781103840414744e-06 1.784486478584313e-06 1.857101359803437e-06 1.860593155100787e-06 1.871408649378736e-06 1.889837868418454e-06 1.953031333101762e-06 1.927526591671835e-06 1.888528153415336e-06 1.940257490673503e-06 1.918397042999231e-06 1.930659927040779e-06 1.911276417132513e-06 2.16843130473876e-06 1.931591860682147e-06 1.835957714746428e-06 1.840458175195181e-06 1.919124361648983e-06 1.959974758491967e-06 1.962470418170881e-06 2.163664520438147e-06 1.908079662271689e-06 1.88180255555892e-06 1.870986725549528e-06 1.875942352569382e-06 1.870526300962183e-06 1.870195298181443e-06 1.799954773673562e-06 1.812830742409233e-06 1.789727459566848e-06 1.792258625954446e-06 1.798124664276202e-06 1.758491549708197e-06 1.73348122700645e-06 1.724499057331741e-06 1.740322936427674e-06 1.841540868241509e-06 1.860836874811866e-06 1.878935663057746e-06 1.793865653354487e-06 1.83835619438355e-06 1.890427114403792e-06 1.879328216602971e-06 1.87558068631688e-06 1.857709612806957e-06 1.830349432907497e-06 1.827760939931977e-06 1.835644539482928e-06 1.883410476466452e-06 1.817157261996272e-06 1.888111160752715e-06 1.836017034406723e-06 1.819896990440384e-06 1.843558052883054e-06 1.870218824251424e-06 1.816574124902104e-06 1.852894197185151e-06 1.881335826681152e-06 1.946047245127147e-06 1.899556924200851e-06 1.876895382224575e-06 2.034105797577013e-06 1.893805958275152e-06 1.88349090990414e-06 1.888583071263383e-06 1.871156499078097e-06 1.89582519283249e-06 1.810231012200347e-06 1.83537498799069e-06 1.863661111656256e-06 1.865421900504316e-06 1.89875395051331e-06 1.904812165776093e-06 1.925007321545991e-06 1.902589460200943e-06 + 2.350155693164879e-06 2.218662956465778e-06 1.90242992914591e-06 1.994812393490975e-06 2.031583903772116e-06 2.012380576843498e-06 2.334387986024922e-06 1.73008017156917e-06 2.078484783396561e-06 1.902554785715438e-06 1.618081299170626e-06 2.061788300977696e-06 1.956469365183011e-06 2.021295923526623e-06 2.773770326314207e-06 3.383310373195059e-06 3.056275147628185e-06 1.661224226623403e-06 1.666285728063599e-06 1.786954364035864e-06 1.679154433276153e-06 1.545577799078046e-06 1.412293997304914e-06 1.425589928771842e-06 1.368568305792905e-06 1.357843089522248e-06 1.359908900155915e-06 1.558279691948883e-06 1.568696958997862e-06 1.613940021627513e-06 1.781160488434352e-06 2.438763852197212e-06 2.029738451980734e-06 1.690300596379757e-06 2.196603848148015e-06 1.9749030180094e-06 2.110353779727348e-06 1.816032956014624e-06 4.78531272563032e-06 2.211179435107624e-06 1.483868640406172e-06 1.503238667766027e-06 1.987067607345239e-06 2.469784766034877e-06 2.259267120052755e-06 3.483543434157355e-06 1.941749426137562e-06 1.653965563619408e-06 1.629092475141647e-06 1.642041205229816e-06 1.623147898754951e-06 1.621342256896696e-06 1.394864611370394e-06 1.458880372950944e-06 1.408376981260062e-06 1.412984367732406e-06 1.400387041883278e-06 1.32839645061722e-06 1.302511023482111e-06 1.283676724028737e-06 1.3274214154535e-06 1.485891555574881e-06 1.567709468019984e-06 1.674942346596708e-06 1.416509046947567e-06 1.499548538674844e-06 1.765052967783731e-06 1.675109558618715e-06 1.630524444351522e-06 1.557942347574226e-06 1.449071973524951e-06 1.454009520784894e-06 1.468430639306462e-06 1.689629563372819e-06 1.418647240569726e-06 1.700824480366236e-06 1.477945041017392e-06 1.429505104511009e-06 1.49351773970352e-06 1.627078088262124e-06 1.418774614236895e-06 1.532165761375381e-06 1.718539810013908e-06 2.347199465901895e-06 1.876812095957803e-06 1.682242043443694e-06 3.406378308312696e-06 1.806613212806951e-06 1.729771852865269e-06 1.771819057694302e-06 1.633254626653979e-06 1.818947268361626e-06 1.393854404341255e-06 1.472925063694674e-06 1.578918208622326e-06 1.585058789999039e-06 1.812828109848397e-06 1.857365877100392e-06 1.980671072487894e-06 1.793193664667569e-06 + 1.705019649023143e-06 1.567190381024375e-06 1.494440724059132e-06 1.55684799096889e-06 1.565759021104896e-06 1.607715148566058e-06 1.790170983895223e-06 1.490050237862306e-06 1.571387059584595e-06 1.519856411391629e-06 1.344241724154926e-06 1.527757191865931e-06 1.472703395677399e-06 1.507488621044217e-06 1.764521600833291e-06 2.076303211140385e-06 1.811976003907034e-06 1.378004254704024e-06 1.441205760954745e-06 1.407721846646837e-06 1.384489621614193e-06 1.332302595358215e-06 1.280065696107613e-06 1.279797420039586e-06 1.265787389570505e-06 1.250635961014268e-06 1.254055192134729e-06 1.322837213990624e-06 1.326836905235496e-06 1.3424643476867e-06 1.436309638336297e-06 1.640737442798468e-06 1.48763859186829e-06 1.369350972169059e-06 1.541596631682296e-06 1.469160615386045e-06 1.513873023384349e-06 1.417670929981796e-06 2.280345782423865e-06 1.577271252273249e-06 1.301284136445702e-06 1.306611004281422e-06 1.474580697546912e-06 1.640502338418059e-06 1.557790457518138e-06 1.83643202333883e-06 1.478507845931176e-06 1.356370466609746e-06 1.362482572986323e-06 1.356629510951279e-06 1.359202334683118e-06 1.360239185288492e-06 1.268351308425508e-06 1.298417465989132e-06 1.270134870168249e-06 1.272194868562337e-06 1.266631642238281e-06 1.234730405030859e-06 1.222164030423301e-06 1.215640864415946e-06 1.231892284181413e-06 1.3072435827155e-06 1.344158746974244e-06 1.38096611834726e-06 1.2745788140478e-06 1.30615175208959e-06 1.413011872841707e-06 1.379334555906553e-06 1.348646939902665e-06 1.321180683078182e-06 1.290922938324002e-06 1.288184705572348e-06 1.296350603752217e-06 1.377270237412631e-06 1.281825614540821e-06 1.375017298244074e-06 1.29985751584627e-06 1.283883548808262e-06 1.310819854438705e-06 1.370963797597824e-06 1.282471432162424e-06 1.326200166573699e-06 1.429075449976835e-06 1.608980397804771e-06 1.481980259399052e-06 1.402858455179512e-06 2.005534504689876e-06 1.443576927329104e-06 1.442727722178461e-06 1.461116212908564e-06 1.405298419854262e-06 1.456534690191802e-06 1.27745454392425e-06 1.296279364737529e-06 1.327777120252449e-06 1.330395633658554e-06 1.419846928030211e-06 1.43281944886553e-06 1.472511609534877e-06 1.408894505061653e-06 + 1.570032910791497e-06 1.544657507679403e-06 1.453124980344001e-06 1.476949435641473e-06 1.484765945747313e-06 1.487212159645424e-06 1.576752637788559e-06 1.428009042570011e-06 1.493401896368596e-06 1.456091553109218e-06 1.378665658080536e-06 1.503811731140559e-06 1.491281430787694e-06 1.508750784751101e-06 1.715659569967443e-06 1.825732727667173e-06 1.904888934589621e-06 1.400503229831429e-06 1.409949641484332e-06 1.474846463622725e-06 1.40294622852366e-06 1.339762672358802e-06 1.262454201622631e-06 1.278546900351785e-06 1.23395847140273e-06 1.224069954730567e-06 1.226779239971165e-06 1.360526361793291e-06 1.359091005070923e-06 1.393194434484712e-06 1.429187499013551e-06 1.646585568337855e-06 1.599374439109624e-06 1.469117334451653e-06 1.629249807066913e-06 1.541338455979258e-06 1.575024988653695e-06 1.552560252804369e-06 2.183572480163321e-06 1.551362494467412e-06 1.301427172251124e-06 1.317060092986821e-06 1.554064072095684e-06 1.709826861429065e-06 1.820172738753456e-06 3.601445229151068e-06 1.490080308030883e-06 1.458959989264486e-06 1.387687705189933e-06 1.407489792271122e-06 1.382630763657744e-06 1.378495756654274e-06 1.251542144586892e-06 1.325912066363344e-06 1.266091388174573e-06 1.269760840472145e-06 1.252967940956751e-06 1.1980129386302e-06 1.175444751311261e-06 1.163971560913524e-06 1.195696206934826e-06 1.302566978722552e-06 1.348167401715727e-06 1.396305712830781e-06 1.27420445039661e-06 1.319408241329256e-06 1.431032252696696e-06 1.397691868021411e-06 1.394460952042209e-06 1.352537644550011e-06 1.278220622680237e-06 1.275818959811659e-06 1.287124860027689e-06 1.414328174575985e-06 1.265709915543312e-06 1.446727960541239e-06 1.295746557161692e-06 1.270077735426867e-06 1.307771842817829e-06 1.376825739640708e-06 1.267297390583622e-06 1.330481723016419e-06 1.410927289668962e-06 1.599900041782121e-06 1.454126365985076e-06 1.398621144232948e-06 1.834665269484503e-06 1.432286119040782e-06 1.412797679734012e-06 1.423359961449933e-06 1.382991115406185e-06 1.428760739941026e-06 1.250992056611722e-06 1.28832108714505e-06 1.366277203374011e-06 1.368005385415927e-06 1.470028369254806e-06 1.492456814133902e-06 1.594065643928388e-06 1.50476128268906e-06 + 1.36519403426405e-06 1.357293157866479e-06 1.314487334980186e-06 1.326853180216858e-06 1.331066798115899e-06 1.326460719042188e-06 1.352811722199476e-06 1.29528733339157e-06 1.335504549615507e-06 1.315721448236218e-06 1.232927502314851e-06 1.339142642109437e-06 1.325342658731188e-06 1.339156806778874e-06 1.418341298631276e-06 1.444600924216388e-06 1.464830825526064e-06 1.263884065849652e-06 1.287939777938618e-06 1.286015368862081e-06 1.267816205796635e-06 1.224822788969959e-06 1.169077087581627e-06 1.151891993345089e-06 1.151645179220395e-06 1.136790501732321e-06 1.140086496320691e-06 1.203254733184167e-06 1.214423519968477e-06 1.22952938141907e-06 1.297294176083597e-06 1.39271518584394e-06 1.344053369933818e-06 1.25147709084672e-06 1.370409869139166e-06 1.330075242833573e-06 1.353265627557221e-06 1.293533433255334e-06 1.540752073481144e-06 1.361407800715142e-06 1.187715373163201e-06 1.189081057617614e-06 1.334757348203652e-06 1.407220191040892e-06 1.411800324646606e-06 1.932169555018959e-06 1.327469009382298e-06 1.234733247201802e-06 1.251298542115364e-06 1.244604939998339e-06 1.248143211896036e-06 1.248639321715928e-06 1.153093094785618e-06 1.154982790296799e-06 1.142208095217256e-06 1.143226981525913e-06 1.147186907246578e-06 1.122144851706253e-06 1.110726543629426e-06 1.108307259301e-06 1.116928196154277e-06 1.20012109050549e-06 1.234531403326855e-06 1.263824017883053e-06 1.14461461109272e-06 1.184859620195766e-06 1.287710055919433e-06 1.262766389231729e-06 1.236484834521434e-06 1.204132395571378e-06 1.181446819487064e-06 1.17335980576172e-06 1.186793312513146e-06 1.261820443687611e-06 1.171043653158677e-06 1.258946603854838e-06 1.188912701621803e-06 1.172249298520001e-06 1.203939063998405e-06 1.256172271979494e-06 1.171976922620388e-06 1.218958367132927e-06 1.288610963712244e-06 1.377483577869043e-06 1.314635440508027e-06 1.277375762498423e-06 1.45177358135129e-06 1.299613387573118e-06 1.289994592923449e-06 1.296582254894929e-06 1.26946862621935e-06 1.29974549167855e-06 1.165116131573996e-06 1.184752491667496e-06 1.212717712917311e-06 1.217281351273414e-06 1.295735373219031e-06 1.305379665694772e-06 1.334043471246105e-06 1.28665734422384e-06 + 1.305716359922826e-06 1.312562602606704e-06 1.265768801772538e-06 1.273074545338204e-06 1.277050515113842e-06 1.270945915621269e-06 1.292074998104908e-06 1.249655838364561e-06 1.28201999416433e-06 1.264301886294561e-06 1.22314777684096e-06 1.292658687646053e-06 1.286627899332871e-06 1.296399270600546e-06 1.383785177111463e-06 1.397295681826449e-06 1.45959138997398e-06 1.238586882834625e-06 1.247081019783991e-06 1.264797308664356e-06 1.240334960073142e-06 1.212818180107433e-06 1.182857527481929e-06 1.177850382561019e-06 1.170961155594341e-06 1.161177245023737e-06 1.163221682531912e-06 1.210497224235496e-06 1.213444114966933e-06 1.226176006952073e-06 1.256856254627792e-06 1.359350415341964e-06 1.326966160064558e-06 1.24945601420734e-06 1.350463332272511e-06 1.302647941514579e-06 1.32421054033216e-06 1.286825664692515e-06 1.551816925626781e-06 1.315233095766644e-06 1.194479686716932e-06 1.197226900728765e-06 1.308756118589827e-06 1.389671485441113e-06 1.410181464045479e-06 1.702208932030658e-06 1.287065211741378e-06 1.240399866375697e-06 1.231222135800181e-06 1.234185887710737e-06 1.228909281891788e-06 1.228083974069705e-06 1.174071861953507e-06 1.188313238031924e-06 1.172650101466388e-06 1.173602655057948e-06 1.171855529946697e-06 1.149345436601834e-06 1.140160406976065e-06 1.136226600806367e-06 1.148220668767408e-06 1.198809023605918e-06 1.217319720581145e-06 1.237017031030518e-06 1.174856404162483e-06 1.196201392161811e-06 1.254572453035507e-06 1.236962404504993e-06 1.228570560840581e-06 1.20906593537029e-06 1.189349276842222e-06 1.185992232421995e-06 1.192222569557089e-06 1.241105394456099e-06 1.184058401548782e-06 1.24815405655454e-06 1.194150559769014e-06 1.185037888262741e-06 1.200823604108336e-06 1.230415488606695e-06 1.184619918603858e-06 1.209213483122085e-06 1.248423711075475e-06 1.338085493074459e-06 1.267960808348789e-06 1.242708965065731e-06 1.415811876626094e-06 1.257903385010195e-06 1.247758675049226e-06 1.251429608828403e-06 1.236022555417549e-06 1.254951669693583e-06 1.179655583882777e-06 1.191642752473854e-06 1.21478800707564e-06 1.21645648221147e-06 1.268192981740413e-06 1.277824402734495e-06 1.319463116544739e-06 1.27153522200274e-06 + 1.696137296391953e-06 1.778430672061404e-06 1.610244908079039e-06 1.604057985105101e-06 1.619679537157026e-06 1.565982230999907e-06 1.612109514326221e-06 1.506030017139892e-06 1.643133089146431e-06 1.580788051569471e-06 1.650464753311098e-06 1.712961328337315e-06 1.739359454688838e-06 1.742589383013637e-06 2.017909338292156e-06 1.948884932545525e-06 2.460662106074096e-06 1.634900295144348e-06 1.525440836758207e-06 1.784034733276485e-06 1.630181671430364e-06 1.567258912871239e-06 1.456285268375268e-06 1.584160461476358e-06 1.402893389013116e-06 1.418655749318987e-06 1.415218015665687e-06 1.678620520806362e-06 1.651443835015698e-06 1.696531462869189e-06 1.617178334356595e-06 1.960917828114361e-06 2.030344628423109e-06 1.843221273389872e-06 2.032610639801646e-06 1.875355071234708e-06 1.906233062953788e-06 2.02047836594943e-06 2.709267388212311e-06 1.780892354474872e-06 1.565158033400849e-06 1.608167263356108e-06 1.902252346752675e-06 2.142938459570587e-06 2.501208745009365e-06 6.564588035828933e-06 1.726975359161997e-06 1.849826590571979e-06 1.631689736214526e-06 1.698533621308229e-06 1.625299111296385e-06 1.611627759245948e-06 1.476253707721753e-06 1.694691512454938e-06 1.572301158603295e-06 1.580629291453306e-06 1.507573621495339e-06 1.382482622602765e-06 1.344686737070333e-06 1.301323550251254e-06 1.404604425658817e-06 1.518628177876735e-06 1.558968065751287e-06 1.619668346108938e-06 1.589805265211908e-06 1.62365367728512e-06 1.659869447223628e-06 1.626535407694973e-06 1.682576694861382e-06 1.659258472841429e-06 1.481793717061919e-06 1.514448314310357e-06 1.508630020907731e-06 1.675075267826287e-06 1.464998184985689e-06 1.764146844607239e-06 1.540391345145053e-06 1.486052639165791e-06 1.525192814710863e-06 1.582297763036422e-06 1.470584745533188e-06 1.555683468268398e-06 1.568051345657295e-06 1.871583048540515e-06 1.625725911225118e-06 1.580763949959874e-06 2.063001030450096e-06 1.617332877401623e-06 1.548138882867534e-06 1.554171362272427e-06 1.513315979195795e-06 1.588689301001978e-06 1.417897564692794e-06 1.525805316759943e-06 1.671115327894768e-06 1.664796954514713e-06 1.752484450889824e-06 1.792549181089953e-06 2.044725995631325e-06 1.873558588272317e-06 + 2.274711821570463e-06 2.727013182379778e-06 2.079679831012982e-06 2.040784593759781e-06 2.089519085757274e-06 1.921875053767508e-06 1.98646618798648e-06 1.791785081195485e-06 2.173695918372687e-06 1.977543874431831e-06 2.319895159530461e-06 2.47815422937947e-06 2.619514003043832e-06 2.595455441678496e-06 3.287817152752837e-06 2.866982233840076e-06 4.678327041318653e-06 2.212435072479479e-06 1.838430616629694e-06 2.815628235453005e-06 2.195754873923761e-06 1.983984624587265e-06 1.709471874278279e-06 2.086875046103387e-06 1.598340276132149e-06 1.643162939046761e-06 1.634851855669694e-06 2.453690846948575e-06 2.319937561168217e-06 2.508650577937033e-06 2.117534698697909e-06 3.240822227468243e-06 3.635038970273285e-06 3.019420761418701e-06 3.575475510331216e-06 3.096030646076997e-06 3.175560518542397e-06 3.69709630732018e-06 4.516657416075986e-06 2.707514578759174e-06 1.996564197526141e-06 2.154807479115561e-06 3.180624071674742e-06 3.803811038594063e-06 6.005802321240594e-06 3.729950354092182e-05 2.545438240630915e-06 3.048674590999667e-06 2.207296148526439e-06 2.503850085489034e-06 2.185601928772485e-06 2.132352118877634e-06 1.755426282556982e-06 2.513813228688377e-06 2.050347379878303e-06 2.081372713291785e-06 1.835014863615925e-06 1.586449258184075e-06 1.513793137064567e-06 1.412427110381032e-06 1.630065078472853e-06 1.853089884207293e-06 1.954723671815373e-06 2.161854837368082e-06 2.11252416448815e-06 2.221683750747161e-06 2.314305515227488e-06 2.19159269931879e-06 2.452723698809223e-06 2.372209635836953e-06 1.764846913943074e-06 1.846810647521124e-06 1.829190836133421e-06 2.40594658862392e-06 1.728477940332596e-06 2.756235179646183e-06 1.917285313624006e-06 1.775884179266995e-06 1.869401568654894e-06 2.020015415382659e-06 1.741231617558014e-06 1.95080993847796e-06 1.953255047482116e-06 3.004332896239248e-06 2.132521007780497e-06 2.000519700118275e-06 3.231658617153244e-06 2.120335246047489e-06 1.896955971858461e-06 1.910931800352955e-06 1.817841308593415e-06 2.017489563854724e-06 1.624578118253339e-06 1.876328326488874e-06 2.417807053234355e-06 2.385297548812559e-06 2.696718937045262e-06 2.834926039696484e-06 3.724781151959178e-06 3.10701856420792e-06 + 1.9338045156303e-06 2.285604111307293e-06 1.784300550866647e-06 1.76620858383103e-06 1.798422346155348e-06 1.692824724841557e-06 1.745808972941632e-06 1.595073584326201e-06 1.85395852270176e-06 1.722004668636146e-06 1.906941534457474e-06 2.065509050908076e-06 2.165328112369025e-06 2.14731122660794e-06 2.74795995203192e-06 2.476632797510092e-06 3.574308903964152e-06 1.842987703781773e-06 1.622776983012386e-06 2.274253546374894e-06 1.834811122591873e-06 1.698502217095665e-06 1.529320893922659e-06 1.725395527785167e-06 1.453861898426112e-06 1.485156111868946e-06 1.479414542870927e-06 1.986347484717044e-06 1.894609852115536e-06 2.030440462874594e-06 1.799336477148472e-06 2.675372073213111e-06 2.789272915748597e-06 2.338374438082269e-06 2.816175104669583e-06 2.497506255139115e-06 2.581811003210532e-06 2.697775492777055e-06 3.962427832959747e-06 2.255079738944232e-06 1.69627541168893e-06 1.781734614070274e-06 2.546960491400796e-06 2.990407267589035e-06 3.527215971743658e-06 6.148025246233146e-06 2.100135532145941e-06 2.32983084380578e-06 1.835160521324042e-06 2.029352227594927e-06 1.821112466160457e-06 1.789516932859669e-06 1.556546301628714e-06 1.976446711182689e-06 1.699300277380189e-06 1.715912329558478e-06 1.598586258921841e-06 1.450055364671243e-06 1.404060398613183e-06 1.339431264568702e-06 1.477527078463936e-06 1.621524742034808e-06 1.683561670517975e-06 1.812838256398663e-06 1.733037276352434e-06 1.819726200835703e-06 1.920424228529782e-06 1.83088501870543e-06 1.999660938167835e-06 1.932025419648653e-06 1.567917308875622e-06 1.613309336789825e-06 1.606431140999121e-06 1.974534598048194e-06 1.542135787957477e-06 2.211992271128338e-06 1.655016461654668e-06 1.572549454209593e-06 1.631221074660516e-06 1.726068756369159e-06 1.549763950947636e-06 1.678827263873472e-06 1.696306394904923e-06 2.509123710581207e-06 1.816556750355858e-06 1.721084839090281e-06 2.786753768191375e-06 1.802342723067341e-06 1.662378593891845e-06 1.673188990025665e-06 1.608683163567548e-06 1.739284655855045e-06 1.471704251798656e-06 1.631918877365024e-06 1.967219525056407e-06 1.944570961143199e-06 2.19794373990112e-06 2.302424100264489e-06 2.808528545727995e-06 2.435341354356524e-06 + 1.382385953263565e-06 1.386047998153117e-06 1.374342517124205e-06 1.374967396827742e-06 1.376011638853925e-06 1.373720834862979e-06 1.378836387289084e-06 1.368047364280756e-06 1.377517861556043e-06 1.373011784266964e-06 1.371979706732418e-06 1.381618446316679e-06 1.382595133492259e-06 1.382971111851816e-06 1.39593476689015e-06 1.401615575602477e-06 1.403065439831153e-06 1.372133798582809e-06 1.36800823291594e-06 1.383341160732243e-06 1.372409482058856e-06 1.363518588703982e-06 1.343530243502755e-06 1.342145004912254e-06 1.333977493800376e-06 1.328577511117146e-06 1.329553839468645e-06 1.365954325649454e-06 1.367190108680916e-06 1.372958710277317e-06 1.373448505148644e-06 1.392561895130484e-06 1.391534635075686e-06 1.381176327086564e-06 1.39240954766251e-06 1.387847522238417e-06 1.389439663768144e-06 1.389030227727517e-06 1.418101557959517e-06 1.386030916705749e-06 1.354223012839384e-06 1.357059812079342e-06 1.388575537220049e-06 1.395666760828362e-06 1.399807425528365e-06 1.419369169752827e-06 1.381510845277489e-06 1.377986654560459e-06 1.370909647135932e-06 1.374923302321918e-06 1.370394267397046e-06 1.369643079840444e-06 1.33685059111599e-06 1.347070138990603e-06 1.335865054130636e-06 1.33718673112071e-06 1.336716792366133e-06 1.319765345897395e-06 1.307987943732769e-06 1.303814244124624e-06 1.31186857998955e-06 1.356149315512312e-06 1.364633234857138e-06 1.371810157024811e-06 1.337960458869247e-06 1.356373701355551e-06 1.375877655362956e-06 1.372263383814243e-06 1.374011112886819e-06 1.365742370751377e-06 1.349615502022061e-06 1.347624788650137e-06 1.352271013388417e-06 1.375819273619072e-06 1.344527007063334e-06 1.380517549165461e-06 1.353685483707068e-06 1.345432263377688e-06 1.357307485960746e-06 1.368288970127196e-06 1.344756013210713e-06 1.361991035508936e-06 1.370029398373163e-06 1.389984408461942e-06 1.375088814370429e-06 1.369768554582151e-06 1.402699325581125e-06 1.373746712829416e-06 1.369240479220935e-06 1.370145213286378e-06 1.365422349408618e-06 1.372189728954254e-06 1.34114836214394e-06 1.35222322228401e-06 1.368730949025121e-06 1.369386467331424e-06 1.382146706419007e-06 1.384380766467075e-06 1.391536940786864e-06 1.385774712758803e-06 + 3.482385203312788e-06 3.846014209329951e-06 2.913374984814254e-06 2.957754745125385e-06 3.030928198199945e-06 2.847985214771143e-06 3.161302785770204e-06 2.473337218589222e-06 3.144615291716946e-06 2.826820164614219e-06 2.673837116162758e-06 3.391751633330387e-06 3.387433782364724e-06 3.437234962433422e-06 5.369305862146234e-06 5.555253654421222e-06 8.160277021218576e-06 2.700677642408778e-06 2.467538097405964e-06 3.295262644087416e-06 2.720697303004727e-06 2.418010687676997e-06 2.01025339308103e-06 2.110162999002796e-06 1.839323118701941e-06 1.835998524768456e-06 1.836374579511357e-06 2.55181493002965e-06 2.546861448848858e-06 2.714217551158526e-06 2.811024000237694e-06 4.79345458437308e-06 4.586962129238259e-06 3.132601609223684e-06 4.853426988304932e-06 3.90462840371697e-06 4.230568279695035e-06 4.065103304640161e-06 1.201896749947196e-05 3.779127862202358e-06 2.278742567085601e-06 2.34763243511793e-06 3.987646120862109e-06 5.624785607949434e-06 6.832012632074225e-06 1.756480926928816e-05 3.29375388474773e-06 3.002093867721101e-06 2.645576477888767e-06 2.784151973855842e-06 2.626973040875669e-06 2.60235886173632e-06 1.982507246367504e-06 2.196242476770749e-06 2.008614977455636e-06 2.026260954579584e-06 2.018328579822537e-06 1.735176937245342e-06 1.629197328156806e-06 1.538471067874525e-06 1.717736431317007e-06 2.260441075208064e-06 2.446087798091412e-06 2.698004955448141e-06 2.038623581057664e-06 2.350746992618724e-06 2.908895162079261e-06 2.713584599689511e-06 2.74742897232727e-06 2.53195489818836e-06 2.141632705843222e-06 2.179673487034961e-06 2.214161341385079e-06 2.849205166910451e-06 2.038119578884334e-06 3.05140009970728e-06 2.254272690294101e-06 2.090814213318026e-06 2.281754742483599e-06 2.560010521790446e-06 2.043144284868958e-06 2.383464714483807e-06 2.631546870190959e-06 4.354373132287037e-06 2.92690434022802e-06 2.619780286039486e-06 6.234251966219517e-06 2.842293270077789e-06 2.601518204414788e-06 2.654756798392555e-06 2.432730042301046e-06 2.784878674333413e-06 1.91618408962313e-06 2.234954962432312e-06 2.598578213053315e-06 2.606963718676525e-06 3.235240228605107e-06 3.429521456155271e-06 4.603349150755776e-06 3.549486848442029e-06 + 8.122429061785397e-06 8.013158549147192e-06 5.674296360780318e-06 6.032471432604325e-06 6.258288351546071e-06 6.008028776705032e-06 7.853994702600176e-06 4.537900693435404e-06 6.593492543061075e-06 5.549122448655908e-06 4.412555057342615e-06 6.871080401538165e-06 6.427337837067171e-06 6.703409280106598e-06 1.178763002940286e-05 1.637284940514405e-05 1.464375792359363e-05 4.532170144955217e-06 4.286615041593222e-06 5.650189148553864e-06 4.645129180858021e-06 3.754423012480856e-06 2.790653237383367e-06 2.86963480178315e-06 2.466205685891509e-06 2.385648095071247e-06 2.400118553680386e-06 3.877789247042074e-06 3.965211462286788e-06 4.306973497847366e-06 5.098629141997435e-06 9.650131865157618e-06 7.439509031925695e-06 4.875090976241836e-06 8.421970862926287e-06 6.846280736994004e-06 7.680447229319043e-06 6.086507436720012e-06 2.850777773133473e-05 7.84104045692402e-06 3.324090396716883e-06 3.47428577640585e-06 6.911898996264654e-06 1.02511236210745e-05 9.544317580711947e-06 1.861034501970948e-05 6.231355184738163e-06 4.498104445360696e-06 4.35031979861833e-06 4.522800184147968e-06 4.319487047155235e-06 4.291082490226472e-06 2.66143302241062e-06 2.971661782424917e-06 2.632765198740117e-06 2.675749509961634e-06 2.709268407841137e-06 2.178037959765788e-06 2.009494224353148e-06 1.92767235773772e-06 2.099352741424809e-06 3.351615234237215e-06 3.896821382909366e-06 4.635499387006803e-06 2.69410190512076e-06 3.455626888637653e-06 5.201162963430761e-06 4.661149624496375e-06 4.482076825240711e-06 3.897506246630655e-06 3.093488899708063e-06 3.14958913349983e-06 3.240717816765937e-06 4.876207711390634e-06 2.842751534615218e-06 5.026126242313467e-06 3.28827035644963e-06 2.932738311756111e-06 3.402325198464951e-06 4.250993306698092e-06 2.841054548952116e-06 3.667645085414506e-06 4.64881591710764e-06 8.955838151081252e-06 5.580975560803836e-06 4.502159391961413e-06 1.652395853923849e-05 5.248356359288664e-06 4.670737382639345e-06 4.887287161636777e-06 4.127677883047909e-06 5.228860189276929e-06 2.647309003123155e-06 3.272643837703981e-06 4.053511979407176e-06 4.109411442243527e-06 5.698678680943203e-06 6.033653903614322e-06 7.243778313181792e-06 5.799029210606932e-06 + 1.12469332584908e-05 8.329591622668886e-06 6.946519661710227e-06 8.072776850553964e-06 8.258471851263494e-06 9.081473095307047e-06 1.356706479782588e-05 6.581648065662193e-06 8.42682145218987e-06 7.362966599089305e-06 4.256928022527973e-06 7.469943128057821e-06 6.262016857050412e-06 6.840539819918945e-06 1.20928174531798e-05 2.400648534184313e-05 1.232101461212665e-05 4.636321740747462e-06 5.696009663935797e-06 4.918591020697249e-06 4.79547849963069e-06 4.06040237166394e-06 3.323267616650583e-06 2.901336817018318e-06 3.157566297318226e-06 2.896838566357474e-06 2.946977694762154e-06 3.577464482873438e-06 3.795433489273137e-06 3.97237085536517e-06 5.726074778777956e-06 9.196857586601936e-06 5.896921265957644e-06 4.106425471661623e-06 7.030780805550307e-06 5.846041961632409e-06 6.73535999240471e-06 4.681447364873748e-06 3.266554167069557e-05 8.240739592935142e-06 3.44480785585688e-06 3.424999629686454e-06 5.840222682351737e-06 8.763423196000986e-06 6.497953015660585e-06 1.111972580858378e-05 6.268659429764512e-06 3.808550554040835e-06 4.413162983496477e-06 4.198762381335541e-06 4.401667892395267e-06 4.457988705297566e-06 3.02045859257305e-06 2.777865745429153e-06 2.735573016110493e-06 2.751231725994785e-06 2.937028270366682e-06 2.701592421772148e-06 2.517213886221725e-06 2.498971582554077e-06 2.506092499743318e-06 3.746172680507698e-06 4.308418191101282e-06 4.825232075233998e-06 2.752640991587896e-06 3.341097116305036e-06 5.267116939933203e-06 4.792732724467896e-06 4.190113976676457e-06 3.651622868972026e-06 3.544555283951922e-06 3.376362343487926e-06 3.584117919785967e-06 4.673988613035363e-06 3.337823340388013e-06 4.408933303778895e-06 3.512932753579889e-06 3.320027822439897e-06 3.791065662284154e-06 4.667247821998899e-06 3.316577197765014e-06 3.998131969495944e-06 5.632076348405235e-06 8.851933610998231e-06 6.573537731924262e-06 5.154749114666402e-06 2.085114605421268e-05 5.932427548316355e-06 5.945942319840469e-06 6.298967520024235e-06 5.313185994282321e-06 6.30579879157267e-06 3.373764613456842e-06 3.521002838624554e-06 3.778385348596203e-06 3.868987541011393e-06 5.151775354761412e-06 5.304320112031746e-06 5.611050191589584e-06 4.778687525686109e-06 + 1.755820716908829e-05 2.472506702133614e-05 1.303436171440353e-05 1.333803750469542e-05 1.407783000217933e-05 1.299263099951986e-05 1.763919107133916e-05 8.994081014179756e-06 1.550585839993346e-05 1.202886686257898e-05 1.454260531374985e-05 1.828836210648888e-05 1.910735372590011e-05 1.771604132549953e-05 3.323268681398872e-05 3.428010842831952e-05 5.990905540187441e-05 1.087395838794691e-05 8.061536616921217e-06 2.10895768049113e-05 1.140824341305802e-05 8.658439547559738e-06 5.555823552327865e-06 8.339253838585137e-06 4.72477294977125e-06 4.965658185085431e-06 4.88501069639824e-06 1.446304834473722e-05 1.228450505053047e-05 1.472546697911525e-05 1.144735244551498e-05 3.037500776414959e-05 3.542548314428018e-05 2.166706416062425e-05 3.593072846896916e-05 2.614528346711609e-05 2.885765824345299e-05 3.724402649396552e-05 8.166507927498401e-05 2.112169357459948e-05 8.357939339731502e-06 9.97272802649718e-06 2.584455225118631e-05 3.955542342026774e-05 7.031550153868693e-05 0.0004224266323387127 1.614322567355941e-05 2.108643139031585e-05 1.075258959204461e-05 1.404994817733041e-05 1.087571786406727e-05 1.064871285549884e-05 5.69349959533838e-06 1.31280121777877e-05 7.812648888716467e-06 8.287221348268758e-06 6.731506182688918e-06 4.352228913262479e-06 3.671046371778175e-06 3.010701121297643e-06 4.411013591720803e-06 7.444661825672938e-06 9.086227535703983e-06 1.190249523119746e-05 8.338268287388928e-06 1.052700755366232e-05 1.359205868922686e-05 1.223882862433356e-05 1.531510773844502e-05 1.410671752211101e-05 6.768211548546788e-06 8.016225621076956e-06 7.526024347725979e-06 1.474480686880497e-05 5.748329705568267e-06 1.92481368408437e-05 7.832374258498476e-06 6.25558394062864e-06 7.567150387188804e-06 9.818178195786231e-06 5.672626750552467e-06 8.480314900083386e-06 9.656255393508673e-06 2.786952386912844e-05 1.247031807949384e-05 9.68387761091094e-06 3.910722567468383e-05 1.220428656267813e-05 9.75833427219186e-06 1.036423989830837e-05 8.504717996515865e-06 1.206793535857287e-05 5.066153818233943e-06 8.034468976347853e-06 1.476868434480139e-05 1.417032317618805e-05 1.843580534810485e-05 2.096047053612438e-05 3.854664717550804e-05 2.56811717065375e-05 + 2.194374694397538e-06 2.379971348887011e-06 2.172923402099514e-06 2.162133597494176e-06 2.17246278566563e-06 2.14161805445201e-06 2.159726918193883e-06 2.107377000015731e-06 2.195902524704252e-06 2.149417483110483e-06 2.2516868511957e-06 2.259620067945889e-06 2.292885405097422e-06 2.251413521392465e-06 2.491240165269915e-06 2.329611255902364e-06 3.157164352174391e-06 2.162030002139659e-06 2.102299186290679e-06 2.369511499011878e-06 2.171014841678698e-06 2.133725249819918e-06 2.094246791983778e-06 2.159576290239329e-06 2.08321620220886e-06 2.093008518500028e-06 2.090236826290948e-06 2.266124795369251e-06 2.208448453444589e-06 2.254893313846651e-06 2.159052016281748e-06 2.476425754238676e-06 2.681034134255356e-06 2.410919226036867e-06 2.660241456453605e-06 2.450897916617123e-06 2.493785995483222e-06 2.828339304983274e-06 3.247963423547162e-06 2.297597287537201e-06 2.14046999857942e-06 2.172005874712113e-06 2.436187756416075e-06 2.697066090462386e-06 3.79833645336447e-06 1.649702398331954e-05 2.229963241617838e-06 2.411824917558647e-06 2.163640369090558e-06 2.231356999615741e-06 2.167210817916043e-06 2.163164694479747e-06 2.10225558916477e-06 2.293096191152699e-06 2.157101135935591e-06 2.168494297904999e-06 2.126254571521713e-06 2.085375058413774e-06 2.075555471492407e-06 2.058715296016089e-06 2.091437103501903e-06 2.119163177383143e-06 2.13908933943685e-06 2.182386602100905e-06 2.168387240431002e-06 2.18602525947631e-06 2.204806722971853e-06 2.189273949682047e-06 2.266467063805067e-06 2.25817657906191e-06 2.112744084570295e-06 2.140903120562143e-06 2.125233351080169e-06 2.240701242328669e-06 2.097244248489005e-06 2.344661563569161e-06 2.130120886789655e-06 2.106427626102914e-06 2.120219559031966e-06 2.146113484258194e-06 2.095587044337321e-06 2.132272378219113e-06 2.130537829714285e-06 2.432849505851209e-06 2.165626579397895e-06 2.136683900033631e-06 2.472532433017705e-06 2.171015800911391e-06 2.129208432677387e-06 2.135290344540408e-06 2.11590386811622e-06 2.166137491599329e-06 2.08598878259636e-06 2.135943020675768e-06 2.268268424643338e-06 2.250777008327987e-06 2.300059794180243e-06 2.349670449319774e-06 2.792929791439747e-06 2.484890366361014e-06 + 0.3085395024436721 0.6025396095974145 0.2452442185299901 0.2473276349430193 0.2670720027396669 0.2266302193652621 0.2910976009274435 0.1153290749342091 0.3207102355931823 0.2170008370543854 0.1936745293466089 0.3558515573466323 0.3125216106125279 0.2618463618440181 0.6551873392572851 0.5651706746008394 0.8902473361375112 0.1070279393337881 0.08026156543527563 0.2551845054652873 0.1305813106868428 0.07863140772806432 0.03125189250088667 0.03287647919924908 0.02268920806523056 0.01985335173375802 0.02018553647662458 0.1124505480362998 0.106267192894844 0.1296260065315771 0.1564133729903041 0.541710746721721 0.4116052725692274 0.1704813092672453 0.5171527966038898 0.3468335524121109 0.4502660813471024 0.3583697156280188 1.837445110386088 0.3797256626551366 0.05796560745344337 0.06971217203103919 0.3011739572704286 0.5689089180036948 0.5414636606623269 1.682452295845009 0.2125166953551219 0.1388109934844426 0.1019846990471436 0.1245574096552851 0.110072575606722 0.1154714109181896 0.02436783745822169 0.04322389714718966 0.02526504138796071 0.02821847134835309 0.03001560057943919 0.01376394235983014 0.009402299730282948 0.006727812732094662 0.01080816753086111 0.06299109170119976 0.1024586218425085 0.1601613171646861 0.02715861679411447 0.06767084674087442 0.1862521815001692 0.1640760124835836 0.1703007781036092 0.1280747573110546 0.05544787064195589 0.06931715421674767 0.06619521765544789 0.1883496715626407 0.03333973845100502 0.1979981678513347 0.05872863183811816 0.03797840609046332 0.06430695926248475 0.1164233701207742 0.03047029444912219 0.0789398045611982 0.1279224397271754 0.5779617191904158 0.1913981461127321 0.1176807556824997 0.8143711438594465 0.1926788953228211 0.1505181148679 0.1742523041776849 0.1177924937704518 0.2324754454714366 0.02930406327131152 0.07025402248567048 0.1406477977738874 0.1404808836305023 0.2240265414716589 0.2589554357822728 0.4472926564266544 0.2752782459237331 + 0.09677635814725249 0.1797345049898951 0.0729182041129377 0.07369378533705628 0.07971476443070458 0.06667906441828109 0.08678870265296723 0.03439965760233576 0.09491477225402889 0.0644093743658658 0.05749148161621065 0.1094640075539957 0.09869460407102437 0.08636400162150082 0.2240689319055793 0.1890607221231182 0.3405323322065836 0.03603379246512262 0.02583645327834994 0.08111736925009794 0.04247716412876201 0.0255353250102317 0.009918797915304367 0.009527603413822305 0.007065086859014968 0.006044961443357977 0.006217811820896202 0.03454878327718802 0.03407568904983194 0.0418858545627856 0.04981896719088397 0.18513511378789 0.1403026815683273 0.05553688017002223 0.1778331965829754 0.1148432138360853 0.1491788767234183 0.1110207096533529 0.6846336669389785 0.1226000311149456 0.01853623537976645 0.0220598903651279 0.1039620037508513 0.2076683558898775 0.1924864351519187 0.5524430862338505 0.07119240683362982 0.0447614979984845 0.03419876108980979 0.04163744465384767 0.03616161676776208 0.03724658800139125 0.007723667106038334 0.01003421488310252 0.006861465069444961 0.007488670284573118 0.008815521079675648 0.004227295361317829 0.002935514738780398 0.002190680171551662 0.003239724644231501 0.01976626004622517 0.03188157601734787 0.0497515607604555 0.007339836487634699 0.02123096921523171 0.05915661654156068 0.05097672294079558 0.0527306033595849 0.03855662085751987 0.01669960372487367 0.0199842521895448 0.01995595414673801 0.05888051330129684 0.01057459942968109 0.06306168267854417 0.01854503741044056 0.01196944216052032 0.02033103225868871 0.03681053475182239 0.009875258462566094 0.02521045098626473 0.04017172553018611 0.185854223541682 0.05997535236861751 0.03762310386516887 0.2745880843123381 0.05940791003890666 0.04528634828110256 0.05173409779598614 0.03505433646014922 0.06790876480195607 0.009066414613513984 0.02108878911164425 0.04276117075888664 0.04322157240861202 0.073047732279651 0.08463614029174238 0.1468924501822677 0.0882349380614933 + 0.02333603874143009 0.03978329318016449 0.01665545081908704 0.01702465093630678 0.01837990546263768 0.01545616698565766 0.02063082958645168 0.00812551209259027 0.02155129472674844 0.01485210093247247 0.01310855287006518 0.02527322048704406 0.02326948042306398 0.02118836901299836 0.05517599026913445 0.0476339789089284 0.09642267044288744 0.00913434840406957 0.006480038098011676 0.01958858125942697 0.0104258326392852 0.006343597843631699 0.002503976942652031 0.002355659931655651 0.001775572521353297 0.001512938684832932 0.00156357663508544 0.008543960728346178 0.008451334917836562 0.01050742941687588 0.01205783390155446 0.04577408555907958 0.03654499477528539 0.01451315272426079 0.0454304520065989 0.02835272575077141 0.03646719783204588 0.02873124953305606 0.1790583440028435 0.02929181677398773 0.004630874726181844 0.00548645801733727 0.02665918906481579 0.05531919643958716 0.0608974465404426 0.1990562862149208 0.01776891766088973 0.01201171578829729 0.008650634314742334 0.01061336558060333 0.008980032158156348 0.009101406775581466 0.001979803044378059 0.002305136738513625 0.001658996912762944 0.001781688303633899 0.002150784645138515 0.001073157142570835 0.0007566908170417719 0.0005902926597798341 0.0008302170164213862 0.004819417208583587 0.007602864022814515 0.01170656526915081 0.00177489911244777 0.005306698977651791 0.01414929216739935 0.01198812265857185 0.0125882994483959 0.009230514361888709 0.003969602808808759 0.004584924113231637 0.004719146382612394 0.01393937122520583 0.002662350411615222 0.01552831855671855 0.004569639880699583 0.002988425924662863 0.004981366349060323 0.008867221591867036 0.002534547325996783 0.006182311593573075 0.009707112221480685 0.04363235543254262 0.01432915691717085 0.009188538930519741 0.06735303489781685 0.0139455151555552 0.01056805609238864 0.0119282555318847 0.00812928715471628 0.01527820060681506 0.002250725015230159 0.004970413621038006 0.01027175278307624 0.01037986371367339 0.01788309274568434 0.02074271944496076 0.03787827551099099 0.02191895008925826 + 0.004077259809491807 0.005919357922763879 0.002708949991685472 0.002849524326776987 0.003057946677856194 0.002663888972591621 0.003732312355737122 0.001434605533788158 0.003497918905878805 0.002480654494718237 0.002026369537617256 0.004002920287973666 0.003683881978535197 0.00350816633936013 0.008787271974744826 0.008630560356925443 0.01620682663936535 0.001574520655548639 0.001182770881110073 0.003110289857595205 0.001747607560854902 0.001092093361194202 0.0004613350961335527 0.000451085469713064 0.0003334333152906765 0.0002861320475560092 0.000295389779829236 0.001454640233227167 0.001424204935055684 0.001769908169677592 0.00203764872309975 0.00723657791259491 0.005952385013285877 0.002502907289084533 0.007232981530512106 0.004508221683746427 0.005706865594572008 0.004775586780795038 0.0286554181440799 0.004716876283183069 0.0008132701515961571 0.0009533126320384611 0.004368095516278814 0.00901583237724779 0.01194918242709075 0.04983539913589752 0.002992479032329243 0.002164445653136227 0.001485085001800002 0.001802887857140334 0.001517090616204086 0.001521600123606248 0.0003749159175541195 0.0004957976227615291 0.0003353132029033645 0.0003567309157581633 0.0003976278099102615 0.0002087390927982824 0.0001514564498847903 0.0001242907846119579 0.0001693929868693544 0.0008304601458206662 0.001263035239041699 0.001889513989311808 0.0003593433607385066 0.0009313027895672121 0.002305200618263115 0.001927985779332175 0.002020444819926581 0.001518949037269124 0.000680367136524751 0.0007592213696057115 0.0007961411565418075 0.002219079222030018 0.0004874126759766284 0.002530387298982362 0.0007947323827295349 0.0005393438365040026 0.0008598153713315071 0.001482488451987507 0.0004715402188946172 0.001055350018557277 0.001667010572088401 0.006689301146511895 0.002412117057392749 0.001573727059749785 0.01118455040198896 0.00229167940255337 0.001773563850321125 0.001983147530822293 0.001362676276471575 0.002447336479249884 0.0004145833427742218 0.0008335376663097804 0.001682616254015556 0.001692822898910151 0.002896839952949648 0.003334023123748864 0.00612701519263581 0.003529889511813877 + 0.0004919197659738472 0.0005287725681171196 0.0002868366551069812 0.000322272603753504 0.0003422514134712173 0.0003256455342466325 0.0004972697077079147 0.0001805158298679999 0.0003771079542929101 0.0002784424322896939 0.0001737554101168826 0.0003905194127540312 0.0003406892482651358 0.0003480183979416296 0.0008354710016007516 0.001105956542190256 0.001272271186747886 0.000159135213333883 0.0001468615684565577 0.0002613224618350785 0.0001732344671871999 0.0001117118893922964 5.48306669791998e-05 5.101785566452577e-05 4.23407073526505e-05 3.597344402805902e-05 3.717713060069627e-05 0.0001308863040918595 0.0001318945424060303 0.0001584431534027431 0.0002156113622113764 0.0006447029448501951 0.0004596548734809858 0.0002085158661113695 0.0005731524975320923 0.000377786489053733 0.0004760010159721162 0.0003414392338143557 0.002649885798117424 0.0004626697449303663 8.391426606380037e-05 9.408275367306373e-05 0.0003729765477373803 0.0007363173050300986 0.0008606179339896158 0.003476058372021029 0.0002998510208431782 0.0001839437876576255 0.0001475262381624987 0.0001652708722499341 0.0001484797843573915 0.0001491073080615024 4.511535325590899e-05 5.599213619689181e-05 4.135028473228886e-05 4.31946945731454e-05 4.589252316122838e-05 2.795622172868661e-05 2.188739658492977e-05 1.947578599015287e-05 2.400363224097646e-05 8.729973915322375e-05 0.0001263676143352654 0.000180847572124776 4.359602720072075e-05 9.145180231584504e-05 0.0002224527234133689 0.0001824665852723228 0.0001751917267469594 0.0001346471834509089 7.322034105072817e-05 7.675121287320508e-05 8.232490502280143e-05 0.0001983559128575507 5.70857236183997e-05 0.0002135512157970254 8.271826496653034e-05 6.105316552407203e-05 9.016703334197018e-05 0.0001501993922232714 5.589173492737132e-05 0.0001075363048954614 0.0001844703534814585 0.0005951925383200773 0.0002603348293881425 0.0001686761019072947 0.00123079327276443 0.0002366854267705776 0.0001960675607222129 0.0002184187309666186 0.0001514560099025175 0.0002529112803557609 5.105158373908125e-05 8.447903913122445e-05 0.0001474797497422742 0.0001493473750855401 0.000258869191497979 0.0002903226564967554 0.0004516144672308542 0.0002803271511382377 + 4.538570444623247e-05 3.295820978621578e-05 2.234186951000083e-05 2.787714201701874e-05 2.913531379533651e-05 3.18336013691578e-05 5.215569062499981e-05 1.891313065982558e-05 3.05923312566847e-05 2.391828328995871e-05 8.611108611944474e-06 2.665930688294793e-05 2.070135905185566e-05 2.355513224472361e-05 6.0837028186711e-05 0.0001066383234764601 7.184610814015002e-05 1.062211384095235e-05 1.473514710959023e-05 1.272566208498915e-05 1.142269712772759e-05 7.656213991680261e-06 5.154632951587246e-06 3.876830604099268e-06 4.650345843515424e-06 3.864840429912419e-06 4.018088169743805e-06 6.391081896595097e-06 7.028686315635468e-06 7.769547572422653e-06 1.621461839818039e-05 4.113245800851928e-05 2.031684586789595e-05 8.658877893807926e-06 2.806100816954427e-05 1.938326756700803e-05 2.518489106861921e-05 1.153343228565973e-05 0.0002006009481227977 3.216414033246906e-05 5.715811120410308e-06 5.730784593538374e-06 1.949061217310089e-05 4.062303360541364e-05 2.69112330109067e-05 7.009613433162087e-05 2.02522262728877e-05 7.524132023206676e-06 9.438592186938877e-06 8.655263018297887e-06 9.327332598729754e-06 9.534043083903043e-06 4.270326975586158e-06 3.650432038426743e-06 3.542009896051468e-06 3.56975683146743e-06 3.961461324308857e-06 3.432364152899936e-06 3.154024341256445e-06 3.163379645343412e-06 3.135918696273166e-06 6.463954136393113e-06 8.623243914485101e-06 1.146244453309464e-05 3.578081393840193e-06 5.445477995635883e-06 1.427161239320185e-05 1.130344211475176e-05 8.504095035277714e-06 6.61288790126946e-06 5.825135204418075e-06 5.432855203935105e-06 6.005864008784556e-06 1.081154352533531e-05 5.211424117135266e-06 9.764367792541861e-06 5.866049878733293e-06 5.205779292083434e-06 6.613999453009001e-06 1.048274418380402e-05 5.158771010371765e-06 7.38510183850849e-06 1.517888540547574e-05 3.76318087766947e-05 2.044371417753155e-05 1.30061282455074e-05 0.0001051126526085966 1.73545438428846e-05 1.654056836031259e-05 1.83484479236995e-05 1.322495111821809e-05 1.901330226417031e-05 5.225013140375268e-06 5.878691183625051e-06 7.061057431201334e-06 7.325697907845097e-06 1.42019850599695e-05 1.539625916890941e-05 1.807522794550209e-05 1.203571901342571e-05 + 5.194392134200143e-06 4.085916117446686e-06 3.49173984659501e-06 3.985721065191683e-06 4.057337250173987e-06 4.403813534281653e-06 5.877191483705246e-06 3.451773238793976e-06 4.113031181418592e-06 3.693876706734045e-06 2.33119084214195e-06 3.722964692087771e-06 3.26880525847173e-06 3.519214049063635e-06 5.930231402828667e-06 8.820540461584869e-06 6.670805380082356e-06 2.57205570441954e-06 3.054971822180619e-06 2.726471695524424e-06 2.63000200817487e-06 2.278202291705611e-06 1.985522885661339e-06 1.865148387736326e-06 1.908681724671624e-06 1.801236294340924e-06 1.825127789345515e-06 2.148070372243183e-06 2.196911896845677e-06 2.280593033532341e-06 3.022362694338199e-06 4.709149774129173e-06 3.317086342491393e-06 2.411818538661237e-06 3.811741391857026e-06 3.200936014025046e-06 3.581926623752452e-06 2.712597087395352e-06 1.325681840569359e-05 4.118167950650786e-06 2.058471647359283e-06 2.069332527554479e-06 3.227671426131451e-06 4.710249344341833e-06 3.976540630112879e-06 8.40259948198252e-06 3.288018380231961e-06 2.316339426045033e-06 2.460163202044896e-06 2.377633267158785e-06 2.442709583050373e-06 2.45983604685307e-06 1.885369815823879e-06 1.886352325897178e-06 1.802948045082076e-06 1.810234827814838e-06 1.846109000780416e-06 1.710750737515809e-06 1.649290410909998e-06 1.643119645677871e-06 1.671608330866547e-06 2.13502079304817e-06 2.371936155043386e-06 2.617851038166918e-06 1.81732617576813e-06 2.051449101259095e-06 2.837692871793251e-06 2.601900888521413e-06 2.337718235878583e-06 2.153136108518083e-06 2.049857343422445e-06 2.00510083914196e-06 2.06894610244035e-06 2.554281230970901e-06 1.992809838924359e-06 2.482755760979671e-06 2.067151108064991e-06 1.993000481093077e-06 2.154863082637348e-06 2.555628547895594e-06 1.992048984433836e-06 2.243113858213519e-06 2.984456639154587e-06 4.438785538241063e-06 3.362702148734797e-06 2.788327648772793e-06 8.434438612425765e-06 3.090377276748768e-06 3.104113851293278e-06 3.245919373284778e-06 2.841360966954198e-06 3.218206643396115e-06 1.984061910320634e-06 2.05548485610052e-06 2.195247226666197e-06 2.218357145977734e-06 2.834061969991808e-06 2.922559655615942e-06 3.178201950504445e-06 2.699470499578638e-06 + 2.057958965906437e-06 2.137855702244451e-06 1.9300033500258e-06 1.94262153740965e-06 1.962671092314849e-06 1.909686844214775e-06 1.979190088263749e-06 1.806701916962083e-06 1.992733913880329e-06 1.905195119888958e-06 1.864403387230595e-06 2.052800979868152e-06 2.050479327664334e-06 2.062873006636323e-06 2.290267236304544e-06 2.304190385160609e-06 2.424904257836147e-06 1.876999649041977e-06 1.803271075573321e-06 2.026532595067465e-06 1.880713593749306e-06 1.783427546087069e-06 1.633321627281248e-06 1.679556831390983e-06 1.580828893565922e-06 1.562311815916928e-06 1.567371036514942e-06 1.838954716504304e-06 1.833773467296851e-06 1.89071764111759e-06 1.902682438270631e-06 2.24183298769276e-06 2.196548750887928e-06 2.003172070885739e-06 2.23274155963793e-06 2.125009586961824e-06 2.171733402889231e-06 2.13389306580325e-06 2.52539332024071e-06 2.126605867402986e-06 1.734518875196045e-06 1.765152614296994e-06 2.137399606638724e-06 2.300597705229279e-06 2.39414465585952e-06 3.727086040683503e-06 2.031292979154387e-06 1.978598348273408e-06 1.861508909684062e-06 1.910034221452861e-06 1.854667667444687e-06 1.845644963083259e-06 1.621789628813985e-06 1.734693920951713e-06 1.641447646250072e-06 1.648879852211849e-06 1.628856551860736e-06 1.516395698786255e-06 1.475567941611189e-06 1.452012440950057e-06 1.506544919038788e-06 1.718072443424035e-06 1.790346090047024e-06 1.872113593037739e-06 1.657289413259377e-06 1.768922277989304e-06 1.931577365610337e-06 1.876816753565436e-06 1.893281435627614e-06 1.827545396793084e-06 1.668356304662666e-06 1.682092971577731e-06 1.695281270031046e-06 1.918039451709319e-06 1.6415561923111e-06 1.979170260568708e-06 1.719629203478235e-06 1.6576961989756e-06 1.727457675571031e-06 1.830679895675758e-06 1.64582831807536e-06 1.768670863100397e-06 1.848813997895604e-06 2.200559414688996e-06 1.934717307250367e-06 1.84781992373928e-06 2.352508364111827e-06 1.910440332153485e-06 1.837237718405049e-06 1.852867256957325e-06 1.786080460419726e-06 1.892014864779412e-06 1.605869783816161e-06 1.705411577290761e-06 1.849805983056285e-06 1.85124316232077e-06 2.016647894009793e-06 2.053708850979774e-06 2.19145472613036e-06 2.066344794826591e-06 + 1.818843401224512e-06 1.904548923903349e-06 1.727605351220518e-06 1.738147275887059e-06 1.752063468529741e-06 1.721668382970165e-06 1.767725450463331e-06 1.645511318315585e-06 1.772699306457071e-06 1.711127538328583e-06 1.710448387370889e-06 1.831684066644357e-06 1.854256407085586e-06 1.857651501069313e-06 2.071864432906523e-06 1.973036711788723e-06 2.414350623425321e-06 1.707549415641552e-06 1.635329484273029e-06 1.896895359010387e-06 1.706809587886937e-06 1.611769580023292e-06 1.479859580655329e-06 1.556260304624857e-06 1.426597407316876e-06 1.428746735143704e-06 1.429211692993704e-06 1.711039701035588e-06 1.689369518942385e-06 1.760432688513447e-06 1.713028776606507e-06 2.054024667685894e-06 2.130593038884854e-06 1.941892602275175e-06 2.130734822358704e-06 1.995636040419413e-06 2.025560455365394e-06 2.115011739078909e-06 2.430562588529028e-06 1.900103477225912e-06 1.572847693864787e-06 1.613090045538002e-06 2.018968542571997e-06 2.20169814468818e-06 2.602770235782259e-06 8.430695752181805e-06 1.836322212511732e-06 1.936475477748445e-06 1.696787659710708e-06 1.77228983311295e-06 1.688897333096406e-06 1.675701525982731e-06 1.48064235006018e-06 1.660874378472954e-06 1.533696689648423e-06 1.541542932415041e-06 1.496435899639437e-06 1.384238132118298e-06 1.341678867561313e-06 1.312972941036605e-06 1.38564692520049e-06 1.548419120922517e-06 1.614139428340877e-06 1.696060699885038e-06 1.550913339087856e-06 1.62425624239404e-06 1.75014347902902e-06 1.702633902311845e-06 1.751057418175606e-06 1.688623164852743e-06 1.507211052853563e-06 1.52108458451039e-06 1.52914385864733e-06 1.756898221572101e-06 1.487140334432979e-06 1.864680189811452e-06 1.554044537499522e-06 1.50162194856307e-06 1.556868756580343e-06 1.652465179802221e-06 1.490968795536673e-06 1.596266326231444e-06 1.665527324945515e-06 1.986844484491712e-06 1.736033354404753e-06 1.665260334959839e-06 2.062107135714086e-06 1.716937298112953e-06 1.656280204542782e-06 1.669401839876627e-06 1.61136509291282e-06 1.696753102464754e-06 1.448676968607288e-06 1.539243655201972e-06 1.713523879232071e-06 1.710422502299025e-06 1.861102219891109e-06 1.909432363333963e-06 2.144280681903865e-06 1.983791207749164e-06 + 1.514195336227431e-06 1.47520987070493e-06 1.421070535911895e-06 1.451849584555021e-06 1.457625913303673e-06 1.465056115534935e-06 1.523559333804769e-06 1.40358251599082e-06 1.462690363496222e-06 1.431320740152842e-06 1.309692862605516e-06 1.450166550398535e-06 1.419047002571006e-06 1.441814735159141e-06 1.558317498151496e-06 1.637036710633311e-06 1.589863481754605e-06 1.339808195055525e-06 1.378065363155656e-06 1.364266395853519e-06 1.344602548414287e-06 1.298422677820099e-06 1.242637541309932e-06 1.246358610984544e-06 1.223947108996981e-06 1.220918754540889e-06 1.221514203564311e-06 1.285857926802692e-06 1.292979263212146e-06 1.30779804408121e-06 1.384603766751979e-06 1.513225406313268e-06 1.430844852379209e-06 1.329213684897468e-06 1.469432998391085e-06 1.417911015266782e-06 1.451219620918209e-06 1.369555608476958e-06 1.716326178069494e-06 1.479460134845567e-06 1.266149524781213e-06 1.270269496700394e-06 1.422632260883461e-06 1.518091186980541e-06 1.498561303492352e-06 2.281736703579895e-06 1.422796218619737e-06 1.315368837850883e-06 1.326538258794585e-06 1.321304972989878e-06 1.323381686901826e-06 1.323721935619915e-06 1.23644249327981e-06 1.257014222488806e-06 1.240876724040163e-06 1.241937070517452e-06 1.237144878984964e-06 1.20980307372065e-06 1.199664239948106e-06 1.192235302482914e-06 1.210839450038748e-06 1.272992601997203e-06 1.30789955221644e-06 1.340641560432232e-06 1.243454210708705e-06 1.268599692849648e-06 1.368861521910958e-06 1.339559915436439e-06 1.313781510248191e-06 1.28522130893316e-06 1.254330896927058e-06 1.251295657311857e-06 1.260825314375325e-06 1.338858545807398e-06 1.245072297706429e-06 1.335796898871422e-06 1.265163376729106e-06 1.248291834343718e-06 1.276825297935602e-06 1.331169269036536e-06 1.246473640748036e-06 1.292342382441802e-06 1.374358699735012e-06 1.497925449456261e-06 1.416074940863155e-06 1.356332330004761e-06 1.62980850149097e-06 1.389263431406107e-06 1.380461505107178e-06 1.393358942891609e-06 1.348724183003469e-06 1.394324740999764e-06 1.234506243008582e-06 1.26054808902154e-06 1.292721030665689e-06 1.296123826932671e-06 1.376072965797448e-06 1.387170787126024e-06 1.417008466120251e-06 1.363871117376902e-06 + 1.549631043928912e-06 1.529597994931464e-06 1.477154512485868e-06 1.494796137535559e-06 1.49960402495708e-06 1.504035736843434e-06 1.561991069820579e-06 1.458147607991123e-06 1.504690445131018e-06 1.480540632314842e-06 1.421887759534002e-06 1.504790958506419e-06 1.492711710682215e-06 1.504440037436439e-06 1.622783033283781e-06 1.673138763536031e-06 1.718935006778111e-06 1.436283330491506e-06 1.443734561235033e-06 1.476195922833767e-06 1.43829282706065e-06 1.39789482389574e-06 1.345546142061949e-06 1.3609419227123e-06 1.320554375183747e-06 1.317723011595717e-06 1.318705699304701e-06 1.412418313861963e-06 1.411069867174319e-06 1.43024651322321e-06 1.458105675311572e-06 1.583849854824848e-06 1.553289390443524e-06 1.467727290815901e-06 1.571288787971525e-06 1.517258123584497e-06 1.538797320677077e-06 1.523118129398426e-06 1.849975877377119e-06 1.532713319818413e-06 1.376123034191323e-06 1.386006577064336e-06 1.524440094158308e-06 1.61768113038363e-06 1.688361743745759e-06 3.05069373851552e-06 1.492159283245087e-06 1.460809006204045e-06 1.427931424657913e-06 1.438372299489288e-06 1.424818320217014e-06 1.422404217521489e-06 1.342692399930456e-06 1.383451845526906e-06 1.350834764934916e-06 1.352804407162012e-06 1.345504273331244e-06 1.29396033798912e-06 1.27233150237771e-06 1.259023079569488e-06 1.293885894426694e-06 1.37352473572605e-06 1.402250134674432e-06 1.434221339025044e-06 1.355518122636568e-06 1.387698130628223e-06 1.456349878026231e-06 1.434821676582487e-06 1.431138194618597e-06 1.407697105548777e-06 1.356825961806862e-06 1.358572149001702e-06 1.364309142104503e-06 1.443645452070541e-06 1.348540138224052e-06 1.458399616183215e-06 1.371772398783833e-06 1.353599966336105e-06 1.376936147323704e-06 1.421722565453365e-06 1.350201713989918e-06 1.391815224849324e-06 1.446667916127353e-06 1.559491384028888e-06 1.475550035934248e-06 1.437397958881093e-06 1.682204310071711e-06 1.460874251790756e-06 1.448679405768871e-06 1.456869398452909e-06 1.424556245410713e-06 1.460883197523799e-06 1.332843481804957e-06 1.36633738634373e-06 1.415522113745737e-06 1.416324849401462e-06 1.475882086765523e-06 1.488171879060474e-06 1.550588368814942e-06 1.491657894092668e-06 + 3.230037734169855e-06 3.545001604265963e-06 2.810901932548404e-06 2.82123652084465e-06 2.886861977913213e-06 2.704757548599446e-06 2.946888386645696e-06 2.421722399503778e-06 2.985489743423386e-06 2.71160756426525e-06 2.716896688070847e-06 3.252348577120756e-06 3.309332957002198e-06 3.338304432887185e-06 4.499886244957452e-06 4.373342221697385e-06 5.996301382538149e-06 2.735250554053437e-06 2.453441023675396e-06 3.300796485916635e-06 2.73518463700384e-06 2.452603837355127e-06 2.063180030376088e-06 2.337110231565021e-06 1.898249507803484e-06 1.911488602956979e-06 1.910791390002942e-06 2.714835481754108e-06 2.666321169186858e-06 2.839980691504707e-06 2.778484336829479e-06 4.210187395159437e-06 4.157557905060116e-06 3.303438326440755e-06 4.308597588931207e-06 3.706591478191967e-06 3.890935488470859e-06 3.903044753172935e-06 7.34967073867665e-06 3.53190656809943e-06 2.379961959064758e-06 2.492386659724843e-06 3.784628846759119e-06 4.791792692415697e-06 5.598546456653253e-06 1.575495343786315e-05 3.248252232523896e-06 3.249661487458866e-06 2.693278268850463e-06 2.88820702820658e-06 2.668090901991604e-06 2.628899821388586e-06 2.081427702194105e-06 2.582377014448412e-06 2.264934291673626e-06 2.289215927930854e-06 2.141267081867682e-06 1.79148666745732e-06 1.678716543551673e-06 1.58755423740331e-06 1.810411610847495e-06 2.279446992048406e-06 2.446569418168565e-06 2.694933634472818e-06 2.315019592913359e-06 2.522709124264111e-06 2.901976248637084e-06 2.714618666743718e-06 2.824103226828356e-06 2.665166164206312e-06 2.151199723243735e-06 2.220602766556112e-06 2.231247165696004e-06 2.875287371750801e-06 2.089157256079943e-06 3.141969230568975e-06 2.318599676698341e-06 2.145675850329098e-06 2.30317750293807e-06 2.556334663950111e-06 2.104620481446773e-06 2.411123965373463e-06 2.591311094590765e-06 3.893383343722689e-06 2.857475045914271e-06 2.600950676168168e-06 4.8155509908554e-06 2.791324817508212e-06 2.536417660792267e-06 2.573560166752031e-06 2.381298543241428e-06 2.697607243362654e-06 1.955444631107639e-06 2.272908830036613e-06 2.721311659570347e-06 2.715108117001819e-06 3.240931402359593e-06 3.393543146046341e-06 4.152352342856602e-06 3.520705813997438e-06 + 6.791337849421097e-06 8.522954914269576e-06 5.114959648722106e-06 5.150659774244559e-06 5.40226548650935e-06 4.722485925867659e-06 5.560686759054079e-06 3.811044521739859e-06 5.80189669108222e-06 4.74697704078153e-06 4.776920206950308e-06 7.025307567687378e-06 7.332680560523386e-06 7.444687989632826e-06 1.345476825420633e-05 1.251977535332571e-05 2.270243958690799e-05 4.794077275604991e-06 3.882536283583704e-06 7.264643315352259e-06 4.796812795859751e-06 3.794693018477346e-06 2.790834511046114e-06 3.492177107489169e-06 2.437222690332419e-06 2.440576452045207e-06 2.443339241153808e-06 4.843985081492974e-06 4.589770519203284e-06 5.298599781156099e-06 4.976888988039718e-06 1.195818892085754e-05 1.167471682350651e-05 7.186093894162582e-06 1.247380636115736e-05 9.325484576550025e-06 1.032602312633912e-05 1.024315099229511e-05 3.125470589182555e-05 8.415265345007583e-06 3.593669166690461e-06 3.962815267044562e-06 9.725294097151505e-06 1.496869832706693e-05 2.06716384205663e-05 0.000124882705852869 7.013455785909173e-06 6.926700374165762e-06 4.632153318695487e-06 5.469368112187567e-06 4.536663192666879e-06 4.387985221399049e-06 2.792633473802653e-06 4.407824647501002e-06 3.298386246797236e-06 3.373435490061638e-06 2.927976197497628e-06 2.24106578627925e-06 2.051658398727341e-06 1.874385318956229e-06 2.272620129417646e-06 3.323485429973516e-06 3.77857135447357e-06 4.643070688814532e-06 3.450113087666296e-06 4.084132093851167e-06 5.488764788452727e-06 4.721507707472483e-06 5.22406808300957e-06 4.634291052241224e-06 3.004956639074408e-06 3.157925419827734e-06 3.197635351170902e-06 5.401821006500995e-06 2.849264351567626e-06 6.54146403533673e-06 3.419787070413349e-06 2.974092609520085e-06 3.383996574513048e-06 4.133789886395789e-06 2.883718401847091e-06 3.674009199983175e-06 4.296731884068095e-06 1.034517550735359e-05 5.291902301252094e-06 4.308672330921581e-06 1.521457470587961e-05 5.031541370215109e-06 4.126478096111441e-06 4.255263732488856e-06 3.649005805073102e-06 4.681835378050891e-06 2.567452597190822e-06 3.300633764524719e-06 4.847413464403871e-06 4.802725591446233e-06 7.004934744259117e-06 7.725533610170032e-06 1.165269131675473e-05 8.260586877639753e-06 + 7.546261688418099e-06 8.912049395348731e-06 5.533572803528841e-06 5.707598148774196e-06 5.941826088928792e-06 5.458807578406777e-06 6.658925741476196e-06 4.426652949973686e-06 6.301407566411399e-06 5.285442341573798e-06 4.438609863655074e-06 7.304552369191697e-06 7.371359384222842e-06 7.609531788688173e-06 1.428361421673685e-05 1.429929205620795e-05 2.37339393009961e-05 4.643632786738294e-06 4.337447794711125e-06 6.774506719153806e-06 4.690348315961046e-06 3.68190363886356e-06 2.761116579819145e-06 2.932728964566422e-06 2.441553405674313e-06 2.324607144998936e-06 2.346071738656974e-06 4.264300443423963e-06 4.164170885445628e-06 4.775315080252085e-06 5.186287619807217e-06 1.240640998467768e-05 1.116769641562598e-05 6.256984834251966e-06 1.239997943258686e-05 9.120228728676238e-06 1.038383422624634e-05 8.968581813206811e-06 3.584926714594872e-05 8.778760957284248e-06 3.32036516326184e-06 3.54262385826587e-06 9.485179203849725e-06 1.513157306298751e-05 1.769978864984978e-05 5.752078377518899e-05 7.086128102073985e-06 5.854712282982177e-06 4.424302797900737e-06 4.993055313207151e-06 4.336435670992955e-06 4.236554129732895e-06 2.60565395748813e-06 3.467774888576969e-06 2.751924597532707e-06 2.797496126305532e-06 2.626881752121335e-06 2.162089671742251e-06 2.023022702246635e-06 1.927741735130439e-06 2.140773716519107e-06 3.267264975903572e-06 3.729078670744457e-06 4.549387405461403e-06 2.845090545378071e-06 3.577181249880823e-06 5.422532236565303e-06 4.596122941791236e-06 4.784962499115863e-06 4.136496968953907e-06 2.981066288043621e-06 2.982288890507334e-06 3.118991031669793e-06 5.093785780729831e-06 2.806358072149351e-06 5.920392478486747e-06 3.241541865151021e-06 2.87526566111751e-06 3.321918136123259e-06 4.12028611052051e-06 2.826583470394439e-06 3.575315478343555e-06 4.614858912788122e-06 1.08087452304062e-05 5.635875986342853e-06 4.466115136381177e-06 1.697342761630694e-05 5.270719405814361e-06 4.541284390313649e-06 4.715827785162219e-06 3.982663713486545e-06 5.050667525097197e-06 2.624941444651085e-06 3.154483565026567e-06 4.353213185481764e-06 4.350746316106324e-06 6.672923031914024e-06 7.39021558970876e-06 1.092466199636988e-05 7.543512438701327e-06 + 7.609966189647821e-06 6.444689773843493e-06 5.934878316793402e-06 6.42686411822524e-06 6.486656630499965e-06 6.894349425579094e-06 8.64532186994893e-06 5.906269990418878e-06 6.526305796228371e-06 6.152976240514363e-06 3.886974027977885e-06 6.129846163105412e-06 5.50708937652189e-06 5.858302911221358e-06 7.628917657598322e-06 1.033722832310957e-05 7.613463919753372e-06 4.274436166795681e-06 5.351373804529658e-06 4.436831279264197e-06 4.386735362515992e-06 3.779876220022516e-06 3.027091732832332e-06 2.449569205253965e-06 2.769806457081359e-06 2.423849672084089e-06 2.479679338307506e-06 3.276110824401712e-06 3.541473830637187e-06 3.704233744628027e-06 5.225699641897563e-06 6.764529192793134e-06 5.222187569486891e-06 3.827936511768826e-06 5.937842846748254e-06 5.200668166338573e-06 5.777668743434106e-06 4.273763721585055e-06 1.124932828133751e-05 6.434050561665572e-06 3.173708662984609e-06 3.122777400221821e-06 5.220590281851401e-06 6.637382377050471e-06 5.625876363879456e-06 7.288249483039522e-06 5.556484650171001e-06 3.539657470241764e-06 4.07397509682994e-06 3.898885461595114e-06 4.05005251558066e-06 4.085456222213679e-06 2.594317528803458e-06 2.363227249446709e-06 2.318817372781723e-06 2.32878459982544e-06 2.466102152709482e-06 2.273979049505215e-06 2.147897319559888e-06 2.144747256238588e-06 2.138121409700489e-06 3.504923260067017e-06 3.949868641939247e-06 4.36469802167494e-06 2.334063793796304e-06 2.995422772045231e-06 4.780713297236616e-06 4.332376882132394e-06 3.861873210553313e-06 3.359187928708707e-06 3.269600966859798e-06 3.013488964143107e-06 3.31634186068186e-06 4.228406012884989e-06 3.046518205707116e-06 4.048384084853751e-06 3.258307035736152e-06 3.013733650192307e-06 3.548889729643179e-06 4.262976339930447e-06 3.03700378445626e-06 3.723443366965284e-06 5.19451386082892e-06 6.642860416405938e-06 5.757132122141684e-06 4.763142740671356e-06 9.637419687180682e-06 5.349244936780906e-06 5.421957112616838e-06 5.641081301632767e-06 4.910949911618445e-06 5.587867676126734e-06 3.072162584771831e-06 3.237017637047757e-06 3.50046951780314e-06 3.593841015003818e-06 4.658779541699687e-06 4.779428049772605e-06 4.980330661652488e-06 4.335464613092199e-06 + 2.524388766289576e-05 2.195196024956658e-05 1.572089820456313e-05 1.779332509954656e-05 1.837102948343272e-05 1.918192133132379e-05 2.778664057245805e-05 1.38787978869459e-05 1.909027010071895e-05 1.614778078362633e-05 9.441751444683177e-06 1.848759804801148e-05 1.623640842751684e-05 1.755196167252393e-05 3.626807797196818e-05 5.335491352909116e-05 5.205327853197161e-05 1.038115654772298e-05 1.20694706211566e-05 1.314825295750666e-05 1.076307806258114e-05 8.266241504628624e-06 5.585725542545106e-06 4.808442529480317e-06 4.723759317926124e-06 4.084764810841079e-06 4.187175512981867e-06 7.493163408867076e-06 8.07439413819111e-06 8.994729167710602e-06 1.3062889252069e-05 2.811911796740674e-05 2.033777005472359e-05 1.073483098679162e-05 2.389991430540306e-05 1.747212859726233e-05 2.063724706147241e-05 1.568305238208723e-05 0.0001106981847520672 2.155176284190929e-05 6.537334847678267e-06 6.625864173770424e-06 1.780113710836417e-05 3.127955635839896e-05 3.118784693523224e-05 8.751482555524603e-05 1.590381157967613e-05 9.467533358176183e-06 9.724962740875753e-06 9.757076686156552e-06 9.625754254116714e-06 9.643116477775493e-06 4.744014567847898e-06 4.82972580329033e-06 4.27086973431301e-06 4.338254420588328e-06 4.621771260815422e-06 3.566293585777203e-06 3.128203886149095e-06 2.955835981310884e-06 3.271491060274911e-06 7.19532475201845e-06 8.814827566538952e-06 1.070626365162752e-05 4.37723108959176e-06 6.399435434900624e-06 1.242610868956717e-05 1.069324670055494e-05 9.571144381936847e-06 7.626590083020801e-06 6.425926144970617e-06 6.058463640101763e-06 6.703737952307165e-06 1.094286444924819e-05 5.692444219107529e-06 1.11446218724609e-05 6.650374107408652e-06 5.771368506657382e-06 7.345625405719147e-06 9.919712066874808e-06 5.671388578321057e-06 8.037710387043262e-06 1.230072873070753e-05 2.533276551019981e-05 1.50959712392762e-05 1.121290944539055e-05 5.387276214108283e-05 1.357770978671624e-05 1.287275388506259e-05 1.372032075153129e-05 1.105006461443736e-05 1.411058975975266e-05 5.46752288244079e-06 6.596992690788284e-06 8.137669517793711e-06 8.394820262935809e-06 1.340567012775296e-05 1.447576975976972e-05 1.981900066283515e-05 1.386049717311266e-05 + 7.11209539332458e-05 5.487840546436473e-05 3.671427279527961e-05 4.429564650365592e-05 4.620033186597539e-05 5.005870727359252e-05 8.310456566107405e-05 3.126558218013997e-05 4.848241242427775e-05 3.857391934047882e-05 1.787910433392881e-05 4.461870294392156e-05 3.623705330824123e-05 4.060841858866127e-05 9.692236102054608e-05 0.0001809215499442018 0.0001177058577823686 2.032918374084147e-05 2.538684752195763e-05 2.614999801053841e-05 2.147258763685045e-05 1.492775779254885e-05 9.006518780552142e-06 7.47120435562465e-06 7.447845277397391e-06 6.157905737325109e-06 6.374127814012809e-06 1.290000304976502e-05 1.429767382532532e-05 1.627051807417956e-05 2.801390873230503e-05 6.90268487382184e-05 3.961442696720496e-05 1.908901872837987e-05 5.068779085526387e-05 3.620606957355221e-05 4.497281505777551e-05 2.726559588239752e-05 0.0003217864375848478 5.363316254403117e-05 1.087440735858536e-05 1.114390609657789e-05 3.652546915233756e-05 7.072907011007601e-05 5.434424562178464e-05 0.0001192754468188895 3.547931508052216e-05 1.612908030956817e-05 1.858957852185483e-05 1.818581012891229e-05 1.839405432946251e-05 1.853549317942793e-05 7.363761895362586e-06 7.337518397321219e-06 6.324795162271357e-06 6.477975915686329e-06 7.14451155658935e-06 5.105187554477197e-06 4.339124956231899e-06 4.235838915178647e-06 4.44671276511599e-06 1.233581716064691e-05 1.646574084190888e-05 2.149973384035775e-05 6.539322516374568e-06 1.069791813179677e-05 2.593285267593615e-05 2.143133771426164e-05 1.788208886921439e-05 1.330153168055404e-05 1.07306480998659e-05 1.004240584734362e-05 1.127948381451915e-05 2.169137020757717e-05 9.201551343096526e-06 2.110239028141336e-05 1.109767261908701e-05 9.333695022206712e-06 1.267810496585753e-05 1.939680718976433e-05 9.124873411536782e-06 1.436471556814922e-05 2.594748123385671e-05 6.303602867063773e-05 3.438769425301302e-05 2.283845999073719e-05 0.0001694272140326802 2.963348385520703e-05 2.775015125422442e-05 3.041077140153448e-05 2.253931540963094e-05 3.154371538016676e-05 8.884864882929833e-06 1.105748143004348e-05 1.440048033174435e-05 1.50425455061054e-05 2.745565029727004e-05 2.969102907357524e-05 3.72753541704185e-05 2.625951107404489e-05 + 0.0001303666203575915 8.031380640716179e-05 6.008275160240828e-05 7.873197823471401e-05 8.147647280054571e-05 9.738968066130838e-05 0.0001772554259389381 5.682322093036873e-05 8.382205970747236e-05 6.745267783969666e-05 2.146540305147937e-05 6.706041192217072e-05 4.817631346654139e-05 5.691447778133352e-05 0.0001408021636795098 0.0003477868884917967 0.0001432445264537563 2.617050517272901e-05 4.220212253613909e-05 2.92462340958366e-05 2.816547663542224e-05 1.962609260530712e-05 1.222834621472657e-05 8.288812040291305e-06 1.082862762302739e-05 8.446672104867048e-06 8.860113737796382e-06 1.407398337249788e-05 1.643045930777021e-05 1.820766183513456e-05 4.118097887939598e-05 9.300943586509902e-05 4.216091281428191e-05 1.942819376665739e-05 5.880036211891593e-05 4.16954709869799e-05 5.464364039298175e-05 2.59721525246448e-05 0.0005015892717246118 7.860544564763927e-05 1.308081745321488e-05 1.276690706575323e-05 4.156663458410037e-05 8.551847728455186e-05 4.99712189192536e-05 0.0001159679408466729 4.839232283693207e-05 1.617376958229499e-05 2.345943961401531e-05 2.075115770061586e-05 2.333012212929475e-05 2.404430071933916e-05 9.363285776942121e-06 7.371577744663682e-06 7.137082807417983e-06 7.234314910675721e-06 8.606902675012407e-06 7.145953034637387e-06 6.110146259175053e-06 6.227986986573342e-06 5.898040235763347e-06 1.635726538395943e-05 2.249301159906736e-05 2.853968936022966e-05 7.243366336950885e-06 1.192718545084404e-05 3.426827395713872e-05 2.808797181330647e-05 2.063409883135137e-05 1.485364531816913e-05 1.431213047453639e-05 1.242960871650212e-05 1.462212088654269e-05 2.640349914173612e-05 1.233684322698991e-05 2.30055335244117e-05 1.382747403866347e-05 1.207170620887155e-05 1.682164077010384e-05 2.676215907371216e-05 1.213977301617319e-05 1.896734798023658e-05 4.033233964051419e-05 8.799310246487835e-05 5.397398894757544e-05 3.330417392888307e-05 0.0002920886465602734 4.419510860742548e-05 4.533132921835659e-05 5.073205234396028e-05 3.633489714616189e-05 5.019812559226011e-05 1.291392950975023e-05 1.39000810008838e-05 1.614574797059731e-05 1.713771970912603e-05 3.237609607609215e-05 3.433520586781924e-05 3.81546982772818e-05 2.737498141058836e-05 + 0.0002105259146780725 0.0001697615516746964 0.0001070110406971025 0.0001342295650061942 0.0001398950124809062 0.0001619540776260919 0.0002924668694248567 9.138861655344499e-05 0.0001473906292517313 0.0001147299850714489 5.790407179517842e-05 0.0001314998312480498 0.0001086666551621818 0.0001142018889357388 0.0002664226324693431 0.0005432717458706549 0.000358132619714624 5.259765222653812e-05 6.632955494900727e-05 8.753825391849546e-05 5.701607782881979e-05 3.890571107945107e-05 2.167100039329739e-05 2.317041234078943e-05 1.783757745954517e-05 1.563309806584812e-05 1.593629716722944e-05 4.703668609806755e-05 4.461018058776745e-05 5.309799508168567e-05 7.466964078162164e-05 0.0001969096878760013 0.0001472387851304546 7.343741078180699e-05 0.0001714599731315047 0.0001205300983961877 0.0001460381893636509 0.0001274639565345126 0.0009008945936272994 0.0001520964141406012 3.014786079091891e-05 3.394584118865396e-05 0.0001183940055131671 0.0002154194167545143 0.0002496532939542107 0.001266699411475614 9.809290541618054e-05 6.651374833666068e-05 4.888643558587091e-05 5.448640164829044e-05 4.925769781216616e-05 4.968641286851039e-05 1.837549729799548e-05 3.213161118154062e-05 2.018405080050911e-05 2.140096367142519e-05 1.98883383788484e-05 1.279522567187996e-05 1.011953801821619e-05 8.807773482999437e-06 1.13939879327063e-05 3.206115310661062e-05 4.397937314593037e-05 5.937782648857137e-05 2.150558329461205e-05 3.416111428933277e-05 7.204394620785592e-05 5.976739959834276e-05 5.836928453106793e-05 4.754994445477223e-05 2.780778658006966e-05 2.87780891028433e-05 3.028803827476167e-05 6.473903421522209e-05 2.232805443114216e-05 7.247510918517719e-05 2.982469977297342e-05 2.336590150875395e-05 3.290820862744681e-05 5.099083504234159e-05 2.182923413052151e-05 3.782516339256858e-05 6.844956398666113e-05 0.0001853016505322103 9.544915234016571e-05 5.888300639966815e-05 0.0004839926748694268 8.158604190811047e-05 7.637069857224787e-05 8.596751858647167e-05 6.089425120592296e-05 9.046217765273923e-05 2.120982976805408e-05 3.071004452692705e-05 5.092739756662468e-05 5.070663195283487e-05 8.40143400395732e-05 9.456047822808955e-05 0.0001509015823089044 9.788368740970554e-05 + 0.0002501729820991727 0.0002604254548401741 0.0001367777073255638 0.0001640787546932643 0.0001729828366876518 0.0001873796927043259 0.0003276769602820195 0.0001008855722091084 0.0001884571736212592 0.0001394554889628807 7.580419001840255e-05 0.000186011657575591 0.00015989487823731 0.0001586664445110131 0.0004008967721169654 0.0006320826062751195 0.0006390770083779529 6.329430979512551e-05 7.18431125683594e-05 0.0001289004802842442 7.059111096552328e-05 4.290465792777809e-05 2.072993362745024e-05 2.008244366180634e-05 1.533161456279686e-05 1.281547416454032e-05 1.323198473812681e-05 5.345929039179964e-05 5.163739817604096e-05 6.51462230116806e-05 9.330572594024034e-05 0.0003052520120974123 0.0002370935121120965 9.729301874372709e-05 0.000285572716514082 0.0001852923217917635 0.000231297012469156 0.0001945229583029118 0.00137292434169467 0.0002152024417725329 3.138077698494612e-05 3.588701700607544e-05 0.0001777885599576479 0.0003621238068873822 0.0004388634459138174 0.002413864139088062 0.0001340734422559109 8.223262377704543e-05 5.78810703402155e-05 6.79462453216928e-05 5.867305241302745e-05 5.920471577169906e-05 1.636671803950662e-05 2.494318570711584e-05 1.58325429246986e-05 1.702220951571576e-05 1.756587015222522e-05 9.668290573472405e-06 7.450056131119709e-06 6.828465387798133e-06 8.01755454205022e-06 3.421782430024223e-05 5.025387692825234e-05 7.5192813085323e-05 1.699181540715244e-05 3.546782582120045e-05 9.647757876507512e-05 7.631793604900849e-05 7.579781339472902e-05 5.567171774600865e-05 2.915230365374555e-05 3.088596545808286e-05 3.255508224242476e-05 8.743226624119416e-05 2.163352148798481e-05 0.0001004780315483345 3.13581719737499e-05 2.306968468346327e-05 3.520628805375736e-05 6.014900246142929e-05 2.094101023253359e-05 4.163289862191277e-05 8.067362530894684e-05 0.0002847215858636787 0.0001199634203068456 6.969611028395661e-05 0.0006390143720089725 0.0001046917586933205 9.00460966022365e-05 0.0001029352152954743 6.875687486740389e-05 0.0001158955355720082 1.948530513118385e-05 3.318212560543543e-05 6.144720089906741e-05 6.170851239062358e-05 0.0001205750043986598 0.0001392529510049201 0.0002468009701388496 0.0001452380140207765 + 0.4653754357514259 0.9083045619462808 0.3728754059264077 0.3787600915507596 0.4082533774608379 0.3543851837603427 0.4662685809352638 0.1779919442419526 0.4906554662610176 0.332315540137671 0.2887823821894813 0.534157744300046 0.4632639512580994 0.3838285790301548 0.9442946965762289 0.8206046417410118 1.258409569768114 0.1556132273907433 0.1192446806224954 0.3724750873947826 0.1915872438120658 0.1157108568102103 0.04658954452488828 0.04677416283898594 0.03405935390232173 0.02916078177940307 0.02979063279465066 0.1642495376800852 0.1559397926629771 0.1891799408769614 0.2314870442309918 0.7830701068159538 0.5902054327037671 0.2438525130832421 0.7466168329350484 0.5033937727574802 0.6560202624141098 0.5106903286334372 2.627936306331737 0.559166359746655 0.08528431083103172 0.1022128204224124 0.4326644291400097 0.8118100754002775 0.7436058063647515 2.137929768287822 0.310076921708589 0.1971124541048628 0.1485148234364377 0.1809948623101789 0.161121201950138 0.1697828450137919 0.03565417049398434 0.05888616210100039 0.03530599710725824 0.03943033725660072 0.04350364790830952 0.01998818287516713 0.01354482490245346 0.00980693854801018 0.0153002708901866 0.09379595658965201 0.1523054092835636 0.2377243294218587 0.03789728070585241 0.09877115130123215 0.2753862900906157 0.2434655958124026 0.2511432520029899 0.1886614348020785 0.08341963634828176 0.1037865317544515 0.09923257878801905 0.278354021722933 0.04964992841388849 0.2880642092790389 0.08692356146367075 0.05638660450727428 0.0955538424457707 0.1721710178527616 0.04514618991686881 0.1167161440015114 0.1905613612041499 0.8504050497062927 0.2855615033429579 0.1737815844498769 1.175323690652121 0.2881938045515611 0.2281570027931821 0.2657083311658823 0.1790821898066923 0.3544672886702784 0.04430435441425118 0.1049950422919039 0.2071312029582515 0.2071762478413248 0.3270722749355173 0.3770965325051847 0.642328930785439 0.3974505096179435 + 0.1594727493335597 0.2908897727451176 0.1190335822011264 0.1220694999502427 0.1317512856844871 0.1138902690585439 0.1547745839448567 0.05753972155632425 0.1567073550325659 0.1064271956863081 0.09069003600531289 0.176186788433462 0.156441101797288 0.135582792472313 0.3487047438911119 0.3042473954691083 0.526766941559325 0.05546919669484929 0.04124640470285534 0.1264355089777851 0.06602551117770972 0.0396709487819038 0.01556817768167207 0.01448450483873387 0.01113757681993377 0.009335199578579534 0.009641033048211511 0.05380171594105576 0.052953021451696 0.06490156011760462 0.07867460163919304 0.2881886789608767 0.2179038462092464 0.08531676160770552 0.2776634655710879 0.1791051169577855 0.2339470031569704 0.1721687431186574 1.068449040596885 0.1939040862470698 0.02883386782092856 0.03428218187893606 0.1605596213503286 0.3207368178386574 0.2949500100879616 0.8153420005751082 0.1110596562614994 0.0685500633078604 0.05265281701975688 0.06413203696540393 0.05594762471647918 0.05789212400437549 0.01192271827219571 0.01482049795735563 0.01025927752781186 0.01121114053780659 0.01355219525628115 0.00643418156170128 0.004417709302046546 0.003328000378999718 0.004823766375068317 0.03104190695420783 0.05007171873019445 0.07820018422361841 0.01097622671296605 0.03292944692029209 0.09294966732353416 0.08008295057776138 0.08244098386276733 0.0603911009342184 0.02648356999989687 0.03162898824641047 0.03155977651722708 0.09219972542030064 0.01658610962639173 0.09782568605418263 0.02898436789161352 0.01873741511691662 0.0318656207433996 0.05764454968901234 0.015410430308755 0.03934286647762519 0.06395575418197907 0.2940761530776328 0.0959227427827507 0.0591163986504597 0.4326431592010174 0.0948685148041406 0.07353514001648875 0.08466661193932623 0.05686026783860143 0.1108402363585412 0.0144188687536797 0.03328150663487861 0.06692554427927888 0.06760895667439826 0.1136853687888824 0.1317489059699852 0.2291063239175344 0.1368174308360359 + 0.04448807902406315 0.07139620856216311 0.03046135240016667 0.03204263893518089 0.03449195724139997 0.03053485448711513 0.04376861065122739 0.01553812273758126 0.04025179570253101 0.02776287235965924 0.02224686929881159 0.04523008474596679 0.040572779748004 0.03682102190045633 0.0960224717668261 0.09105296025282783 0.1637981742054926 0.01529116331636438 0.01164025291658177 0.03304604881344275 0.01765313782169287 0.01065292012502539 0.004224359228185648 0.003857057770403571 0.003004858860975901 0.002494330248950405 0.002590041466582704 0.01427860730018438 0.01410500930885306 0.0174799985511882 0.02107952203051155 0.07881690690112286 0.0618333360215555 0.02395269394273036 0.07764009757172907 0.0482868014111304 0.06271852181328441 0.04805484922713532 0.314464838182527 0.05156863161617409 0.007742037877022767 0.009158313151534259 0.04496611416823626 0.0937318217600378 0.1020020253901706 0.3320860037439157 0.03059629973745892 0.01976209180296884 0.01442674576297165 0.01758861347390273 0.01504160371091068 0.01533536286169479 0.003270917733388501 0.003752577667782475 0.002683249707857271 0.002889095044764645 0.00354369462023385 0.00173970385607447 0.001210930369367702 0.0009525236010006211 0.001318966379216135 0.008158165347172286 0.01294655173571613 0.02002946261698924 0.002874960504431812 0.008839007321849834 0.02432149418143226 0.02047541425809385 0.02115325851342931 0.01551498308904797 0.006775104166138135 0.007796883921770359 0.008030900137612207 0.02360904800340791 0.004488065230077609 0.02592317441060388 0.007680680496086723 0.005024754689323174 0.00841931020537956 0.01513941118668782 0.004249871075110434 0.01042130763630666 0.01717885248466899 0.07644720395040849 0.02559505886399194 0.01590767347098065 0.1223218289066672 0.02467506980234191 0.01916860875160609 0.02187866701115126 0.01463911560696829 0.02778485236385109 0.003856128941663428 0.008435654759836098 0.01724996556860248 0.01742855451174563 0.0302587624853885 0.03513366238453131 0.0641974888465171 0.03670418572977141 + 0.01016975357795147 0.01289608619312332 0.006135560947313934 0.006811756537572933 0.007282770059347854 0.006870100212154284 0.01067069103768858 0.003519629398169855 0.008246279305751614 0.005843570567165557 0.003894027875873007 0.008745765489656776 0.007649072743149077 0.007372861800277519 0.01904417120974067 0.0225189166772175 0.03227665808916136 0.00307433480459629 0.00265558592205295 0.005991057518581755 0.003464721531880599 0.002104645905351532 0.0008804826705244295 0.0008031423500831636 0.0006375728446670337 0.0005217552769352096 0.0005435947508374284 0.002697642068618222 0.002669441481888413 0.003302368855528925 0.004312383713319434 0.01505079954524113 0.01151459751064365 0.00458367101253998 0.01436411842641405 0.008912794290989012 0.01151215914536152 0.00883340051106174 0.06393133895968006 0.01018348793784085 0.001526154930633794 0.001776149349332456 0.008551819273751704 0.01795706278339537 0.02233302750106869 0.09148245078479 0.006192811529942333 0.003919742707537921 0.002860804975387765 0.003380913105985428 0.0029311225965305 0.002966944465597976 0.0006871715064740158 0.0008603185212727738 0.000586047951308899 0.0006245809527243296 0.000718496969568605 0.000372323525198226 0.0002662135555340228 0.000221025656159668 0.0002938048676170979 0.001600797511173369 0.002488367484787091 0.003778573438793842 0.0006282765359664211 0.00172199414140195 0.004679196685628995 0.003837741524954197 0.003828283309424307 0.002843969281265402 0.001316439325734109 0.001446677776726801 0.001532801442891696 0.004319263046866695 0.0009288501169173458 0.004754596700493607 0.00150582510568853 0.001020932609200997 0.001656893164501128 0.002968589460724758 0.0008933227036571623 0.00203713772273062 0.003600053178306695 0.01419231428500467 0.005306412314958209 0.003267831394527576 0.02682328931457434 0.004916624465060693 0.003963361166981372 0.004507871249032291 0.002992966867338964 0.005451108420601258 0.0008092403859336628 0.001594024712460396 0.003154116198992085 0.003184852889603462 0.00567977799714825 0.006535338126074208 0.01175378801668003 0.006658064041751288 + 0.002040998412663697 0.001819227900242026 0.001027940852466713 0.001252522858777638 0.001326277587494928 0.001386933962024273 0.002353943058508889 0.0007181081819425117 0.001443994406727711 0.001056420243614298 0.0004520691215645911 0.001342256457768087 0.001072582561459257 0.001137396647502342 0.003043777840748163 0.004926263628119543 0.004069147547056673 0.0004489553747095698 0.0005222044798500747 0.0007095757826185434 0.0005000248126023621 0.000297167109494012 0.0001371350110979108 0.0001083401192971678 0.0001048989099246 8.052009883385836e-05 8.504047002588777e-05 0.000313348664917612 0.0003265707678714591 0.0003931110874084709 0.0006999602602100197 0.002154935692015414 0.00128111141718712 0.0005051754173717171 0.001700857034423464 0.001097206431918352 0.001444066990487158 0.0008435705428233575 0.0105101809416368 0.00159810124437243 0.0002049144863001118 0.0002259675516178561 0.001074548637349793 0.002286707222578954 0.002231143507281708 0.008609531031897433 0.0009530451939419038 0.0004328036968352933 0.0004019385698317279 0.0004215740877455687 0.0004041852650189526 0.000411998741022046 0.0001033270147736687 0.0001133272106308425 8.455283882469189e-05 8.847943260903435e-05 0.0001004949878549155 5.9614062934088e-05 4.523491652719258e-05 4.103470729432956e-05 4.855489250132905e-05 0.0002265931890512718 0.0003505039029292334 0.0005243642315306829 8.92052861694026e-05 0.0002154531348210753 0.0006700248187136992 0.0005241191621294661 0.0004470693748714893 0.0003274252842686565 0.000187650833552766 0.000188671281250663 0.0002095427800696825 0.0005442874826471211 0.0001425384786344353 0.0005451072915860777 0.0002057878756609455 0.0001503813105578899 0.0002348971764405405 0.0004368563823966554 0.0001386473337774419 0.0002846615022740195 0.0006154222740804016 0.002017127256852547 0.0009009187568409516 0.0005283299872900216 0.005115754912520032 0.0007808844294245887 0.0006849290668355934 0.0007824466381123329 0.0005117520041011403 0.0008759774726883052 0.0001319200429037437 0.0002116559414844232 0.0003618678118542107 0.0003706871467628048 0.0007351491840950075 0.0008256414200289441 0.001222799117957862 0.0007281084735382137 + 0.0004074005860061902 0.0002758279919561346 0.0001802028742474704 0.0002396181141222087 0.0002511463757031152 0.0002873152756990294 0.0005047473859178808 0.0001554893581925398 0.0002643045544203915 0.0002001334457304438 4.749457752950548e-05 0.0002160605774008673 0.0001550246549584244 0.0001821750282733348 0.0005316849561847192 0.001004208017171493 0.0006170470327599986 6.595319593571958e-05 0.0001090444375613231 8.222288017023516e-05 7.320485092066065e-05 4.091682806972585e-05 2.111208539901099e-05 1.156584835015906e-05 1.768551696557097e-05 1.19616762788155e-05 1.306998718320074e-05 2.918364990733835e-05 3.425409578383665e-05 3.991531405844739e-05 0.0001175002169198081 0.0003437912587180847 0.0001464351428985822 4.631102199859072e-05 0.0002161940209681745 0.0001396589362094858 0.0001920782034758872 7.004745559768821e-05 0.001874421273726057 0.0002656540426499987 2.468588640169855e-05 2.46074786538486e-05 0.0001397323834311237 0.0003313609967463549 0.0002004713090633103 0.0005755945286587405 0.0001508887762362576 3.72254040517106e-05 5.558664428662041e-05 4.757664230758962e-05 5.469324263351893e-05 5.677302203466184e-05 1.46490829742163e-05 9.900058863365757e-06 9.397872673844176e-06 9.541618521069495e-06 1.231151362190985e-05 9.134601711480173e-06 7.571197329525603e-06 7.842778856570476e-06 7.386590546332172e-06 3.106619186254989e-05 4.961842898865143e-05 7.389233979893106e-05 9.592185474360804e-06 2.250902740286165e-05 9.813724852847372e-05 7.231871749979746e-05 4.622331844217342e-05 3.088958400354613e-05 2.596562936219016e-05 2.268957399564897e-05 2.716500951294165e-05 6.694389308137261e-05 2.147402346608374e-05 5.633060418475111e-05 2.594525155075189e-05 2.12773762378049e-05 3.230969543110973e-05 6.590019351548904e-05 2.109032064012695e-05 3.863931369352258e-05 0.0001100604222337154 0.0003155052732530805 0.0001591782473120418 8.875920367046319e-05 0.0009678543620879054 0.0001285857183148664 0.0001250547613267372 0.0001433618766952804 9.386485402274047e-05 0.0001470461894541586 2.195994775888721e-05 2.60230551702989e-05 3.426240510862044e-05 3.64304878104349e-05 9.552473212792734e-05 0.0001054547342036471 0.000127164424078785 7.531286086503997e-05 + 8.756796047748594e-05 5.703014409164098e-05 4.160238628969637e-05 5.518144408256376e-05 5.714743268470102e-05 6.678928004077989e-05 0.0001121940030088808 4.008465307947517e-05 5.887634458190405e-05 4.716413424432631e-05 1.209586551453867e-05 4.709712668926613e-05 3.391923544526776e-05 4.05012017754558e-05 0.000103204998842088 0.0001956192694780867 0.0001156448837225099 1.723807335451966e-05 2.91148491449178e-05 1.948949847019321e-05 1.865225186392649e-05 1.163237036649889e-05 6.871968270871776e-06 4.315648265418304e-06 6.042755160251545e-06 4.437649543831412e-06 4.775654467437107e-06 8.062592257829237e-06 9.313632634899704e-06 1.050946307401546e-05 2.829946908633474e-05 7.030818237474534e-05 3.174083595602895e-05 1.181865245314384e-05 4.480786907912204e-05 3.043125622781417e-05 4.031797434933537e-05 1.700349817213009e-05 0.0003088806058357818 5.682326858291731e-05 7.441954728903966e-06 7.305834241577713e-06 3.071362730899807e-05 6.731044896746141e-05 4.25866497382188e-05 0.0001233498771373576 3.427604417183261e-05 9.788159026413723e-06 1.486918991489006e-05 1.250321135337629e-05 1.458774131535279e-05 1.508252896442741e-05 5.225525875118819e-06 3.876694950832871e-06 3.642498256795079e-06 3.674317543556072e-06 4.501766532882812e-06 3.558023820460221e-06 3.090133859018351e-06 3.25304846171548e-06 3.041111874324542e-06 9.197167475605283e-06 1.365519209173272e-05 1.858906571783336e-05 3.711245486925918e-06 6.853060384059972e-06 2.340670194200811e-05 1.818724655322512e-05 1.185707785822387e-05 8.362156975749713e-06 7.842986576633848e-06 6.857784427438673e-06 8.028006945437482e-06 1.668442851610052e-05 6.937760364422729e-06 1.407740296599513e-05 7.773813909039973e-06 6.812270207490201e-06 9.530156027892644e-06 1.7344109298989e-05 6.891162268374273e-06 1.103752313369455e-05 2.74989176141105e-05 6.48486786793967e-05 3.748384365565016e-05 2.25366052042375e-05 0.00017834377232262 3.027436791569471e-05 3.089609884909805e-05 3.481901360657957e-05 2.424706769943441e-05 3.419156961115277e-05 7.142797457504457e-06 7.669363625950609e-06 9.05926331995488e-06 9.593052951117897e-06 2.235112534165751e-05 2.413078563989757e-05 2.811920237633103e-05 1.80435869587825e-05 + 2.338752340591554e-05 1.714041928835286e-05 1.330689698875176e-05 1.624037641079212e-05 1.671647046919134e-05 1.85099845282366e-05 2.898181843136172e-05 1.251226312604103e-05 1.715056842499507e-05 1.441384027600634e-05 6.227193864560832e-06 1.492923038171057e-05 1.196604496200848e-05 1.35749071716873e-05 2.595661156412632e-05 4.638684450775088e-05 2.674146677428269e-05 7.530910808739577e-06 1.009919684413774e-05 8.557952916987688e-06 7.86750642234324e-06 5.828742473568127e-06 3.944268136990559e-06 3.296906680105849e-06 3.524125602893946e-06 3.014454073024808e-06 3.129298796977764e-06 4.974107895350244e-06 5.350724908481652e-06 5.889446139661914e-06 1.021155153324571e-05 1.978630306176399e-05 1.165095828881135e-05 6.589980632298875e-06 1.450348959153303e-05 1.129947364830741e-05 1.358878537516262e-05 8.251035385598016e-06 5.798442361282241e-05 1.716113489536042e-05 4.449728059796598e-06 4.501643083187901e-06 1.140546316946711e-05 1.895613318225742e-05 1.379724518457692e-05 3.059960227780323e-05 1.208022717946733e-05 5.924752796815369e-06 6.913837724553673e-06 6.495481395418778e-06 6.821265774448193e-06 6.906464061984252e-06 3.4230414520664e-06 3.253325747465396e-06 2.945484734340198e-06 2.975743132793696e-06 3.220809404069769e-06 2.611890167258935e-06 2.349135016288528e-06 2.362507217412713e-06 2.394192399890471e-06 4.931605218416735e-06 6.360687422102274e-06 7.813343110285587e-06 3.011470624869617e-06 4.370956919075297e-06 9.136328188219522e-06 7.740220141272403e-06 6.26712208884328e-06 5.026793822082709e-06 4.346121741605202e-06 4.081790137888675e-06 4.493286212436942e-06 7.546372962963233e-06 3.991262435221188e-06 7.122412927884625e-06 4.504257024251501e-06 4.004113289823863e-06 5.061052767985075e-06 7.373725360082517e-06 3.99590247113224e-06 5.619859930305893e-06 9.814416639386536e-06 1.876057302041545e-05 1.247275152138627e-05 8.636714714072014e-06 4.085167374512366e-05 1.066744686539778e-05 1.05226766251576e-05 1.147435800419316e-05 8.756952283306418e-06 1.14462781795055e-05 3.92878706634292e-06 4.414061493207555e-06 5.318012874511169e-06 5.486310264757321e-06 9.187511359698419e-06 9.702792802102067e-06 1.084968459608149e-05 8.333172427654745e-06 + 7.5092502562768e-06 6.481927485424421e-06 5.076387708413677e-06 5.62966968686851e-06 5.777772045689744e-06 5.962836368667013e-06 8.431827396293556e-06 4.614956736759268e-06 5.942648044765519e-06 5.196140065777399e-06 3.558003555781397e-06 5.780448141479155e-06 5.257237798872438e-06 5.621032231672984e-06 9.327939158865206e-06 1.36156993555403e-05 1.126761622138872e-05 3.846163666665348e-06 4.182579706579759e-06 4.595234639026557e-06 3.915122846365193e-06 3.253202720543413e-06 2.553497232327118e-06 2.486330675566251e-06 2.358232862320619e-06 2.220055151269662e-06 2.252947609804323e-06 3.252542555287619e-06 3.306971422034621e-06 3.599733950920836e-06 4.44520797060477e-06 7.730754324697386e-06 6.105231477704365e-06 4.224767103266913e-06 6.793643230196267e-06 5.558079138268113e-06 6.189678124712827e-06 5.163908085137336e-06 1.939866376332589e-05 6.50647979583141e-06 2.844476973962173e-06 2.929652151095752e-06 5.668267816005823e-06 8.20456512329315e-06 8.348219261655743e-06 3.520072855422995e-05 5.237524549173145e-06 4.028228799413114e-06 3.682115098158079e-06 3.772853945704924e-06 3.641890543804038e-06 3.628232509100826e-06 2.408775269913122e-06 2.638938482846243e-06 2.34691826150879e-06 2.367688868076812e-06 2.374686076223043e-06 2.035875283468158e-06 1.887973226644135e-06 1.8603100073733e-06 1.960138042989001e-06 2.922184535236738e-06 3.36940262002372e-06 3.869854751314961e-06 2.392512467253027e-06 2.912683260802851e-06 4.310442900390399e-06 3.870342219158829e-06 3.665773874672595e-06 3.218689229811389e-06 2.702810121490984e-06 2.651590165214657e-06 2.778304548201049e-06 3.967976134333639e-06 2.577309594187227e-06 4.16014835735723e-06 2.826101813013793e-06 2.602761842496193e-06 2.96882136296972e-06 3.670222078255847e-06 2.584585118370342e-06 3.174927979188169e-06 4.220814336264311e-06 7.175801943759552e-06 4.963078367836715e-06 3.976508654801592e-06 1.288035340962779e-05 4.545024246738194e-06 4.323162947628134e-06 4.536931783150067e-06 3.848220131885682e-06 4.624801960062541e-06 2.502474217180861e-06 2.774455424514599e-06 3.349036305166919e-06 3.385346502682296e-06 4.645386379564798e-06 4.910418439862951e-06 5.950029684953506e-06 4.792826356236901e-06 + 2.131594349918942e-06 2.035220560969719e-06 1.965682628224386e-06 2.010268190133502e-06 2.017454846736655e-06 2.044987709837187e-06 2.199081805542846e-06 1.959174753096704e-06 2.023031740350234e-06 1.983172140285205e-06 1.802666957928523e-06 1.996549606531062e-06 1.951178273174037e-06 1.981250612459462e-06 2.230048341544943e-06 2.497124281575225e-06 2.35620929522895e-06 1.84685540460805e-06 1.916967649506773e-06 1.881883875398671e-06 1.855424645924586e-06 1.785955678457185e-06 1.702829511174286e-06 1.6555001280949e-06 1.67231327452555e-06 1.628897308592059e-06 1.638632262768169e-06 1.755869888597772e-06 1.771736403810564e-06 1.794671966592887e-06 1.91393242232607e-06 2.11720377407687e-06 1.980960778524832e-06 1.828527151914727e-06 2.036949519279574e-06 1.954008627791382e-06 2.000969026028088e-06 1.898401166045005e-06 2.927926107787471e-06 2.04209086263063e-06 1.728455611527124e-06 1.73117738100359e-06 1.960347733032108e-06 2.14215503646642e-06 2.105212290715031e-06 2.830205069415115e-06 1.954661190239904e-06 1.803860582683114e-06 1.826803510240893e-06 1.816242850338767e-06 1.822805485218737e-06 1.824506231429268e-06 1.664683267676992e-06 1.657306022195826e-06 1.628690711186209e-06 1.631232024124074e-06 1.648937775655668e-06 1.588551910458591e-06 1.554168932216271e-06 1.556344543018895e-06 1.56260875883163e-06 1.749965854003221e-06 1.803316671100674e-06 1.851405272645934e-06 1.634246554971241e-06 1.724280302539682e-06 1.889031608470759e-06 1.849345522941803e-06 1.806581160224141e-06 1.757492476883726e-06 1.72420668320683e-06 1.707944903728276e-06 1.730634721752722e-06 1.845755029705742e-06 1.705526461392992e-06 1.839810710890788e-06 1.731184489983661e-06 1.705607200364057e-06 1.755315572893323e-06 1.838548328692013e-06 1.705686718977972e-06 1.777525710622285e-06 1.906546074792459e-06 2.079981637592709e-06 1.955019342858577e-06 1.87777549243151e-06 2.457009536271926e-06 1.921709412044947e-06 1.920620043449617e-06 1.937493664172507e-06 1.881125101022008e-06 1.934503288225642e-06 1.70171269076036e-06 1.726354781794726e-06 1.770744205487063e-06 1.777441973160876e-06 1.895646114746796e-06 1.91119655923444e-06 1.965502406164887e-06 1.884706616550602e-06 + 4.537897332568264e-06 4.315725604442378e-06 3.54519610823445e-06 3.730816715119545e-06 3.803992910889065e-06 3.780400689379348e-06 4.589617873307361e-06 3.250934057064114e-06 3.89208310025424e-06 3.549602325847445e-06 2.809099669320858e-06 3.956668841453848e-06 3.759641789002899e-06 3.935070754579328e-06 5.832188431753593e-06 7.120879525146506e-06 7.194741911575875e-06 2.989061739455678e-06 3.13548819441678e-06 3.325545097965232e-06 3.025503090725579e-06 2.649797945508681e-06 2.221853062422952e-06 2.131296074736611e-06 2.093762063282156e-06 1.990360807724301e-06 2.014468442723683e-06 2.577105128409585e-06 2.65284293732293e-06 2.799723972657375e-06 3.312867686844356e-06 5.06069158667799e-06 4.185333146722314e-06 3.036065789885356e-06 4.634173521367302e-06 3.910637701665109e-06 4.285874979359505e-06 3.521743039414105e-06 1.147909340915021e-05 4.33214717077135e-06 2.386331384940377e-06 2.418331796150142e-06 3.974341026946604e-06 5.424038970858192e-06 5.298968480005328e-06 1.687096487046347e-05 3.753888613289291e-06 2.888024644320808e-06 2.892253275987855e-06 2.906335454966325e-06 2.868552153145743e-06 2.861924670582994e-06 2.118733508638115e-06 2.158754938363927e-06 2.041102352023927e-06 2.051644290901322e-06 2.086386494681847e-06 1.85640850247637e-06 1.7511109717816e-06 1.728924104327234e-06 1.798946478004382e-06 2.446690327673195e-06 2.713236575857536e-06 2.9930916625176e-06 2.063462460455412e-06 2.391126944445432e-06 3.243606609970584e-06 2.991836893784239e-06 2.853507986344539e-06 2.578787103857394e-06 2.310601800559198e-06 2.269009826250112e-06 2.356275032866506e-06 3.031538362563424e-06 2.23706747704e-06 3.07195846716013e-06 2.383983510156895e-06 2.251244023199206e-06 2.475879945507131e-06 2.889499533864637e-06 2.242546003117241e-06 2.601453260808739e-06 3.179588766499819e-06 4.720419507719953e-06 3.537233244088611e-06 3.067846769511107e-06 7.23272132674424e-06 3.350250125322418e-06 3.194396789751863e-06 3.279498713482099e-06 2.95918160020392e-06 3.343167861658003e-06 2.18046169209174e-06 2.350501318915121e-06 2.65894921369636e-06 2.692177098140291e-06 3.393833164722082e-06 3.532784070614525e-06 4.052440580437633e-06 3.387300175461405e-06 + 1.901611900834155e-05 1.893348490966673e-05 1.216170642237557e-05 1.310397382781048e-05 1.369672035878011e-05 1.301770552686321e-05 1.829922089768843e-05 9.609967975166001e-06 1.449660786079221e-05 1.184978506785228e-05 7.998949655529941e-06 1.578611993124923e-05 1.496509160148207e-05 1.593729776416808e-05 3.291856031140128e-05 4.015908707089011e-05 5.014141330050848e-05 9.008824921608038e-06 9.124567531770822e-06 1.244017299484312e-05 9.20160462669628e-06 6.794539071819372e-06 4.524903065572516e-06 4.655018216226381e-06 3.838370673747704e-06 3.53364069383133e-06 3.602198034968751e-06 7.002436156255953e-06 7.209566796007039e-06 8.266596292827444e-06 1.087730178284119e-05 2.639881538968325e-05 2.012839938991817e-05 1.060802506636094e-05 2.377487438032233e-05 1.706020740854797e-05 2.000617649500214e-05 1.49628405274882e-05 9.201965796634681e-05 1.892467815522991e-05 5.665332935222978e-06 5.968608078887883e-06 1.765109884033222e-05 3.122050645565366e-05 3.098124346934128e-05 9.405916073923493e-05 1.465061722605299e-05 9.619654591119797e-06 8.392696658532373e-06 8.927341919928722e-06 8.209744505549565e-06 8.089065715921606e-06 4.176621516194245e-06 5.144522457811718e-06 4.253068922821512e-06 4.328293851330045e-06 4.170511644474573e-06 3.030132504022731e-06 2.636102919950645e-06 2.466851839244555e-06 2.912124827503249e-06 5.722640466387929e-06 7.041975251809163e-06 8.915719995172822e-06 4.406420945457512e-06 5.91371850333644e-06 1.08643944081166e-05 8.953837131286946e-06 8.485431486349171e-06 6.906608135182069e-06 5.003268697123531e-06 4.961995017538356e-06 5.310274474368271e-06 9.576156273283232e-06 4.622015271849023e-06 1.049734386526779e-05 5.557087860097454e-06 4.764997623141198e-06 5.869861592344705e-06 8.076491333497415e-06 4.667165478977608e-06 6.528979014319702e-06 9.678385694655844e-06 2.284876354252674e-05 1.224956687906342e-05 9.11756945853881e-06 4.375435577941289e-05 1.112106003375857e-05 9.6200787211842e-06 1.013760835633093e-05 8.10001114359693e-06 1.081748973774666e-05 4.222648499307979e-06 5.359120891057501e-06 7.355648087070676e-06 7.480964839601256e-06 1.268920675912e-05 1.392268158184606e-05 1.921488922818071e-05 1.329158233787098e-05 + 4.292292910434981e-05 4.470128634181947e-05 2.560797243233992e-05 2.783052966037758e-05 2.933209893285493e-05 2.768624838722644e-05 4.111393702999067e-05 1.937173223609534e-05 3.144345241423707e-05 2.472769310202239e-05 1.540343610884065e-05 3.546940092746809e-05 3.403209988306344e-05 3.619893792539131e-05 8.413660673944889e-05 0.0001001544904486451 0.0001441803144537346 1.767623376203176e-05 1.797706310746605e-05 2.80975115138915e-05 1.815608151289894e-05 1.209242162758528e-05 7.208005609271595e-06 7.493234626565481e-06 5.777195084988307e-06 5.035741857284393e-06 5.183545738418616e-06 1.346065291585319e-05 1.357965400927696e-05 1.650747243076012e-05 2.2383466856013e-05 6.667762263568022e-05 5.239529253131536e-05 2.374107362612676e-05 6.191132854560522e-05 4.168890538025494e-05 4.996504327792195e-05 3.823201214103733e-05 0.0002628714884380656 4.428113749455065e-05 9.707376406709045e-06 1.053467508427275e-05 4.356563353979936e-05 8.266985512861424e-05 9.275177787770872e-05 0.000475422862848518 3.276320097356233e-05 2.119445741577408e-05 1.611957142166887e-05 1.808233025357708e-05 1.563504877744037e-05 1.526559124442883e-05 6.312211969117243e-06 9.233428205135397e-06 6.628114093132353e-06 6.814867404614233e-06 6.287510117886086e-06 4.194981215732696e-06 3.574435140762944e-06 3.288521526201293e-06 3.989100932244583e-06 9.781513554685262e-06 1.263001120577201e-05 1.73913481731347e-05 7.005909651525144e-06 1.050869159513468e-05 2.265703482962067e-05 1.752531832011073e-05 1.689863482567944e-05 1.305921986727299e-05 8.274597291801911e-06 8.136061865116062e-06 8.923171833430388e-06 1.950712184140002e-05 7.409808855385336e-06 2.275444057531217e-05 9.440240503977293e-06 7.688331429278605e-06 1.008655092959998e-05 1.514516060652227e-05 7.495318888217639e-06 1.149813567735691e-05 1.927982631499958e-05 5.625058917857473e-05 2.580729927359471e-05 1.781737267236849e-05 0.0001132928580993564 2.305130055901827e-05 1.921178971997506e-05 2.05188398183509e-05 1.545819198156551e-05 2.226971231777952e-05 6.657781199237434e-06 9.025870284062876e-06 1.418002401720742e-05 1.437257746772502e-05 2.834971010301501e-05 3.2108288525734e-05 5.033799634546199e-05 3.139213184866207e-05 + 5.798952764735077e-05 5.299229648869641e-05 3.42716461574355e-05 3.845240077282597e-05 3.995993493788319e-05 4.11055548852346e-05 6.345003912144875e-05 2.933956683648375e-05 4.185869191530855e-05 3.460359910434363e-05 1.705826817044453e-05 4.333208747908657e-05 3.953089370867247e-05 4.273339642502094e-05 9.313586130588192e-05 0.0001266657198133458 0.0001454380109358056 2.053653908085096e-05 2.562468452538269e-05 2.95766023796773e-05 2.14058848229115e-05 1.428599486885673e-05 8.691668512028627e-06 6.898364375729216e-06 7.022381907972886e-06 5.461767166536902e-06 5.732021200799409e-06 1.378645828253866e-05 1.462241084837501e-05 1.732923876573977e-05 2.854990350442677e-05 7.312160576056215e-05 5.406554037890032e-05 2.331229796581624e-05 6.544797473218011e-05 4.498022435228677e-05 5.474022153251212e-05 3.693199719734253e-05 0.0002740400539344989 5.238048791866845e-05 1.072678896818502e-05 1.114521800715806e-05 4.660186263016897e-05 8.572947174023682e-05 8.756077393101691e-05 0.0003238301982992908 3.849049952187045e-05 2.027991326869483e-05 1.844165461406533e-05 1.919975345643365e-05 1.795501330548177e-05 1.78197871996133e-05 6.750783391851201e-06 7.765043232410562e-06 5.986064760321597e-06 6.114770062737307e-06 6.27375253259288e-06 4.58562311678179e-06 4.01017271656201e-06 3.905027583073206e-06 4.183449227923575e-06 1.179593233047171e-05 1.530196315968624e-05 2.068012649658613e-05 6.245730226339674e-06 1.074123255051518e-05 2.678226059060762e-05 2.062843076089393e-05 1.813677400974711e-05 1.373056258557881e-05 1.010122406341907e-05 9.201552018112125e-06 1.065120163445954e-05 2.166481795740083e-05 8.877143038432678e-06 2.340666802069791e-05 1.080895050264985e-05 8.9439633974564e-06 1.213537120392516e-05 1.853189522904586e-05 8.90394437824682e-06 1.366153796311664e-05 2.595028273688627e-05 6.387644142691329e-05 3.359095373411947e-05 2.289043805348001e-05 0.0001326121227194221 2.965070715532647e-05 2.690844264208181e-05 2.891325196685557e-05 2.174513461739025e-05 3.009080501215067e-05 8.487023123393556e-06 1.046953104832937e-05 1.497702291430869e-05 1.538348685414803e-05 3.085448396689117e-05 3.463468526732072e-05 5.106534944943064e-05 3.184340500439475e-05 + 7.747069728480938e-05 5.243145658084813e-05 4.503500009889194e-05 5.366955139152196e-05 5.465249397218486e-05 6.365285291565215e-05 0.0001028004118381887 4.566386067494932e-05 5.517723107573147e-05 4.889681791553357e-05 1.834231473196724e-05 4.742863617934745e-05 3.814165170723527e-05 4.288371625094101e-05 7.553728815601346e-05 0.0001447367655185161 7.28626526083076e-05 2.275914357063868e-05 3.683307166824079e-05 2.425468710498535e-05 2.416423843243365e-05 1.749431769226817e-05 1.12555115023838e-05 6.519635991963924e-06 9.386971896674368e-06 6.594688784389291e-06 7.038909373591196e-06 1.284786785049619e-05 1.510516079505919e-05 1.647056882347897e-05 3.475500736627168e-05 5.735092720549062e-05 3.368861281316526e-05 1.750634364228176e-05 4.337230955719917e-05 3.36973558106024e-05 4.139075023346095e-05 2.202957511698855e-05 0.0001668546164346196 5.218316223931652e-05 1.219381823602816e-05 1.171639078734188e-05 3.381139971381231e-05 5.416844699013268e-05 3.828786933812722e-05 6.140629996131963e-05 3.860477555761577e-05 1.491780145990163e-05 2.044121878341798e-05 1.833818408591981e-05 2.020001774916125e-05 2.066406493739237e-05 7.793833674440975e-06 5.871041121707776e-06 5.676373426410919e-06 5.727991904791452e-06 6.746555825998257e-06 5.58256722626993e-06 4.908534890546434e-06 4.978561804591664e-06 4.798272854600327e-06 1.506325781264195e-05 1.936084860432175e-05 2.399597981650459e-05 5.756316117100369e-06 1.067018459366409e-05 2.896596646095873e-05 2.356770412603737e-05 1.800184656985948e-05 1.357550178227029e-05 1.319514470310423e-05 1.106873079947945e-05 1.35149241060617e-05 2.208589626206958e-05 1.138849577131396e-05 1.97799850809588e-05 1.293345437147764e-05 1.108138318528518e-05 1.543134091619436e-05 2.291243009722166e-05 1.128320197096855e-05 1.697398483457846e-05 3.462567353551549e-05 5.547670010841443e-05 4.20560358556088e-05 2.903732248782376e-05 0.0001238210140392937 3.652150900990137e-05 3.797779312009197e-05 4.105626821626629e-05 3.158197806385488e-05 4.01483247003398e-05 1.17634222505103e-05 1.282779565769943e-05 1.474009198432213e-05 1.555363943595012e-05 2.706785506134679e-05 2.84806011592309e-05 3.058611110873244e-05 2.28817624616795e-05 + 0.0001845244582092676 0.0001272882031742029 9.361028358512158e-05 0.0001165944782570705 0.000120285145257526 0.0001405188198333462 0.0002425926947182688 8.982303879179199e-05 0.0001237304276315854 0.0001023248286458056 3.746743796284591e-05 0.0001060576786571232 8.246656294730315e-05 9.41997042431808e-05 0.0002231061322532923 0.0004268705871552925 0.0002809275264290534 4.495620683186985e-05 6.906100104053792e-05 5.507982047348037e-05 4.798153960194895e-05 3.299772753351249e-05 1.937748147184948e-05 1.259285926380471e-05 1.568964300702191e-05 1.119997652665461e-05 1.18996899090007e-05 2.508148836000146e-05 2.927660442963997e-05 3.334938993759806e-05 6.830527236445505e-05 0.0001574232719576685 8.804482027358063e-05 3.932556914243435e-05 0.0001144803454398158 7.938469174106899e-05 0.0001008491237683984 5.996675599106993e-05 0.000755557967607956 0.0001248069986203859 2.222322177658498e-05 2.184819873818356e-05 8.021286451409537e-05 0.0001616877484167389 0.0001295171340807144 0.0003711612240007156 8.185491878798246e-05 3.243689577736575e-05 4.040668201099606e-05 3.781485925458128e-05 3.996987474685909e-05 4.071232183733287e-05 1.377480437625422e-05 1.19418436455021e-05 1.050131936253251e-05 1.071421419140961e-05 1.247527205094912e-05 9.01312139944821e-06 7.458024171569377e-06 7.297931375660482e-06 7.529178908782796e-06 2.739387424455231e-05 3.709043574673387e-05 4.80363366648362e-05 1.082020263254435e-05 2.020138564873264e-05 5.871371927312907e-05 4.747133770166556e-05 3.712028583890969e-05 2.632494021526099e-05 2.354587903141692e-05 2.025877350320116e-05 2.44511810478798e-05 4.626090883164125e-05 1.972984992093529e-05 4.369086246214238e-05 2.341416734097379e-05 1.950597781075203e-05 2.818676967564215e-05 4.440821178519627e-05 1.948877320501197e-05 3.181306057697952e-05 6.630884697855777e-05 0.0001443706574804082 8.598558632755271e-05 5.545507268323036e-05 0.0003905741770147131 7.26888732884845e-05 7.35316666080621e-05 8.099599219235643e-05 5.969775779135489e-05 8.054696154147223e-05 1.999070032354666e-05 2.333519884700763e-05 2.899475902040649e-05 3.071043926183847e-05 5.895218360407739e-05 6.380603687361486e-05 8.277145632007432e-05 5.549883744038198e-05 + 0.0004481159531728451 0.0002952949224663826 0.0001995692295508888 0.0002609312983423706 0.0002717503612075234 0.000321765673874097 0.000597982469884073 0.0001830326191907261 0.0002828324592769604 0.0002213640309065568 6.890755174993046e-05 0.0002357423381482704 0.0001727744840742673 0.0002028346585145613 0.000553872699777358 0.001205510107705976 0.0006408147280136944 8.428008337446613e-05 0.0001332697237561575 0.0001069597692335833 9.119017587266853e-05 5.80451206317889e-05 3.099937773143324e-05 2.023171636267307e-05 2.495951028436139e-05 1.755128051428301e-05 1.873253108897188e-05 4.252244058733368e-05 5.060925588296072e-05 5.901130862895343e-05 0.0001356666886174196 0.0003675435066341493 0.0001732972500949614 6.946356574744073e-05 0.0002413651095540814 0.0001606542988703552 0.0002135409686800926 0.0001064372144767844 0.002072242743057728 0.0002867319744446206 3.636374216497984e-05 3.619515897312908e-05 0.0001613255916499412 0.0003615011927458056 0.0002399782192750166 0.000571299924397195 0.0001705437945389576 5.514680958640383e-05 7.453271641644221e-05 6.875769558867262e-05 7.37491734508211e-05 7.542050891018448e-05 2.182793136284999e-05 1.8722302250751e-05 1.614305736552524e-05 1.659922320129681e-05 1.994905182556295e-05 1.348798087974501e-05 1.075796973282195e-05 1.088553769079681e-05 1.062058328216153e-05 4.598985831094637e-05 6.715295776160701e-05 9.191670472574742e-05 1.676472182055022e-05 3.350351655484474e-05 0.0001154399679741402 9.083384996699806e-05 6.761464104698689e-05 4.497538243697363e-05 3.86447946283397e-05 3.320531283179662e-05 4.034222727966608e-05 8.845919298750005e-05 3.160430050286323e-05 8.120609659911793e-05 3.836225311104613e-05 3.127757064547154e-05 4.761611846149094e-05 8.299141293122148e-05 3.108050388078709e-05 5.546116195631612e-05 0.0001292355329276518 0.0003375855441660747 0.0001796676277123765 0.0001057213893105313 0.00107942465760047 0.0001464733452678502 0.000145546107511052 0.0001641744711804449 0.0001131610073201728 0.0001650678437812303 3.225480166690886e-05 3.837874842815836e-05 5.017944322815993e-05 5.370745132893262e-05 0.0001162104098497707 0.0001266237407051563 0.0001588706364223924 0.0001046007634926127 + 0.0008372100696334428 0.0004778282610260476 0.0003461503222013107 0.0004793617127347716 0.0004972832293077545 0.0006241909568700521 0.001228067939791799 0.0003336574514634094 0.0005124175744697368 0.0004010031750425469 9.263883291055208e-05 0.00038728336728866 0.00025789257080433 0.000314626834235554 0.0008837484809482987 0.002355024943511808 0.0008872277613711788 0.0001196061230501755 0.0002265993148338197 0.0001368169344004855 0.0001318150482951808 8.296368806171017e-05 4.407060272981767e-05 2.417156242628948e-05 3.728627626742309e-05 2.530426616687009e-05 2.72624309047842e-05 5.19656317194972e-05 6.473964048225866e-05 7.400267153201412e-05 0.0002152493771738762 0.0005534554464201591 0.0002149489524061465 8.001103854304858e-05 0.0003226727875667024 0.0002132395555953792 0.0002970799757200382 0.0001169519300212585 0.003442213909462311 0.0004611143475585777 4.764530319789628e-05 4.570907557166493e-05 0.0002116457939749239 0.0004981268453025933 0.0002612000021526839 0.0006733593227501444 0.0002583285314727846 6.230585589328541e-05 0.0001038329575102637 8.795268258054989e-05 0.0001032508811391608 0.0001076249191029888 2.941585665183766e-05 2.017083481220538e-05 1.933909419804536e-05 1.9722223385088e-05 2.571577111609713e-05 1.978478408659612e-05 1.579651524252768e-05 1.659885390381532e-05 1.475647993487428e-05 6.55816505883422e-05 9.953268425277884e-05 0.0001344813166781478 1.975696691047801e-05 4.130527015533403e-05 0.0001693093405989998 0.000131613656677132 8.758356023719216e-05 5.620392282423836e-05 5.487194658826411e-05 4.447056204526234e-05 5.627053612045074e-05 0.0001208343458642958 4.45553920691566e-05 0.0001003908245706953 5.175388456990504e-05 4.296896746680545e-05 6.803531784882466e-05 0.0001243124982117649 4.35039547053151e-05 7.948488070752546e-05 0.0002118966227939723 0.0005243001991779295 0.000301134901338429 0.0001651400396021074 0.001957136568599083 0.0002358044625907496 0.0002476821193795331 0.00028499545770444 0.0001887692155975174 0.0002791839472848778 4.819104441367017e-05 5.222840106000604e-05 6.302932487756152e-05 6.84560669483858e-05 0.0001559157600610206 0.0001676528721965553 0.0001901351851678612 0.0001253573561932342 + 0.001359628023564596 0.0008748037628834027 0.0005959510090463027 0.0008135523123371513 0.0008444428743104027 0.001062075266602847 0.00210393524142205 0.0005526954612520285 0.0008774921329433027 0.0006803962196499924 0.0002039600460932434 0.0006871078423316135 0.0004941847118686837 0.0005580594886396284 0.001488371393396193 0.003774089827579985 0.001714475419326789 0.0002139417247519759 0.000361883404242036 0.0003174024204568582 0.0002375850559559467 0.0001497545808426537 7.599630772858745e-05 6.026832958738737e-05 6.147362057618011e-05 4.616246915389866e-05 4.852799526133822e-05 0.0001390437100070585 0.0001453442293914975 0.0001723959107025053 0.0003670514707359018 0.0009833839408965872 0.000534603133914402 0.0002244313565444855 0.0006980432857872643 0.0004728848875146241 0.0006167528592513349 0.0003906310248389389 0.005659812756302784 0.0007959316455519172 9.800777962709617e-05 0.0001045811294488885 0.0004619061618260645 0.0009685328611173105 0.0008048681363010957 0.003455329573933241 0.0004619303714488154 0.0001907013984947525 0.0001902961645505741 0.0001880224207955195 0.0001912823737466596 0.0001971502067590336 5.525705200781772e-05 7.401100910797709e-05 4.948837448282006e-05 5.232296728152619e-05 5.510122723961786e-05 3.583474240542728e-05 2.725592750607575e-05 2.541590068005917e-05 2.865056470113814e-05 0.0001197217282609131 0.000178459613842108 0.0002476088216880612 5.25149096013422e-05 0.000100829746092046 0.0003129546440412412 0.0002456172559064385 0.0001985974464489004 0.0001449821510206561 0.0001006893779873508 9.326949538035478e-05 0.000107625718072768 0.0002463725963579577 7.793031454994548e-05 0.0002433901341696298 0.0001014280368210052 7.884455360951392e-05 0.0001237082881502261 0.0002175391536169968 7.565789511687626e-05 0.0001447814409942794 0.0003506742834993304 0.0009389772843881872 0.0005104868090768377 0.0002770458542897813 0.003165757413547965 0.0004081532127102605 0.0004128185967999798 0.0004790989317626781 0.0003129150123726276 0.0004829933252068486 7.894552062737148e-05 0.0001046941975459958 0.0001586764698870979 0.0001632145557977083 0.0003274183543915399 0.0003650408551045814 0.0005209830080268318 0.0003298670589266806 + 0.002068566989485987 0.001811357717215856 0.00102291359783635 0.001306639121978037 0.001369278649377748 0.001609685404517336 0.003071985183254355 0.0008200748681446157 0.001469905898304091 0.001096554127087757 0.0004538024874136681 0.001311815127728266 0.001048344864283735 0.001071610630805964 0.002867417741095224 0.005510058523723771 0.004105056822867326 0.0003945754853038608 0.0005340543154783717 0.0007747747374367009 0.0004467594438146705 0.0002603162061127762 0.0001177601100792458 0.0001035249778702507 8.489693270519183e-05 6.502001432551197e-05 6.820022544218318e-05 0.0003012099090469178 0.0002977944263626853 0.0003767957471616512 0.0006427843787655263 0.002055028291245264 0.001410822335403239 0.0005539743929414698 0.001760918968903624 0.001136834482664995 0.001454963956508237 0.001113933498231745 0.0104145798540749 0.001503707474629579 0.0001773837363110431 0.0002011228123457443 0.001084120322531135 0.002298881569327449 0.002494263556760856 0.01305039452259749 0.0008895720818582475 0.0004600004040398176 0.0003541993712410374 0.0003993062973020045 0.0003595498585386991 0.0003666380863514007 8.581011510244707e-05 0.0001286887334437381 7.851142749615292e-05 8.519881125934603e-05 9.081826122070424e-05 4.574870712303891e-05 3.237449786297475e-05 2.929900570336486e-05 3.49840766986631e-05 0.0002043419912105549 0.0003140790132079019 0.0004785043821797785 8.496630311682907e-05 0.0001963735381877996 0.0006235416361306534 0.000482643950888928 0.0004471500777327719 0.0003171105562103094 0.000171631854016141 0.0001754481154705445 0.000190999890293142 0.0005358743504828567 0.0001229411454559681 0.0005893754123711403 0.0001800395056648085 0.00012989186950918 0.0002108518354724254 0.0003850676959764598 0.0001181182537113301 0.0002521995574120695 0.0005721722283418273 0.001945064880032987 0.000869290684839541 0.0004688680662390254 0.005162925933905882 0.0007304990550167645 0.0006654289156742266 0.0007769050287862456 0.0004936492349543187 0.0008461710238947262 0.0001141614986011064 0.0001919320466043928 0.0003526301434035872 0.0003571508179120997 0.000741570009342496 0.00085249160625267 0.001450909872797723 0.0008521167842125976 + + +# name: Varft_ep +# type: matrix +# rows: 400 +# columns: 1 + 14.0900194061189 + 11.38909438407756 + 8.797813613957807 + 6.514159663345296 + 4.720002239650498 + 3.518909884107799 + 2.883304605913445 + 2.652761245302532 + 2.600885548878733 + 2.538059296274739 + 2.381685052174465 + 2.149769765717714 + 1.902055277438816 + 1.689993453907075 + 1.547262296780879 + 1.508891060249503 + 1.640755797070053 + 2.068588694172313 + 2.98225065801158 + 4.583377500214009 + 13.49218950538554 + 10.73266109078654 + 8.11561530064742 + 5.837380776749164 + 4.070256669316812 + 2.903210721950124 + 2.295518766978624 + 2.081320678860617 + 2.03790457950047 + 1.984202827863193 + 1.844763296911598 + 1.639437069250384 + 1.424599398626611 + 1.245467538890836 + 1.128233910152037 + 1.098974947808671 + 1.213490238123878 + 1.590763682876343 + 2.425407299235719 + 3.94076179540091 + 12.93699496097401 + 10.1280197717284 + 7.494790125653367 + 5.231665848017627 + 3.500376917020464 + 2.373951072581615 + 1.797749504248081 + 1.600942905270696 + 1.565879643092405 + 1.521262060547844 + 1.399053871562167 + 1.220432242364637 + 1.037852690601422 + 0.8902653832753238 + 0.7968869765215345 + 0.7755310902168482 + 0.8722299097147506 + 1.198603629690734 + 1.952409577995855 + 3.376848132406952 + 12.43090388119038 + 9.580352366756802 + 6.938426880444574 + 4.697612564104727 + 3.008570731847428 + 1.927460113029447 + 1.385136712136998 + 1.206174846297206 + 1.17908150117027 + 1.143238858645265 + 1.038097028016892 + 0.8856043193351084 + 0.7338311767624148 + 0.6155729050223293 + 0.5437654563816814 + 0.5289225223079086 + 0.6079926112213911 + 0.8849579387495332 + 1.559156625932573 + 2.891343293013083 + 11.97962884790231 + 9.093828584702596 + 6.448306963751889 + 4.234208085466641 + 2.59117754768862 + 1.558038749291494 + 1.050747194634884 + 0.8895288290969994 + 0.8698113751445788 + 0.8422180687851366 + 0.7535567411716038 + 0.6259815742302663 + 0.5028229237211619 + 0.4109780822902636 + 0.3579592193597101 + 0.3481797765918984 + 0.4105336962827408 + 0.6414333845651434 + 1.240315658246768 + 2.482782960288599 + 11.58802829861106 + 8.671604428552644 + 6.025029158226435 + 3.839087726886483 + 2.243046917705083 + 1.258429432331745 + 0.7861046551120658 + 0.6420484076367536 + 0.6289893305822574 + 0.6089745348175057 + 0.5358467210624944 + 0.431416866564291 + 0.3340521327736035 + 0.2651537724206925 + 0.2278053370746242 + 0.2217131869856921 + 0.2690442253591456 + 0.4590307379444134 + 0.9898375602951823 + 2.148877661558714 + 11.26004062949252 + 8.315866995696137 + 5.668195903602086 + 3.508869567394054 + 1.958003283711783 + 1.020376319060116 + 0.5818077897411484 + 0.4539564962284501 + 0.4468189487312557 + 0.4336517390784955 + 0.3748239528845012 + 0.2912950738070883 + 0.2163972793067579 + 0.1665841725676991 + 0.1416218892616641 + 0.1380484231061843 + 0.1728673925658342 + 0.3287998960202501 + 0.8014946384455683 + 1.886884397676802 + 10.99865180517926 + 8.027919952979168 + 5.376647740676255 + 3.239543866426907 + 1.729369205577903 + 0.8352427474601214 + 0.4281998067631712 + 0.3153465431960925 + 0.3134870452549983 + 0.3064693606934874 + 0.2605062424897504 + 0.1952590941252872 + 0.1391204316335184 + 0.1042927316906521 + 0.08843212014380342 + 0.0865423973157462 + 0.1121899381201814 + 0.2424717898726421 + 0.6694037925537373 + 1.693975680170375 + 10.80589515446784 + 7.808301162322461 + 5.148728816343169 + 3.026891668107559 + 1.550514335291638 + 0.6946482910106795 + 0.3160485242670994 + 0.2168739896033109 + 0.2198543101921651 + 0.2184145861915674 + 0.1837681551257049 + 0.1339092752523854 + 0.09256391030403677 + 0.06852919399660706 + 0.05863756252442442 + 0.05803824243270128 + 0.0786672142966971 + 0.1930271772252858 + 0.5884996183032882 + 1.567578170945161 + 10.68288004932904 + 7.656921595669655 + 4.982563671336106 + 2.866904100531727 + 1.415394615657732 + 0.5910853008833641 + 0.237194614356536 + 0.1504045622187178 + 0.1580928233352736 + 0.1618726420812173 + 0.1369707506863804 + 0.09943248054680254 + 0.06877223228588747 + 0.0513758406879532 + 0.04460191352657361 + 0.04542203252981381 + 0.06594508699571477 + 0.1751669098344273 + 0.5549257251758739 + 1.505655716240778 + 10.62984447538918 + 7.573213148072412 + 4.876324248705139 + 2.756172922102227 + 1.319045708768844 + 0.5184750807555147 + 0.1851267278781954 + 0.1095781225345718 + 0.1222294579384062 + 0.131155710339776 + 0.1144845756361299 + 0.08612124529612686 + 0.06200168207750778 + 0.04723770036494557 + 0.04111272515104503 + 0.04404996733096667 + 0.07004853630758134 + 0.1856550099523133 + 0.5663185358842959 + 1.506916062294369 + 10.64622525432992 + 7.556272399231169 + 4.828466337423354 + 2.692224004292981 + 1.257996657036681 + 0.4726267470397083 + 0.155446137437302 + 0.09025172036655604 + 0.1085600234415836 + 0.122895880429958 + 0.1130721874273135 + 0.09075031471125072 + 0.06908656899728527 + 0.05318820467284624 + 0.04569500353911593 + 0.05202242982094063 + 0.08961516791863033 + 0.223514373320139 + 0.6219655350005553 + 1.570926559714984 + 10.73073898637977 + 7.604987875977564 + 4.837916559820737 + 2.673768690631668 + 1.230574220418902 + 0.4515673055037048 + 0.146189981114258 + 0.09079288085334625 + 0.1159072215310069 + 0.1362766306794398 + 0.1321055860706402 + 0.1127868304999993 + 0.08963984225261967 + 0.06915007397614659 + 0.05875917565486688 + 0.07029017624889633 + 0.125961300080693 + 0.2900645236694075 + 0.7228287665512312 + 1.698131217979469 + 10.88146670957086 + 7.718139930723137 + 4.904194450242144 + 2.700853191323425 + 1.237075006529082 + 0.4557192397433099 + 0.1579908049394199 + 0.1122035209990244 + 0.1457055428552003 + 0.173087900359512 + 0.1736046787844145 + 0.1544209516457684 + 0.1260757176368656 + 0.09790066444686829 + 0.08357513214967938 + 0.1025874302307166 + 0.1829782635700532 + 0.3888009215374808 + 0.8714336904407674 + 1.889769001543883 + 11.09593582898414 + 7.894464877446456 + 5.027458946726977 + 2.774893052506936 + 1.279791025740767 + 0.4879115004194432 + 0.1940603627098447 + 0.1580656431130869 + 0.2019074342674827 + 0.2376013782786721 + 0.2420945680546929 + 0.2204150687800421 + 0.1834527247700599 + 0.1449010858875504 + 0.1260737255137485 + 0.1551963344183989 + 0.2668664708005153 + 0.5251252286740922 + 1.071632633902244 + 2.14770068263747 + 11.37119399930004 + 8.132678327599425 + 5.208474392617333 + 2.898587817533205 + 1.362884109960746 + 0.5532205974154003 + 0.2599968834065329 + 0.2343113849566159 + 0.2907166618599639 + 0.3362743973287294 + 0.3442912349449188 + 0.3177812608027502 + 0.269146472014306 + 0.2179585736302911 + 0.19448672059956 + 0.2365565858334051 + 0.385724135498652 + 0.7059450410281016 + 1.328260392192689 + 2.47415832416451 + 11.70387123433094 + 8.431456472795556 + 5.448497481417352 + 3.075719690672194 + 1.492115051255716 + 0.6586498038473749 + 0.3634265157259762 + 0.3488313613996183 + 0.4201659999812613 + 0.4773019818755131 + 0.4886362891098806 + 0.4553075010398651 + 0.3923717948908134 + 0.3267413186797938 + 0.2988452846227183 + 0.3567426871105219 + 0.5490157668085125 + 0.9391693930522003 + 1.646706495451308 + 2.871437066407136 + 12.09022840558127 + 8.789378039937873 + 5.749092966113867 + 3.31084865667103 + 1.674443582555178 + 0.8126654848738681 + 0.5135006193276759 + 0.5109457432277402 + 0.5995664325716099 + 0.6700463869198607 + 0.6847111257808365 + 0.6429626402893973 + 0.5635831683780737 + 0.4821736809082608 + 0.4503651935139992 + 0.526838653962848 + 0.7669522938878295 + 1.233132363616395 + 2.032433828822935 + 3.341552941431292 + 12.52619228294741 + 9.204833439192502 + 6.111891856995161 + 3.608924411665864 + 1.917524651094315 + 1.024619456595996 + 0.7202802171159668 + 0.730771461583906 + 0.8388632776714502 + 0.9243812324996128 + 0.9425684188260561 + 0.8912177495030313 + 0.7937897406701069 + 0.6957469073956872 + 0.6607535641758204 + 0.7582458315430181 + 1.049819543921149 + 1.595981050941365 + 2.490476366660197 + 3.885892674298265 + 13.0073791564537 + 9.675910883333469 + 6.538310735988095 + 3.974841965643478 + 2.22913408212542 + 1.304094303539948 + 0.9940465443718161 + 1.018525671611915 + 1.147940478366031 + 1.249992554086951 + 1.27202388226101 + 1.210326492306738 + 1.093826589589664 + 0.9787856809894713 + 0.9414766774274241 + 1.061963340648546 + 1.407294527742319 + 2.03506582699568 + 3.024949602601499 + 4.504881728100742 + + +# name: Varft_la +# type: matrix +# rows: 400 +# columns: 1 + 19.77589702069682 + 16.58872588293532 + 13.00070474747257 + 9.509299541880171 + 6.607098991765515 + 4.591248895390454 + 3.469371633937396 + 3.004325425565263 + 2.860084249008363 + 2.762305467958083 + 2.585622372453436 + 2.334121609580951 + 2.063243426700787 + 1.822321095716529 + 1.648200763797004 + 1.586158806266191 + 1.714726484984961 + 2.166296473799338 + 3.123856997177949 + 4.769437505351053 + 19.35405321810384 + 16.00908625870847 + 12.29185128404588 + 8.730332676207478 + 5.823583517081875 + 3.848121536830117 + 2.779061919059668 + 2.355553362076741 + 2.236580669372898 + 2.156480762412755 + 2.000757699283088 + 1.77870999715233 + 1.544286663870984 + 1.341284856660454 + 1.198805986021529 + 1.151687363950362 + 1.265649655413409 + 1.663502465312295 + 2.532271265101521 + 4.078906425013024 + 18.94047813496924 + 15.44857055089584 + 11.61861661599832 + 8.007244101451459 + 5.115844498010105 + 3.195823783004411 + 2.187519238483116 + 1.807476823693758 + 1.712887576408825 + 1.649526690502075 + 1.514587269603211 + 1.321908996459442 + 1.123135996233795 + 0.956372705387615 + 0.8434293811239577 + 0.8093593157863133 + 0.9074081885471728 + 1.250266566439681 + 2.027467937973331 + 3.469108155303317 + 18.53901416681011 + 14.9118219481393 + 10.98562327148085 + 7.34353799516898 + 4.485331216672904 + 2.63338142282635 + 1.69163993634411 + 1.355543837423738 + 1.283643256618458 + 1.235579564838314 + 1.120712716596074 + 0.9565932284322543 + 0.7917720968004147 + 0.6586214752984922 + 0.572296009698352 + 0.5490514896682868 + 0.6305155115765935 + 0.919237789620432 + 1.605833404540142 + 2.941154610487967 + 18.15335313833365 + 14.4029905626906 + 10.39646052107 + 6.741027389607783 + 3.931191415647195 + 2.157123322258137 + 1.285509564898014 + 0.9924889631077143 + 0.940940180911344 + 0.9063631522962581 + 0.810406434733018 + 0.6733857010497921 + 0.540040348046265 + 0.4370994362456138 + 0.3738596867741251 + 0.3590602685792241 + 0.424054692562251 + 0.6617382515667884 + 1.262517863087623 + 2.495050697747274 + 17.78700617381107 + 13.92572848388819 + 9.853740002542491 + 6.19998959616392 + 3.450555524842819 + 1.761101150673056 + 0.9609404273949984 + 0.708956204820602 + 0.6750007398358697 + 0.6518946545738373 + 0.5733360409898509 + 0.461395267700869 + 0.3563995391009946 + 0.2796695188501808 + 0.2355874786538337 + 0.2269056271887848 + 0.2764733514625668 + 0.4684846501542062 + 0.9919990502117564 + 2.130032620102408 + 17.44329150718511 + 13.48322509210229 + 9.359223095315841 + 5.719427972170003 + 3.038955113159748 + 1.437656207210409 + 0.7081527005021577 + 0.4942518160780338 + 0.4749679006586334 + 0.4612946290284583 + 0.3983852658215454 + 0.3090428244236278 + 0.228748487656329 + 0.1738160230674595 + 0.144791257814969 + 0.1401667612461921 + 0.1763987744755404 + 0.3303242019508836 + 0.7886591447254752 + 1.844919368515338 + 17.12533812243241 + 13.07827734170823 + 8.914009501891968 + 5.297422160047933 + 2.690848943672119 + 1.178097726501015 + 0.5165555175423471 + 0.337177218992931 + 0.3297569264333866 + 0.3236448661620663 + 0.2745149549983452 + 0.2049211787649412 + 0.1452777633311975 + 0.1074840227262222 + 0.08945607309343018 + 0.08729792106031198 + 0.1134206748036988 + 0.2389342456183741 + 0.6473311017001286 + 1.638445932450253 + 16.8361012222681 + 12.71338608752328 + 8.518770637919541 + 4.931540912755061 + 2.400220618098132 + 0.9734475435499022 + 0.3755759619973311 + 0.2268854418743125 + 0.2289089398052191 + 0.2288338577352746 + 0.1916041194781535 + 0.1386304317597542 + 0.09529151782546208 + 0.06987974298729682 + 0.0590155905344254 + 0.05837493495433677 + 0.07879191024826326 + 0.1874379398079675 + 0.5637736019705883 + 1.509548991025444 + 16.57838397283501 + 12.39086655459933 + 8.174006699892079 + 4.619285318726572 + 2.161204785681772 + 0.815199547989117 + 0.2754791391586089 + 0.1537018004693849 + 0.1633862326095041 + 0.168329737383683 + 0.1412117821987451 + 0.1015318619302974 + 0.06994600954052999 + 0.0521825302853216 + 0.0450283716565707 + 0.04572783823020643 + 0.06600362500322277 + 0.1708951432526042 + 0.5350399479910202 + 1.457580618847068 + 16.35485896107869 + 12.11295908635273 + 7.88030319701889 + 4.358526327668294 + 1.968694989767972 + 0.6960396119670413 + 0.2081218431913285 + 0.1098512834125849 + 0.1262529318090166 + 0.1358254726661698 + 0.1172057074770088 + 0.08736861656264949 + 0.06285661908919238 + 0.04812443701264257 + 0.04171494117713692 + 0.04442253291497877 + 0.07120014293375121 + 0.1866370271525675 + 0.5597150064623797 + 1.482432373085523 + 16.16808248223867 + 11.88192562113827 + 7.638561703785708 + 4.147899452861459 + 1.818885930195599 + 0.6104730102453324 + 0.1675859778898534 + 0.09004117341442708 + 0.1131926627521587 + 0.1277102562280703 + 0.1162135522927521 + 0.09271060665351172 + 0.07053361432137706 + 0.0544015229646817 + 0.04632400154174121 + 0.05256390844875369 + 0.0934097715250104 + 0.2344244153160702 + 0.6380048933484161 + 1.584560359549467 + 16.02049523244753 + 11.70011809679387 + 7.450180837577037 + 3.98712164445557 + 1.709706439236204 + 0.5553118194980904 + 0.1506456425685521 + 0.09185741285967453 + 0.1228265734909719 + 0.1433337480911838 + 0.137864802812782 + 0.1171931868507627 + 0.09261805606447382 + 0.07089122039905504 + 0.05930625282466906 + 0.07140371744355534 + 0.1345796793515248 + 0.3164223531061445 + 0.7716755973904448 + 1.764910733004488 + 15.91440421873005 + 11.57000717850224 + 7.317167002998861 + 3.877200568148051 + 1.641106683267292 + 0.5299840970872864 + 0.1570331472245421 + 0.1159463619779189 + 0.156809570397769 + 0.1850450356395577 + 0.1848070382565652 + 0.1635335708695429 + 0.13190228951051 + 0.1006619116211418 + 0.08428551211180135 + 0.1052480815809638 + 0.1994153816703417 + 0.4369960311436216 + 0.9638481918552486 + 2.024753768078281 + 15.85194263007482 + 11.49416320617609 + 7.24216005288676 + 3.820514562866858 + 1.615173554762464 + 0.5366391738935725 + 0.1894833615565226 + 0.1659689026801914 + 0.2196987199586395 + 0.2580046813206849 + 0.2624964017745732 + 0.2373244210027607 + 0.1941335746970196 + 0.149773551091581 + 0.1278286159719713 + 0.1611711804041889 + 0.2950373519323115 + 0.6023450488121611 + 1.218668792438635 + 2.36544238767566 + 15.83500686861573 + 11.47518577458539 + 7.228366255961578 + 3.820751783361661 + 1.636061139060686 + 0.5800382314571202 + 0.2535516786812835 + 0.2483301422826507 + 0.3186042307402026 + 0.3697847106177363 + 0.378778380492534 + 0.3466195180918845 + 0.2876136409353087 + 0.2268810064428948 + 0.199027341519237 + 0.2485528642647701 + 0.4304781955032304 + 0.8200033247976037 + 1.540880209469183 + 2.788117219183654 + 15.86517267958138 + 11.51558347992525 + 7.279399206356313 + 3.882708613605384 + 1.709737500138242 + 0.66723532295293 + 0.3572172745031779 + 0.3717040208848736 + 0.4626489673272332 + 0.5297865677930531 + 0.543289857523817 + 0.5013407366553366 + 0.4226203601437746 + 0.3426640492885618 + 0.3089166958107654 + 0.3784680827279381 + 0.6160530987006467 + 1.098240130335544 + 1.935328722362787 + 3.29338439798066 + 15.94359505743646 + 11.61761059371256 + 7.399037805016871 + 4.011959354084979 + 1.84356363039921 + 0.807069856987674 + 0.5102989916383329 + 0.5463866972218163 + 0.6622758804813138 + 0.7485197767525058 + 0.7667257780102723 + 0.712547682282505 + 0.6106894211187708 + 0.5091188543139396 + 0.4697637967013222 + 0.56296461883354 + 0.8626434323229226 + 1.445403296205161 + 2.40644319443296 + 3.880994187859063 + 16.07089904416456 + 11.78307222970126 + 7.590918377306693 + 4.214420360691594 + 2.045733989571175 + 1.009505984028991 + 0.7237248370504794 + 0.783524571985847 + 0.9284530663360115 + 1.036793352630646 + 1.060022763879545 + 0.9916204260019654 + 0.8638030471492932 + 0.7387547565833295 + 0.6942696097208376 + 0.8142721976117571 + 1.180938087926272 + 1.869248374111628 + 2.957724693092334 + 4.549547986282828 + 16.24707039457806 + 12.01311344834503 + 7.858184585666276 + 4.495841204342092 + 2.324619413096833 + 1.284866091553749 + 1.008706665073017 + 1.094271303694949 + 1.271832655670579 + 1.404877271743089 + 1.433516995160627 + 1.349411155455957 + 1.19353878261812 + 1.043746243871507 + 0.9947314656143433 + 1.143990182996884 + 1.580679119835505 + 2.376297349653036 + 3.591282950156458 + 5.296258578791694 + + diff --git a/test_gpstuff/octave/realValues_derivativeobs.mat b/test_gpstuff/octave/realValues_derivativeobs.mat new file mode 100644 index 00000000..e8a81522 --- /dev/null +++ b/test_gpstuff/octave/realValues_derivativeobs.mat @@ -0,0 +1,509 @@ +# Created by Octave 3.8.1, Tue Jun 07 13:32:52 2016 EEST +# name: Eft +# type: matrix +# rows: 121 +# columns: 1 + -0.0340524550971336 + -0.04161451409174179 + -0.05033806587786801 + -0.0602707674185004 + -0.07142977044416708 + -0.08379512120604236 + -0.09730400407497403 + -0.1118463722464854 + -0.1272624990773073 + -0.143342925623632 + -0.1598311716439657 + -0.1764294216998462 + -0.1928072036366734 + -0.2086128575635271 + -0.2234873676952735 + -0.2370799179165451 + -0.2490643559203523 + -0.2591556294061559 + -0.2671252056738408 + -0.2728145109801857 + -0.2761455282349002 + -0.2771278626820161 + -0.2758618092132404 + -0.2725372101306771 + -0.2674281535367944 + -0.2608838050110671 + -0.2533158668891802 + -0.2451833042969571 + -0.2369750570865826 + -0.2291914728323935 + -0.2223251574198505 + -0.2168418627263843 + -0.2131619358809683 + -0.2116427629399774 + -0.2125625703032526 + -0.2161059129088806 + -0.2223511843211943 + -0.2312605263578479 + -0.2426725822541473 + -0.2562986078641027 + -0.271722506192879 + -0.2884053572330135 + -0.30569495655516 + -0.3228407382168353 + -0.3390142358097316 + -0.3533349365780028 + -0.3649010254648772 + -0.3728241264304458 + -0.3762667621814643 + -0.3744809085750099 + -0.3668457534539318 + -0.3529026134904191 + -0.332384940033993 + -0.3052414680245005 + -0.2716508302280542 + -0.232026359331312 + -0.1870103084400912 + -0.1374573028811033 + -0.08440745339860221 + -0.02905017052577897 + 0.02731971981347242 + 0.08335148698629256 + 0.1376912078912638 + 0.1890350481590277 + 0.2361804306944529 + 0.2780725236616133 + 0.3138437494535347 + 0.3428444237604518 + 0.3646631524000976 + 0.3791362080833629 + 0.3863457392426497 + 0.3866072853770245 + 0.3804476457772177 + 0.3685746329320185 + 0.3518406078099898 + 0.3312019211111125 + 0.3076764639075147 + 0.2823014666767097 + 0.2560934931067463 + 0.230012279494677 + 0.2049297041231718 + 0.1816047689161675 + 0.1606650725538033 + 0.1425948805493658 + 0.127729577110503 + 0.1162560307925089 + 0.1082182266305143 + 0.1035274086375271 + 0.1019759283737049 + 0.1032539932920639 + 0.1069685365134818 + 0.1126634722199667 + 0.1198406457259637 + 0.1279808268501921 + 0.1365641270486747 + 0.1450892473926845 + 0.1530909922118065 + 0.1601555205284562 + 0.1659328628912115 + 0.1701463116837173 + 0.1725984018691374 + 0.1731733354538725 + 0.171835861066102 + 0.1686267900913652 + 0.1636554998846596 + 0.1570899283666105 + 0.1491446889420864 + 0.1400680185562052 + 0.1301283070069503 + 0.1196009393159376 + 0.1087561170861286 + 0.09784821621442301 + 0.08710709783713699 + 0.07673163027278156 + 0.06688551626248261 + 0.05769536564626888 + 0.04925082039252551 + 0.04160643520820011 + 0.03478494775668483 + 0.02878153901889909 + 0.02356868436361707 + + +# name: Varft +# type: matrix +# rows: 121 +# columns: 1 + 0.08901888660471925 + 0.08826670998847699 + 0.08721470089298268 + 0.08577787385694538 + 0.0838623042961603 + 0.08137064212868504 + 0.07821036573229768 + 0.07430467005501351 + 0.06960538430303113 + 0.06410673667071658 + 0.05785821890737003 + 0.05097437583070091 + 0.04363918868198273 + 0.03610295223553639 + 0.02867022730265852 + 0.02167856445789862 + 0.01546912527013368 + 0.01035186433740594 + 0.006569304001836127 + 0.004263842555915415 + 0.003453739557119792 + 0.004022276080571777 + 0.005723098097831752 + 0.008202584952144792 + 0.01103755380381063 + 0.01378412160936651 + 0.01603152893655863 + 0.01745355957320759 + 0.01785011505911346 + 0.01717259713210227 + 0.01552889286876785 + 0.01316664734244813 + 0.0104367139249634 + 0.007741694959931059 + 0.005476842453909697 + 0.003971890508860751 + 0.003442408209829342 + 0.00395796283261543 + 0.005431946155287831 + 0.007634702245724295 + 0.01022809204559746 + 0.01281637783247738 + 0.01500581372666773 + 0.01646397637260857 + 0.01696987618120147 + 0.0164472585192641 + 0.01497603146172184 + 0.01278006064034465 + 0.01019315205521117 + 0.007608357077122666 + 0.005418275657515861 + 0.003955414566843923 + 0.003441662893794981 + 0.003954571692786846 + 0.005415574728074024 + 0.007601950115782422 + 0.01018070788155166 + 0.01275924904155747 + 0.01494508840851201 + 0.01640555523321739 + 0.0169183915996952 + 0.01640555523321741 + 0.01494508840851204 + 0.01275924904155745 + 0.01018070788155166 + 0.007601950115782449 + 0.005415574728074038 + 0.00395457169278686 + 0.003441662893794994 + 0.003955414566843923 + 0.005418275657515903 + 0.007608357077122638 + 0.01019315205521115 + 0.01278006064034468 + 0.01497603146172183 + 0.01644725851926405 + 0.01696987618120148 + 0.01646397637260859 + 0.01500581372666776 + 0.01281637783247737 + 0.01022809204559748 + 0.007634702245724281 + 0.005431946155287817 + 0.003957962832615389 + 0.003442408209829328 + 0.003971890508860737 + 0.005476842453909711 + 0.007741694959931086 + 0.01043671392496341 + 0.01316664734244814 + 0.01552889286876787 + 0.01717259713210226 + 0.01785011505911346 + 0.01745355957320754 + 0.01603152893655861 + 0.0137841216093665 + 0.01103755380381058 + 0.008202584952144723 + 0.005723098097831739 + 0.004022276080571777 + 0.003453739557119778 + 0.004263842555915442 + 0.006569304001836182 + 0.01035186433740599 + 0.01546912527013369 + 0.02167856445789859 + 0.02867022730265864 + 0.03610295223553644 + 0.0436391886819828 + 0.0509743758307009 + 0.05785821890737002 + 0.06410673667071667 + 0.06960538430303118 + 0.07430467005501355 + 0.07821036573229768 + 0.08137064212868504 + 0.08386230429616034 + 0.08577787385694539 + 0.08721470089298269 + 0.08826670998847699 + 0.08901888660471925 + + +# name: Eft2 +# type: matrix +# rows: 121 +# columns: 1 + -0.3493464650030521 + -0.3720287697470643 + -0.393459393475797 + -0.4132057297350629 + -0.4308336440829011 + -0.4459200286016934 + -0.4580663465896558 + -0.4669127415528753 + -0.4721522124646422 + -0.473544301772482 + -0.4709277086483983 + -0.4642312315730769 + -0.4534824644976539 + -0.4388137211076031 + -0.4204647420444313 + -0.3987818484472554 + -0.374213338147782 + -0.3473010728310232 + -0.3186683684724066 + -0.2890044692041669 + -0.2590460475390741 + -0.2295563224768223 + -0.2013025127129825 + -0.1750324372172707 + -0.1514511336394996 + -0.1311983821452504 + -0.1148279965553742 + -0.1027896768097734 + -0.09541411013240121 + -0.09290186860124101 + -0.09531648596152874 + -0.1025819158672055 + -0.1144843876337582 + -0.130678494594453 + -0.1506971843144667 + -0.1739651780565971 + -0.1998152359999956 + -0.2275066094801616 + -0.256244984044973 + -0.2852032168348722 + -0.3135422055791314 + -0.340431289024783 + -0.365067662841435 + -0.3866943928577652 + -0.4046167103969279 + -0.4182163743479915 + -0.426963974312916 + -0.4304291231519168 + -0.4282885419416003 + -0.4203320743832946 + -0.4064666818859292 + -0.3867184677533421 + -0.3612327636407224 + -0.3302722893679707 + -0.2942133744957001 + -0.2535402129001614 + -0.2088371153429677 + -0.1607787338997576 + -0.1101182586232199 + -0.05767363160870413 + -0.00431188537583034 + 0.04906821201085657 + 0.1015549381592808 + 0.1522434694407858 + 0.2002563675234418 + 0.2447641872525064 + 0.2850056367036798 + 0.3203066850699525 + 0.3500980047481643 + 0.3739301528525114 + 0.3914859448544747 + 0.402589547745948 + 0.4072119189446705 + 0.4054723355431704 + 0.397635890758777 + 0.3841069741716854 + 0.3654188928558382 + 0.3422199252677398 + 0.3152562227369154 + 0.2853520794141519 + 0.2533881764707897 + 0.2202784673164515 + 0.1869464060019814 + 0.1543012304344047 + 0.1232149963345889 + 0.09450101879378808 + 0.06889431841657812 + 0.04703459156159273 + 0.02945213269293562 + 0.0165570351288814 + 0.00863188835842732 + 0.005828079336101577 + 0.008165695308698873 + 0.01553692004633131 + 0.02771271678871953 + 0.04435250235664076 + 0.0650164399131794 + 0.0891799145817406 + 0.1162497079127113 + 0.1455813549808133 + 0.1764971521861505 + 0.2083042846581077 + 0.2403125590862757 + 0.2718512599182166 + 0.3022846928011765 + 0.331026037101841 + 0.3575491971262478 + 0.3813984167720541 + 0.4021955020336535 + 0.4196445771698623 + 0.4335343805369367 + 0.4437381822885031 + 0.450211475767782 + 0.4529876552124941 + 0.4521719425269125 + 0.4479338640117011 + 0.4404986032866129 + 0.4301375689622802 + 0.4171585152361671 + 0.4018955413392972 + 0.3846992729303956 + + +# name: Varft2 +# type: matrix +# rows: 121 +# columns: 1 + 0.06957796355194176 + 0.06005814484007141 + 0.05096427257588326 + 0.04244826589599371 + 0.03464034982779363 + 0.02764240665940806 + 0.02152307184091887 + 0.01631499972709177 + 0.01201453777731884 + 0.008583830508515772 + 0.005955150891473554 + 0.004037052926673612 + 0.002721778728471014 + 0.001893255006871875 + 0.001434987657571829 + 0.001237210026093893 + 0.001202751661107115 + 0.001251253547893211 + 0.001321541377203889 + 0.001372157157357445 + 0.001380219987519693 + 0.001338922260694042 + 0.001254057550801269 + 0.001140017496788964 + 0.001015689926235769 + 0.0009006467263412421 + 0.0008119376572435222 + 0.0007617161209141632 + 0.0007558246526534196 + 0.0007933696678726343 + 0.0008672230256546176 + 0.0009653071276752023 + 0.00107245468906686 + 0.001172587912028206 + 0.001250938364408372 + 0.001296031677144538 + 0.001301192081910929 + 0.001265380199216626 + 0.001193259370809302 + 0.001094483461234558 + 0.000982301299702365 + 0.0008716664898640314 + 0.0007771126111758286 + 0.0007106913111908919 + 0.0006802670911811304 + 0.0006884162261596161 + 0.0007320933308917754 + 0.0008031188642524112 + 0.0008894202879681512 + 0.0009768468318832046 + 0.00105129037354601 + 0.001100796783147451 + 0.001117351294295132 + 0.001098068812982134 + 0.001045608815333221 + 0.0009677513148612926 + 0.0008761975220953899 + 0.000784776781769414 + 0.0007073319969180536 + 0.0006556050418402293 + 0.0006374439732788617 + 0.000655605041840257 + 0.0007073319969180814 + 0.0007847767817694695 + 0.0008761975220953622 + 0.0009677513148612371 + 0.001045608815333277 + 0.001098068812982106 + 0.001117351294295188 + 0.001100796783147506 + 0.001051290373545982 + 0.0009768468318832324 + 0.0008894202879681512 + 0.0008031188642524667 + 0.0007320933308917477 + 0.0006884162261595606 + 0.0006802670911810749 + 0.0007106913111907531 + 0.0007771126111758564 + 0.0008716664898639759 + 0.0009823012997023373 + 0.001094483461234586 + 0.001193259370809219 + 0.001265380199216598 + 0.001301192081910985 + 0.00129603167714451 + 0.001250938364408316 + 0.001172587912028206 + 0.001072454689066887 + 0.0009653071276752023 + 0.0008672230256546176 + 0.0007933696678725788 + 0.0007558246526533363 + 0.0007617161209141909 + 0.0008119376572434944 + 0.0009006467263412976 + 0.001015689926235686 + 0.001140017496788936 + 0.001254057550801213 + 0.001338922260694125 + 0.001380219987519721 + 0.001372157157357473 + 0.001321541377203916 + 0.001251253547893211 + 0.001202751661107143 + 0.001237210026093921 + 0.001434987657571885 + 0.001893255006871958 + 0.00272177872847118 + 0.004037052926673779 + 0.005955150891473748 + 0.008583830508516077 + 0.01201453777731906 + 0.01631499972709211 + 0.02152307184091928 + 0.02764240665940845 + 0.03464034982779435 + 0.04244826589599424 + 0.05096427257588393 + 0.06005814484007213 + 0.0695779635519424 + + diff --git a/test_gpstuff/octave/realValues_multinom.mat b/test_gpstuff/octave/realValues_multinom.mat new file mode 100644 index 00000000..bf3dd146 --- /dev/null +++ b/test_gpstuff/octave/realValues_multinom.mat @@ -0,0 +1,735 @@ +# Created by Octave 3.8.1, Tue Jun 07 13:41:17 2016 EEST +# name: Eft +# type: matrix +# rows: 361 +# columns: 3 + -2.006148862813466 0.418829029625638 -0.1839616720813008 + -2.202750368625751 0.7449665043226975 -0.1469533332015158 + -2.207446542084123 1.253684556661611 -0.1059240019890433 + -1.981587463309146 1.642372891594882 -0.06638206170409634 + -1.536250754310207 1.426545290044913 -0.03238967320720719 + -0.9334383728296685 0.6858319110266656 -0.005779304381244361 + -0.2665016111367356 0.1687276188422093 0.0137712812343204 + 0.3719262791740488 0.07242786684998555 0.02797556319389343 + 0.9183208630527787 -0.4864714061709126 0.03894023925865026 + 1.348798574717143 -1.857466795207444 0.04840162410807592 + 1.668859037466022 -2.872651338242736 0.05742809328505218 + 1.892224473529022 -2.560481315961761 0.06650301022175405 + 2.023993634721422 -1.50681009932457 0.07571421993238005 + 2.057925263329651 -0.8109595379742531 0.08481843813363724 + 1.986458917472903 -0.8683028111057356 0.09315455002804719 + 1.813741311752731 -1.318583010201966 0.099574148061105 + 1.561781483714274 -1.473070610280062 0.1025919684118784 + 1.266353278864742 -0.9822060558415175 0.1008149892776186 + 0.9664319674041024 -0.2259470237317049 0.09350026563840275 + -2.347738561290862 0.9062400536497607 -0.2398023544356881 + -2.635809976749232 1.092899244576337 -0.1892904741565062 + -2.728738865637829 1.271591749020578 -0.1319769751638552 + -2.572607059287685 1.240538602553348 -0.07585593568445455 + -2.165261412823015 0.6810065133105931 -0.027484800792372 + -1.563043824425108 -0.1739465130336299 0.009405401769935992 + -0.8639036524966793 -0.5907490940037902 0.03424956841759398 + -0.1732113645987912 -0.530412143484272 0.04897308710011834 + 0.4308079353330898 -0.9460529612673965 0.05674665275531499 + 0.9145820753256433 -2.130291037305774 0.0607568187955897 + 1.282920612998397 -2.914918586510532 0.06341025558655201 + 1.55690248836389 -2.433402511921825 0.06606184282000331 + 1.752084181661921 -1.333911411100935 0.06909121935410693 + 1.869772913977105 -0.6595312016982325 0.07209210170222698 + 1.90290336639931 -0.797520001781592 0.07406068575578773 + 1.848192734724136 -1.475553710918011 0.07362620689407735 + 1.714375494799831 -1.928664047615563 0.0694130800802213 + 1.521867513316646 -1.568085611770599 0.06052726557774434 + 1.296281835003024 -0.7011763864868676 0.04701143881075467 + -2.544193777678876 1.808657979868149 -0.3197580432658723 + -2.915051233508631 1.741711434204583 -0.2594551730193418 + -3.103972997771069 1.363834747814602 -0.1889148160578148 + -3.041372060086726 0.7266612176607665 -0.1185397857622232 + -2.707082756674235 -0.1853160890232641 -0.05744486371029742 + -2.14425440738384 -1.019364187393676 -0.01140572694147688 + -1.448014169801427 -1.243710968388162 0.01797740687434678 + -0.7318413781790833 -1.038954776612472 0.03276499312611676 + -0.08795740394723837 -1.247732280419988 0.03721576417095915 + 0.4380385336434535 -2.004182855944 0.03606683253939829 + 0.847065994966142 -2.334946641317421 0.03317594064190363 + 1.16558996184341 -1.68845180040393 0.03082574711075107 + 1.419731857140726 -0.717523104732266 0.02964772556473191 + 1.619902348727609 -0.2033548573272991 0.02894291706216896 + 1.761100355968379 -0.4283314579292973 0.02719038787673558 + 1.832963620977033 -1.301142125399946 0.02263534234460157 + 1.829711195007093 -2.129246439280958 0.01390458184374891 + 1.754075421972133 -2.100146371276135 0.00055954646079142 + 1.615822485158883 -1.311519989470188 -0.01657187822008177 + -2.531928610430535 2.862878415220453 -0.4237910417593402 + -2.958821186330764 2.566272476662561 -0.3595341919319797 + -3.233768333641776 1.69253904968377 -0.2811085392884274 + -3.27332041887214 0.5777469544373529 -0.2009535893362516 + -3.036272495462161 -0.5131820639391509 -0.1305192956563243 + -2.545665072767686 -1.203503081738746 -0.07756235388141906 + -1.885625579342143 -1.251047773162824 -0.04477314293544556 + -1.171428836296512 -1.02094019362465 -0.03006515728053134 + -0.5069595329954033 -1.133559347979519 -0.02819739348970494 + 0.04835619403151326 -1.51452792317377 -0.03295908289738615 + 0.4872860419271359 -1.416136291067777 -0.03909962389267468 + 0.8373734485925171 -0.6425491931814706 -0.04347846647197967 + 1.13282883837279 0.1163062278762435 -0.04532044249515245 + 1.393135253540103 0.320258821068255 -0.04576896910779234 + 1.617235877586181 -0.1421216089658712 -0.04704004425462307 + 1.790453264734801 -1.22649544637908 -0.05144858543676063 + 1.895251101973987 -2.289772786783132 -0.06051759102538323 + 1.918930470562505 -2.426173786204131 -0.07435189797705148 + 1.856928545578166 -1.648227149860778 -0.0914367418399602 + -2.288933093203492 3.382022926811857 -0.5461579297784731 + -2.731766522683512 2.983683967041125 -0.4849719707661834 + -3.066297998504315 1.946922145038318 -0.4054621079969893 + -3.199196392676508 0.7626077719372071 -0.3214636285623991 + -3.067921923664906 -0.1722515579185551 -0.2462563361063848 + -2.67075973566884 -0.5613050872395979 -0.1892885837560311 + -2.073602433264087 -0.4625993664109296 -0.1542843347024597 + -1.386628677589926 -0.3514948394047397 -0.1392648256928244 + -0.7215900961372774 -0.5659995199212479 -0.1382548935142538 + -0.1523022903771149 -0.8029390299491215 -0.143855591928484 + 0.3016777987685486 -0.4949720593269815 -0.1496925972088424 + 0.6634280048257325 0.2627977059928345 -0.1519968723476768 + 0.9708779957118594 0.7432301102517629 -0.1500384848560941 + 1.251127294829487 0.5677218836259769 -0.1455628059635359 + 1.508968663020972 -0.2016091430661331 -0.1416168929143625 + 1.730022479025738 -1.408632342342911 -0.1411991520253675 + 1.89107721917705 -2.382406824705828 -0.1461023479714182 + 1.970170536471362 -2.294670556425704 -0.1562230716690301 + 1.953398035473024 -1.322488285145419 -0.1694944256976989 + -1.850691361747621 3.01876586153012 -0.6754579551891065 + -2.266153915894573 2.576943831223276 -0.6242810774874579 + -2.6242218685742 1.638726572506823 -0.5507592626024587 + -2.827174112889558 0.7545324980276168 -0.4692903845554767 + -2.793986862992362 0.3536782823869056 -0.3942456824714837 + -2.497185264210449 0.5335838791622899 -0.3362704186755645 + -1.979929872003107 0.8633248883513129 -0.2999510572383313 + -1.341314772731795 0.7826032657168307 -0.2835619346100109 + -0.6962429085870514 0.2984041494641747 -0.2807740321014098 + -0.1316098431412451 -0.01184849341848358 -0.2834951685362587 + 0.3182025749472165 0.2721407730816009 -0.2847185916862016 + 0.6669715363768299 0.824529434800963 -0.2804485326400685 + 0.9516901526546625 0.9798255352719513 -0.2702716475677638 + 1.204899100304634 0.5577810070040587 -0.2566774181050693 + 1.438705734369006 -0.2870093683065017 -0.2435886084054265 + 1.643927251781462 -1.39092176604541 -0.2346822144351636 + 1.798785790073217 -2.124848204068477 -0.2320162801051769 + 1.879671963022726 -1.769760317259977 -0.2353133684645603 + 1.869741756008146 -0.6490929349205357 -0.2420427181924068 + -1.3051728389578 2.395295015990043 -0.7964544785285922 + -1.658726660972707 1.832504653872345 -0.7608676057051253 + -2.004766184278741 0.8698572226544451 -0.6994425428449798 + -2.24705520455927 0.2462714560055649 -0.6262256319991863 + -2.291719669796425 0.5071849694424327 -0.555798150934661 + -2.08870746568015 1.449685413307293 -0.4993560763806324 + -1.657904130386725 2.137043229026896 -0.4620766634515371 + -1.083549424500239 1.896821203971507 -0.4426256143282259 + -0.4787996869170072 1.122531615282574 -0.4347962700003551 + 0.05986365713888971 0.718841474400758 -0.4304694207521961 + 0.4837904857898636 0.9812869386875732 -0.4226895370338354 + 0.7953163170574131 1.348951706316224 -0.4077885621027203 + 1.02735483746524 1.263289619186441 -0.3860079430707823 + 1.215818289013239 0.8032178298805526 -0.360686698052872 + 1.380520753805072 0.1353332043102969 -0.3365406327350861 + 1.520564450145165 -0.7906106510749327 -0.3177379797102738 + 1.620646623334468 -1.529968182304513 -0.3064038148606931 + 1.66125426540217 -1.343087753720905 -0.301954213583094 + 1.627705988796096 -0.3901250343790209 -0.3013670601419988 + -0.7652900247340237 2.376172892767109 -0.893306234381022 + -1.04015762695417 1.653282789096896 -0.8766129109503603 + -1.348365838576038 0.3987050746179758 -0.8314805334662977 + -1.600208176226377 -0.2743137551435753 -0.7707312084700041 + -1.696278243618618 0.3786444111676104 -0.7082437379299705 + -1.57071939930967 1.836910566757429 -0.6550440430231314 + -1.22363840191599 2.727854151717107 -0.6165549138289373 + -0.7234733587380443 2.341625996005277 -0.5919411893901761 + -0.1772178481865679 1.409809492625772 -0.5756294085819186 + 0.3145284688076914 1.103042291331807 -0.5602320713321753 + 0.6929679821210994 1.5922272774783 -0.5396454312891708 + 0.9506088447285588 2.038557752924939 -0.5111786481146539 + 1.115731809372406 1.891182151444752 -0.4760984123536802 + 1.226095202186148 1.457366765907391 -0.4386470021775245 + 1.307888204346577 0.9616660153862306 -0.4041193567759554 + 1.367992651698991 0.1387405395236428 -0.3768027757336538 + 1.398019770635176 -0.806196119576184 -0.3584897127400462 + 1.38378329050438 -1.073246397828511 -0.3479753278439325 + 1.314503001260852 -0.4909373748410007 -0.3415821923691139 + -0.3293165268566967 2.80024709136749 -0.9532506657237975 + -0.5287195343865602 2.002746792903982 -0.956132637240818 + -0.78781629056408 0.5078697851888705 -0.9291395850785544 + -1.026756878433508 -0.2619697163918831 -0.8831465743560475 + -1.148096862524301 0.4463351948791989 -0.8304974358594379 + -1.078931330824685 1.838580201198773 -0.7813366870337165 + -0.8059913162843729 2.472017937253332 -0.7409472232149704 + -0.3834614655707125 1.842392595706886 -0.7090435883734695 + 0.09134665636042788 0.8994497098568496 -0.681151636288209 + 0.5203729518370586 0.8731989056360268 -0.6513563164635223 + 0.8416325816314585 1.760146888740669 -0.6152096711012665 + 1.042740393470102 2.443240790933929 -0.571652743518579 + 1.149185015178648 2.297165092252714 -0.5233316929551661 + 1.199416455356732 1.813687466600924 -0.4753928045792365 + 1.222595024695522 1.414030022433427 -0.4334049861363493 + 1.228713951021608 0.814015478774752 -0.40128441110724 + 1.211458230348542 -0.005823497816079632 -0.379965212000436 + 1.158088875375386 -0.3876953999140802 -0.3671920267100678 + 1.059749725072861 -0.04630942356528373 -0.3583777864590229 + -0.04764287417516293 2.726705716717972 -0.9695314240194012 + -0.1897474488766839 1.999132674494772 -0.9903069969571129 + -0.4017560636050236 0.671723017817859 -0.9810734955371099 + -0.6149718649425169 0.1153433628857981 -0.9502617316538026 + -0.7401585697761585 0.7721846139285463 -0.9080180621537572 + -0.7060753536672933 1.697511209284984 -0.8629784308651689 + -0.4935356035850478 1.764067252305968 -0.8198922318761278 + -0.1455294558047157 0.8619074684998146 -0.7789902317165828 + 0.2527450599158028 0.01396052494072502 -0.7372346046988368 + 0.6124022590211825 0.2761901270016465 -0.6907824114513341 + 0.8763069414248872 1.412012606177084 -0.6375180688731331 + 1.033678161713947 2.139240928513273 -0.5785696140217589 + 1.110156504619204 1.852140764344019 -0.5182495747309832 + 1.143565394653001 1.232196013695305 -0.462572473648932 + 1.160900580538663 0.9327540745376854 -0.4170661853581249 + 1.167595548440754 0.7713511274871373 -0.3847962831724251 + 1.151021149897988 0.5627065747282177 -0.3653354401627157 + 1.092782508391722 0.6374602575582107 -0.3549715254011775 + 0.9818151704630831 1.06354942557079 -0.3479666611539525 + 0.08785105420495387 1.88851169736353 -0.9426035952342361 + -0.02069693561249409 1.453366907590678 -0.9779240106511848 + -0.1952240128091961 0.7294695172609434 -0.9843927452083462 + -0.377697560680375 0.6033710805667215 -0.967758864909789 + -0.4911929044194008 1.126024309272678 -0.9355343843667969 + -0.4731324781895097 1.495361239099861 -0.8943571456496783 + -0.305196455802312 1.094999435619597 -0.8480667286207222 + -0.02271866929483443 0.1393194566566885 -0.7972714095003189 + 0.3024163162646155 -0.4896260486868024 -0.7405056987437817 + 0.595766341103706 -0.101539745779991 -0.6763480719847083 + 0.8120287630833511 0.8775654947562538 -0.6054453572328453 + 0.9478538634192015 1.286297371978052 -0.5314730585840118 + 1.031491658529218 0.7438392168270604 -0.4605888292970116 + 1.098323428052413 0.03178109766114678 -0.3996341552596611 + 1.16754534829393 -0.1846383687743645 -0.3538736541857489 + 1.232041574106251 -0.0439855953878374 -0.325209797724287 + 1.264508842453984 0.2756361662183238 -0.311552464698225 + 1.23415450853178 0.9311873719808512 -0.3075171434897142 + 1.124082226539969 1.702855675772445 -0.3061122867803566 + 0.1273517087101573 0.9364532808114283 -0.8792988511218657 + 0.03194266110806331 1.006263452395103 -0.9250092764097607 + -0.1155101396186555 1.042507302070559 -0.9441789737844759 + -0.2659296788399425 1.233601782460878 -0.9398917369610587 + -0.3565017184847553 1.416854262676764 -0.9168318850150019 + -0.3378551637192059 1.252895334863332 -0.8793149738113805 + -0.1977490320685537 0.6736683657129383 -0.8299303712322739 + 0.03264957447148109 0.001440287290270952 -0.7694126224882183 + 0.2944961394890867 -0.3022935293514631 -0.6977627197305505 + 0.5305932762269548 -0.07471949043319356 -0.6160107096933684 + 0.7117164457985483 0.2729855680691619 -0.5276709739581473 + 0.8454178012134925 0.1502187254860889 -0.4390700060968161 + 0.9635437790348917 -0.4365231958301427 -0.3582593714219091 + 1.097038254594297 -0.9139311918768712 -0.2928944832868861 + 1.253050843759253 -1.022111471333522 -0.2479370639437156 + 1.406855143138091 -0.9839395853451477 -0.2241122747160162 + 1.512063005116949 -0.7228216789131362 -0.2177151901362538 + 1.522724981034433 0.1203229222348655 -0.221798955740574 + 1.415376271698838 1.229726864893529 -0.2282520825255716 + 0.1298919022749823 0.2574829920983774 -0.7904009940682882 + 0.03509741091511644 0.790480388121091 -0.842301433332159 + -0.09200810488739576 1.439151421949493 -0.8709019365325285 + -0.208971183564092 1.784950240237206 -0.8768549909950156 + -0.2670399959665864 1.575677813567064 -0.8620528853425877 + -0.2323837765272717 0.9883409910155354 -0.8283353283009209 + -0.102569390202531 0.4623282100774735 -0.7767530910187729 + 0.09186905973242177 0.3218915001797889 -0.7078182285918256 + 0.3031056543189106 0.4322492789783756 -0.6226548023530587 + 0.4909896506452522 0.3029533537887255 -0.5244460709060166 + 0.6432121412439205 -0.2870778294739916 -0.4193361954896501 + 0.7788408581352768 -0.9939007841675652 -0.316133338523665 + 0.9328967716478713 -1.328017471299954 -0.2246997536771046 + 1.130633456873629 -1.190619846504197 -0.1535392973127929 + 1.366118069631136 -1.026379811498142 -0.1074944999255043 + 1.597318523777099 -1.238782344962845 -0.086452212460292 + 1.760805245653311 -1.405622323154513 -0.08554738299615994 + 1.798638060518929 -0.7877072571724864 -0.09675450371977945 + 1.683818197181688 0.3893414892847554 -0.111242988198343 + 0.1322618952949927 -0.4268589801967749 -0.6876229817190312 + 0.03276149525523754 0.2854649495215599 -0.7419684649577779 + -0.07635767121940036 1.324045635114478 -0.7769210837775399 + -0.156762423740531 1.863674948393373 -0.7910983742960475 + -0.1726094801546752 1.484166681838322 -0.7838289837011043 + -0.1065307718913652 0.6690383101819898 -0.7544848743679997 + 0.03122686539038771 0.2927335156862537 -0.7023613823626101 + 0.2068573938168213 0.7577365677364818 -0.6273438451226685 + 0.3797607582039417 1.416936511703757 -0.5311525144507345 + 0.523857635166969 1.112853489579286 -0.4185517455981868 + 0.6416121842296447 -0.2974937697269284 -0.2977807536956364 + 0.7620030483897202 -1.639958291984323 -0.1797178800017192 + 0.9222402398793035 -1.913508487428355 -0.07583226155072742 + 1.142332050259133 -1.318480760225836 0.004451696908127412 + 1.406286540612893 -0.8298270349369602 0.05603523916306452 + 1.660909537691847 -1.052087919186175 0.07922827062912052 + 1.834139786578945 -1.455038048476812 0.0792575648513052 + 1.864494124457811 -1.133307535736218 0.06443443232219437 + 1.727248600480904 -0.1662137732698643 0.04369373701600976 + 0.1362139585825332 -1.142547491228179 -0.5810619961873674 + 0.03003899765581232 -0.4762660170925085 -0.6347792890225896 + -0.06133015380716231 0.7724678991603239 -0.6734085714596184 + -0.1013132049633769 1.53259405987452 -0.694028549760721 + -0.06537614697691815 1.154284215141642 -0.6937784634166256 + 0.04716377007922015 0.2277702549508667 -0.6697173847814069 + 0.2109234461147363 -0.06701780153511092 -0.6192660061365163 + 0.384581357279191 0.809925698540321 -0.5412894180523053 + 0.5297354646054975 1.98353403341167 -0.4374893127288542 + 0.6295623872632681 1.878886847767373 -0.3134723726127673 + 0.6973454033807549 0.1900770126667799 -0.1788382242313952 + 0.7693367960826114 -1.676630748670507 -0.04594725397770638 + 0.8842988537157082 -2.411473135080404 0.07243255671143234 + 1.059407478849374 -2.032083728790576 0.1658897212837849 + 1.274976984581253 -1.432556537686703 0.2286045587638925 + 1.476802814053332 -1.327174813582013 0.2602886153031891 + 1.596284116685979 -1.520768257326856 0.2655594667474217 + 1.579231485207765 -1.348326404897159 0.2520741313224459 + 1.409491032838007 -0.7107649629745449 0.228164355929491 + 0.1181822694235078 -1.376694888603533 -0.4778441258104913 + 0.003092452065912877 -0.75671841883924 -0.5285479138348284 + -0.07153706781843952 0.5052802795499018 -0.5686096559078484 + -0.06891005499172237 1.254003739504271 -0.5941031540213575 + 0.02587537711398977 0.7773427895083203 -0.600449178204337 + 0.1971061289996889 -0.269740124049295 -0.5826789965676495 + 0.4024552422410099 -0.6249045117144729 -0.5363465495008768 + 0.5892420651416616 0.2580592406001592 -0.4589918491218355 + 0.7161563873692238 1.544017412212513 -0.3517120059457698 + 0.77035164706616 1.729205300983959 -0.2201848019365473 + 0.77151350364091 0.3571769361549529 -0.07455922588630592 + 0.7605238084067905 -1.544686317372857 0.07200437173204999 + 0.7777425345334814 -2.807352578626566 0.2058351595419901 + 0.841129004798459 -3.015629821152213 0.3155383692158602 + 0.9348724322157018 -2.444378669584875 0.3941636692241706 + 1.014497231753028 -1.783789242557436 0.4400795325875602 + 1.026534643912802 -1.514393830428409 0.4563792073866471 + 0.9335326416788376 -1.475358726585826 0.4491874280292847 + 0.7322830062098618 -1.285221300284881 0.4255829216106717 + 0.05249615265216011 -0.9667065908269675 -0.3820736962881516 + -0.07499127422725167 -0.2823038322002371 -0.4280011665627184 + -0.1361615150587965 0.8430558156564301 -0.46763113214816 + -0.09271960201864128 1.319371464506246 -0.4965482868000112 + 0.06228125099403573 0.61291595018179 -0.5089753947555237 + 0.2978703412523353 -0.5347198929960651 -0.4983120731307982 + 0.5544568993017454 -0.9950291509185241 -0.4584037956531594 + 0.7658147022532911 -0.4092729506620927 -0.3853198012925234 + 0.8839959794306116 0.536295607939098 -0.2791052773266406 + 0.8957697151958302 0.7939237623867159 -0.1448353489512454 + 0.8233907254031205 -0.003513867283003694 0.007557251584963787 + 0.7101766616679734 -1.377733408778107 0.1648053192033574 + 0.5984111851566212 -2.634913677779664 0.312801446187801 + 0.510153564336143 -3.108569973019508 0.4393037969755293 + 0.4395690456542933 -2.457294775226869 0.5360157713732439 + 0.3596802100892464 -1.299500887571376 0.5994632842549681 + 0.2396464592866216 -0.7339136643848123 0.6305702545604412 + 0.06378742934578874 -1.004017766043155 0.6333048058142583 + -0.1571389516108272 -1.383206464447154 0.6130317822645628 + -0.0673526089497123 -0.3766939159091427 -0.295675905052939 + -0.2101300141653715 0.4154833296815679 -0.3356287852161295 + -0.2627999013521987 1.394454362491855 -0.373297633558945 + -0.1852375022096298 1.604171215847941 -0.404229544581054 + 0.02328458777564998 0.7567828163750857 -0.4219752665763055 + 0.319007184336323 -0.3628744778502696 -0.41878377766653 + 0.6271301024415901 -0.8545042910582239 -0.3871056318963316 + 0.8684961701354552 -0.591592178437487 -0.3215951496001581 + 0.9873365290346698 -0.1157365512851864 -0.2210135702844742 + 0.9675397814886604 0.01573992387826362 -0.08935435728531793 + 0.8311958736962337 -0.3283092358137177 0.06428973423783857 + 0.6222406611559457 -0.996468066115659 0.2271775330584429 + 0.3847236556859635 -1.741955590423786 0.385276512717921 + 0.146357269518024 -2.01367801794074 0.5257986690609409 + -0.08610035178928221 -1.31873545046205 0.6391666359403692 + -0.3195510097504144 -0.1869176951910676 0.719934522548618 + -0.5608083413957612 0.2072163973619139 0.7666182622590556 + -0.8042693167423085 -0.3865927626927226 0.7807767478768732 + -1.027537505369297 -1.087532649339457 0.7658653741251507 + -0.2213668062065713 -0.02092854452909284 -0.2194873001390174 + -0.3788878938899713 0.7773018577836019 -0.2528093150024132 + -0.427792488251957 1.619957958878587 -0.2873191027763289 + -0.3268540524557659 1.72193537189231 -0.3188801274466233 + -0.0797452617300646 0.9581478304127619 -0.3408622959378955 + 0.2609432559393627 0.03401691929410706 -0.3448927602443328 + 0.6099043777015436 -0.3911018351322545 -0.3224733943788302 + 0.8788164116130985 -0.329088756144356 -0.2671013812702118 + 1.00580496032388 -0.1877511586863782 -0.176263249981494 + 0.9714948959078238 -0.2141110851878565 -0.05263345874178216 + 0.7962006346422337 -0.3545010050506663 0.09595996333859635 + 0.522760971411258 -0.5258526127102254 0.2578210445881479 + 0.1958029527503324 -0.7122100519375799 0.4195110559662658 + -0.1521812149605744 -0.7081522755387183 0.5681461185086643 + -0.5032292180539297 -0.286710969217312 0.6932210007584665 + -0.8468944321311067 0.19586659748449 0.7875793170403877 + -1.17021642270965 0.1002170401736091 0.8475202906110373 + -1.451372637522864 -0.5131484486651781 0.8723299617091387 + -1.660819805936425 -0.971961638561591 0.863630284480112 + + +# name: pyt2 +# type: matrix +# rows: 361 +# columns: 3 + 0.05409103532871957 0.6113357755192655 0.3345731891520148 + 0.03587386696464456 0.6838413618903604 0.2802847711449951 + 0.02437146139893502 0.7763037947983592 0.1993247438027057 + 0.02208770123720252 0.8279736278185531 0.1499386709442443 + 0.04023977768064307 0.7787203887459079 0.1810398335734489 + 0.1165774627395264 0.588646746303891 0.2947757909565825 + 0.2584775342101411 0.3994297927129787 0.3420926730768801 + 0.4081376497616105 0.3025075034776377 0.2893548467607517 + 0.6022435028047854 0.1478014152650943 0.2499550819301201 + 0.7616545069422211 0.03085280530661075 0.2074926877511681 + 0.826269357962396 0.008805798666742779 0.1649248433708611 + 0.8526978285821848 0.009931380084643242 0.137370791333172 + 0.8533876232144103 0.02498836043098179 0.1216240163546079 + 0.8362697181998656 0.04746850265887183 0.1162617791412625 + 0.8277166053098337 0.04765126145524821 0.124632133234918 + 0.8171737466800082 0.03564209611874748 0.1471841572012443 + 0.7809410713613654 0.03754903204805599 0.1815098965905787 + 0.7055639453006597 0.07447310628506174 0.2199629484142786 + 0.5809820775420188 0.1763271220033807 0.2426908004546005 + 0.02847024506281864 0.7371844438832909 0.2343453110538906 + 0.01845923430049033 0.768371984492222 0.2131687812072877 + 0.01448510895942565 0.7911216653998996 0.1943932256406747 + 0.01711283557679811 0.7750863653476014 0.2078007990756005 + 0.03744765209323948 0.6449752472429912 0.3175771006637694 + 0.1017328903844925 0.408073770498542 0.4901933391169655 + 0.2096801660772263 0.2755414055171828 0.5147784284055911 + 0.3391631277840655 0.2372893815882229 0.4235474906277116 + 0.5153830828519486 0.1300669837983139 0.3545499333497376 + 0.6787090303852206 0.03230814599452209 0.2889828236202573 + 0.7631241477260017 0.01146824060705087 0.2254076116669476 + 0.8040670682374145 0.01487047470478511 0.1810624570578004 + 0.8120168570436122 0.03709660689552827 0.1508865360608596 + 0.8029567015745944 0.06400727034119741 0.1330360280842082 + 0.8144805579282928 0.05471441426587679 0.1308050278058304 + 0.8294800031124367 0.0298759125842947 0.1406440843032686 + 0.8202150278698276 0.02146721725367509 0.1583177548764972 + 0.7828221782134813 0.03562160878066584 0.1815562130058528 + 0.7030402731556255 0.09538830255807831 0.2015714242862963 + 0.01137035638395846 0.88347359902378 0.1051560445922616 + 0.00829681878844326 0.8736106803095538 0.1180925009020029 + 0.009379515905699765 0.8175694866108434 0.173050997483457 + 0.01590110579516208 0.6884357062263053 0.2956631879785326 + 0.03623255676731395 0.4511161027986345 0.5126513404340516 + 0.0798801735098715 0.2460212466421905 0.6740985798479381 + 0.1524737380913074 0.1870349641410979 0.6604912977675947 + 0.2574853687892411 0.1893977876444263 0.5531168435663326 + 0.4086801277034234 0.128144417512655 0.4631754547839215 + 0.5694867434967634 0.04952680883471647 0.3809864476685202 + 0.673567160958589 0.0279544129352723 0.2984784261061387 + 0.7251058911838574 0.04177407528994431 0.2331200335261982 + 0.7315114482005365 0.08630244324658473 0.1821861085528788 + 0.7324778957279446 0.1182943438473868 0.1492277604246685 + 0.7760523028834162 0.08690261332788532 0.1370450837886986 + 0.8284049503572837 0.03606765062159616 0.1355273990211202 + 0.8461743037255367 0.01614754033560671 0.1376781559388566 + 0.8372726061606737 0.01774187950479378 0.1449855143345326 + 0.8006404229457539 0.04286559237002274 0.1564939846842235 + 0.004357440261064911 0.9597682168388638 0.03587434290007124 + 0.003768408965760976 0.9455308826901169 0.05070070834412228 + 0.006328060126016122 0.8724463090944242 0.1212256307795597 + 0.01436034742720898 0.6755574019245327 0.3100822506482582 + 0.0314999600426645 0.3927120746436598 0.5757879653136758 + 0.06014188630521291 0.2301815932635432 0.709676520431244 + 0.1088360321019079 0.205289312187016 0.685874655711076 + 0.1889131666386715 0.2195930622316637 0.5914937711296647 + 0.3176134818678839 0.1697344849234162 0.5126520332087 + 0.4691677326944962 0.09830513131113008 0.4325271359943737 + 0.5747807405045972 0.08567544949154601 0.3395438100038567 + 0.6089818732625822 0.1386379502682145 0.2523801764692032 + 0.5989103411711876 0.2167163369838604 0.184373321844952 + 0.6332276795019708 0.2165786169373222 0.150193703560707 + 0.7344931221706604 0.1264469869778475 0.1390598908514921 + 0.8281806565209383 0.0405397349768126 0.131279608502249 + 0.8645451860067797 0.01315997048839316 0.1222948435048271 + 0.8701572025867899 0.01128607461922241 0.1185567227939877 + 0.8528428712187707 0.02562118703718361 0.1215359417440458 + 0.003366718587531528 0.9773986240940205 0.01923465731844802 + 0.003184933707814011 0.9666939631595152 0.03012110313267076 + 0.006035131471307902 0.9076127334956586 0.08635213503303349 + 0.01402013629221524 0.736786945863495 0.2491929178442897 + 0.0278548076677787 0.5040502393888359 0.4680949529433855 + 0.04716405134433994 0.3888083803597447 0.5640275682959154 + 0.07797793402496686 0.3905003854722143 0.5315216805028188 + 0.1370494371717748 0.3858603645662219 0.4770901982620033 + 0.2525027484586331 0.2950110194933424 0.4524862320480245 + 0.3952263068245558 0.206194890088127 0.3985788030873172 + 0.4790208619076832 0.2159602345456607 0.3050189035466561 + 0.4734066249487571 0.317133998431945 0.2094593766192979 + 0.471167929574745 0.3752403235054715 0.1535917469197833 + 0.5706755357937439 0.2881310462665929 0.1411934179396631 + 0.728491929765086 0.1316831609740629 0.1398249092608512 + 0.8352289168917407 0.03619970674657533 0.1285713763616839 + 0.8738744667362406 0.01217582819299243 0.113949705070767 + 0.882362744471018 0.01240081446939686 0.1052364410595849 + 0.8639545392064584 0.03264311074173286 0.1034023500518088 + 0.007435546834235833 0.9684814691804489 0.02408298398531538 + 0.00751729564794015 0.9536571250255351 0.03882557932652472 + 0.01250447318955377 0.8880560643590648 0.0994394624513814 + 0.02105113490262206 0.7564686444644541 0.2224802206329239 + 0.02832703460450352 0.6594998735432982 0.3121730918521984 + 0.03290314457825542 0.6815280274861171 0.2855688279356276 + 0.04248628677860938 0.7295559928947045 0.2279577203266862 + 0.08167442127560792 0.6831120557794879 0.2352135229449043 + 0.1916130632982692 0.5180776328088607 0.2903093038928701 + 0.3348609021562751 0.3774645201359476 0.2876745777077773 + 0.3996493084065574 0.3816582717666566 0.2186924198267861 + 0.3908710332346509 0.4575726023225775 0.1515563644427717 + 0.4304432776718998 0.4427259424857725 0.1268307798423278 + 0.5696633077616257 0.2982486113176884 0.1320880809206861 + 0.7331418365489943 0.1305327407048616 0.1363254227461441 + 0.8327196488704138 0.040038761072154 0.1272415900574321 + 0.8688102241387553 0.01717561633551842 0.1140141595257263 + 0.8721125841416616 0.02268006274854597 0.1052073531097924 + 0.8322408542056235 0.06703984849332301 0.1007192973010534 + 0.02318604524644156 0.9382518921090154 0.03856206264454298 + 0.02756287519694071 0.9047883785926861 0.06764874621037321 + 0.04462765010722275 0.7907461800859109 0.1646261698068664 + 0.05506986787739367 0.666426172579599 0.2785039595430073 + 0.0432885477786191 0.7110855554964175 0.2456258967249634 + 0.02480642276752444 0.8536279824927686 0.1215655947397069 + 0.02049928568879781 0.911724080057401 0.06777663425380122 + 0.04426081411722172 0.8717218179481063 0.08401736793467193 + 0.1427629860971742 0.7080517027471913 0.1491853111556344 + 0.2820685091817703 0.5451864242709978 0.1727450665472318 + 0.3280256187366324 0.5394705330115189 0.1325038482518488 + 0.328966194688533 0.5722582543111866 0.09877555100028043 + 0.3984991887894284 0.5045365293904502 0.09696428182012139 + 0.5351534429725419 0.3542323507712481 0.11061420625621 + 0.6814402745359704 0.1961777350012099 0.1223819904628195 + 0.7947660289966435 0.0787968220684246 0.1264371489349319 + 0.8414655769089802 0.03603642744512078 0.1224979956458991 + 0.8403512717278412 0.04165735592773852 0.1179913723444202 + 0.7823340765957911 0.1040062334189463 0.1136596899852626 + 0.03997197203420159 0.9248591233805801 0.03516890458521844 + 0.05896183196579289 0.8716001148001565 0.0694380532340505 + 0.1188415081969573 0.6818854314772372 0.1992730603258055 + 0.1416897927886334 0.533540259689582 0.3247699475217846 + 0.0858377901723883 0.6836061920569895 0.2305560177706223 + 0.02968058211208358 0.8961636103251666 0.07415580756274991 + 0.01823220117543725 0.9483104046345476 0.03345739419001519 + 0.04241391806690394 0.9092098443557775 0.04837623757731867 + 0.1524255697177842 0.7452380893111349 0.1023363409710811 + 0.276465635500294 0.6082587407333547 0.1152756237663514 + 0.2667156257047416 0.6555288496449483 0.07775552465031023 + 0.2380951621139449 0.706709254347201 0.05519558353885418 + 0.296285535182237 0.6434047370535231 0.06030972776423987 + 0.4082564386291293 0.5144853428566571 0.07725821851421351 + 0.529700755499063 0.3746866384612419 0.0956126060396951 + 0.6815740628845985 0.1993680889443039 0.1190578481710976 + 0.7794332833270861 0.08600033620124702 0.1345663804716669 + 0.7919775807314423 0.06786384346631166 0.140158575802246 + 0.7378511853062579 0.1213042414849931 0.140844573208749 + 0.04098388844041177 0.9370556225247743 0.02196048903481406 + 0.07030311269508989 0.8838456138680113 0.04585127343689895 + 0.1811033086888293 0.6616612449770781 0.1572354463340925 + 0.2323975593971815 0.4993147633830395 0.268287677219779 + 0.136998374271036 0.6747897200770063 0.1882119056519578 + 0.04798045183096795 0.8874083127715695 0.06461123539746255 + 0.03497711089812776 0.9276951036997019 0.03732778540217032 + 0.09104569174769707 0.8432095881755635 0.06574472007673944 + 0.2698687029218286 0.6054903397797842 0.1246409572983874 + 0.3659097761172385 0.5207201427845242 0.1133700810982372 + 0.267484391395147 0.6701995620344656 0.06231604657038733 + 0.1902500251282261 0.7718880497913058 0.03786192508046817 + 0.2304363066571583 0.7262937697137272 0.04326992362911455 + 0.329418456089021 0.6088670023001398 0.06171454161083922 + 0.4163392902631188 0.504181099114999 0.07947961062188215 + 0.5386568961920782 0.3558041146773608 0.1055389891305609 + 0.6668136695769414 0.1973993674855903 0.1357869629374683 + 0.6989563157911576 0.1489787934086677 0.1520648908001746 + 0.6357168696870737 0.2103334528577573 0.1539496774551689 + 0.05738568114934724 0.9197881812573522 0.02282613759330059 + 0.09639213871255163 0.8603203096948959 0.04328755159255265 + 0.2229246492330093 0.6521749798782952 0.1249003708886957 + 0.2637919953222107 0.5475622336041651 0.1886457710736243 + 0.1566704934557074 0.7108688937012837 0.1324606128430089 + 0.07741394335876868 0.8564136317373671 0.0661724249038642 + 0.08863918285700888 0.8474034082361889 0.06395740890680239 + 0.2342290836047118 0.6414534072841103 0.124317509111178 + 0.4631411847782849 0.3647628467035144 0.1720959685182007 + 0.5034899970306002 0.3597292672349005 0.1367807357344994 + 0.3414460735443534 0.5834130468962566 0.07514087955938997 + 0.2369464493596901 0.7157972312928864 0.04725631934742341 + 0.3033667051614751 0.6370999696801456 0.05953332515837929 + 0.4360456116316931 0.4764569967004004 0.08749739166790634 + 0.4994002324961838 0.397526396188626 0.1030733713151903 + 0.5306213240247473 0.3570244291589021 0.1123542468163506 + 0.5634524839543112 0.3128639500571994 0.1236835659884893 + 0.5349478010589415 0.339287192141118 0.1257650067999407 + 0.4255858172411977 0.4618318521409023 0.1125823306178999 + 0.1349438407971619 0.8169021669155212 0.04815399228731689 + 0.1738857719752861 0.7593497264529548 0.06676450157175906 + 0.2515522205482196 0.6341871717394433 0.1142606077123372 + 0.2368771023969568 0.631823506070311 0.1312993915327321 + 0.1496939969421809 0.75431526482353 0.09599073823428915 + 0.1134285033074152 0.8121348752693709 0.07443662142321376 + 0.1773970465766272 0.719521431667867 0.1030815217555057 + 0.3792454219655199 0.4459566155884533 0.1747979624460269 + 0.5539116031490423 0.2508769921674807 0.195211404683477 + 0.5623780384751553 0.2800220088727932 0.1575999526520514 + 0.4328896977379022 0.4622101637733348 0.104900138488763 + 0.3801481380282869 0.5332575534745294 0.08659430849718376 + 0.5063479625586585 0.3797722246879828 0.1138798127533584 + 0.6378434031030072 0.2195435181314072 0.1426130787655855 + 0.6770129935047521 0.175126181007025 0.1478608254882229 + 0.6712046615817242 0.1873628162163935 0.1414325222018822 + 0.6333989552263615 0.2356217602247728 0.1309792845488657 + 0.5121254929017915 0.3782678572677503 0.1096066498304583 + 0.3307850223201977 0.590070566633486 0.07914441104631641 + 0.2769062718256136 0.6219008358705461 0.1011928923038402 + 0.2479280114120748 0.6568523231734517 0.0952196654144736 + 0.216438718069805 0.6890576170268079 0.09450366490338709 + 0.1669651199586296 0.747935234535037 0.08509964550633341 + 0.1340193438111008 0.7894528633603574 0.07652779282854169 + 0.1540991434471164 0.7562308467939047 0.08967000975897899 + 0.2549896529357772 0.6095008633408391 0.1355094837233836 + 0.4136203511339107 0.4009109126558422 0.1854687362102471 + 0.5204769602764925 0.2865622968804186 0.1929607428430888 + 0.536590780004883 0.2929268704434006 0.1704823495517164 + 0.5169519278807396 0.3333586740696108 0.1496893980496496 + 0.5631368090629764 0.2809912480177507 0.155871942919273 + 0.6608361098741682 0.1629492644874818 0.17621462563835 + 0.7230914698895725 0.09679218737170672 0.1801163427387208 + 0.7543241283907671 0.07752960311063115 0.1681462684986016 + 0.7768215031961814 0.07112336253860803 0.1520551342652106 + 0.778617175778987 0.08331551703253211 0.1380673071884809 + 0.703861780141621 0.1731537525834253 0.1229844672749537 + 0.4941096634608921 0.4103900613409419 0.09550027519816597 + 0.3945565894949503 0.4482511445891074 0.1571922659159422 + 0.2821439764099635 0.6005227179335878 0.1173333056564487 + 0.1644074833166532 0.7601437251046455 0.07544879157870125 + 0.1129041546624584 0.8291994305127143 0.05789641482482734 + 0.1271418670939819 0.802732342345942 0.07012579056007609 + 0.2024012265264598 0.6860680114390676 0.1115307620344727 + 0.3059189342939589 0.5381932769734975 0.1558877887325435 + 0.369262889380803 0.4647647056521609 0.1659724049670362 + 0.3946199839650881 0.449019744232401 0.1563602718025108 + 0.4564481817484264 0.3782059485501707 0.1653458697014028 + 0.5747082289322013 0.2266875218316377 0.1986042492361611 + 0.664710257945038 0.112912095615097 0.2223776464398651 + 0.704972190805529 0.07349696504198894 0.2215308441524821 + 0.7272568426641464 0.07138061992717343 0.2013625374086801 + 0.7572903673354833 0.06921716459611653 0.1734924680684004 + 0.8036476265420244 0.04713708360512252 0.1492152898528531 + 0.8333571971925503 0.03512927363586968 0.1315135291715801 + 0.815957482604978 0.06143728701849289 0.1226052303765291 + 0.6943680068156253 0.1902854629581466 0.1153465302262281 + 0.4969700210521809 0.2841234506132959 0.2189065283345233 + 0.3638573741362065 0.468466884846533 0.1676757410172605 + 0.1800782531400713 0.7305479013528682 0.08937384550706062 + 0.1102303678193613 0.8313158450630843 0.0584537871175544 + 0.1473823791342674 0.7726348758170102 0.07998274504872235 + 0.2706401954777933 0.5877838797122898 0.1415759248099168 + 0.3598328053397713 0.46738164189283 0.1727855527673987 + 0.3155570874112923 0.5474213411294595 0.1370215714592481 + 0.2367763566707304 0.6680024267466484 0.09522121658262121 + 0.3132963940832674 0.5646158242747248 0.1220877816420078 + 0.5612169016744488 0.2194230300912995 0.2193600682342519 + 0.6754491401587166 0.06115529948357074 0.2633955603577126 + 0.7006413298342458 0.04110983444467823 0.258248835721076 + 0.7113067712536369 0.06072108432731991 0.2279721444190431 + 0.7320386053983496 0.07823520019438823 0.1897261944072622 + 0.7861840702682863 0.05215361478670344 0.1616623149450102 + 0.8263014399050901 0.030808228433875 0.1428903316610349 + 0.822919520560778 0.0410609171351778 0.1360195623040441 + 0.7483560874158831 0.1126647442322091 0.1389791683519077 + 0.5661033582308965 0.1575929154108221 0.2763037263582813 + 0.4723474813786888 0.2846925680207044 0.2429599506006067 + 0.2601275335662063 0.5988254045637345 0.1410470618700592 + 0.1497750366369868 0.7674257080301667 0.08279925533284631 + 0.2032734792781646 0.6882916259688197 0.1084348947530157 + 0.3722708255831643 0.4459594818502652 0.1817696925665706 + 0.4559323178805075 0.3452963815345444 0.1987713005849481 + 0.3417280548864157 0.5228839784171604 0.1353879666964238 + 0.1766948165480492 0.7561370274095166 0.06716815604243417 + 0.2050260050340352 0.7151278124728128 0.07984618249315217 + 0.4954156606119903 0.2983086646597439 0.2062756747282657 + 0.6539555676946068 0.05666019098355202 0.2893842413218411 + 0.6751884254128409 0.02500860115458832 0.2998029734325708 + 0.6874516030234089 0.03123378069920112 0.2813146162773899 + 0.7052630820069482 0.04704183804451212 0.2476950799485396 + 0.7370121473747014 0.04463984057013249 0.2183480120551661 + 0.7641911072594387 0.03384412837742188 0.2019647643631393 + 0.7582893853925609 0.04058941009980553 0.2011212045076335 + 0.7008335869577516 0.08410066458414256 0.2150657484581061 + 0.5632936808640273 0.1263333400708749 0.3103729790650977 + 0.4865244599829177 0.2275741926843229 0.2859013473327594 + 0.2951008577500783 0.5253866858515989 0.1795124563983228 + 0.1870632310493396 0.7022998770869 0.1106368918637604 + 0.2736231355034457 0.5801108199430043 0.1462660445535502 + 0.4795056870979769 0.3006387872250352 0.2198555256769879 + 0.5717399372112479 0.2046547634630072 0.2236052993257448 + 0.4834116820258471 0.3471252999800945 0.1694630179940585 + 0.2753183370914238 0.6300436120357615 0.0946380508728146 + 0.2512511242373415 0.6554398833474199 0.09330899241523855 + 0.4784974436824534 0.3161808313547685 0.2053217249627781 + 0.6241974867787122 0.06225610966397793 0.3135464035573098 + 0.628068969790449 0.01741888342006839 0.3545121467894825 + 0.6202156297922286 0.01310912275843328 0.3666752474493382 + 0.6186555593789583 0.02107942758992283 0.3602650130311188 + 0.6157836510366631 0.03751006180111264 0.3467062871622242 + 0.6081871414065824 0.04792101614592298 0.3438918424474948 + 0.5861611797558728 0.05270463668268711 0.36113418356144 + 0.5350860718667554 0.07115946250617371 0.3937544656270708 + 0.4979024142979526 0.1796842886765395 0.3224132970255079 + 0.3975612294628774 0.3231240808337668 0.2793146897033559 + 0.2282980117473845 0.6078141587341972 0.1638878295184183 + 0.1732415355113044 0.7110749550967626 0.115683509391933 + 0.3031066600766746 0.5256940850586889 0.1711992548646365 + 0.5302314447709664 0.2306089376271829 0.2391596176018508 + 0.6347047806002527 0.1347840580993463 0.2305111613004011 + 0.6153582365765033 0.1900176464315135 0.1946241169919831 + 0.4953373987303308 0.3498619935144816 0.1548006077551876 + 0.4431819558594682 0.4002680583284542 0.1565499858120777 + 0.5320078024362522 0.2327008126999521 0.2352913848637957 + 0.5870017593102024 0.07275646342963807 0.3402417772601595 + 0.5583528862624236 0.02201372917689394 0.4196333845606825 + 0.5106160330945835 0.01369313164660336 0.4756908352588131 + 0.4637257564437079 0.02559583171162519 0.5106784118446669 + 0.4062946147865548 0.07731573179296146 0.5163896534204838 + 0.3501300391553501 0.1322566697358301 0.5176132911088198 + 0.3214218642931204 0.1104926810467203 0.5680854546601594 + 0.2895546651171887 0.08496815951042444 0.625477175372387 + 0.3952886104957392 0.290114261520195 0.3145971279840657 + 0.2665636640141892 0.498312030599645 0.2351243053861658 + 0.1400505629425232 0.7345497930832551 0.1253996439742217 + 0.1283822270630712 0.7684847210209779 0.103133051915951 + 0.268599854849737 0.559319559323221 0.172080585827042 + 0.5040745226013988 0.2548926451900327 0.2410328322085683 + 0.6289523957681329 0.1429394591362367 0.2281081450956306 + 0.6508682535740703 0.1511418647919559 0.1979898816339738 + 0.6132939827303042 0.2035214329513394 0.1831845843183563 + 0.5768412883241418 0.2226870243693392 0.2004716873065189 + 0.5624014987033138 0.1763923712610628 0.2612061300356233 + 0.5342474184751184 0.1058634795094023 0.3598891020154794 + 0.4717458242665993 0.05624747136250377 0.4720067043708969 + 0.3880798877685711 0.04475378075429116 0.5671663314771378 + 0.297902249523838 0.0868454682507158 0.615252282225446 + 0.2012237188410615 0.2297635261218321 0.5690127550371065 + 0.1443661791173336 0.3111819287797837 0.5444518921028826 + 0.13517266177874 0.2052501525215404 0.6595771856997197 + 0.1257602573003265 0.1184371251926948 0.7558026175069787 + 0.3101910692264508 0.3790343073253219 0.3107746234482274 + 0.1882468718074357 0.5982112790446312 0.2135418491479331 + 0.1009971969072547 0.7827733654257679 0.1162294376669773 + 0.1023907317900307 0.7943988165540262 0.103210451655943 + 0.2177011420276462 0.6146274465292028 0.1676714114431512 + 0.4268765617726423 0.3402118637733671 0.2329115744539906 + 0.5678185019711928 0.2086786723584104 0.2235028256703968 + 0.6185230601668944 0.1848286736103975 0.1966482662227082 + 0.6212008842308351 0.1883116674339551 0.1904874483352098 + 0.6007195523672472 0.1835564426432573 0.2157240049894956 + 0.5516083422643144 0.1745369784129992 0.2738546793226863 + 0.4722159281112996 0.1654754377914096 0.3623086340972907 + 0.3767853897463023 0.1519669043659111 0.4712477058877866 + 0.2755867955179154 0.1580531811024972 0.5663600233795874 + 0.1801770027901017 0.2237340266627752 0.5960889705471232 + 0.1115598458917154 0.3164996738139922 0.5719404802942923 + 0.08275625171179816 0.2948105727077677 0.6224331755804341 + 0.07262765402048194 0.1855955692578308 0.7417767767216872 + 0.06461839856278857 0.128683685797496 0.8066979156397153 + + diff --git a/test_gpstuff/octave/realValues_neuralnetcov.mat b/test_gpstuff/octave/realValues_neuralnetcov.mat new file mode 100644 index 00000000..bf82036a --- /dev/null +++ b/test_gpstuff/octave/realValues_neuralnetcov.mat @@ -0,0 +1,825 @@ +# Created by Octave 3.8.1, Tue Jun 07 13:41:32 2016 EEST +# name: Eft_map +# type: matrix +# rows: 200 +# columns: 1 + -4.957980315316344e-05 + -7.05300905946735e-05 + -9.920673037519474e-05 + -0.0001380318829580939 + -0.0001900344515072725 + -0.0002589510478092573 + -0.0003493272377564623 + -0.0004666126808796464 + -0.0006172418063637396 + -0.0008086896406648171 + -0.00104949048219972 + -0.001349205519121835 + -0.001718324464569711 + -0.002168086131513911 + -0.002710203892838535 + -0.003356484465578318 + -0.004118332667869875 + -0.005006140881171846 + -0.00602856993374369 + -0.007191737853157697 + -0.008498344051764285 + -0.009946768408809845 + -0.0115301965543855 + -0.01323583338135188 + -0.01504427518022348 + -0.01692911549050252 + -0.0188568594987458 + -0.02078721546279879 + -0.02267381839641236 + -0.02446542077643703 + -0.02610755761631566 + -0.02754465988066812 + -0.02872255265540822 + -0.02959123523360737 + -0.03010780245696432 + -0.03023933382819694 + -0.02996555279931793 + -0.02928104677584839 + -0.02819684172000916 + -0.02674114579577737 + -0.02495911498625025 + -0.02291154918014138 + -0.02067249732371455 + -0.01832583064341187 + -0.01596092795534066 + -0.01366769986872679 + -0.01153125185178239 + -0.009626542307750736 + -0.008013424418245881 + -0.006732464428345304 + -0.005801901238357526 + -0.005216052152809361 + -0.004945379754485918 + -0.004938320274766123 + -0.005124842225698784 + -0.005421565170824538 + -0.005738133339445284 + -0.005984418696833554 + -0.006078033817938061 + -0.005951575641321927 + -0.005559003637365167 + -0.004880583752315093 + -0.003925902837283751 + -0.002734573690270803 + -0.001374401482590687 + 6.304155464187389e-05 + 0.001469296703230039 + 0.002728028271822336 + 0.003725659262353964 + 0.004362980239428271 + 0.004566965974173609 + 0.004301968657591693 + 0.003579443475042132 + 0.00246540483763491 + 0.001084908810303986 + -0.0003769949614656487 + -0.001678207675503585 + -0.002526564290933453 + -0.002590752997037205 + -0.001514818883761593 + 0.001064342354188341 + 0.005497313123557335 + 0.01210129804295887 + 0.02113920668697247 + 0.0327998679074181 + 0.04718057075692078 + 0.06427305807366002 + 0.08395395948693779 + 0.1059804460394048 + 0.1299916281854688 + 0.155515916016346 + 0.1819842319751644 + 0.208748631349362 + 0.2351055650942717 + 0.2603227336887529 + 0.2836682489591122 + 0.3044406594849025 + 0.3219983165214361 + 0.335786568335306 + 0.3453613725370448 + 0.3504081033070516 + 0.3507545922539011 + 0.3463777616096824 + 0.3374035659501708 + 0.3241003303070168 + 0.3068659341032179 + 0.2862096183208092 + 0.2627294668474985 + 0.237086815382687 + 0.2099789613636212 + 0.1821115810369829 + 0.1541722064265008 + 0.1268059830598128 + 0.1005947317985981 + 0.07604009197446095 + 0.05355124787234423 + 0.03343745692270601 + 0.01590532545763309 + 0.001060533897580173 + -0.01108648850016226 + -0.02061158941446195 + -0.0276653641330777 + -0.0324598542829222 + -0.03525424574103733 + -0.03634028213602501 + -0.03602802341507614 + -0.03463247134465822 + -0.03246146695849558 + -0.02980514909137645 + -0.02692715643666256 + -0.02405766367909966 + -0.02138826808154985 + -0.01906868674516306 + -0.01720518474159701 + -0.01586062700967648 + -0.01505602808618057 + -0.0147734591155421 + -0.01496015749050244 + -0.01553366838710664 + -0.0163878282938261 + -0.01739937884593212 + -0.01843497669790078 + -0.0193583446861045 + -0.02003729461990512 + -0.02035034620359111 + -0.0201926728529084 + -0.01948112558780375 + -0.01815812151665174 + -0.01619423295586872 + -0.01358937475110223 + -0.01037255737074028 + -0.006600247327823452 + -0.002353449386760237 + 0.002266308320724169 + 0.007141849452758134 + 0.01214580725368759 + 0.01714636413303434 + 0.02201296785348003 + 0.02662173356915029 + 0.03086027250487496 + 0.03463173391763168 + 0.03785790335516125 + 0.04048126275896827 + 0.04246598208637004 + 0.04379787346603064 + 0.04448339358743822 + 0.04454782497319104 + 0.04403279986973126 + 0.04299335063380075 + 0.04149467763177345 + 0.03960882067989914 + 0.03741140457321797 + 0.03497860547340303 + 0.03238445537051236 + 0.02969856911580303 + 0.02698434514469721 + 0.02429765918721004 + 0.02168604180171983 + 0.01918830678238928 + 0.01683457918145424 + 0.01464665915925257 + 0.01263865098998342 + 0.01081778481194218 + 0.009185361354972716 + 0.007737755978794446 + 0.006467426919371483 + 0.005363882688497097 + 0.004414574209936984 + 0.003605687741677536 + 0.002922824327063786 + 0.002351560008857218 + 0.001877888067941299 + 0.001488550002074914 + 0.001171265855920787 + 0.0009148769656157753 + 0.0007094153714953695 + 0.0005461143031056198 + 0.0004173734882246458 + 0.0003166918141109567 + 0.0002385782864920601 + + +# name: Varft_map +# type: matrix +# rows: 200 +# columns: 1 + 0.02316643721090442 + 0.02316625523836014 + 0.02316594751865612 + 0.02316543477795106 + 0.02316459298181336 + 0.02316323136577241 + 0.02316106160836775 + 0.0231576556073198 + 0.02315238911222542 + 0.02314436852987486 + 0.02313233871290534 + 0.02311457065335528 + 0.02308872991268831 + 0.0230517294725686 + 0.02299957453835739 + 0.02292721156933067 + 0.02282839913030876 + 0.02269562347978711 + 0.02252008627195203 + 0.02229179425472357 + 0.02199978015911727 + 0.02163247891228687 + 0.0211782729858219 + 0.02062620482579033 + 0.01996683349121675 + 0.0191931885181835 + 0.01830174941025058 + 0.01729335775311438 + 0.01617395498650999 + 0.01495503639637271 + 0.01365372398118514 + 0.01229238873984395 + 0.01089779538534401 + 0.009499795502214107 + 0.008129652190915534 + 0.006818131999432538 + 0.005593539721882829 + 0.004479890908985529 + 0.003495410902584314 + 0.002651517050063171 + 0.001952386109498307 + 0.001395139434800692 + 0.0009706048544407819 + 0.0006645476347146087 + 0.0004592136576444875 + 0.0003350028063255767 + 0.0002720918938893743 + 0.0002518518798577084 + 0.0002579471736993653 + 0.0002770567200433595 + 0.000299208103421475 + 0.0003177594387541796 + 0.0003290945217856653 + 0.000332113130336046 + 0.0003276019480214637 + 0.0003175656424332061 + 0.0003045860149841345 + 0.000291263063484995 + 0.0002797771818290329 + 0.0002715971620239933 + 0.0002673439431777856 + 0.0002668049012052864 + 0.0002690782599405993 + 0.0002728132527985982 + 0.000276501076311067 + 0.0002787667257645593 + 0.000278614125066412 + 0.0002755868543599486 + 0.0002698228646346411 + 0.000262000976169019 + 0.0002531959576712248 + 0.0002446738994231618 + 0.0002376677050719457 + 0.000233172691535357 + 0.000231795126423108 + 0.0002336741505502629 + 0.0002384828863655902 + 0.0002455006653102922 + 0.0002537376661569217 + 0.0002620872623750325 + 0.0002694803107926962 + 0.0002750187948820579 + 0.0002780723752491346 + 0.0002783290013455633 + 0.0002757984284454118 + 0.0002707742075780464 + 0.0002637647942448293 + 0.0002554075081440225 + 0.0002463800717981031 + 0.0002373234319757236 + 0.0002287867250652317 + 0.0002212009162719832 + 0.0002148823037117047 + 0.0002100613814482281 + 0.0002069273057127979 + 0.0002056743078106202 + 0.0002065347290257716 + 0.000209784617292378 + 0.0002157123443476301 + 0.0002245482314876916 + 0.0002363627752004979 + 0.0002509511067282227 + 0.0002677296397658561 + 0.0002856751308887399 + 0.000303334629353582 + 0.0003189260036587684 + 0.0003305333257126383 + 0.0003363814883011289 + 0.0003351536976714392 + 0.0003262985533201666 + 0.0003102649300435224 + 0.0002886062814937626 + 0.0002639125349592729 + 0.000239555797221 + 0.0002192710693144223 + 0.0002066282771459073 + 0.0002044794905227271 + 0.000214478396196132 + 0.0002367636296963585 + 0.0002698729725278855 + 0.0003109154451910005 + 0.0003559804393668264 + 0.0004007169501254459 + 0.0004409815670035032 + 0.0004734389460102906 + 0.0004960068278429715 + 0.0005080681005017566 + 0.0005104188274809365 + 0.0005049738160583447 + 0.0004942989069247512 + 0.0004810714805695247 + 0.0004675808340332856 + 0.0004553661888812219 + 0.0004450556514204833 + 0.0004364225274272743 + 0.00042862673164289 + 0.0004205695359218858 + 0.0004112681660853254 + 0.0004001571869018256 + 0.0003872455539565972 + 0.0003730962794728822 + 0.0003586411185925592 + 0.0003448854729706588 + 0.0003325896357528127 + 0.0003220250834508435 + 0.0003128961228443736 + 0.0003044893149257051 + 0.0002960708008508013 + 0.0002875024852197483 + 0.0002800005651564449 + 0.000276922308698524 + 0.0002844458404303724 + 0.0003120070309871464 + 0.0003723784341809616 + 0.0004813154515766124 + 0.0006567495150979173 + 0.000917569757998199 + 0.001282094723614527 + 0.00176638528965694 + 0.002382581445991475 + 0.003137453525579498 + 0.004031340978109837 + 0.00505761065041849 + 0.006202707317915297 + 0.007446800259246177 + 0.008764960829126102 + 0.01012874695064569 + 0.01150802914189929 + 0.01287287401442601 + 0.01419530634655647 + 0.0154507973977591 + 0.01661936966287559 + 0.01768625950535569 + 0.01864213131521662 + 0.01948288307779639 + 0.02020911837494598 + 0.02082538106946727 + 0.02133925584723836 + 0.0217604320665733 + 0.02209981307931929 + 0.0223687321225208 + 0.02257831280117779 + 0.02273899029753207 + 0.02286019105668702 + 0.02295015510261724 + 0.02301587667793856 + 0.02306313517322745 + 0.02309658842705367 + 0.02311990331845591 + 0.02313590301334874 + 0.02314671528614504 + 0.02315391127106757 + 0.02315862831468608 + 0.02316167404923979 + 0.02316361132160686 + 0.02316482526313387 + 0.02316557471446462 + 0.02316603060030411 + 0.0231663038518289 + 0.02316646524614894 + + +# name: Eft_map2 +# type: matrix +# rows: 200 +# columns: 1 + -0.03891419751989389 + -0.03852873689379344 + -0.03813519415070665 + -0.03773339749434435 + -0.03732317424588771 + -0.03690435121934499 + -0.03647675514737969 + -0.03604021316175121 + -0.03559455333614103 + -0.03513960529543247 + -0.03467520089990472 + -0.03420117501058328 + -0.03371736634421119 + -0.03322361842695898 + -0.03271978065557235 + -0.03220570947672741 + -0.03168126969595164 + -0.03114633592764982 + -0.03060079419942596 + -0.0300445437246033 + -0.029477498858407 + -0.02889959125300123 + -0.02831077222901257 + -0.02771101538139575 + -0.02710031943948543 + -0.0264787113998679 + -0.02584624995473739 + -0.02520302923614182 + -0.02454918289867791 + -0.02388488856362514 + -0.02321037264550974 + -0.0225259155838593 + -0.02183185749966121 + -0.02112860429452112 + -0.02041663420787287 + -0.01969650484164553 + -0.0189688606564733 + -0.01823444093475679 + -0.01749408819445541 + -0.01674875702285128 + -0.01599952328159304 + -0.01524759360898997 + -0.01449431511723809 + -0.01374118514234191 + -0.0129898608587169 + -0.01224216851015036 + -0.01150011193630007 + -0.0107658799823529 + -0.01004185226910259 + -0.009330602662215526 + -0.008634899614179403 + -0.007957702345690265 + -0.007302151587481376 + -0.006671553304148148 + -0.006069353458734383 + -0.005499101446853061 + -0.004964399313211132 + -0.004468833254273719 + -0.004015883191712533 + -0.003608805370454604 + -0.003250481967954855 + -0.002943230608517311 + -0.002688565447398261 + -0.002486900144241133 + -0.00233718160868257 + -0.002236441930573818 + -0.002179254487648663 + -0.002157078995630002 + -0.002157479431687648 + -0.002163198615569684 + -0.002151074187446866 + -0.002090783342499236 + -0.00194340873275145 + -0.001659826432408806 + -0.001178930083776564 + -0.0004257249197490154 + 0.0006906467132115068 + 0.002278848146108459 + 0.004467107636545009 + 0.00740457511746051 + 0.01126197338979473 + 0.01623113988191882 + 0.02252294137517907 + 0.03036292737496282 + 0.03998398746634457 + 0.05161522684551656 + 0.06546632204200353 + 0.081706833366467 + 0.1004404122081617 + 0.1216746262312496 + 0.1452882723554181 + 0.1709995050383997 + 0.1983396732664779 + 0.2266390356088417 + 0.2550309358377305 + 0.2824799632896644 + 0.3078367186980611 + 0.3299172392212766 + 0.3475998161149629 + 0.3599273192636674 + 0.3662006594208946 + 0.3660494481373293 + 0.3594691100998184 + 0.3468188584909845 + 0.3287810565113771 + 0.3062885476803503 + 0.280431452857653 + 0.2523575928007138 + 0.2231803926359053 + 0.1939050191522691 + 0.165378663876798 + 0.1382658171314519 + 0.1130453640423523 + 0.09002402071072524 + 0.06935999956977312 + 0.05109140075957708 + 0.03516509343780605 + 0.02146328280264242 + 0.009826235426178442 + 7.060989427376541e-05 + -0.007996511096999726 + -0.01456742073695239 + -0.01982679021143774 + -0.02394721511080977 + -0.02708669844667444 + -0.0293875495318412 + -0.03097627539062753 + -0.03196413426179934 + -0.03244810189909142 + -0.03251206835363174 + -0.03222813602286756 + -0.03165793054829358 + -0.03085386669034662 + -0.02986033364396157 + -0.02871478021346618 + -0.02744869137723249 + -0.02608845527429438 + -0.02465612450189703 + -0.02317007857283393 + -0.021645595989078 + -0.02009534507660327 + -0.01852980278369465 + -0.01695761030392262 + -0.01538587380167833 + -0.01382041779901044 + -0.01226599801150918 + -0.01072647964643281 + -0.009204986429560691 + -0.007704024932731812 + -0.006225588139665561 + -0.004771241617792299 + -0.003342195160797701 + -0.00193936232439107 + -0.0005634098982980618 + 0.0007852009762405743 + 0.002106180609352748 + 0.00339938229560488 + 0.004664778585723894 + 0.005902441476159481 + 0.007112525837335681 + 0.008295255520540223 + 0.009450911681131657 + 0.01057982293866999 + 0.01168235705981324 + 0.01275891390907091 + 0.01380991945478272 + 0.01483582065707623 + 0.0158370810959525 + 0.01681417722091005 + 0.01776759512691761 + 0.01869782777496276 + 0.01960537259343198 + 0.02049072940280539 + 0.02135439862096256 + 0.0221968797082237 + 0.0230186698224184 + 0.02382026265513915 + 0.02460214742769651 + 0.02536480802696239 + 0.02610872226317973 + 0.02683436123806793 + 0.02754218880797943 + 0.02823266113250433 + 0.02890622630000905 + 0.02956332401929807 + 0.03020438537310355 + 0.03082983262366668 + 0.03144007906761281 + 0.03203552893184103 + 0.0326165773088416 + 0.03318361012476423 + 0.03373700413757597 + 0.0342771269615465 + 0.0348043371157658 + 0.03531898409201872 + 0.03582140844168968 + 0.03631194187784814 + 0.0367909073910333 + 0.03725861937676811 + 0.03771538377308659 + + +# name: Varft_map2 +# type: matrix +# rows: 200 +# columns: 1 + 0.006860270666595558 + 0.006631184481923791 + 0.006403753744684049 + 0.006178109751237781 + 0.005954387608755662 + 0.005732726170974645 + 0.005513267951767986 + 0.00529615901423286 + 0.005081548832874594 + 0.004869590126308054 + 0.004660438657757227 + 0.004454253000513053 + 0.004251194265421643 + 0.004051425787269691 + 0.003855112767006563 + 0.003662421866526655 + 0.003473520752812043 + 0.003288577588220543 + 0.003107760463744613 + 0.002931236772224066 + 0.002759172518648323 + 0.002591731564993593 + 0.002429074807359766 + 0.002271359283699037 + 0.002118737210984545 + 0.001971354951438409 + 0.001829351908341104 + 0.001692859352996456 + 0.001561999185753282 + 0.001436882635445613 + 0.001317608903352308 + 0.001204263759723267 + 0.001096918103208888 + 0.0009956264959355421 + 0.0009004256897969798 + 0.0008113331624857167 + 0.0007283456850656345 + 0.000651437946271205 + 0.0005805612623557277 + 0.0005156424049093111 + 0.0004565825827282932 + 0.000403256617293235 + 0.0003555123545789796 + 0.0003131703586212176 + 0.0002760239342618487 + 0.0002438395274559912 + 0.0002163575513088878 + 0.0001932936841418931 + 0.0001743406820924331 + 0.0001591707426746858 + 0.0001474384469618562 + 0.0001387842963492814 + 0.0001328388448461615 + 0.0001292274094321089 + 0.0001275753191338769 + 0.0001275136382200559 + 0.000128685270706419 + 0.0001307513228222534 + 0.000133397568137128 + 0.000136340828094994 + 0.0001393350502176816 + 0.0001421768393676803 + 0.0001447101762569458 + 0.0001468300442676318 + 0.0001484846828065933 + 0.0001496761950312564 + 0.0001504592612797673 + 0.000150937748094826 + 0.0001512590565854177 + 0.0001516061228172827 + 0.0001521870669165537 + 0.0001532225868722259 + 0.0001549313103740291 + 0.0001575134591096372 + 0.0001611333552949956 + 0.0001659015250953244 + 0.0001718574455626953 + 0.0001789543548620376 + 0.0001870479967405192 + 0.0001958916593717275 + 0.0002051402904765798 + 0.0002143666252905074 + 0.0002230918399687143 + 0.0002308318378659857 + 0.0002371574914148411 + 0.0002417628142994954 + 0.0002445295015083837 + 0.0002455709030784181 + 0.0002452359320104236 + 0.0002440573695987047 + 0.0002426430481221598 + 0.0002415330144208694 + 0.0002410747190975671 + 0.000241385729525978 + 0.0002424572849325513 + 0.0002443875724469913 + 0.0002476363981781526 + 0.0002531224576640956 + 0.0002620197570312732 + 0.000275276949813219 + 0.0002930883012268737 + 0.0003146119271184855 + 0.0003380688989062519 + 0.0003610937499133327 + 0.0003810913673590322 + 0.0003954860274145711 + 0.0004019562287175815 + 0.0003987945010818228 + 0.000385373576462511 + 0.0003625159400020284 + 0.0003325355866301005 + 0.0002988667146291424 + 0.0002653911354414396 + 0.0002356940062029911 + 0.0002124706080851579 + 0.0001972127696449055 + 0.0001901894450971886 + 0.0001906524523954678 + 0.0001971632381073674 + 0.0002079421985096142 + 0.0002211704695352923 + 0.0002352081114197491 + 0.0002487213110548003 + 0.0002607301240931115 + 0.0002705974304995085 + 0.0002779814960759408 + 0.0002827716952976678 + 0.0002850220454890806 + 0.0002848919735112254 + 0.0002825991877142275 + 0.0002783860874790989 + 0.0002724988601724432 + 0.0002651771348581855 + 0.0002566515456171592 + 0.0002471465609662493 + 0.0002368862497171831 + 0.0002261011167776772 + 0.0002150346428468897 + 0.0002039486299872939 + 0.0001931268529991037 + 0.0001828768298834937 + 0.0001735297534638525 + 0.0001654387792608958 + 0.0001589759545000957 + 0.000154528113650354 + 0.000152492070140231 + 0.0001532694133297152 + 0.0001572611838925875 + 0.0001648626566799205 + 0.000176458413457703 + 0.0001924178422870737 + 0.0002130911583403394 + 0.000238806003918679 + 0.000269864654157459 + 0.000306541829364626 + 0.0003490830949346435 + 0.0003977038148862411 + 0.0004525886145295699 + 0.0005138913010668267 + 0.0005817351873230736 + 0.0006562137627300624 + 0.0007373916565036609 + 0.0008253058402751812 + 0.0009199670207848953 + 0.001021361177209079 + 0.001129451202166898 + 0.001244178609962732 + 0.001365465280267042 + 0.001493215209788734 + 0.001627316248796307 + 0.001767641803174347 + 0.001914052486347573 + 0.0020663977086115 + 0.002224517194298281 + 0.002388242419748665 + 0.002557397967240971 + 0.002731802791946403 + 0.002911271400565574 + 0.003095614941634794 + 0.003284642208609689 + 0.003478160557696786 + 0.003675976743144571 + 0.003877897673217223 + 0.004083731090473552 + 0.004293286180304001 + 0.004506374111792444 + 0.004722808515096988 + 0.004942405899591829 + 0.00516498601694082 + 0.005390372173205593 + 0.005618391493989794 + 0.005848875146473254 + 0.006081658522007816 + 0.006316581382798891 + 0.006553487975979211 + 0.006792227118215255 + 0.00703265225376748 + 0.007274621488742028 + 0.007517997604104876 + 0.007762648049769894 + + diff --git a/test_gpstuff/octave/realValues_periodic.mat b/test_gpstuff/octave/realValues_periodic.mat new file mode 100644 index 00000000..d49ab197 --- /dev/null +++ b/test_gpstuff/octave/realValues_periodic.mat @@ -0,0 +1,2941 @@ +# Created by Octave 3.8.1, Tue Jun 07 13:43:54 2016 EEST +# name: Eft_full +# type: matrix +# rows: 132 +# columns: 1 + -1.518638966352493 + -1.576376894433817 + -1.084311002768715 + -0.2376246113252303 + 0.3190460129128447 + 0.5626095172485051 + 1.090684067544159 + 0.5820670532351244 + -0.1077309405222542 + -0.2049293993797505 + -0.6183753180308682 + -1.128755031950071 + -1.625985286670263 + -1.654197763018944 + -1.145083662466678 + -0.4977129588132168 + 0.1070247692493194 + 0.4710872288690924 + 1.183730148892513 + 0.7187851602329078 + -0.1297221271772233 + -0.3504432109584192 + -0.4793311955185264 + -0.9223069175428913 + -1.467602558754234 + -1.557461467099869 + -1.201288671850471 + -0.172012727736141 + 0.1305444416966239 + 0.259296517207978 + 0.804905963599315 + 0.7927643983691837 + 0.03610736344615906 + -0.4138362736362216 + -0.7083944350580493 + -0.8031967730260603 + -1.090375969990673 + -1.211252607230345 + -0.9794951820141433 + -0.3302180664909145 + 0.2146068608082117 + 0.5703560292456575 + 0.9007071743764679 + 0.5500960402852573 + -0.04733639583631866 + -0.3031492936567968 + -0.7174993474969527 + -0.8407981399637592 + -1.099404528902947 + -1.44285640801717 + -1.243515607408031 + -0.5785575521753454 + 0.000503908412542442 + 0.3685798041032216 + 1.194767262862961 + 0.7971901868896676 + 0.05439558134536826 + -0.5097659644197017 + -0.4589823987133594 + -0.7578162319822319 + -1.076354494715511 + -1.28668326283639 + -0.7312945911699122 + -0.04312264186321513 + 0.1450915641519208 + 0.5266399699309479 + 0.9698757140682375 + 0.7055472561729259 + -0.2910525460586784 + -0.4281752517762727 + -0.4000136650460036 + -0.7148378505288751 + -0.9834502567863261 + -1.119485696109124 + -0.8212676949736795 + -0.2357231909242088 + 0.1220257548787285 + 0.4731381260657617 + 0.9191024818588909 + 0.6450183787634074 + -0.08201723707012665 + -0.4002430303961111 + -0.458088646320606 + -0.6010701409229926 + -0.8532284907126475 + -1.004208141864297 + -0.7382572485514618 + -0.2044773620514242 + 0.1172865738408388 + 0.4473072273578629 + 0.8727206393282947 + 0.605470304572062 + -0.09945989505121133 + -0.4016870785966098 + -0.4295281970443923 + -0.5297235885374083 + -0.7483594464252401 + -0.8931407023271578 + -0.6584166847389188 + -0.1780380352121433 + 0.1070288859673674 + 0.4130192425513421 + 0.8128270278549723 + 0.5544354150612678 + -0.1208907961461623 + -0.4042140191009735 + -0.4050809034531695 + -0.4665838430357019 + -0.6526555791330275 + -0.7890673047830905 + -0.5842305250438962 + -0.1573338364450301 + 0.09143584952398864 + 0.3713350114609093 + 0.7415760248839078 + 0.4940186792924679 + -0.1451001297456176 + -0.4071936157963256 + -0.3847202333706461 + -0.4124152493165354 + -0.5676396197544848 + -0.6938725033044706 + -0.5169532383992388 + -0.1422447001313536 + 0.07159225292775973 + 0.3242162676308813 + 0.6620976973355859 + 0.4272210205741971 + -0.1702039673441988 + -0.4093953461736926 + -0.3676103305365226 + -0.3668732018206422 + + +# name: Eft_full1 +# type: matrix +# rows: 660 +# columns: 1 + -27.21717708054383 + -27.1654965053126 + -27.11353887658088 + -27.06130702669964 + -27.00880374455453 + -26.95603177489123 + -26.90299381761968 + -26.84969252722597 + -26.79613051209968 + -26.74231033392159 + -26.68823450707322 + -26.63390549805605 + -26.57932572488831 + -26.52449755661393 + -26.46942331269103 + -26.41410526255102 + -26.35854562503599 + -26.30274656793429 + -26.24671020752481 + -26.1904386080967 + -26.13393378157331 + -26.07719768701762 + -26.02023223032123 + -25.96303926375227 + -25.90562058564246 + -25.84797794004696 + -25.79011301638051 + -25.73202744915329 + -25.67372281768949 + -25.61520064583503 + -25.5564624017306 + -25.49750949759568 + -25.43834328948045 + -25.37896507713982 + -25.31937610380843 + -25.25957755609257 + -25.19957056382894 + -25.13935620000171 + -25.07893548060315 + -25.01830936462125 + -24.95747875397683 + -24.89644449347453 + -24.83520737084506 + -24.77376811672516 + -24.71212740468857 + -24.65028585134672 + -24.58824401638033 + -24.52600240267295 + -24.4635614563884 + -24.40092156715779 + -24.33808306821707 + -24.27504623659144 + -24.21181129327836 + -24.14837840349963 + -24.08474767693939 + -24.02091916798727 + -23.95689287604939 + -23.89266874583697 + -23.82824666768347 + -23.76362647792794 + -23.6988079592198 + -23.63379084096105 + -23.56857479969382 + -23.50315945952612 + -23.43754439256084 + -23.37172911938841 + -23.30571310954624 + -23.23949578208492 + -23.17307650597878 + -23.10645460079287 + -23.03962933716032 + -22.9725999374228 + -22.90536557618089 + -22.83792538094697 + -22.7702784327606 + -22.70242376688677 + -22.63436037344344 + -22.56608719809919 + -22.4976031428223 + -22.4289070665723 + -22.35999778604386 + -22.29087407646746 + -22.22153467232356 + -22.15197826819995 + -22.08220351957259 + -22.01220904364763 + -21.94199342018903 + -21.87155519237405 + -21.80089286769099 + -21.7300049188223 + -21.65888978452131 + -21.58754587057039 + -21.51597155069299 + -21.44416516748605 + -21.37212503342032 + -21.29984943174806 + -21.22733661756722 + -21.15458481877121 + -21.08159223704657 + -21.00835704895088 + -20.93487740688743 + -20.86115144017715 + -20.78717725612729 + -20.7129529410747 + -20.63847656144773 + -20.56374616490065 + -20.48875978137676 + -20.41351542420223 + -20.33801109121065 + -20.26224476587792 + -20.18621441843176 + -20.10991800697023 + -20.0333534786684 + -19.9565187708215 + -19.87941181212142 + -19.80203052370983 + -19.72437282042691 + -19.64643661191178 + -19.56821980382107 + -19.48972029900548 + -19.41093599866637 + -19.33186480355454 + -19.25250461517737 + -19.17285333694697 + -19.09290887541519 + -19.01266914143373 + -18.93213205135764 + -18.85129552823629 + -18.77015750302458 + -18.68871591575977 + -18.60696871674398 + -18.52491386775921 + -18.44254934323816 + -18.3598731314669 + -18.27688323573955 + -18.19357767557223 + -18.10995448784374 + -18.02601172801813 + -17.94174747125116 + -17.85715981359375 + -17.77224687314525 + -17.68700679118309 + -17.60143773333121 + -17.5155378906688 + -17.42930548088624 + -17.34273874940151 + -17.25583597045147 + -17.16859544822259 + -17.08101551793537 + -16.9930945469364 + -16.90483093572551 + -16.81622311912369 + -16.72726956721181 + -16.63796878643484 + -16.5483193206345 + -16.45831975202988 + -16.36796870224876 + -16.27726483333862 + -16.1862068486527 + -16.09479349393897 + -16.00302355819426 + -15.91089587465251 + -15.81840932164893 + -15.72556282357007 + -15.63235535171145 + -15.53878592517601 + -15.44485361169687 + -15.35055752846822 + -15.25589684299636 + -15.16087077387111 + -15.06547859154423 + -14.96971961910359 + -14.87359323302655 + -14.77709886386396 + -14.68023599696588 + -14.58300417317534 + -14.48540298947174 + -14.3874320996203 + -14.28909121477182 + -14.1903801040728 + -14.09129859528056 + -13.99184657523014 + -13.89202399042739 + -13.79183084757099 + -13.69126721396341 + -13.59033321806285 + -13.48902904981952 + -13.38735496121174 + -13.28531126650384 + -13.18289834273128 + -13.08011662994878 + -12.97696663157771 + -12.87344891474859 + -12.76956411046422 + -12.66531291394551 + -12.56069608475144 + -12.4557144470584 + -12.35036888972351 + -12.24466036653365 + -12.13858989618251 + -12.03215856250495 + -11.9253675144015 + -11.81821796594835 + -11.71071119638842 + -11.60284855006256 + -11.49463143642518 + -11.38606132990918 + -11.27713976988463 + -11.16786836044949 + -11.05824877035249 + -10.94828273274734 + -10.83797204499007 + -10.72731856842978 + -10.61632422811817 + -10.50499101249099 + -10.39332097311834 + -10.2813162242534 + -10.16897894255527 + -10.05631136661776 + -9.943315796558949 + -9.829994593580039 + -9.71635017945502 + -9.602385036048162 + -9.488101704702558 + -9.373502785805528 + -9.25859093806514 + -9.143368877959944 + -9.027839379105814 + -8.912005271524578 + -8.795869441008477 + -8.679434828365146 + -8.562704428671509 + -8.445681290530842 + -8.328368515229101 + -8.210769255943376 + -8.092886716883271 + -7.974724152403269 + -7.856284866145927 + -7.737572210099529 + -7.618589583614011 + -7.49934043251676 + -7.379828248028957 + -7.260056565836834 + -7.140028965002415 + -7.019749066922003 + -6.899220534208951 + -6.778447069692845 + -6.657432415184957 + -6.536180350363651 + -6.414694691671485 + -6.29297929102745 + -6.171038034758482 + -6.048874842208363 + -5.926493664647978 + -5.803898483937417 + -5.681093311233667 + -5.558082185741227 + -5.434869173395612 + -5.311458365503711 + -5.187853877388534 + -5.064059847085446 + -4.940080433902438 + -4.815919817051167 + -4.691582194262708 + -4.567071780329741 + -4.442392805704287 + -4.317549515021256 + -4.19254616566343 + -4.06738702626609 + -3.942076375260854 + -3.816618499393087 + -3.691017692155924 + -3.56527825235537 + -3.439404482520729 + -3.313400687430089 + -3.187271172545081 + -3.061020242450866 + -2.93465219936553 + -2.80817134146838 + -2.681581961449865 + -2.554888344890685 + -2.428094768694962 + -2.301205499490038 + -2.174224792085397 + -2.047156887887411 + -1.920006013250202 + -1.792776377975315 + -1.665472173643479 + -1.538097572120137 + -1.410656723868328 + -1.283153756422109 + -1.155592772797434 + -1.027977849890817 + -0.9003130368848815 + -0.7726023537372839 + -0.644849789528223 + -0.517059300956987 + -0.389234810739822 + -0.2613802060765238 + -0.1334993370794564 + -0.005596015266121412 + 0.1223259879927241 + 0.2502629430420598 + 0.3782111633816498 + 0.5061670072017819 + 0.6341268789153673 + 0.7620872305682269 + 0.8900445634210428 + 1.017995429278187 + 1.145936432043413 + 1.273864229085518 + 1.401775532712861 + 1.529667111532547 + 1.657535791847579 + 1.785378459085166 + 1.913192059042899 + 2.040973599349513 + 2.168720150720617 + 2.296428848250628 + 2.424096892749844 + 2.551721551958622 + 2.679300161817139 + 2.80683012771209 + 2.934308925628898 + 3.061734103353103 + 3.189103281667087 + 3.316414155406676 + 3.443664494668894 + 3.570852145822073 + 3.697975032616796 + 3.825031157201465 + 3.952018601151565 + 4.078935526425141 + 4.205780176379164 + 4.332550876676805 + 4.459246036159186 + 4.585864147770735 + 4.712403789411553 + 4.838863624710086 + 4.965242403884474 + 5.091538964451786 + 5.217752231981024 + 5.343881220792468 + 5.469925034623543 + 5.595882867293369 + 5.721754003278988 + 5.847537818321257 + 5.973233779931718 + 6.098841447929999 + 6.224360474948185 + 6.349790606799502 + 6.475131682963308 + 6.600383636936215 + 6.725546496568427 + 6.850620384356148 + 6.975605517760414 + 7.100502209404851 + 7.225310867296912 + 7.350031994981748 + 7.474666191697963 + 7.599214152434854 + 7.723676668035012 + 7.848054625168572 + 7.972349006360446 + 8.096560889935404 + 8.220691449894446 + 8.344741955821178 + 8.468713772713556 + 8.592608360777206 + 8.716427275198271 + 8.84017216588154 + 8.963844777082045 + 9.087446947126978 + 9.210980607989995 + 9.334447784863414 + 9.457850595717787 + 9.581191250795314 + 9.704472052035953 + 9.82769539256708 + 9.950863756055469 + 10.07397971603723 + 10.19704593525387 + 10.32006516494357 + 10.44304024404619 + 10.56597409842652 + 10.68886974001566 + 10.8117302659407 + 10.93455885768174 + 11.05735877999746 + 11.18013338004187 + 11.30288608632338 + 11.42562040763653 + 11.54833993195655 + 11.67104832536029 + 11.79374933081647 + 11.91644676702379 + 12.03914452713411 + 12.16184657754218 + 12.28455695653224 + 12.40727977303015 + 12.53001920506438 + 12.65277949859137 + 12.77556496586396 + 12.898379984082 + 13.02122899384847 + 13.14411649764372 + 13.26704705826126 + 13.39002529722484 + 13.51305589320043 + 13.63614358022949 + 13.75929314618827 + 13.88250943093522 + 14.00579732471829 + 14.12916176628164 + 14.25260774113201 + 14.37614027968311 + 14.49976445545315 + 14.62348538312392 + 14.74730821666981 + 14.8712381474553 + 14.99528040222322 + 15.11944024119987 + 15.24372295600074 + 15.36813386766516 + 15.49267832461578 + 15.6173617005818 + 15.74218939248283 + 15.8671668183531 + 15.99229941523777 + 16.11759263696706 + 16.24305195209263 + 16.36868284159937 + 16.49449079679539 + 16.62048131705217 + 16.74665990756478 + 16.87303207711932 + 16.9996033358575 + 17.12637919295412 + 17.25336515434583 + 17.38056672044627 + 17.50798938381968 + 17.63563862685453 + 17.76351991944216 + 17.89163871661913 + 18.02000045624868 + 18.14861055662038 + 18.2774744140969 + 18.40659740078058 + 18.53598486206238 + 18.66564211429272 + 18.79557444241652 + 18.92578709749637 + 19.05628529438707 + 19.18707420936266 + 19.31815897761498 + 19.44954469100276 + 19.58123639550683 + 19.71323908897261 + 19.84555771861073 + 19.97819717869527 + 20.11116230809455 + 20.24445788794344 + 20.37808863928478 + 20.5120592206398 + 20.64637422570331 + 20.78103818093155 + 20.91605554325872 + 21.05143069771657 + 21.18716795513194 + 21.32327154976588 + 21.45974563706739 + 21.59659429134479 + 21.73382150349687 + 21.87143117874098 + 22.00942713435165 + 22.14781309749026 + 22.28659270286209 + 22.42576949062197 + 22.5653469041589 + 22.70532828790112 + 22.84571688518622 + 22.98651583614833 + 23.12772817559051 + 23.26935683089937 + 23.41140461999703 + 23.55387424927687 + 23.69676831160211 + 23.84008928431172 + 23.98383952723486 + 24.1280212807593 + 24.27263666391968 + 24.41768767250699 + 24.56317617717127 + 24.7091039216466 + 24.85547252088315 + 25.00228345932851 + 25.14953808911719 + 25.2972376284207 + 25.44538315972284 + 25.59397562817605 + 25.7430158399568 + 25.89250446076426 + 26.04244201414713 + 26.19282888007217 + 26.34366529340571 + 26.49495134248673 + 26.64668696768263 + 26.79887196003347 + 26.95150595990856 + 27.10458845571088 + 27.25811878260436 + 27.41209612128569 + 27.56651949682475 + 27.72138777745613 + 27.87669967356567 + 28.03245373651509 + 28.18864835769671 + 28.34528176753622 + 28.50235203450086 + 28.65985706425067 + 28.81779459874781 + 28.97616221543478 + 29.13495732651847 + 29.29417717815761 + 29.45381884980054 + 29.61387925359929 + 29.7743551337112 + 29.93524306581128 + 30.09653945659556 + 30.25824054323039 + 30.42034239302518 + 30.58284090301197 + 30.74573179960771 + 30.90901063833587 + 31.07267280362657 + 31.23671350857944 + 31.40112779482297 + 31.56591053242857 + 31.7310564198649 + 31.89655998397814 + 32.06241558002932 + 32.22861739178666 + 32.39515943165691 + 32.56203554089825 + 32.7292393897884 + 32.8967644779508 + 33.06460413464413 + 33.23275151917039 + 33.40119962123947 + 33.56994126146435 + 33.73896909188227 + 33.90827559647801 + 34.07785309180133 + 34.24769372764229 + 34.41778948767694 + 34.58813219026138 + 34.7587134891503 + 34.92952487445211 + 35.10055767338633 + 35.27180305126865 + 35.44325201249706 + 35.61489540151797 + 35.78672390394308 + 35.95872804761291 + 36.13089820379855 + 36.30322458835019 + 36.47569726296604 + 36.6483061364587 + 36.82104096610044 + 36.99389135900014 + 37.16684677349122 + 37.33989652060325 + 37.51302976557145 + 37.68623552935605 + 37.85950269024477 + 38.03281998546163 + 38.20617601283072 + 38.37955923252036 + 38.55295796870234 + 38.72636041141482 + 38.89975461837912 + 39.07312851677875 + 39.24646990527299 + 39.41976645583782 + 39.59300571581082 + 39.7661751098542 + 39.93926194201026 + 40.11225339779526 + 40.28513654629342 + 40.45789834235131 + 40.63052562870223 + 40.80300513822783 + 40.97532349619144 + 41.14746722252107 + 41.31942273413574 + 41.4911763472553 + 41.66271427983577 + 41.8340226538977 + 42.00508749800952 + 42.1758947497608 + 42.34643025820731 + 42.5166797864058 + 42.68662901398432 + 42.85626353965381 + 43.02556888386812 + 43.19453049138929 + 43.36313373393239 + 43.53136391289343 + 43.69920626194698 + 43.86664594980527 + 44.03366808295527 + 44.20025770837833 + 44.36639981632948 + 44.53207934314446 + 44.69728117401462 + 44.8619901458261 + 45.02619105000213 + 45.18986863534803 + 45.35300761093367 + 45.51559264896014 + 45.6776083876764 + 45.83903943427708 + 45.99987036782386 + 46.16008574219643 + 46.31967008901449 + 46.47860792058907 + 46.63688373292814 + 46.79448200865079 + 46.95138721999808 + 47.10758383180371 + 47.26305630449065 + 47.41778909708523 + 47.57176667015983 + 47.72497348891739 + 47.87739402613033 + 48.02901276515684 + 48.17981420299634 + 48.32978285323895 + 48.47890324912009 + 48.62715994649818 + 48.77453752686938 + 48.92102060039201 + 49.06659380883707 + 49.21124182863559 + 49.35494937383214 + 49.49770119909738 + 49.63948210267949 + 49.78027692938224 + 49.92007057354931 + 50.05884798197417 + 50.19659415690785 + 50.33329415891694 + 50.4689331098607 + 50.60349619580575 + 50.73696866987393 + 50.86933585517318 + 51.00058314765784 + 51.1306960189886 + 51.25966001936195 + 51.38746078034058 + + +# name: Eft_full2 +# type: matrix +# rows: 660 +# columns: 1 + -0.3955105690835019 + 0.185294351096708 + 0.8851099484546054 + 1.984991300011409 + 2.594772975593589 + 2.148748194226513 + 0.9537867842575953 + -0.7858972664036763 + -2.416171401164018 + -2.695162034198435 + -1.759323280470532 + -0.7995234533797788 + -0.06870723096855613 + 0.4570847504562439 + 1.075308815581667 + 2.079381335254839 + 2.594591802743619 + 2.077651870137313 + 0.8498002331200047 + -0.8835113032667428 + -2.471810489443351 + -2.683687346939291 + -1.673620393660665 + -0.6381387038179209 + 0.1794277486109319 + 0.8132871272957267 + 1.559814180325235 + 2.683214625559268 + 3.262246398811122 + 2.718350592691983 + 1.362056204426579 + -0.5768858642412438 + -2.38871159184465 + -2.779010998060205 + -1.87114203248535 + -0.8633881733018356 + -0.02550773803968909 + 0.640068570958225 + 1.40629872066522 + 2.530546260217423 + 3.104215111467567 + 2.576924249268192 + 1.277950228913545 + -0.5648106878123853 + -2.256706342335725 + -2.53060326419265 + -1.545091735355195 + -0.5167880432127632 + 0.2909302747760805 + 0.8976067495843019 + 1.604591125555699 + 2.683348969262548 + 3.22367459595961 + 2.668566273156246 + 1.334715283391566 + -0.5595665188119385 + -2.312574667257227 + -2.641620806289107 + -1.69579333572341 + -0.6827946756450078 + 0.1384267526993685 + 0.779088808677626 + 1.522754133886349 + 2.612161804201751 + 3.114519208235219 + 2.476518403766921 + 1.039532439682894 + -0.9408575372131809 + -2.722942616171392 + -3.007557127402278 + -1.967874664255833 + -0.8552164847705086 + 0.0310611776547951 + 0.681144332060998 + 1.388510879107891 + 2.421774824044279 + 2.878005120318716 + 2.228176011421918 + 0.813388292981736 + -1.133510806756886 + -2.896599847877221 + -3.199105241894031 + -2.230883070418841 + -1.236957842681441 + -0.4884482773184509 + 0.04099336979486878 + 0.6788471091552797 + 1.706766037840915 + 2.21532507322053 + 1.661252108831513 + 0.3631221929565789 + -1.467018495891859 + -3.117357295779844 + -3.304880598322145 + -2.21530890564569 + -1.086167171505176 + -0.1842003619264254 + 0.507271139329724 + 1.293313271143422 + 2.419131704408578 + 2.944716988961555 + 2.325201404893131 + 0.9037572436121972 + -1.064267285892949 + -2.816982476749656 + -3.044580329476325 + -1.949274509580849 + -0.8092243938512915 + 0.06662324526863017 + 0.6703438413577221 + 1.315735814680593 + 2.278883648202202 + 2.662451415038682 + 1.963149053512547 + 0.5389387048477299 + -1.371635804554162 + -3.039537142758627 + -3.19482878097454 + -2.075211586492028 + -0.9633457953284275 + -0.1395476139734217 + 0.4315133331989536 + 1.100959072850541 + 2.148451451966535 + 2.647657738090964 + 2.054552353108358 + 0.6885571410956537 + -1.226989366895149 + -2.940340239832917 + -3.139130923072489 + -2.02689514597596 + -0.8657421078954322 + 0.06424322267626437 + 0.777737591339914 + 1.597419918481676 + 2.770049736046301 + 3.346218464509264 + 2.779443271434688 + 1.396230590502226 + -0.567402870392022 + -2.339397531433546 + -2.593076567622161 + -1.534860286816437 + -0.4339346063876626 + 0.4229005828648464 + 1.045111555272614 + 1.758998557695011 + 2.818241558957951 + 3.288828388159293 + 2.649751737473716 + 1.24350239402399 + -0.6967051201737089 + -2.416729990097153 + -2.624917340312193 + -1.571279361908056 + -0.545192244587767 + 0.1815883526215245 + 0.6595685499516408 + 1.264439635346707 + 2.275680027381496 + 2.754554147758751 + 2.156696978011575 + 0.7913172889553302 + -1.130616514394769 + -2.84866755544205 + -3.049774864340137 + -1.969634077717069 + -0.8915436145917397 + -0.09410025228556584 + 0.4544568012652679 + 1.112782740745518 + 2.147961157349745 + 2.625584400337723 + 2.02669011618604 + 0.6869676700010903 + -1.166806119871539 + -2.769690378916198 + -2.822680486646292 + -1.590568683393711 + -0.3733019072597425 + 0.5557207660414303 + 1.247649043955318 + 2.081353177304734 + 3.318179762853492 + 3.989318411457167 + 3.526788999355133 + 2.213841024980396 + 0.2468583073606787 + -1.594882302189279 + -1.963935212674503 + -1.067686381487437 + -0.1516750205319752 + 0.5421438940790786 + 1.062405329050276 + 1.761920223545965 + 2.86323990397123 + 3.373651237629816 + 2.735552496587441 + 1.264712196148731 + -0.8027057690637758 + -2.654216696519301 + -2.939486874273233 + -1.900918239053681 + -0.8303205274244849 + -0.0075509662245139 + 0.5967841906030449 + 1.339218436168196 + 2.452747386521485 + 2.958209366755838 + 2.315085963108291 + 0.8491504556405345 + -1.197672459002868 + -3.004011086038314 + -3.218670396876427 + -2.099979899650963 + -0.9579947656576433 + -0.08806012946021013 + 0.5285384400277362 + 1.247615133780977 + 2.302525123720253 + 2.720114444630713 + 1.975932551039806 + 0.4105941975274692 + -1.720363824854755 + -3.577932494918147 + -3.800219116491228 + -2.64904301966021 + -1.437844883570188 + -0.4635985833412626 + 0.2892629672298668 + 1.172275495992704 + 2.403348806859716 + 2.990745701674808 + 2.398690278796181 + 0.9581544475638966 + -1.080411122464422 + -2.873879308325873 + -3.059895993561619 + -1.910961395496393 + -0.7458329557330625 + 0.1437307747962873 + 0.7881220309201087 + 1.561783406904893 + 2.697092163029166 + 3.207946856689141 + 2.559397529056098 + 1.072475883152557 + -1.014291579134925 + -2.858628352109045 + -3.094919227023168 + -1.995933215734825 + -0.8744160520819122 + -0.01392637432691579 + 0.6196766493100743 + 1.400055152977717 + 2.54651307971095 + 3.059142331750278 + 2.401125499782474 + 0.8986269315053086 + -1.196321849531804 + -3.019076575233066 + -3.191144272149492 + -1.99409320342629 + -0.7575681772139813 + 0.2156322006688214 + 0.942734239829023 + 1.7897910498701 + 2.970003114671497 + 3.483964286020463 + 2.805212514736582 + 1.268293360724688 + -0.8677048387320427 + -2.726682332684902 + -2.924758548799353 + -1.750683891996738 + -0.5407693559636293 + 0.3957202817966099 + 1.067571314745385 + 1.834616778584186 + 2.90201618938635 + 3.273479991940484 + 2.445814031829284 + 0.7838442140713853 + -1.424645564382092 + -3.283371805456153 + -3.415016294831029 + -2.144638026713842 + -0.8475482666640719 + 0.1420278465904676 + 0.8298039834070066 + 1.594075188874265 + 2.658276894359577 + 3.036118848602478 + 2.223103511416309 + 0.5640844189932688 + -1.678227130596437 + -3.617119527890331 + -3.868725454094834 + -2.73818692117095 + -1.560150437560555 + -0.6213696195674974 + 0.118742079561045 + 1.048331661754005 + 2.361903771365131 + 3.02069748562882 + 2.4680630628859 + 1.007885634911923 + -1.111692295810569 + -2.986467543941353 + -3.205501186718429 + -2.059052838041067 + -0.8770892802711838 + 0.04581604576625686 + 0.7346941912680363 + 1.567213661592469 + 2.733158080012345 + 3.206436525931197 + 2.463367852130168 + 0.8431477317071785 + -1.377293133899602 + -3.275421178434968 + -3.447002364838731 + -2.215538357899183 + -0.9468841590117147 + 0.03751953472748326 + 0.7513603859249276 + 1.579819808121263 + 2.724962867935661 + 3.176283814612758 + 2.425481053287732 + 0.8119478431266423 + -1.400037118589509 + -3.302320833723795 + -3.507835523831274 + -2.354778057364447 + -1.201134410882794 + -0.3400062088510634 + 0.2789943258391752 + 1.072966446902676 + 2.249972315964852 + 2.783884186388754 + 2.141427866549956 + 0.6313536393936867 + -1.503620483021485 + -3.356642024954662 + -3.534125970544251 + -2.370577254512666 + -1.215099028840102 + -0.3508632985116158 + 0.2801045004350424 + 1.100951931145991 + 2.315212517768409 + 2.890837195549479 + 2.295670227015634 + 0.8408937394553631 + -1.222988775446562 + -2.973549454694902 + -3.01089212542969 + -1.682851710209821 + -0.3590636250246195 + 0.6533099431475904 + 1.391351862162344 + 2.269668279214361 + 3.490101013190526 + 4.031393541772301 + 3.383128228304942 + 1.871943404862972 + -0.2455093312459589 + -2.046106751177181 + -2.141649025626796 + -0.9004814370769783 + 0.3003765811371117 + 1.162298500280896 + 1.741833017384412 + 2.476467459401859 + 3.576145397295936 + 4.017070100032931 + 3.284326140689089 + 1.697252915546903 + -0.487517205069472 + -2.333532020455873 + -2.442313129903388 + -1.186631547274407 + 0.04682832733355902 + 0.9449719285430387 + 1.549578600902954 + 2.291072710494131 + 3.374658611515682 + 3.781243824098841 + 3.010624111318362 + 1.392982758391101 + -0.8073578163170732 + -2.643570679311656 + -2.712294624300307 + -1.388762106564712 + -0.05741300761895474 + 0.9681755901344875 + 1.717644681756405 + 2.59593397759182 + 3.766582739381697 + 4.175267084784529 + 3.313464805842716 + 1.528591491902841 + -0.8748698643589847 + -2.899260646646016 + -3.109622441156272 + -1.882160527046256 + -0.6169090632970757 + 0.3546987162693149 + 1.054298049669073 + 1.894437041325715 + 3.046720601449235 + 3.462039585984543 + 2.630197501655217 + 0.8809766677013799 + -1.50316873797764 + -3.535326078103338 + -3.783743216349997 + -2.62307505342446 + -1.43878698669017 + -0.5445577403768045 + 0.09398576439702921 + 0.8956858476998724 + 2.025703370898436 + 2.430208612744808 + 1.606258651913676 + -0.1045635996906817 + -2.404606515350718 + -4.292997137222019 + -4.345098360256527 + -2.968832344395256 + -1.587840335723143 + -0.5467117062474696 + 0.1772157791806599 + 1.016490390331628 + 2.160689996865956 + 2.585696124008513 + 1.812816668823549 + 0.1845122688737697 + -2.019400095658237 + -3.820105877385403 + -3.816422212072586 + -2.432173167035645 + -1.081451027166054 + -0.08161158633194709 + 0.6202724881859556 + 1.476330017089622 + 2.667921794712095 + 3.14629744359029 + 2.408249661281321 + 0.7779103303418564 + -1.464285721242628 + -3.317478706034596 + -3.359159305527628 + -2.007503686776863 + -0.6789913691652902 + 0.2994825731096444 + 0.9717298978802811 + 1.789736454654515 + 2.936282056269076 + 3.369051041203114 + 2.592513369360113 + 0.9261196768337334 + -1.361299248710309 + -3.276234530603103 + -3.402450143958452 + -2.160962849740626 + -0.9554660391079501 + -0.09398599839735411 + 0.4820637636451872 + 1.230538777674862 + 2.324016247849289 + 2.710919976523762 + 1.900761328296097 + 0.2274814915450234 + -2.017453352728663 + -3.817773398152664 + -3.757138417015687 + -2.283997299619712 + -0.834952390691738 + 0.255603070740511 + 1.036821652807926 + 1.975905359147978 + 3.255285866178249 + 3.828880252304234 + 3.201711449329067 + 1.685055600071414 + -0.4567377452764836 + -2.222367066227618 + -2.201197614041266 + -0.8393961535436887 + 0.4438202798434343 + 1.33445668574435 + 1.8968387113188 + 2.606932216449104 + 3.644639196544219 + 3.965611838014818 + 3.089207785760359 + 1.344356955861155 + -0.9856690509303343 + -2.884076679755114 + -2.944956326664277 + -1.638884108187746 + -0.4061886841071285 + 0.4298453699141724 + 0.9414860372775316 + 1.627402451567484 + 2.685318366897896 + 3.080118425976894 + 2.32755145924081 + 0.7327532014075109 + -1.451434401373242 + -3.229315601021167 + -3.208734922142432 + -1.865095679508713 + -0.6253429519693245 + 0.2065664289155418 + 0.7174196059977076 + 1.410180851055695 + 2.469170716847497 + 2.844994312117289 + 2.051214610347075 + 0.4000373147640532 + -1.837030795764864 + -3.639438415454396 + -3.605736796179356 + -2.223346052122855 + -0.9349060895321202 + -0.05706870457172819 + 0.4951309892689135 + 1.235550576403783 + 2.357046847160507 + 2.815933522819227 + 2.125253582245873 + 0.5825375479121297 + -1.558080936816766 + -3.283841417457139 + -3.197026093807494 + -1.784706247768169 + -0.4755020318698353 + 0.4314941140822359 + 1.034264360767028 + 1.849697991424515 + 3.053121585768679 + 3.575200029941063 + 2.906120075529504 + 1.325283709900369 + -0.9130857320006438 + -2.771561947368849 + -2.81991336765538 + -1.517795408938037 + -0.2731486709729083 + 0.6139526850553967 + 1.216358251362702 + 2.012022750010528 + 3.134111246380351 + 3.497160105866468 + 2.614580869338756 + 0.8146035495385933 + -1.589246027998268 + -3.511762755461554 + -3.51584430251383 + -2.096748126582042 + -0.7115126801983447 + 0.2968718699962345 + 0.9822304428223507 + 1.831634828003939 + 2.996696933020866 + 3.412174397659683 + 2.602603846205139 + 0.8864766711117888 + -1.441858078555005 + -3.311647506886943 + -3.297938801001866 + -1.90238626728936 + -0.5714609211077697 + 0.3699452451651872 + 0.9943955378547482 + 1.803317161744662 + 2.947528417951602 + 3.356327743001852 + 2.550029561201343 + 0.8399017508818138 + -1.482319200058753 + -3.340799123667305 + -3.311150739863351 + -1.902890726733359 + -0.5648204444445444 + 0.3781565617481863 + 1.001213122820322 + 1.810543239469679 + 2.954159134271932 + 3.359634351429641 + 2.549293822509137 + 0.8332458269267327 + -1.494953687187633 + -3.352087221096643 + -3.313761983175249 + -1.897598793031927 + -0.5552711105603105 + 0.3876641171536317 + 1.008492003040878 + 1.817797162991073 + 2.960574507888345 + 3.36265344641297 + 2.548327082475543 + 0.8264900812811393 + -1.507480632513396 + -3.363065181811627 + -3.316023266219288 + -1.892061223941143 + -0.5456105873853581 + 0.3971520885125219 + 1.015653755111406 + 1.824840642913697 + 2.966682549049728 + 3.365352135471995 + 2.54711889188461 + 0.8196327522471925 + -1.519898150855049 + -3.373730906023015 + -3.317934459295213 + -1.886279717961564 + -0.5358415597966086 + 0.4066179078632608 + 1.022696623649697 + 1.831672375164542 + 2.972482530233548 + 3.367730497613568 + 2.545669988552699 + 0.8126756379352815 + -1.53220333026527 + -3.384082082210857 + -3.319495452758879 + -1.880256026788262 + -0.5259667427402128 + 0.4160590150485639 + 1.029618891192716 + 1.838291118484502 + 2.977973807369593 + 3.369788692691591 + 2.543981170086501 + 0.8056205639498968 + -1.544393285146153 + -3.394116482096976 + -3.320706234200149 + -1.873991973537281 + -0.515988884503864 + 0.4254728578840954 + 1.0364188786353 + 1.844695694708615 + 2.983155819895311 + 3.371526961120346 + 2.542053293493749 + 0.7984693826390887 + -1.556465157338817 + -3.403831961462439 + -3.3215668883379 + -1.867489451936978 + -0.505910765489249 + + +# name: Varft_full +# type: matrix +# rows: 132 +# columns: 1 + 0.1640667960894568 + 0.1097926022672242 + 0.07590841232867929 + 0.04567364238217841 + 0.03083442596072494 + 0.02527481127892228 + 0.01739517441939675 + 0.02496165360571623 + 0.03807078795125918 + 0.04210542282078578 + 0.05273574343305865 + 0.06669375237576602 + 0.07840227368114072 + 0.07799823254943883 + 0.06308006849526415 + 0.04537722662830856 + 0.03240837799529706 + 0.02543362621223233 + 0.01567354262687881 + 0.02177204635318897 + 0.03576160602027034 + 0.04105902360935265 + 0.04519371439395137 + 0.05527830132745826 + 0.06676567614336304 + 0.06866819485577014 + 0.05797147147216575 + 0.03748607534260784 + 0.03076972737480244 + 0.0279800642333865 + 0.02007550003814651 + 0.02038864173766464 + 0.03211946549179578 + 0.04058085121407395 + 0.04669540379495962 + 0.05032768868823112 + 0.05790893741069802 + 0.06094220122952931 + 0.05346942925103382 + 0.03934960275743338 + 0.02921437365819646 + 0.02335781497881939 + 0.01877405284033595 + 0.02361106918227063 + 0.03336039747416031 + 0.03885867917403885 + 0.04638517571847567 + 0.05057021181452614 + 0.05947743037863784 + 0.06689387260131197 + 0.05991330153033325 + 0.04491936842817346 + 0.03348723121665054 + 0.02660272890154913 + 0.01542870310863531 + 0.02044229617710291 + 0.03257218715042742 + 0.04307294810232865 + 0.04393451226824707 + 0.05125458385448378 + 0.06398674315453556 + 0.07081291240456555 + 0.05615133742077738 + 0.03831190478963942 + 0.03272830353400025 + 0.02549422040790761 + 0.01874144210850082 + 0.02286720305692724 + 0.04100140002639452 + 0.04607531007231547 + 0.0469505951869944 + 0.05935311844323476 + 0.1112082003481139 + 0.1292381507265499 + 0.1224181858161826 + 0.1115821939998811 + 0.105695094869878 + 0.1017104100448625 + 0.09912240693111918 + 0.101701670559065 + 0.1090808524305429 + 0.1146079632787982 + 0.118075804866095 + 0.1301585260284197 + 0.1576999440014122 + 0.1740024233297848 + 0.1673276002798698 + 0.155289441682336 + 0.1486071134724321 + 0.1439927146171309 + 0.1412312474766273 + 0.1449014289338477 + 0.1543584771013806 + 0.1613712492541153 + 0.1661836217696642 + 0.1827739027558943 + 0.2182904419455132 + 0.2399556749344494 + 0.2340294063423463 + 0.2212719556759017 + 0.2141056282152545 + 0.2090950870500938 + 0.2062829536076534 + 0.2110052632897428 + 0.2223429518508713 + 0.2306836295529158 + 0.2367869706076484 + 0.2574156671211287 + 0.2997100096829579 + 0.3260799647399584 + 0.3212267028683684 + 0.3082609978331208 + 0.3008976473687592 + 0.2956671533574464 + 0.2928291045425115 + 0.2983109729271727 + 0.3109691758741377 + 0.3201871479826499 + 0.3271743698961311 + 0.3506219297269417 + 0.3974449311869668 + 0.427086668895664 + 0.4233397106695416 + 0.4105873850070725 + 0.403233381028141 + 0.397886095306077 + 0.3949744137583737 + 0.400774384354204 + 0.413994416193002 + 0.4234887051795353 + 0.430766258390453 + 0.4554351940170405 + + +# name: Varft_full1 +# type: matrix +# rows: 660 +# columns: 1 + 4.347244892951267 + 4.342631713005744 + 4.338342132864227 + 4.334359461877966 + 4.330667605064832 + 4.327251050460291 + 4.324094856481793 + 4.32118463934296 + 4.318506560457422 + 4.316047313937133 + 4.313794114098641 + 4.311734683046438 + 4.309857238309405 + 4.308150480564223 + 4.306603581414606 + 4.30520617127388 + 4.303948327336457 + 4.302820561623435 + 4.30181380916099 + 4.300919416254715 + 4.300129128873209 + 4.299435081152183 + 4.298829784035661 + 4.298306114032584 + 4.297857302109492 + 4.297476922728833 + 4.297158883028601 + 4.296897412138605 + 4.296687050654555 + 4.296522640273452 + 4.296399313577922 + 4.296312483976862 + 4.296257835825259 + 4.296231314689521 + 4.29622911780632 + 4.296247684697732 + 4.296283687948744 + 4.296334024195517 + 4.296395805253837 + 4.296466349454477 + 4.296543173128271 + 4.296623982313008 + 4.296706664605381 + 4.296789281217912 + 4.296870059211983 + 4.296947383917768 + 4.29701979153424 + 4.297085961925973 + 4.297144711582064 + 4.297194986785144 + 4.297235856956831 + 4.297266508163716 + 4.29728623684332 + 4.297294443688656 + 4.297290627719462 + 4.297274380531235 + 4.297245380730033 + 4.297203388535536 + 4.297148240569186 + 4.297079844804784 + 4.29699817570895 + 4.296903269535278 + 4.296795219792216 + 4.296674172888061 + 4.296540323929548 + 4.296393912676876 + 4.296235219678351 + 4.296064562552601 + 4.295882292411989 + 4.295688790465078 + 4.295484464748824 + 4.295269747018892 + 4.295045089771634 + 4.294810963435907 + 4.294567853651074 + 4.29431625875327 + 4.294056687318175 + 4.293789655900582 + 4.293515686843762 + 4.293235306265842 + 4.292949042115993 + 4.292657422385673 + 4.292360973422092 + 4.292060218339429 + 4.291755675562058 + 4.2914478574545 + 4.291137269054389 + 4.290824406921161 + 4.290509758049552 + 4.290193798908263 + 4.289876994540464 + 4.289559797761967 + 4.289242648445111 + 4.288925972879042 + 4.288610183192873 + 4.288295676880011 + 4.287982836362062 + 4.287672028640145 + 4.287363605008977 + 4.287057900814375 + 4.286755235298983 + 4.28645591147108 + 4.286160216044209 + 4.285868419435928 + 4.285580775780772 + 4.285297523022336 + 4.285018883027078 + 4.284745061740182 + 4.284476249387353 + 4.28421262069628 + 4.283954335152885 + 4.283701537304637 + 4.283454357067853 + 4.283212910062161 + 4.282977297986122 + 4.282747608995237 + 4.282523918099741 + 4.282306287592178 + 4.282094767470994 + 4.28188939588631 + 4.281690199602849 + 4.281497194455824 + 4.281310385823986 + 4.281129769115523 + 4.280955330232928 + 4.280787046075488 + 4.280624885005068 + 4.280468807349166 + 4.280318765866014 + 4.280174706241041 + 4.28003656755709 + 4.279904282755524 + 4.279777779124061 + 4.279656978729577 + 4.279541798889568 + 4.27943215260234 + 4.279327948979585 + 4.279229093671688 + 4.279135489279497 + 4.279047035743702 + 4.278963630743419 + 4.278885170059311 + 4.27881154794693 + 4.278742657469934 + 4.278678390843311 + 4.278618639743854 + 4.27856329562087 + 4.278512249987102 + 4.278465394684986 + 4.278422622151993 + 4.278383825659603 + 4.278348899553976 + 4.278317739451268 + 4.278290242453409 + 4.278266307321474 + 4.278245834647805 + 4.278228727006876 + 4.278214889094556 + 4.278204227857941 + 4.27819665259824 + 4.27819207506252 + 4.278190409543527 + 4.27819157292663 + 4.27819548476316 + 4.278202067302459 + 4.278211245524972 + 4.278222947162817 + 4.278237102702292 + 4.278253645386144 + 4.278272511190266 + 4.278293638804257 + 4.278316969594698 + 4.278342447559567 + 4.278370019274348 + 4.278399633833374 + 4.278431242772854 + 4.278464800002098 + 4.278500261721092 + 4.278537586309767 + 4.278576734263538 + 4.278617668064044 + 4.278660352083534 + 4.278704752479371 + 4.278750837067491 + 4.278798575211681 + 4.278847937699993 + 4.278898896620376 + 4.278951425238461 + 4.279005497865001 + 4.279061089736729 + 4.279118176873226 + 4.279176735962892 + 4.279236744228456 + 4.279298179296916 + 4.279361019074031 + 4.279425241624836 + 4.279490825040398 + 4.279557747328568 + 4.279625986282895 + 4.279695519376787 + 4.27976632364971 + 4.279838375596228 + 4.279911651056068 + 4.279986125128289 + 4.280061772061686 + 4.280138565165771 + 4.280216476733017 + 4.280295477943469 + 4.280375538794601 + 4.280456628035267 + 4.280538713091914 + 4.280621760012309 + 4.280705733412219 + 4.280790596427551 + 4.280876310670578 + 4.280962836193794 + 4.281050131461711 + 4.281138153325855 + 4.281226857011916 + 4.281316196100647 + 4.28140612252696 + 4.281496586582421 + 4.281587536921393 + 4.281678920572858 + 4.281770682962474 + 4.281862767932466 + 4.281955117779489 + 4.282047673290435 + 4.282140373777452 + 4.282233157133305 + 4.282325959880268 + 4.282418717234805 + 4.282511363160552 + 4.282603830446078 + 4.282696050769232 + 4.282787954778769 + 4.282879472175409 + 4.282970531796764 + 4.283061061705894 + 4.283150989278852 + 4.283240241308704 + 4.28332874409989 + 4.283416423570657 + 4.28350320535219 + 4.283589014901736 + 4.283673777610147 + 4.283757418907044 + 4.283839864376091 + 4.283921039866073 + 4.284000871604462 + 4.284079286315659 + 4.284156211328764 + 4.284231574697287 + 4.28430530531466 + 4.284377333023826 + 4.28444758873411 + 4.284516004535817 + 4.284582513806413 + 4.284647051326147 + 4.284709553379685 + 4.2847699578723 + 4.284828204423661 + 4.284884234478682 + 4.284937991397328 + 4.284989420562169 + 4.285038469462506 + 4.28508508778657 + 4.285129227506786 + 4.285170842975276 + 4.285209890977285 + 4.28524633083407 + 4.285280124450765 + 4.285311236396296 + 4.285339633961939 + 4.285365287214177 + 4.285388169056091 + 4.285408255263064 + 4.285425524535071 + 4.285439958531356 + 4.285451541898738 + 4.285460262304809 + 4.285466110454877 + 4.285469080109465 + 4.285469168098189 + 4.285466374322482 + 4.28546070175571 + 4.28545215643976 + 4.28544074747083 + 4.285426486991241 + 4.285409390157611 + 4.285389475120724 + 4.285366762999047 + 4.285341277823363 + 4.285313046517217 + 4.285282098831658 + 4.285248467305337 + 4.285212187201864 + 4.285173296447397 + 4.285131835567995 + 4.285087847621412 + 4.285041378112851 + 4.28499247492573 + 4.284941188239145 + 4.284887570434762 + 4.284831676010981 + 4.284773561492102 + 4.284713285326461 + 4.284650907795367 + 4.284586490903393 + 4.284520098280154 + 4.284451795069913 + 4.284381647824148 + 4.284309724395598 + 4.28423609382105 + 4.284160826209018 + 4.284083992633327 + 4.284005665012046 + 4.283925915990267 + 4.283844818833586 + 4.283762447306799 + 4.283678875560895 + 4.283594178021644 + 4.283508429272956 + 4.283421703950353 + 4.283334076622623 + 4.283245621691549 + 4.283156413283336 + 4.28306652513686 + 4.282976030512259 + 4.282885002090779 + 4.282793511869727 + 4.282701631077884 + 4.282609430084221 + 4.282516978310582 + 4.282424344155743 + 4.282331594912989 + 4.282238796691445 + 4.282146014361047 + 4.282053311482628 + 4.281960750243911 + 4.281868391415401 + 4.281776294293309 + 4.281684516663177 + 4.281593114759744 + 4.281502143233411 + 4.281411655132274 + 4.281321701870411 + 4.281232333225262 + 4.281143597322512 + 4.281055540636657 + 4.280968207994874 + 4.280881642591567 + 4.280795886000305 + 4.280710978196907 + 4.280626957595359 + 4.280543861072488 + 4.280461724019915 + 4.280380580385327 + 4.280300462728064 + 4.280221402277107 + 4.280143429000077 + 4.280066571671 + 4.279990857941243 + 4.279916314431716 + 4.279842966810065 + 4.279770839889238 + 4.279699957718549 + 4.279630343683152 + 4.27956202061273 + 4.279495010888127 + 4.279429336553335 + 4.279365019428724 + 4.279302081233027 + 4.279240543703963 + 4.279180428715563 + 4.279121758412998 + 4.279064555330251 + 4.279008842524263 + 4.27895464369999 + 4.278901983340688 + 4.278850886838995 + 4.278801380618802 + 4.278753492270994 + 4.278707250672142 + 4.278662686113535 + 4.278619830422031 + 4.278578717075675 + 4.278539381321252 + 4.278501860289111 + 4.278466193097074 + 4.278432420951276 + 4.278400587245983 + 4.278370737657269 + 4.278342920219643 + 4.278317185414494 + 4.278293586236941 + 4.278272178250177 + 4.278253019654926 + 4.278236171325716 + 4.27822169684805 + 4.278209662545009 + 4.278200137498743 + 4.278193193550692 + 4.278188905292836 + 4.27818735006349 + 4.278188607901257 + 4.278192761520927 + 4.278199896243677 + 4.278210099940225 + 4.278223462947494 + 4.278240077971873 + 4.278260039982456 + 4.278283446089517 + 4.278310395403992 + 4.278340988890136 + 4.278375329193864 + 4.278413520465051 + 4.278455668158472 + 4.278501878820066 + 4.278552259864 + 4.278606919325853 + 4.278665965607047 + 4.278729507199387 + 4.278797652402545 + 4.278870509015178 + 4.2789481840191 + 4.279030783251642 + 4.279118411052423 + 4.27921116991638 + 4.279309160103594 + 4.279412479268103 + 4.279521222058293 + 4.279635479701824 + 4.279755339586472 + 4.279880884831414 + 4.280012193848734 + 4.280149339887657 + 4.280292390583668 + 4.280441407486251 + 4.280596445593687 + 4.280757552879209 + 4.280924769803164 + 4.281098128835083 + 4.281277653972097 + 4.281463360246221 + 4.281655253249482 + 4.281853328645639 + 4.2820575716961 + 4.282267956788019 + 4.282484446969534 + 4.282706993490592 + 4.282935535363094 + 4.283169998918083 + 4.283410297401019 + 4.283656330555573 + 4.283907984246753 + 4.284165130089377 + 4.284427625112812 + 4.284695311438099 + 4.284968015990216 + 4.285245550231593 + 4.285527709936559 + 4.28581427499148 + 4.286105009232756 + 4.28639966032847 + 4.286697959697676 + 4.286999622470603 + 4.28730434750355 + 4.287611817436982 + 4.287921698806599 + 4.288233642216596 + 4.288547282555328 + 4.288862239291234 + 4.289178116820153 + 4.289494504879144 + 4.289810979039657 + 4.290127101259714 + 4.290442420530553 + 4.290756473580814 + 4.291068785684047 + 4.291378871532856 + 4.291686236217288 + 4.291990376283593 + 4.292290780895996 + 4.29258693308941 + 4.292878311131517 + 4.293164389980234 + 4.293444642858617 + 4.293718542934585 + 4.29398556510921 + 4.29424518794201 + 4.294496895669909 + 4.294740180374106 + 4.294974544258366 + 4.295199502059063 + 4.295414583596994 + 4.295619336449818 + 4.295813328780696 + 4.295996152291877 + 4.296167425329713 + 4.296326796143944 + 4.296473946284095 + 4.296608594154236 + 4.296730498722809 + 4.29683946339162 + 4.296935340022742 + 4.297018033124459 + 4.297087504208889 + 4.297143776309781 + 4.297186938673121 + 4.29721715161952 + 4.297234651570875 + 4.297239756265412 + 4.297232870129619 + 4.297214489850262 + 4.297185210105908 + 4.297145729485578 + 4.297096856595658 + 4.297039516336213 + 4.296974756367149 + 4.29690375375867 + 4.296827821823854 + 4.296748417134836 + 4.296667146731238 + 4.296585775497078 + 4.296506233741638 + 4.296430624954723 + 4.296361233742346 + 4.296300533954764 + 4.296251196994149 + 4.296216100299716 + 4.29619833601646 + 4.296201219845102 + 4.296228300064513 + 4.296283366737384 + 4.296370461076663 + 4.296493885000359 + 4.296658210845749 + 4.296868291246028 + 4.297129269183074 + 4.297446588193793 + 4.297826002736883 + 4.298273588706365 + 4.298795754111666 + 4.299399249889916 + 4.300091180868435 + 4.300879016865906 + 4.301770603925775 + 4.302774175680497 + 4.303898364839142 + 4.305152214801524 + 4.306545191375221 + 4.308087194609584 + 4.309788570734554 + 4.311660124187597 + 4.313713129743178 + 4.315959344718976 + 4.318411021257361 + 4.321080918693838 + 4.323982315970852 + 4.32712902412004 + 4.330535398791767 + 4.334216352829117 + 4.338187368867807 + 4.342464511974754 + 4.347064442294936 + 4.352004427714519 + 4.357302356523519 + 4.362976750065968 + 4.369046775386437 + 4.375532257837676 + 4.382453693664161 + 4.389832262534696 + 4.397689840027397 + 4.40604901004906 + 4.414933077184173 + 4.424366078954677 + 4.434372797999345 + 4.444978774139145 + 4.456210316331408 + 4.468094514513155 + 4.480659251288557 + 4.493933213488617 + 4.507945903577138 + 4.522727650872412 + 4.538309622615543 + 4.554723834832544 + 4.572003163008389 + 4.590181352547916 + 4.609293029015475 + 4.629373708144726 + 4.650459805603646 + 4.672588646505346 + 4.695798474657863 + 4.720128461531885 + 4.745618714943248 + 4.77231028744211 + 4.800245184379037 + 4.829466371666399 + 4.860017783201442 + 4.891944327937836 + 4.92529189662207 + 4.96010736814992 + 4.996438615552961 + 5.034334511602196 + 5.07384493401122 + 5.115020770238516 + 5.157913921859688 + 5.202577308535751 + 5.249064871517817 + 5.297431576726296 + 5.347733417353709 + 5.400027416024784 + 5.454371626459704 + 5.510825134660365 + 5.569448059607282 + 5.63030155344785 + 5.693447801171942 + 5.758950019775227 + 5.826872456891635 + 5.897280388882564 + 5.97024011839585 + 6.045818971364383 + 6.124085293454243 + 6.205108445937014 + 6.28895880101021 + 6.375707736513903 + 6.46542763009063 + 6.55819185274396 + 6.654074761792003 + 6.753151693247162 + 6.8554989535765 + 6.961193810836562 + 7.070314485244069 + 7.18294013907996 + 7.299150866000389 + 7.419027679726241 + 7.542652502097894 + 7.670108150509463 + 7.801478324710502 + 7.936847592987988 + 8.076301377693085 + 8.219925940173596 + 8.367808365033113 + 8.520036543794731 + 8.676699157902988 + 8.837885661124005 + 9.003686261289488 + 9.174191901435677 + 9.349494240303386 + 9.529685632226972 + 9.714859106390236 + 9.905108345483313 + 10.10052766373246 + 10.30121198432943 + 10.50725681626494 + 10.71875823055433 + 10.93581283586911 + 11.15851775359334 + 11.3869705923031 + + +# name: Varft_full2 +# type: matrix +# rows: 660 +# columns: 1 + 4.361578267145587 + 4.34751879200194 + 4.341026737794541 + 4.340880538013801 + 4.341983462228661 + 4.341221235010598 + 4.336592982357245 + 4.331449328198339 + 4.328096744551397 + 4.325919233511195 + 4.322824771783862 + 4.320092604009568 + 4.318150986519439 + 4.316952071161452 + 4.316059779306737 + 4.314583009353496 + 4.312786164733387 + 4.311527456194579 + 4.310492807881003 + 4.309749690409216 + 4.308981959749534 + 4.308388878669621 + 4.307869260010499 + 4.307455979764267 + 4.306960955756278 + 4.306693247594895 + 4.306559620639565 + 4.306273825263091 + 4.305846121480245 + 4.305686601406729 + 4.305533043057556 + 4.30551202016051 + 4.305400670152816 + 4.305421376139418 + 4.305459323409374 + 4.305560288877837 + 4.305552450853243 + 4.305555738799147 + 4.305598748983142 + 4.305714361165973 + 4.305752386390203 + 4.305873437292756 + 4.305877803145867 + 4.305967056628094 + 4.305983252744026 + 4.306113957284212 + 4.306204741793104 + 4.306352368213506 + 4.306386802947365 + 4.306295881145754 + 4.306192889512539 + 4.306324842880576 + 4.306432486529012 + 4.306508447916947 + 4.306406245098158 + 4.306370843908965 + 4.306289122458404 + 4.306320682043905 + 4.30628712945345 + 4.306311065746305 + 4.306212666926445 + 4.305922842542786 + 4.305598606561738 + 4.30559052120419 + 4.305605155787749 + 4.305627242002201 + 4.305521487886783 + 4.3054605277927 + 4.305211670218638 + 4.304891340551382 + 4.304787242245043 + 4.305858957400925 + 4.308912368631042 + 4.313166760797335 + 4.31491587151276 + 4.312590498468854 + 4.307862166190096 + 4.304424329867882 + 4.30284324005313 + 4.30243193048171 + 4.302316558348863 + 4.302128313203747 + 4.301689913079802 + 4.301315143206001 + 4.300958083528302 + 4.300476126497064 + 4.299953064018666 + 4.299805593212163 + 4.299710397105944 + 4.299504888768651 + 4.299086571641777 + 4.298725483876644 + 4.298374148561638 + 4.298133021520245 + 4.297809388987351 + 4.297567180367383 + 4.2972873363189 + 4.296805256425311 + 4.296275335524344 + 4.296116552446653 + 4.296005500798357 + 4.295793022110878 + 4.29540995266778 + 4.295089303141098 + 4.294780355085256 + 4.294571958724007 + 4.294280917120684 + 4.294066527534325 + 4.293826780435428 + 4.293415676636366 + 4.292961498761023 + 4.292836261366181 + 4.292749508505425 + 4.292582884300224 + 4.292267982362473 + 4.29201376659198 + 4.291770990332204 + 4.291620697630709 + 4.291391571663431 + 4.291233235755593 + 4.291059812460484 + 4.290747073738526 + 4.290394579547574 + 4.290319012237429 + 4.290268572830499 + 4.290161500400959 + 4.289928578728416 + 4.289753096845752 + 4.289585223820909 + 4.289500567138467 + 4.289341283891424 + 4.289244307364929 + 4.289139286146458 + 4.288926032848693 + 4.288675877822492 + 4.28864892731371 + 4.288632793128418 + 4.288582679385934 + 4.288427356903272 + 4.288324892358853 + 4.288224436107392 + 4.288197966178458 + 4.28810134636942 + 4.288057450458314 + 4.288010834178785 + 4.287883534542639 + 4.287721523283214 + 4.287733303266551 + 4.287742903287979 + 4.287738478155318 + 4.287647055325331 + 4.2876033190327 + 4.287555792360227 + 4.287573965871342 + 4.287526562189451 + 4.287522415113764 + 4.287520414121053 + 4.287460194706365 + 4.28736669961172 + 4.287405802159419 + 4.287432416512843 + 4.287460988498169 + 4.287418136987028 + 4.287417768060521 + 4.287408665380944 + 4.287458385786394 + 4.28744691767325 + 4.287470193587081 + 4.287500966935077 + 4.287490140565646 + 4.28744657569629 + 4.287504561352534 + 4.287542969914266 + 4.287594673839564 + 4.287587913378506 + 4.2876187044755 + 4.287637200819058 + 4.287709089010118 + 4.2877236178748 + 4.287765777002637 + 4.287821805604207 + 4.28784685667652 + 4.287838616981268 + 4.287911289059517 + 4.28796037992262 + 4.288029272165475 + 4.288050198045495 + 4.288104093790754 + 4.288143606636988 + 4.288232242865952 + 4.288266404341138 + 4.288322599496482 + 4.288400202881611 + 4.288451804958479 + 4.288468310970403 + 4.288554510435906 + 4.288615641077563 + 4.28869847827915 + 4.288741638571918 + 4.288813466705827 + 4.288870096430239 + 4.288972295315215 + 4.289021676444378 + 4.289088914565838 + 4.289186098165002 + 4.289257374802648 + 4.289290452100632 + 4.289389631480116 + 4.289464004771283 + 4.289557978938911 + 4.289618700865272 + 4.289703951414797 + 4.289774124623783 + 4.289886566964014 + 4.289946535605731 + 4.290021402199351 + 4.290135364661165 + 4.290219719736752 + 4.290261619142735 + 4.290371473128443 + 4.290457768687684 + 4.290558426152558 + 4.290630817214617 + 4.290723678069504 + 4.290802176346716 + 4.290919545880211 + 4.290983635314873 + 4.291060658267339 + 4.291186031189545 + 4.291275602372502 + 4.291317669883501 + 4.291432762781723 + 4.291525902064004 + 4.291626100697441 + 4.291702061375844 + 4.291794510954277 + 4.291873640041874 + 4.291987967362773 + 4.292047460559562 + 4.292118718950535 + 4.292247127444348 + 4.292332430017062 + 4.292364940350832 + 4.292476753476786 + 4.292568152189402 + 4.292658388312041 + 4.292727947028681 + 4.292810173946304 + 4.292880292676918 + 4.292981669474348 + 4.293026491022713 + 4.293082539359013 + 4.293203534769817 + 4.293274334630807 + 4.293287479270752 + 4.293385773721976 + 4.293464914240312 + 4.29353484164438 + 4.293587620756524 + 4.293649545476752 + 4.293700686052816 + 4.293779033994918 + 4.293799593386599 + 4.293831318684029 + 4.29393428780424 + 4.293981311708144 + 4.293966917324425 + 4.294041901557909 + 4.294098668980372 + 4.294139261217696 + 4.294166524891001 + 4.294199854946426 + 4.294223837931949 + 4.294271105136032 + 4.294260445494495 + 4.294261201751151 + 4.294337593604519 + 4.294354440543612 + 4.294307770993698 + 4.294352357883074 + 4.294379400690151 + 4.294385043969406 + 4.294381630148152 + 4.294381749316976 + 4.29437408387216 + 4.294386149142101 + 4.294341686752363 + 4.29430899987117 + 4.294354168646686 + 4.294338761242711 + 4.294259753696789 + 4.294271210959026 + 4.294265628587173 + 4.294235489551832 + 4.294200998046698 + 4.294168075614815 + 4.294129038436351 + 4.294106725301965 + 4.294031008780268 + 4.29396730202696 + 4.293981426580842 + 4.293936515254416 + 4.293829993981166 + 4.293810506182671 + 4.293774398081649 + 4.293712651885143 + 4.293651509101391 + 4.293590474838472 + 4.293525033262041 + 4.293473922126369 + 4.29337414195577 + 4.293286240643137 + 4.29327408790882 + 4.293206631605822 + 4.293081366643275 + 4.293037367945737 + 4.292977130357137 + 4.29289198626466 + 4.292812358793081 + 4.292731744804946 + 4.292648350605824 + 4.292577445748105 + 4.292463800620514 + 4.292361348638408 + 4.292331013145193 + 4.292250620249484 + 4.292117462501254 + 4.292057974597322 + 4.291982608565143 + 4.291884438439389 + 4.291796327733326 + 4.291706334212504 + 4.29161496826595 + 4.291534629675617 + 4.291418007406589 + 4.291311269125551 + 4.291272345897717 + 4.291189270318598 + 4.291058901885632 + 4.290993422718815 + 4.290912421283503 + 4.290811583329814 + 4.290724705499896 + 4.290635107796173 + 4.290545206771424 + 4.290465000198805 + 4.290354664022364 + 4.290252400572188 + 4.290214243628535 + 4.290137605441005 + 4.290018606887958 + 4.28995525610471 + 4.289876785250687 + 4.289781858821948 + 4.289704017027205 + 4.289622618340829 + 4.289541587027587 + 4.289468765269453 + 4.289370779310573 + 4.289278909438437 + 4.289249627500176 + 4.289186502743524 + 4.289084397854318 + 4.289028976993714 + 4.288958999315359 + 4.288876055780663 + 4.288812600709536 + 4.28874480441949 + 4.288677670804857 + 4.28861683801064 + 4.288533785123484 + 4.288455338426099 + 4.288441958356 + 4.288397738048554 + 4.288315414562767 + 4.288271770210878 + 4.28821447316293 + 4.288147698318925 + 4.288102344784688 + 4.288052077254108 + 4.288002490642148 + 4.287956632024255 + 4.28788879012958 + 4.287825256573912 + 4.287835070643522 + 4.287815056830691 + 4.287754515205518 + 4.287726142393398 + 4.28768556996012 + 4.287639075895935 + 4.287615856098834 + 4.287587574960029 + 4.287559845061445 + 4.287532396080403 + 4.287480019685123 + 4.287433673123152 + 4.28747626238904 + 4.28748793787407 + 4.287452782556333 + 4.287445071023511 + 4.287427320883969 + 4.287407446518843 + 4.287413044304229 + 4.287414034223223 + 4.287415380848234 + 4.287412486225859 + 4.287378315684972 + 4.287354572522016 + 4.287443501085195 + 4.28749841891354 + 4.287496021037496 + 4.287518075000654 + 4.28753296274513 + 4.287549915698378 + 4.287595197298176 + 4.287636943999665 + 4.28767873429172 + 4.287710471991794 + 4.287701230807981 + 4.287709766983712 + 4.287862641133256 + 4.2879766020536 + 4.288018602731726 + 4.288083330675844 + 4.288144214875641 + 4.288211730246657 + 4.28831114329814 + 4.288408465280461 + 4.28850513647953 + 4.288584433069955 + 4.288610051112016 + 4.288663418542643 + 4.288899076627725 + 4.289089372241696 + 4.289189335100163 + 4.289310681750557 + 4.289431358816733 + 4.289563310489276 + 4.289731129335848 + 4.289898097020494 + 4.290062856125269 + 4.290201252873308 + 4.290271022692872 + 4.290380028009653 + 4.290712213768295 + 4.290991347480857 + 4.291159040815971 + 4.291345946955477 + 4.291534285436859 + 4.291737999175968 + 4.291981260598791 + 4.292223848133329 + 4.292461202273718 + 4.29266163579865 + 4.292777553290407 + 4.292943762317472 + 4.293371802582874 + 4.293738317673199 + 4.293971360544872 + 4.294219329538826 + 4.294468652825082 + 4.294736061158367 + 4.295045474484919 + 4.295352374072769 + 4.295649071135629 + 4.295897392922886 + 4.296046527164392 + 4.2962539020312 + 4.296752611332339 + 4.297181396541019 + 4.297456769980471 + 4.297739712963327 + 4.298020766282854 + 4.298320410138047 + 4.298662424550594 + 4.298997380832467 + 4.299315291178341 + 4.299574217727725 + 4.299723937715628 + 4.299933627265768 + 4.300446711262848 + 4.300883221620071 + 4.30115321714306 + 4.301420321919806 + 4.301678742416739 + 4.301953719929114 + 4.302269034098932 + 4.302570159579465 + 4.302846728134954 + 4.303057998798447 + 4.303159957195408 + 4.303314334104952 + 4.303757637776714 + 4.304122527959475 + 4.304321737044916 + 4.30450610571911 + 4.304672290155142 + 4.304851205796314 + 4.30506692803595 + 4.305260348192832 + 4.305424091740472 + 4.305526406643741 + 4.30553692728779 + 4.305580673508946 + 4.305863286623128 + 4.306075566870674 + 4.306147062168586 + 4.306194339266414 + 4.306214017154592 + 4.306243334088229 + 4.306307280589113 + 4.306343660766927 + 4.306353305628219 + 4.306324645777709 + 4.306250104579641 + 4.306177009106118 + 4.306249016799317 + 4.306276526466362 + 4.306225970004353 + 4.306151660064341 + 4.306045853741933 + 4.305952318435114 + 4.305898088318282 + 4.305820629335797 + 4.3057364056758 + 4.305669144925459 + 4.305644612539339 + 4.305578296213378 + 4.30551342892966 + 4.305458724081846 + 4.305444302613351 + 4.305427583663958 + 4.305389708829175 + 4.305380502786669 + 4.305430719898974 + 4.305481506773453 + 4.30557474229829 + 4.305788885758158 + 4.306195373325219 + 4.306510920235099 + 4.306631994856465 + 4.306863280970725 + 4.307331361563948 + 4.30784971082802 + 4.308374534236581 + 4.308960675990418 + 4.309652517429143 + 4.31041582044268 + 4.311349015155982 + 4.312622735641991 + 4.314351862469993 + 4.31589319744283 + 4.316888315898717 + 4.318016848977555 + 4.31954310644892 + 4.32127212797422 + 4.323400099362113 + 4.326280440682549 + 4.330055972003249 + 4.334207444209779 + 4.337707410392718 + 4.339556571932864 + 4.339758235435566 + 4.340611755940532 + 4.347294014051484 + 4.361007571993703 + 4.379538856559806 + 4.400046024753509 + 4.418439025140895 + 4.432028802063314 + 4.440424533400209 + 4.444798416518676 + 4.446702114084092 + 4.447328473248986 + 4.447452842108826 + 4.447564600778695 + 4.447969902971161 + 4.448339076376959 + 4.448543092193191 + 4.448668557376073 + 4.448720535809739 + 4.448735822690542 + 4.448736320419764 + 4.448686602172176 + 4.448632980642261 + 4.448591248394917 + 4.4485649416203 + 4.448538152735865 + 4.448795492963584 + 4.449104903780944 + 4.449293311203661 + 4.449412549867989 + 4.449463008036764 + 4.449479970717052 + 4.449479862791339 + 4.449428820381717 + 4.449374091027718 + 4.449334153283365 + 4.449311280692047 + 4.449284556130936 + 4.449552060027579 + 4.44987766831335 + 4.450077445541731 + 4.450201504364719 + 4.450254650753259 + 4.450274729872032 + 4.450274344449246 + 4.450222129685269 + 4.450166394863556 + 4.450128637356164 + 4.45010952754096 + 4.450082857072795 + 4.450360705443727 + 4.450702907952737 + 4.450914267850399 + 4.451043354127346 + 4.451099425492844 + 4.451122841100585 + 4.451122206309653 + 4.451068908243151 + 4.451012268643246 + 4.450977092248165 + 4.450962089332151 + 4.4509354627706 + 4.451223842005025 + 4.451583040762374 + 4.451806198845778 + 4.451940525978804 + 4.451999764605011 + 4.452026729697072 + 4.452025876243997 + 4.451971585470399 + 4.451914149879601 + 4.451881970011151 + 4.451871432199105 + 4.451844839363559 + 4.45214394149497 + 4.452520543366715 + 4.452755717638603 + 4.452895504937732 + 4.452958158067911 + 4.45298887824863 + 4.452987839146138 + 4.452932647655021 + 4.452874533210485 + 4.452845779814497 + 4.452840078747322 + 4.452813509159007 + 4.45312353165202 + 4.453517947845524 + 4.453765358612139 + 4.453910831081433 + 4.453977150347031 + 4.454011823508051 + 4.454010633806798 + 4.45395463483939 + 4.453895967267643 + 4.453871084783426 + 4.453870604869753 + 4.453844047457654 + + diff --git a/test_gpstuff/octave/realValues_regression1.mat b/test_gpstuff/octave/realValues_regression1.mat new file mode 100644 index 00000000..bda08257 --- /dev/null +++ b/test_gpstuff/octave/realValues_regression1.mat @@ -0,0 +1,8251 @@ +# Created by Octave 3.8.1, Tue Jun 07 13:52:25 2016 EEST +# name: Eft_map +# type: matrix +# rows: 1369 +# columns: 1 + -0.6209707918859516 + -0.6994613196481264 + -0.7997835738005101 + -0.9200537479720928 + -1.055601945968237 + -1.198985357725462 + -1.340344512850828 + -1.468101711389764 + -1.569951766524716 + -1.634048516447113 + -1.650254168334003 + -1.611299367467914 + -1.513704395475748 + -1.35833700900053 + -1.150527092973531 + -0.8997158904759239 + -0.6186789860123696 + -0.3224175683986728 + -0.02685297588836706 + 0.2525209142103395 + 0.5018764209870824 + 0.7100555308824695 + 0.8692519077586803 + 0.9753331602218828 + 1.027812312206797 + 1.029516670031591 + 0.9860286668478577 + 0.904984976246205 + 0.7953183686106136 + 0.6665148145278221 + 0.5279407044810309 + 0.3882761582818519 + 0.255073614219398 + 0.134448042877812 + 0.03089648482715078 + -0.05276074370671271 + -0.1153283476943233 + -0.6662201717175384 + -0.6999701823488805 + -0.7522376435509518 + -0.8232667161745177 + -0.9107546286322075 + -1.009717164896854 + -1.112682777728798 + -1.21022816903045 + -1.291819338316923 + -1.346874026969306 + -1.365922432291387 + -1.341720397784835 + -1.270167965909184 + -1.150907607495078 + -0.9875179543831327 + -0.7872740437718817 + -0.5605048810384559 + -0.3196335603825574 + -0.07802528617283114 + 0.1512117757912482 + 0.3563310639112619 + 0.5278397768087348 + 0.6590998039028486 + 0.7466047470562218 + 0.7899451232748338 + 0.7915100193991317 + 0.7559964140305651 + 0.6898056713841233 + 0.6004019940914274 + 0.4956937710223034 + 0.3834806308138212 + 0.2709911684741246 + 0.164522000733489 + 0.06917946470557082 + -0.01127941262630429 + -0.07451163724125581 + -0.1195641578359594 + -0.6936439640763448 + -0.6785657613109906 + -0.6781811300326486 + -0.6950089948668743 + -0.7293278024744507 + -0.778887071964796 + -0.8389252378573133 + -0.9025207902496344 + -0.9612560601959915 + -1.0061245108655 + -1.028571421432956 + -1.021532043032955 + -0.9803260439507541 + -0.9032842148584905 + -0.7920207514640797 + -0.6513159057817127 + -0.4886305729931969 + -0.3133265878921824 + -0.135705208870544 + 0.03400472580165261 + 0.1865804202424781 + 0.3145548148395646 + 0.4127136925356509 + 0.4783148262284894 + 0.5110449280681477 + 0.5127621237887962 + 0.4870901967798512 + 0.4389350089513294 + 0.3739855101501974 + 0.2982459714135328 + 0.2176277174642097 + 0.1376123325127271 + 0.0629871121142612 + -0.00235160674526997 + -0.05553166486595831 + -0.09477653417212131 + -0.1194138199805574 + -0.7016843415533489 + -0.6359426145083644 + -0.5806902244011664 + -0.5407566764497925 + -0.5190955983654789 + -0.516343941362324 + -0.5306576367234261 + -0.5578645659834834 + -0.5919303384583584 + -0.6256845753775432 + -0.6517134262613468 + -0.6632956597797617 + -0.6552505580445575 + -0.6245782990725002 + -0.5708058014520325 + -0.4959975403763545 + -0.4044432157860383 + -0.3020828157918881 + -0.1957658668400709 + -0.09245944744490292 + 0.001483302622757428 + 0.08090386643724067 + 0.1422122581509325 + 0.1835376188720285 + 0.2046753401816593 + 0.2068772436262435 + 0.1925445804983905 + 0.1648830695382404 + 0.127567652797906 + 0.08444698875534992 + 0.03929940309794076 + -0.004362265624993596 + -0.04344700667047902 + -0.07541359723476823 + -0.0983755125645305 + -0.1111806093882602 + -0.1134568379949263 + -0.6900696002960214 + -0.574398046367412 + -0.4647829602708439 + -0.3682769730003894 + -0.2904671634803613 + -0.2348919354120616 + -0.2026977486897271 + -0.1925893386653435 + -0.2010850948274719 + -0.2230433599718475 + -0.2523835075553349 + -0.2828954528371923 + -0.3090185885246495 + -0.3264786694344952 + -0.3326976826715657 + -0.3269322383014872 + -0.310142692947911 + -0.2846390722047743 + -0.2535826184307544 + -0.2204377123661533 + -0.1884659911477343 + -0.1603347788056917 + -0.1378809801322762 + -0.1220369199474153 + -0.1128939690543852 + -0.1098592786183043 + -0.1118536823273576 + -0.1175044929504682 + -0.1253021200741289 + -0.1337088446301646 + -0.1412259944098202 + -0.1464375896866832 + -0.1480518910346251 + -0.1449574054450298 + -0.1362992815077113 + -0.1215694963076408 + -0.1006938247895596 + -0.6598615438820572 + -0.4977066318575056 + -0.33711246096282 + -0.1871405406895489 + -0.05582786924029197 + 0.0505200732816662 + 0.1278387656326554 + 0.1745519392886917 + 0.1915296408393488 + 0.1817727814221562 + 0.1498805495511541 + 0.1013881649495461 + 0.04207816884937456 + -0.02263415539028427 + -0.08816086117690683 + -0.1510000994726344 + -0.2087865952077166 + -0.2601647743426748 + -0.3045437989011678 + -0.3418072223965007 + -0.372046793639994 + -0.3953721835555457 + -0.4118213899317556 + -0.4213674282804301 + -0.4239928011382703 + -0.4197895639101832 + -0.4090419791975979 + -0.3922597430191633 + -0.3701485849813789 + -0.343525963767785 + -0.3132067473054391 + -0.2798927529123726 + -0.2440988888065975 + -0.2061382774459793 + -0.1661724390529511 + -0.1243150090446175 + -0.08076323071299463 + -0.6133697535116367 + -0.4108332251671785 + -0.2054691751520682 + -0.008013318699771373 + 0.1713680948800009 + 0.3238830155797718 + 0.4427673736881572 + 0.5237148760601618 + 0.5650418518279462 + 0.5675846812623176 + 0.5343655315914445 + 0.4700930886911099 + 0.3805830729389736 + 0.2721854551681825 + 0.1512916300393583 + 0.02396887099366023 + -0.1042627211393952 + -0.228526555030166 + -0.3445980211572996 + -0.4488744130532361 + -0.5383520016455628 + -0.6106403455545649 + -0.6640212844839145 + -0.6975370039913468 + -0.711074518315959 + -0.7054075002893559 + -0.6821621965212885 + -0.6436904528978222 + -0.5928550941787061 + -0.5327549992389733 + -0.4664332854021218 + -0.3966178646773981 + -0.325537819351623 + -0.2548431478854039 + -0.1856335245168964 + -0.1185791927048587 + -0.05409925805639013 + -0.5539389866002643 + -0.3195081838170294 + -0.07813406854629618 + 0.1582120682745301 + 0.3776767484519854 + 0.5693942615680669 + 0.7242550260214327 + 0.8354938962589161 + 0.8990457770942047 + 0.9136489977846388 + 0.8807114202891496 + 0.8039839943679465 + 0.6891061507020425 + 0.5430938804203006 + 0.373834287213537 + 0.1896324867105505 + -0.00116700248381142 + -0.190485597789397 + -0.370761139298702 + -0.5351690050971489 + -0.6778351641175465 + -0.7940491008012047 + -0.88046657995717 + -0.9352755886005725 + -0.9582890962660572 + -0.9509292274401778 + -0.9160797976179443 + -0.8578054769128829 + -0.7809610765354822 + -0.6907373184570514 + -0.5922040856337452 + -0.4899146710524664 + -0.3876240384043494 + -0.288152843023162 + -0.1934017497664403 + -0.104493510682801 + -0.02199915302516681 + -0.4856333390440768 + -0.2297084053688259 + 0.03685291137928061 + 0.301360540744962 + 0.5508109959661238 + 0.7727856636758036 + 0.9562978837222165 + 1.092508292110865 + 1.175246853279985 + 1.201306745513988 + 1.170505012364283 + 1.085532328715951 + 0.9516346091127177 + 0.7761794067799666 + 0.5681593750350556 + 0.3376752821251316 + 0.09542605433843764 + -0.1477819939085962 + -0.3815055161270852 + -0.5961162521013014 + -0.7832322555635411 + -0.9361144981723355 + -1.050001937447723 + -1.122348020803064 + -1.152919220247534 + -1.143724313404866 + -1.098761656628403 + -1.023597532182919 + -0.924816358781548 + -0.809406722497755 + -0.6841600912219463 + -0.555158202445527 + -0.4274100965201868 + -0.3046735214566594 + -0.1894634380502856 + -0.08321928831005176 + 0.01342117350458505 + -0.4128557329394816 + -0.1471029365399419 + 0.1324294547959106 + 0.4128941810708993 + 0.6807354351670811 + 0.9225766456852907 + 1.126106686369106 + 1.28088538546381 + 1.379000906129373 + 1.415531227166603 + 1.388785997570889 + 1.300329186959712 + 1.154803141643977 + 0.959587950251806 + 0.7243352947220385 + 0.4604141212956414 + 0.1802991604933794 + -0.1030738407563044 + -0.3769668577611887 + -0.6294926360154424 + -0.8502368622666506 + -1.03081546676664 + -1.165324609350851 + -1.250637128230991 + -1.286503833043958 + -1.275432800595781 + -1.222343882527569 + -1.134025286572693 + -1.018448624063193 + -0.8840218036133864 + -0.7388701014094337 + -0.5902315478841174 + -0.4440336067774852 + -0.3046874840719257 + -0.1751003319353687 + -0.05687126907103585 + 0.04938886490745964 + -0.3399511547612008 + -0.07652961800664247 + 0.2031675482478778 + 0.4867038825068092 + 0.7605888079783946 + 1.011116816010908 + 1.225252219949404 + 1.391485079010877 + 1.500588211009141 + 1.546217343801125 + 1.525314106803668 + 1.438291606488517 + 1.289001488357831 + 1.084496990144717 + 0.8346170766656434 + 0.551422359383793 + 0.2485155592496976 + -0.05971998740374689 + -0.3589286067121759 + -0.6355981851927456 + -0.8778383275674446 + -1.076068794437239 + -1.223562262650939 + -1.316787580770026 + -1.355510635910311 + -1.342630575207054 + -1.283757801898795 + -1.186572763176973 + -1.06003517880043 + -0.9135357051582861 + -0.756090899764831 + -0.5956750746864279 + -0.4387598634692328 + -0.2900980619316652 + -0.1527490166649122 + -0.02830603527186853 + 0.08274118287654542 + -0.2708449127837746 + -0.02156769265886501 + 0.2457712284099557 + 0.5196802770195255 + 0.7873283655933228 + 1.035300894464082 + 1.250444334609526 + 1.420732652823631 + 1.53608594417438 + 1.589076116303366 + 1.575465347477464 + 1.494538393046352 + 1.349207225106874 + 1.145883613226335 + 0.8941303566431792 + 0.6061141841864258 + 0.2958930649838087 + -0.02142126865957716 + -0.3305773517670655 + -0.6171189937608207 + -0.8682789052477404 + -1.073763997439322 + -1.226365483220227 + -1.322334250071565 + -1.361478342110342 + -1.34696480268504 + -1.284840341015434 + -1.183319846119337 + -1.051922763102764 + -0.9005586549452048 + -0.7386700649350973 + -0.5745308232405977 + -0.4147722853279679 + -0.2641730067399272 + -0.1257058189273806 + -0.000797888307122907 + 0.110268933485501 + -0.2087621085135421 + 0.01573986777875856 + 0.2593539577505713 + 0.511994832283332 + 0.7620197585494535 + 0.9968729409612664 + 1.203855847408146 + 1.370966763342466 + 1.487743159946605 + 1.546037521634285 + 1.540661354781802 + 1.469842470248337 + 1.335455750706309 + 1.143005499636293 + 0.9013561709443625 + 0.6222262718055347 + 0.3194766197293865 + 0.008238587075054121 + -0.2960595854717557 + -0.5787001113207985 + -0.826641106589002 + -1.029361872504105 + -1.179513254079423 + -1.273309947679021 + -1.310622259191727 + -1.294753745019158 + -1.231925686926587 + -1.130524842188723 + -1.000201558260181 + -0.8509253215708078 + -0.6921096726418539 + -0.5319062993046311 + -0.376740416185961 + -0.2311208376653608 + -0.09771536218195964 + 0.02235701431772164 + 0.1290939889528624 + -0.1560619453841086 + 0.03498019487833835 + 0.2454610245571217 + 0.4670559544562999 + 0.6897365206758942 + 0.9022828937942341 + 1.092952921819182 + 1.250262443873034 + 1.363815943225687 + 1.425116846623887 + 1.428284410391416 + 1.370609561638093 + 1.252894567753417 + 1.079539373438234 + 0.8583587520042661 + 0.6001368884596276 + 0.3179477664897009 + 0.02628935032250161 + -0.2599039894431814 + -0.5262939222581293 + -0.760131145121679 + -0.9511233200465066 + -1.092098617666459 + -1.179400321285696 + -1.212971480189093 + -1.196119627903545 + -1.134987105128829 + -1.037787928814262 + -0.9139018375475253 + -0.7729346463148817 + -0.6238572840427917 + -0.4743223076649702 + -0.3302278800887535 + -0.1955598258492444 + -0.07249932753474275 + 0.03825519266411193 + 0.1370315671122727 + -0.1142022028623601 + 0.03727180400377602 + 0.2078350422130816 + 0.3911446684399061 + 0.5790794491467458 + 0.7621102195282701 + 0.9298495793866959 + 1.071747633249289 + 1.177879922714983 + 1.239758081360263 + 1.251085682616644 + 1.208382626401138 + 1.111411230445854 + 0.9633546691255466 + 0.7707212877705728 + 0.5429738988290943 + 0.2919087527467966 + 0.03083217420244228 + -0.2263979072922647 + -0.466384441199533 + -0.6771692254294543 + -0.8490877536981996 + -0.9754204186547117 + -1.052776237744574 + -1.081170213274076 + -1.063787057920463 + -1.006459237930984 + -0.9169216520932143 + -0.8039335122290319 + -0.6763750302307673 + -0.5424286001818255 + -0.4089399349645018 + -0.2810257127553331 + -0.1619552791409145 + -0.05329155524864082 + 0.04476195323230625 + 0.1328885275024378 + -0.08382809060342267 + 0.02499198642659603 + 0.1519563450891459 + 0.2927743284480086 + 0.441371733014553 + 0.5901199032570175 + 0.7302582218608106 + 0.8524884440382358 + 0.9476949384735686 + 1.007724728700797 + 1.02614860174522 + 0.9989216121799469 + 0.924868636762389 + 0.8059371929819968 + 0.6471831775233646 + 0.4564823898121196 + 0.2439884082537659 + 0.02138267153571652 + -0.1990167692676615 + -0.4052069754619642 + -0.5864243120679528 + -0.7339538069815235 + -0.8417453326839324 + -0.9067754624401688 + -0.9291186364430599 + -0.911721967103685 + -0.8599116797410512 + -0.7806916907734112 + -0.6819213154942912 + -0.571474860064231 + -0.4564873894031067 + -0.3427769815449724 + -0.234505796829134 + -0.1341046213930226 + -0.04244460121502946 + 0.04079708405838378 + 0.1166572875499139 + -0.06495934128507103 + 0.001373952421760923 + 0.08441970906131817 + 0.1818529485763474 + 0.2896239835230037 + 0.4020579365568211 + 0.5121528786733284 + 0.6120652447025928 + 0.6937445358244576 + 0.7496561997118837 + 0.7735158495048517 + 0.7609522910619264 + 0.7100221091350638 + 0.6215139284907207 + 0.4990034906271024 + 0.3486479978429147 + 0.1787361629334963 + -0.0009641546499750409 + -0.1799983802679062 + -0.3480814395901181 + -0.4959348777938595 + -0.6160230777312149 + -0.7031155638393563 + -0.7546186519809125 + -0.7706427486411276 + -0.7537999035427221 + -0.7087571967821573 + -0.6416015263112471 + -0.5590959596669487 + -0.4679226533643988 + -0.374009062476776 + -0.2820213736819719 + -0.1950830203631679 + -0.1147406806627862 + -0.04116130676003782 + 0.02649160105923554 + 0.08957970116557079 + -0.05723342083940833 + -0.02996420781841265 + 0.01222969172201701 + 0.0687499750115642 + 0.1373887744327149 + 0.2143209317243374 + 0.2942911159813779 + 0.3709922837976494 + 0.4376046840537255 + 0.4874403745614405 + 0.5146211285971209 + 0.5147105011479828 + 0.4852247389479553 + 0.4259612762228209 + 0.3391052668033957 + 0.2291004926976867 + 0.1022973843023255 + -0.03358540380688974 + -0.170130677561363 + -0.2989559760496054 + -0.4124370033372298 + -0.5043487833045095 + -0.5703596845750986 + -0.6083273923087442 + -0.6183656872783894 + -0.6026754485835571 + -0.5651606105653579 + -0.5108767960227145 + -0.4453831033988025 + -0.3740819407091778 + -0.3016345077308011 + -0.2315288728179825 + -0.165854327516789 + -0.1053031800357238 + -0.04938484112717623 + 0.00319649319217441 + 0.05407383134789234 + -0.06015411006888915 + -0.06548798495790108 + -0.05789438003724627 + -0.0366218854105267 + -0.002366764148799392 + 0.04264371459199309 + 0.09475026545657364 + 0.1491440710669248 + 0.2003076813426819 + 0.2425658871735499 + 0.2706816207497466 + 0.2804249572499897 + 0.2690467107554034 + 0.2356009059887479 + 0.1810800086869478 + 0.1083498047241335 + 0.02189377884354607 + -0.07260305519047519 + -0.1687854678505316 + -0.2602190083274948 + -0.3409805655627531 + -0.4061888425737958 + -0.4524204492216459 + -0.4779675597375772 + -0.4829082128082134 + -0.4689799644661381 + -0.4392704833934256 + -0.3977624055631634 + -0.3487908970676947 + -0.2964869726725048 + -0.2442841539444462 + -0.1945584185796574 + -0.1484517181668839 + -0.1059003027048817 + -0.06585558625170007 + -0.02665349404540773 + 0.0135357465561845 + -0.07329518035945755 + -0.1021442103309706 + -0.1201175829271439 + -0.1256060732289148 + -0.1182504398303473 + -0.09906124545344255 + -0.0703770370268165 + -0.03565883152125062 + 0.0008576472598264464 + 0.03461010339060153 + 0.06120242150372848 + 0.0768811150637351 + 0.07893848127121768 + 0.06599717020367875 + 0.03814770814475499 + -0.003070700105692631 + -0.05483797156226131 + -0.1133467109993575 + -0.1741880153110646 + -0.2327892838179306 + -0.2848604892576506 + -0.3268048663274259 + -0.3560521692630448 + -0.3712779950624555 + -0.3724819447574341 + -0.3609111471522755 + -0.3388335686893336 + -0.3091859247511342 + -0.2751408772782149 + -0.2396536573467323 + -0.2050554291346609 + -0.1727568861322029 + -0.1431100962835927 + -0.1154514076964013 + -0.08831758975263293 + -0.05979715200367242 + -0.0279550209392001 + -0.09641855449003296 + -0.1376336185574475 + -0.1699241301694026 + -0.1914004507875007 + -0.2012013388102574 + -0.1996058962649173 + -0.1880118240193606 + -0.1687812447735715 + -0.1449744576820321 + -0.1200074665959707 + -0.09727831525925273 + -0.07980890197271767 + -0.06994340538870786 + -0.06913355421819967 + -0.07782742155234183 + -0.09546502827748612 + -0.1205729607511872 + -0.1509424663318525 + -0.1838708869164719 + -0.2164437527960617 + -0.2458330848012135 + -0.2695856100109596 + -0.2858728122593291 + -0.2936741755723913 + -0.292867439338798 + -0.2842068594898945 + -0.2691830849445271 + -0.2497754298801085 + -0.2281263968452145 + -0.2061852980759129 + -0.1853783762881771 + -0.1663634383773793 + -0.148916156218279 + -0.1319739623833995 + -0.1138355809806924 + -0.09248523814879528 + -0.06598660314259286 + -0.1294835977966033 + -0.1705260488101191 + -0.2043464484915567 + -0.2294042223843601 + -0.2449541218114964 + -0.2511031907362929 + -0.2487680712072939 + -0.2395415829575854 + -0.2254907185362729 + -0.2089168232470474 + -0.1921112812235907 + -0.177136466587537 + -0.1656534608255397 + -0.1588075496803384 + -0.1571725876223765 + -0.1607482533806087 + -0.1690011463747397 + -0.1809412497585107 + -0.1952278768465449 + -0.2103015200019515 + -0.2245379389435193 + -0.2364173160659632 + -0.2446948950314403 + -0.2485522811366803 + -0.2477035569833237 + -0.2424305582324109 + -0.2335289253268868 + -0.2221607784842474 + -0.2096286742789735 + -0.1971046766244888 + -0.1853629094562583 + -0.1745694474408674 + -0.164177354763281 + -0.1529573757531848 + -0.13916936662164 + -0.1208513815105365 + -0.09617863357023282 + -0.172545943063978 + -0.2002133075514276 + -0.2219799422959878 + -0.2373008960245041 + -0.2461944755826856 + -0.2491969632024709 + -0.2472563437667054 + -0.2415859438918031 + -0.2335048962607107 + -0.224292447038392 + -0.2150772818735574 + -0.2067727486392558 + -0.2000568168644487 + -0.1953850860335994 + -0.1930190287750946 + -0.1930516007934712 + -0.1954182564253041 + -0.1998913230458274 + -0.206066310644676 + -0.2133563722797711 + -0.2210128435878057 + -0.228184373447332 + -0.2340156713408221 + -0.2377725031923945 + -0.2389667071868036 + -0.2374481038793974 + -0.2334322803022366 + -0.2274449373541874 + -0.2201825912316586 + -0.2123113326109189 + -0.2042442947514354 + -0.1959490673831934 + -0.186835033762117 + -0.1757569735276596 + -0.1611479294383829 + -0.1412665119541043 + -0.1145179809554957 + -0.2255665178261915 + -0.2267220228057013 + -0.2228070624081701 + -0.2149016301970645 + -0.2044300264306546 + -0.1929683967625032 + -0.1820329523114019 + -0.1728857244552637 + -0.1663925009476407 + -0.162957804211492 + -0.1625460711202021 + -0.1647798482016236 + -0.169089039794232 + -0.1748741926255736 + -0.1816444677015689 + -0.1890982906709975 + -0.1971301707639464 + -0.2057670816408955 + -0.215056977035857 + -0.2249452860038971 + -0.2351787854938245 + -0.2452687799188992 + -0.2545287324014882 + -0.2621797713613612 + -0.2674967885294106 + -0.2699540595706931 + -0.2693266582323894 + -0.2657136475363355 + -0.2594689605642082 + -0.2510509655733233 + -0.2408253020802151 + -0.2288712444775887 + -0.2148451326266523 + -0.1979440304533036 + -0.1769910044241136 + -0.1506354646934716 + -0.1176346546097697 + -0.2881700578747254 + -0.2504314986165229 + -0.2078809685556468 + -0.1638037469643802 + -0.1216348485661939 + -0.0845790866569245 + -0.05525471447329747 + -0.03541692180108727 + -0.02580633518747182 + -0.02614700269000939 + -0.03529168418045843 + -0.05148485155186339 + -0.07269148890516183 + -0.09692770957889138 + -0.1225304884905238 + -0.1483186149511276 + -0.1736222790025451 + -0.1981888423387955 + -0.2220002637355522 + -0.2450566302750228 + -0.2671856244010372 + -0.2879281928771857 + -0.3065286127998661 + -0.3220282490662263 + -0.3334340681212962 + -0.3399127935526285 + -0.3409547608951633 + -0.3364598444694145 + -0.3267190732461644 + -0.3122940831750394 + -0.2938248069893667 + -0.2718163149943988 + -0.2464631020224113 + -0.2175614434543167 + -0.1845397015415848 + -0.1466079399324958 + -0.1029990372158442 + -0.3594038411433289 + -0.2717557493095052 + -0.1789359268922228 + -0.08693860213741766 + -0.001747471018563859 + 0.07126541202303206 + 0.127874867005015 + 0.1653934611254079 + 0.1828599376117165 + 0.1809992338543585 + 0.1619664181411141 + 0.1289240425747962 + 0.08553086039670199 + 0.03543341974525499 + -0.01815250841385305 + -0.07270574159277199 + -0.1264787387074809 + -0.1784020974836098 + -0.2278611869065885 + -0.2744161473044728 + -0.3175436175125448 + -0.356466945226434 + -0.3901145250112699 + -0.4172102847668901 + -0.4364652346087827 + -0.4468131780966789 + -0.4476234534833554 + -0.4388311344831148 + -0.4209480927112375 + -0.3949504173944565 + -0.362070409210153 + -0.3235462680031072 + -0.2803934631761527 + -0.2332561621472991 + -0.1823768143517261 + -0.1276924996123965 + -0.06903549621450544 + -0.4375494776522784 + -0.2908522687902315 + -0.1379962484528853 + 0.01191104419401105 + 0.1498904738656787 + 0.2679391214932525 + 0.3597723014850174 + 0.4213571342233626 + 0.4511646774943497 + 0.4501113047990676 + 0.4212101749493043 + 0.3690008603093514 + 0.2988601537969655 + 0.2163125528755367 + 0.1264515752445741 + 0.0335543466018971 + -0.05907206725556396 + -0.149023792419177 + -0.2345684905254174 + -0.3143343936000531 + -0.3870142427787663 + -0.4511648497514826 + -0.5051513079197392 + -0.5472432726640908 + -0.5758296747580349 + -0.5896877684514297 + -0.5882296715500916 + -0.5716570203693725 + -0.5409793865419239 + -0.497887710649545 + -0.4445108098382988 + -0.3831116799667873 + -0.3157939310247446 + -0.2442844376407267 + -0.1698379279546316 + -0.09327846987754196 + -0.01515961559748025 + -0.5200329176239827 + -0.3074123848745443 + -0.08704792088866274 + 0.1285514942332493 + 0.3270749512729049 + 0.4975203788268514 + 0.6311636150342432 + 0.7222579244086738 + 0.7683746259537365 + 0.7703504174809683 + 0.7318687601663676 + 0.6587598772076951 + 0.5581454892167885 + 0.4375721534918317 + 0.3042675388152714 + 0.1646193791444127 + 0.02392478600964065 + -0.1136005999322999 + -0.2446158888845688 + -0.3663472682176374 + -0.4762861247865275 + -0.5719845552282106 + -0.6510042294247482 + -0.7110279584008568 + -0.7500974757214185 + -0.7669069922749268 + -0.7610678054002071 + -0.7332672558154019 + -0.6852726259131221 + -0.6197694968555956 + -0.5400644169755653 + -0.4497133939929379 + -0.3521532737433963 + -0.2504094532874248 + -0.1469324432059818 + -0.04358353888627686 + 0.05824532585361109 + -0.6034617998803145 + -0.3205709972556345 + -0.02781917578950664 + 0.2587222998888687 + 0.5231984449162946 + 0.7513507123763062 + 0.9317248791592209 + 1.056553603669731 + 1.122207180493863 + 1.129171409529702 + 1.081584216475254 + 0.9864293464877623 + 0.8525334937147337 + 0.6895334999839091 + 0.5069692044923391 + 0.3136180948632864 + 0.1171290037260465 + -0.07605333368483147 + -0.2605388894391572 + -0.4317223462504003 + -0.5855079936740193 + -0.7181284798125511 + -0.826117608349227 + -0.9064469096835839 + -0.9567864166602944 + -0.975813916570984 + -0.9634821528422455 + -0.921162612422092 + -0.8516142357288645 + -0.7587672992064078 + -0.6473559198537746 + -0.5224664406174124 + -0.3890855925445473 + -0.2517286723237184 + -0.1142060486233074 + 0.02044754855188913 + 0.1498935170634947 + -0.6837978111555748 + -0.3289504795208356 + 0.03830814247321698 + 0.398315502477137 + 0.7315921198066653 + 1.020487200472779 + 1.250628114351291 + 1.411996150546329 + 1.49950479259173 + 1.513031478076057 + 1.456936379822843 + 1.33917709679568 + 1.170182261056113 + 0.961670014509704 + 0.7255854565813499 + 0.4732880826765636 + 0.2150559767294153 + -0.04009758897540672 + -0.2843620893223461 + -0.5109303065123321 + -0.713781702105885 + -0.8875511930527067 + -1.027544888805305 + -1.129911312876539 + -1.191925305168014 + -1.212304759050681 + -1.191466034437033 + -1.131634739959174 + -1.036760707386546 + -0.9122304575820408 + -0.7644157772918581 + -0.6001321079549378 + -0.4260973484400825 + -0.2484773570662195 + -0.07258119926049833 + 0.09726628819451655 + 0.257685646790768 + -0.7566487743413879 + -0.330828878534606 + 0.1102606437277905 + 0.5434685101517766 + 0.945744286352811 + 1.296036058829459 + 1.576975228305396 + 1.776148184723562 + 1.886814350514692 + 1.908012671615098 + 1.84408962965502 + 1.703764723997952 + 1.498908941115758 + 1.243237383315081 + 0.9511052865313683 + 0.6365512144914887 + 0.3126632596540422 + -0.008730986658855744 + -0.3171157863805588 + -0.6031881111995744 + -0.8587287541285045 + -1.076546126880423 + -1.25055280354014 + -1.375980583474404 + -1.449687938273215 + -1.470477088823069 + -1.43932507745861 + -1.359446194930152 + -1.236137619708251 + -1.076406670671364 + -0.8884247424298968 + -0.6808884906388215 + -0.4623852435358629 + -0.2408541225875265 + -0.02320958988211252 + 0.1848428679375376 + 0.3788090888436351 + -0.8176448295290875 + -0.3244007147179277 + 0.1871362031037769 + 0.690553232650978 + 1.159412915765594 + 1.569380230809476 + 1.900127700479708 + 2.136798099347194 + 2.270868671308476 + 2.300349530824229 + 2.229346636588772 + 2.067108729613075 + 1.82674181880331 + 1.523803063276413 + 1.174974535431127 + 0.7969708583969949 + 0.4057647735985388 + 0.01613747716514824 + -0.3585069781147174 + -0.706167896333348 + -1.016232108606343 + -1.279514721630485 + -1.488412279692326 + -1.637169927167268 + -1.722213062491797 + -1.742459002389731 + -1.699513567669533 + -1.597672988950067 + -1.443688252923923 + -1.246297085304665 + -1.015576024092382 + -0.7622001607843583 + -0.4967133938704311 + -0.2289049742174267 + 0.03263826635087863 + 0.2807729822326541 + 0.5098434631947821 + -0.8628488251161031 + -0.3080833917758581 + 0.2680109720245868 + 0.8361008807849249 + 1.36666717758487 + 1.832331228681288 + 2.209957320834028 + 2.48229406974962 + 2.638984951693874 + 2.676871155232803 + 2.599612502509848 + 2.416745739710944 + 2.142367318874804 + 1.793658451082542 + 1.389460007899893 + 0.9490585780300533 + 0.4912747673158722 + 0.03386726666579709 + -0.4068014502439166 + -0.8159357455342803 + -1.180424062830511 + -1.488994291912352 + -1.732456404864395 + -1.904028511501328 + -1.99969346872445 + -2.018500932624292 + -1.962722107216016 + -1.837782652846818 + -1.651937947120814 + -1.415703949885127 + -1.141104060755152 + -0.8408264185989109 + -0.5273996993201013 + -0.212486574902873 + 0.09363399582765641 + 0.3823639628528452 + 0.646872546944893 + -0.8891451815229582 + -0.2808157973227804 + 0.351740916428444 + 0.976709032053598 + 1.5619003946416 + 2.077243092610175 + 2.497051145559973 + 2.801825346976416 + 2.979403875479827 + 3.025376785051187 + 2.942783900108554 + 2.741212047567514 + 2.435477904506978 + 2.044115453870949 + 1.587878472608883 + 1.08842358848811 + 0.5672705403405254 + 0.04506007558515557 + -0.4589363745732539 + -0.9271437338390477 + -1.343947219260986 + -1.69597470738832 + -1.972437935108749 + -2.165522240623172 + -2.270768711634082 + -2.287363977398111 + -2.218248743603754 + -2.069977200150904 + -1.852299886891929 + -1.577492103164378 + -1.259496329241229 + -0.9129795624171182 + -0.55241804860374 + -0.1913110530843234 + 0.1584041542305732 + 0.4867042261396408 + 0.7856082416395855 + -0.8945547199982425 + -0.2422987134729543 + 0.4368053229782859 + 1.108974803496151 + 1.739854192122049 + 2.297123937289812 + 2.752901824984593 + 3.085677897470352 + 3.281592771702267 + 3.334965218563966 + 3.248081166415751 + 3.030353830909343 + 2.697036369786181 + 2.267702794873538 + 1.764706280949443 + 1.211781507308851 + 0.6328915092647016 + 0.05134621844000725 + -0.5108437077729103 + -1.033454714153482 + -1.4984674588481 + -1.89048255205772 + -2.197165012475599 + -2.40970000945629 + -2.523200666128003 + -2.53698434783281 + -2.454633550073248 + -2.283781318162304 + -2.03560297118006 + -1.724045328093479 + -1.364869720132192 + -0.9746154564424883 + -0.5695997433291557 + -0.1650572984933429 + 0.2255078159498849 + 0.5907263837705603 + 0.9215338278103689 + -0.8784343248714276 + -0.1931380242333824 + 0.5212284047974142 + 1.229486785393727 + 1.895682646773417 + 2.485769950228527 + 2.970104438123063 + 3.325482323200299 + 3.536528388703072 + 3.596332352919089 + 3.506337647320104 + 3.275583745305239 + 2.91947503717167 + 2.458284684961388 + 1.915597471255716 + 1.316856343017713 + 0.6881151335602094 + 0.05503085984299422 + -0.5579307240872727 + -1.128140325016921 + -1.635374436201694 + -2.062364428844776 + -2.395344170174325 + -2.624571252533291 + -2.744759795655574 + -2.75534313398714 + -2.660488345651405 + -2.468811016210481 + -2.192781467543198 + -1.847862548273567 + -1.45146243111002 + -1.021813907414362 + -0.5768986877760875 + -0.1335206832740585 + 0.2933994163118792 + 0.6912767986929422 + 1.050071731291645 + -0.8415375338134679 + -0.1348688748508637 + 0.6025981610985709 + 1.334891732337168 + 2.025069041402409 + 2.637931119109572 + 3.14256619157661 + 3.514458276406681 + 3.736962493625977 + 3.802040516154745 + 3.710252135143032 + 3.47009377772704 + 3.0968456820929 + 2.611125409521031 + 2.037343181826198 + 1.402218999521633 + 0.7334641520305156 + 0.05866589581327758 + -0.5956408680751262 + -1.204765305619771 + -1.746573966440658 + -2.202166848112411 + -2.556523214451739 + -2.799084791568671 + -2.924211885195359 + -2.931433188497839 + -2.825417578022405 + -2.615624957461076 + -2.315636614725122 + -1.942213421232302 + -1.514171472255687 + -1.051190318105147 + -0.5726736998275399 + -0.09676664472306751 + 0.3603994511647368 + 0.7852026573159803 + 1.166776050006835 + + +# name: Eft_ia +# type: matrix +# rows: 1369 +# columns: 1 + -0.5914779791168124 + -0.6784314419140969 + -0.7857830583470583 + -0.9113975339132537 + -1.050563024939221 + -1.195980117894087 + -1.338067359691159 + -1.465594768925821 + -1.566611170491802 + -1.629583647904395 + -1.644625587604162 + -1.604661902471156 + -1.506373207601385 + -1.350779221997193 + -1.143365211390471 + -0.8937182567237645 + -0.6147120332257691 + -0.3213461352014402 + -0.029395347584586 + 0.2459543402240542 + 0.4913165494374097 + 0.6960342735391587 + 0.8527573696916899 + 0.9576575945153037 + 1.010322810340189 + 1.013404877407477 + 0.9721062784761704 + 0.8935818342830034 + 0.7863118997820303 + 0.6594817676905033 + 0.5223865169082668 + 0.3838749819814734 + 0.2518498387094164 + 0.1328482583618453 + 0.03173305364784067 + -0.04847723730274069 + -0.1066212738282526 + -0.6389097644161343 + -0.6811439302208119 + -0.7403613941371239 + -0.8166087392870804 + -0.9076130368571799 + -1.008605935094202 + -1.112448020596588 + -1.210082852918209 + -1.29130446348927 + -1.345772033848387 + -1.364159036611722 + -1.339290357676977 + -1.267108016249119 + -1.147319375798849 + -0.9836217681157646 + -0.7834590394610883 + -0.5573380592019906 + -0.317802608571733 + -0.0782139200936167 + 0.1484894849929431 + 0.3508895776475615 + 0.5199202023807457 + 0.6493660873692289 + 0.7360258615631418 + 0.7795874638104655 + 0.7822954996845284 + 0.7484968226122247 + 0.6841366075569322 + 0.5962516020788646 + 0.4924811531235536 + 0.380599163237726 + 0.2680657174514954 + 0.1616044753335331 + 0.06682529233508193 + -0.01207667608238691 + -0.07251036344561586 + -0.1135389222893576 + -0.669913294804239 + -0.6629439848826674 + -0.6690216283281096 + -0.6905401274583534 + -0.727896540190921 + -0.7791432423633816 + -0.8399165942858469 + -0.9036897888553479 + -0.9623529422853427 + -1.007071895630896 + -1.029326981396024 + -1.021993834440586 + -0.9803093028685781 + -0.9025729729854475 + -0.7904702360918893 + -0.6489615804890506 + -0.4857544043736916 + -0.3104436691075589 + -0.1334610723801181 + 0.03500266247837188 + 0.1859464343323531 + 0.3122614172785978 + 0.4091293475741201 + 0.4741207559331406 + 0.5070486961061221 + 0.5096621159086916 + 0.4852652056791736 + 0.4383291434294925 + 0.3741310089294133 + 0.2984238451899042 + 0.2171223728287449 + 0.1359857847214636 + 0.06029089507275459 + -0.005491106924947723 + -0.05798210834369474 + -0.09510668667189734 + -0.1161853051362735 + -0.6826627922012664 + -0.6242808384197167 + -0.5746291839479153 + -0.5384982283768703 + -0.5190594242894738 + -0.5173477194318825 + -0.5319896889416388 + -0.5592425541259828 + -0.5933667642903414 + -0.6273029587688234 + -0.6535713053440753 + -0.6652674772915259 + -0.6570046971010627 + -0.6256525630259044 + -0.5707531720796484 + -0.4945494903010122 + -0.4016299198674905 + -0.2982621103463861 + -0.1915427734858558 + -0.08851616830332462 + 0.004593716442500844 + 0.08293058337867358 + 0.1432842550484921 + 0.1841134525639859 + 0.2053757510538363 + 0.2082527712715315 + 0.1948557629552244 + 0.1679705443423898 + 0.1308628240156979 + 0.08712931106176743 + 0.0405585119844743 + -0.005036492492276554 + -0.04603434259944405 + -0.07926474330920726 + -0.1022781179355652 + -0.1135762365800992 + -0.1127535436544508 + -0.6764186527179195 + -0.5670609415289923 + -0.4619062561415678 + -0.3680590060022711 + -0.2914237876376746 + -0.2360304122802298 + -0.2035675688097442 + -0.193205952977744 + -0.2017524201916477 + -0.224126050321491 + -0.2540930844829705 + -0.2851506292346681 + -0.3114190466253094 + -0.3283979870823638 + -0.333464352469181 + -0.3260391291111074 + -0.3074146399345221 + -0.2803002302278561 + -0.2481971822167268 + -0.2147399256182839 + -0.1831340737679945 + -0.1557848684077847 + -0.1341530270551612 + -0.1188149237842778 + -0.1096572718942747 + -0.1061152681991719 + -0.1073714926562538 + -0.1124654120578985 + -0.1203075194705516 + -0.1296325046076062 + -0.1389493178145672 + -0.1465460432575824 + -0.1505858996026343 + -0.1492962754009142 + -0.1412178628346417 + -0.1254571785982995 + -0.1018799799853343 + -0.6516326873296027 + -0.4945694794212748 + -0.337158881589081 + -0.1885994842741633 + -0.05733372106646719 + 0.04976204632259718 + 0.1280209751966238 + 0.1753692399106699 + 0.192390975589853 + 0.1820639307283966 + 0.1492083566036601 + 0.09974049165577775 + 0.03985611279538349 + -0.02471936677297292 + -0.089293974600307 + -0.1505066371566262 + -0.2063386636835524 + -0.2558809690236283 + -0.2989492486720844 + -0.335665293858453 + -0.3661173023268368 + -0.3901772195365826 + -0.4074991791053036 + -0.4176660681398766 + -0.4204080964791356 + -0.4158005477086254 + -0.4043617184862678 + -0.3870107347657709 + -0.3648950036791985 + -0.3391418566491837 + -0.310614202609436 + -0.279748499313576 + -0.2465268848130096 + -0.2105936244824032 + -0.1714830230933255 + -0.128894840281685 + -0.08294237719032771 + -0.6099542703289512 + -0.4112563926726387 + -0.2078298240021321 + -0.010615801374404 + 0.1697506889902007 + 0.3238539476654311 + 0.4442900265144828 + 0.5262364448788961 + 0.5677263574299132 + 0.569597752565229 + 0.5351389009609502 + 0.4695000436174446 + 0.3789782659295914 + 0.2702990862144187 + 0.1500096621222975 + 0.02406543795157018 + -0.1023585090752253 + -0.2248561042817186 + -0.3396504528553706 + -0.4434221462485289 + -0.5331982877636625 + -0.6063629095669906 + -0.6607992362729722 + -0.6951213342013152 + -0.708913927003852 + -0.7028872276334573 + -0.6788727183482879 + -0.6396300347819447 + -0.5884903848205697 + -0.5289106194379936 + -0.4640388781173189 + -0.3963897207124556 + -0.3276956191872649 + -0.2589530988066547 + -0.1906309608410796 + -0.1229697173144521 + -0.0562853705913289 + -0.5541296157025596 + -0.322399905233473 + -0.08191233685932454 + 0.1551150390782211 + 0.3763327582341752 + 0.5702366313190242 + 0.7270719334566361 + 0.8395589187724228 + 0.9033563652048565 + 0.917217065815536 + 0.8828351601874097 + 0.8044319279977832 + 0.6881649673443079 + 0.5414671333479933 + 0.3724207808036614 + 0.1892492097289813 + -3.394567243314603e-05 + -0.1878248484068228 + -0.3670285856430932 + -0.5311302595033397 + -0.6743085162520519 + -0.7916337621244456 + -0.8793479411572006 + -0.9351749782111883 + -0.9585772243955951 + -0.9508660938159447 + -0.9150988567036831 + -0.8557423929201742 + -0.7781441951002965 + -0.6879027245624703 + -0.5902572388758173 + -0.4896128439603935 + -0.389281431654583 + -0.2914643780184045 + -0.1974448236698993 + -0.107912317191272 + -0.02332165787527806 + -0.4877967800158785 + -0.2336745085467029 + 0.03272237654441317 + 0.2984507865219696 + 0.5500281441104213 + 0.7744281070538989 + 0.9600524102291743 + 1.097573781403419 + 1.180560429361542 + 1.205822081322744 + 1.173456871885259 + 1.086621069133237 + 0.9510816656802035 + 0.7746373088711981 + 0.5664999929653869 + 0.3367164977506325 + 0.09567808047489601 + -0.1462721664992838 + -0.379160953320471 + -0.5936835723086837 + -0.7815271904791629 + -0.9357422594939198 + -1.051146130599716 + -1.12470120341785 + -1.155781558546688 + -1.146239404692579 + -1.100210280052672 + -1.023648166151364 + -0.9236441072867146 + -0.8076359289232706 + -0.682645488418685 + -0.5546743998289542 + -0.428350757198262 + -0.306859380124765 + -0.1921238258487926 + -0.08515736559960772 + 0.01352538793847781 + -0.4151908844899554 + -0.1506626822730128 + 0.1290183952603186 + 0.4107847063326991 + 0.6806656205679016 + 0.9247556053492593 + 1.130205983778084 + 1.286141637255283 + 1.384411502447888 + 1.420102111344005 + 1.39177429963695 + 1.301419966039692 + 1.154171966270051 + 0.9578286845587461 + 0.7222693214669412 + 0.4588331694027541 + 0.1797172803509665 + -0.1025820048656837 + -0.3757875196898774 + -0.6283427434826472 + -0.8499204992379953 + -1.031944497955175 + -1.168096557004717 + -1.254747239533366 + -1.291224821134765 + -1.279838883071918 + -1.225605147797057 + -1.135672293612687 + -1.018515416187042 + -0.8830159340881336 + -0.7375769966707822 + -0.5894171538343804 + -0.444144214765552 + -0.3056472374306392 + -0.1762753159433111 + -0.0572157419732067 + 0.05104541700932034 + -0.3407865318304198 + -0.078359177230476 + 0.2013770243307872 + 0.4858361024638714 + 0.7612218510933839 + 1.013422989270568 + 1.228976965921404 + 1.396014847582437 + 1.505098962896779 + 1.549875274529477 + 1.527483412949202 + 1.438696528352601 + 1.287796038645268 + 1.082216816424307 + 0.8320199659758735 + 0.5492583649884786 + 0.24729339987816 + -0.05989681502697486 + -0.3583995328825942 + -0.6350382959950623 + -0.8780346681653408 + -1.077649937835512 + -1.226770542957186 + -1.321372970959426 + -1.360786466379971 + -1.347676522083501 + -1.287703825917247 + -1.188867730806077 + -1.060607195480428 + -0.9127873116926819 + -0.7547288434895418 + -0.5944315090634349 + -0.43809954291396 + -0.2900115123577022 + -0.1527035035253348 + -0.02737477350176967 + 0.08560794089318469 + -0.2689158293341294 + -0.02072212725992193 + 0.2461765003617843 + 0.5202428398128282 + 0.7884862633938636 + 1.037244527565157 + 1.25307524535395 + 1.423684756266403 + 1.538812928573049 + 1.590992018058791 + 1.576107756739725 + 1.493711331251523 + 1.347059376369809 + 1.142890622915815 + 0.8909759443341868 + 0.6034971092236421 + 0.2943149522583149 + -0.02181951106113355 + -0.3300722520306515 + -0.6163272539964563 + -0.8679630233505937 + -1.074579608264375 + -1.228633510991861 + -1.325917057742121 + -1.36580638657243 + -1.351209132327992 + -1.288174510965469 + -1.185181508114395 + -1.052183178838907 + -0.8995392461602282 + -0.7369982565265073 + -0.572883965358373 + -0.4135982257021582 + -0.2634850128641323 + -0.1250252705183696 + 0.0007305001470323283 + 0.1136205791661599 + -0.203408494680211 + 0.01967488759255106 + 0.2621075036602709 + 0.5138861319483264 + 0.7633788469775046 + 0.9979610538494145 + 1.20479711195775 + 1.371713597996191 + 1.488092889077687 + 1.545704516211646 + 1.539390441158776 + 1.467531484665276 + 1.332245329363983 + 1.139298241422072 + 0.8977464850496613 + 0.6193518661810333 + 0.3178329047709672 + 0.008016524519227084 + -0.2950525786634586 + -0.5770000127591743 + -0.8249712616685135 + -1.028406651652339 + -1.179695806654608 + -1.274651780866486 + -1.312736978860166 + -1.296981022775674 + -1.233560789316101 + -1.131062856331822 + -0.9995079426681476 + -0.8492692521347219 + -0.6900453160497659 + -0.5300420553904002 + -0.3754773765935574 + -0.2304544082382093 + -0.09717392794520413 + 0.02360782984845421 + 0.1320074242627237 + -0.1473025853837196 + 0.04184284070360381 + 0.2502795376865775 + 0.469904943212856 + 0.6908804729581154 + 0.9021000447843492 + 1.09183401771201 + 1.248514620081609 + 1.361603974425583 + 1.422464209959625 + 1.425136722002179 + 1.366939232182912 + 1.248806847565507 + 1.075334568151542 + 0.8545173402873261 + 0.5972210824519584 + 0.3164457950350898 + 0.02645490361536216 + -0.2581564566169808 + -0.5233922314032848 + -0.7567353798537251 + -0.9479332924673691 + -1.089642748490223 + -1.177880835654052 + -1.212223530446335 + -1.195701554529263 + -1.134370194787664 + -1.036575406286476 + -0.9119937819938072 + -0.7705738347957264 + -0.6215343730752834 + -0.4725712813140199 + -0.3293847973249828 + -0.1955740345083349 + -0.07287068876773271 + 0.03838105713831866 + 0.1386305436289838 + -0.102668261870604 + 0.04639727916238353 + 0.21407756232398 + 0.3943911849873693 + 0.5795782850505599 + 0.7603922927680062 + 0.9265900548882829 + 1.067606611347609 + 1.173369269178627 + 1.235174618763619 + 1.246529464736875 + 1.20384933648737 + 1.106920228586446 + 0.9590595224939871 + 0.7669544844626405 + 0.5402015155921043 + 0.2906060635015208 + 0.03132431820075374 + -0.2240684908016597 + -0.4625082235296788 + -0.6723107505329635 + -0.8439324178041583 + -0.9705793072927255 + -1.048620160538974 + -1.077755231174009 + -1.060899795434294 + -1.003763841643537 + -0.9141496002995529 + -0.8010389976287771 + -0.6735902249164784 + -0.5401908622530854 + -0.4077126977397744 + -0.2810774837006385 + -0.1631806614068578 + -0.05514717853065851 + 0.04317114787028511 + 0.1325875097936506 + -0.07057182224051622 + 0.03538863195577961 + 0.1587780433091592 + 0.2957941224578359 + 0.4408730249314914 + 0.5868084597880115 + 0.7250846666599372 + 0.8464283538149671 + 0.9415476492530623 + 1.001987298234501 + 1.02099799423329 + 0.9943027444236826 + 0.9206501645742069 + 0.8020736733080571 + 0.64382067468953 + 0.4539662805224034 + 0.2427698277130359 + 0.02185985371961246 + -0.1966594961383175 + -0.4010974419104175 + -0.5809964109122967 + -0.7278360936039552 + -0.8355852121430415 + -0.9010659613536415 + -0.9240941548714363 + -0.9073617970727185 + -0.8560462429409152 + -0.7771640243428362 + -0.6787326597202463 + -0.5688482031251855 + -0.45481493271754 + -0.3424642733707006 + -0.2357684874869987 + -0.1367966306452248 + -0.04599013805445286 + 0.03732844377717273 + 0.1143412373882271 + -0.05118431383738679 + 0.01196050240589376 + 0.09096551647410163 + 0.1840986854266043 + 0.2879354167989732 + 0.3973224951760722 + 0.5055634986725697 + 0.6048466955386997 + 0.686895536612246 + 0.7437773038717513 + 0.7687676476285192 + 0.7571479016937692 + 0.706815077734901 + 0.6186122095290131 + 0.4963333131492837 + 0.3464112907147505 + 0.1773452602228866 + -0.001045022146556505 + -0.1784408803727412 + -0.3448364510292876 + -0.4912762252271447 + -0.6104765671628691 + -0.6973036597896957 + -0.7490839040815089 + -0.7657199366250141 + -0.7495850848499563 + -0.7051803790660426 + -0.6385656210622971 + -0.5566161808423271 + -0.4661994185042523 + -0.3733943685327065 + -0.2828828425563537 + -0.1976137369333196 + -0.1187892216399417 + -0.04615468574680032 + 0.02148843965934275 + 0.08566998400373735 + -0.04401201675894681 + -0.02011798218626222 + 0.01782020373260969 + 0.06987256880608295 + 0.134529390691026 + 0.2085397588059032 + 0.2869711469248237 + 0.3635226064910561 + 0.431081315134871 + 0.4824644481158508 + 0.5112467572537425 + 0.5125498729797935 + 0.4836697635237178 + 0.4244453412060864 + 0.3373180213235663 + 0.2270873702573404 + 0.1004177162660629 + -0.03481719986014679 + -0.1702556140406073 + -0.2977516909246814 + -0.4100034828251066 + -0.5010719753663587 + -0.5667748571372905 + -0.6049423549651703 + -0.6155169840260304 + -0.6004735528931181 + -0.5635404515888276 + -0.5097242225197803 + -0.4446750808197976 + -0.3739718629917429 + -0.3024365812084985 + -0.2335978951605887 + -0.1694022706687881 + -0.1102238461783954 + -0.0551607690903323 + -0.002544099633829704 + 0.04945789818845741 + -0.04820062912631496 + -0.05697594013112412 + -0.05363128096651439 + -0.0367041162829939 + -0.006163998261150478 + 0.03634103673811788 + 0.08745048584975733 + 0.1423086462217271 + 0.1950291191860943 + 0.239354426422507 + 0.2694164065448004 + 0.2804778864607503 + 0.2695356255342231 + 0.2356901025001565 + 0.1802334658852857 + 0.1064610764066773 + 0.01926028967990774 + -0.07543961684793027 + -0.1712660471349787 + -0.2619750664651512 + -0.3419491192010018 + -0.4066002498740158 + -0.4526753222951452 + -0.4784614215047279 + -0.4838798089735142 + -0.470445188295801 + -0.4410649896130462 + -0.3996684932624059 + -0.3506877328807659 + -0.2984525925067597 + -0.246597121379614 + -0.1975885270195629 + -0.1524759680033823 + -0.1109139771915137 + -0.07145551069994163 + -0.03204878489388863 + 0.009372705819351113 + -0.06284739362372288 + -0.09513746668287447 + -0.1172016342123623 + -0.1267096221921512 + -0.1225900382574303 + -0.1053131135903535 + -0.07697751514126197 + -0.04116237167656633 + -0.002546324684286243 + 0.03365919398686065 + 0.06237581180016396 + 0.07931353043908239 + 0.0815062971081518 + 0.06764353939372875 + 0.0381567795694924 + -0.004929225632510588 + -0.05832785731483257 + -0.117926281085861 + -0.1792452941899027 + -0.237862044858828 + -0.2897638483183118 + -0.3316288284730946 + -0.3610437785998724 + -0.3766671344234311 + -0.3783292326124326 + -0.3670436200602484 + -0.3448946194897922 + -0.3147765360135507 + -0.2799897348348902 + -0.2437402073505645 + -0.208627712022798 + -0.1762278271298233 + -0.1468651976789155 + -0.1196381839671662 + -0.09269829226470405 + -0.06372731226517211 + -0.03050842091673223 + -0.08725100629166689 + -0.131909670286008 + -0.1680723935990443 + -0.1931492744099145 + -0.2056201851083092 + -0.2052998286700911 + -0.1934307241692081 + -0.1725719021494014 + -0.1462874087141512 + -0.1186782536461412 + -0.09383465703502608 + -0.07530326291760325 + -0.06566064917198193 + -0.06625981485752661 + -0.07717648493026058 + -0.09733801900943832 + -0.1247820136625055 + -0.1569743289359861 + -0.1911210602874414 + -0.2244320026668587 + -0.2543240601848695 + -0.2785789068747669 + -0.2954795633206382 + -0.3039417914453504 + -0.3036332150086596 + -0.295047484599274 + -0.2794863023040774 + -0.2589086025807564 + -0.2356352380238099 + -0.2119411271199209 + -0.1896099928763299 + -0.1695531535286131 + -0.1515918172251342 + -0.1344699145921656 + -0.1161100265091957 + -0.09406431057702115 + -0.06606337571458867 + -0.1210405319497768 + -0.1655982108534572 + -0.2030993215490641 + -0.2313509028888834 + -0.2490347292345569 + -0.2558982223960332 + -0.2528036937090454 + -0.2416170844319772 + -0.2249472506090666 + -0.2057774879798491 + -0.1870546261956853 + -0.1713106742759528 + -0.1603838789368783 + -0.1552812649177319 + -0.1561895753540101 + -0.1626060750927912 + -0.1735356829259975 + -0.1876941330373963 + -0.2036700796342832 + -0.2200268813952687 + -0.2353562800118095 + -0.24831864815241 + -0.2577084308987715 + -0.2625665503776952 + -0.2623302255469941 + -0.2569778502559923 + -0.2471070082846752 + -0.23388794818783 + -0.2188646693333853 + -0.2036228425506929 + -0.1893922986918944 + -0.1766841983155333 + -0.1650664654955195 + -0.1531524682877065 + -0.1388249700003403 + -0.1196559090776841 + -0.09343101767779927 + -0.1641504544314778 + -0.1955184403366851 + -0.2208635360930785 + -0.2390592907173535 + -0.2496632881952086 + -0.2529780240912062 + -0.2500058940673847 + -0.2422993327025828 + -0.2317286740916844 + -0.2202092904199658 + -0.209440532043773 + -0.2007077695155534 + -0.1947841902862383 + -0.1919436591340616 + -0.1920664576691793 + -0.1947948827569851 + -0.1996838746742409 + -0.2062979353001986 + -0.2142286734268522 + -0.223040219692 + -0.2321809553888971 + -0.2409174446721636 + -0.2483421605994708 + -0.2534801927672285 + -0.255479845363524 + -0.2538323429015877 + -0.2485423963674358 + -0.2401749831120146 + -0.2297358379907587 + -0.2183947487652788 + -0.2071149394155513 + -0.1962898785969194 + -0.1854969175260797 + -0.1734513122007366 + -0.1581918147438028 + -0.1374661664489903 + -0.1092305353685714 + -0.2166442138795742 + -0.2218101627685638 + -0.2214825573029609 + -0.216250032072701 + -0.2072092969563831 + -0.1958434950666425 + -0.1838343643616284 + -0.1728349945926413 + -0.1642415408752181 + -0.1590071979650057 + -0.1575374014052611 + -0.159690797792541 + -0.1648878485822197 + -0.1723026606350551 + -0.1810905622048084 + -0.190591339085165 + -0.2004513778870246 + -0.2106286210914214 + -0.2212781675980984 + -0.2325543643113734 + -0.2443952870349399 + -0.2563665187818382 + -0.2676271342247583 + -0.2770438711685164 + -0.2834300688505419 + -0.2858401009280841 + -0.2838240547879333 + -0.2775519998913887 + -0.2677530473768189 + -0.2554713039411161 + -0.2417006852989028 + -0.2270035571025134 + -0.211229673031669 + -0.1934275544547041 + -0.1719877248911065 + -0.1449925123072194 + -0.1106901565007619 + -0.2784250811216711 + -0.2451034129856727 + -0.2062371717607308 + -0.164726652371336 + -0.1238291793093998 + -0.08680842385461951 + -0.05655940435766441 + -0.03526670715546323 + -0.02415382585711403 + -0.02337056518521517 + -0.03204375253846371 + -0.04848706084679472 + -0.07053385784085822 + -0.09592947196670487 + -0.1227031254379688 + -0.1494405261389888 + -0.1753978917629222 + -0.2004344662113138 + -0.2247858402244629 + -0.2487432518714371 + -0.2723320836269248 + -0.2950862080013225 + -0.3159901547709286 + -0.3336131957143441 + -0.3464012699186738 + -0.3530417521967303 + -0.3527891347127454 + -0.3456468599515417 + -0.3323412889536744 + -0.3140864330405374 + -0.2922032257447893 + -0.2677040087277601 + -0.240966456856112 + -0.2115970554982254 + -0.1785302562592659 + -0.1403425916583999 + -0.09570165000368303 + -0.3489021227096743 + -0.2661125192173131 + -0.1771002732798375 + -0.08759493034069936 + -0.003566312805833922 + 0.06939359185426226 + 0.1266708723205987 + 0.1651199162450222 + 0.1833631239620615 + 0.1818477015738913 + 0.1626475672661844 + 0.1290440738216151 + 0.08496114860530347 + 0.03435949048960848 + -0.01929657449691753 + -0.07340062030888628 + -0.1263318947816844 + -0.1773394657621476 + -0.2262293560762881 + -0.2729484670966631 + -0.317184301822693 + -0.3580945537314409 + -0.3942448157985017 + -0.4237739974057244 + -0.4447409498960623 + -0.4555512317909099 + -0.4553367086167708 + -0.4441718878680813 + -0.4230573999998551 + -0.3936694887071939 + -0.3579440599275246 + -0.3176132994963597 + -0.2738269410643905 + -0.2269650548497822 + -0.1766932104506449 + -0.1222417749870309 + -0.06282982860924854 + -0.4266930138753293 + -0.2852490156665515 + -0.1362659902687144 + 0.0112809870712798 + 0.1482511492468847 + 0.2662521088112028 + 0.3584954762986694 + 0.4204647086823133 + 0.4502898757614677 + 0.4487697952443066 + 0.4190418057028047 + 0.3659619017520488 + 0.2953102442645448 + 0.2129677893322525 + 0.1242116034025968 + 0.03324790949036161 + -0.05695180297017045 + -0.144514123061119 + -0.2282961293889826 + -0.3074071892665448 + -0.3807621047578766 + -0.4467937964384863 + -0.5034068560295871 + -0.5481845725885979 + -0.5787893567558677 + -0.5934399474201182 + -0.5913249181251822 + -0.572828512232521 + -0.5394976603976899 + -0.4937529913864543 + -0.4384198089131604 + -0.3762055053476368 + -0.3092628960162541 + -0.2389514177897259 + -0.1658494849188983 + -0.09000006283455442 + -0.01130903375868814 + -0.5094408400562813 + -0.3023375275534104 + -0.08576894733873899 + 0.1277466248687096 + 0.3255520238309867 + 0.4960786672461231 + 0.6299784068601627 + 0.7209921302563868 + 0.7664236805345112 + 0.7671509686838531 + 0.7271852077898481 + 0.6528683191834308 + 0.5518611852555851 + 0.4321079347874723 + 0.3009564409447253 + 0.1645733978853865 + 0.02772261017189468 + -0.1061072262067236 + -0.2343155131519013 + -0.3546869952431697 + -0.4649341607621152 + -0.5624230299638545 + -0.6441632508505246 + -0.7070658787436057 + -0.7483946453703547 + -0.7662798601125275 + -0.7601441995139857 + -0.7309124831933939 + -0.6809368847409865 + -0.6136478568579441 + -0.5330163905704864 + -0.4429631463300048 + -0.3468604222234175 + -0.2472419856290205 + -0.1457741164234179 + -0.04346813884825238 + 0.05894814745742503 + -0.5937996965414498 + -0.3164941592171001 + -0.02725677272958339 + 0.2576839533137514 + 0.5219369525421838 + 0.7504951174026513 + 0.931154009228645 + 1.055597139816858 + 1.119989964107132 + 1.125004763346035 + 1.075296005152539 + 0.9785407737894108 + 0.8442313433888068 + 0.6824412445641111 + 0.5027748893695606 + 0.3136568146504611 + 0.122032374060202 + -0.06654344265905059 + -0.2475367747825717 + -0.4169475007795039 + -0.570878620510812 + -0.7053060297847157 + -0.816125592448751 + -0.899469713978727 + -0.9522051327634314 + -0.9724687680092114 + -0.9600840259751441 + -0.9167298805906908 + -0.845800808843999 + -0.7519784681185584 + -0.6406120905883428 + -0.5170523104009281 + -0.3860896080793922 + -0.2516133764506746 + -0.1165427415469627 + 0.01699416906241822 + 0.1473181677742277 + -0.6756091264963354 + -0.3261901360777225 + 0.03805943029140425 + 0.3971709884677519 + 0.7309399600505159 + 1.020785000890714 + 1.251453437979751 + 1.412331044827181 + 1.498172573309078 + 1.509164805575249 + 1.450348081759975 + 1.330531764282473 + 1.160920553526724 + 0.9537044931440257 + 0.7208486825896164 + 0.4732540509222301 + 0.2203638827132207 + -0.02981494494145771 + -0.2703973524542303 + -0.4951879953724743 + -0.6983151920027383 + -0.874074909147905 + -1.017054162257762 + -1.122513284176011 + -1.18692522397186 + -1.208518800555809 + -1.18766509743219 + -1.126983607470496 + -1.031116511450292 + -0.9062051740951307 + -0.7591783174889102 + -0.5970054295245276 + -0.426070345450867 + -0.2517799554868024 + -0.0784549955715686 + 0.09052533712216727 + 0.2524141411847871 + -0.7502384206251236 + -0.3294832035010561 + 0.109292828902753 + 0.5424892539617152 + 0.9461506805215135 + 1.298120753142709 + 1.580023353669135 + 1.778795969336252 + 1.887567619462388 + 1.905782434865465 + 1.838598805755671 + 1.695716103410952 + 1.489870178221123 + 1.235276176859817 + 0.9462757490439423 + 0.6363722501231882 + 0.3177309200848648 + 0.001107288777084322 + -0.3039269807019695 + -0.5886448894426046 + -0.84489774718511 + -1.065061248442279 + -1.242252519445064 + -1.370783688208203 + -1.446737545000335 + -1.468504951619024 + -1.437123581941523 + -1.356302626963869 + -1.232095232722048 + -1.07226784869654 + -0.8854889454265301 + -0.6804987787628214 + -0.4654173553476081 + -0.2473027098468347 + -0.03200077237882926 + 0.1757472096644712 + 0.3720324350313078 + -0.8130474469430856 + -0.3243647456705468 + 0.1856571021716733 + 0.6900272052747134 + 1.161242748327943 + 1.573709117307875 + 1.905975488062247 + 2.142481954627328 + 2.274589179392485 + 2.300781248413546 + 2.226073245663326 + 2.060787400838124 + 1.818957088256554 + 1.516656379002012 + 1.170527686184092 + 0.7966998443163702 + 0.410175099421368 + 0.02464454477101017 + -0.3474039822998072 + -0.6944722457306132 + -1.005915536164372 + -1.272014657067043 + -1.484300879147048 + -1.636084837310031 + -1.723063647072616 + -1.743841355405666 + -1.700206053642658 + -1.597059466772446 + -1.441976482832663 + -1.244460000641225 + -1.015026441283593 + -0.7642906762472466 + -0.5022082437756626 + -0.2375826866457205 + 0.02212733804622912 + 0.270741231011827 + 0.5031257280590109 + -0.859888346890745 + -0.309149070678065 + 0.2662016197848817 + 0.8361460779011463 + 1.369970108762286 + 1.838911220864723 + 2.218617719685204 + 2.491091067272786 + 2.645864501681369 + 2.680298974610019 + 2.599027360513928 + 2.412717852965931 + 2.13642738619621 + 1.787855005425821 + 1.385777237962531 + 0.9488627368621951 + 0.4949451851565512 + 0.040712130197161 + -0.398327361356615 + -0.8077803198878636 + -1.174388052836238 + -1.486242228346957 + -1.733227943028655 + -1.907630007984983 + -2.00476700965767 + -2.023486357562976 + -1.966370289342311 + -1.839562238018884 + -1.652208140671811 + -1.415594533310131 + -1.142130941401439 + -0.8443510889451967 + -0.5340901295577384 + -0.22194044023496 + 0.08298636685520287 + 0.3730369555113769 + 0.6418313387800856 + -0.8875662328909611 + -0.2828265920206785 + 0.3495788802572547 + 0.9770754332728997 + 1.566191686838565 + 2.085390478287099 + 2.507712463232998 + 2.812887202471645 + 2.988650811548549 + 3.031142898579927 + 2.944411355950452 + 2.739198361907912 + 2.431283520116432 + 2.039699316879481 + 1.585104441581614 + 1.088513281772709 + 0.5704599673077212 + 0.05055437273852216 + -0.4527044854086711 + -0.9220344828958833 + -1.341558658886295 + -1.697176693021256 + -1.977131391271186 + -2.172692047211125 + -2.278811282756638 + -2.294589115198473 + -2.223403180278577 + -2.072629667759017 + -1.852967143470041 + -1.57746099747918 + -1.260386900862095 + -0.916172052927561 + -0.5585095254878698 + -0.1997623647711812 + 0.1493217078659184 + 0.4796355903700117 + 0.7835771554492403 + -0.8941870943191784 + -0.2453143391865528 + 0.4339040864741405 + 1.108890483820134 + 1.743968052778754 + 2.305323405316229 + 2.763789368900637 + 3.097091520648585 + 3.291288141400755 + 3.341269722283164 + 3.250342795054011 + 3.029069650436985 + 2.693638847166142 + 2.264080290870002 + 1.762608136118702 + 1.212287079643054 + 0.6360986057615586 + 0.05636562929346586 + -0.5055933744040149 + -1.029746452771487 + -1.497713291853457 + -1.893295692395661 + -2.203167301160117 + -2.417631000789723 + -2.53129451662917 + -2.543500676952632 + -2.458381885814805 + -2.284479203209824 + -2.033955360580425 + -1.721513993432373 + -1.36319255503717 + -0.9752102860132276 + -0.5730235872894127 + -0.1706793768131721 + 0.2195188989116201 + 0.5870868195738824 + 0.9232748042813447 + -0.8793440030747527 + -0.1975613097961799 + 0.516741583383951 + 1.227597232697453 + 1.897747046464423 + 2.491681493206134 + 2.978512629716665 + 3.334317643996436 + 3.543678490623791 + 3.600279252488777 + 3.50658126395084 + 3.272742094167031 + 2.915046763238772 + 2.454157507735846 + 1.913457759869007 + 1.317679668133789 + 0.6918887069776618 + 0.06078581804743343 + -0.5517937319846848 + -1.123336416898336 + -1.63318983473162 + -2.063247860018105 + -2.398757758699203 + -2.629145611198769 + -2.748706550511524 + -2.757000772339489 + -2.658836525832129 + -2.463796175114725 + -2.18535053956578 + -1.839686307746706 + -1.444420869719769 + -1.01738676240078 + -0.5756342071385836 + -0.1347363510161801 + 0.2915933011707134 + 0.691627632364494 + 1.055593663564629 + -0.8441225607235197 + -0.1414962987046917 + 0.5952227942792753 + 1.329321703950226 + 2.022626175963178 + 2.638564039315231 + 3.145076132992144 + 3.517015190825926 + 3.737757949043021 + 3.799889941087283 + 3.704977801365895 + 3.462586706712998 + 3.088800093435359 + 2.604535257828326 + 2.033918311808505 + 1.402898520034414 + 0.7381714281735235 + 0.06637385566510459 + -0.5865602260219337 + -1.19601854868223 + -1.739412760514917 + -2.197006360469286 + -2.552827849851529 + -2.795555236246287 + -2.919216378327754 + -2.923552147732284 + -2.813935683541588 + -2.600818656908016 + -2.298763666553685 + -1.925197511879762 + -1.49906406985137 + -1.039557958193455 + -0.5650828122467421 + -0.09251314543938953 + 0.3632347146866307 + 0.7893795413885678 + 1.175293472553106 + + +# name: Varft_ia +# type: matrix +# rows: 1369 +# columns: 1 + 0.2316595020759299 + 0.145985664595383 + 0.0957464133449895 + 0.07148633369249346 + 0.06365692192941767 + 0.06396343931466145 + 0.06624635982287569 + 0.0668295519893254 + 0.06438173032148486 + 0.05941180994604626 + 0.05355538795044607 + 0.04881398601717981 + 0.04688406681257964 + 0.04866920771248137 + 0.05402679104167844 + 0.06177589990635914 + 0.06997606998973331 + 0.07644585002718023 + 0.07940896928058461 + 0.07806713798234137 + 0.07287464986784399 + 0.06538398846217844 + 0.0577182992863605 + 0.05190325014700932 + 0.04934595073066774 + 0.05064413554866534 + 0.05570996874442925 + 0.06402500265567078 + 0.07481049790765419 + 0.08701996066372437 + 0.09926065914330634 + 0.1098959435255835 + 0.1175599093237095 + 0.1221122061514708 + 0.1257704185692552 + 0.1339441232709102 + 0.1552932474537866 + 0.1759768661595013 + 0.100209304047398 + 0.05689478907464799 + 0.03656192193979806 + 0.03026295722947487 + 0.03065822911577729 + 0.03258574991631727 + 0.03314784960810314 + 0.03142447775158133 + 0.02794581419837129 + 0.02405444483648452 + 0.02127775135647423 + 0.02081137671619433 + 0.02317897028902702 + 0.02809258368539274 + 0.03451171560907272 + 0.04088926073977153 + 0.04557474286923722 + 0.04729530484587358 + 0.04556912132028746 + 0.04088253069059469 + 0.03453229545551899 + 0.02818386449297278 + 0.0233401341404995 + 0.02095633142820316 + 0.02134240066754753 + 0.02432244840093406 + 0.02947983935164861 + 0.03629463531134328 + 0.04409299578717842 + 0.05191080223221115 + 0.05851306579665333 + 0.06280509020694536 + 0.06469303733577544 + 0.06617628178118602 + 0.07223005674943878 + 0.09100129001028978 + 0.1387968931685871 + 0.07267670444124809 + 0.03588821463462558 + 0.01907383343588745 + 0.01399866096187287 + 0.01433488340986348 + 0.0159014834028741 + 0.01649827807783478 + 0.01550317734405681 + 0.01336444412420762 + 0.0110754023589212 + 0.009699177551536275 + 0.01000399080651937 + 0.01224974330943106 + 0.01613164454452497 + 0.02085916618594572 + 0.02534421590448901 + 0.02847502855332568 + 0.02943177063247836 + 0.02795494851021732 + 0.02445151228449913 + 0.01986551963790179 + 0.01534937582467267 + 0.01188254295408702 + 0.01001628650035542 + 0.009846548399113095 + 0.01117963384910587 + 0.01374481093928905 + 0.01729335708306431 + 0.02151749498085249 + 0.02587701279708309 + 0.02954891222768196 + 0.03172825068786476 + 0.03236749387770815 + 0.03319480173455377 + 0.03862344007196598 + 0.05609023461817943 + 0.1134432283021831 + 0.05630229351665465 + 0.02544558680492711 + 0.01169623977927718 + 0.007557730282824833 + 0.007689601332136749 + 0.008825209464095698 + 0.009376265650870724 + 0.008944417750041395 + 0.00785961292549288 + 0.006780089100253688 + 0.00636407956713998 + 0.007035963409283369 + 0.008871374427205533 + 0.01159871394950806 + 0.01468379548912698 + 0.01746043941295508 + 0.01928791793786994 + 0.01972193620340188 + 0.01866088750568995 + 0.01640039179749831 + 0.01354371945225779 + 0.01078587745225745 + 0.008669652534213713 + 0.007437499012978473 + 0.007047967929925239 + 0.007324859233569993 + 0.008127157799348849 + 0.00941718905433735 + 0.01117246855638027 + 0.01320488546637923 + 0.01506222775608991 + 0.01622111575804275 + 0.01668673439601347 + 0.01790754288970443 + 0.02368670310980144 + 0.04065647511486167 + 0.09501177809945667 + 0.04590057737425336 + 0.02029034643711395 + 0.009198242667141114 + 0.005813939766649052 + 0.005685721905347976 + 0.0063480408490237 + 0.006731435403962809 + 0.006615838363729028 + 0.006226926863339482 + 0.005954495041266931 + 0.006147595356606298 + 0.006978456989279332 + 0.008393793420131038 + 0.01015329791381249 + 0.01191775177457398 + 0.0133393457716016 + 0.01413356771342633 + 0.01413981921367034 + 0.01337268857031032 + 0.01203767488774878 + 0.01047710235843754 + 0.009047866768467722 + 0.007986399386923309 + 0.007337483096289544 + 0.00698932222652465 + 0.006791832305245746 + 0.006683152574753558 + 0.006740216310019211 + 0.007108200007121087 + 0.007841712457863085 + 0.008782811806904494 + 0.009656976031117995 + 0.01052710200259292 + 0.01258577825560274 + 0.01904686499466262 + 0.03574078399590692 + 0.08054914136837836 + 0.03834594283367607 + 0.01726668158823594 + 0.008499187048317305 + 0.005809980393073091 + 0.005482560525693255 + 0.005704739111597188 + 0.00582598482483063 + 0.005775316034128125 + 0.005715711257624395 + 0.00586122278307145 + 0.006363139767480871 + 0.007235089369566247 + 0.008339124352840477 + 0.009443955484058178 + 0.01031962349634788 + 0.01081118467080879 + 0.01086211000560534 + 0.01050284176901338 + 0.009834168739245116 + 0.009012041818552625 + 0.008216660207218432 + 0.007596765246157211 + 0.007210935364960517 + 0.007004797831687874 + 0.006846612685654855 + 0.006608626307466088 + 0.00625426527460984 + 0.005882714536015076 + 0.005693243183424537 + 0.005869724088983079 + 0.006457203666584825 + 0.007378363924489481 + 0.008749412659198003 + 0.01154554673970977 + 0.01845840739028899 + 0.03459312343360319 + 0.06874706130168041 + 0.03223478577861315 + 0.01495297879910411 + 0.008220193285859136 + 0.006240738069378188 + 0.005852241249920671 + 0.005733143644122842 + 0.005551021814808505 + 0.005361711508079407 + 0.005313027760369987 + 0.005535190893138164 + 0.006085703348618347 + 0.006903953233557022 + 0.007806713168391757 + 0.008552527339722256 + 0.008945886642267576 + 0.008914717852948879 + 0.008517865616589978 + 0.007895472900764235 + 0.007207856392138707 + 0.006594762043894056 + 0.006154507957793359 + 0.005929511303476547 + 0.005896255850832184 + 0.005970043856015506 + 0.006031624113055143 + 0.005972080048722034 + 0.005745822670256767 + 0.005414443130363526 + 0.005151187724455475 + 0.005177710261648004 + 0.005654857669978584 + 0.006640548069178924 + 0.00828714686996168 + 0.01139013771571183 + 0.01820652079322069 + 0.03323390767429577 + 0.05937034636031453 + 0.02728214894057356 + 0.01302551386817508 + 0.008012270240587227 + 0.006743999208684766 + 0.006432483980506103 + 0.006090057203431779 + 0.005609012153257808 + 0.005151618091606413 + 0.004888553225586161 + 0.004936825855260229 + 0.005337441733219973 + 0.006018422363278391 + 0.006784132293823404 + 0.007376570411518222 + 0.007588989045516337 + 0.007358782452178496 + 0.006780519720920798 + 0.006042407692598047 + 0.005338440368677861 + 0.004806775404446576 + 0.004509760406440655 + 0.004442699570437046 + 0.004553854081746326 + 0.00476486507278159 + 0.004986299609943351 + 0.00513062496258783 + 0.005135325762028676 + 0.005004782633409467 + 0.004849114778115417 + 0.004870226501504742 + 0.005274836516963316 + 0.006194698689743204 + 0.00779226455216453 + 0.01071274296352565 + 0.01686607048869383 + 0.03026961405668253 + 0.05264928043985509 + 0.02369784654700192 + 0.01163153137957143 + 0.007935348910338862 + 0.007289341230197773 + 0.007123369456514469 + 0.006648572357176154 + 0.005901819810262103 + 0.005130465822170831 + 0.004548313014772385 + 0.004298206377635494 + 0.004445414445050703 + 0.004940103601842152 + 0.005595666203442262 + 0.006142461879977577 + 0.006347515816629274 + 0.006124373967565248 + 0.005560444340651407 + 0.004853018707399617 + 0.004206853193832369 + 0.003756872598809257 + 0.003545466294749076 + 0.003544694515765192 + 0.003695879255982987 + 0.003940178316330065 + 0.004224809291269128 + 0.004490280992973275 + 0.00466741068538095 + 0.004712886464474662 + 0.004670904919421568 + 0.004698211891853747 + 0.005000941512553629 + 0.005734983747730714 + 0.007047639200883365 + 0.009456630525744157 + 0.01460155047963184 + 0.02613313388446704 + 0.04880081942463151 + 0.02171521395413053 + 0.01094753386103661 + 0.008061174303734842 + 0.007831235860051041 + 0.007785594197174969 + 0.007226847324131833 + 0.006269602335000341 + 0.005221213107001415 + 0.004339151765594147 + 0.003800084655723954 + 0.003699730818962323 + 0.004015479529698241 + 0.004577523134787853 + 0.005114852069532859 + 0.005375508953005856 + 0.005247115243806348 + 0.004796978056669126 + 0.00421249063039732 + 0.003692175488435936 + 0.003358962020060414 + 0.003235900384062029 + 0.003277938859219664 + 0.003425322193381299 + 0.0036409607081321 + 0.003909245317766501 + 0.004203458258335581 + 0.004461121921009719 + 0.004610294131360638 + 0.004643062362765299 + 0.004667689335448148 + 0.004866849888648514 + 0.005390791755935153 + 0.006357958025007454 + 0.008181286490819985 + 0.0122937400495338 + 0.02206791482818751 + 0.0477468513392001 + 0.02133913254123439 + 0.0109784304386943 + 0.008336055024822264 + 0.00823658261591158 + 0.00822267401456854 + 0.007605972136055404 + 0.006520654515843549 + 0.005302867627349341 + 0.004237823388920581 + 0.003522126813217451 + 0.003265578478425918 + 0.003459309441827511 + 0.0039479073462774 + 0.004470125709257743 + 0.004773525025051173 + 0.004735254115225294 + 0.004407524841026069 + 0.003962256419069768 + 0.003581462714172179 + 0.003368254587475509 + 0.00332486701452966 + 0.003392877148450992 + 0.003515790100830217 + 0.003678924964020911 + 0.003900679384045235 + 0.00418487367267002 + 0.004480350351278063 + 0.004699253614176483 + 0.004796331504172568 + 0.004838943923432342 + 0.004982718754028313 + 0.005364499891203743 + 0.006077175302887082 + 0.00745655606811692 + 0.01078169096325087 + 0.01920922127278686 + 0.04902176067693947 + 0.02229003499920755 + 0.01155112213937384 + 0.008628028399801863 + 0.008379397146006174 + 0.008309232817837495 + 0.007674038449638262 + 0.006573552017175827 + 0.005335947354482395 + 0.004249377730982013 + 0.003508626935563431 + 0.003215433115016162 + 0.003357000674020746 + 0.003787144390951693 + 0.004264897598210297 + 0.004558079400328637 + 0.004553613294416225 + 0.00429967600579324 + 0.003953033597392086 + 0.003673929328965382 + 0.003542057531180699 + 0.003541267179947446 + 0.003607322608207286 + 0.003694551981297478 + 0.003812543381571404 + 0.004007831821822797 + 0.004304858867173998 + 0.00465695594831845 + 0.004961798678463825 + 0.005145702186531485 + 0.005245995688764065 + 0.005399928013194394 + 0.005739744302127921 + 0.006349627539471075 + 0.007519590419146726 + 0.01041787878172256 + 0.01802609448921177 + 0.05182664104462165 + 0.02407525240734051 + 0.0124058973486809 + 0.008834791197963068 + 0.008255910659720892 + 0.008101721831913744 + 0.007523234723111744 + 0.006536533002258066 + 0.005425210350315718 + 0.004457137572784726 + 0.003809528656425046 + 0.003562909111100265 + 0.003690907504031311 + 0.004055186410350969 + 0.004444535891008093 + 0.004663747663464691 + 0.004625489375660055 + 0.004382586687675005 + 0.004077379215644781 + 0.003845862878956307 + 0.00374457172754731 + 0.003744753931817844 + 0.003785702971467398 + 0.003840145824530063 + 0.00394238411388404 + 0.004158546243862318 + 0.004519610249059146 + 0.004970925535419736 + 0.005391200805594337 + 0.005683255188832771 + 0.005865288344897114 + 0.006068871561048607 + 0.006435791480566499 + 0.007060740058183628 + 0.008215207975089064 + 0.01098890473027491 + 0.01821513942686529 + 0.05518270767110151 + 0.02611634869690642 + 0.01329436044652949 + 0.008948331982021095 + 0.008012151034857883 + 0.007828273448220435 + 0.007407293753400183 + 0.006644494363345442 + 0.005752305498746871 + 0.004966668732524228 + 0.004446375230909605 + 0.004253775017662398 + 0.004352149931764051 + 0.004615146684893344 + 0.004868048227664632 + 0.004961020654054668 + 0.004839129027133828 + 0.004562225554284145 + 0.004257358929545517 + 0.004035906908113881 + 0.003934423505851757 + 0.003918039616864713 + 0.003935958097004209 + 0.003981294081318767 + 0.004108080733032347 + 0.004390852751610685 + 0.004853941469022873 + 0.005425365672437592 + 0.005963522373237736 + 0.006354201215241518 + 0.006606548573313795 + 0.00685557540915774 + 0.007259785034766709 + 0.007932812859352767 + 0.009141247414412077 + 0.01191522956152647 + 0.01895879438134262 + 0.05813714049160552 + 0.02788025031379853 + 0.01403321628198746 + 0.009035271152080099 + 0.007860357888459605 + 0.007756242686353384 + 0.00758028636279861 + 0.007092273987558319 + 0.006426231142172678 + 0.005791183366480063 + 0.005342033371378793 + 0.005139733142949438 + 0.005149884589859544 + 0.005264444956582046 + 0.005346296680687052 + 0.005288801308846741 + 0.005065479583753712 + 0.004739251112669228 + 0.004420337421237678 + 0.004198223787198835 + 0.004095663543434379 + 0.004077491370293532 + 0.00410369139961251 + 0.004181412874553899 + 0.004372429993259169 + 0.004746706979310715 + 0.005313410003268118 + 0.00598287189013405 + 0.00660095977908443 + 0.007048056468284849 + 0.007333003521004411 + 0.007594898462932031 + 0.008001369402154139 + 0.008674602458470999 + 0.009870862963979606 + 0.01256577488361878 + 0.01935006945817539 + 0.05996751963800869 + 0.02898246662897274 + 0.01450977283057054 + 0.009159497581774586 + 0.007941607809469686 + 0.008021811443716765 + 0.008120405025051668 + 0.007876407421770324 + 0.007360521740275065 + 0.00677344258004679 + 0.006288040832369278 + 0.005984577571559473 + 0.005844802872677968 + 0.005782546380705277 + 0.005692223179999816 + 0.005498593630143778 + 0.005191399542016623 + 0.004828868428276979 + 0.004504058335851987 + 0.004291152148998664 + 0.004208205133336858 + 0.00422481179046507 + 0.004307768975936042 + 0.004465206104616821 + 0.004749792524579376 + 0.005214109941360641 + 0.00584960419568996 + 0.006558148511207084 + 0.007190034237731043 + 0.007636701464657849 + 0.007913617529849684 + 0.008155781867696273 + 0.008517818097854497 + 0.009102519605690541 + 0.0101338265975362 + 0.01252714891127564 + 0.018775542900703 + 0.06032488531794992 + 0.02924461818130034 + 0.01466427454823171 + 0.009310551834925488 + 0.008227395173705456 + 0.008531666251500475 + 0.008852993520554702 + 0.00875197038354753 + 0.00826713669778234 + 0.007612409446315255 + 0.006995001571066904 + 0.006527463351015375 + 0.006215070334121773 + 0.005991964091988338 + 0.005773078082813029 + 0.00549804533065062 + 0.005157537075367444 + 0.004797135301802048 + 0.00449452751209586 + 0.004317601993517359 + 0.004289516150627477 + 0.00438800922761548 + 0.004579625070546767 + 0.004857748112675721 + 0.005248652223895606 + 0.005777424996932812 + 0.006420635242772726 + 0.007087312268730346 + 0.0076543061809053 + 0.008042865441660701 + 0.008280802766258862 + 0.008486456532072435 + 0.008772601898048429 + 0.00918683164281152 + 0.009891469447405604 + 0.01173154921634092 + 0.01711858748017648 + 0.05926873084268011 + 0.02869923361353115 + 0.01447742382108236 + 0.009391757117847009 + 0.008526612717991983 + 0.009001929219867897 + 0.00942550034984019 + 0.009338036458401505 + 0.008780071065087618 + 0.00799030953471971 + 0.007210169419355596 + 0.006582297380879334 + 0.006133639524836492 + 0.005813924566095431 + 0.005548235227483593 + 0.005276973398329035 + 0.004979622861765217 + 0.004684206656260746 + 0.004456347823445151 + 0.004365448199418352 + 0.004445924933560436 + 0.004682909045095411 + 0.005033389896666806 + 0.005461214914548224 + 0.005952585258295344 + 0.00649961987724141 + 0.007070778407829618 + 0.007600100451929948 + 0.008013804809328166 + 0.008281873753102426 + 0.008451259709273833 + 0.008613962628454449 + 0.00881660942580958 + 0.009020881737812665 + 0.009302462968044128 + 0.01042826784441154 + 0.01474444560962925 + 0.0571860077005195 + 0.02754692987523516 + 0.01397468301775714 + 0.009277239790875254 + 0.008595484618215108 + 0.009113574229852846 + 0.009492998456144324 + 0.009312655327652757 + 0.008638852807571276 + 0.007728503470169792 + 0.006837343768514782 + 0.006121074966588165 + 0.005619873610260511 + 0.005295454569366248 + 0.005078732846383415 + 0.004904772977941954 + 0.004737220143226345 + 0.004586328842690585 + 0.004509123900178781 + 0.004579730701167353 + 0.004842827418550058 + 0.005284269703857356 + 0.00584063378554245 + 0.006434678921642943 + 0.007004566362111876 + 0.007508784917984452 + 0.007916089873424993 + 0.008201804944250959 + 0.008361552663648544 + 0.008432031906687275 + 0.008489680746329074 + 0.008599627332578626 + 0.008731735740003471 + 0.008746394899989398 + 0.008620856200932029 + 0.009043824299718622 + 0.01231179632212262 + 0.05463399808943543 + 0.02608344917373279 + 0.01323745490796163 + 0.008897888102510954 + 0.008281152391199165 + 0.008690514033280593 + 0.008904711319970508 + 0.008583298440485785 + 0.007824746685660564 + 0.006880905199745156 + 0.005988832744173298 + 0.005292818330805563 + 0.004836555558637387 + 0.0045939845690088 + 0.004504712699220276 + 0.004500863513320988 + 0.004533149515761133 + 0.004598056762537299 + 0.004746764919050865 + 0.005056284405434767 + 0.005574241229550705 + 0.006276960442052166 + 0.007071218325521753 + 0.007832732967989838 + 0.008449845794406356 + 0.008849752054257226 + 0.009007970280511599 + 0.008951609470603382 + 0.008759352947808592 + 0.0085495044010101 + 0.008441576020600458 + 0.008483964464136814 + 0.008575899537580513 + 0.008480412227844552 + 0.00808180293180895 + 0.008001181669674977 + 0.01050175371429181 + 0.05217634500177325 + 0.02462165546262775 + 0.01240136880017431 + 0.008296460955971701 + 0.007608925145268943 + 0.007793554036957915 + 0.007782634210639401 + 0.007335007309934921 + 0.006572277054994078 + 0.005711667510281999 + 0.004938715780883137 + 0.00436464458061491 + 0.004029830716466292 + 0.003923142065071345 + 0.003998601819296672 + 0.00419151746780245 + 0.004446269347681217 + 0.004751508770254435 + 0.005154599714508317 + 0.005731448385497895 + 0.006524696061985304 + 0.007494434890792176 + 0.008516132916764285 + 0.009421849632500742 + 0.01005479989456843 + 0.01031354908535667 + 0.01018045787593728 + 0.009734010932127158 + 0.009138006105365325 + 0.008599015076501904 + 0.008291520707903505 + 0.008263545362553373 + 0.008363049830970175 + 0.008276888426093034 + 0.007818850865457571 + 0.00756530829229572 + 0.009766458428320036 + 0.05027604456227337 + 0.02343356186624796 + 0.01163167421108682 + 0.007615676013296025 + 0.006763161479885522 + 0.006679579577862603 + 0.006452526283695062 + 0.005934849495790187 + 0.005255036516375681 + 0.004573297107953992 + 0.00400404411107597 + 0.003614355063384517 + 0.003438110153337391 + 0.003479791092824021 + 0.003709825541968709 + 0.004070279204337206 + 0.004504672431516087 + 0.004998908914019655 + 0.005597865462591711 + 0.00637367867403657 + 0.007362011631725825 + 0.008511459978732297 + 0.009679370457355015 + 0.01067086123205613 + 0.01129601263913751 + 0.01142613678555508 + 0.01104098719860571 + 0.01025485434359421 + 0.009301653255003635 + 0.008467896562094249 + 0.007985450304656146 + 0.007916492650284632 + 0.008083034952482809 + 0.008128618822501241 + 0.007832852123002214 + 0.00776251710266185 + 0.0101827103045262 + 0.04927383847020959 + 0.02272984897624321 + 0.0110877891774882 + 0.007033235270457419 + 0.005984728050671579 + 0.005662802933959488 + 0.005279349221349285 + 0.004757494899125932 + 0.004217694965027841 + 0.003757077962367973 + 0.003419099063414179 + 0.003228169706334859 + 0.003210097902168795 + 0.003379785423062827 + 0.003718730954371909 + 0.004174179519383959 + 0.00469111596887861 + 0.005255161121061026 + 0.005908202107114462 + 0.006717463799227615 + 0.007717147097833729 + 0.008862608324556256 + 0.01002250580164126 + 0.0110057687256299 + 0.01160903038148409 + 0.01167720689812176 + 0.01116956683076751 + 0.01020600841448124 + 0.009057341239670915 + 0.008063221061932859 + 0.007500288510255465 + 0.007450821343820259 + 0.007735119247122765 + 0.007991446263872094 + 0.00801021083874829 + 0.008393034848130252 + 0.01145584474466687 + 0.04943458001352013 + 0.02267896287040539 + 0.01090299039752832 + 0.006695670031704144 + 0.005461193045488449 + 0.00497289217485484 + 0.004511815639811246 + 0.004036242105113035 + 0.003649060465255872 + 0.003395118456738888 + 0.003264464389789213 + 0.003249299155825046 + 0.003364874113292563 + 0.003625558800894759 + 0.004013918935277352 + 0.004479178202741439 + 0.004969335789280129 + 0.005469570005801524 + 0.006013979897289842 + 0.006660782688466536 + 0.007449633515323047 + 0.008367108241805046 + 0.009331398798667307 + 0.01019435621942134 + 0.0107646596517392 + 0.01086393263838666 + 0.01041114904999706 + 0.009494976113352573 + 0.008378772241296621 + 0.00741473042108104 + 0.006898304324951611 + 0.006927937116198906 + 0.007341335461907268 + 0.007808276065053253 + 0.008175615146093879 + 0.009125458179479035 + 0.01306249128592343 + 0.0510078491869216 + 0.02344513834033071 + 0.01119330017989415 + 0.006696922297904931 + 0.005280065147817252 + 0.004693604105222215 + 0.004220462534255788 + 0.003813614927745663 + 0.003552996970870207 + 0.003451958517048126 + 0.003473437957168547 + 0.003590749287318252 + 0.003804290405491888 + 0.004115472382005795 + 0.004500428652078082 + 0.004912559761121437 + 0.005308255572812889 + 0.005670683973610273 + 0.006014674303253784 + 0.006376191909235791 + 0.006798513470233778 + 0.007316759903130709 + 0.007931567085614079 + 0.008573979592101346 + 0.009091096444277243 + 0.009289387220495063 + 0.009035264892316477 + 0.008356145155397973 + 0.007466857791379637 + 0.006690527430157155 + 0.006311492928514628 + 0.006435177634197145 + 0.006929758666913735 + 0.007525627717879971 + 0.008161654927391031 + 0.009634524851526043 + 0.01446573623791995 + 0.0542370903111515 + 0.02520295219056497 + 0.01207610308734276 + 0.007101239888666716 + 0.005456891047191397 + 0.004797546990137605 + 0.004340610322900238 + 0.003993007821761112 + 0.0038071425148795 + 0.003786665095088 + 0.003893121440806321 + 0.004092167661900858 + 0.004364275599918453 + 0.004689230668246131 + 0.005037788919200679 + 0.005379500743794098 + 0.005690604063148362 + 0.005950189814858734 + 0.006135494328939836 + 0.006235511415278486 + 0.006280413777188913 + 0.006353685650539368 + 0.006553329931652 + 0.006911730057440829 + 0.007335390961564945 + 0.007629457160895795 + 0.007610368276163276 + 0.007233272663561907 + 0.006641327259043634 + 0.006100557871944971 + 0.005862153372041014 + 0.006030841660041628 + 0.006512471815013887 + 0.007113172247181314 + 0.007878230566406529 + 0.009728293547212195 + 0.01530744689467259 + 0.05927380681121339 + 0.02808464482954078 + 0.01365371440024877 + 0.007963431609066608 + 0.005988039398325045 + 0.005223257757395271 + 0.004763376925529885 + 0.004433443064528561 + 0.004253369626571932 + 0.004234566832527683 + 0.0043571967207396 + 0.00458677288248056 + 0.004879771637101776 + 0.005191668105867801 + 0.005497153965525406 + 0.005800525287794884 + 0.006111925231263134 + 0.006403147283093484 + 0.006591944699652855 + 0.006589521487295985 + 0.006385510431964132 + 0.006094690377168871 + 0.005906368968950409 + 0.005957503377757948 + 0.006225308234170869 + 0.00653091349445592 + 0.006658826873422711 + 0.006503466823838735 + 0.006137205451760678 + 0.00576193929575403 + 0.005588225043046224 + 0.005717562167752151 + 0.006094120546719761 + 0.006596281544683323 + 0.007362212538372568 + 0.009414366244564173 + 0.01549745677037832 + 0.06601065252654907 + 0.03205247954212438 + 0.0159323336938261 + 0.009297305629182177 + 0.006864271186140832 + 0.005922867442126623 + 0.005402839643503668 + 0.005022198623930936 + 0.004765993897507916 + 0.004667199003472355 + 0.004739465605282839 + 0.004953567416923574 + 0.005240082214811384 + 0.005531255090433645 + 0.005816176462692845 + 0.006149084769110471 + 0.00658247753563658 + 0.007074585299601763 + 0.007464133394928239 + 0.007559272965036533 + 0.007284471462368503 + 0.006763801928922473 + 0.006259315664729555 + 0.006001207657223133 + 0.006039091344424785 + 0.006226993191526372 + 0.00634428350083522 + 0.006251156934666303 + 0.005967611670703967 + 0.005640899692354367 + 0.005445184588465897 + 0.005479241041860428 + 0.005717949122238065 + 0.006089294995129083 + 0.006784611679128034 + 0.008878969325390562 + 0.01517423219931482 + 0.07392006118678741 + 0.03675365928336197 + 0.01870401125928144 + 0.01099293687262887 + 0.008025295497600804 + 0.006849042577476001 + 0.006205817260431535 + 0.005696983965616676 + 0.005278405380290347 + 0.005019589900975819 + 0.004981501379646961 + 0.00514636473571564 + 0.005419207767120423 + 0.005709389210078897 + 0.006023056085220863 + 0.006465754208004047 + 0.007127783309434766 + 0.007943622025578774 + 0.008662090782581058 + 0.008980288131216246 + 0.008750089728689153 + 0.008092667197251787 + 0.007324916092719111 + 0.006753871116073752 + 0.006497291920847036 + 0.006455146739196421 + 0.006427232384974152 + 0.006267032076936856 + 0.005963418979991478 + 0.005622168749636404 + 0.005387429582012365 + 0.005353219392149972 + 0.005508550089160911 + 0.005794270442525109 + 0.006399942041139316 + 0.008392254449147447 + 0.01458133241683781 + 0.08203149987639637 + 0.04146917962798661 + 0.02147857852929725 + 0.01274540469047555 + 0.00929679853332202 + 0.007906899692837026 + 0.007120182751523702 + 0.006428730295452692 + 0.005777031195724906 + 0.005291799115421303 + 0.005097643399163954 + 0.005196927241439113 + 0.005470976836455134 + 0.005802753288955101 + 0.00620615591998389 + 0.006822590655300157 + 0.007762569860595981 + 0.008925751080129905 + 0.009973625211870063 + 0.01050662008346326 + 0.01031900018783025 + 0.009532651234539204 + 0.008509104657047234 + 0.007617416946030697 + 0.007036894859985956 + 0.006720929335445399 + 0.006506744567856951 + 0.00625836585620023 + 0.005945094305457621 + 0.005636742101699865 + 0.005447722971283395 + 0.005459246771972162 + 0.005651680994541334 + 0.005937699868370674 + 0.00645089813561473 + 0.008195999137569096 + 0.01395521147094875 + 0.08915824252638868 + 0.04526261577290991 + 0.02356206149502654 + 0.01407820178415053 + 0.01037749787072711 + 0.008922159045091763 + 0.008057416515498871 + 0.007186728834120922 + 0.006272491593708462 + 0.005525365998338631 + 0.005152220445910362 + 0.005185407743639839 + 0.005484335444393603 + 0.005898300117267538 + 0.00643137504347813 + 0.007236335261010709 + 0.008423183303994188 + 0.009852981322086561 + 0.01111869563742586 + 0.01175710876779543 + 0.01153418832711133 + 0.01058350023627815 + 0.009302969180341883 + 0.008108114313537794 + 0.007230526278883205 + 0.006678814263728431 + 0.006335265443599317 + 0.006080130291385616 + 0.005863744206835047 + 0.005717172474948082 + 0.005719965163587665 + 0.005929621570730148 + 0.006295784725623507 + 0.006668639045493766 + 0.007086259361918866 + 0.008459212946455123 + 0.01352896228308928 + 0.09438655172231163 + 0.04735686334149833 + 0.02432060950593426 + 0.01450564276946954 + 0.01091969820158277 + 0.009662710947817683 + 0.008876384445107046 + 0.007901172249675049 + 0.006751874629676002 + 0.005751019947460425 + 0.0052039078101241 + 0.005179257869272936 + 0.005513450162808976 + 0.006012932437738029 + 0.006654622654609999 + 0.007583447584461783 + 0.008900747856547748 + 0.01044338179755177 + 0.01177203581761919 + 0.01240221354005575 + 0.01209873953931519 + 0.01100681564964492 + 0.009538816841621695 + 0.008129815589021377 + 0.007046741528426013 + 0.006349912364293747 + 0.005970323417656845 + 0.00580802866514133 + 0.005795926721163693 + 0.005927512455246613 + 0.006248166655553415 + 0.006787826067996817 + 0.007452909056627979 + 0.008011331947791866 + 0.008386523686101962 + 0.009386343295314854 + 0.01371951152957722 + 0.09771116395235133 + 0.04765672388582774 + 0.0235811774128563 + 0.01381472748082607 + 0.0107064617499485 + 0.009931874013327308 + 0.009414847930755928 + 0.008452617012389379 + 0.007141921372772771 + 0.005937832035995567 + 0.005250676183169324 + 0.005182322089086273 + 0.005538242844307713 + 0.006071659357805624 + 0.006722140187504113 + 0.00762463958057527 + 0.008888700097004284 + 0.01036715990184705 + 0.01164123513383583 + 0.01224734877274268 + 0.0119589690133625 + 0.01090495045050172 + 0.009461050775150998 + 0.008031828083616754 + 0.006888393717789492 + 0.006134291395405079 + 0.005756951518183359 + 0.005692659321593347 + 0.005878364592272554 + 0.006294556129189379 + 0.006975706262907198 + 0.007939748840047819 + 0.009054264924501627 + 0.01000149817898698 + 0.0105874839605943 + 0.01152257047898341 + 0.01549687778874367 + 0.1006138007116633 + 0.04726075811112889 + 0.02206303570389979 + 0.01241065510574612 + 0.009915184850846073 + 0.009761488908598053 + 0.009626747614288646 + 0.008767879861740463 + 0.007376480006948367 + 0.00604460645383866 + 0.005278688312255507 + 0.005197002550547466 + 0.005556938251937924 + 0.006046071463481417 + 0.006564629711396323 + 0.007254579062081713 + 0.008276386946933384 + 0.009562610574975946 + 0.01077879355377747 + 0.011516887076216 + 0.01154408757711397 + 0.01091065215375996 + 0.009869966865226003 + 0.008717886555402402 + 0.007681153652180253 + 0.006894101300044543 + 0.006419693353028261 + 0.006273310617220518 + 0.006454902896380415 + 0.006997695815749045 + 0.007985882391761338 + 0.009470048213493973 + 0.01130359565883183 + 0.01309247709148088 + 0.01452829938826438 + 0.01622604099905441 + 0.02085675066863793 + 0.106386182499603 + 0.04880947965401917 + 0.02173927726908893 + 0.01167955336854369 + 0.009473481037628925 + 0.009757471550109266 + 0.009916648911461134 + 0.009143214268759902 + 0.007708377170435239 + 0.006322106376449687 + 0.005560901563264779 + 0.005531601216035581 + 0.00592044639811358 + 0.006336480583031497 + 0.006644385796894164 + 0.007021608647583384 + 0.007735566155405291 + 0.008870704378397539 + 0.01023804046004814 + 0.011503851141171 + 0.01238822746813733 + 0.01277043903319556 + 0.01266691510694201 + 0.01216310479437806 + 0.0113783298366605 + 0.01046432955399797 + 0.009595440727605774 + 0.008943973274943465 + 0.008679867700846357 + 0.009006494878088973 + 0.01016412649772883 + 0.01231451096611836 + 0.01534185921614515 + 0.01879247835868808 + 0.02224082612179302 + 0.02618913054600986 + 0.03325479373857916 + 0.1200873815771244 + 0.05658344378589496 + 0.02607063006878788 + 0.01434219031248206 + 0.01151241942546045 + 0.01163146096299211 + 0.01172917131537254 + 0.01087130124602566 + 0.009354431329821025 + 0.007958941764984885 + 0.007292122544325159 + 0.007421423051659485 + 0.007946487710929546 + 0.008394705305178845 + 0.008606685522940673 + 0.008826139769028041 + 0.009477533233888197 + 0.01085344392165657 + 0.01294655248934789 + 0.01548647230910608 + 0.01807628060553115 + 0.02030736717414073 + 0.02182554026110168 + 0.02239014285960761 + 0.02194277779315963 + 0.02064350431899792 + 0.01883494319784666 + 0.01696320291426398 + 0.01552699138534391 + 0.01507202931433776 + 0.0161490907721821 + 0.01914473217142594 + 0.02403880096710586 + 0.03033854363279518 + 0.03748585540322764 + 0.04582265764189312 + 0.05783084617039624 + 0.1481401351999965 + 0.0763382020475664 + 0.04008135775682539 + 0.02475264506571483 + 0.0198569292436022 + 0.01884604928960798 + 0.01831093563851978 + 0.01708272107749276 + 0.01538075905504107 + 0.01397712619114013 + 0.01346506885174782 + 0.01386234259050113 + 0.01469749505721309 + 0.01544484612197728 + 0.01595340577636139 + 0.01656605081345399 + 0.0178942866383421 + 0.02045541369849237 + 0.02440922772728198 + 0.02948724831788713 + 0.03506496854932781 + 0.04030184934978381 + 0.04432378543967221 + 0.04644055097598735 + 0.04634509820808401 + 0.04420662735267131 + 0.04061780437556086 + 0.03645594844923684 + 0.03275856973959267 + 0.03063923871034734 + 0.03116064410166278 + 0.03508311350277401 + 0.04256795281077126 + 0.05310879426488702 + 0.06598623892586791 + 0.08130130448592023 + 0.1012663999854319 + + +# name: Varft_map +# type: matrix +# rows: 1369 +# columns: 1 + 0.2149890849564859 + 0.1357001974518846 + 0.08909136443433852 + 0.06622149476942418 + 0.0582719282401607 + 0.0576956872343839 + 0.05894226679888437 + 0.05873383351495587 + 0.05593916964999934 + 0.05112933834451683 + 0.04592009596915458 + 0.0422247788636354 + 0.04155781489249444 + 0.04452952592817638 + 0.05064152913248243 + 0.05842418536405347 + 0.06586686310399159 + 0.07100667194195553 + 0.07249320406129467 + 0.06995655569277703 + 0.06407400122669094 + 0.05633505541851491 + 0.04860692359660712 + 0.04266188208375388 + 0.03981972585938731 + 0.04078632862197784 + 0.04566941450006379 + 0.05407771555188656 + 0.06520271098613151 + 0.07784994878911355 + 0.09049111012665945 + 0.1014813291627772 + 0.1095692319261188 + 0.1147046096510556 + 0.1189656332776425 + 0.1272722455131166 + 0.1475135158087006 + 0.164167643154125 + 0.09388585977501673 + 0.05365076656512668 + 0.03456640091909824 + 0.02837808176558188 + 0.02838542436203761 + 0.02989013314807076 + 0.03023873088289264 + 0.0285667040242088 + 0.0253484512326505 + 0.02183951966022768 + 0.01949062821123659 + 0.01942130492418004 + 0.02204797568352124 + 0.02694499038059606 + 0.03296769781434827 + 0.03859523234937479 + 0.04238350743691699 + 0.04338403250995571 + 0.04139765826104291 + 0.03699135762963657 + 0.03128999903894725 + 0.02563265750179466 + 0.02122384046285974 + 0.01889638499493929 + 0.01903948277429102 + 0.02166141365181895 + 0.02649540394843131 + 0.03305520663626282 + 0.04061216849684302 + 0.04816602685354621 + 0.05455767093690334 + 0.05886613292499909 + 0.06112355421171589 + 0.06320566293128493 + 0.06959120810346731 + 0.08761988750562821 + 0.130172006918114 + 0.06864955122259264 + 0.0343315020900139 + 0.01848855268527139 + 0.01352335691834128 + 0.01363335649177744 + 0.01498300695127863 + 0.01552720341062441 + 0.01464553808186508 + 0.01270385127949902 + 0.01060467506601359 + 0.00935973538564161 + 0.009722459937395733 + 0.01193495806200628 + 0.01564313178253274 + 0.02000098826545171 + 0.02393017105005368 + 0.02644878832383935 + 0.02696015896317716 + 0.02540852650881575 + 0.02225857624078076 + 0.01831928174711939 + 0.01448651432833836 + 0.01150298034671193 + 0.009818303941857121 + 0.009580970328621152 + 0.01072822180318145 + 0.01309194111347756 + 0.01643780027279318 + 0.02041108285821736 + 0.02445337813136739 + 0.02783042577982409 + 0.02991916100387471 + 0.03081470306334833 + 0.03215726487723991 + 0.03791211727650845 + 0.05474725633782063 + 0.1068001547061064 + 0.05347460929052961 + 0.02453508993858655 + 0.01148896234741281 + 0.007414551103964939 + 0.007379139952797154 + 0.008355730399982164 + 0.008854140780778064 + 0.008469261237157522 + 0.007466688872848515 + 0.006438737203122269 + 0.006019533320340109 + 0.00665361506808404 + 0.008440317196522162 + 0.01108988329177141 + 0.01400819021249911 + 0.01648430283366098 + 0.01791496100830514 + 0.01798611794869265 + 0.01675070603020279 + 0.01458335357056706 + 0.01203807819356939 + 0.009667389992743747 + 0.007871083819467994 + 0.006827589908098286 + 0.00652392103642141 + 0.00685378482107657 + 0.007717381993435524 + 0.009053319951843442 + 0.010775188016797 + 0.01266165115787077 + 0.01432262302450171 + 0.01538691543256787 + 0.01599564220197047 + 0.017547048375262 + 0.02347438700010818 + 0.03972725931220644 + 0.08955913561381212 + 0.04366247189853345 + 0.01954278450193847 + 0.008965924098566447 + 0.005640319407404615 + 0.005412186591802648 + 0.005961380427961238 + 0.006275378117655439 + 0.006135859472100158 + 0.005734713159627702 + 0.005423204024777029 + 0.005544013879162257 + 0.006306150830324153 + 0.007702323017808155 + 0.009493935921772501 + 0.01127914037091049 + 0.01262463315311635 + 0.01321018308492627 + 0.0129286506056534 + 0.01190617914714487 + 0.01044237902431 + 0.008900003331273609 + 0.007587424523853858 + 0.006675153377353471 + 0.006174055916436494 + 0.005980897193761603 + 0.005969156829871203 + 0.006077763371214129 + 0.006342799681541944 + 0.006842435655491474 + 0.007584146722857454 + 0.008432464469132483 + 0.009213198624278274 + 0.01009733111448918 + 0.01225539270193776 + 0.01861631737271452 + 0.03443384337532684 + 0.07581703766016457 + 0.03643318945805385 + 0.01655433837274112 + 0.008190233883682119 + 0.005589296891802764 + 0.005245200849647969 + 0.00541539185621609 + 0.005476628753284807 + 0.005371962177495249 + 0.005257360081960538 + 0.005324750270103706 + 0.005720258187995597 + 0.006493650318183608 + 0.007565185245892003 + 0.008730005281270437 + 0.009715316668278628 + 0.0102747074673375 + 0.01027768703437681 + 0.009752850715449402 + 0.008868434052953234 + 0.007865015582162016 + 0.006972428215265669 + 0.006341327843878197 + 0.006007959056261392 + 0.005899344868185885 + 0.005877991114793701 + 0.005814831476862015 + 0.0056633598030289 + 0.005495050731609386 + 0.005463832805886693 + 0.005707611191779094 + 0.006257870136922694 + 0.007079286112742 + 0.008356291984546793 + 0.01105856087076917 + 0.01767081164069673 + 0.03282550050219246 + 0.06450000923226185 + 0.03058284839436309 + 0.01430773210686276 + 0.007893639928435281 + 0.006016866525084819 + 0.00566978935620277 + 0.005549012236993445 + 0.005330444608045326 + 0.005095016484692128 + 0.005001629183420508 + 0.005161772140984233 + 0.005613039248054896 + 0.006313812881508785 + 0.007139805343380878 + 0.007901503405738808 + 0.008397531782326162 + 0.008488699018796897 + 0.008154614464447096 + 0.007500786746724053 + 0.006713566370674773 + 0.005989309024528211 + 0.005472266083255573 + 0.005221794942166458 + 0.005209456816286817 + 0.005337171199098378 + 0.005471349965505912 + 0.005492613872959851 + 0.0053532994332679 + 0.005117374271397246 + 0.004948877144927089 + 0.005037403009357178 + 0.005504987897925862 + 0.006400128704652008 + 0.007904442179634152 + 0.01081859722292711 + 0.01725942916109524 + 0.03134162081721747 + 0.05552397652139929 + 0.02590604665012508 + 0.01250179101341109 + 0.00770063249639108 + 0.006493202550672095 + 0.006224403528932942 + 0.005896562868549005 + 0.005398305486386423 + 0.004923278106048645 + 0.004662849355930199 + 0.004710886551046567 + 0.005065653816841209 + 0.005646140213853901 + 0.006303665994059848 + 0.006848703977551995 + 0.00710674814825607 + 0.006985583370386017 + 0.006515695670289645 + 0.005836723676359679 + 0.005136703530787212 + 0.004579493740890062 + 0.004257472860717204 + 0.004183244966716071 + 0.004307452452938509 + 0.004541565182715424 + 0.004777593431849247 + 0.004913661072657671 + 0.004894289508544425 + 0.004753227670792892 + 0.00462474959167869 + 0.004696001346939926 + 0.005121172779081196 + 0.005986856999498524 + 0.007457989363670592 + 0.01019789820029571 + 0.01603354794484302 + 0.02867109859827499 + 0.04918066926118492 + 0.02260586731220027 + 0.01124134780168839 + 0.007615490853743356 + 0.006933139552073975 + 0.006761957755763603 + 0.006290718526203332 + 0.005540658832825951 + 0.004787853378707574 + 0.004269062102204124 + 0.004099193972075366 + 0.004281420951012915 + 0.00472879260101644 + 0.005281551803447471 + 0.005741257951860756 + 0.00593309592075375 + 0.005774550427751102 + 0.005309963229635617 + 0.004686252932032176 + 0.004083009420678518 + 0.00363915606571652 + 0.003415696366784626 + 0.003403785746233901 + 0.003555607402737415 + 0.003807787877063262 + 0.004086895690250003 + 0.004313005510519829 + 0.004423419022668629 + 0.004415765569364627 + 0.004377727333157555 + 0.00446437569440894 + 0.004824752756445783 + 0.005551885988242855 + 0.00678568138721003 + 0.009081351145956429 + 0.01404553007924969 + 0.02507279106035387 + 0.04565589888692401 + 0.02085589262415688 + 0.01065194685499904 + 0.00769185284784335 + 0.007315435312970298 + 0.007207125197798092 + 0.006641970022896793 + 0.005701765300608841 + 0.004708751566244729 + 0.003939558088750683 + 0.003543422816164821 + 0.003547972651141595 + 0.003876899894971864 + 0.004368033126918025 + 0.004813183481378935 + 0.005027630383511283 + 0.004922858276470876 + 0.004539690599484558 + 0.004018620562469266 + 0.003525103219005565 + 0.003176698751435225 + 0.00301319034397407 + 0.003015814612830514 + 0.003146472654808274 + 0.003370249073778808 + 0.003648883619787657 + 0.003926010264113433 + 0.004136040065799929 + 0.004245174601126056 + 0.004294220987990371 + 0.004396689948572341 + 0.004679281040272709 + 0.005225644689395459 + 0.006150102020181514 + 0.007926336508036869 + 0.01199683777049909 + 0.02151932877988028 + 0.04477259676669965 + 0.02058343221023451 + 0.01070866151507044 + 0.007906046937845801 + 0.007592938985089948 + 0.00749040007786439 + 0.006880995694548364 + 0.005845454768667047 + 0.004712896842377301 + 0.003779935594621087 + 0.003223288030093752 + 0.003095499735493057 + 0.003335221303672586 + 0.003784122075796592 + 0.004230657134058458 + 0.004484522216946285 + 0.004451720537860027 + 0.004166363484654934 + 0.003757903219130387 + 0.003374850917026606 + 0.003114383441413793 + 0.002999079200983523 + 0.003004272682869846 + 0.003102520864072034 + 0.003284548677400689 + 0.003543205825075724 + 0.003844446119561695 + 0.004123959654943832 + 0.004324980493892738 + 0.004449782781538847 + 0.004573992189158549 + 0.004800263927456694 + 0.005200938527361032 + 0.005871805757785342 + 0.00722916441601118 + 0.01059362807607123 + 0.01893712900530931 + 0.0459597479764744 + 0.02145224415902103 + 0.01123594268327732 + 0.008173429733536075 + 0.007720602337430993 + 0.007579774036963194 + 0.006984740426688951 + 0.005967430792813477 + 0.004827600590975756 + 0.003855926470062609 + 0.003239013619388054 + 0.003044275735330171 + 0.003223081970188169 + 0.003626249269035764 + 0.004049530100252774 + 0.004309030477393616 + 0.004314515448708089 + 0.004097795137634641 + 0.003777699112667232 + 0.003484988621218932 + 0.003296901454517887 + 0.003220839075210424 + 0.003227914339263727 + 0.003300179039007922 + 0.003449202127820516 + 0.003692523791642977 + 0.004014218558553218 + 0.004352492027946298 + 0.004634667136364179 + 0.004834642105561393 + 0.004999627557872977 + 0.005215218582152126 + 0.005549045392633012 + 0.006089730795908022 + 0.007216989486155789 + 0.01015967610908897 + 0.01773599843962836 + 0.04838250479934825 + 0.02296767621107865 + 0.01199192066025923 + 0.008415542008683996 + 0.007707985058672762 + 0.007519864217835792 + 0.007002803550119729 + 0.006109751421419674 + 0.005084823279309258 + 0.00419017470994465 + 0.00360408647180277 + 0.003396911829728566 + 0.003529049204797019 + 0.003865277254651467 + 0.004219617594568348 + 0.004427448614441776 + 0.004412830882512875 + 0.004211323320115312 + 0.0039333558892789 + 0.003692803081581264 + 0.003548690107653574 + 0.003496115465536409 + 0.003504168835334553 + 0.003563456369687135 + 0.003701270696048642 + 0.003952103881491809 + 0.004311366016924723 + 0.004717499252818946 + 0.005085570602737288 + 0.005369273789696205 + 0.005597035992278343 + 0.005846135279130582 + 0.006187545586302079 + 0.006712760601570888 + 0.007779883050256675 + 0.01054604720649666 + 0.01769611788090097 + 0.05114276618220703 + 0.02461703731867404 + 0.01275580724950576 + 0.008604440183556328 + 0.007631559515989483 + 0.007423204396616256 + 0.007037875274910288 + 0.006339113953927278 + 0.005504044051808599 + 0.004754030472779114 + 0.004247697243951798 + 0.004050723674015266 + 0.004130728147993423 + 0.004370526470062419 + 0.004610266908914529 + 0.004713032489478852 + 0.004623564560323423 + 0.004384747480140394 + 0.004100559472790088 + 0.003870281413588916 + 0.003738504183126157 + 0.00369255871234353 + 0.003702490645142831 + 0.0037664641333226 + 0.003921753242324133 + 0.004211059668778105 + 0.004632977946696482 + 0.005122172946178782 + 0.005583106935520554 + 0.005955293809263296 + 0.006255598648779337 + 0.006558472988870356 + 0.006941310116216126 + 0.007501222940968333 + 0.008580579100680108 + 0.0112760171830586 + 0.01815433667082678 + 0.05346928286149 + 0.02598221786110644 + 0.01337374904643918 + 0.008756595000928069 + 0.007593520358920358 + 0.007410982858393478 + 0.007183906876289559 + 0.00669503203594779 + 0.006058973911895027 + 0.00545662589618745 + 0.005025327450321804 + 0.004825156212926451 + 0.004832140885662195 + 0.004950029251959975 + 0.00504808052757566 + 0.005018654115066301 + 0.004827054947376563 + 0.004522857373732592 + 0.004204267089267688 + 0.003959161751250662 + 0.00382294890966417 + 0.003780338445430242 + 0.003804506003776797 + 0.003898407262947323 + 0.004101835151753885 + 0.004456210698545071 + 0.00495573277777428 + 0.005528806563595001 + 0.006072525618527003 + 0.006518700006837186 + 0.006877976875692138 + 0.007222362349667666 + 0.007630180889923288 + 0.008195789446311164 + 0.009240290522460892 + 0.01180282455134751 + 0.01834619812655269 + 0.05484632911052056 + 0.02679851063822225 + 0.01376016350473286 + 0.008892502909138678 + 0.007656819511481228 + 0.00754020244245579 + 0.007460051915317845 + 0.007141814178939665 + 0.006654386952806846 + 0.006148392030380645 + 0.005745994597325943 + 0.005506064443004721 + 0.005416409879168693 + 0.005403158661914098 + 0.005363053563415487 + 0.005213071012746706 + 0.004933157275181621 + 0.004575139549023888 + 0.004230695188619293 + 0.003979509633698974 + 0.003852999687688374 + 0.003837059448521085 + 0.003907368542367173 + 0.004065575412760314 + 0.004344167371527874 + 0.004773692823399234 + 0.005338973576961781 + 0.005964331876038287 + 0.006547918530035002 + 0.007024079511992909 + 0.007403107925659569 + 0.00775110051889083 + 0.008133663395627266 + 0.008623038909622682 + 0.009502589254166249 + 0.01174971070922082 + 0.01773719883826175 + 0.05506319691101025 + 0.02696360026292011 + 0.01387706960711022 + 0.008998240880891295 + 0.00780051995644726 + 0.007763102930865351 + 0.007782404382493446 + 0.007558284655202474 + 0.007136469904102327 + 0.006651433508524818 + 0.006218968510345757 + 0.005902715015197124 + 0.005705817012603198 + 0.005576767684489781 + 0.005435289609439842 + 0.005214833742695824 + 0.004900989503143993 + 0.004541380547227636 + 0.004219337816226076 + 0.004008687923235943 + 0.003940420452157145 + 0.004002572780900326 + 0.004169021959809172 + 0.004430632096855458 + 0.00480107089019377 + 0.005291424568260261 + 0.005876016877843782 + 0.006483211479005657 + 0.007027206749625758 + 0.007460571082247291 + 0.007801919166010585 + 0.008107274562893174 + 0.008411731885537677 + 0.008739598576514851 + 0.009313262043233017 + 0.01103949692064843 + 0.01621464822144825 + 0.05419231391310886 + 0.02651463065185533 + 0.013716368436826 + 0.009017443956081728 + 0.007923893056998033 + 0.007943959848606408 + 0.007992737912312808 + 0.007776866819731776 + 0.007340145347142002 + 0.006812590012251096 + 0.006309667668147334 + 0.005903247211089813 + 0.005613365893033961 + 0.00540949140014968 + 0.005229080282912246 + 0.005013741235018188 + 0.004745892820221087 + 0.004462646720154506 + 0.004236779827545778 + 0.00413727198445768 + 0.004195956968438885 + 0.004401153449465678 + 0.004718098440431362 + 0.005116041991852338 + 0.005578739370553532 + 0.006091495137839242 + 0.006620702173544935 + 0.007111284330747925 + 0.007512877914648275 + 0.00781588194290439 + 0.008059130253712077 + 0.008286895794731297 + 0.008487765124866709 + 0.008613464858646225 + 0.00880279817755536 + 0.009883165197625221 + 0.01408758694833079 + 0.05251859077113874 + 0.02559131944936688 + 0.0132966861768069 + 0.008878160691846659 + 0.007896682553496959 + 0.007924519928554474 + 0.007930661580530796 + 0.007655059380627716 + 0.007154379853485882 + 0.006559326248621655 + 0.005984927736543799 + 0.00550958366105947 + 0.005168296582327869 + 0.004948777658350778 + 0.004801757402452367 + 0.004670952218281954 + 0.004529434458716342 + 0.004399354818152013 + 0.004341110652385183 + 0.004418827460346719 + 0.004664850231732576 + 0.005064893166807583 + 0.005569207580468749 + 0.006116827424921478 + 0.006653831097017004 + 0.007136652850197933 + 0.007528296799045986 + 0.007802994321441492 + 0.007964210700185159 + 0.008058951286530114 + 0.008159200408443201 + 0.008299938983156618 + 0.008414626698672656 + 0.008367194163263481 + 0.008199471404947367 + 0.008657027311198107 + 0.01192364611791596 + 0.05044831498726277 + 0.02439726579473733 + 0.01267086933342609 + 0.008536576707675714 + 0.007626870730409685 + 0.007603057310832106 + 0.007512224718286387 + 0.007144163636132461 + 0.006574799403601617 + 0.005933527942007633 + 0.005328535352582264 + 0.004837711077324336 + 0.00450538515370269 + 0.004333464136519805 + 0.004282762055488831 + 0.004296193590304309 + 0.004334915441106979 + 0.004404325225809025 + 0.004551655013061762 + 0.0048360510148866 + 0.005290115403635998 + 0.005895836085111572 + 0.006586306579837942 + 0.007267717342394509 + 0.007846622139023207 + 0.008250992372211829 + 0.00844429743694608 + 0.00843775171738459 + 0.008299317222585589 + 0.008144223814944951 + 0.008087512555829068 + 0.008160958070157154 + 0.008244921448969045 + 0.008115835082434852 + 0.007721390101263381 + 0.007734862962172961 + 0.01030841322074627 + 0.04842457422086754 + 0.02316654315032807 + 0.01193295961428698 + 0.008011678444018511 + 0.007110137575294218 + 0.006986857769096133 + 0.006775681926391552 + 0.00632118472027976 + 0.005717524371295024 + 0.00508613176980699 + 0.004518397154420484 + 0.004081442760403675 + 0.003820717133525608 + 0.003747208081207098 + 0.003829592817313543 + 0.004009721125016519 + 0.004237448876905248 + 0.004502130965404749 + 0.00483838182286167 + 0.005301049021598558 + 0.005924479069407962 + 0.006689894789853934 + 0.007517845247327237 + 0.008287300492950678 + 0.008870551395922188 + 0.009170489895630407 + 0.009151710050472772 + 0.008860753552847989 + 0.008427748349081998 + 0.008035383891317416 + 0.0078445567270502 + 0.007891397762525454 + 0.008015865412181356 + 0.007924526257345743 + 0.007492798961615588 + 0.007346074176282524 + 0.009628296448088491 + 0.04686833852902028 + 0.02213978287893781 + 0.01121630129118367 + 0.007393337614048701 + 0.00643828317480466 + 0.00619425955216979 + 0.005873103239375954 + 0.005368045081480588 + 0.004785586411563347 + 0.004231666126637279 + 0.003771411403623137 + 0.003451072341978723 + 0.003308566587904238 + 0.00335852501354772 + 0.003575828297417871 + 0.00390256943433398 + 0.004279913306162175 + 0.004683525170968483 + 0.005136973633693032 + 0.005692501380023529 + 0.006389917910108345 + 0.007217179443771204 + 0.008093833443936216 + 0.008885200596801646 + 0.009440953003854169 + 0.009644239306183078 + 0.009457065510435125 + 0.008949051515297679 + 0.008295773886198621 + 0.007732590714009557 + 0.007459898237738294 + 0.007524688625748066 + 0.007746921032812715 + 0.007795141513193826 + 0.007510604333443194 + 0.007508330113139117 + 0.00995334704864792 + 0.04615047586278731 + 0.02155066136912431 + 0.01068172554311397 + 0.006822814951936707 + 0.005767142069835085 + 0.005409252385671692 + 0.005013839884739468 + 0.004507394450214974 + 0.004000542570151477 + 0.003578470550802848 + 0.003274471038245963 + 0.003107149803222242 + 0.003100210712709828 + 0.003267420925014974 + 0.003588818044452768 + 0.004008762973826574 + 0.004463067789766129 + 0.004916471741350126 + 0.005383072273165812 + 0.005914238775672764 + 0.006559884385252346 + 0.007324760726947321 + 0.008143237486649024 + 0.008885615925783963 + 0.009394625375167998 + 0.009539971285879467 + 0.009273849357326114 + 0.008668695479610911 + 0.007917903066586796 + 0.007283724570767536 + 0.006991746972841995 + 0.007103605211860042 + 0.007442588331880717 + 0.007678091546645227 + 0.007663538138346304 + 0.008047470673891777 + 0.01104787929294249 + 0.04658349772475878 + 0.02161789378439138 + 0.01049926474036278 + 0.006457925796819364 + 0.005263930335028366 + 0.004814105292298088 + 0.004388268479907254 + 0.003924058475158532 + 0.003527300489885921 + 0.003260739627350961 + 0.003125668183871166 + 0.003111440431346146 + 0.003224685749953604 + 0.00347612539343567 + 0.003851087459721736 + 0.004298631875580217 + 0.004752325281693448 + 0.005167835983606928 + 0.005549793462266805 + 0.005948453974732981 + 0.006426617058167938 + 0.007014713046568311 + 0.007677590176972338 + 0.008309889857140096 + 0.008764123431238779 + 0.008903384031778927 + 0.008662100839002651 + 0.008092950011828748 + 0.00737589902751612 + 0.006770174744178181 + 0.00650843691022418 + 0.006667793345191964 + 0.007095975496582252 + 0.007499926836739945 + 0.007788672120819129 + 0.008684348188356061 + 0.01248596045222961 + 0.04840986392777458 + 0.02253138843824365 + 0.01082551144511701 + 0.006437991970814405 + 0.005059792203713886 + 0.004532757418726607 + 0.004107398197259915 + 0.003706871116009314 + 0.003423430649579284 + 0.003298876759984193 + 0.003307230470055433 + 0.003412192103834144 + 0.003604917633972526 + 0.003894067040392635 + 0.004272123749304857 + 0.004695644523670772 + 0.005098168168705008 + 0.005426072005062732 + 0.005671322402796886 + 0.005878639721816015 + 0.006121627795040219 + 0.006460241810474443 + 0.006900941122797821 + 0.007378804619631918 + 0.007771483302673854 + 0.00794314362876225 + 0.007805444034741704 + 0.007373150248773275 + 0.006786397190921445 + 0.006275363384093957 + 0.006063190256723416 + 0.006241186704852186 + 0.006696134308240786 + 0.007198386763983322 + 0.007742079355256504 + 0.009148567945900687 + 0.01381459527424145 + 0.05176420383244462 + 0.02441956590647676 + 0.01177448488460575 + 0.006856958004505032 + 0.005224614633907887 + 0.004607817834105354 + 0.004183575805726925 + 0.003835317007254258 + 0.003634124210253553 + 0.003604626513749487 + 0.003701582551044247 + 0.003870426999578402 + 0.00409205722555317 + 0.004376836689937935 + 0.004727765227920511 + 0.005111720153539334 + 0.005462999598716767 + 0.005715670720777943 + 0.005841735743887355 + 0.005870585856782462 + 0.005878063859765081 + 0.005950354221085252 + 0.006139752935258702 + 0.006432494758907836 + 0.006744302803440405 + 0.006949742386393343 + 0.0069387188346961 + 0.006679531491248003 + 0.006257271352831051 + 0.005857016838342499 + 0.005681477432052162 + 0.005833733854943013 + 0.006244980667983402 + 0.00675811349612232 + 0.007460330900147305 + 0.009275884334071893 + 0.014699043596758 + 0.05660336366726293 + 0.02729286879962922 + 0.01337871640887744 + 0.007743418937440349 + 0.005764887479561054 + 0.005013547990606604 + 0.00455541948050886 + 0.004213761249908909 + 0.004034052866953353 + 0.004029737526877408 + 0.004146182330412973 + 0.004319700953789418 + 0.004527649681923762 + 0.004786764416716771 + 0.005113937132203983 + 0.005488223155212246 + 0.005843599479812056 + 0.006096134424349309 + 0.006187072554792117 + 0.006116221444533831 + 0.005947571040942456 + 0.005783877762370881 + 0.00572108567207108 + 0.005802188070520131 + 0.00599173522346641 + 0.006186179135150738 + 0.006261742994701613 + 0.006142883576053748 + 0.005857549478069046 + 0.005541436959009438 + 0.005372738579331404 + 0.005462837402129495 + 0.005782483491568069 + 0.006237767563970209 + 0.006993397426543257 + 0.009056657347077834 + 0.0150012519465017 + 0.06262584581003106 + 0.03097588285243713 + 0.01554333372701544 + 0.009041525985677978 + 0.006631609804593097 + 0.005687190126498542 + 0.005136908152679087 + 0.004732342091798625 + 0.004495100093367288 + 0.004437009496335076 + 0.004505437698210546 + 0.004636680009574068 + 0.004810051075825328 + 0.005051287753030209 + 0.005392112886167144 + 0.005823273133417128 + 0.006275495988820268 + 0.006639929385569676 + 0.00681537892009576 + 0.006756703496178407 + 0.006500029772040339 + 0.006152058684279815 + 0.005846543162408402 + 0.00568553410382977 + 0.005691640464562386 + 0.005796288298271612 + 0.005875476353673914 + 0.005821133464726014 + 0.005612188791894734 + 0.005339662905147424 + 0.005157861835970223 + 0.005181061777055795 + 0.00540524952527166 + 0.005774506907880284 + 0.006496267627239316 + 0.008622638404720551 + 0.01477563107900881 + 0.06922832350004082 + 0.03506037688061925 + 0.01800816289732898 + 0.01059093837344571 + 0.007722062911383887 + 0.006551939288836461 + 0.005857576589254787 + 0.005318751091368146 + 0.004943951971100535 + 0.004758710344221928 + 0.004725971303940479 + 0.004789978835885833 + 0.004933815231362715 + 0.00518983981497767 + 0.005600725653453598 + 0.006165192318646984 + 0.006807018186838043 + 0.007387255611881915 + 0.007754088098189893 + 0.007806019032097655 + 0.007538389235127951 + 0.007050553905525003 + 0.006507701535331201 + 0.006071500960994847 + 0.00583010136945683 + 0.005762483465200141 + 0.005759408637616481 + 0.005695089171983803 + 0.005511979800445488 + 0.005264728766704696 + 0.00508529331578611 + 0.005082400961109901 + 0.0052559232665228 + 0.005552992744672913 + 0.006178861872228492 + 0.008184340691429703 + 0.01420497612579208 + 0.07555693762875437 + 0.03892358816421826 + 0.02034555147548289 + 0.01211600547876435 + 0.008869522430740684 + 0.007512680174035502 + 0.006666028633800725 + 0.005948212046348988 + 0.00537523710802823 + 0.00500867880097644 + 0.004843491466845595 + 0.004838229261336036 + 0.004976401591485047 + 0.005287900014137925 + 0.00581669972962251 + 0.006563182883118746 + 0.007442267100699507 + 0.008285686669301295 + 0.008891428363306808 + 0.009099270432929352 + 0.008858141425360788 + 0.00825287614346859 + 0.007474301844222708 + 0.006741980042291207 + 0.006213273134862529 + 0.005923421063101841 + 0.005790034110524811 + 0.005682789353026241 + 0.005519387267006959 + 0.005325489186320365 + 0.005210452721623682 + 0.005266234836114769 + 0.005472243718258607 + 0.00574194924940441 + 0.00623441084893539 + 0.007957231550967503 + 0.01353153507522498 + 0.08069626330568003 + 0.04185201288109974 + 0.0220276964070325 + 0.01324887622473536 + 0.009835484527354055 + 0.008429459979564236 + 0.007493874867412931 + 0.006603353110493426 + 0.005809151458382011 + 0.005236757917424395 + 0.004931712638555297 + 0.004871298234600641 + 0.005030917153827641 + 0.005422704198068562 + 0.006077996217074499 + 0.006992632884811556 + 0.008076353196579955 + 0.009142670950851972 + 0.009952492828932513 + 0.01029645816603342 + 0.01007987907308872 + 0.009369159903998003 + 0.008373009369619933 + 0.007361285452213817 + 0.006556547994836848 + 0.006051584366659757 + 0.005797213295678727 + 0.005668140947564737 + 0.005567083133718231 + 0.005497040460832103 + 0.005543931098515475 + 0.005772023494626577 + 0.006118361528603788 + 0.006432091667268214 + 0.006792400043968083 + 0.00813535813881705 + 0.01305352308415575 + 0.08400119854152255 + 0.04328913148377289 + 0.02259185427601018 + 0.01362106327365087 + 0.0103414026598978 + 0.009105211070063568 + 0.008214322578880218 + 0.007215414367398587 + 0.006222916344787777 + 0.005454370657002272 + 0.005023570621261353 + 0.004928241937426581 + 0.005123240564369969 + 0.005584339943492722 + 0.006315908502954937 + 0.007307410668066172 + 0.008476601162008102 + 0.009643032387887107 + 0.01055744653986723 + 0.01098181263594045 + 0.0107857078721012 + 0.01001125786922374 + 0.008869142670645758 + 0.007660070758537696 + 0.006655568948183088 + 0.005997709613672075 + 0.005671794871122682 + 0.005566695598309579 + 0.00558301471324496 + 0.005712450776701239 + 0.006022515391659322 + 0.006545632015072744 + 0.007163310077193508 + 0.007641645537451502 + 0.00796152134185979 + 0.008975701368395761 + 0.01324760210509002 + 0.08552861363116016 + 0.04319128271131634 + 0.02191367658569021 + 0.01305604755043666 + 0.01018965449375386 + 0.009348910681765688 + 0.008663003201585529 + 0.007657090382843013 + 0.006527134154335368 + 0.005602710951708278 + 0.005077312225607145 + 0.004966684182647008 + 0.005190899562689033 + 0.005671902543123331 + 0.006377543811705966 + 0.007297752757331466 + 0.008383241207449377 + 0.009496545786753519 + 0.01041567005331601 + 0.01089949748903729 + 0.01078727612221186 + 0.01008068585799649 + 0.008960339638004022 + 0.007720287125686731 + 0.006649388008914237 + 0.005921888012706322 + 0.005558556971441586 + 0.005479461545171649 + 0.0056097196483611 + 0.005957574060121651 + 0.006593791572180763 + 0.007530397263755262 + 0.008594998090036832 + 0.009466578876208942 + 0.0100235465734051 + 0.01103518397315506 + 0.01503991319113096 + 0.08648268043553831 + 0.04243862274974708 + 0.02056991432347033 + 0.01187643199794453 + 0.009514775228669947 + 0.009176425526652654 + 0.008797896103312386 + 0.007872719537824313 + 0.00667737106759958 + 0.005655890215309878 + 0.005080423026631919 + 0.004976332605465039 + 0.00521508488752831 + 0.005652997382053382 + 0.006221123510720794 + 0.006927655979318104 + 0.007791730424868692 + 0.008763571416484428 + 0.009688490267584893 + 0.0103434285666828 + 0.01053044126910896 + 0.01017555137461779 + 0.009374571149344924 + 0.008355787701974204 + 0.007378502559105105 + 0.006627306286092427 + 0.006167083426052766 + 0.00598507334624987 + 0.0060841982523967 + 0.006546749989026601 + 0.007496780965620342 + 0.008961696892928028 + 0.01073606215076728 + 0.01242159863707437 + 0.01379804145003227 + 0.01555116549080404 + 0.0201877820314853 + 0.08956383322025374 + 0.04321702926978599 + 0.02023604607821827 + 0.01130158567115913 + 0.009169067543550735 + 0.009176907108592314 + 0.00904438214644232 + 0.008204284277730345 + 0.006986728043262502 + 0.005927887920625707 + 0.00535994318906674 + 0.005301961962096868 + 0.005565069398917988 + 0.005936848496376435 + 0.006322404589660824 + 0.00677554863309604 + 0.007424266759061382 + 0.008349751873615308 + 0.009496173709699463 + 0.01066432396030148 + 0.01159112405695328 + 0.01206718127141704 + 0.01202427815883933 + 0.01154592231204399 + 0.01080431934529402 + 0.009974756361793791 + 0.009191106049656117 + 0.008572324301543865 + 0.008289087751446989 + 0.008594441492960847 + 0.009752159200023147 + 0.01187044547822458 + 0.01475222562033141 + 0.01794201818050167 + 0.02112354491701129 + 0.02488519804597011 + 0.03166762940817458 + 0.09911265848072182 + 0.04926899009764085 + 0.02402884169753872 + 0.01386134755799118 + 0.01118526035458789 + 0.01100401627441849 + 0.01079910546681129 + 0.0098979045471701 + 0.008631036643311774 + 0.007577615777160762 + 0.007091903260700416 + 0.007162949020486753 + 0.007532716805350059 + 0.007926075318396286 + 0.008242288963955513 + 0.008612156975696728 + 0.009308621514651616 + 0.01057407248830833 + 0.01246302549172063 + 0.01478163792355547 + 0.01714828258497025 + 0.01913459851977217 + 0.02040981165364109 + 0.0208216914204522 + 0.02039590223729659 + 0.01928874846844941 + 0.01775001677692734 + 0.01612714877098309 + 0.01488707602744288 + 0.01459021601326249 + 0.01576279833067051 + 0.01868777828535384 + 0.02323558224224875 + 0.0289183952722456 + 0.03531691164619311 + 0.04288313954161405 + 0.05391661446682372 + 0.1209660216452311 + 0.06591214346949359 + 0.03667894938289651 + 0.02370288344007188 + 0.01919053398011483 + 0.01786760359055917 + 0.01697201479023391 + 0.01567453145628095 + 0.01423358563544008 + 0.01319970480302857 + 0.01289487322451022 + 0.01324820586947206 + 0.01392665268388216 + 0.01460526010035368 + 0.01520148890203465 + 0.01594997634011586 + 0.01728960898406129 + 0.01963013874454722 + 0.02311927249215984 + 0.02752204670209446 + 0.0322618611665888 + 0.03659241589819162 + 0.03981492585268365 + 0.04145185919110395 + 0.0413320232818033 + 0.03959919334715112 + 0.0366881439041542 + 0.0332982261545256 + 0.0303501402393378 + 0.02887701414725941 + 0.02981581587478743 + 0.03373770608085591 + 0.04065043090015408 + 0.05005795403161084 + 0.06141658210599532 + 0.07497397125496175 + 0.09277098732528355 + + +# name: Eft_mc +# type: matrix +# rows: 1369 +# columns: 1 + -0.5826341216122938 + -0.6704337121504783 + -0.778721074948815 + -0.9052398719424398 + -1.045156348037473 + -1.191080847141085 + -1.333399425246344 + -1.46091531794796 + -1.561761918256523 + -1.624511636228207 + -1.639370799609682 + -1.599323607466027 + -1.501074737408062 + -1.345648350776984 + -1.13853621052785 + -0.8893482020722547 + -0.6109951837722867 + -0.3185105692616529 + -0.02767516166991823 + 0.2463647763652534 + 0.4903091002576786 + 0.693614305939768 + 0.8490385960384684 + 0.9528251235188381 + 1.00457985865925 + 1.006927510502045 + 0.9650287634929806 + 0.8860223822705392 + 0.7784295456915596 + 0.6515381511017985 + 0.5147796119719539 + 0.3771196220817323 + 0.2464999829776468 + 0.1293801966144205 + 0.03042656780325284 + -0.04761936282058128 + -0.1038876513057503 + -0.6317645333360054 + -0.6750211994353446 + -0.7352896652283123 + -0.8125207822005683 + -0.9043504620442073 + -1.005948379928267 + -1.110160581475107 + -1.207965615771223 + -1.289225233097197 + -1.34367007050074 + -1.36202101460433 + -1.337113128980615 + -1.26486904879461 + -1.144971505254472 + -0.9811162018635354 + -0.7807857409926275 + -0.5545630205601824 + -0.3150817117611499 + -0.0757729982648067 + 0.1504036861284944 + 0.3520693671445186 + 0.5202439237331395 + 0.6488130422004142 + 0.7346539195228362 + 0.7774851989813163 + 0.7795334741398411 + 0.7451047203739464 + 0.6801221992704335 + 0.5916576973194076 + 0.4874562906942939 + 0.3754465992442065 + 0.2632396888470288 + 0.1576421767532428 + 0.06422963072306266 + -0.01296647163256882 + -0.07161584793326942 + -0.1110735071778466 + -0.6646506001108079 + -0.6587373894751627 + -0.6658174076808282 + -0.688225922541197 + -0.7263125042244073 + -0.7781081891671056 + -0.8392632188626692 + -0.9032954353790699 + -0.9621510899656565 + -1.007036616862243 + -1.029435372624637 + -1.022183434952221 + -0.9804522087148342 + -0.9024826383994023 + -0.7899430089615052 + -0.6478391650943423 + -0.4839829745183459 + -0.3081050915384159 + -0.1307619598896356 + 0.03778171781962585 + 0.1885229119095785 + 0.314416712914282 + 0.4107433056752978 + 0.4751631419999275 + 0.5075351185195056 + 0.5095988638916877 + 0.4846140563077113 + 0.4370152144652962 + 0.3720964771172896 + 0.295706374721229 + 0.2139208064462333 + 0.1326758391996734 + 0.05737170394227434 + -0.00751005328809773 + -0.05871765453173373 + -0.0944144396051942 + -0.1142079035354971 + -0.6793560507690632 + -0.6219339686259755 + -0.5730921468919359 + -0.5376082546317796 + -0.5186589867239781 + -0.517306870170282 + -0.5322277375214197 + -0.5597387651709491 + -0.5941497342955834 + -0.6284154113026831 + -0.6550187116835283 + -0.6669693350036812 + -0.6587704917158653 + -0.6271976479345432 + -0.5717551507380626 + -0.4947291949813273 + -0.4008298224896648 + -0.2964939514766293 + -0.1889862354904228 + -0.08546805676424546 + 0.007801658594366264 + 0.08601477718630472 + 0.1460622952445987 + 0.1865084088365125 + 0.2073742812152599 + 0.2098408413814008 + 0.1959673718860171 + 0.1684802676564028 + 0.1306327576008006 + 0.08609347145450819 + 0.0388058946042163 + -0.007223798194400241 + -0.04821558447622326 + -0.0809447204537475 + -0.1030475288625779 + -0.1132375396454431 + -0.1113863700613318 + -0.6750110384412907 + -0.5664151379179446 + -0.4617714063570254 + -0.3682220806403083 + -0.2917335689671652 + -0.2364150061527257 + -0.2040418955947852 + -0.1938625776213722 + -0.202730001144451 + -0.2255562638482287 + -0.256037031276937 + -0.2875444113081065 + -0.3140501467027238 + -0.330926817742131 + -0.3354907062697181 + -0.3271966708729158 + -0.3074646492594276 + -0.2791936030345966 + -0.2460828357942906 + -0.2119156906987517 + -0.1799568676563139 + -0.1525726672048374 + -0.1311150726245588 + -0.1160357725943896 + -0.1071377244993077 + -0.1038477023243789 + -0.1054101602514061 + -0.1109528536098897 + -0.1194379098351425 + -0.1295635956667757 + -0.1397023027384662 + -0.1479430774047808 + -0.1522618516850497 + -0.150789793920458 + -0.1421116241224821 + -0.1255148544486944 + -0.1011282007417087 + -0.6519252477106123 + -0.4953633781213849 + -0.3381092138222235 + -0.1894494938114367 + -0.05794284608066438 + 0.04940672933711263 + 0.1278113426044508 + 0.1751033628818101 + 0.1918222944359841 + 0.1809681657615957 + 0.1474557644269349 + 0.09735420378493917 + 0.03703619726699428 + -0.02761950970597822 + -0.09183852523930407 + -0.1522791793854796 + -0.2070460812274889 + -0.255426848617486 + -0.2974516794188428 + -0.3334113309268733 + -0.3634685150963552 + -0.3874597305026209 + -0.4049192350895621 + -0.4152835697244381 + -0.4181771447216181 + -0.4136566303696119 + -0.402312701366027 + -0.3851849141714344 + -0.3635179273203434 + -0.3384473543324935 + -0.3107285035856674 + -0.2806027481581427 + -0.2478437225792202 + -0.2119615345557769 + -0.1724929180174072 + -0.1292855765225309 + -0.08269823242908179 + -0.6116076964749347 + -0.4131336477160813 + -0.2095103964942775 + -0.01181235501527156 + 0.1691632170319802 + 0.3238343848517201 + 0.4446507851752436 + 0.5266855357067007 + 0.5679289274669209 + 0.5692507583809245 + 0.5340466986785963 + 0.4676335855910037 + 0.3764998196361745 + 0.2675401706371095 + 0.1474017699401344 + 0.0220378707130657 + -0.1034866399540736 + -0.2249570231898201 + -0.3388142679946335 + -0.4419168905510912 + -0.5313743592872278 + -0.6045347691817594 + -0.6591488402044494 + -0.6936620679826953 + -0.7075304515719734 + -0.7014338689935593 + -0.6772851864029842 + -0.6379964460775266 + -0.5870441010189669 + -0.5279433565082009 + -0.4637714281413578 + -0.3968602636495107 + -0.3287200621859291 + -0.2601801592876245 + -0.191672012125916 + -0.1235502788780507 + -0.05635676323380832 + -0.5566846758846183 + -0.3249291131417933 + -0.08394852045712378 + 0.1538707474723778 + 0.375984605584184 + 0.5706992348488936 + 0.7281017903502074 + 0.8408066392258385 + 0.9044337680373754 + 0.9177719816507913 + 0.8826236800045874 + 0.8033744058277863 + 0.6863710212947519 + 0.5392185165329343 + 0.3701099633511057 + 0.1872842167800418 + -0.001335142373768755 + -0.1883192009142362 + -0.3667825043382479 + -0.5303874443492275 + -0.6733972818480798 + -0.7908445160116152 + -0.8788272417580122 + -0.9348804985283273 + -0.9583155677583619 + -0.9504001176587059 + -0.9142782820957135 + -0.8545975062562549 + -0.7768963238907329 + -0.6868824313502457 + -0.5897648881661145 + -0.4897849439747739 + -0.3900251847286432 + -0.2924921767751028 + -0.1983949748890054 + -0.1085041276319173 + -0.02347978895331592 + -0.490715529841633 + -0.2363835559714335 + 0.03070018300905224 + 0.2974026350738428 + 0.5500320036220591 + 0.7753680286625001 + 0.9616596071431032 + 1.099483667268953 + 1.182377527091862 + 1.207186468479833 + 1.174105714625793 + 1.086436837132714 + 0.9501166183195915 + 0.7731043662190206 + 0.5647251695433533 + 0.335057963364058 + 0.09442940495523933 + -0.1469665956876438 + -0.3793477770829412 + -0.593578552863251 + -0.7814298381821423 + -0.9359136607108997 + -1.051696604376664 + -1.12553661291216 + -1.156636781443715 + -1.146790722617038 + -1.10022113938179 + -1.023083528789919 + -0.9226990662975818 + -0.8066617713545924 + -0.6820040116084282 + -0.5545857905550503 + -0.4288042690708057 + -0.3076271743905111 + -0.1928710030246439 + -0.08559860206471967 + 0.01349026753635089 + -0.4179160600091283 + -0.1530861211156211 + 0.1273435283393291 + 0.410109200241389 + 0.6810362535139618 + 0.9260417896031002 + 1.132147851739822 + 1.288406086467345 + 1.386646971334469 + 1.421988172062155 + 1.393065193667218 + 1.301980466867092 + 1.154000390759058 + 0.9570584336918582 + 0.7211405978408753 + 0.4576328922034507 + 0.1786971529859689 + -0.1032861272810378 + -0.3762043705640739 + -0.6286567321312547 + -0.8503983802065933 + -1.032818450496917 + -1.169448580102691 + -1.256446895567794 + -1.292955242824446 + -1.281208993442501 + -1.226305129410586 + -1.135604909038881 + -1.017842087516367 + -0.8820930363413281 + -0.7368082075784588 + -0.589087361554101 + -0.4443094752178183 + -0.3061290229484173 + -0.1767590721020509 + -0.05740741545168841 + 0.05127399084338823 + -0.3428111211597873 + -0.08009268258884861 + 0.2003121410521958 + 0.485631231717557 + 0.7618892088096102 + 1.014834086073678 + 1.230914840719158 + 1.398223446301922 + 1.507320408682667 + 1.551874993545684 + 1.529069300102373 + 1.439738528240404 + 1.288246855211969 + 1.082126372361484 + 0.8315309969779705 + 0.5485728204946431 + 0.2466104067451294 + -0.06045460464769846 + -0.3588415131891212 + -0.6355129060024747 + -0.878772989703383 + -1.078859093397366 + -1.228518084692307 + -1.323516042247556 + -1.362986743213952 + -1.349506095942368 + -1.288803668020213 + -1.189090964077548 + -1.060080888481348 + -0.9118608228001761 + -0.7538285741935624 + -0.593885939093423 + -0.4380124983582315 + -0.2902387459569583 + -0.1529396246049584 + -0.02730833320482955 + 0.08614056976959469 + -0.2698503748947781 + -0.02147410835618899 + 0.2458826400630261 + 0.5205210974213543 + 0.7893135395672537 + 1.038510649572987 + 1.254636350779849 + 1.425400946019016 + 1.540561955792461 + 1.592664025628331 + 1.577595359194031 + 1.494910164452096 + 1.34788607981366 + 1.143312032736484 + 0.8910320878202921 + 0.6032983874557876 + 0.2940038635192326 + -0.02213282592826863 + -0.3303726992549197 + -0.6167206178838479 + -0.868641251736182 + -1.075729517509653 + -1.230324455335684 + -1.328021553676489 + -1.368000314182356 + -1.353064771176208 + -1.289314646337901 + -1.185428812635171 + -1.051635175792607 + -0.8985299761299868 + -0.7359596342258133 + -0.5721672417790348 + -0.4133350359245804 + -0.2635486948370671 + -0.1251063778608279 + 0.0009717261865788229 + 0.1143931695167962 + -0.2030319264831193 + 0.02004623072082719 + 0.2626250107769753 + 0.5145761456756081 + 0.7641856766252902 + 0.9988073985860744 + 1.20563562067927 + 1.372548770919504 + 1.488966995833285 + 1.546658355561424 + 1.540421847672953 + 1.468575672771173 + 1.333190299923656 + 1.140030051988027 + 0.8982019057969356 + 0.6195490511128068 + 0.3178593210677701 + 0.007975027887013297 + -0.2951140747623805 + -0.5771358460514919 + -0.8253292581700101 + -1.029156723996649 + -1.180924077036714 + -1.276272909199874 + -1.314476317111165 + -1.298448623486334 + -1.234393917513849 + -1.131075479401798 + -0.9987759461677583 + -0.8481062628279679 + -0.6888745099737074 + -0.5292191659171976 + -0.3751439726858353 + -0.2304864182735596 + -0.0972459761792487 + 0.02387380336916847 + 0.1328754630801555 + -0.1455844606639408 + 0.04331712710640061 + 0.2515282199640047 + 0.4708658053366407 + 0.6914717605250488 + 0.90228922733664 + 1.09168474557296 + 1.248190204805887 + 1.361323631660045 + 1.422428975009322 + 1.425456422519945 + 1.367593207833581 + 1.249657545084707 + 1.076189670233875 + 0.8552129129653423 + 0.5976866754669665 + 0.3167194992208739 + 0.0266404347693194 + -0.2579682868195982 + -0.5231943139819019 + -0.756624829856321 + -0.948063730794149 + -1.090127726261944 + -1.178698378978905 + -1.213177706054337 + -1.196472260177344 + -1.134637738634394 + -1.036164667775935 + -0.9109668988942242 + -0.7692207825050273 + -0.6202586239628795 + -0.4717189851782064 + -0.3290943136988575 + -0.195713788841501 + -0.07309227768711364 + 0.03849964902125829 + 0.1394144368206622 + -0.09975619527128715 + 0.04880923476807839 + 0.2158794428580843 + 0.3954408373268949 + 0.5797778075485409 + 0.7597622725969539 + 0.9253095194453256 + 1.065996981978749 + 1.171821489140936 + 1.234042191335946 + 1.246026487477542 + 1.203993871201111 + 1.107547337047406 + 0.9599003168532302 + 0.7677490132485579 + 0.5407973606284762 + 0.2909999035379775 + 0.03162975216290291 + -0.2237080092183671 + -0.4620146662045566 + -0.6717232641654931 + -0.843385858837521 + -0.9702192217719754 + -1.048500321242625 + -1.077777131280121 + -1.060834573212777 + -1.003354181261135 + -0.9132443636385001 + -0.7996912394025466 + -0.6720631370436497 + -0.5388602151618335 + -0.4069061089960171 + -0.2809234900898991 + -0.163537387649648 + -0.05564360992408091 + 0.04299940341829084 + 0.1331262696314298 + -0.06674631797780255 + 0.03847258988990232 + 0.1608999316375693 + 0.2967486755616055 + 0.4405583246043349 + 0.585302208547455 + 0.722675295206621 + 0.8435799963383562 + 0.9388011418724241 + 0.9998249735677567 + 1.019717671765068 + 0.9939474296748813 + 0.9210219975865865 + 0.8028290375919499 + 0.644610359108124 + 0.4545647264715643 + 0.2431410832428393 + 0.02213526711891585 + -0.1962767444331051 + -0.4004517246701865 + -0.5800627773166472 + -0.7267260106364684 + -0.8344744721896369 + -0.900086157452745 + -0.9232498253686068 + -0.9065227483374733 + -0.8550241198729858 + -0.7758349607215473 + -0.6771395141204591 + -0.5672226962649459 + -0.4534993477920808 + -0.3417638928984735 + -0.2358025704681446 + -0.1374185608124816 + -0.04681560309191894 + 0.03679576366657505 + 0.114539195112674 + -0.04679179553893506 + 0.01541196523964497 + 0.09317225203844197 + 0.1848148328907707 + 0.2870676617847683 + 0.3950046863533208 + 0.5021778121460421 + 0.6009718079878187 + 0.6831866687888051 + 0.7408096719357702 + 0.7668931228917544 + 0.7564156611738582 + 0.7069877969434176 + 0.6192752230310024 + 0.4970578029019803 + 0.3469094576904325 + 0.1775571672662603 + -0.0009651982322812323 + -0.1782279145394435 + -0.3442555697613969 + -0.4902356682824508 + -0.6090595787940577 + -0.6957095628477395 + -0.7475144788131614 + -0.7642751375111981 + -0.7482260717212941 + -0.7037804336688489 + -0.6370203679620895 + -0.5549501762141354 + -0.4646056314696431 + -0.3721771690536749 + -0.282325799114032 + -0.1978338949043443 + -0.1196485862924862 + -0.04727345223895771 + 0.02061935429118202 + 0.08552333612652763 + -0.03939289480592325 + -0.01657922380109599 + 0.01992508804670763 + 0.07028221355012181 + 0.1331703206649929 + 0.2055957635431214 + 0.2828942795873739 + 0.3589682236269176 + 0.4267741358914236 + 0.4790292583358211 + 0.5090556458598912 + 0.5116388502207706 + 0.4837580116070482 + 0.4250551064927727 + 0.337954806435931 + 0.2274145525325997 + 0.100359555959862 + -0.03508235879196257 + -0.1704044241340216 + -0.2974757273293954 + -0.4091471359217393 + -0.4996877047161626 + -0.565076386523323 + -0.6031867790339599 + -0.6138810343563986 + -0.5989895897637327 + -0.5621236635506773 + -0.508271926598858 + -0.4431789869151674 + -0.372576316282913 + -0.3014043676686437 + -0.2331946965478532 + -0.1697547400574775 + -0.111221634147239 + -0.05645260158272199 + -0.003633891889879138 + 0.04905390501003473 + -0.04363063645577632 + -0.05355764348576082 + -0.05173281157754163 + -0.0365777031464458 + -0.007854969149449926 + 0.0330552452632449 + 0.08306188408388301 + 0.1375055225054792 + 0.1905563777618734 + 0.2358411715593603 + 0.2672221800340821 + 0.2796101205709831 + 0.2696719359226569 + 0.2363042239598373 + 0.1807848001532848 + 0.1065807739037679 + 0.01886470634356696 + -0.07615055230447977 + -0.1719215732618194 + -0.2622066662147824 + -0.3415476099565696 + -0.405589388606201 + -0.451274798986718 + -0.4769652608815136 + -0.4825159888542342 + -0.4692884748305174 + -0.4400442663275434 + -0.3986582562860756 + -0.3496282332899898 + -0.2974282855967418 + -0.2458261912906712 + -0.1973244049382028 + -0.1528689563862146 + -0.1119026780521292 + -0.07274360265967052 + -0.03318172301961819 + 0.008862413189048204 + -0.0585064296667193 + -0.09195418785419411 + -0.1155249916972474 + -0.126760797994699 + -0.1243816187380128 + -0.1085989325499828 + -0.0812589029123188 + -0.04576367752918025 + -0.006751311718438342 + 0.03044178794625044 + 0.06046581273486323 + 0.07868188109613457 + 0.08179937484131683 + 0.06830919146887078 + 0.03863426991386004 + -0.005020777113699246 + -0.05907197618306667 + -0.1191074464488344 + -0.1804623285151376 + -0.2387077841155303 + -0.2899936620589142 + -0.3312460928022086 + -0.3602692684113079 + -0.3758140081255277 + -0.3776493745360287 + -0.3666223805810842 + -0.3446434599161576 + -0.3145208470932922 + -0.2795994092222728 + -0.2432293781038014 + -0.2081680637442281 + -0.1760666958082808 + -0.1471899569049592 + -0.1204559617119968 + -0.09379184536015402 + -0.06471011869975246 + -0.0309554175105174 + -0.08322537116309282 + -0.1289937619436481 + -0.1665657277009582 + -0.1932239360622279 + -0.2072549446428944 + -0.2082424494704704 + -0.197209599996622 + -0.1765675455551385 + -0.1498564486405146 + -0.1213024586309163 + -0.09525245927523258 + -0.07557874308659972 + -0.06515920301987035 + -0.06552891337784718 + -0.07676509812672867 + -0.09761552180536383 + -0.1258233594232184 + -0.1585568200847289 + -0.1928349226581074 + -0.2258592738247027 + -0.2552097429945852 + -0.2789208323709337 + -0.2955000973280342 + -0.3039595100274337 + -0.3038996844579411 + -0.2956296370762174 + -0.2802502338509854 + -0.2596081186490348 + -0.2360551009356447 + -0.2120183241445032 + -0.1894698229622732 + -0.1694425414633874 + -0.1517453595771698 + -0.1349771924122975 + -0.1168500227001443 + -0.09473804164043999 + -0.0663086314673766 + -0.1173542248080477 + -0.1629371351434753 + -0.2016876172687834 + -0.2312972761400292 + -0.2502854486100919 + -0.2582127232482369 + -0.2557686509147409 + -0.2447073899681368 + -0.2276289041640295 + -0.2076312429916241 + -0.1878860003037462 + -0.171208138109743 + -0.1596973108583473 + -0.1545168676635257 + -0.1558486002203299 + -0.1630207286936488 + -0.1747635389541936 + -0.1895149688668606 + -0.2056899601502279 + -0.2218486406331347 + -0.2367442297855731 + -0.2492850970414579 + -0.2584834804265097 + -0.263466606691994 + -0.263589116684369 + -0.2586227529182828 + -0.2489391919903336 + -0.2355759743705617 + -0.2201015882246605 + -0.2042679221425244 + -0.1895275761665437 + -0.1765607735064115 + -0.1649710021813256 + -0.1532621782166395 + -0.1391214839125728 + -0.119936370594172 + -0.09340699482347263 + -0.1608123665828404 + -0.1931046895953162 + -0.2195008939578387 + -0.2387815258113859 + -0.2503861189926557 + -0.2544881904068311 + -0.251974493417867 + -0.2443261759814864 + -0.2334162850548581 + -0.2212536145118818 + -0.2097141617213392 + -0.2003059929288243 + -0.1940094809530185 + -0.1912219624897788 + -0.1918145558748256 + -0.195282198011895 + -0.2009420403964086 + -0.208118969258218 + -0.2162589335807186 + -0.2249351956909952 + -0.2337549658999114 + -0.2422196264631378 + -0.2496206109188858 + -0.2550478020622235 + -0.2575437684102477 + -0.2563691833206366 + -0.2512810491278469 + -0.2426972946812559 + -0.2316475138721691 + -0.2194848161443093 + -0.2074290239195163 + -0.1960864361285532 + -0.1851130726517843 + -0.173146604080136 + -0.1580441542017801 + -0.1373643300194115 + -0.1089592613741306 + -0.2136934023624216 + -0.2196860351394538 + -0.2201954687806379 + -0.2157485009787705 + -0.2073792004185769 + -0.1965103347961581 + -0.1847728238311697 + -0.1737913547979147 + -0.1649723515989444 + -0.1593310820578982 + -0.1573876367985391 + -0.1591487115303631 + -0.1641765929545315 + -0.1717312761592938 + -0.1809579720502838 + -0.1910814783625165 + -0.2015627077806685 + -0.21217441491828 + -0.2229669514724777 + -0.2341226148925084 + -0.2457347985085051 + -0.2575839797942988 + -0.2689999566516642 + -0.2788844913675327 + -0.2859179094441271 + -0.2889012428863891 + -0.2871202688275058 + -0.2805901260750021 + -0.2700675438135123 + -0.2567969151911706 + -0.242057302316736 + -0.2266586722384257 + -0.2105626784531895 + -0.1927644674013742 + -0.1714836248114058 + -0.1446103690955663 + -0.1102759251052327 + -0.2759573407011966 + -0.2433844647511905 + -0.2051438338580834 + -0.1641118138672232 + -0.1235468586983074 + -0.08672875022626939 + -0.05657180853075407 + -0.03527623291933397 + -0.02407970136135026 + -0.02315492414838216 + -0.03167113434916181 + -0.04800524397319195 + -0.07005973672441364 + -0.09562588871073986 + -0.1227254585829186 + -0.1498704963316664 + -0.1761962367346306 + -0.2014434697782715 + -0.2257932754129257 + -0.2495878813697258 + -0.273003205347048 + -0.2957628409699395 + -0.316987459125248 + -0.3352473227498774 + -0.3488281099521419 + -0.3561457087751698 + -0.3561811652746742 + -0.3487821231447598 + -0.3347094035886835 + -0.3153911409928392 + -0.2924525044404461 + -0.267174575446088 + -0.2400660099849512 + -0.2106932847081025 + -0.1778257191049369 + -0.1398465080231042 + -0.09530029602836068 + -0.3470674006810309 + -0.2649802482964823 + -0.1763980513443782 + -0.08706893052345502 + -0.003033271533135457 + 0.07001916142540798 + 0.1273817286331413 + 0.165848632605515 + 0.1840265184740619 + 0.1823834953125435 + 0.163029041042938 + 0.1292713108468089 + 0.08504104303866437 + 0.03429303113397724 + -0.01950693740584708 + -0.07372629302557114 + -0.12669532621452 + -0.1776182895628216 + -0.2263013481674425 + -0.2727663048919168 + -0.3168439810391299 + -0.3578524654544324 + -0.394455501840126 + -0.4247587068215358 + -0.4466376505571849 + -0.4582164507244793 + -0.4583541295595595 + -0.4469762170510003 + -0.4251268059856166 + -0.3947047448892924 + -0.3579567904938961 + -0.3168881948690562 + -0.2727818649649285 + -0.2259785509097574 + -0.1759789287150934 + -0.1218210142463702 + -0.0626034650320688 + -0.4256627351801885 + -0.2849130574295271 + -0.1361888436153109 + 0.01147136111813908 + 0.1487838271100697 + 0.2671741223211501 + 0.3596861060817315 + 0.4216980748692871 + 0.4513233108837262 + 0.4494262870966859 + 0.419258603738752 + 0.3657931234852642 + 0.2948917767868013 + 0.2124676957666619 + 0.1237907475326217 + 0.03304299915198892 + -0.05682927017116295 + -0.1439821813337145 + -0.2273263556423555 + -0.3060668211657178 + -0.3792503022229836 + -0.4454372220818491 + -0.5025913644906777 + -0.5482316752051554 + -0.5798221166406283 + -0.5953012227093081 + -0.5935969516679043 + -0.574959710775796 + -0.5409905967538026 + -0.4943348024153901 + -0.4381212120369558 + -0.3753165697561819 + -0.3081914182337596 + -0.2380537420495399 + -0.1653121610728562 + -0.08982134124601521 + -0.01137878844402945 + -0.5093538561390876 + -0.3029772494190711 + -0.08652589899419011 + 0.1273733865907268 + 0.3258478396714088 + 0.4970625424788143 + 0.631426649605919 + 0.7225306061016658 + 0.7676591291396774 + 0.767797804431841 + 0.7271466681039569 + 0.6522495714823547 + 0.5509191956704657 + 0.4311661265237025 + 0.3003205842173282 + 0.1644755217339101 + 0.02829863891888609 + -0.1048197860664885 + -0.2323791978691583 + -0.3522735269517019 + -0.4623296523366831 + -0.5600047895866634 + -0.6423296039344428 + -0.7061255541649849 + -0.7484531784976122 + -0.7671769810948778 + -0.7614839953332063 + -0.7321890195649255 + -0.6817107292426813 + -0.6136995209701204 + -0.53240912738966 + -0.4419886625831008 + -0.3458964008556262 + -0.2465912651351188 + -0.1455611645171109 + -0.04363732439501791 + 0.05853871154280142 + -0.5947023413338893 + -0.318196023402235 + -0.02896841946981943 + 0.25660041947902 + 0.5218337475867912 + 0.7513765296936827 + 0.9327086476377453 + 1.057317985286138 + 1.121345804645205 + 1.125608207106883 + 1.075014634821397 + 0.9775197272100346 + 0.8428291633533158 + 0.6811117989009898 + 0.50194291826097 + 0.3136275140183649 + 0.1229519181940678 + -0.06468541557820749 + -0.2448854635585473 + -0.4137601366649132 + -0.5675014737739577 + -0.702136799012777 + -0.813546668022862 + -0.8977558964194501 + -0.9514349283932971 + -0.9724830711743624 + -0.960525861386565 + -0.9171645731376118 + -0.8458742760355697 + -0.7515462486788664 + -0.6397799110449783 + -0.5161089823859369 + -0.3853650039112666 + -0.2513308329233402 + -0.1167371689701184 + 0.01645456035191949 + 0.1466194052510741 + -0.6774068114039901 + -0.3288986636398764 + 0.03540858115572088 + 0.3953560565474654 + 0.7303889017292146 + 1.021501909925579 + 1.253057987878617 + 1.414203171083623 + 1.499659570434462 + 1.509785850898323 + 1.449931800790068 + 1.329247012832904 + 1.159199938590872 + 0.9520980120621819 + 0.7198651625133761 + 0.4732429509371569 + 0.2214640856128577 + -0.0276647031354346 + -0.2674130073179469 + -0.491687505698523 + -0.6946714595937877 + -0.8706691155815305 + -1.014218241043984 + -1.120461233910782 + -1.185693108959435 + -1.207946231442333 + -1.187443236270393 + -1.126765866309113 + -1.030652801104926 + -0.9054404692346598 + -0.7582664619876087 + -0.5962275582565932 + -0.4256949562224501 + -0.2519328355762422 + -0.07906443975168738 + 0.08967844127935574 + 0.2515622797884796 + -0.752673000293267 + -0.3329795906009933 + 0.1058728306585185 + 0.5400612575120645 + 0.9452238742278318 + 1.298713373019183 + 1.581707428447227 + 1.780862416204652 + 1.889263175133767 + 1.906544641483194 + 1.838215416194722 + 1.694362436052914 + 1.488022334703196 + 1.233541755425263 + 0.9452085723797445 + 0.6363339869705122 + 0.3188341544230221 + 0.003237077275711599 + -0.3010438947728364 + -0.5853604522340075 + -0.8415762266826721 + -1.062029175509835 + -1.239755876591299 + -1.368947334847985 + -1.445536786140505 + -1.467770575304087 + -1.436596655691394 + -1.355732368217101 + -1.231344836663555 + -1.071378426896223 + -0.8846638633611238 + -0.6800071560167761 + -0.4654580910065957 + -0.2478953398498508 + -0.03296149849165605 + 0.1747243532719481 + 0.3712190556966632 + -0.8157075138810188 + -0.3282795651432824 + 0.1817765708942631 + 0.6872236155306338 + 1.160107592336792 + 1.574287977160625 + 1.907815934860509 + 2.144814075731699 + 2.27658545319365 + 2.3018148558728 + 2.225893889238404 + 2.05956315169182 + 1.817179314685299 + 1.514953208119677 + 1.169459853632415 + 0.7966100523409296 + 0.4111313930626379 + 0.0264758717815221 + -0.3450153704447875 + -0.6918875327497467 + -1.003458630092253 + -1.269924010048009 + -1.482705963765686 + -1.634996895414893 + -1.722380379589166 + -1.743375400445811 + -1.699745033659559 + -1.596448569871836 + -1.441193219876699 + -1.243641495857645 + -1.014423560077461 + -0.7641573648263694 + -0.5026714350192776 + -0.2385563811349337 + 0.02093352856549059 + 0.2697094453504003 + 0.5025519663858424 + -0.8622509990468552 + -0.3130065105877942 + 0.2622611715841351 + 0.8332745242899284 + 1.368837563104504 + 1.839602197967613 + 2.220679987731659 + 2.493726160557475 + 2.648202932934377 + 2.681673958139427 + 2.599160941668031 + 2.411764680556546 + 2.134873063130384 + 1.786317767816268 + 1.384792524047574 + 0.9487278218143007 + 0.4956683441799967 + 0.04206443155069473 + -0.3966975743327408 + -0.8062240963002121 + -1.173165414735539 + -1.485480205050121 + -1.732919425305063 + -1.907657287866971 + -2.004939553970711 + -2.023591618742205 + -1.966237403494103 + -1.839127827564996 + -1.651559151240521 + -1.414959012824729 + -1.141803118867529 + -0.8445683944626527 + -0.5349108301542905 + -0.2231820141179096 + 0.08170648251584138 + 0.3721590892284197 + 0.6416572871920673 + -0.8890612615547357 + -0.2861099986301657 + 0.3460054704891723 + 0.9744487575557315 + 1.565252373251149 + 2.086271799477726 + 2.509988057283923 + 2.81576595900321 + 2.991259470837213 + 3.032806853092792 + 2.94484455749498 + 2.738546016938098 + 2.430015086772887 + 2.038403261245689 + 1.584268340491362 + 1.088370326480874 + 0.5709483716025968 + 0.05138670867454102 + -0.4519064259399414 + -0.9215999023783774 + -1.341671630341068 + -1.697843431941427 + -1.978202756932195 + -2.17391934674219 + -2.279915355584068 + -2.295331312575808 + -2.223651021447099 + -2.07240528674172 + -1.852459032564561 + -1.576980372938492 + -1.260266556824148 + -0.9166337608293413 + -0.559551037797105 + -0.2011199397545697 + 0.1481024986740685 + 0.479031682555151 + 0.7838776500401197 + -0.8942699319011355 + -0.2475384508621736 + 0.4310816752639351 + 1.106761905781485 + 1.743332745263145 + 2.306371466930574 + 2.766146309403758 + 3.100012024166841 + 3.293938138647015 + 3.343005913108266 + 3.250899682334978 + 3.028597868382854 + 2.69259348484806 + 2.263012729023948 + 1.761947344787048 + 1.212193237315543 + 0.6364358638000859 + 0.05678919500272665 + -0.505484316971788 + -1.030256068113948 + -1.498950468214722 + -1.895152098814993 + -2.20536288159451 + -2.419799495144086 + -2.533080373272282 + -2.544647004390068 + -2.458796240448086 + -2.284264864006626 + -2.033394209566452 + -1.720992169039807 + -1.363077200412083 + -0.9757106035517353 + -0.5740885301035354 + -0.1719830863453601 + 0.2184798720072038 + 0.5868045797508613 + 0.9240109699818639 + -0.8775630182583261 + -0.1983363087102739 + 0.514953173629577 + 1.226110580686393 + 1.897406186245786 + 2.492739635594082 + 2.980672427543545 + 3.336918707728218 + 3.545971431513106 + 3.601695955130568 + 3.506912634409058 + 3.27216867344894 + 2.914022580702904 + 2.453202062907158 + 1.912942843122383 + 1.317693795962035 + 0.6922248540169129 + 0.06104527894767556 + -0.5520332897558351 + -1.124358850282981 + -1.635041773156532 + -2.065727662077682 + -2.401481553277864 + -2.631658165474063 + -2.750601020903318 + -2.75801952904109 + -2.658935097711315 + -2.463158101814084 + -2.184344662357154 + -1.838766558878554 + -1.443985889589252 + -1.01763815920008 + -0.5764858676120399 + -0.1358206567749396 + 0.2908065567428631 + 0.6916275540277151 + 1.056605880022232 + -0.8401690570397689 + -0.1405722112442112 + 0.5946147726781479 + 1.32848679898903 + 2.022437445068527 + 2.639342152329766 + 3.146624008103316 + 3.518794729509072 + 3.739149305459744 + 3.80044535651873 + 3.704584260899919 + 3.461485711698559 + 3.087466935699726 + 2.603473333076571 + 2.033454458576592 + 1.403060416005114 + 0.7386904197877011 + 0.06680351102631829 + -0.5866644059628195 + -1.196930941856887 + -1.741140373519795 + -2.199287579558963 + -2.555215121448817 + -2.797545478777209 + -2.920387435521399 + -2.923671718425419 + -2.813021334772783 + -2.5991373741564 + -2.296767483563602 + -1.923402945150038 + -1.497899980797904 + -1.039224553618106 + -0.5654730865241123 + -0.09323709262572612 + 0.3627148087989666 + 0.7895369450674689 + 1.176316775511031 + + +# name: Varft_mc +# type: matrix +# rows: 1369 +# columns: 1 + 0.2329661820032262 + 0.1467474546652383 + 0.09612542979363613 + 0.0717101020505322 + 0.06392010077742248 + 0.06436465662966293 + 0.06677151485376467 + 0.06737897886095702 + 0.0648305582014396 + 0.05968072041605815 + 0.05365724798800211 + 0.0488496705142261 + 0.04699325402027996 + 0.04897168079656914 + 0.05458556310209859 + 0.06258345711540354 + 0.07094922215328756 + 0.07743036359190572 + 0.08021281446265177 + 0.07852727137035279 + 0.07292744731970377 + 0.06509502824870564 + 0.05725190691227101 + 0.05145187391604328 + 0.04905986956252276 + 0.05059554157065917 + 0.05590621254665769 + 0.06446185899270557 + 0.07552774860410305 + 0.08810568352213044 + 0.1007800506237529 + 0.1117927658745441 + 0.1196271209256906 + 0.1240852092824943 + 0.1274867236232802 + 0.1354458229740962 + 0.156794090996888 + 0.1772528633696533 + 0.1008287725658469 + 0.05710477154215925 + 0.03661359945278028 + 0.03033942321140772 + 0.03084792399624141 + 0.03288828593015019 + 0.03349675056642217 + 0.03172408745267874 + 0.02811985152048491 + 0.02408708809894561 + 0.02122127796326447 + 0.02075657796225605 + 0.02321467215740411 + 0.02828168062381771 + 0.03488317594462507 + 0.04142820070159865 + 0.04620940375998495 + 0.04790411780739137 + 0.04602392828135106 + 0.04110854943235542 + 0.03454320170098761 + 0.02806785362206859 + 0.02321042001927406 + 0.02089984963770679 + 0.02139320992004094 + 0.02447024459770538 + 0.02971039603520381 + 0.03663854726813907 + 0.04463654098432238 + 0.05273553429333614 + 0.05959694221205053 + 0.06397971670599199 + 0.0657241045202671 + 0.06692256312593702 + 0.07275378187152268 + 0.0915408159650138 + 0.1400828342332732 + 0.07324540780942757 + 0.03605079564776892 + 0.01908165554064403 + 0.01400420995880544 + 0.01440460690332241 + 0.0160443573630207 + 0.01668449828166342 + 0.0156786340717633 + 0.01347660897269549 + 0.01110473669925282 + 0.009670968449766665 + 0.009969846935847701 + 0.01225936618898922 + 0.01622130108571762 + 0.02105558446974081 + 0.02566069857645068 + 0.02889163226667746 + 0.02988250138427686 + 0.0283479185804837 + 0.0247153483968912 + 0.01998576135033533 + 0.01536703792423818 + 0.0118616828254339 + 0.01000840995957868 + 0.009871461516008949 + 0.01122751784752992 + 0.01380064272009252 + 0.01737579768445107 + 0.0216981192813928 + 0.02623902644680018 + 0.0300977138017713 + 0.03233853678813184 + 0.03284501885200418 + 0.03342469549653701 + 0.03868134356897417 + 0.05621944313034759 + 0.1146857796945601 + 0.05682243014037426 + 0.02559549793000239 + 0.01171058909625786 + 0.007549187491392368 + 0.007696961365172862 + 0.008860238224889265 + 0.00943835866911027 + 0.009017068969578639 + 0.007918193215045239 + 0.006814124904745877 + 0.006389014119896029 + 0.007078767059686865 + 0.00894787513731507 + 0.01171080281706796 + 0.01483648461003048 + 0.01767031880500531 + 0.01956501346402525 + 0.02004344883569058 + 0.01897034568886317 + 0.01663916022256234 + 0.01368592964318733 + 0.01084587279360336 + 0.00868228525961872 + 0.007434759887245851 + 0.007046533281730692 + 0.007322701579623673 + 0.008111400556424944 + 0.009390532269194443 + 0.01118039318710634 + 0.01331910266579394 + 0.01530931927722314 + 0.01652344333767598 + 0.01690077180098122 + 0.01795211769057133 + 0.02364812054187932 + 0.04076938219957334 + 0.09613771495025718 + 0.04634615792274387 + 0.02042447929323834 + 0.009229340600872195 + 0.005816085724086808 + 0.00567209488892707 + 0.00632798784522713 + 0.006720636221912334 + 0.006621071688101826 + 0.006243274931011031 + 0.005982345542107268 + 0.006203352404816536 + 0.007079917502462111 + 0.008537038198032573 + 0.01031271146698117 + 0.0120729150033493 + 0.01349732336675104 + 0.0143182487748526 + 0.01435886372122207 + 0.01359978950784427 + 0.01223001305760808 + 0.01060743139156985 + 0.009117728578609948 + 0.008014582943366525 + 0.00734498009002868 + 0.006993288028988779 + 0.00679970935591075 + 0.006685787066778451 + 0.006723573012006128 + 0.007085435598156195 + 0.007862968049304956 + 0.008888262924306395 + 0.009816140180222819 + 0.01065153672238655 + 0.01263064257654533 + 0.0191055028015066 + 0.0360299241544583 + 0.0815131601163393 + 0.03870321205349508 + 0.01737853657122484 + 0.008544237542357945 + 0.005832673012113397 + 0.005478882124171938 + 0.005680143504814284 + 0.00580030742009069 + 0.005762023142379099 + 0.005716105732131889 + 0.00588093887073215 + 0.006423145288906559 + 0.007355637854941429 + 0.008512550866043297 + 0.009631426504251576 + 0.01048158541261814 + 0.01094090274199261 + 0.01098554927360077 + 0.01064525242722264 + 0.009991043540340826 + 0.009154948087799092 + 0.008322045701113322 + 0.007662311925821905 + 0.007247794305453819 + 0.007026865000615102 + 0.006870795341724798 + 0.006650789019344105 + 0.006311535657137492 + 0.005928947741512196 + 0.005710405667403106 + 0.005881080253890397 + 0.00650770706231709 + 0.00747705955694342 + 0.008857435515839104 + 0.01164847952754831 + 0.0186491365497733 + 0.03506381241877471 + 0.0695394409885296 + 0.0325105467569233 + 0.01504383802346911 + 0.008274603709700861 + 0.006284767713685773 + 0.005875158980390638 + 0.005738366723350328 + 0.005555328482306532 + 0.005373470827797367 + 0.005328397741837188 + 0.005557281651022156 + 0.006137849133522747 + 0.007013767617504886 + 0.007974472594940534 + 0.00874054728641234 + 0.009105671933418293 + 0.009026645774132041 + 0.008602143588024577 + 0.007983791564164821 + 0.007308938260163102 + 0.006691480226023015 + 0.006229195862367394 + 0.005981263732569236 + 0.005933340959773155 + 0.00599995517814721 + 0.006067502448706455 + 0.006035271076475484 + 0.005842945675547854 + 0.005516425229498423 + 0.00521713125190231 + 0.005204508716150184 + 0.005683980934845874 + 0.006707539157976884 + 0.008388621937524567 + 0.01152849107660513 + 0.01846307155394337 + 0.03377151448568105 + 0.05999852410008757 + 0.02749065773183883 + 0.01309958896061577 + 0.008070580449552079 + 0.006802393086087758 + 0.006480875015822257 + 0.006132385301699354 + 0.005657323453176025 + 0.005205554709519823 + 0.004934791540059583 + 0.004970989049061897 + 0.00538055640480641 + 0.006103930903303793 + 0.006924647578104536 + 0.007545062652256239 + 0.007737400643739989 + 0.007457989851242858 + 0.006840864003729442 + 0.006094180247649649 + 0.005397152739724848 + 0.004864035397341017 + 0.004554584091464499 + 0.004478078250995751 + 0.004587102783150817 + 0.004795847279249235 + 0.005019425025327667 + 0.005188078585442772 + 0.005235257336230615 + 0.005125707649079192 + 0.004940037979505897 + 0.004907428866244175 + 0.005290725423880874 + 0.006237074468412485 + 0.007875709361981068 + 0.01084008762862537 + 0.01709571049575146 + 0.03073285688872966 + 0.05312214302361207 + 0.02384825391192631 + 0.01168965679474728 + 0.007990787889219531 + 0.007350583488181657 + 0.007182566666468364 + 0.00671091946182295 + 0.005976347044021869 + 0.005211393959820012 + 0.004616025153828198 + 0.004341154834898229 + 0.004478681517013048 + 0.004997770406015943 + 0.005700421605927413 + 0.006281087209596707 + 0.00647863410404802 + 0.006213496702823715 + 0.005607097052982827 + 0.004881833697049005 + 0.004236366202541008 + 0.003785895791627678 + 0.003569612583220752 + 0.00357123097979912 + 0.003731487269498646 + 0.00397590066753258 + 0.004252069207254208 + 0.004526685937701053 + 0.004741887977008326 + 0.004819395109616313 + 0.004761110491242219 + 0.004736335248008183 + 0.005008396742496347 + 0.005760646073212426 + 0.007109435466108059 + 0.009545210817740353 + 0.01474552383285001 + 0.02643387276201888 + 0.04913555683398215 + 0.02181500794317764 + 0.0109893077610764 + 0.008108483634915654 + 0.007885130538586279 + 0.007838110120107477 + 0.007283135392556021 + 0.006337951061156841 + 0.005296316335758226 + 0.004402217546129647 + 0.003837026525078036 + 0.00371898860983555 + 0.004046257904993295 + 0.004646518733131094 + 0.005220752436054021 + 0.005486636119654346 + 0.005327811347609764 + 0.004837365966236863 + 0.004229976910537616 + 0.00370625653548816 + 0.003374401987106608 + 0.003253769364393224 + 0.003308639896059961 + 0.003474983225454739 + 0.003692820179462764 + 0.003940812931331286 + 0.004223513219653356 + 0.004505629401140545 + 0.004690997004761684 + 0.004722733486533176 + 0.004706356891691503 + 0.004875825193239522 + 0.005414122797891377 + 0.00640951513914838 + 0.008235452706949588 + 0.01235043623052739 + 0.02220495704442391 + 0.04799266974735799 + 0.02141048199817986 + 0.01101112151618533 + 0.008375686560586798 + 0.008278857686718703 + 0.008258299138858465 + 0.007639004649040479 + 0.00655969555479417 + 0.005346759306215696 + 0.004274348805480796 + 0.003540294440742615 + 0.003269195050552745 + 0.003469108403179275 + 0.003987806682169081 + 0.00454616691462089 + 0.004864626393807809 + 0.004808816458419593 + 0.004447289960743764 + 0.003978338979213869 + 0.003592655661732317 + 0.003383399217041948 + 0.003348168207069417 + 0.003435732398950992 + 0.00358441168376226 + 0.003753020713985356 + 0.003947837205147618 + 0.004203927419478777 + 0.004508909635869166 + 0.004763271010857146 + 0.004871658848835669 + 0.004885870996059753 + 0.00500427656331461 + 0.005398798862532545 + 0.006134338032709082 + 0.007499751107921483 + 0.0107911956014687 + 0.01924950602781702 + 0.04927370306975191 + 0.02238073865732222 + 0.01159505074411291 + 0.008666877068398313 + 0.00841167772413738 + 0.008328708090271971 + 0.007685434255871946 + 0.006585164550793776 + 0.00534927402728918 + 0.004259233466549376 + 0.00351053127937679 + 0.003211939706342266 + 0.00335946480643254 + 0.003811267345912158 + 0.004318929505767458 + 0.004631392638868471 + 0.0046209049906732 + 0.004342254218873081 + 0.003974324979664409 + 0.003690185615017734 + 0.003563701313213233 + 0.003572703355673247 + 0.003658344136298095 + 0.003772388222895072 + 0.003899818329121971 + 0.004070279290788639 + 0.004333933631088738 + 0.004686780912019952 + 0.005025103300425183 + 0.005227881182560402 + 0.005308219623987062 + 0.005438260427264807 + 0.005787845002464033 + 0.006418903534933132 + 0.007572481880177831 + 0.01042810515377114 + 0.01805559043645778 + 0.05220537599544843 + 0.02424765724258295 + 0.01248777902255872 + 0.008881398610348824 + 0.008282022398218195 + 0.008114164423031896 + 0.00753207752897975 + 0.006547502130060977 + 0.005435674489194385 + 0.004463584619332415 + 0.003814204437744874 + 0.00357094834100917 + 0.003705980675189106 + 0.004081572973573457 + 0.004488055829053061 + 0.004723432507356173 + 0.004687055254230969 + 0.004428938426691912 + 0.004106093056939311 + 0.003868965189541493 + 0.00377201046785987 + 0.003778952913061402 + 0.003832515501101979 + 0.003908045068063999 + 0.004022676848969246 + 0.004224007279036103 + 0.004559061002299547 + 0.005011418560293809 + 0.005464180938007829 + 0.005777962680412419 + 0.005942570322663409 + 0.00611865135358684 + 0.006489177583223115 + 0.007135851010210591 + 0.008283868074745558 + 0.01102948624697782 + 0.01829403107874672 + 0.0557827047876211 + 0.02641594562867051 + 0.0134309743531132 + 0.009006079237892888 + 0.008035143663552865 + 0.007846912095656597 + 0.00744145209623235 + 0.006693296408640692 + 0.005799263788698357 + 0.005001651114883568 + 0.004476995467383165 + 0.004292152656262034 + 0.004398229016449075 + 0.004660942585768867 + 0.004913201457839674 + 0.005012595294348262 + 0.004896089144715368 + 0.0046120772683634 + 0.004292496428070345 + 0.004063187265761839 + 0.003963024521704405 + 0.003948499113309377 + 0.003968999265822226 + 0.004025353604635457 + 0.004165352279477762 + 0.004447015470264321 + 0.004899453145481748 + 0.005478306615488393 + 0.006048054053015879 + 0.006459175558324747 + 0.006692329145241719 + 0.006907383409473759 + 0.00730737977212678 + 0.008003568897123311 + 0.009221403910295122 + 0.01199243243819631 + 0.01910382874402489 + 0.05897487840831431 + 0.02830532794445235 + 0.01421795782268385 + 0.009099857455844065 + 0.007883565893506637 + 0.007796012762512764 + 0.007666356836640311 + 0.007211597154599451 + 0.006539554073698708 + 0.005875023920697224 + 0.005409113210576596 + 0.00521445402821382 + 0.005233988084646131 + 0.005338882062976607 + 0.005401850471592657 + 0.005338001708424267 + 0.005120460732414251 + 0.004793074905102474 + 0.004460186295123553 + 0.004225696330393305 + 0.004121104360873171 + 0.004102554508439136 + 0.004124559583193888 + 0.004203826508646413 + 0.004407093896777371 + 0.004792994994380466 + 0.005365314028827923 + 0.006048792240952556 + 0.006694961213017959 + 0.007157683676630455 + 0.007420567049018748 + 0.007643679727395263 + 0.008040057639869667 + 0.008738448254055993 + 0.00995907942191423 + 0.01267237506407917 + 0.01954326964473219 + 0.06096727145758604 + 0.0294790438181756 + 0.01471405626412342 + 0.009223571231587797 + 0.007972238800353078 + 0.008097859512056819 + 0.008275392288254163 + 0.008079619291645379 + 0.007545738945311068 + 0.006902324527538862 + 0.006380676122148586 + 0.00608297261779984 + 0.00595800236947454 + 0.005882917753741117 + 0.005760374125162528 + 0.00554953332365777 + 0.005248135712198233 + 0.004888666161974807 + 0.004547859791091733 + 0.00431559634252915 + 0.004228079423912703 + 0.004247801721601606 + 0.004327629043963685 + 0.004481808698820276 + 0.004776787551617274 + 0.005261254561069353 + 0.005914185271276805 + 0.006639206935495637 + 0.007291617137721635 + 0.007746920601557364 + 0.008000944058772257 + 0.008204902039798864 + 0.008555572075127709 + 0.009167568169111146 + 0.01023241823320216 + 0.01265233928096014 + 0.01898293275612715 + 0.06135489402927805 + 0.02973276389875226 + 0.014853803412784 + 0.009371326253387989 + 0.008277262461172278 + 0.00865520942152897 + 0.009077902808769259 + 0.009027533514392654 + 0.008503306433113901 + 0.007760673710138184 + 0.007086436189583887 + 0.006624484099944457 + 0.006337094445946763 + 0.006105449633753082 + 0.005848887823284969 + 0.005551417559995542 + 0.005219028864920589 + 0.004865484016837755 + 0.004542884632550792 + 0.004337886399054702 + 0.004303860318994481 + 0.004414606338813241 + 0.004611993976531076 + 0.004886891146439767 + 0.005284937525480932 + 0.005836477253625506 + 0.00650254682897715 + 0.007183522156721435 + 0.007760937577397129 + 0.008151468280028754 + 0.008369837451128436 + 0.008544268239322503 + 0.008822087462626301 + 0.009264185153887163 + 0.01000311349909572 + 0.01186283696934778 + 0.01730483941441545 + 0.06020472465635549 + 0.02911287457932115 + 0.01463072440138604 + 0.009453835855444162 + 0.008606278146734331 + 0.00917267522327888 + 0.009701518556944819 + 0.009652386328056536 + 0.009029447971713157 + 0.008124805396212473 + 0.007273716354253021 + 0.006655033704455364 + 0.006243902998183047 + 0.005924260697388691 + 0.00562224487673599 + 0.005329773520427132 + 0.00504658292876782 + 0.004763124648067223 + 0.004511830231265887 + 0.004385134514361104 + 0.004460539812375973 + 0.004722827471989944 + 0.005092213369327539 + 0.005518110405720013 + 0.006009498409577668 + 0.006574641129682349 + 0.007167525089658787 + 0.007705703410017309 + 0.008119651132549571 + 0.008385413315485642 + 0.008542979782588344 + 0.008686202572817865 + 0.008885256282646402 + 0.009114160800014473 + 0.009422232604228321 + 0.01054984494740684 + 0.01488151873680901 + 0.05796160320585765 + 0.02786025296845327 + 0.01409004152794145 + 0.009347210530638743 + 0.008704805086488117 + 0.009313704120336476 + 0.009783425367187393 + 0.009620461340771987 + 0.008862516416732316 + 0.007825580829696012 + 0.006861855706565247 + 0.006161582125433592 + 0.005707566132203937 + 0.005390317257114468 + 0.005141610759155342 + 0.004952469085492738 + 0.00480857814272371 + 0.004677385607217269 + 0.004577351609380902 + 0.004610094235525178 + 0.004874341877906223 + 0.005357621617110173 + 0.005947010790525638 + 0.006538104067481515 + 0.007094722648716224 + 0.007603992298082059 + 0.008024655747943763 + 0.00831002854877908 + 0.008459253800628504 + 0.008524344010056202 + 0.008579971021489047 + 0.008683881271216552 + 0.008816396922377725 + 0.008848236407945805 + 0.008735844293288409 + 0.009140046498901357 + 0.01238654646108066 + 0.05525149796465356 + 0.02630996062836676 + 0.01332553326141273 + 0.00897583787844531 + 0.00840472366536784 + 0.008887535424531436 + 0.009165528714432537 + 0.008842454274037312 + 0.007996936262301999 + 0.006936341591846747 + 0.005983805004005019 + 0.005310700029034636 + 0.004903333999255848 + 0.004668831366764485 + 0.004551608557851388 + 0.004541061145310631 + 0.004608190085663235 + 0.00470271597039957 + 0.004835183088928351 + 0.005114278697469758 + 0.005648541796663772 + 0.006414665638693557 + 0.00725713411769219 + 0.008012876063841915 + 0.008598927007988604 + 0.008983783279999168 + 0.009138985720020257 + 0.009066039077135997 + 0.008847043933250061 + 0.008624618665365756 + 0.008521770730930309 + 0.00857025047335034 + 0.00866565619278043 + 0.008578624545456775 + 0.008180107371582136 + 0.008066214888117706 + 0.01052320299773757 + 0.05268214531344047 + 0.02479360173269357 + 0.0124729117837107 + 0.008373308385965863 + 0.007722575079341541 + 0.007953925095487084 + 0.007979259361763203 + 0.007520983293625954 + 0.006687441057289429 + 0.005738865973459316 + 0.004926390049271287 + 0.004378201080542298 + 0.004084202165593491 + 0.003980013116083616 + 0.00403096317991053 + 0.00422651607835754 + 0.004525896427831521 + 0.004869368300911997 + 0.005266236449798427 + 0.005828411646911558 + 0.00666164296707729 + 0.007721584591376991 + 0.008809715091347585 + 0.009710089314934594 + 0.01029703670162787 + 0.01052014304717372 + 0.01036229169113835 + 0.009873957432935287 + 0.00922448910952027 + 0.008655827216504904 + 0.008353242806985826 + 0.00834037618674199 + 0.008447292547655388 + 0.008364411076564595 + 0.007899748311920193 + 0.007610280427064065 + 0.009765950641261791 + 0.05072577051765416 + 0.02358035788012554 + 0.01169116878382925 + 0.007679442879427827 + 0.006848097059371155 + 0.006785428520649976 + 0.006573819102164641 + 0.006047436269452207 + 0.005324984581787981 + 0.004592111477098383 + 0.004004409786339543 + 0.00363704410996501 + 0.00348653216629208 + 0.003523052973021198 + 0.003733864915241097 + 0.004106298297253827 + 0.004589979399089682 + 0.005124012180036939 + 0.005723102878328279 + 0.006500414925206709 + 0.007553206326584197 + 0.008819214838718746 + 0.01007371404002944 + 0.01106854477150508 + 0.01164551903508404 + 0.01173007280134129 + 0.01130176039103876 + 0.01044420578739047 + 0.009401996269421297 + 0.008511525711832339 + 0.00802599390768982 + 0.007978188209613287 + 0.008158685746873657 + 0.008208839953054181 + 0.007908321122487814 + 0.007810995043614991 + 0.01020097684155183 + 0.04971015968415202 + 0.02286809076683531 + 0.01113519292393481 + 0.007077983780255907 + 0.006038121804603053 + 0.005719571812895273 + 0.00533946897856819 + 0.004815979550988508 + 0.004261269020824263 + 0.003780951815980996 + 0.003438074553064073 + 0.003260178326707395 + 0.003251896242262721 + 0.003412567383712691 + 0.003741723751670927 + 0.004217497398233704 + 0.00478053934590869 + 0.005374737354105141 + 0.006023841811419046 + 0.006841034021169605 + 0.007917977449304586 + 0.009194078263628612 + 0.01045497455749104 + 0.01145735708573779 + 0.01202842224694809 + 0.01206166251334112 + 0.01150769684416358 + 0.01045110761858543 + 0.00918027516814743 + 0.008101307733468318 + 0.007524757757825832 + 0.007501263760329562 + 0.007808112090337948 + 0.008074841682134558 + 0.008095597693487925 + 0.008465500196128461 + 0.01152146190453624 + 0.04988446309159651 + 0.02281407589407519 + 0.01093789395031278 + 0.006724386595796447 + 0.005494566785125904 + 0.005002088227993888 + 0.004538587740363757 + 0.004066379007639852 + 0.003681241496551536 + 0.003424972433746242 + 0.003293115065085584 + 0.003280193108378278 + 0.003394927687601646 + 0.003649588548455922 + 0.00404075726708769 + 0.00453192685480668 + 0.005057765705472202 + 0.005569783154496469 + 0.006096676942327266 + 0.006744412495800628 + 0.007603005391007725 + 0.008641341292579929 + 0.009703604955770046 + 0.01059925994145822 + 0.01116647125143141 + 0.01126253400051497 + 0.01078217177986807 + 0.00977137571860457 + 0.008517087181369266 + 0.007452368178597378 + 0.006917394728488077 + 0.006978240549668672 + 0.007421487775468526 + 0.007903185669382175 + 0.008276681933536745 + 0.009224088641580835 + 0.01317601590709009 + 0.0514931390842435 + 0.02357885395695828 + 0.01121722806528761 + 0.006717056332952761 + 0.00530813775656375 + 0.004717141369195179 + 0.004239201452461108 + 0.003835599784397283 + 0.003580614062911562 + 0.003480434825347649 + 0.003498214954633701 + 0.003610990804740089 + 0.003821306756033886 + 0.004134010419743891 + 0.004532427927820558 + 0.004971191800699468 + 0.005389837557727614 + 0.005747782125292413 + 0.006063088274760518 + 0.006413680537214826 + 0.006881189939392545 + 0.007484396601211109 + 0.008168983411675398 + 0.008843003733438033 + 0.009384616634950205 + 0.00962004993740051 + 0.009372927156353189 + 0.008619477168001632 + 0.007600973148149753 + 0.006728803975885355 + 0.006336562148247275 + 0.00649646997947096 + 0.00702239656807193 + 0.007630096967676005 + 0.008268369930375125 + 0.009740701954976717 + 0.01460201922193547 + 0.05478969565533509 + 0.02534286800236063 + 0.0120947606659891 + 0.007120048141718829 + 0.005488085851183813 + 0.004826574929759022 + 0.004365027598408611 + 0.004017972958922476 + 0.003832792380463934 + 0.003808415088157447 + 0.003908799931245931 + 0.004104325114184398 + 0.004377698349036062 + 0.004710001124147705 + 0.005073945215769371 + 0.005436816190700675 + 0.005763048491931932 + 0.006018110104687157 + 0.006182915359753394 + 0.006271902550373138 + 0.00633509857797509 + 0.006442060609357532 + 0.006661503513563115 + 0.007029030448858576 + 0.007487417845411959 + 0.007847730585238032 + 0.007868362870467925 + 0.007447305855448528 + 0.006753609455015995 + 0.006139193026145192 + 0.00590019312937811 + 0.006106534914398165 + 0.006612497358020303 + 0.007213966814081533 + 0.007970484281595547 + 0.009815584183491098 + 0.01543520699947179 + 0.05994826850693848 + 0.02825353776603844 + 0.01368166859887432 + 0.007989280615044069 + 0.006024445230238536 + 0.005258470269386679 + 0.004797466061327659 + 0.004467704328206683 + 0.004281828860399322 + 0.004253125504213288 + 0.004371673775473012 + 0.004606778703433752 + 0.00490860754936309 + 0.005226252920186933 + 0.00553632681970157 + 0.005849704186315019 + 0.006178397941972664 + 0.006488893197381728 + 0.006693619747252915 + 0.006703133035958823 + 0.006503501923976063 + 0.006197435285809374 + 0.005971580886085915 + 0.005993009351671659 + 0.006281961305760238 + 0.006656733100819698 + 0.006837013385638534 + 0.006660549134410664 + 0.006223311086378397 + 0.005801648666550227 + 0.005638855173707465 + 0.005800237132366749 + 0.006187188837088241 + 0.006676461204894774 + 0.007423758407484291 + 0.009467531477982917 + 0.01560137680826234 + 0.06688627491138799 + 0.03229142170940333 + 0.01599595424092009 + 0.009343656714637305 + 0.006907536207734273 + 0.005961633131069397 + 0.005447607373752814 + 0.005071976231645703 + 0.004805613540198254 + 0.004691930227422419 + 0.004765904540393193 + 0.004999710897777147 + 0.005302705404121559 + 0.005590025555539902 + 0.005858412654294266 + 0.006187467845653479 + 0.006649851212045841 + 0.007202746921892982 + 0.007663520269244589 + 0.007810477693813139 + 0.007542234663140604 + 0.006972822315666836 + 0.0063838600598158 + 0.006055860080697965 + 0.00608525061948815 + 0.006319234186125732 + 0.006475770334818615 + 0.006366980383676935 + 0.006034315345285213 + 0.00568217192276175 + 0.00550115579512612 + 0.005554794169104221 + 0.005789056555514971 + 0.006140010985747954 + 0.006815599509007968 + 0.008904844947072924 + 0.01526263204897513 + 0.07508541979561 + 0.03711100817605097 + 0.01883423896717758 + 0.01107596212741308 + 0.008078912198516494 + 0.006890042838565843 + 0.006263022882392355 + 0.005768647021683359 + 0.005336530039790865 + 0.005056055012694518 + 0.005024621903332089 + 0.005224148838517106 + 0.005520815459785234 + 0.00579504468355276 + 0.006069489232177317 + 0.006496991252987352 + 0.007204041158662866 + 0.008122253807702585 + 0.008961038248572039 + 0.009364955933733776 + 0.00914743410548758 + 0.008424616311220903 + 0.007547568211026137 + 0.006881559573647373 + 0.006587696117906673 + 0.006557461881403608 + 0.006540782585730867 + 0.006357947498318446 + 0.006017605728404412 + 0.005663086517696817 + 0.005439279301535534 + 0.00541023945945897 + 0.00555292664199518 + 0.005823169450009751 + 0.00641938734438377 + 0.008414628318700604 + 0.01467392682161895 + 0.08355278132301851 + 0.04197540010211547 + 0.02169213791209379 + 0.01287261202479555 + 0.009361506973372331 + 0.007949582934302287 + 0.007192555486600488 + 0.006527591411637767 + 0.0058567206422923 + 0.005336708150601784 + 0.005147614906004491 + 0.005292967423480544 + 0.005598789469308489 + 0.005907677178526069 + 0.006258214610924277 + 0.006856453988846887 + 0.00785619560879504 + 0.009145332190486747 + 0.0103312029876912 + 0.01095374221136515 + 0.01077233501428107 + 0.00991404378733691 + 0.008780442952751493 + 0.007792698323499548 + 0.007161552489918029 + 0.006830736238352407 + 0.006603450471104116 + 0.006327300720260901 + 0.005988539602745434 + 0.005675112508301136 + 0.005490783484981179 + 0.005497341445834568 + 0.005680240074115149 + 0.005967901120424587 + 0.006487454040983022 + 0.008238779223340851 + 0.0140612665831326 + 0.09104690483723862 + 0.04590496606110799 + 0.02384310671229637 + 0.014237567444371 + 0.01044697388805771 + 0.008966638022882239 + 0.008150511541466279 + 0.007319996718621166 + 0.006377063218139464 + 0.005573461610613888 + 0.005193762132711409 + 0.005277308912993737 + 0.005615842019887516 + 0.006008768854121871 + 0.006490052680426583 + 0.007285247397060881 + 0.008542804242742163 + 0.01009700809915178 + 0.01147878293555829 + 0.01217394289368153 + 0.01193336899307245 + 0.01090970241951634 + 0.009537725889844452 + 0.008267141189362828 + 0.007343811633439173 + 0.00676681189982004 + 0.006401477862078099 + 0.006125607998098543 + 0.005900157153013804 + 0.005756374470753759 + 0.005758326152982435 + 0.005959725963530278 + 0.00633016522638991 + 0.006728337267608805 + 0.007163996935196616 + 0.008531128860487205 + 0.01363397142315226 + 0.09658792355593797 + 0.0480736068105596 + 0.02461922355646885 + 0.01466749948678058 + 0.01098435408896871 + 0.009713840076529206 + 0.009002285964769289 + 0.008082268244706045 + 0.006891959552733986 + 0.005806733579391415 + 0.005232617048134412 + 0.005254075416437002 + 0.005632324897118757 + 0.006117641874358734 + 0.006719534091131977 + 0.007655221871962043 + 0.00905013734124728 + 0.01069666652140543 + 0.0120934396671294 + 0.01272811650426535 + 0.01237917430121182 + 0.01122256892428792 + 0.009694821935926832 + 0.008240468979136838 + 0.007124799880414216 + 0.006403370517422253 + 0.006007230254339841 + 0.00584182793182335 + 0.005839206124928238 + 0.005977544441975372 + 0.006289783432560422 + 0.006822304405857284 + 0.007512459384416196 + 0.008121086272773239 + 0.00851657311585823 + 0.009480024306737601 + 0.01379305606764713 + 0.1001238671948488 + 0.04835830622880941 + 0.02383278698419078 + 0.01394666527535911 + 0.0107619427366971 + 0.01000081456638159 + 0.009588043667550625 + 0.008694244618422222 + 0.007329523518984609 + 0.006013807893649917 + 0.005277708794362934 + 0.005246166673802153 + 0.005644764892641986 + 0.006167751141483886 + 0.006789801604069802 + 0.007713933038860885 + 0.009056704929435219 + 0.01061134467950106 + 0.01190400740338153 + 0.01247180555228586 + 0.01212826955325386 + 0.01103489500401627 + 0.009569509958015952 + 0.008120968735243159 + 0.00695133938920585 + 0.006172475738316962 + 0.005788259433815877 + 0.005740161238648388 + 0.005947157422255999 + 0.006362496929964939 + 0.007020103469983711 + 0.007979058640793554 + 0.009144816316287751 + 0.01016950245643352 + 0.01077368335880424 + 0.01163210407739295 + 0.01552095995700832 + 0.1031270557684394 + 0.04786399956361064 + 0.02221440949424 + 0.01249170041270057 + 0.009963459099748989 + 0.00985491054309108 + 0.009844410510188814 + 0.009057194197948489 + 0.007599079727230497 + 0.006138643643868429 + 0.005313621507327155 + 0.005265064772944399 + 0.005663998244397815 + 0.006138176951238825 + 0.0066274668256908 + 0.007339988550410527 + 0.008431357291760977 + 0.009767085950249251 + 0.01096977270086239 + 0.01165734706399758 + 0.01165121177421694 + 0.01102160556902457 + 0.009995185578003872 + 0.00883321909398839 + 0.007759965509109614 + 0.006940727272158725 + 0.006468975985622373 + 0.006355281756624016 + 0.00655880807311923 + 0.007078113301492249 + 0.008018196742461641 + 0.009500418161223536 + 0.01142028914935913 + 0.01332512523111318 + 0.01478744939707358 + 0.0163768216004201 + 0.02086321515727819 + 0.1089078091419598 + 0.04926047235041901 + 0.02176199899718254 + 0.01170185676561564 + 0.009513510812354782 + 0.0098603941167008 + 0.01013726645606133 + 0.00941867399785061 + 0.007905187362404387 + 0.006393833937987432 + 0.005590559571055855 + 0.005611420922990318 + 0.006043312582667347 + 0.006434179961868622 + 0.006695933996337726 + 0.007077037246805473 + 0.007838941928446046 + 0.009001976322945436 + 0.01034862724279279 + 0.01158668589003489 + 0.01248741576580656 + 0.01292375753210173 + 0.01285588730340315 + 0.01232834784847889 + 0.01148065318491789 + 0.01052539208312422 + 0.009675331576786645 + 0.009075999883806047 + 0.008827834690427406 + 0.009096863694363959 + 0.01017497302712224 + 0.01233008002871989 + 0.01549275590398881 + 0.01911988859177347 + 0.02263083910652349 + 0.026468944402961 + 0.03335937249410559 + 0.1225436189378786 + 0.05685688673795187 + 0.02595906592875874 + 0.0143083784002339 + 0.01154026781180608 + 0.01171448869886186 + 0.01188924804981063 + 0.01104718049695957 + 0.009443750306407523 + 0.007954473077334982 + 0.007299191108434268 + 0.007525582937895971 + 0.008112811780698214 + 0.008524893191394822 + 0.008661325570435611 + 0.008850676530754628 + 0.009522636837732286 + 0.01091760445792561 + 0.01301205372489158 + 0.01557857016228878 + 0.01825112946279182 + 0.02058031802452968 + 0.02213308063814508 + 0.02263850513504963 + 0.02209569938501183 + 0.02075744378427943 + 0.01900196623949664 + 0.01721302498703072 + 0.01578544305248024 + 0.01522957629988913 + 0.01618754444860272 + 0.01919431919847216 + 0.02428421235656031 + 0.03084665872371154 + 0.03813219799828056 + 0.04640534024099817 + 0.05825783329900317 + 0.1504533143625279 + 0.07642527836424516 + 0.03985440232139564 + 0.02469531475632513 + 0.01990783424760329 + 0.01893378489638003 + 0.01841909931861103 + 0.017162002391483 + 0.0153798336198302 + 0.01394298422609274 + 0.01352613050505717 + 0.01408607094328833 + 0.01500578669637648 + 0.01569706395490345 + 0.01608689250067203 + 0.01662744979524142 + 0.01795753704350271 + 0.0205584329767584 + 0.02457784596826143 + 0.02977404938882952 + 0.03551762227376854 + 0.04089050070480302 + 0.04492948592193755 + 0.04694226137872529 + 0.04672652422557144 + 0.04457208191862213 + 0.04109080256746705 + 0.0370496024729679 + 0.03334428962275059 + 0.03106029741811592 + 0.03139978392073886 + 0.03532178978137621 + 0.04305844899197971 + 0.05396530110186454 + 0.06709887813475532 + 0.08245975080074849 + 0.1023637819456325 + + diff --git a/test_gpstuff/octave/realValues_regression_additive1.mat b/test_gpstuff/octave/realValues_regression_additive1.mat new file mode 100644 index 00000000..c6a8fcf0 --- /dev/null +++ b/test_gpstuff/octave/realValues_regression_additive1.mat @@ -0,0 +1,3401 @@ +# Created by Octave 3.8.1, Tue Jun 07 13:53:44 2016 EEST +# name: Eft_fic +# type: matrix +# rows: 1131 +# columns: 1 + -26.16425942377652 + -26.16711895234648 + -26.18603683487316 + -26.23346959171066 + -26.3094466488008 + -26.38521204455387 + -26.41381597544108 + -26.37126720548659 + -26.28155820362045 + -26.19164000621559 + -26.13026980748532 + -26.09741941378105 + -26.08063353660134 + -26.06986469842031 + -26.060572848748 + -26.05138099984529 + -26.04199173287054 + -26.03235840648582 + -26.02247611279585 + -26.01234505312257 + -26.00196590102743 + -25.9913393688818 + -25.9804661775213 + -25.96934705458906 + -25.95798273441025 + -25.94637395792862 + -25.93452147264345 + -25.9224260325478 + -25.9100883980646 + -25.89750933598359 + -25.88468961939781 + -25.87163002763878 + -25.85833134621227 + -25.84479436673368 + -25.8310198868622 + -25.81700871023574 + -25.80276164640446 + -25.78827951076487 + -25.77356312449291 + -25.75861331447696 + -25.74343091324921 + -25.72801675887756 + -25.71237169388326 + -25.69649654592299 + -25.68039185226298 + -25.6640549124031 + -25.64745650904097 + -25.63040803594221 + -25.61203470345873 + -25.58945123300131 + -25.55627173765747 + -25.50457989287377 + -25.43435826459737 + -25.36388592921691 + -25.32300629999732 + -25.3269699286174 + -25.36052808573697 + -25.39383918028489 + -25.4086259577766 + -25.40490767373392 + -25.39060247359979 + -25.3720980644519 + -25.35228154417522 + -25.33202952069924 + -25.31153241738133 + -25.29082126734323 + -25.26990058545634 + -25.24877164723299 + -25.22743543605823 + -25.20589291857103 + -25.18414506383802 + -25.16219284429148 + -25.1400372356938 + -25.11767921706193 + -25.09511977059052 + -25.07235988157517 + -25.04940053833491 + -25.02624273213495 + -25.00288745710906 + -24.97933571018146 + -24.95558849098945 + -24.9316468018043 + -24.90751164745372 + -24.88318403524269 + -24.85866497487504 + -24.83395547837445 + -24.80905656000519 + -24.78396923619327 + -24.75869452544369 + -24.73323344817301 + -24.70758702441078 + -24.68175623162025 + -24.65574140218216 + -24.6295357774308 + -24.60307459549857 + -24.57594449447302 + -24.54623139086781 + -24.50762416802332 + -24.44615572266101 + -24.34451181078282 + -24.20265338344548 + -24.06055661726607 + -23.98348936885953 + -24.00480428598866 + -24.09115080192261 + -24.17726314091556 + -24.22316720689436 + -24.22890412885845 + -24.21179023021146 + -24.18579469282447 + -24.15723071097426 + -24.12801444462637 + -24.09856133087211 + -24.06893820529544 + -24.03915389865372 + -24.00921014887105 + -23.97910804684023 + -23.94884863877698 + -23.91843296823811 + -23.88786207825764 + -23.85713701135374 + -23.82625880944932 + -23.79522851379059 + -23.764047164865 + -23.73271580231957 + -23.70123546487934 + -23.66960719026516 + -23.63783201511266 + -23.60591097489025 + -23.57384510381757 + -23.54163543478431 + -23.50928299926863 + -23.47678882725569 + -23.44415394715696 + -23.41137938572838 + -23.37846616798978 + -23.34541531714691 + -23.3122278546025 + -23.27890480218584 + -23.24544722591289 + -23.211856863257 + -23.17814283553238 + -23.14437466544312 + -23.11098489187931 + -23.0799688391893 + -23.05790071041068 + -23.05932732000586 + -23.10228104829266 + -23.1868046344269 + -23.27127069385636 + -23.28771418049605 + -23.20140516168648 + -23.04707553964745 + -22.89269232986775 + -22.77988488599073 + -22.70861243748264 + -22.66084457202246 + -22.62203644236297 + -22.58561581174381 + -22.54958932100056 + -22.51352639517702 + -22.47735947409747 + -22.44108139741471 + -22.40469238690593 + -22.36819333393315 + -22.33158517201782 + -22.2948688329255 + -22.2580452442815 + -22.22111532940542 + -22.1840800072343 + -22.14694019224974 + -22.10969679440547 + -22.07235071905475 + -22.03490286687837 + -21.99735413381351 + -21.95970541098238 + -21.92195758462142 + -21.88411153601117 + -21.84616814140627 + -21.80812827196632 + -21.76999279368631 + -21.7317625673287 + -21.6934384483551 + -21.65502128685855 + -21.6165119274959 + -21.57791120940566 + -21.53921996574454 + -21.50043901609277 + -21.46156905863829 + -21.42260951722381 + -21.3835494353205 + -21.34431550080576 + -21.30456598133926 + -21.26317269977848 + -21.21763814869553 + -21.16486615599359 + -21.10485032637148 + -21.04474124653529 + -20.99621308138951 + -20.96523174255324 + -20.94583282281001 + -20.92634366154187 + -20.89961517609794 + -20.86565526548638 + -20.82756160504746 + -20.78783320487328 + -20.74759974407579 + -20.70720445615386 + -20.66672215346268 + -20.62616529172273 + -20.58553594512625 + -20.54483491224855 + -20.50406286888733 + -20.46322047576236 + -20.42230838599693 + -20.38132724546697 + -20.3402776927689 + -20.29916035917475 + -20.25797586858582 + -20.21672483748804 + -20.17540787490794 + -20.13402558236958 + -20.09257855385211 + -20.05106737574775 + -20.00949262682139 + -19.96785487817095 + -19.9261546931877 + -19.88439262751816 + -19.84256922902724 + -19.80068503776113 + -19.75874058591215 + -19.71673639778343 + -19.67467298975716 + -19.63255087029338 + -19.59037054072289 + -19.54813251085547 + -19.50583752275055 + -19.46348894528629 + -19.42111168759218 + -19.37886015357901 + -19.33744624654503 + -19.29921532754932 + -19.26935689256 + -19.25430386788393 + -19.25407156425446 + -19.2538099229254 + -19.22927320435913 + -19.16807192606322 + -19.08259635042734 + -18.99709299685064 + -18.92641270386915 + -18.8705409404317 + -18.8230455597709 + -18.77873784527876 + -18.7352732150422 + -18.69194054465865 + -18.64858620882768 + -18.60518607670928 + -18.56173755735885 + -18.51824068625935 + -18.47469573071723 + -18.43110296605731 + -18.38746265997963 + -18.34377507173249 + -18.30004045207908 + -18.25625904329553 + -18.21243107917231 + -18.16855678501616 + -18.12463637765349 + -18.08067006543459 + -18.0366580482392 + -17.99260051748313 + -17.94849765612629 + -17.90434963868152 + -17.86015663122452 + -17.81591879140563 + -17.77163626846202 + -17.72730920323124 + -17.6829377281661 + -17.6385219673512 + -17.59406203651795 + -17.54955804302743 + -17.50501008497803 + -17.4604182339277 + -17.415782287377 + -17.37109912020141 + -17.32634176508578 + -17.28134000737569 + -17.23530698250882 + -17.18564909196495 + -17.1266269109761 + -17.05112567800873 + -16.95912893907806 + -16.86706234527858 + -16.80174380047078 + -16.77687735466751 + -16.77875893660819 + -16.78057062125863 + -16.76588673649824 + -16.73472371550772 + -16.6941962993121 + -16.65004389254043 + -16.60486007401741 + -16.55943168912767 + -16.51392893393885 + -16.46837875784482 + -16.42278426878789 + -16.37714565289856 + -16.33146282313673 + -16.28573566688283 + -16.23996406328946 + -16.19414788424744 + -16.14828699447736 + -16.10238125158774 + -16.05643050613276 + -16.01043460167147 + -15.96439337482778 + -15.91830665535202 + -15.87217426618355 + -15.8259960235143 + -15.77977173685368 + -15.73350120909462 + -15.68718423658074 + -15.64082060917457 + -15.59441011032697 + -15.54795251714768 + -15.50144760047703 + -15.45489512495846 + -15.40829484911399 + -15.36164652545381 + -15.31494990143364 + -15.26820473625082 + -15.22141104016788 + -15.17457163444505 + -15.12771237012692 + -15.08099753278172 + -15.03518738443818 + -14.99278837551951 + -14.95934737269177 + -14.94174048745526 + -14.93998333043588 + -14.93820026581921 + -14.91047157131179 + -14.84355200319217 + -14.75068615292831 + -14.65779309074199 + -14.58074780074012 + -14.51953402113462 + -14.46727498999068 + -14.41842319111694 + -14.37047152565575 + -14.32265908441621 + -14.2748209361216 + -14.22693058565368 + -14.1789845694945 + -14.13098223712014 + -14.08292319124929 + -14.03480704869959 + -13.98663342377158 + -13.93840192747138 + -13.89011216757997 + -13.84176374875743 + -13.79335627264852 + -13.74488933798985 + -13.696362540717 + -13.64777547407257 + -13.59912772871528 + -13.55041889282916 + -13.50164855223392 + -13.45281629049558 + -13.40392168903785 + -13.3549643272545 + -13.30594378262149 + -13.25685963081054 + -13.20771144580283 + -13.15849880000304 + -13.10922126435334 + -13.05987840840498 + -13.01046979935108 + -12.96099498158144 + -12.91145318257019 + -12.86184016483355 + -12.81212336066644 + -12.76209994524118 + -12.71083414235135 + -12.65524267036156 + -12.5885030744288 + -12.50215816048633 + -12.39618791303141 + -12.29011569181898 + -12.21581727461941 + -12.18958109931469 + -12.19511785467553 + -12.20055088982609 + -12.18635597238955 + -12.15255224597301 + -12.10759603371429 + -12.05830892073712 + -12.00777332040716 + -11.95692414235273 + -11.90596334675565 + -11.8549226388477 + -11.80380539605235 + -11.75261153348746 + -11.70134065224733 + -11.64999233375361 + -11.59856616043873 + -11.54706171695122 + -11.49547859032087 + -11.44381637008149 + -11.39207464839287 + -11.34025302016184 + -11.28835108316358 + -11.23636843816254 + -11.18430468903338 + -11.1321594428811 + -11.07993231016177 + -11.02762290480185 + -10.97523084431834 + -10.92275574993769 + -10.87019724671472 + -10.81755496365125 + -10.76482853381412 + -10.71201759445271 + -10.65912178711672 + -10.6061407577821 + -10.55307415720634 + -10.49992164557727 + -10.44668295749959 + -10.39335859620933 + -10.33995531595951 + -10.2865174139315 + -10.23325079212726 + -10.18083483567973 + -10.13077334085885 + -10.08493053362765 + -10.04331043260434 + -10.00160817618768 + -9.952795471194447 + -9.893280697390274 + -9.826654920559822 + -9.75994587964915 + -9.697457882447624 + -9.639186357163094 + -9.583266525508588 + -9.528194039952536 + -9.473288965374717 + -9.418344851272051 + -9.363316853659287 + -9.308197673387983 + -9.252986264445592 + -9.197682351780422 + -9.14228573729609 + -9.086796235074811 + -9.031213666936669 + -8.975537862292494 + -8.919768658225044 + -8.863905899577789 + -8.807949439042941 + -8.751899137248731 + -8.695754862844401 + -8.639516492585042 + -8.5831839114143 + -8.526757012546074 + -8.470235697544949 + -8.413619876404951 + -8.356909467627407 + -8.300104398296867 + -8.243204604155874 + -8.18621002967839 + -8.129120628141431 + -8.071936361695641 + -8.014657201433614 + -7.957283127452259 + -7.899814128784582 + -7.842250200927534 + -7.784591309606185 + -7.726837002454923 + -7.668983341501175 + -7.611005394066638 + -7.552787814723835 + -7.493950335587524 + -7.433651406556963 + -7.370847813743101 + -7.305537225053 + -7.240128331994946 + -7.178553720553452 + -7.122823018037863 + -7.070926831780971 + -7.018932810523426 + -6.964432497647993 + -6.907428460386738 + -6.848964148099917 + -6.789881346772823 + -6.730560560671996 + -6.671117372184597 + -6.611576951609788 + -6.551943475283116 + -6.492217634757722 + -6.432399704401236 + -6.372489929796004 + -6.31248856405497 + -6.252395870374714 + -6.192212122182719 + -6.131937603155061 + -6.071572607226399 + -6.01111743859809 + -5.950572411744256 + -5.889937851415707 + -5.82921409264199 + -5.768401480731235 + -5.707500371268077 + -5.646511130109502 + -5.585434133378476 + -5.524269767455992 + -5.463018428970221 + -5.401680524784153 + -5.340256471981331 + -5.278746697848979 + -5.217151639859186 + -5.155471745647683 + -5.093707472976384 + -5.031859289346889 + -4.969927665113081 + -4.907912975282436 + -4.845814449105545 + -4.783621873741813 + -4.721268240465767 + -4.658442002412031 + -4.594115110450462 + -4.526011955302192 + -4.451311509008498 + -4.370007806591396 + -4.288615513470614 + -4.217770672214478 + -4.162908640012635 + -4.118595261523417 + -4.074195695914323 + -4.023196479278141 + -3.965604777769805 + -3.90424282007762 + -3.841387415650846 + -3.778067813119556 + -3.714596758065941 + -3.65104245703855 + -3.587416319694785 + -3.523720312483391 + -3.459955254867044 + -3.396121869621471 + -3.33222088092246 + -3.268253021122003 + -3.204219031023516 + -3.140119659807628 + -3.075955664942974 + -3.011727812093355 + -2.947436875023463 + -2.883083635502615 + -2.818668883206474 + -2.754193415616459 + -2.68965803791777 + -2.625063562894841 + -2.560410810825399 + -2.495700609372125 + -2.430933793472736 + -2.366111205228052 + -2.301233693788109 + -2.236302115236427 + -2.171317332472363 + -2.106280215092614 + -2.041191639283884 + -1.97605248806779 + -1.910863658145804 + -1.845626159513998 + -1.780342182536241 + -1.715023526983405 + -1.649739714049907 + -1.584808735207286 + -1.521276574856355 + -1.461456773145354 + -1.408217039228497 + -1.361564949898501 + -1.314883035766446 + -1.25736645936 + -1.183494374183855 + -1.098789540308047 + -1.014058708485294 + -0.9359212607958973 + -0.8643715322553511 + -0.7965437243402427 + -0.7301262060619429 + -0.6640749004137696 + -0.5980737212600111 + -0.5320550503899391 + -0.4660089883716978 + -0.3999352422435329 + -0.3338346961821088 + -0.2677083441384127 + -0.2015571899317266 + -0.1353822401141294 + -0.06918450343659543 + -0.002964990666637135 + 0.0632752855814509 + 0.1295353110159994 + 0.1958140698397486 + 0.2621105449209331 + 0.3284237179672118 + 0.3947525696993495 + 0.4610960800259249 + 0.527453228219489 + 0.5938229930932586 + 0.6602043531783579 + 0.7265962869026765 + 0.7929977727693007 + 0.8594077895372791 + 0.9258253164014292 + 0.992249333173973 + 1.058678820465545 + 1.12511275983783 + 1.191550133242082 + 1.257989909070698 + 1.32443084011279 + 1.390869299955245 + 1.457282192771871 + 1.523529404670796 + 1.588967054531921 + 1.651475247218446 + 1.706364093530773 + 1.74782012333624 + 1.775828884902339 + 1.803808421593381 + 1.853666805593328 + 1.93659867045023 + 2.041407415922571 + 2.146183003508085 + 2.237505424275042 + 2.315387165514075 + 2.385639734416571 + 2.452951059116181 + 2.519439075933391 + 2.585745709794878 + 2.65200912139607 + 2.718250456735973 + 2.784471396141882 + 2.850671244851647 + 2.916849096983398 + 2.983004037949129 + 3.049135158772287 + 3.115241557017072 + 3.181322337002136 + 3.247376609985203 + 3.313403494346112 + 3.379402115769103 + 3.445371607424853 + 3.511311110151205 + 3.577219772633804 + 3.643096751585347 + 3.70894121192481 + 3.774752326954854 + 3.8405292785394 + 3.906271257279364 + 3.971977462688081 + 4.037647103365302 + 4.103279397170645 + 4.168873571395494 + 4.234428862931736 + 4.299944518376101 + 4.365419792548145 + 4.430853917332236 + 4.496245653587494 + 4.561588495103479 + 4.626832786456916 + 4.691669497932708 + 4.754672963076374 + 4.811145811287872 + 4.850694068361669 + 4.860433253141196 + 4.840332903580133 + 4.820136822541329 + 4.848407683434878 + 4.949960921809797 + 5.099979915456302 + 5.249900804598134 + 5.369978600596163 + 5.460242580604813 + 5.533576042067281 + 5.600371776948741 + 5.665325975375531 + 5.729863125388491 + 5.794291080642388 + 5.858658323145121 + 5.922970188628824 + 5.987226748984313 + 6.051427608595134 + 6.115572352717493 + 6.179660578926523 + 6.243691898885572 + 6.307665938528764 + 6.371582338177355 + 6.435440752651985 + 6.499240851382112 + 6.56298231851359 + 6.626664853013793 + 6.690288168773712 + 6.75385199470869 + 6.81735607485583 + 6.880800168469086 + 6.94418405011222 + 7.007507509748635 + 7.070770352828987 + 7.133972400376322 + 7.197113489068116 + 7.260193471315986 + 7.32321221534454 + 7.386169605319452 + 7.449065542777049 + 7.511899972459489 + 7.574673251095163 + 7.637390092593392 + 7.7000907282737 + 7.763028763438356 + 7.827376320539386 + 7.896996694466424 + 7.980438958738482 + 8.088300784314384 + 8.220606768451155 + 8.352890652063081 + 8.445206701934417 + 8.477142550453543 + 8.469110807342133 + 8.461057447984899 + 8.477448973753624 + 8.518261029853619 + 8.572896188022753 + 8.632805617731677 + 8.6941262674314 + 8.755686258419878 + 8.817232229611307 + 8.878724194427065 + 8.940157684279981 + 9.001532588402299 + 9.062849208706794 + 9.124107891062891 + 9.1853089995167 + 9.246452914916617 + 9.30754003483991 + 9.36857077356737 + 9.429545562057854 + 9.490464847917991 + 9.551329095369958 + 9.612138785215002 + 9.672894414794072 + 9.73359649794547 + 9.794245564958239 + 9.854842162523276 + 9.915386853680687 + 9.975880217763319 + 10.03632285033817 + 10.09671536314308 + 10.15705838402137 + 10.21735255685211 + 10.27759854147983 + 10.33779701370446 + 10.39794866685102 + 10.45805424298706 + 10.51811498072783 + 10.57813740744807 + 10.63817119062846 + 10.69852518681357 + 10.7606240055928 + 10.82916132104013 + 10.91452279533311 + 11.02958259458495 + 11.17437136607974 + 11.31916977971707 + 11.41545499556894 + 11.43843208796883 + 11.41289777357963 + 11.38737668307157 + 11.39158993677962 + 11.42550867689211 + 11.47626052575269 + 11.53346160837127 + 11.59242003633805 + 11.65171298395116 + 11.71103337652366 + 11.77033332614907 + 11.82960808249069 + 11.88885818118227 + 11.94808465136352 + 12.00728856762278 + 12.06647101852761 + 12.1256331048033 + 12.18477593909122 + 12.24390064576866 + 12.30300836076742 + 12.36210023138891 + 12.4211774161176 + 12.48024108443029 + 12.53929241660332 + 12.5983326035167 + 12.65736284645499 + 12.71638435690643 + 12.77539835635801 + 12.8344060760887 + 12.89340875695976 + 12.95240764920209 + 13.01140401220107 + 13.07039911427883 + 13.12939423247494 + 13.18839065234982 + 13.24738966843258 + 13.30639259676614 + 13.36540095745642 + 13.42441843013141 + 13.48346630051111 + 13.54267162769695 + 13.60261679943889 + 13.66521827748377 + 13.73471536904282 + 13.81636291571776 + 13.91017444325938 + 14.00402279932423 + 14.07810730068964 + 14.12231039540792 + 14.14675239959864 + 14.1712367601386 + 14.20789339199028 + 14.25671153046909 + 14.31243909296961 + 14.37083952869027 + 14.42999912919042 + 14.48933825640671 + 14.54873259678959 + 14.60816360552091 + 14.66763033871048 + 14.72713400631214 + 14.78667601615265 + 14.84625779087024 + 14.9058807548588 + 14.96554633331051 + 15.02525595190336 + 15.08501103651335 + 15.14481301292606 + 15.20466330654685 + 15.26456334211018 + 15.32451454338745 + 15.38451833289339 + 15.44457613159227 + 15.50468935860177 + 15.56485943089731 + 15.62508776301379 + 15.68537576674781 + 15.74572485085835 + 15.80613642076634 + 15.86661187825429 + 15.92715262116452 + 15.98776004309525 + 16.04843553304778 + 16.10918047386998 + 16.16999621817038 + 16.23088374770332 + 16.29184003184395 + 16.35282926752558 + 16.41361872352707 + 16.47312791748169 + 16.52779251614619 + 16.56972338266496 + 16.58914060326161 + 16.58602285255249 + 16.58295302490799 + 16.61680104031572 + 16.70640820495487 + 16.83293579027439 + 16.95951645330223 + 17.06356987545811 + 17.14511995607843 + 17.21394918044264 + 17.27794925384801 + 17.34068707430714 + 17.40324568467318 + 17.46586037176093 + 17.52856948872906 + 17.59137861018456 + 17.65428929163865 + 17.71730271042533 + 17.78042000571216 + 17.84364230198236 + 17.90697070998957 + 17.9704063265103 + 18.03395023404904 + 18.09760350054273 + 18.16136717906633 + 18.22524230753987 + 18.28922990843606 + 18.3533309884897 + 18.41754653840812 + 18.48187753258328 + 18.54632492880469 + 18.61088966797436 + 18.67557267382313 + 18.74037485262807 + 18.80529709293228 + 18.87034026526567 + 18.93550522186786 + 19.00079279641268 + 19.06620380373691 + 19.13173903963047 + 19.19739928174121 + 19.26318530612322 + 19.32909806689065 + 19.39514011703898 + 19.46132371947053 + 19.52770300534917 + 19.59445481719698 + 19.66196967424267 + 19.73073150141552 + 19.80074200772077 + 19.87088595441813 + 19.93934212604312 + 20.00518011862549 + 20.06933136037011 + 20.13361809049702 + 20.19915657054293 + 20.26594611286204 + 20.33350381196749 + 20.40144016567842 + 20.46957934564756 + 20.53786823153574 + 20.60629556743763 + 20.67485980305194 + 20.74356098217959 + 20.8123993214289 + 20.8813750300873 + 20.95048829310159 + 21.0197392697012 + 21.08912809313837 + 21.15865487049069 + 21.22831968246901 + 21.29812258322897 + 21.3680636001862 + 21.43814273383387 + 21.50835995756434 + 21.57871521749422 + 21.64920843229237 + 21.7198394930119 + 21.79060826292499 + 21.86151457736239 + 21.93255824355538 + 22.00373904048141 + 22.07505671871439 + 22.14651100027751 + 22.2181015785003 + 22.28982811787913 + 22.36169025393477 + 22.43368759291272 + 22.50581970846167 + 22.57808609581443 + 22.65048568274554 + 22.72301296775899 + 22.79563597812424 + 22.86820888101232 + 22.94025229729868 + 23.01070610887751 + 23.07825628581833 + 23.14289909660073 + 23.20766594613022 + 23.27750659033666 + 23.3549499765135 + 23.43746556264125 + 23.52010199791576 + 23.5998262822614 + 23.67664055158463 + 23.75185723961042 + 23.82653486749967 + 23.90115121654563 + 23.97585052071193 + 24.05066315268297 + 24.12559301258167 + 24.20063956978649 + 24.27580172459815 + 24.35107829713692 + 24.42646807301637 + 24.50196980652015 + 24.57758222075864 + 24.65330400766703 + 24.72913382800314 + 24.80507031134735 + 24.88111205610895 + 24.95725762953526 + 25.03350556772591 + 25.10985437565188 + 25.1863025271779 + 25.26284846509012 + 25.33949060112818 + 25.41622731602106 + 25.49305695952825 + 25.56997785048426 + 25.64698827684884 + 25.72408649576064 + 25.80127073359535 + 25.87853918602812 + 25.95589001806607 + 26.03332136326705 + 26.11083130761585 + 26.18841765779976 + 26.26607546103952 + 26.34377741518531 + 26.42136205272772 + 26.49809042657174 + 26.57153166479708 + 26.63630898776782 + 26.68575766986254 + 26.719860120466 + 26.7539958134434 + 26.81327594823523 + 26.9105313320446 + 27.03292662000669 + 27.15534607528906 + 27.26240568717523 + 27.35411851023889 + 27.43714473514021 + 27.51685660790366 + 27.59568046845789 + 27.67435073379499 + 27.75302434348029 + 27.83172407414685 + 27.91045035575354 + 27.98920086175792 + 28.06797298955294 + 28.14676409246013 + 28.2255714961203 + 28.30439249954253 + 28.38322437533785 + 28.46206436992404 + 28.54090970373295 + 28.61975757142187 + 28.69860514208898 + 28.77744955949296 + 28.85628794227534 + 28.93511738418803 + 29.01393495432407 + 29.09273769735179 + 29.17152263375334 + 29.2502867600667 + 29.32902704913118 + 29.40774045033689 + 29.48642388987753 + 29.56507427100723 + 29.6436884742987 + 29.72226335785828 + 29.80079575636475 + 29.87928245803684 + 29.95771987144499 + 30.03610045784021 + 30.11438455040451 + 30.19233950239865 + 30.26890196115278 + 30.34057469186956 + 30.39962267064635 + 30.43645813227823 + 30.45105551806947 + 30.46553861744707 + 30.51603073984629 + 30.62098935774918 + 30.76195012841762 + 30.90278287278755 + 31.02135693305715 + 31.11769100142862 + 31.20136597912091 + 31.2801100291847 + 31.35741352932536 + 31.43433297950597 + 31.51109417876927 + 31.5877299518705 + 31.66424100175385 + 31.74062409092437 + 31.81687560974026 + 31.89299191022201 + 31.96896932970498 + 32.04480419241804 + 32.1204928098866 + 32.19603148128948 + 32.27141649381704 + 32.34664412303101 + 32.42171063322655 + 32.49661227779654 + 32.57134529959697 + 32.64590593131561 + 32.72029039584103 + 32.7944949066347 + 32.8685156681039 + 32.94234887597702 + 33.01599071767995 + 33.08943737271485 + 33.16268501303915 + 33.2357298034477 + 33.3085679019581 + 33.38119546028994 + 33.45360862663307 + 33.52580359125159 + 33.59777723392023 + 33.66953404753332 + 33.74114082075579 + 33.81303875469825 + 33.88728090264917 + 33.97064296214376 + 34.07812356354634 + 34.22831634208927 + 34.42126045942578 + 34.61401660909533 + 34.736480883083 + 34.75282799481832 + 34.69887543650381 + 34.64471932258442 + 34.63329116754673 + 34.66454402015722 + 34.71987645879457 + 34.78428207069322 + 34.85097738070147 + 34.91790156349452 + 34.9846056523009 + 35.05101509996419 + 35.11711766306118 + 35.18290872004326 + 35.24838434841806 + 35.3135406781029 + 35.37837384660907 + 35.44287999706017 + 35.50705527849826 + 35.57089584628156 + 35.63439786248452 + + +# name: Varft_fic +# type: matrix +# rows: 1131 +# columns: 1 + 1.872195275966078 + 1.806780640035868 + 1.676237768493593 + 1.428859508130699 + 1.059676914475858 + 0.685966347809881 + 0.5168755492195487 + 0.6588193131610751 + 0.9892860897816718 + 1.299101680517197 + 1.482176155783236 + 1.551846516318619 + 1.560907966922969 + 1.547828294336796 + 1.529290067963302 + 1.510227435268462 + 1.491675474215299 + 1.473780977539718 + 1.456545573659241 + 1.439953661989421 + 1.423988325055689 + 1.408632816746831 + 1.393870638217777 + 1.379685561638325 + 1.366061625536531 + 1.352983127348125 + 1.340434631332755 + 1.328400962054729 + 1.316867204848677 + 1.305818708613515 + 1.295241073239595 + 1.285120169166476 + 1.275442109443247 + 1.266193273942918 + 1.25736029073596 + 1.248930044472218 + 1.240889665670693 + 1.233226547949016 + 1.225928309839219 + 1.218982845544815 + 1.212378273252398 + 1.20610296074301 + 1.200145517941564 + 1.194494728930295 + 1.189138738438487 + 1.184056331403553 + 1.179148323368281 + 1.173847493715584 + 1.165572118479759 + 1.145737121347338 + 1.094238499645144 + 0.9805975370109081 + 0.7891891715116799 + 0.5753510221838951 + 0.4760110108181834 + 0.5734537472017109 + 0.7829103227704763 + 0.9674386032857001 + 1.073409934993833 + 1.117724844254553 + 1.131018592044711 + 1.133058021776378 + 1.132149137556553 + 1.130748916883022 + 1.129378939978778 + 1.12811615364626 + 1.126964136492461 + 1.125917718280107 + 1.124971109442413 + 1.124118621461093 + 1.123354755342007 + 1.122674182523042 + 1.122071745805442 + 1.121542460750788 + 1.121081499848515 + 1.120684204157442 + 1.120346078183502 + 1.12006277916953 + 1.119830124545842 + 1.119644071906805 + 1.119500751141459 + 1.119396412745118 + 1.119327472057194 + 1.119290475267917 + 1.119282111059874 + 1.119299199432135 + 1.119338694959879 + 1.119397685863078 + 1.119473385158926 + 1.119563132990152 + 1.119664386380464 + 1.119774666149169 + 1.119890835601836 + 1.120001234579831 + 1.120023719966412 + 1.1194510133937 + 1.115933666471392 + 1.101573445834219 + 1.057563393842429 + 0.9543889812193811 + 0.7748189959675074 + 0.5699472911655903 + 0.4740132424049079 + 0.5699885995127261 + 0.7749710162170231 + 0.9547192282043397 + 1.058087161276489 + 1.102265731431544 + 1.11676161037758 + 1.120388585608453 + 1.121050240006298 + 1.121096820570529 + 1.12103400984779 + 1.120941596571356 + 1.120828691869974 + 1.120695809833705 + 1.120542753953487 + 1.120369304902852 + 1.120175316929817 + 1.119960678741336 + 1.119725337252021 + 1.119469288736582 + 1.119192563928664 + 1.118895244784653 + 1.118577448651195 + 1.118239346891642 + 1.117881124839187 + 1.117503021843731 + 1.117105307988822 + 1.116688279435039 + 1.116252262145281 + 1.115797629579902 + 1.115324751473963 + 1.114834040403366 + 1.114325940608978 + 1.113800894469023 + 1.113259388133883 + 1.112701917998493 + 1.112128991633654 + 1.111541090533137 + 1.110938027501106 + 1.110312111675739 + 1.109594302251935 + 1.108346634544432 + 1.104539752006531 + 1.091425291262567 + 1.053538747131824 + 0.9691867297515273 + 0.8313155695796013 + 0.6831385539844632 + 0.6160400928929448 + 0.6824377328157425 + 0.8294384106993675 + 0.9656597347930074 + 1.048223193734884 + 1.084433087147772 + 1.096017240546644 + 1.098379385657609 + 1.098218485713005 + 1.097544305026531 + 1.096790444105864 + 1.096026072278619 + 1.095259881578386 + 1.094493171200156 + 1.093726553022861 + 1.092960588634014 + 1.092195836827159 + 1.091432834044099 + 1.090672115795314 + 1.08991418313235 + 1.089159557595849 + 1.08840873464942 + 1.087662186473608 + 1.086920386180282 + 1.086183797568083 + 1.085452859289944 + 1.084727996960282 + 1.084009632468224 + 1.083298162557185 + 1.082593978382647 + 1.081897453404963 + 1.081208945252001 + 1.080528783611953 + 1.079857317730784 + 1.079194855876267 + 1.07854169420898 + 1.077898107469082 + 1.07726432569325 + 1.076639845967293 + 1.076016558334231 + 1.075324078090489 + 1.074117912910879 + 1.070335363037884 + 1.057036638259888 + 1.017596466466784 + 0.9253920530900359 + 0.7636703737080097 + 0.5774427717551589 + 0.4897827310487628 + 0.5773776723071933 + 0.762925916351378 + 0.9233548901975155 + 1.01408317219466 + 1.052185569889843 + 1.06432802323252 + 1.067056170664728 + 1.067244683392346 + 1.066929590888321 + 1.066548408009112 + 1.06617035344243 + 1.065803564153612 + 1.065448699519038 + 1.065105737186968 + 1.064774597994983 + 1.064455185085535 + 1.06414739228785 + 1.063851123675704 + 1.063566240482032 + 1.063292607665062 + 1.063030094839633 + 1.062778546474874 + 1.062537813559175 + 1.062307715415955 + 1.062088097445667 + 1.06187876407057 + 1.061679545789957 + 1.06149023398757 + 1.061310634948313 + 1.061140544712543 + 1.060979744419456 + 1.060828032903373 + 1.060685181058943 + 1.06055096257478 + 1.060425162315369 + 1.060307525098324 + 1.060197776183486 + 1.060094992630184 + 1.059991176240146 + 1.059820590540767 + 1.059169914573431 + 1.056119142100215 + 1.044176698662341 + 1.007555046118796 + 0.9199989410117269 + 0.7629200546070933 + 0.5785843506455421 + 0.4909373000264168 + 0.5787751218304038 + 0.7631303938105702 + 0.9200573591515422 + 1.007408942095935 + 1.043862313963473 + 1.055684150196612 + 1.058639308437705 + 1.059200745075941 + 1.05928052123636 + 1.059289468452334 + 1.059292478486896 + 1.059297026135027 + 1.059303555637598 + 1.059311886318028 + 1.059321809560061 + 1.05933309532702 + 1.059345528483391 + 1.05935890134424 + 1.059373010881245 + 1.05938764102757 + 1.059402603656054 + 1.059417707845569 + 1.059432756155729 + 1.059447565115988 + 1.059461964294314 + 1.059475767426193 + 1.059488816186786 + 1.05950094293803 + 1.05951199028641 + 1.059521806426346 + 1.059530236758292 + 1.059537153691053 + 1.059542412869632 + 1.059545883908868 + 1.059547451324761 + 1.059546979144216 + 1.059544323943555 + 1.059538686648011 + 1.059522276744246 + 1.059429977089167 + 1.058851446025074 + 1.055878716520965 + 1.044051620177925 + 1.007601287215948 + 0.9200786259025335 + 0.7623031716793776 + 0.5763755356892943 + 0.4876933116465807 + 0.5763336773961782 + 0.7622030945494771 + 0.9199039461091161 + 1.007346945814788 + 1.043720977380872 + 1.055476129986346 + 1.058379082940519 + 1.0588881932199 + 1.058910638093948 + 1.058856496587396 + 1.058790766634047 + 1.058721143752337 + 1.058648332953453 + 1.058572402223945 + 1.058493384160101 + 1.058411307632923 + 1.058326210826635 + 1.058238135650754 + 1.05814712215215 + 1.058053222484887 + 1.057956487871706 + 1.057856976985931 + 1.057754742912948 + 1.057649858295918 + 1.057542379945517 + 1.057432382367551 + 1.057319927960634 + 1.057205103337765 + 1.057087976485491 + 1.056968634948134 + 1.056847154162824 + 1.056723622605205 + 1.056598122231662 + 1.056470742449164 + 1.056341578252614 + 1.056210719048977 + 1.05607820302248 + 1.055943457409739 + 1.055798917077482 + 1.055579972453415 + 1.054878627881408 + 1.051797687076032 + 1.039917016401887 + 1.003587959334254 + 0.9166478784754872 + 0.7602924425154924 + 0.576349082402885 + 0.4886756492778659 + 0.5762235522270203 + 0.7599363550543785 + 0.915956549346447 + 1.002530524507165 + 1.038517869077623 + 1.050088767893612 + 1.052878390997648 + 1.053295904770494 + 1.053234086371958 + 1.053099925629795 + 1.052957976236939 + 1.052815953269601 + 1.052674633450806 + 1.052534145303071 + 1.052394581958652 + 1.052256031893194 + 1.052118562161922 + 1.051982274278998 + 1.051847241818905 + 1.051713542081416 + 1.051581248641014 + 1.051450443454087 + 1.051321187987924 + 1.05119355302304 + 1.051067611202598 + 1.05094342213124 + 1.050821052864194 + 1.050700557418168 + 1.050581992603838 + 1.050465424545109 + 1.050350883975625 + 1.050238429568708 + 1.050128119066358 + 1.050019980408251 + 1.049914064817131 + 1.04981039930135 + 1.049708978272974 + 1.049609172157943 + 1.049503514543176 + 1.049328720197082 + 1.048685436137021 + 1.045716946013272 + 1.034137090668082 + 0.9985953131690621 + 0.9133026702329516 + 0.7594655891880393 + 0.5780604379251599 + 0.4915295476093888 + 0.5780905419960618 + 0.7594110537320375 + 0.9130488997325301 + 0.998107960447669 + 1.033441869542003 + 1.044847613200545 + 1.047660829499364 + 1.048155499622226 + 1.048183332197368 + 1.048142335377634 + 1.048095555044711 + 1.048050432465971 + 1.048007580451667 + 1.047967038117349 + 1.047928768210113 + 1.047892737202346 + 1.047858911566436 + 1.04782725404948 + 1.047797724604607 + 1.047770284116268 + 1.047744884155691 + 1.047721493057907 + 1.047700056806207 + 1.047680534422398 + 1.04766286816448 + 1.047647018916905 + 1.047632930800319 + 1.047620555385947 + 1.047609833069146 + 1.04760071542114 + 1.047593151219189 + 1.047587079927325 + 1.047582433559 + 1.047579169273376 + 1.047577233985066 + 1.047576557844877 + 1.047577033750713 + 1.047577952034771 + 1.047571871429682 + 1.047496319748461 + 1.04695752914995 + 1.044124197214842 + 1.03278916887939 + 0.9977413341403008 + 0.9132076995447278 + 0.7599638821557164 + 0.5785088343545794 + 0.4917670879513025 + 0.5785855883732438 + 0.7600805349647999 + 0.9133273055776954 + 0.997852542437613 + 1.032899753190577 + 1.044244380667806 + 1.047092649154365 + 1.047647690400481 + 1.047739082016051 + 1.047760063782334 + 1.047772911377251 + 1.047784944996238 + 1.047796772792935 + 1.047808384522796 + 1.047819749452174 + 1.047830810770392 + 1.047841531224549 + 1.047851863317192 + 1.047861772589386 + 1.047871221788228 + 1.047880156897008 + 1.047888558357954 + 1.047896384261549 + 1.047903603874147 + 1.047910187393427 + 1.04791609197855 + 1.047921311110258 + 1.047925792634487 + 1.047929534688592 + 1.047932498157024 + 1.047934669069946 + 1.047936032526195 + 1.04793655872345 + 1.047936234623194 + 1.047935050912201 + 1.047932986170053 + 1.047929996624589 + 1.047925398685038 + 1.047911820933223 + 1.047826873138547 + 1.047276969067752 + 1.044431208632886 + 1.033082211390138 + 0.9980103615671396 + 0.913400087505579 + 0.7599406410008669 + 0.5781370773911476 + 0.4911715649068356 + 0.5781060922890902 + 0.7598814349621534 + 0.9133154451847076 + 0.997901177033782 + 1.032947956584394 + 1.044271172955632 + 1.047090818174183 + 1.047614589333534 + 1.047673513181508 + 1.047661233693361 + 1.047640168108046 + 1.047617713920772 + 1.047594548203051 + 1.047570745460689 + 1.047546340152621 + 1.047521363012493 + 1.047495832666755 + 1.047469784505665 + 1.047443261370063 + 1.047416282817721 + 1.047388887032866 + 1.047361111268401 + 1.047332985326648 + 1.047304545529187 + 1.047275824472308 + 1.047246865928173 + 1.047217706218362 + 1.047188377939165 + 1.047158918343484 + 1.047129371203482 + 1.047099770046771 + 1.047070152126253 + 1.047040555626154 + 1.047011028975248 + 1.046981598250568 + 1.046952303498983 + 1.046923140995204 + 1.046893486753106 + 1.046855983324349 + 1.046748091466725 + 1.046175084076822 + 1.043300822377205 + 1.031903276219964 + 0.9967542719095945 + 0.9121396392583847 + 0.7590593807399273 + 0.5780926253646612 + 0.4916221918538213 + 0.5780412508174777 + 0.7589583257213235 + 0.9119906602427363 + 0.9965580580756068 + 1.031659729778767 + 1.043009775690734 + 1.045836659148335 + 1.046362631954253 + 1.046423975378275 + 1.046415503136814 + 1.046399805694818 + 1.046384314075112 + 1.046369695104659 + 1.046356028877199 + 1.0463433181867 + 1.046331593766809 + 1.046320863999426 + 1.046311146579683 + 1.046302448026836 + 1.04629478789866 + 1.04628817178309 + 1.046282614581287 + 1.046278115361929 + 1.046274684369564 + 1.046272329054773 + 1.046271037310362 + 1.046270831488073 + 1.046271703206003 + 1.046273652464151 + 1.046276670880616 + 1.046280757524073 + 1.046285909600556 + 1.046292116865516 + 1.04629937466234 + 1.046307673677802 + 1.046316990628839 + 1.046327283605933 + 1.046337868086994 + 1.046341319568455 + 1.046274964697659 + 1.045743477530777 + 1.042908207513392 + 1.031539564952254 + 0.9963963711634278 + 0.9117642380297184 + 0.758686532266438 + 0.57778759021312 + 0.4913976360112429 + 0.5778434537351131 + 0.7587888101115823 + 0.911903440952301 + 0.9965695021674037 + 1.031748507171869 + 1.043155454099178 + 1.046030241064727 + 1.04660140350461 + 1.046707131899893 + 1.046742585487664 + 1.046770372428 + 1.046797862276435 + 1.046825678087771 + 1.046853822655976 + 1.046882262453437 + 1.046910963952541 + 1.046939885243773 + 1.046968990936875 + 1.046998239122331 + 1.047027597203851 + 1.04705701675266 + 1.047086463309824 + 1.047115902416408 + 1.047145282849669 + 1.047174579463899 + 1.047203750349581 + 1.047232745215297 + 1.047261544503272 + 1.047290099784732 + 1.047318374738097 + 1.047346333041787 + 1.047373939305544 + 1.04740115813911 + 1.047427958808839 + 1.047454294748604 + 1.04748013895005 + 1.04750541690737 + 1.047529434785247 + 1.047544763423502 + 1.047488879412413 + 1.046967446804047 + 1.044146346859634 + 1.032808410935104 + 0.9977152636274695 + 0.9130374761298299 + 0.7594884503632784 + 0.5776346335187554 + 0.4906931780278683 + 0.5777146024629474 + 0.7596188830211759 + 0.9131888458505273 + 0.9978786120191216 + 1.03299019113183 + 1.04435505066067 + 1.047207687981427 + 1.047762122936547 + 1.047851127572358 + 1.047868668101728 + 1.047877183184028 + 1.047884044237435 + 1.04788990970701 + 1.047894828021526 + 1.047898800112307 + 1.0479018362239 + 1.047903944738209 + 1.047905132174492 + 1.047905400395393 + 1.047904777340591 + 1.047903266735375 + 1.047900886274874 + 1.047897655516863 + 1.047893587499857 + 1.047888714820147 + 1.047883053310215 + 1.04787662345916 + 1.047869461588562 + 1.047861590981483 + 1.047853038646281 + 1.047843842767179 + 1.047834035009146 + 1.047823643311858 + 1.047812715172768 + 1.047801279462874 + 1.047789379954338 + 1.04777701292187 + 1.04776356369257 + 1.047741721384227 + 1.047649276442826 + 1.047093585133553 + 1.044247854501009 + 1.032917876727879 + 0.997910494916141 + 0.9134298404678702 + 0.760128733702004 + 0.5784312281757593 + 0.4914962351322174 + 0.578403752297163 + 0.7600738815963268 + 0.9133478216826916 + 0.99780164193362 + 1.032782639376819 + 1.044086791574955 + 1.046907387673855 + 1.047438730485737 + 1.047507712617517 + 1.047507112845778 + 1.047499220818281 + 1.047491466626525 + 1.047484568320215 + 1.047478625550866 + 1.04747371468693 + 1.047469889745116 + 1.047467213124037 + 1.047465750016272 + 1.047465556301177 + 1.047466699965298 + 1.047469233162701 + 1.047473225742579 + 1.047478726133704 + 1.047485800459981 + 1.047494505532086 + 1.047504894435406 + 1.04751702491194 + 1.047530948184431 + 1.047546722926199 + 1.047564400359988 + 1.047584035433829 + 1.047605661675334 + 1.047629342414439 + 1.047655120491982 + 1.047683037817478 + 1.047713139094412 + 1.047745414078236 + 1.047779253683984 + 1.047807249240577 + 1.047766597941518 + 1.047260685823858 + 1.044444215483963 + 1.033063727430999 + 0.9978209985420108 + 0.9129258245229721 + 0.7594136614352465 + 0.5780579037964344 + 0.4914329452440143 + 0.5780270686373115 + 0.7594502195715904 + 0.9131279131397605 + 0.9982181014493108 + 1.033633946441114 + 1.045158816501498 + 1.048103713430464 + 1.048732561059296 + 1.048894975334406 + 1.048988719470799 + 1.049076857976615 + 1.04916684050113 + 1.049259302206337 + 1.049354273825884 + 1.049451729282737 + 1.049551644362509 + 1.049653992056847 + 1.049758734181523 + 1.04986584559083 + 1.049975275993347 + 1.050086984410882 + 1.050200932659209 + 1.050317073240876 + 1.050435353070498 + 1.050555724650621 + 1.050678128376603 + 1.050802500918508 + 1.050928791984916 + 1.051056928932667 + 1.051186848431826 + 1.051318481564522 + 1.051451756618917 + 1.051586599089205 + 1.051722931675613 + 1.051860678941011 + 1.051999750547111 + 1.052140025421977 + 1.052280738018453 + 1.052414173260331 + 1.052475752308965 + 1.052058418281376 + 1.0492690121755 + 1.037697171792388 + 1.001705565489829 + 0.915123188868165 + 0.7590954760089517 + 0.5753833297640085 + 0.4878415856510401 + 0.5755205331370234 + 0.7594727948307991 + 0.9158431589603424 + 1.002798410132527 + 1.039138939231634 + 1.051028362475336 + 1.054117207415402 + 1.054826561361551 + 1.055053912103176 + 1.055207297205925 + 1.05535134114325 + 1.055493577383459 + 1.05563457775861 + 1.055774287320673 + 1.055912604555488 + 1.056049424223602 + 1.05618463549763 + 1.056318139657378 + 1.056449828669429 + 1.056579612195492 + 1.056707386858761 + 1.056833053939044 + 1.056956517510116 + 1.057077686302364 + 1.057196472771466 + 1.057312780059874 + 1.057426530867815 + 1.057537632994354 + 1.057646008208394 + 1.057751583866775 + 1.057854277081788 + 1.057954018935561 + 1.058050741441548 + 1.058144379407167 + 1.058234872296453 + 1.058322159573436 + 1.058406138792634 + 1.058486080728471 + 1.058554230257869 + 1.058545399457216 + 1.058048577979207 + 1.05515250377357 + 1.043385502882302 + 1.006945743225515 + 0.9193056439980865 + 0.7611789805814624 + 0.5747470781207085 + 0.4858570946380496 + 0.5748975751921535 + 0.7614396475255489 + 0.9196361694484949 + 1.007334000431001 + 1.04384053312242 + 1.055686253122985 + 1.058667766861618 + 1.059252462349832 + 1.059349846094847 + 1.059370473027229 + 1.059379461221397 + 1.059384568594396 + 1.059386544860899 + 1.059385524131358 + 1.059381587430835 + 1.059374828822911 + 1.059365345165133 + 1.059353237040341 + 1.059338612481952 + 1.059321589767933 + 1.059302284382284 + 1.059280837886035 + 1.059257365763187 + 1.059232026338577 + 1.059204946272075 + 1.059176291339099 + 1.059146210551262 + 1.059114871546626 + 1.059082441031933 + 1.059049096889794 + 1.059015017002821 + 1.058980384841561 + 1.058945395052433 + 1.058910240419209 + 1.058875123038888 + 1.058840247802436 + 1.058805776759982 + 1.058771250769496 + 1.058729257434607 + 1.058615536428988 + 1.05802339874208 + 1.055060329847038 + 1.043314597569406 + 1.007111855782568 + 0.9200674211606383 + 0.762856918387115 + 0.5772835137322545 + 0.4886793904006481 + 0.5772210136055946 + 0.7627565925940871 + 0.919954402372241 + 1.006994850933552 + 1.04319020267576 + 1.054924007505178 + 1.057874242775142 + 1.058455719612539 + 1.058562482707202 + 1.058601994998753 + 1.058639070019126 + 1.058681595139205 + 1.058730522170663 + 1.058786154724658 + 1.058848755434155 + 1.058918583206832 + 1.058995895087719 + 1.059080949053168 + 1.059173989109695 + 1.059275270439684 + 1.059385034255683 + 1.059503523632884 + 1.059630972333252 + 1.059767617844045 + 1.059913681820035 + 1.06006939150393 + 1.06023495644331 + 1.060410593636334 + 1.060596503317356 + 1.060792888514698 + 1.060999928973615 + 1.061217823065817 + 1.061446734704077 + 1.061686831526458 + 1.061938276514411 + 1.062201217748225 + 1.062475748360157 + 1.062761285342276 + 1.063050024211407 + 1.063274837099016 + 1.063011208549142 + 1.060282818041742 + 1.04840140324086 + 1.011127648875117 + 0.9216570416465402 + 0.7614689916372299 + 0.574056045152247 + 0.4850284280255437 + 0.5741562284529209 + 0.7621432170271873 + 0.9233785811811686 + 1.01403833180666 + 1.052395035512745 + 1.065220058895648 + 1.06881427206099 + 1.06991627626121 + 1.070523069240153 + 1.071064680814743 + 1.071609233506024 + 1.072164662182331 + 1.072731510736048 + 1.073309655301273 + 1.073898895643651 + 1.074499019421637 + 1.075109799392521 + 1.075730988755822 + 1.076362331397831 + 1.077003547921777 + 1.07765434589237 + 1.078314423561096 + 1.078983447514474 + 1.079661088064313 + 1.080346986651421 + 1.081040776334703 + 1.081742066890001 + 1.082450459711254 + 1.08316554594785 + 1.08388689532876 + 1.084614051505923 + 1.085346566513181 + 1.086083964444697 + 1.086825759150088 + 1.087571450509131 + 1.088320528157055 + 1.089072407223284 + 1.089825765229762 + 1.09057118371129 + 1.09123298805207 + 1.091336147859693 + 1.088672751560807 + 1.075792563147843 + 1.034786290489137 + 0.9368692496791482 + 0.7637737737968564 + 0.5638053212314844 + 0.4696453139185905 + 0.5644730757921934 + 0.7656398853287101 + 0.9404621794819832 + 1.040261110290885 + 1.083024883642793 + 1.097499934025109 + 1.101663442328572 + 1.10302085801959 + 1.103802069090307 + 1.104487068019807 + 1.105151477269828 + 1.105803686194122 + 1.106443875469267 + 1.107071463018656 + 1.107685850001872 + 1.108286424539983 + 1.108872599899769 + 1.109443784691393 + 1.109999417327344 + 1.110538950189948 + 1.111061839386821 + 1.111567572690547 + 1.11205565277487 + 1.112525599077344 + 1.112976964563131 + 1.113409319892526 + 1.113822255283594 + 1.114215407520533 + 1.114588422700763 + 1.114940988831222 + 1.115272828377783 + 1.115583694539964 + 1.115873374976218 + 1.116141704842448 + 1.116388557478786 + 1.116613833233714 + 1.116817444562912 + 1.116998575627804 + 1.117148026823997 + 1.117187730967999 + 1.11662467662245 + 1.113167956471443 + 1.099095057696104 + 1.055847430601716 + 0.9535341812297702 + 0.7730139894410968 + 0.5644060792401433 + 0.4660776369273663 + 0.564638152718544 + 0.7732896059751511 + 0.9536659019067883 + 1.055781798437238 + 1.098879940807819 + 1.112866510637105 + 1.116276975721121 + 1.116815027780831 + 1.116764707490802 + 1.116618325002491 + 1.116455145180225 + 1.116285974625498 + 1.116113337688148 + 1.115939113777131 + 1.115765230264515 + 1.115593724884093 + 1.115426747128367 + 1.115266559645534 + 1.11511554569006 + 1.11497621005401 + 1.114851178601384 + 1.114743206650019 + 1.114655174314976 + 1.114590098615736 + 1.114551129285246 + 1.114541551098228 + 1.114564794581383 + 1.114624428097159 + 1.114724173676223 + 1.114867894910276 + 1.115059607662261 + 1.115303488448262 + 1.115603865589947 + 1.115965227596462 + 1.116392231546342 + 1.116889691911638 + 1.117462541908026 + 1.118115099612623 + 1.118843227624893 + 1.11957200942561 + 1.119797840714455 + 1.117151482496411 + 1.103615631815046 + 1.059994108974934 + 0.9559783274307847 + 0.7735874154604971 + 0.5646958998404443 + 0.4666720707900822 + 0.5652826768346131 + 0.7768055438064039 + 0.9638849766924977 + 1.073241575155407 + 1.121808039490134 + 1.139765220694244 + 1.146587654016912 + 1.150523196905851 + 1.154044678900391 + 1.157694263383746 + 1.161566184833646 + 1.16568012163043 + 1.170046812389046 + 1.17467638803646 + 1.179579152725637 + 1.184765652287751 + 1.190246662590653 + 1.196033205837011 + 1.20213654730469 + 1.208568194881082 + 1.215339900925756 + 1.222463673446327 + 1.22995176538825 + 1.23781668022275 + 1.246071176603436 + 1.254728270228952 + 1.263801234774292 + 1.27330359397456 + 1.283249138388783 + 1.293651917483658 + 1.304526241961867 + 1.315886685624719 + 1.327748088166118 + 1.340125553775579 + 1.353034453932196 + 1.366490418091416 + 1.380509237758815 + 1.395105319097638 + 1.410274949856102 + 1.425861954223365 + 1.440777056384832 + 1.449834515806288 + 1.435499601531774 + 1.357300040312111 + 1.159511861391366 + 0.8276115641929209 + 0.4731192807666957 + 0.3173811929300427 + 0.4903793856501579 + 0.8791609103791416 + 1.262403096538037 + 1.516743849497288 + 1.647847083862871 + 1.710280904080719 + 1.74676214158535 + 1.776670831255615 + 1.805975034832954 + 1.836001260206103 + 1.866981408093125 + 1.89896279387176 + 1.93197008734569 + 1.966026104521006 + 2.001153773628175 + 2.03737627947703 + 2.074717064388096 + 2.11319982400164 + 2.152848513796926 + 2.193687344901264 + + +# name: Eft_pic +# type: matrix +# rows: 557 +# columns: 1 + -26.32894968625359 + -24.92295746642532 + -24.58125034306278 + -26.18171442602792 + -27.4944035039376 + -28.79200377198504 + -28.82207237614929 + -27.55632841332687 + -26.4692269814289 + -25.87418354047722 + -25.33707355600706 + -24.51782176984648 + -23.84889884198279 + -24.1178932711635 + -25.51364870332532 + -27.32389186263302 + -28.51710819758367 + -28.519986790296 + -27.57980058303815 + -26.47499269128338 + -25.75583156952578 + -25.24920255187988 + -24.43163731411954 + -23.22419288232447 + -22.20844101016431 + -22.48185070994649 + -24.0489681593136 + -26.27861659079974 + -27.96974859888894 + -28.22864276096516 + -27.25313145620495 + -26.01699531501833 + -25.17011890437999 + -24.5269756127791 + -23.63710991247308 + -22.54133399082895 + -21.84075415734995 + -22.17034442972891 + -23.63112562148109 + -25.56202996648091 + -26.88822178904931 + -26.96371830746477 + -26.10301444041332 + -25.09123710343295 + -24.29189160781431 + -23.50533659161297 + -22.5443032302218 + -21.60525772886984 + -21.12526867109244 + -21.48966245192389 + -22.76768007373099 + -24.53094324736338 + -26.02704648649313 + -26.69247652692869 + -25.4576735754943 + -24.38798317910614 + -23.59687252800201 + -23.0463583519133 + -22.14869507048797 + -20.85153406360743 + -20.04612381015374 + -20.59773297438267 + -22.38798968579632 + -24.49077582452743 + -25.9098693573747 + -26.09445421487596 + -25.16316993392777 + -23.77895355160412 + -22.60537826604702 + -19.95877003266832 + -20.26520944600094 + -21.66805219623067 + -23.67793229018432 + -25.17942256022515 + -25.38620391595938 + -24.53262848758829 + -23.44128451761544 + -22.60658348121768 + -21.91844589808564 + -21.09142141561083 + -20.1177356907443 + -20.04703436451245 + -20.12378817552515 + -21.24121269328945 + -23.07792057731762 + -24.48441881665434 + -24.58989199077329 + -23.647845412612 + -22.50678345095786 + -21.57852831396147 + -20.67731200544187 + -19.61920600257607 + -18.60212055655953 + -18.06005187562252 + -18.39284942846906 + -19.76881004355695 + -21.83538496662068 + -23.56161213126261 + -23.8404765554949 + -22.59194940711143 + -20.95536077696587 + -20.01636630405881 + -19.62648959608808 + -18.94279289645635 + -17.86746076867355 + -17.28532714175341 + -17.92453896525456 + -19.58056979573936 + -21.44560976649637 + -22.69676217384003 + -22.83035180429314 + -21.35499642407405 + -20.31591508061189 + -19.56757035564402 + -18.99681178273283 + -18.22539038099364 + -17.24981630347577 + -16.56190877466071 + -16.75478060841743 + -18.07910058969958 + -20.10340199191722 + -21.72822522508403 + -21.94197204354498 + -20.79096940124202 + -19.30172501042347 + -18.27880200047343 + -17.54804278122811 + -16.59759225555177 + -15.5115336989715 + -14.8959724801536 + -15.22017013392013 + -16.5192452188316 + -18.36375410945197 + -19.87608462493768 + -20.22138482819531 + -19.37990392815612 + -18.11534198033735 + -17.0465754745876 + -16.13899861715117 + -15.21120281050986 + -14.22169706419265 + -13.95574952009588 + -14.51689876780392 + -15.83995596835462 + -17.56536438862531 + -18.90387418888122 + -19.11874664028005 + -18.2263304574069 + -16.95821819651815 + -16.01751946953812 + -15.50311061063064 + -15.01152869682073 + -14.22961990194381 + -13.45177145845798 + -13.46657839252657 + -14.78794224004469 + -16.92566495102051 + -18.55594140978042 + -18.6505442433388 + -17.44521427086136 + -16.08957894110267 + -15.33453766232617 + -14.83856634389872 + -13.93014044254483 + -12.75593809258169 + -12.20406710912266 + -12.80324282771869 + -14.24106543203084 + -15.89155000058213 + -17.24601671894379 + -16.88724874605534 + -15.7630305590562 + -14.56056541338616 + -13.58104463162728 + -12.73165713950528 + -11.74774189033662 + -10.63445698972982 + -9.849041349566534 + -9.984641244397018 + -11.23365606988632 + -13.07357524679821 + -14.5035914478138 + -14.83303036914036 + -14.26255180606716 + -13.45051408036562 + -12.65374893451767 + -11.6806483466012 + -10.52274123766982 + -9.565090292286406 + -9.21707388746681 + -9.693813185091006 + -11.05282507102344 + -12.96289056340019 + -14.49301592039647 + -14.75345285580927 + -13.83431392295912 + -12.60271334535645 + -11.62727031310781 + -10.83716423350841 + -10.11441275573711 + -8.833953812598565 + -8.219056802541076 + -8.633350455964852 + -10.16625468068156 + -12.17251157077346 + -13.59845711817491 + -13.72188066600386 + -12.72365898102265 + -11.4307041496372 + -10.42002249534397 + -9.579455643309487 + -8.622629687018531 + -7.69476666507876 + -7.272336520215127 + -7.743418945175918 + -9.196137703065759 + -11.23078761550592 + -12.8586242230063 + -13.09619503772431 + -11.94993517107073 + -10.43331399471123 + -9.371666013050756 + -8.580645954492525 + -7.488826164866069 + -6.17332346826565 + -5.398935545677496 + -5.822976521369014 + -7.383013160473219 + -9.303908139714444 + -10.58706968058148 + -10.98343773457347 + -9.715677633205132 + -8.33726443187706 + -7.344552210258541 + -6.54584017845022 + -5.581412954250226 + -4.573576589858362 + -4.004625450057659 + -4.295444990804242 + -5.619884683201889 + -7.625895117601857 + -9.263184071106764 + -9.51427023936472 + -8.450612677132028 + -7.06855960507383 + -6.059186303990259 + -5.254566669978345 + -4.290695174799765 + -3.274428037617326 + -2.671454719574513 + -2.932628802997158 + -4.27473709953108 + -6.351470560137955 + -8.055313733429699 + -8.247786615352027 + -6.962731517838137 + -5.376777810150742 + -4.341319234915176 + -3.514390732282294 + -2.262545840234054 + -1.363125319843832 + -0.7189718043066193 + -1.023709000920789 + -2.564681789462938 + -4.678421339572878 + -6.12036717657061 + -6.161428845656644 + -5.156170970918268 + -3.92280537261513 + -2.849844528739297 + -1.812860334688921 + -0.6922123106961777 + 0.3070272961906539 + 0.7269588386833163 + 0.1044220862728196 + -1.647679759413933 + -3.865854376695523 + -5.333010667090718 + -5.243853682151197 + -3.954932695765251 + -2.489368473246884 + -1.413194630747597 + -0.5281441314432556 + 0.4734575908752987 + 1.447468586638564 + 1.881088326421164 + 1.310483251004754 + -0.2719451556487229 + -2.231254620464966 + -4.245686519830059 + -4.136417849736958 + -3.021002301225337 + -1.675999833195647 + -0.6900049084797217 + 0.1298971146466101 + 1.258470533703246 + 2.599225963125846 + 3.477372205780554 + 3.30283963373715 + 1.943939348127003 + -0.1744131225440668 + -1.961253855578974 + -2.232318244484034 + -0.9458834396611309 + 0.6640923382817618 + 1.629734251701564 + 2.286678000388491 + 3.339753970530296 + 4.616433619949973 + 5.301213670374153 + 4.824491056807418 + 3.148419539604134 + 0.8605848861145802 + -0.7831356799539009 + -0.7523745625817213 + 0.6088029344369517 + 2.051525985301836 + 2.974964564981491 + 3.743621835002358 + 5.260838456751131 + 6.238639537687007 + 6.675447496585775 + 6.096493702722199 + 4.486034002229346 + 2.418747308068831 + 0.9138699032031354 + 0.8152850037634778 + 1.982890249774229 + 3.356815777264131 + 4.16233072713537 + 4.749200948160777 + 5.837987295084304 + 7.261095370488761 + 8.01483788121682 + 7.425278682995355 + 5.762993104451212 + 3.830909502668661 + 2.467589498481544 + 2.305682179447899 + 3.353233841576568 + 4.791295070371746 + 5.758157425159638 + 6.357342287373541 + 7.340581656762552 + 8.771177027325933 + 9.639278464567866 + 9.061705843860437 + 7.411569186888002 + 5.936550926135155 + 4.231830038002045 + 4.373394687719092 + 5.437155387896638 + 6.936321316886236 + 8.295471083251869 + 9.338734214103383 + 10.30112875225181 + 11.31670155838894 + 11.99750326335588 + 11.69776224754565 + 10.21530959610263 + 8.175865497554369 + 6.714175909336845 + 6.659955306856098 + 7.861789229245325 + 9.352259714579944 + 10.34299676925377 + 10.96529885922727 + 11.80425927260984 + 12.89543328223982 + 13.5734639850936 + 13.16588216215194 + 11.56132987370256 + 9.40095782864141 + 7.870434650371344 + 7.824207497634085 + 8.989935354547441 + 10.41905102357675 + 11.56677887003712 + 12.47863703700624 + 13.18912929484976 + 14.18371585696264 + 14.7212556993976 + 14.27013013289823 + 12.67364870528124 + 10.49657461442141 + 8.989312442953917 + 9.131483122472702 + 10.54309583358922 + 11.93284380868522 + 12.72725805048468 + 13.55187289563675 + 14.97029333962573 + 16.48232446223327 + 17.0555821018274 + 16.15519850615766 + 14.06610367785743 + 11.67727933054773 + 10.13077066345548 + 10.15753786968011 + 11.4271508338725 + 12.87084868388193 + 13.82525476288487 + 14.56741906082024 + 15.63844239511404 + 16.93204699952787 + 17.61345636214752 + 16.90574189061849 + 14.9527993912223 + 12.85888630503499 + 10.87950915009483 + 11.09881745841747 + 12.05053727181519 + 13.29949381378088 + 14.34308946390206 + 15.1660518988314 + 16.15763802745801 + 17.34684562613913 + 18.03469025106401 + 17.42820979706389 + 15.509477082947 + 13.1900022123431 + 11.70571210676221 + 11.77817489504037 + 13.12442760563238 + 14.76871081924884 + 15.98406734059355 + 16.87269400095005 + 17.88154672881373 + 18.95569133507084 + 19.48422659646747 + 18.93460716478543 + 17.30596538579857 + 15.22894388581813 + 13.80340147203614 + 13.89503297385653 + 15.3000335931803 + 16.90575474763455 + 17.80572892864919 + 18.7529189488217 + 19.73615991196285 + 20.9985489749387 + 21.70408212091499 + 21.22974230794817 + 19.55078334036468 + 17.36539193130316 + 15.8545547953229 + 15.84234679758644 + 17.08285353093908 + 18.6623890272402 + 19.96967588440883 + 20.97679423703497 + 21.84969687891921 + 22.63964129566481 + 23.14843598711446 + 22.88359581951386 + 21.44378128262475 + 19.22574953465242 + 17.49450548289009 + 17.34862399503755 + 18.62867363039882 + 20.14557560270755 + 21.04906880559979 + 21.66686290676029 + 22.7262239840694 + 24.02156016341419 + 24.4840011154359 + 23.62787877350059 + 22.26921716277631 + 20.18771969929938 + 18.30238116045226 + 18.51062521395627 + 20.26703996694729 + 22.07301863467649 + 23.18033473832854 + 24.02079209311759 + 25.14556201064242 + 26.38183948130518 + 27.10120216696986 + 26.81329811791666 + 25.42792656060682 + 23.44803600729549 + 21.98128439777184 + 21.98369005519635 + 23.29156360514851 + 24.83390840483047 + 25.90187457105037 + 26.72303794463278 + 27.68061450240683 + 28.58333673774128 + 28.95193245620682 + 28.44075838141347 + 26.86672557788825 + 24.59017950019167 + 22.86815217317526 + 22.87442511522525 + 24.337856782459 + 25.95455710895178 + 26.98095138390129 + 27.30736393503331 + 28.37330308474077 + 29.34306917058657 + 29.83720836777363 + 29.44183809736563 + 27.95105854008546 + 25.90855103740378 + 24.5401712771351 + 24.67719443975794 + 25.9476631486514 + 27.35400607105268 + 28.35483082697831 + 29.10420542924214 + 29.95395650879036 + 30.94866675511949 + 31.60558129717003 + 31.19822769265117 + 29.51060382463851 + 27.30273501270048 + 25.85737034285746 + 25.98921064173844 + 27.43084087685816 + 29.13718343115119 + 30.2519054492513 + 30.82763303628121 + 31.5251656548669 + 32.59689535596596 + 33.40850527316319 + 33.1650876007711 + 31.91770801035292 + 29.37938637828465 + 28.33553991195286 + 28.41189618073375 + 29.7782106356743 + 31.51406547244253 + 32.66955900570684 + 33.31268015134859 + 34.14139336955947 + 35.33592366430378 + 36.2207652811757 + 35.97484371917491 + 34.43509701897348 + 32.32305556940783 + 30.85173457954303 + 30.87948648799696 + 32.16028968791039 + 33.59155951878461 + 34.47233573757713 + 35.23876946243086 + 36.54269844191462 + 37.99375691901895 + 38.49794316990975 + 37.55953695869337 + 35.61628015977074 + 33.48428098877941 + 32.07592018643805 + 32.14070499652603 + 33.58576640815331 + 35.33667849240536 + + +# name: Varft_pic +# type: matrix +# rows: 557 +# columns: 1 + 0.03737355442615353 + 0.02545101800831162 + 0.02958485344322526 + 0.02959206933053338 + 0.02073808619650208 + 0.02908361563356721 + 0.02866041334243619 + 0.02056491607697808 + 0.02119840169223153 + 0.02055810624631249 + 0.02067650155993306 + 0.02055428968640172 + 0.02058076159926259 + 0.02055526012452447 + 0.02056613424690568 + 0.02056047739358746 + 0.02059433283181988 + 0.02059300104053818 + 0.02072137640686833 + 0.02073290059240662 + 0.02134583750637375 + 0.0214851130721172 + 0.02483906457098328 + 0.0371967018571695 + 0.03266655700178944 + 0.02158258343013131 + 0.02156162867220246 + 0.0207878206846317 + 0.02073480794103943 + 0.02061597304316365 + 0.02058900380404793 + 0.02056682156296574 + 0.02055880846353375 + 0.02055585803361737 + 0.02055244380505883 + 0.02055187942357861 + 0.02055122563513123 + 0.02055123308571183 + 0.02055103937061631 + 0.02055109524997079 + 0.0205513038662275 + 0.0205511827942928 + 0.0205533509132465 + 0.02055300446124875 + 0.02055998006733262 + 0.02055339561673009 + 0.02057556668194138 + 0.02058685244890057 + 0.02072148816557728 + 0.02073795022340619 + 0.02134556928547227 + 0.02156145172091328 + 0.02510489756139123 + 0.03720498317750298 + 0.03719333792002999 + 0.02509644674034917 + 0.02156114810975396 + 0.02134568849476182 + 0.02073991531403863 + 0.02072911197217309 + 0.02060025231810414 + 0.0206235949871143 + 0.02059335308047139 + 0.02068109111758076 + 0.02072001295061909 + 0.02106633083792531 + 0.02151517616482579 + 0.02314727427335583 + 0.03559914277764165 + 0.03559922100873791 + 0.02314938278766476 + 0.02152293594451749 + 0.02107270108433568 + 0.02075844677062832 + 0.0207139519033035 + 0.02075427072020375 + 0.0207686801430782 + 0.02134975092383229 + 0.02156790019841992 + 0.02509811194511258 + 0.0371919726011356 + 0.03719736309619748 + 0.02510066004367673 + 0.02156128780814015 + 0.02134417788954579 + 0.02073843823643529 + 0.02072138385744893 + 0.02059330837698781 + 0.02059223176809155 + 0.02055993350120389 + 0.02055304543944203 + 0.02053538011284672 + 0.02054635854335629 + 0.02055120514603459 + 0.02055068360539281 + 0.02055110828848683 + 0.0205509443757137 + 0.02055119769545399 + 0.02055122377248608 + 0.02055314602228009 + 0.02055296348305546 + 0.02055994467707478 + 0.02055980684133374 + 0.02059122593971097 + 0.02059050695868336 + 0.02071774052353703 + 0.02073384867878758 + 0.02130945445867383 + 0.02154281781884038 + 0.02482066349955403 + 0.03700913535328709 + 0.03719902457567059 + 0.02510052220793568 + 0.02156136603923642 + 0.02133552404018246 + 0.02071503596278035 + 0.02071275981040799 + 0.02059342013569676 + 0.02059220941634976 + 0.02055997075410687 + 0.02055985527010762 + 0.02055348874898755 + 0.02055333601208531 + 0.02055124612422787 + 0.0205514174875816 + 0.02055129827829205 + 0.0205514249381622 + 0.02055123494835698 + 0.020553369539698 + 0.02055345522137486 + 0.02055998192997777 + 0.02055970998378598 + 0.02059289114447438 + 0.02059240313144528 + 0.02072132052751385 + 0.02073345752330624 + 0.02134307520361745 + 0.0215323423025211 + 0.02500276313992345 + 0.03417521389098965 + 0.0250021521923145 + 0.02153230877490842 + 0.02134279580684506 + 0.02073345752330624 + 0.02072133542867505 + 0.02059233607621991 + 0.0205928315398296 + 0.02055968763204419 + 0.02055995212765538 + 0.02055337326498829 + 0.02055332483621441 + 0.02055122004719578 + 0.02055124984951817 + 0.02055102633210026 + 0.02055110828848683 + 0.02055100770564877 + 0.02055122004719578 + 0.02055124612422787 + 0.02055319445105397 + 0.02055339561673009 + 0.02055937098236882 + 0.02055995585294568 + 0.02058531017871701 + 0.02057385491104924 + 0.02071405621143185 + 0.02073845313759648 + 0.02134322048993909 + 0.02156120585175358 + 0.02509840624304616 + 0.03719455050202214 + 0.03717589052291714 + 0.02507812948795163 + 0.02155944378944241 + 0.02134050475331151 + 0.02073834137888753 + 0.02072134287925564 + 0.02059288741918408 + 0.02059245528550946 + 0.02055993350120389 + 0.0205599111494621 + 0.02055324287982785 + 0.02055320190163457 + 0.02055105613442265 + 0.02055114554138981 + 0.02055053459378087 + 0.02055107103558385 + 0.02054420160027348 + 0.02053299965234601 + 0.02054625796051823 + 0.02055331366034352 + 0.02055935608120762 + 0.0205599036988815 + 0.02059248136254155 + 0.02059317426653706 + 0.02072143228622281 + 0.02073843451114499 + 0.02134278463097417 + 0.02156104566427075 + 0.02509542228551709 + 0.03718920471044385 + 0.03718957723947369 + 0.025095645802935 + 0.02156103448839986 + 0.02134284423561894 + 0.0207384047088226 + 0.0207214509126743 + 0.020593073683699 + 0.02059258194537961 + 0.02055937098236882 + 0.0205598887977203 + 0.02054631383987271 + 0.02053491817684971 + 0.0205441568967899 + 0.0205511716184219 + 0.02055054576965176 + 0.02055105240913235 + 0.02055104495855176 + 0.02055119397016369 + 0.02055316837402188 + 0.02055316464873158 + 0.02055991487475239 + 0.02055996330352627 + 0.02059216843815648 + 0.02059223549338185 + 0.02072077290983998 + 0.02073748828740918 + 0.02133387373658024 + 0.0215548765835365 + 0.02502333046766125 + 0.03713930817218625 + 0.03719567926498257 + 0.02509909914704167 + 0.02156072156401478 + 0.02134397299857937 + 0.02073063002796971 + 0.0207006190893253 + 0.02058547036619984 + 0.02059276448460423 + 0.02055935235591733 + 0.02055993722649418 + 0.02055331738563382 + 0.02055333973737561 + 0.02055121259661519 + 0.02055122749777638 + 0.0205511902448734 + 0.02055119397016369 + 0.02055123494835698 + 0.02055122004719578 + 0.02055334346266591 + 0.02055339561673009 + 0.02055993722649418 + 0.02055968763204419 + 0.02059282408924901 + 0.02059233235092961 + 0.02072132425280415 + 0.02073345007272565 + 0.02134263934465253 + 0.02153225289555394 + 0.02500133262844884 + 0.03417261736365163 + 0.02500145928831898 + 0.02153227152200543 + 0.02134266542168461 + 0.02073344634743535 + 0.02072131680222355 + 0.02059232862563931 + 0.0205928315398296 + 0.02055968390675389 + 0.02055993722649418 + 0.02055338816614949 + 0.0205533509132465 + 0.02055121259661519 + 0.02055122749777638 + 0.02055119397016369 + 0.0205511902448734 + 0.02055122749777638 + 0.02055120514603459 + 0.02055333601208531 + 0.02055330620976292 + 0.02055993722649418 + 0.02055935608120762 + 0.02059278683634602 + 0.02058547036619984 + 0.02070064516635739 + 0.0207306523797115 + 0.02134396182270848 + 0.02156070666285359 + 0.02509906189413869 + 0.03719559730859601 + 0.03713920386405789 + 0.02502328576417767 + 0.0215548654076656 + 0.02133386256070935 + 0.02073748083682858 + 0.02072078408571087 + 0.02059223549338185 + 0.02059215353699528 + 0.02055995585294568 + 0.02055991860004269 + 0.02055316837402188 + 0.02055315719815098 + 0.0205511902448734 + 0.02055104123326146 + 0.02055106358500325 + 0.02055053459378087 + 0.02055116044255101 + 0.02054411591859662 + 0.02053481759401166 + 0.02054627658696973 + 0.02055988134713971 + 0.02055935980649792 + 0.02059257822008931 + 0.0205930811342796 + 0.0207214509126743 + 0.0207384121594032 + 0.02134284423561894 + 0.02156104566427075 + 0.02509560855003201 + 0.03718953253599011 + 0.03718909295173489 + 0.02509534405442082 + 0.02156103076310956 + 0.02134276972981297 + 0.02073843078585469 + 0.02072142483564221 + 0.02059317054124676 + 0.02059246646138035 + 0.0205598999735912 + 0.02055935608120762 + 0.02055333228679501 + 0.02054626913638913 + 0.02053298475118481 + 0.02054420905085408 + 0.02055108221145474 + 0.02055053459378087 + 0.02055114181609952 + 0.02055106731029355 + 0.02055320935221516 + 0.02055323915453755 + 0.0205598925230106 + 0.02055994095178448 + 0.02059244038434827 + 0.02059288741918408 + 0.02072133915396535 + 0.02073835628004872 + 0.02134041907163464 + 0.02155942888828122 + 0.02507784264059865 + 0.03717538388343655 + 0.03719443129273259 + 0.02509835781427228 + 0.02156120585175358 + 0.02134320558877789 + 0.02073844568701588 + 0.02071408973904454 + 0.020573951768597 + 0.02058536605807149 + 0.02055995212765538 + 0.02055938215823971 + 0.02055339561673009 + 0.02055318700047337 + 0.02055124239893757 + 0.02055120887132489 + 0.02055101143093907 + 0.02055109338732564 + 0.02055101143093907 + 0.02055124612422787 + 0.02055122377248608 + 0.02055331366034352 + 0.0205533658144077 + 0.02055993722649418 + 0.02055969135733449 + 0.02059282036395871 + 0.02059233235092961 + 0.02072132425280415 + 0.02073346124859654 + 0.0213427063998779 + 0.02153229014845692 + 0.02500177966328465 + 0.03417307929964863 + 0.02500163065167271 + 0.02153226407142483 + 0.02134274365278088 + 0.02073345752330624 + 0.02072132052751385 + 0.0205923584279617 + 0.0205928389904102 + 0.02055970253320538 + 0.02055995212765538 + 0.02055341051789128 + 0.0205533658144077 + 0.02055123494835698 + 0.02055124239893757 + 0.02055120514603459 + 0.02055120142074429 + 0.02055124612422787 + 0.02055122749777638 + 0.0205533583638271 + 0.02055333973737561 + 0.02055995212765538 + 0.02055935980649792 + 0.02059281663866841 + 0.02058547036619984 + 0.02070049242945515 + 0.02073060395093762 + 0.02134421886773907 + 0.02156075881691777 + 0.02509987400742375 + 0.03719692723723256 + 0.03714069025488698 + 0.02502388926120602 + 0.02155490638585889 + 0.02133414195748173 + 0.02073751063915097 + 0.02072079153629147 + 0.02059229137273633 + 0.02059221314164006 + 0.02055998565526806 + 0.02055996330352627 + 0.02055322052808606 + 0.02055318327518307 + 0.02055120514603459 + 0.02055123494835698 + 0.02055116044255101 + 0.02055079536410176 + 0.0205511753437122 + 0.02054623933406674 + 0.02053505973788106 + 0.02055292250486218 + 0.02055992605062329 + 0.0205921051082214 + 0.02059324504705273 + 0.02072136895628773 + 0.02073843823643529 + 0.02134336577626073 + 0.02156115369768941 + 0.02509760530563199 + 0.03719263942809903 + 0.03719055326553189 + 0.02509631262989842 + 0.02156108291717374 + 0.02134301559897267 + 0.02073843078585469 + 0.02072146581383549 + 0.02059317426653706 + 0.0205925968465408 + 0.02055980684133374 + 0.0205598887977203 + 0.02055279584499203 + 0.02055323170395695 + 0.0205441606220802 + 0.02053288789363705 + 0.02054408984156453 + 0.02055109338732564 + 0.02055062400074803 + 0.0205511790690025 + 0.02055314974757039 + 0.02055333228679501 + 0.02055988134713971 + 0.02055992977591359 + 0.02059264527531468 + 0.02059319289298855 + 0.0207214583632549 + 0.02073844568701588 + 0.02134323166580998 + 0.02156082587214314 + 0.02509507210822903 + 0.03719176771016919 + 0.03719681175323331 + 0.02509982557864987 + 0.02156119467588269 + 0.02134417416425549 + 0.02073788689347111 + 0.02072146953912579 + 0.02058585034581029 + 0.02057304652305447 + 0.02055246429415547 + 0.02055998192997777 + 0.020552870350798 + 0.02055332856150471 + 0.02055116789313161 + 0.02055129455300175 + 0.02055106731029355 + 0.02055102633210026 + 0.02055122749777638 + 0.02055122004719578 + 0.02055187569828831 + 0.02055243821712338 + 0.02055583195658528 + 0.02055880101295315 + 0.02056681783767544 + 0.02058898704024159 + 0.02061555208535992 + 0.02073480607839429 + 0.02078728051753842 + 0.02156097860904538 + 0.02157647954197728 + 0.03265949757667386 + 0.03719169692965352 + 0.02482617320390546 + 0.02148242713781201 + 0.02134498255225026 + 0.020732593255957 + 0.02072100387783848 + 0.02059261919828259 + 0.02059296192499005 + 0.02055980684133374 + 0.02055994467707478 + 0.02055352600189053 + 0.02055342914434277 + 0.02055129827829205 + 0.02055129827829205 + 0.02055127592655026 + 0.02055126847596966 + 0.02055129827829205 + 0.02055129827829205 + 0.02055343286963307 + 0.02055358188124501 + 0.02055988134713971 + 0.02056001545759045 + 0.02059273095699155 + 0.0205938075658878 + 0.02071406738730275 + 0.02071784483166539 + 0.02134266542168461 + 0.0215623904940685 + 0.02512640925021969 + 0.0372358304438194 + 0.03701376216383778 + 0.02482142345877492 + 0.02154284017058217 + 0.02131019765408837 + 0.02073398837717377 + 0.02071777218850457 + 0.02059063548119866 + 0.02059140102835499 + 0.02055990556152665 + 0.02056007506223523 + 0.02055314043434464 + 0.02055329130860173 + 0.02055137650938832 + 0.02055157767506444 + 0.02055134484442078 + 0.02055153297158085 + 0.02055109897526108 + 0.02055381284924351 + 0.02055016020210587 + 0.02054981188746297 + 0.02055616723271214 + 0.02059521200033032 + 0.02059512259336316 + 0.02072234870763623 + 0.0207384121594032 + 0.02137088635834061 + 0.0215660003003677 + 0.02520850533517205 + 0.03735827328534924 + + diff --git a/test_gpstuff/octave/realValues_regression_hier.mat b/test_gpstuff/octave/realValues_regression_hier.mat new file mode 100644 index 00000000..87deddee --- /dev/null +++ b/test_gpstuff/octave/realValues_regression_hier.mat @@ -0,0 +1,37 @@ +# Created by Octave 3.8.1, Tue Jun 07 13:55:23 2016 EEST +# name: Eff +# type: matrix +# rows: 30 +# columns: 5 + 151.1569767477152 199.5657225875911 242.1921840878711 287.0105250426909 319.5076457909333 + 143.8521574177849 199.8309185864239 250.2065550850285 302.7602127379135 342.7848289256867 + 157.3281283801988 209.0717352957567 255.0268525499203 303.0776564103394 338.6326905916875 + 154.9811511999894 197.8086364729646 234.7378897990608 273.8870617111401 300.8852153748595 + 134.9658428665499 187.164244236717 233.7266564950925 282.5302035420875 318.9595722072032 + 159.3430757029233 208.7061835109258 252.2671572986503 297.9752055597559 331.2959548502914 + 140.6561490278551 188.9820879258096 231.5739110594038 276.4083975783224 308.9705581849983 + 155.6612913541191 205.1865276588313 248.9369614049949 294.8561773743103 328.4017324007373 + 178.7374488825773 236.0112230921929 287.5320638037015 341.0393238748629 381.8022331062277 + 133.9935816460702 180.2912912739012 220.8489926247446 263.6975821659546 294.372199019815 + 159.0115776921102 212.2569160795125 259.771507319215 309.400870829408 346.5094493385465 + 140.6961160547153 186.320915594508 226.1678110474013 268.2884778294402 298.239672834375 + 152.5964855466748 201.3196887676715 244.2625101428821 289.3918779957459 322.1875542071812 + 171.2336406670179 221.8422077240561 266.6151668379596 313.4680736125536 347.8387292561449 + 163.2758380963248 208.8572538959802 248.5529534104419 290.4163644535304 320.0153375189394 + 158.7710302601059 206.8197462963141 249.0479994493141 293.441120629791 325.4991101155469 + 140.4770657626423 190.0203522917768 233.8529342772843 279.9195100404688 313.6735795094586 + 154.7563293983921 202.6424947855811 244.723777010554 288.990044653554 320.9440991577551 + 159.1794743068324 210.858301850769 256.7721201273467 304.8082693341443 340.3729506195571 + 152.4835201423382 202.2454063347868 246.2424679499177 292.413983455217 326.2133449141945 + 154.7223992391032 205.7338270466965 250.9913204662211 298.399987372706 333.3811433350837 + 139.718611462856 190.4539119444836 235.4995215745713 282.7677685484183 317.6810647327841 + 144.412812077926 193.5679081099233 236.9872940722673 282.6270831214531 315.9532842629932 + 158.5253999178842 208.695923304779 253.0798221059822 299.6047851738032 333.7156345422165 + 133.5623361775864 185.1184538086827 231.0262545416398 279.1753856323427 314.9641308732025 + 159.3955757887554 208.2982193948388 251.3908568475146 296.6365728399282 329.5142052863014 + 167.6731398593417 215.7088365677938 257.8824240954067 302.1810965450594 334.1100470148552 + 156.6363877652266 205.8280136705206 249.2270010982171 294.7883982715511 327.9822580434501 + 138.2418009417018 189.3599755083986 234.8012961029014 282.4672344823708 317.7692764244418 + 152.9574704005217 202.5344060380962 246.341860099154 292.3241655137152 325.9396617196485 + + diff --git a/test_gpstuff/octave/realValues_regression_sparse1.mat b/test_gpstuff/octave/realValues_regression_sparse1.mat new file mode 100644 index 00000000..ac2907f4 --- /dev/null +++ b/test_gpstuff/octave/realValues_regression_sparse1.mat @@ -0,0 +1,6876 @@ +# Created by Octave 3.8.1, Tue Jun 07 13:57:00 2016 EEST +# name: Eft_fic +# type: matrix +# rows: 1369 +# columns: 1 + -0.6331140396272166 + -0.7723524759248153 + -0.9233066053268502 + -1.081723032597541 + -1.241834478701108 + -1.39644379656749 + -1.537165350897835 + -1.65483685785999 + -1.740096149579732 + -1.784094672849267 + -1.779295565652634 + -1.72028252138959 + -1.604490410615474 + -1.432763544629699 + -1.209655187376324 + -0.9434032725017285 + -0.6455507889760608 + -0.3302211476821323 + -0.01310330934178561 + 0.2897582154999429 + 0.5632438049246985 + 0.7943713117400723 + 0.9733076697657319 + 1.094070049097074 + 1.154845869053489 + 1.15790898070748 + 1.109159187204842 + 1.017356475375975 + 0.893153579715825 + 0.7480467363678903 + 0.5933634890226535 + 0.4393898035954193 + 0.2947104841283822 + 0.1658023349941811 + 0.056884417006853 + -0.03000082548057621 + -0.0947241764648272 + -0.6280077677726669 + -0.7190948162004783 + -0.81827922158864 + -0.9236896813574287 + -1.032250036125743 + -1.139590683995184 + -1.240096428913964 + -1.327120749120517 + -1.393378311508844 + -1.431503469568702 + -1.434735481134862 + -1.397665398193716 + -1.31695964549496 + -1.191965524145191 + -1.025107345570884 + -0.821999739540446 + -0.591235573232643 + -0.3438461037256449 + -0.09247473012608497 + 0.1496537747335708 + 0.3698560391369161 + 0.557076877877718 + 0.70281463125321 + 0.8017800374882282 + 0.8522188168236915 + 0.8558725182703433 + 0.8175987178446985 + 0.7447132102594425 + 0.6461473834791974 + 0.5315296167374254 + 0.4102990851639128 + 0.2909452662507482 + 0.1804404073618331 + 0.08390026860243102 + 0.004475989396896983 + -0.05654827991340507 + -0.09949784206928117 + -0.6141973054033343 + -0.653142472188189 + -0.696143542662064 + -0.7438512813664742 + -0.7960635392557708 + -0.8514584642891433 + -0.9074391243528652 + -0.9601365221561955 + -1.004600725402826 + -1.035184791691677 + -1.046096597729304 + -1.032064135201678 + -0.989035433980458 + -0.9148197978447673 + -0.8095759764585331 + -0.6760666570693024 + -0.5196261216299078 + -0.3478254553858949 + -0.1698616968230044 + 0.004262882519607777 + 0.1646741233837378 + 0.3025575916593964 + 0.4109738234547118 + 0.4854591597874192 + 0.5243447715767087 + 0.5287660378142032 + 0.502376449610594 + 0.4508180550172967 + 0.3810285495895019 + 0.3004798239373909 + 0.2164429255733544 + 0.1353612690295823 + 0.06239085068801174 + 0.001137760463694719 + -0.0464056690192675 + -0.07974981735043607 + -0.09966364474482654 + -0.5922759098426529 + -0.5774567919155147 + -0.5623864012086767 + -0.5502577753999051 + -0.5437923560366013 + -0.544798296644658 + -0.5538119177032172 + -0.5698854900546256 + -0.590568611425634 + -0.6121050250461076 + -0.6298352497097265 + -0.6387627130381929 + -0.6342127061401754 + -0.6124945581970946 + -0.5714717692648772 + -0.5109541062108034 + -0.4328489683831589 + -0.3410432708895413 + -0.2410263164978534 + -0.1393022463214831 + -0.04267140997914502 + 0.04252162717917267 + 0.1110725632666355 + 0.1594457059124461 + 0.1860828104748008 + 0.1914627273560849 + 0.1779185494485008 + 0.1492520989001287 + 0.1102105117434144 + 0.06590309014273009 + 0.02123738286262767 + -0.01955730897127279 + -0.05327026525848573 + -0.07788897289060191 + -0.09261813665694878 + -0.09775944201492501 + -0.09448858787640026 + -0.5631344038075158 + -0.4955082488014354 + -0.4232388961506979 + -0.3519544314299005 + -0.2872063446812255 + -0.233865511177247 + -0.1955708539372249 + -0.1743083667489219 + -0.1701840178287647 + -0.1814289375055728 + -0.2046427360576202 + -0.2352458550720394 + -0.2680802633153769 + -0.2980749495546708 + -0.3208825629755719 + -0.3333980907688468 + -0.3340890006267061 + -0.3230957360963784 + -0.3020968748149445 + -0.2739687081813489 + -0.2422986478076039 + -0.2108310317622844 + -0.1829298686034548 + -0.1611354637277707 + -0.1468726919924685 + -0.1403417433278529 + -0.1405923789592898 + -0.1457551400892455 + -0.1533818374422526 + -0.1608358596437193 + -0.1656713907245761 + -0.1659487112624136 + -0.1604480549383388 + -0.1487637380910706 + -0.1312799360915829 + -0.1090463795686217 + -0.08358408813543983 + -0.5278979442095649 + -0.411036926576163 + -0.2852497316747018 + -0.1583662032869839 + -0.03853139019494257 + 0.0665392568608808 + 0.1502834890594919 + 0.2079050553511205 + 0.2367981000875959 + 0.2367296610891618 + 0.209759429572592 + 0.1599120769718254 + 0.09265127986229885 + 0.01423062713389165 + -0.06898924597493009 + -0.1511677261225041 + -0.2274792526111379 + -0.2944242841129492 + -0.3499348446838023 + -0.3932850980001079 + -0.4248451095265526 + -0.4457353520024079 + -0.4574480637620656 + -0.4614987808151163 + -0.4591586971907858 + -0.4512989840961154 + -0.4383557341469213 + -0.420402842208819 + -0.3973033517721054 + -0.3688999125578955 + -0.3352029114204691 + -0.2965400201149843 + -0.2536416302193362 + -0.2076504457731687 + -0.1600576739351779 + -0.1125803573063503 + -0.06700265362630214 + -0.4878553267227229 + -0.3277953338560011 + -0.1548292468859472 + 0.02135997284190162 + 0.1904025642489628 + 0.3420980372393576 + 0.4672812922114325 + 0.5586005590971782 + 0.6111184810580582 + 0.6226699784369624 + 0.5939422327011077 + 0.5282782627984014 + 0.4312404565175665 + 0.309998717622705 + 0.1726255163468899 + 0.02738495753991827 + -0.1179048843441837 + -0.2563754719599605 + -0.3824413474543998 + -0.4919551637714638 + -0.5822006078790305 + -0.651758617376114 + -0.7002930844793412 + -0.7283042014744735 + -0.7368916555843159 + -0.7275581660281887 + -0.7020692049488706 + -0.6623701109695764 + -0.6105497389085895 + -0.5488320463425533 + -0.4795743535339587 + -0.4052531804547091 + -0.3284244825266383 + -0.2516531559220446 + -0.177415059732724 + -0.1079818617224075 + -0.04530354805753251 + -0.4443892416528138 + -0.2492984996123948 + -0.03780659299638459 + 0.1789948637813492 + 0.3889921029337491 + 0.5799806901059221 + 0.7406368242374615 + 0.8614254703534089 + 0.9353491872296928 + 0.9584613144526165 + 0.9300968324621239 + 0.8528090394185086 + 0.7320348532402418 + 0.5755409890539102 + 0.3927235855762447 + 0.1938429218981546 + -0.01072747505169229 + -0.2111701188263816 + -0.3987628700195863 + -0.5662618134416548 + -0.7081226757028032 + -0.8205737008235346 + -0.9015654658366599 + -0.9506295738571235 + -0.9686788839173628 + -0.9577781370446585 + -0.9209072066999483 + -0.861731534353431 + -0.7843871887374361 + -0.69328255240269 + -0.5929154835119679 + -0.4877039637076445 + -0.3818292992958323 + -0.2790931539739896 + -0.1827921858768154 + -0.09561601819575263 + -0.01957507167779146 + -0.398914860072803 + -0.1786047637345794 + 0.06095947775102304 + 0.3077908860484546 + 0.5485952553579114 + 0.769738037940494 + 0.9582781493461974 + 1.102965157716085 + 1.195100295968409 + 1.22917836749923 + 1.203254149121259 + 1.119009130817197 + 0.9815275399060567 + 0.7988199954170632 + 0.5811552563318938 + 0.3402733026055976 + 0.08855602141096533 + -0.1617738506441629 + -0.3993670105944551 + -0.6143325667355195 + -0.7986683957419055 + -0.9465278196173078 + -1.054327323339457 + -1.120710547175182 + -1.146390865811255 + -1.133898788658972 + -1.087261711924305 + -1.011642839780356 + -0.9129639617772738 + -0.7975337382084707 + -0.6716996169295943 + -0.5415377980005587 + -0.4125919980679808 + -0.2896682804148277 + -0.1766899685279064 + -0.07661365165717302 + 0.008595509170762048 + -0.3528319561982482 + -0.1181462220197878 + 0.1378825399564522 + 0.402921646372253 + 0.6631075547560069 + 0.9040065084283287 + 1.111665517289974 + 1.273653836097673 + 1.379996158979172 + 1.423911659512354 + 1.402295468530212 + 1.315907616224983 + 1.169264731439027 + 0.9702579483037149 + 0.7295434048883667 + 0.4597675228618473 + 0.1746973132557136 + -0.11167324945379 + -0.3859749624772497 + -0.6362170654987406 + -0.8523991670214679 + -1.026951721322664 + -1.154989737137898 + -1.234378371058626 + -1.265621935421936 + -1.251599005780001 + -1.197175143745109 + -1.108730718879705 + -0.9936440397063644 + -0.8597693759218734 + -0.7149456957154428 + -0.5665656188962217 + -0.4212260320348356 + -0.284472996361441 + -0.1606449534310493 + -0.05281058818559618 + 0.03720841765767247 + -0.307492832893103 + -0.06962111284338449 + 0.1908400188252357 + 0.4617627762055306 + 0.729333945505577 + 0.9789687536080148 + 1.196333961734252 + 1.368388070426745 + 1.484344726331104 + 1.536474214761 + 1.520675536070449 + 1.436775159734245 + 1.288534823454181 + 1.083376533844221 + 0.8318556844675534 + 0.546931256755533 + 0.2430946069951057 + -0.06457473609329696 + -0.3613562095984634 + -0.633771401837259 + -0.8703438377606443 + -1.062187120496136 + -1.203387549742021 + -1.291164041400042 + -1.325806070634429 + -1.310407983674584 + -1.250433707316302 + -1.153158005850384 + -1.027037698713485 + -0.8810679512404609 + -0.724174920094813 + -0.5646874574183892 + -0.4099186403664896 + -0.2658743269217518 + -0.1370925117980148 + -0.02660548414806738 + 0.06399226731204288 + -0.2641851224136009 + -0.03395257256267383 + 0.2192439279820902 + 0.4839973397797169 + 0.7471333543145428 + 0.9945407540521992 + 1.212124761215586 + 1.386802512583769 + 1.507455330666202 + 1.565756932461518 + 1.55680894119862 + 1.479533034811099 + 1.336790411557511 + 1.13522169510542 + 0.8848220430941062 + 0.5982856735665298 + 0.2901703363990586 + -0.02405523712082209 + -0.3290097438157466 + -0.6103692283152691 + -0.85573644830601 + -1.055345695393251 + -1.202552821665072 + -1.294078842480542 + -1.329997444829308 + -1.313479813038208 + -1.250331776856298 + -1.148375795548118 + -1.016741597743544 + -0.8651331531381022 + -0.7031359101868848 + -0.5396178530962484 + -0.3822627709381424 + -0.237256580319248 + -0.1091300766605595 + -0.0007462564352534382 + 0.08659112858121376 + -0.2241256472206807 + -0.01131032068189642 + 0.2239935380880239 + 0.4715474163398488 + 0.7193359850839556 + 0.9542834938873606 + 1.163101457459215 + 1.333200800530447 + 1.453594785711681 + 1.515719207817058 + 1.514102918352008 + 1.446833608959667 + 1.315779557733288 + 1.126546375005368 + 0.8881674772984747 + 0.6125470099804398 + 0.3136931860465167 + 0.006797330043633084 + -0.2927720859978875 + -0.5704820129460951 + -0.8135728689310147 + -1.011845681128906 + -1.158234524069291 + -1.249120131859954 + -1.284365485647789 + -1.267081512512133 + -1.203157369104829 + -1.100611707584346 + -0.968836017283602 + -0.8178068924536356 + -0.6573405772881892 + -0.4964514719136968 + -0.3428586796670129 + -0.2026640531794766 + -0.08020460368135227 + 0.0219357629519419 + 0.102783538240712 + -0.1884594625854496 + -0.001185099719272401 + 0.2073243670158943 + 0.4283500913306428 + 0.6514547473333574 + 0.8650628422028791 + 1.057175101793856 + 1.216165953500755 + 1.331604316625394 + 1.395033997934133 + 1.400650992247687 + 1.345820634258793 + 1.231387450245832 + 1.061744293682885 + 0.8446444222194869 + 0.5907598795125018 + 0.313010788109815 + 0.02571132474524719 + -0.2564028853690991 + -0.5191868839564696 + -0.7500515868815645 + -0.9387971009803688 + -1.078240138029561 + -1.164581392319219 + -1.197485457832427 + -1.179876097311376 + -1.117479418096679 + -1.018172709761354 + -0.8912139977412047 + -0.7464346875833977 + -0.5934745530059253 + -0.4411259217309914 + -0.2968347291681324 + -0.1663834360125168 + -0.05375810641926466 + 0.03881774342403058 + 0.1107144265212416 + -0.1582573406436382 + -0.002500990612359344 + 0.1725766779504164 + 0.3600090339806555 + 0.5512291593205876 + 0.7365018183423975 + 0.9054869665004991 + 1.047900418543068 + 1.15422700553513 + 1.216434037236944 + 1.228628710436894 + 1.187602801312883 + 1.09321208574636 + 0.9485468939172937 + 0.7598641964328873 + 0.536270286543568 + 0.2891653670391308 + 0.03148522129692422 + -0.2232020590572829 + -0.4616677386522929 + -0.671974631815198 + -0.8443202766824706 + -0.9716905903675223 + -1.050262773506779 + -1.079523519842112 + -1.062100289155214 + -1.003335096637261 + -0.9106574879805013 + -0.7928323826908524 + -0.6591669453167188 + -0.5187580060935264 + -0.3798489862280363 + -0.2493454213296663 + -0.1325145293496919 + -0.03287054464206304 + 0.04777300128615189 + 0.1091178997076455 + -0.1345054618177574 + -0.01374857984744109 + 0.1239116805488726 + 0.2733607982926102 + 0.4280509227665658 + 0.5802829699072103 + 0.7216128639916737 + 0.8433637199989614 + 0.9372145600085795 + 0.9958257330174434 + 1.013452580988333 + 0.986493298967616 + 0.9139157091959017 + 0.7975120145783365 + 0.6419412745919345 + 0.4545363336947456 + 0.2448741700780374 + 0.02413395124270758 + -0.1957076315825734 + -0.4027725637265943 + -0.5861836602384648 + -0.7368826825514976 + -0.8482813880740937 + -0.9166804123625227 + -0.9414175673288804 + -0.9247388520356491 + -0.8714176137195573 + -0.7881752020002871 + -0.6829762305540543 + -0.5642807327013522 + -0.4403334106735004 + -0.3185579914956647 + -0.205105063561083 + -0.104578234086155 + -0.01993979000936696 + 0.0474234108508769 + 0.09750796497094327 + -0.1180828788658766 + -0.0331224519240425 + 0.06600459847607357 + 0.1759975301922657 + 0.2923245411693737 + 0.4093643840766044 + 0.5206605488180104 + 0.6192844013687411 + 0.6982921731696444 + 0.7512482389163209 + 0.7727750716039679 + 0.7590803963605283 + 0.7084063380721949 + 0.6213455716548316 + 0.5009768640573808 + 0.3527872024723039 + 0.1843689571168527 + 0.004905967536596658 + -0.1755112568745336 + -0.346677773790775 + -0.499094034267576 + -0.6247269037015846 + -0.7176303386354916 + -0.7743601641711655 + -0.7941423735921549 + -0.7787846809317486 + -0.7323521503048804 + -0.6606549820663703 + -0.5706160824167847 + -0.4695954117081136 + -0.3647465981172032 + -0.2624699993856552 + -0.1680078380069659 + -0.08520466161125539 + -0.01643384607043341 + 0.03732860509684727 + 0.07631578805015793 + -0.1097251038547383 + -0.05864926850622373 + 0.003741084864363702 + 0.07578531593643313 + 0.154814285241446 + 0.2371713220467308 + 0.3183308516615338 + 0.3931229992912196 + 0.4560613403251353 + 0.5017575094873511 + 0.525392193445221 + 0.5231992301394601 + 0.4929104827424965 + 0.4341060305387116 + 0.3484185615845767 + 0.2395531349552223 + 0.1131028436149508 + -0.02383486598051057 + -0.1632106979046525 + -0.2966909305553157 + -0.4163686815784673 + -0.5154399917458217 + -0.5887686006633238 + -0.6332768571931887 + -0.6481224971791472 + -0.6346486120532704 + -0.5961227564914351 + -0.5373064571751567 + -0.4639147382008185 + -0.3820343300490742 + -0.2975682831609998 + -0.2157647262556652 + -0.1408708154714943 + -0.07593267167731133 + -0.02274166902730518 + 0.01809019835002895 + 0.04695583921031737 + -0.1099754519675084 + -0.08829707349287053 + -0.05806194999828501 + -0.01958891703048069 + 0.0260217913171102 + 0.07681804473776421 + 0.1300057266603694 + 0.1820556871323135 + 0.2289142078918799 + 0.2663101257541567 + 0.2901369115585051 + 0.2968738583757002 + 0.2839995949246287 + 0.250345732756059 + 0.1963402475164202 + 0.1240997852955827 + 0.03734675860187193 + -0.05885118575545288 + -0.1584980834520431 + -0.2551997727728686 + -0.3427474095342068 + -0.415686092750594 + -0.4698015369150739 + -0.5024685732298134 + -0.5128240448744334 + -0.501750372299431 + -0.4716809316007791 + -0.4262605657685815 + -0.3699107966694619 + -0.307357534589583 + -0.2431786458354841 + -0.1814204440390073 + -0.1253180169085633 + -0.07713702290497554 + -0.03813711784711787 + -0.008642096028599833 + 0.0118089774188016 + -0.1191289764073186 + -0.1200615251662987 + -0.1148969507602367 + -0.1030176817635245 + -0.08437155001766365 + -0.05959684594761665 + -0.03008549120714244 + 0.00203626160825976 + 0.03402160766336258 + 0.06271144871583008 + 0.08482322320901221 + 0.09729267833688836 + 0.09762978348269444 + 0.08424356181637288 + 0.05669054162662075 + 0.01580842961809514 + -0.03629006783852384 + -0.09637032985019789 + -0.1603628123086808 + -0.2237520102454161 + -0.2820207294869237 + -0.3310949410851501 + -0.3677344459576662 + -0.3898225520526793 + -0.3965226099305763 + -0.3882881167240324 + -0.3667331005443903 + -0.3343874891389818 + -0.2943754921367749 + -0.2500619611125329 + -0.2047116823579992 + -0.1612002271192903 + -0.1218039229738909 + -0.08808290604098357 + -0.06085741351956775 + -0.04026556569962847 + -0.02588237040524821 + -0.1371763714616249 + -0.1520295611330593 + -0.1627607190104216 + -0.1683054187439951 + -0.1679744882424141 + -0.1615910129945955 + -0.1495841543624859 + -0.1330201202823219 + -0.1135570903734975 + -0.09332040479645372 + -0.07470565747107774 + -0.0601287823481713 + -0.05175186065508233 + -0.05121940765053954 + -0.05944099950887322 + -0.0764517241562124 + -0.1013724629078527 + -0.1324787271868463 + -0.16737170335448 + -0.2032306950111557 + -0.2371146435404218 + -0.2662737243835477 + -0.28843120910362 + -0.3020008959190037 + -0.3062154877095367 + -0.3011545742870693 + -0.2876751273535229 + -0.2672603634204571 + -0.2418125461553322 + -0.2134205268314426 + -0.1841331392587831 + -0.1557653941519609 + -0.1297568677454873 + -0.1070922890325842 + -0.08828475393932611 + -0.0734137070571057 + -0.06220389813995453 + -0.1637566401181472 + -0.1824247388265608 + -0.198302871695879 + -0.2104266332801057 + -0.2180556772575789 + -0.2207766528707698 + -0.2185807492214617 + -0.2119022557883098 + -0.2016084382354054 + -0.1889369277209256 + -0.1753839731004863 + -0.1625542420499914 + -0.1519891732715538 + -0.1449950479243031 + -0.1424931296267659 + -0.1449120555847592 + -0.1521373490996047 + -0.1635252224071568 + -0.1779789390121895 + -0.1940773236095251 + -0.2102379345938581 + -0.2248930593590101 + -0.2366556902729932 + -0.2444550431014711 + -0.2476264703309926 + -0.245947821251879 + -0.2396221670780412 + -0.2292140709889059 + -0.2155521623473994 + -0.1996139609928517 + -0.1824094392182395 + -0.1648779113862986 + -0.1478090839018145 + -0.1317942932597737 + -0.1172089836761721 + -0.104223111758901 + -0.09283298394982176 + -0.1981273418751044 + -0.2096406181310425 + -0.2189311339450216 + -0.2257095925264869 + -0.2298093538133577 + -0.2312083133842174 + -0.230041274753319 + -0.2266004295723217 + -0.2213225285162973 + -0.214762623664483 + -0.2075557529834373 + -0.2003694262179893 + -0.1938510399664482 + -0.1885751907251788 + -0.1849961129116191 + -0.1834100738326225 + -0.1839315415013522 + -0.1864854371306643 + -0.1908160037352171 + -0.1965110181967986 + -0.2030384947478783 + -0.2097918742880987 + -0.2161390886951477 + -0.2214708617488574 + -0.2252440995959099 + -0.2270171075594248 + -0.2264744835709138 + -0.2234407146887278 + -0.2178825988343427 + -0.2099015268439169 + -0.1997173346301143 + -0.1876458579601594 + -0.1740725098808942 + -0.1594241871544835 + -0.1441416370359432 + -0.1286541179107046 + -0.1133578016355219 + -0.2391598149057884 + -0.2322688594948929 + -0.2228789779695366 + -0.2119494573350398 + -0.2005186810015588 + -0.1895994112331501 + -0.1800776640348343 + -0.1726288611600375 + -0.1676627604624557 + -0.1653045355349186 + -0.1654139141063857 + -0.1676383774548005 + -0.171491072628288 + -0.1764402329280904 + -0.1819952358294902 + -0.187775270362333 + -0.1935498132186323 + -0.1992451719811298 + -0.2049173614753065 + -0.2106974809346078 + -0.2167205224312649 + -0.2230513414235271 + -0.2296218925321276 + -0.2361917499188153 + -0.242339799903426 + -0.2474895749451597 + -0.2509649611621728 + -0.2520679511412122 + -0.2501665717102709 + -0.2447796361607393 + -0.2356457132054053 + -0.2227664395822075 + -0.2064184692279929 + -0.1871331796248321 + -0.1656479169970002 + -0.1428363204484551 + -0.1196275989515272 + -0.285364104038701 + -0.2491273507992321 + -0.2092411723333401 + -0.1684562345023407 + -0.1296214533461 + -0.09541089440857423 + -0.0680638647928918 + -0.04917230157485573 + -0.03954412306901332 + -0.0391610268757466 + -0.04723576829107379 + -0.06235936464452974 + -0.08271536105612359 + -0.1063285244946377 + -0.1313107948061772 + -0.1560688053170415 + -0.1794445294585995 + -0.2007723390320329 + -0.2198499201026179 + -0.2368346286992647 + -0.2520885733985928 + -0.2660030602851475 + -0.2788349196180178 + -0.2905835374654802 + -0.3009290044135902 + -0.3092403199844733 + -0.3146501673296395 + -0.3161815702419435 + -0.3129036058644059 + -0.3040894746598615 + -0.2893510128047128 + -0.2687287295523038 + -0.2427245280984422 + -0.2122738475961203 + -0.1786633443615016 + -0.1434078946853194 + -0.1081055668768409 + -0.3349448237653459 + -0.2592911007327733 + -0.1779812768110838 + -0.09604253181446575 + -0.01868362020362582 + 0.04918258355880951 + 0.1033977550164155 + 0.1409398617055269 + 0.1601784979335051 + 0.1609709623559796 + 0.1445884061966292 + 0.113485610991405 + 0.07095027068521165 + 0.02068433142980682 + -0.03362180338938429 + -0.08866289545752862 + -0.1417918925560183 + -0.1911621704675541 + -0.2357311831305798 + -0.2751402893631855 + -0.3095044980271994 + -0.3391581765254991 + -0.3644066199733278 + -0.3853285518491443 + -0.4016624182081234 + -0.4127922648992476 + -0.4178302789400208 + -0.4157760557932164 + -0.4057201476753851 + -0.3870533070793309 + -0.3596436816486064 + -0.3239514002044874 + -0.2810618225431825 + -0.2326328460134626 + -0.1807655126694168 + -0.1278184582771833 + -0.07619385592162553 + -0.3858853751978403 + -0.2621254951911586 + -0.129912774337747 + 0.003045341988458902 + 0.1287143713997375 + 0.2394430239639118 + 0.3286533443617966 + 0.3914258626033799 + 0.4249065906342683 + 0.4284859285738955 + 0.4037308587320241 + 0.3540862772385858 + 0.2843933393591708 + 0.2002970160216003 + 0.1076277271124082 + 0.01184101883417756 + -0.08241475082486946 + -0.171557139446478 + -0.2531394977933573 + -0.3257476508551614 + -0.3887653207043572 + -0.4420676885622903 + -0.4857086699770067 + -0.5196620098601344 + -0.5436608845649225 + -0.5571586565882308 + -0.5594090461448356 + -0.5496416778567657 + -0.5272924849469569 + -0.4922402789729641 + -0.445001757950638 + -0.386846502644113 + -0.319808880057201 + -0.2465921257487009 + -0.1703778392765205 + -0.09456868376488092 + -0.02250107493212017 + -0.436054386560117 + -0.2573185215852951 + -0.06665323392929594 + 0.1252508711341647 + 0.3071739722626134 + 0.4683295750617913 + 0.59930999215592 + 0.692901398034086 + 0.7446696537137393 + 0.7532478251676185 + 0.7202968366268157 + 0.6501556225341728 + 0.549239211839053 + 0.4252755782388773 + 0.2864896894215483 + 0.1408434693152072 + -0.00457613217162213 + -0.1439586879739042 + -0.2729369179563431 + -0.3885326798342751 + -0.4889299798786591 + -0.5731452617169385 + -0.6406739687537906 + -0.6911867382074421 + -0.7243306104267034 + -0.7396643915487062 + -0.7367280332419326 + -0.7152190015008963 + -0.6752287041427707 + -0.6174821727429407 + -0.5435253903243358 + -0.4558159238531534 + -0.3576911542272918 + -0.253210594392105 + -0.1468904165590539 + -0.04336567429273863 + 0.05297383720476123 + -0.4833254699487547 + -0.2449063684537673 + 0.009450577639808107 + 0.2658839850983084 + 0.5097528879735824 + 0.7268613725134804 + 0.9046732945512642 + 1.033374656317204 + 1.106658236685798 + 1.122140970822845 + 1.081374022257441 + 0.989460683945078 + 0.8543493106880108 + 0.6859090844375846 + 0.4949192579255857 + 0.2921044886908789 + 0.08733051043315326 + -0.1109602944641381 + -0.296038216792636 + -0.4629112943012615 + -0.6081369378593531 + -0.7294984473233044 + -0.8256361610776556 + -0.8957176022519485 + -0.9392111453504668 + -0.9557981340927437 + -0.9454251180103042 + -0.9084672278896202 + -0.8459510352959503 + -0.7597740784047611 + -0.6528598050905825 + -0.5291998338410786 + -0.3937570200800677 + -0.252228413868925 + -0.11069198650664 + 0.02481932714176116 + 0.1487612550860571 + -0.5256997565394123 + -0.2252858627356414 + 0.09542883375854276 + 0.4193485957279456 + 0.7283107302841303 + 1.0045719395008 + 1.232295583950194 + 1.398868884258881 + 1.495898132827054 + 1.519771520240286 + 1.471736965959624 + 1.3575072526006 + 1.186466404432505 + 0.9705998538247385 + 0.7232991230812761 + 0.4581958113007656 + 0.1881601619208479 + -0.07543905552831384 + -0.3231666163528933 + -0.5476504938675415 + -0.7434605267622261 + -0.9068195977139952 + -1.035244876159334 + -1.127211918597273 + -1.181913405409163 + -1.199152257442721 + -1.179372603676309 + -1.123798582144255 + -1.034626236341183 + -0.9152017780071842 + -0.770121592500737 + -0.605204278085596 + -0.4273092104940086 + -0.2440046372566456 + -0.06311571250481629 + 0.1077956750343136 + 0.2619554086497486 + -0.5614203721250837 + -0.1992077116049642 + 0.1878267870450646 + 0.5794162444413298 + 0.9539156647615161 + 1.290039569316335 + 1.568614420397869 + 1.774147892544732 + 1.896037645514125 + 1.929288691121974 + 1.874673692649284 + 1.738344265194232 + 1.530971795430638 + 1.266552408905069 + 0.9610441121514893 + 0.6310105885925794 + 0.2924261515424934 + -0.04024505731442587 + -0.3546370404169154 + -0.6407360581086941 + -0.8908506081573291 + -1.099383023070748 + -1.262504999826783 + -1.377835528149907 + -1.444198153462649 + -1.46150094217235 + -1.430744244972822 + -1.354125974238231 + -1.235188107625861 + -1.07893579243599 + -0.8918632351873437 + -0.6818371135798906 + -0.4578146979325703 + -0.2294047852580459 + -0.006309003310178696 + 0.2022962807535902 + 0.3883650874025504 + -0.5890690226046756 + -0.1677463826787338 + 0.2828728136869003 + 0.7395371656501046 + 1.177296717910595 + 1.571471962932717 + 1.899653759014603 + 2.143511825316446 + 2.290211117093702 + 2.333285858367854 + 2.272892602439496 + 2.115445050367018 + 1.872711544852596 + 1.560519001937937 + 1.197245322605448 + 0.8022913331457883 + 0.3947035105969517 + -0.007924517952133087 + -0.3902014945305035 + -0.7393303701880924 + -1.045188429103665 + -1.300180955440536 + -1.498972519200636 + -1.638197226983622 + -1.716227841583758 + -1.733049450102933 + -1.690244079934739 + -1.591056335120506 + -1.440483593038706 + -1.245322091388906 + -1.014103904855356 + -0.7568778557865201 + -0.4848157214364597 + -0.2096578936275098 + 0.05695642065590834 + 0.3042059795132928 + 0.522770967635493 + -0.6076369657428438 + -0.1322453439585626 + 0.3766705058514817 + 0.8931753736264133 + 1.389320748833728 + 1.837316810386079 + 2.21175279863035 + 2.491622463464344 + 2.66193346351917 + 2.714733130210888 + 2.649459652251123 + 2.472615301805094 + 2.196842926068775 + 1.839555503329937 + 1.421311196863528 + 0.9641379344478794 + 0.4899925061951912 + 0.0194950607938626 + -0.4289799154208538 + -0.8398392170134212 + -1.200473655200201 + -1.501210206339538 + -1.73511659961494 + -1.897759880956449 + -1.986999664266328 + -2.002862711542918 + -1.947506129196203 + -1.825240087797402 + -1.642554624761533 + -1.408083444981176 + -1.132442288185048 + -0.8278987999293212 + -0.5078606326982964 + -0.1862026447217033 + 0.1235140822355083 + 0.4088550740502064 + 0.6592696506245317 + -0.6165655040364216 + -0.09423977124806872 + 0.4654049890101933 + 1.034149802618546 + 1.58146790062523 + 2.076864244290221 + 2.492281281783459 + 2.804310782050557 + 2.995973825931186 + 3.057886609905967 + 2.988709987746426 + 2.794872855898581 + 2.4896489975202 + 2.091740116950805 + 1.62356409669596 + 1.109461593863798 + 0.5740162975685954 + 0.04064016375828036 + -0.4694856257737598 + -0.9380887445612617 + -1.350136663515113 + -1.693897693140347 + -1.960831599317286 + -2.145409059482835 + -2.244939454640348 + -2.259453295623277 + -2.191646997110729 + -2.046862089595154 + -1.833045436778894 + -1.560626325340452 + -1.242252012427929 + -0.8923438097368135 + -0.5264666346456512 + -0.1605399235643459 + 0.190049955844664 + 0.5113522712625835 + 0.7916757364629001 + -0.6157543250604157 + -0.05536211705825827 + 0.5455502608404748 + 1.156960058373726 + 1.746275794848447 + 2.28080349099324 + 2.730296419999359 + 3.069315988575191 + 3.279153202323159 + 3.349116740050021 + 3.277076079469237 + 3.069243226223349 + 2.739269387543284 + 2.306809274224116 + 1.795754865360275 + 1.232356828980773 + 0.6434356115168005 + 0.05484117390583926 + -0.5097398212802078 + -1.029596162408368 + -1.487449903167237 + -1.869630371757516 + -2.166058191364066 + -2.370134173403992 + -2.478609569931036 + -2.49148245285278 + -2.41192789877785 + -2.246235490497851 + -2.003703491335418 + -1.696429592894542 + -1.338944945373041 + -0.9476595692941996 + -0.5401187433413028 + -0.1341052403045992 + 0.2533455861168781 + 0.6069280916540576 + 0.9139471894088729 + -0.6055391204202657 + -0.01723855613356567 + 0.6140622715794601 + 1.257073843521829 + 1.877721832371257 + 2.441695737935097 + 2.91709689301864 + 3.276906115228504 + 3.501012343001376 + 3.577600146673338 + 3.503777092989939 + 3.285418270625059 + 2.936299681503531 + 2.476670387182839 + 1.931464398892586 + 1.328371613451432 + 0.6959727942954965 + 0.06210227670755517 + -0.5474566416276907 + -1.109903173618425 + -1.605995856107865 + -2.020337357871827 + -2.341453796444747 + -2.561757281115107 + -2.677463663915294 + -2.688507722696846 + -2.598463000821424 + -2.414441384846627 + -2.146925144295776 + -1.809476158848208 + -1.41827492269922 + -0.9914639419918236 + -0.5483018603443917 + -0.1081697479854196 + 0.3104974458331577 + 0.6912594544331006 + 1.02059670230741 + -0.586642573474556 + 0.01861415396940192 + 0.6685421999426003 + 1.331154179344426 + 1.971515359866753 + 2.554328920076264 + 3.046634243200193 + 3.420336156740264 + 3.654302986933124 + 3.735826884633155 + 3.661322217610666 + 3.436233709316109 + 3.074220359803971 + 2.595759820407586 + 2.026369996704147 + 1.394664523715783 + 0.730446480543147 + 0.06300571612084252 + -0.5802711878949052 + -1.174931677797646 + -1.700139419972241 + -2.139062007838091 + -2.47904223446578 + -2.711634200689395 + -2.832570581200835 + -2.841699930266363 + -2.742900449976522 + -2.543946955757535 + -2.256287522501924 + -1.894679872058035 + -1.476646388977733 + -1.021729028223596 + -0.5505569043291247 + -0.0837738152919778 + 0.3590964541912882 + 0.7607485940723731 + 1.107053161120105 + + +# name: Eft_pic +# type: matrix +# rows: 1369 +# columns: 1 + -0.4409793015415301 + -0.5865821680569625 + -0.7459980084891059 + -0.9142463977659285 + -1.08481247906102 + -1.249824136876899 + -1.400379527326286 + -1.527025384637717 + -1.620370089744603 + -1.671796822591271 + -1.674223370563418 + -1.622839161895353 + -1.51573998067818 + -1.354379504737207 + -1.143766304618153 + -0.8923557703231988 + -0.6116172099711757 + -0.3152937398153076 + -0.01841158106838821 + 0.2638698696410173 + 0.5174510625946226 + 0.7304020154812773 + 0.8938689465683392 + 1.002681156387014 + 1.055597997227632 + 1.055180250240819 + 1.007315959579851 + 0.9204709124580235 + 0.8047627698426305 + 0.6709716900245056 + 0.5295981085491583 + 0.3900617378296952 + 0.2601085791175695 + 0.1454598682416216 + 0.04970379331737405 + -0.02559771522415786 + -0.08063540927156272 + -0.4384901063696528 + -0.576392184656771 + -0.7104441172821474 + -0.8395598164970703 + -0.959880502015567 + -1.067975127128754 + -1.160745940591942 + -1.235238210511616 + -1.288427316280766 + -1.317073470556972 + -1.4272326213969 + -1.398932540917496 + -1.311717585253064 + -1.168468014401821 + -0.9771913421963241 + -0.7500792794408255 + -0.5020698421280532 + -0.249140704159144 + -0.006591342154736779 + 0.1592805665841108 + 0.363252211850432 + 0.5338074307056502 + 0.6641730850995637 + 0.7508698292102434 + 0.7937459528199575 + 0.7956678532883537 + 0.7619348622976521 + 0.6995172710949822 + 0.6128773729542376 + 0.4846956903339639 + 0.3492937628957269 + 0.2194445892785239 + 0.106356624814492 + 0.01859324812817009 + -0.03864197497640598 + -0.06377659161518912 + -0.05868820175288514 + -0.4331820506756234 + -0.5278055125371832 + -0.6110632406068444 + -0.6861123926396981 + -0.7520360381827143 + -0.8087071035314501 + -0.8564407641632936 + -0.8955212023076182 + -0.9257058385250385 + -0.9458283336750437 + -1.059031916209907 + -1.052602432539782 + -1.000790990866943 + -0.9050125628604384 + -0.7711687413725699 + -0.6088175517655756 + -0.4298826490694161 + -0.2471210209058068 + -0.07259699203908099 + 0.03306720091241955 + 0.1825917367150933 + 0.3083941910931403 + 0.4053542971506578 + 0.4709950623775381 + 0.5054474986857276 + 0.5111211160663309 + 0.4921559239988982 + 0.4537564791273621 + 0.3849961118088938 + 0.2875260087984131 + 0.1847233403439228 + 0.08817282583013597 + 0.008166035408424754 + -0.0474355511147504 + -0.0739867337188751 + -0.07039657459157711 + -0.03899403618272501 + -0.4255829456540689 + -0.4725070212886031 + -0.5014820076531308 + -0.5187026016431844 + -0.5263316434203915 + -0.5277061198700945 + -0.5267289976715066 + -0.5271044192968652 + -0.5315495203462319 + -0.5411354021406289 + -0.6627050488219339 + -0.6786179676252075 + -0.6639482947050617 + -0.6185977789233306 + -0.5462067451008679 + -0.4534517887424379 + -0.3489279274666153 + -0.2418237054558645 + -0.1406226661076442 + -0.0981364498229369 + -0.00841467524448003 + 0.06786252821472072 + 0.1274767016759863 + 0.1691379956694385 + 0.1933654872249448 + 0.2021305517428349 + 0.1983478884065768 + 0.185316083619357 + 0.1489491987593171 + 0.0831862876023739 + 0.01404574711724971 + -0.04819185959769845 + -0.09423540577372647 + -0.1169734112209735 + -0.1123333777983508 + -0.07969203187791507 + -0.0217957539824587 + -0.4160976917854671 + -0.4135630484870996 + -0.3874049391466245 + -0.3457772212101027 + -0.2939120498262184 + -0.2386106628191875 + -0.1873795648234928 + -0.1473785540715102 + -0.1243428853117621 + -0.1216622282461337 + -0.2552728894456529 + -0.2927225095363966 + -0.3150201341985763 + -0.3205904219205671 + -0.3107702965768624 + -0.2892426924477363 + -0.2611093603502503 + -0.231797451869781 + -0.206014852625966 + -0.2268652883311284 + -0.1996722538516416 + -0.175525290351235 + -0.1555647570148544 + -0.1397514790589662 + -0.1270840182879249 + -0.1159894707789988 + -0.1047936974786055 + -0.09216808364836204 + -0.08470134225316495 + -0.1190367368308038 + -0.1548203410565485 + -0.1831368865425156 + -0.1957353235935875 + -0.1862677075547294 + -0.1512212317106281 + -0.09040414517977169 + -0.006927408966912019 + -0.4049402117787556 + -0.3541114068975713 + -0.2748149453128903 + -0.1762896444304261 + -0.06666984358365013 + 0.04394830454617349 + 0.14460853608308 + 0.2248156248625595 + 0.2758871659378705 + 0.2921256721756293 + 0.1449859445346284 + 0.08808768835210756 + 0.03097438135556629 + -0.02342435069039439 + -0.07422082594159107 + -0.1221396502462895 + -0.1687894260147935 + -0.2158142956630016 + -0.264118574131464 + -0.3455870834739234 + -0.380750941084294 + -0.4089227120862278 + -0.429074743229152 + -0.4397509185189001 + -0.4393915947464153 + -0.4267649322263996 + -0.4014006613967158 + -0.3639226783720133 + -0.305397771089376 + -0.3098126649950486 + -0.3138644516479843 + -0.3100089795603695 + -0.291031709095829 + -0.2513289942383272 + -0.1879098289701924 + -0.1009582197069188 + 0.006119624218156261 + -0.3920987347178672 + -0.297085521505422 + -0.1694936254698023 + -0.01901107214515996 + 0.1436464105158812 + 0.3054243595990602 + 0.4522389265483771 + 0.5705359361776967 + 0.6488881838067257 + 0.679396746279199 + 0.5196826642965675 + 0.4465988373311731 + 0.3587056514703306 + 0.2600818722272962 + 0.1536413704928137 + 0.0414334429973664 + -0.07482597360210619 + -0.1931527674767928 + -0.3107920286803143 + -0.4474095628845669 + -0.5417937796237142 + -0.6199756804129164 + -0.6787641663426971 + -0.7152596941457157 + -0.7272930616699309 + -0.7139024035091328 + -0.6757345335901679 + -0.6152666435603216 + -0.5033505957098043 + -0.4804615825308325 + -0.4556019068479811 + -0.4225515001301443 + -0.3750886949082597 + -0.3083058168775841 + -0.2196748835955944 + -0.1096842462257523 + 0.01804686568572755 + -0.3773443007702161 + -0.244970282758409 + -0.07656022232854287 + 0.1181546591735572 + 0.3263369309673205 + 0.5324630136553576 + 0.7197987954934906 + 0.8721533686410599 + 0.9756817952183905 + 1.02048368356116 + 0.8515179741556018 + 0.7664714868814215 + 0.6534696206017614 + 0.5174641639961628 + 0.3630878467828893 + 0.1948399607070037 + 0.01743226599447212 + -0.1638467314759708 + -0.3428931182511157 + -0.5267495962416175 + -0.6744004198980491 + -0.7978879193719441 + -0.8919582242217476 + -0.9523064349337416 + -0.9761310036314086 + -0.9626598390272569 + -0.9135246986858476 + -0.8328798212812725 + -0.6702512565431412 + -0.6236107208008282 + -0.5736681397376633 + -0.5154326897123358 + -0.443596911629939 + -0.3538767622097154 + -0.2441326800899963 + -0.1150752064870986 + 0.0295540047164593 + -0.360286524386545 + -0.1996207789885931 + -8.025767295105624e-05 + 0.2287813653696347 + 0.4725776244343773 + 0.7139310939379939 + 0.9340649884778713 + 1.114698601808859 + 1.240005841790868 + 1.298370467377087 + 1.125440565258934 + 1.033308153170509 + 0.9021176455018107 + 0.737364545091264 + 0.545003784948463 + 0.3315415950430065 + 0.1042169158195421 + -0.1288510279544788 + -0.3586676180533814 + -0.5798787474312812 + -0.7723796960350287 + -0.9343512691069131 + -1.05866854442206 + -1.139722372904789 + -1.174086404248385 + -1.161093731007668 + -1.103190851363149 + -1.005965186720362 + -0.7998631408428258 + -0.7337464153772579 + -0.663326293828884 + -0.5847056252141822 + -0.4933838537545632 + -0.3856101263545568 + -0.2595484900278739 + -0.1160441670868524 + 0.04113262435791309 + -0.3404734289108099 + -0.1621660374642442 + 0.05721408598693412 + 0.3083933349348804 + 0.5760865100600991 + 0.8417670339294094 + 1.085318345824303 + 1.287011332947074 + 1.429561957616508 + 1.499995941101187 + 1.329674162420819 + 1.2356173815364 + 1.093915817204042 + 0.9102490880486336 + 0.6914354196079771 + 0.4454553869772511 + 0.1814970838293952 + -0.09008309082099331 + -0.3579782476119355 + -0.6052723375262534 + -0.832278544197103 + -1.024231057497448 + -1.172405350588358 + -1.270046172416354 + -1.313139620393793 + -1.301039559275308 + -1.23680829997542 + -1.127168405161301 + -0.888433393345873 + -0.8076045134390231 + -0.721832422393955 + -0.6281458187642337 + -0.5227222639106968 + -0.402241778924048 + -0.265082677373103 + -0.1121374237038557 + 0.05288704113360687 + -0.3175245768531605 + -0.0454248837601039 + 0.2355454972962714 + 0.5148698587364731 + 0.7805706700947836 + 1.020857388386487 + 1.224657472781823 + 1.382131914540673 + 1.485175025316603 + 1.527890635745716 + 1.549958525848977 + 1.463949937035006 + 1.311430429185716 + 1.100949233623119 + 0.8442957221083489 + 0.5555215031255329 + 0.2498723970672536 + -0.05726158735258835 + -0.3512922383410135 + -0.6736990274603274 + -0.9099894637206996 + -1.102204136913974 + -1.243876717395072 + -1.331335097366484 + -1.363824671735909 + -1.34349448571035 + -1.275228106159175 + -1.166305472726332 + -0.9497949661718117 + -0.7918330593888818 + -0.624469792319104 + -0.4579709188474013 + -0.3015380150752058 + -0.1627267362492617 + -0.04703087833976483 + 0.04233340992825063 + 0.1044312946322066 + -0.2912799786419422 + -0.02081525192113887 + 0.2576557730105278 + 0.5341967921814552 + 0.7974885295684933 + 1.036402333343072 + 1.240422901750891 + 1.400061131972696 + 1.507275287116226 + 1.555908464976588 + 1.589263857934828 + 1.510628939626868 + 1.364154447534025 + 1.157635718052919 + 0.9023041901906375 + 0.6119208854509424 + 0.3017486376059999 + -0.01249492282622811 + -0.3156187210210781 + -0.6524216389873017 + -0.8986165676735158 + -1.099702124604691 + -1.248575026267789 + -1.341157428217141 + -1.376542319192775 + -1.356967543434106 + -1.28760601569771 + -1.176167604933212 + -0.9532633116689908 + -0.7927294612306461 + -0.6230465491884551 + -0.4545996529094793 + -0.2965620848525532 + -0.1563518440365961 + -0.03926960822693459 + 0.05165956889270618 + 0.115640273075087 + -0.2619425675028355 + -0.003984927086455592 + 0.2603668171740674 + 0.522070464648416 + 0.7710153163478255 + 0.9973269284998336 + 1.191645259314894 + 1.345395287395261 + 1.451089675299083 + 1.502690483589221 + 1.545546584631179 + 1.477345592232471 + 1.342964135598599 + 1.149154374165033 + 0.906145320221782 + 0.6268386072753884 + 0.3258602493739176 + 0.01856097596602879 + -0.2799546168533489 + -0.6062085905845862 + -0.8507970179899225 + -1.051305234570329 + -1.200328419312821 + -1.293568340626143 + -1.329994448611397 + -1.311810458681967 + -1.244219461445483 + -1.134991042493061 + -0.9258913726276603 + -0.7692233753036035 + -0.6039455625745944 + -0.440131434374905 + -0.2865574615506716 + -0.1502177544367775 + -0.03602736647088989 + 0.05327606832359422 + 0.1170425429961028 + -0.2301903557733432 + 0.005813454270174212 + 0.2458990979711246 + 0.4822053768973844 + 0.7062834457326328 + 0.9100066159197863 + 1.085676947757619 + 1.226123100040821 + 1.324852152421458 + 1.376303611277618 + 1.426551383343948 + 1.370932322956847 + 1.253503013880911 + 1.079757386224976 + 0.8585589026471183 + 0.6014625417601778 + 0.3218790724040339 + 0.03416210938468822 + -0.2473096086017073 + -0.5416614196847758 + -0.77407093293828 + -0.9652667952723135 + -1.107874738236535 + -1.197565520413185 + -1.233223942359706 + -1.216911700760834 + -1.153622289640238 + -1.050838076869836 + -0.8723107711143676 + -0.7252964152917727 + -0.5704518713052877 + -0.4171439580523852 + -0.2734193653682482 + -0.1455948165073444 + -0.03803437112579999 + 0.04688875556480454 + 0.1086658225699573 + -0.1972363017938455 + 0.0094049286287472 + 0.217217542877548 + 0.4197621585729783 + 0.6105768510529584 + 0.7836437071766073 + 0.9333083558839035 + 1.054185840662647 + 1.141139103519842 + 1.189400480410517 + 1.24487566768263 + 1.202992428802498 + 1.105941833050082 + 0.9578331382520116 + 0.7659050560541836 + 0.5399892378736091 + 0.2918116814107847 + 0.03419858610231685 + -0.2197512428174981 + -0.4666497982781066 + -0.6778658481078819 + -0.8522396878915357 + -0.9827382035887702 + -1.06518432891459 + -1.098425172996452 + -1.084293617052323 + -1.027366419124842 + -0.9345341531631246 + -0.7978328250504347 + -0.665331667209589 + -0.5259677558166693 + -0.3880616737198004 + -0.2586493607706153 + -0.143161478507615 + -0.04528031848101577 + 0.03304013195562661 + 0.09141944094933052 + -0.1648194332325514 + 0.007558548622282224 + 0.1777592689150671 + 0.3409335738839494 + 0.4927803213726158 + 0.6295935954142347 + 0.7479925724399621 + 0.8446291384106095 + 0.9159820393521256 + 0.9583298200465702 + 1.017017800332461 + 0.9890143591825389 + 0.9141890307358267 + 0.7952374454831368 + 0.6376342111418509 + 0.4492434226101061 + 0.2397719077207121 + 0.02011683794045283 + -0.1983423411958753 + -0.3893693581973312 + -0.5724328351436899 + -0.7241186516405217 + -0.8380077817284014 + -0.9102427283011073 + -0.9396852938101909 + -0.9278779953021422 + -0.8788166233277506 + -0.7985530037303794 + -0.7082546413585593 + -0.593986064654425 + -0.4739500256916109 + -0.3551530270691323 + -0.2434045617181368 + -0.1430951877667894 + -0.05713530913638465 + 0.01297053059028386 + 0.0669493037754485 + -0.135119315792554 + 0.0009015186688121624 + 0.1311725716882481 + 0.2525022080318844 + 0.3627594559215918 + 0.4605807582171803 + 0.5449210861224387 + 0.6145707191186967 + 0.6677664797203406 + 0.702009847421369 + 0.7621657799946657 + 0.7472197648969576 + 0.6948361910981955 + 0.6063684524166018 + 0.4855159285032755 + 0.3380767627410588 + 0.171556840031343 + -0.005328245532602693 + -0.1832213941889087 + -0.3174025154957667 + -0.4677571648343966 + -0.5928327716791674 + -0.6870463672773611 + -0.7470031837949747 + -0.7716343435274573 + -0.7621577244124508 + -0.7218735766220474 + -0.6558162566419508 + -0.609723076698911 + -0.5161243742562647 + -0.4179119555805375 + -0.3205940923002686 + -0.2286132799226586 + -0.1452279048962914 + -0.07253169389047187 + -0.01157625684596653 + 0.03744402144065262 + -0.1105964113853497 + -0.01010692735970453 + 0.08109300613589809 + 0.1614101276272282 + 0.2307258157417629 + 0.2898724458448543 + 0.3400299208515392 + 0.3820726102432652 + 0.4160116036099888 + 0.4406618918513745 + 0.5008409713940019 + 0.4972559766596252 + 0.4659421131705308 + 0.4070790155027026 + 0.3227084050213342 + 0.216614243136716 + 0.0940803076366965 + -0.03845179860257453 + -0.1738005809749215 + -0.256918573533043 + -0.3725943599974348 + -0.4692502547435291 + -0.5423005113774932 + -0.5889251117930447 + -0.608177814362286 + -0.6009447257355844 + -0.5697686593214726 + -0.5185616197165592 + -0.5086338388126048 + -0.4367860273688233 + -0.3614559346913673 + -0.2865606773188887 + -0.2151166239417606 + -0.1492246932696109 + -0.09016578172685819 + -0.03856375079401708 + 0.005428223535911769 + -0.09377173896629509 + -0.02514105032004332 + 0.03097260487924647 + 0.0743726086840939 + 0.1066354895564758 + 0.1304736300953095 + 0.1490135401824584 + 0.1650065449519711 + 0.1801278142949094 + 0.1945063979020709 + 0.2535158479415998 + 0.2588498286443439 + 0.2457670732860979 + 0.213529957594627 + 0.1627615365480679 + 0.09542882731161129 + 0.01473130690660618 + -0.07509415311910139 + -0.1690407423902851 + -0.2121257788834887 + -0.2937586351256529 + -0.3623337804913298 + -0.414356910730389 + -0.4476584931750915 + -0.461463203147761 + -0.4563432605059727 + -0.4340742399842252 + -0.3974154649180885 + -0.4115332332757173 + -0.3611481456257923 + -0.3082969543758463 + -0.2553070024558011 + -0.2037934917246655 + -0.1547435901817558 + -0.1086797500824748 + -0.06585364464145371 + -0.02642497158896084 + -0.08696888295252851 + -0.1541820754167559 + -0.1755538207026634 + -0.1794888356877251 + -0.1664734405709175 + -0.1388351908973679 + -0.1004862215597652 + -0.05646449423721112 + -0.01233907863317218 + 0.02643515480581471 + 0.131607964903278 + 0.1477470984850582 + 0.1393549700928185 + 0.1064925300760216 + 0.05249712193172229 + -0.01658655736882331 + -0.09300761986008865 + -0.1685608468750317 + -0.2358603201041429 + -0.1528341115112326 + -0.2170608952088173 + -0.2805080010492631 + -0.3370766111015584 + -0.3807163167020775 + -0.406286185999285 + -0.410367247715687 + -0.3918815683795636 + -0.3523976392524837 + -0.301778987813079 + -0.2678861527260805 + -0.2337011466145977 + -0.2007692163091628 + -0.1696809632434735 + -0.1401480011256888 + -0.1112397254098556 + -0.0817262454221801 + -0.05045517169549441 + -0.09204825263110335 + -0.1655261347143714 + -0.2042956342906466 + -0.2278992734044498 + -0.2360454942053238 + -0.2300383709793472 + -0.2125713829285902 + -0.1873469071498661 + -0.158582657169956 + -0.1304819420884371 + -0.0377827043918666 + -0.01921184229211015 + -0.01879010847732587 + -0.03659031003263458 + -0.06981956831508285 + -0.1133771647964057 + -0.1608087148528412 + -0.2054761814103898 + -0.2417198717468327 + -0.1314531195637763 + -0.1718623233396173 + -0.2168501907670013 + -0.2609182773797691 + -0.2980783110050886 + -0.3227694601547704 + -0.3307789392491713 + -0.3200006644028726 + -0.2908879768543109 + -0.2422076325572649 + -0.2223641769086386 + -0.2022500716235536 + -0.1826263561330475 + -0.1635403171868299 + -0.1443941907183772 + -0.1241481135398197 + -0.1016128806591605 + -0.07577132589469038 + -0.1101664209437553 + -0.1740213412086031 + -0.2180914190221936 + -0.2493457898971716 + -0.2673445760638415 + -0.272968974322791 + -0.268219094496648 + -0.2558724329358797 + -0.2390631863296089 + -0.2208532129522238 + -0.1482057197972511 + -0.1310110951829451 + -0.127505688764697 + -0.1375037408998434 + -0.1583266775978895 + -0.1853810848789372 + -0.2130905524315665 + -0.2360008243560845 + -0.2498400628654984 + -0.1250114931336732 + -0.1487050056045796 + -0.1809476528799401 + -0.2167754622633318 + -0.2502681567280405 + -0.2755076593116286 + -0.2875915086624481 + -0.2835172602955573 + -0.2627714225384601 + -0.2086278395028902 + -0.198900683913604 + -0.1884056970090473 + -0.1773493903614547 + -0.1654707719811643 + -0.1520906415929932 + -0.1362670437292568 + -0.1170245791065447 + -0.09360929638809257 + -0.1415917818699838 + -0.1812484509145103 + -0.2174467523868042 + -0.2430953725703766 + -0.2582853582622682 + -0.2641397257022127 + -0.262565562875781 + -0.2559073651329604 + -0.2465650201076057 + -0.2366441158576689 + -0.1886394581697246 + -0.1767292749340381 + -0.1763751122985333 + -0.1867292389534772 + -0.2047611901005286 + -0.2258886112560301 + -0.24491485781299 + -0.257091500192157 + -0.2590933893794691 + -0.1323563893866293 + -0.1478008537395006 + -0.1741145188840179 + -0.2067570842574078 + -0.2398627265134188 + -0.2672238913768901 + -0.2833788682557383 + -0.2846030913079005 + -0.2696173231988439 + -0.2041717623981718 + -0.1997989950900125 + -0.1935919882654824 + -0.1854842672116206 + -0.1751838074930054 + -0.1621895045491319 + -0.1458857470746988 + -0.1256962193609761 + -0.1012629267993503 + -0.1856017710699356 + -0.1889913127075085 + -0.2038486606603995 + -0.2101850514497112 + -0.2093120837435913 + -0.2032845346789873 + -0.1945564042233423 + -0.185582770695742 + -0.1784384057920327 + -0.1745209403872678 + -0.1520739397130377 + -0.1492996140046206 + -0.1585449888960859 + -0.1779077884909253 + -0.2035296639770028 + -0.2303120579393276 + -0.2528892000075107 + -0.2666737977769404 + -0.2687687638309946 + -0.1518676603801232 + -0.1683985713202425 + -0.1962916558508212 + -0.2312821421490696 + -0.267527700713277 + -0.2986012751971678 + -0.3186317218128458 + -0.3233791589116279 + -0.3110406136532404 + -0.2307398809142791 + -0.2263303275204445 + -0.2184210212203714 + -0.2069922200750645 + -0.1920278286656378 + -0.1734852066786976 + -0.151316225091616 + -0.1255350067496455 + -0.09631354597834907 + -0.240477286483088 + -0.1987564415866663 + -0.1792767028019586 + -0.1529384862999139 + -0.1229351193421513 + -0.09292889189261189 + -0.06656309006119976 + -0.04696651706234078 + -0.03633313791850146 + -0.035648122782729 + -0.03590593999756297 + -0.04591528393611011 + -0.0711260674410088 + -0.1082207614930528 + -0.1520538256226445 + -0.1964821946230408 + -0.2354029239478184 + -0.2638097126003505 + -0.2786668930815743 + -0.18188121450126 + -0.2091947867116879 + -0.2464510130296134 + -0.2894838542080933 + -0.3324283419400338 + -0.3687066373230827 + -0.3921992467185298 + -0.3983787866264805 + -0.3851877498313101 + -0.2890290099981989 + -0.2787753732913876 + -0.2627484991483966 + -0.2413184597678182 + -0.2150685654628006 + -0.1847047809962863 + -0.1509917274307941 + -0.114725503575051 + -0.07674021022239952 + -0.3035980770619509 + -0.211336282259099 + -0.1457093348045246 + -0.07442723607268054 + -0.003161752297678788 + 0.06219338107801597 + 0.116197339612909 + 0.1544977616553869 + 0.1743289008453859 + 0.1747943430034766 + 0.1579141089887122 + 0.1318122571752873 + 0.08464345223812764 + 0.02145033744805858 + -0.05091700173974623 + -0.1247714111607507 + -0.1927179408185093 + -0.2487487890314739 + -0.2891071324307894 + -0.221044037175961 + -0.2687031843633001 + -0.322980391021396 + -0.3796123465557315 + -0.4326526041104906 + -0.4754362331471143 + -0.5017588627423564 + -0.5070418101401017 + -0.4892544892224748 + -0.3785522484172157 + -0.3564565034740124 + -0.3257186768711264 + -0.287449583484058 + -0.2431583116292577 + -0.1945881065096842 + -0.1435571611144475 + -0.0918294452885462 + -0.04102821546090674 + -0.371630435056158 + -0.2264967383189456 + -0.104714215581998 + 0.02202801261524456 + 0.1450787001154321 + 0.2557742376353422 + 0.3463359787713198 + 0.4106830939069361 + 0.4450443226406211 + 0.4482808332946568 + 0.4229964841819536 + 0.3779550785511683 + 0.3034849579622616 + 0.2065969814756379 + 0.0961985018820446 + -0.01803631269747186 + -0.1269103573851726 + -0.222862656623489 + -0.3008497420995422 + -0.2685412140817434 + -0.3455161828967412 + -0.4239775897699296 + -0.4993595551254266 + -0.5655653678004633 + -0.6158979624315251 + -0.644224918466918 + -0.6461478946934669 + -0.6199415661561858 + -0.4976442195412076 + -0.4577550694262733 + -0.4057944522079664 + -0.3439568556353825 + -0.274992573736669 + -0.2019579686371218 + -0.1279525022665773 + -0.05588231135316057 + 0.01172157790647432 + -0.4407872963197685 + -0.2428484012686196 + -0.05719214260151784 + 0.1332373357912582 + 0.316428788029306 + 0.480523775458753 + 0.6149627618979547 + 0.7115049656838366 + 0.7649844532469015 + 0.7737023941680672 + 0.7488871826635304 + 0.6826295914942904 + 0.5764150356857272 + 0.4393869062751303 + 0.282779049129795 + 0.1186143505111854 + -0.04167127130596526 + -0.1884741854998921 + -0.3149480016851385 + -0.3241590291297562 + -0.4384175277183253 + -0.547406774686614 + -0.6460538965493754 + -0.7280363932681198 + -0.786668107568353 + -0.8160302429385808 + -0.8121194037902768 + -0.7737757819203708 + -0.6434583256527748 + -0.5801196389006957 + -0.5007774885365279 + -0.4090291642637176 + -0.3091567860252704 + -0.2057813562756667 + -0.1034892979180295 + -0.006485331547255946 + 0.08168538652013169 + -0.5071323786524591 + -0.2908392522905432 + -0.05041033943223816 + 0.2030127864464939 + 0.4533527038914205 + 0.6839470179953757 + 0.8791508995128625 + 1.025877060856631 + 1.114869174184433 + 1.141538514440523 + 0.9766215701629863 + 0.8800067252237893 + 0.7612403145571545 + 0.6272739844133959 + 0.4827442807657949 + 0.3301516309357773 + 0.1705889731558461 + 0.004807965976171502 + -0.1656566519307443 + -0.4227428717199357 + -0.5602620535028242 + -0.6752116703733302 + -0.7667853307657895 + -0.8343396490131054 + -0.8771408343743863 + -0.8943457135674482 + -0.8852035614668745 + -0.8494141628522369 + -0.7842023963422697 + -0.725868069776471 + -0.6508658557843852 + -0.5580140910680385 + -0.4465045821972708 + -0.3164859344741799 + -0.1695439542796926 + -0.008984567034138635 + 0.1601442484093916 + -0.5668953741402367 + -0.2894594487721216 + 0.02139251554236576 + 0.3471460163262154 + 0.6678293775873598 + 0.962814844490345 + 1.21273982077241 + 1.401348528581244 + 1.517017040063604 + 1.553764874369426 + 1.368409623143668 + 1.24757038953373 + 1.091240241749158 + 0.9085848547869784 + 0.70684077602629 + 0.4913183109136376 + 0.2659740115005143 + 0.03434812051580494 + -0.1994116370064987 + -0.5303042935210778 + -0.7207083502783869 + -0.8795256662739206 + -1.004783030563521 + -1.095094528025442 + -1.149402689812585 + -1.166955880655402 + -1.147506015245138 + -1.091656141247246 + -0.9683814650633202 + -0.8803365142818329 + -0.7712145573985225 + -0.6409702240150743 + -0.4899568299273263 + -0.319524457947729 + -0.1325026297891299 + 0.06653485002921045 + 0.2712891360725695 + -0.6167649540407085 + -0.2786769148134507 + 0.1025085806216701 + 0.5005428271946601 + 0.8916208226710274 + 1.251190815006818 + 1.556182467802149 + 1.787141821714962 + 1.930004899774383 + 1.977287840429071 + 1.772396496642716 + 1.627200442922159 + 1.432419282553531 + 1.199368922778448 + 0.9379111135530831 + 0.6562790067340956 + 0.3614806907269301 + 0.06008577157394335 + -0.2408790921433237 + -0.6500834160627615 + -0.8970370903641598 + -1.102797011842894 + -1.264008189818622 + -1.378387588984778 + -1.444472860177818 + -1.461600717601964 + -1.430096781263838 + -1.351601684925134 + -1.164214060670286 + -1.042658354237084 + -0.8953526962275902 + -0.7236487276863066 + -0.5293100671868523 + -0.3151055433388024 + -0.085278132678269 + 0.1542192051685376 + 0.3957888959580931 + -0.6541302818509859 + -0.2578759684202909 + 0.1905688370874716 + 0.657727130032109 + 1.116179869675671 + 1.537657635855473 + 1.89555150311925 + 2.167320729139237 + 2.336501194556153 + 2.394069489417121 + 2.172193877252571 + 2.003427166781202 + 1.770830530359254 + 1.487720748079734 + 1.166500995771072 + 0.8183152729459593 + 0.4532777940268495 + 0.08109394329132691 + -0.2881934335669492 + -0.7751291479216551 + -1.079648549322969 + -1.333215589301613 + -1.530949530740557 + -1.669561294794542 + -1.747121899343762 + -1.763046562689588 + -1.718274066222655 + -1.615562633978413 + -1.364528483141239 + -1.206985978508779 + -1.018932708015633 + -0.8033174299821013 + -0.5635041376340268 + -0.3038411604322029 + -0.03010070750132421 + 0.2503245559190415 + 0.5285367638923901 + -0.6772491009859611 + -0.2270574693193312 + 0.2827923761135258 + 0.8130222734701205 + 1.332964088443339 + 1.810990036210368 + 2.217270896012771 + 2.526424761292077 + 2.719736618357923 + 2.786683907976181 + 2.552084610887327 + 2.361455122900825 + 2.093197650563797 + 1.762403868892194 + 1.383832481715649 + 0.9714053928176991 + 0.5382650994289175 + 0.09722275554427995 + -0.3386585284013002 + -0.8972509317225068 + -1.257614665702789 + -1.557567323920283 + -1.790639247734083 + -1.95248046488317 + -2.040659190933425 + -2.05465594013638 + -1.996030734779985 + -1.868682353239471 + -1.561643438823626 + -1.367144764730906 + -1.137479763613467 + -0.8773225472183377 + -0.5917570948557547 + -0.2868043196639292 + 0.0301821270036573 + 0.3503673222530548 + 0.6636022739360943 + -0.6853300619647791 + -0.1868938914521534 + 0.3760769585350956 + 0.960795524642688 + 1.533834992096121 + 2.060701463683326 + 2.508794861809489 + 2.850257663464469 + 3.064373245822844 + 3.139233267726214 + 2.897727672492323 + 2.687814623504359 + 2.387482626503371 + 2.013308424652773 + 1.582130299915812 + 1.110404475857342 + 0.6140993379563611 + 0.1089706062180653 + -0.3890247293255573 + -1.007786635150694 + -1.419624436168714 + -1.762329512779864 + -2.027864780226807 + -2.210822731886561 + -2.308261915200021 + -2.319714414829436 + -2.247339941105977 + -2.096144379414435 + -1.747746279213303 + -1.516925604327007 + -1.246586250760689 + -0.9431768869645367 + -0.6135430353876785 + -0.2653965516163765 + 0.09234446116642836 + 0.4494618129454722 + 0.7946563588165585 + -0.6785273440891612 + -0.1387181446836965 + 0.4671295032665412 + 1.095714498031677 + 1.711440973433475 + 2.277547499249708 + 2.759219032123851 + 3.126587285428165 + 3.3572685189056 + 3.438147019856463 + 3.196755838114523 + 2.970905084731376 + 2.643347571104722 + 2.23180716928654 + 1.754852158246155 + 1.231134662641049 + 0.6791362417162805 + 0.1172768495856662 + -0.4358398380986639 + -1.098465623777765 + -1.555019093663262 + -1.934850922875118 + -2.2284604434057 + -2.429443727093417 + -2.534373091185271 + -2.542820091904664 + -2.457496027683002 + -2.284427938585532 + -1.915312860872032 + -1.650407376310053 + -1.342123528362929 + -0.9986522805251354 + -0.6285614700550433 + -0.2411953037121677 + 0.1530508704729883 + 0.5426954470816359 + 0.9154393341932341 + -0.6578553778903679 + -0.08444557519248064 + 0.5526300953521153 + 1.213001675720657 + 1.859562562170286 + 2.45395732003877 + 2.959788639252882 + 3.345716168557815 + 3.588089524840593 + 3.672817512387928 + 3.439249247233206 + 3.201419120027737 + 2.852506570798526 + 2.411014194650223 + 1.896836687683358 + 1.330409007295286 + 0.7323224008972833 + 0.1232796200206003 + -0.4758210801295011 + -1.162251377606998 + -1.654786092820528 + -2.064472715503555 + -2.380524975658645 + -2.595656497679766 + -2.706005400079011 + -2.711173565951061 + -2.614353438692003 + -2.422461628049037 + -2.057535861140764 + -1.76228444554658 + -1.420455569855527 + -1.041871330150421 + -0.6367043024687824 + -0.2157983859275063 + 0.2091274505968226 + 0.6255039178408399 + 1.020225258933017 + -0.6250393770188484 + -0.0264370589585663 + 0.6294171016375174 + 1.308669869800211 + 1.973398107886896 + 2.584366827093274 + 3.104273391001786 + 3.500889427087269 + 3.749742164306635 + 3.836036020171279 + 3.618072058906682 + 3.372639942596861 + 3.008966708702223 + 2.545953186291033 + 2.004384420877603 + 1.406013652210831 + 0.7730710587084602 + 0.1280823618596152 + -0.5061955921263852 + -1.194052272186731 + -1.712387116261379 + -2.143454194288132 + -2.475420530604119 + -2.700275403083955 + -2.813799242587535 + -2.815618594050759 + -2.709319311610328 + -2.502539659135223 + -2.16872411093188 + -1.848170799247331 + -1.478636448013177 + -1.071391628500585 + -0.63802518362378 + -0.1906817742972606 + 0.2578077042447617 + 0.6940089700302732 + 1.104236674281328 + + +# name: Eft_var +# type: matrix +# rows: 1369 +# columns: 1 + -0.7182436415335698 + -0.7837199320428182 + -0.871083746690139 + -0.9792566013930083 + -1.104248051952927 + -1.239098471640936 + -1.374184854811939 + -1.497895072397252 + -1.597624274682814 + -1.660997294900455 + -1.677181206257555 + -1.638129798853349 + -1.539601375415428 + -1.38181414173442 + -1.16964693919625 + -0.9123509315627085 + -0.6228013727217078 + -0.3163779737261223 + -0.009608578055763338 + 0.2812629439798824 + 0.541620802643805 + 0.7595895000401401 + 0.9268086211062893 + 1.038814545773775 + 1.095026422744018 + 1.098381711908042 + 1.054702963049195 + 0.9718982585344598 + 0.8591019068359811 + 0.7258513418814811 + 0.5813746964734705 + 0.434036246067436 + 0.2909589994270828 + 0.1578194319668455 + 0.03879154366744324 + -0.06339278060199463 + -0.1473031266491756 + -0.7322933576491918 + -0.7561704470007953 + -0.7982118009829572 + -0.8592681024275343 + -0.9376079239725361 + -1.028732017106337 + -1.12552245155752 + -1.218743931460939 + -1.297865289219657 + -1.352120313708282 + -1.371686793404336 + -1.348838144988142 + -1.278918167360069 + -1.16100790134844 + -0.9981921098648038 + -0.7973858414163678 + -0.5687406651550944 + -0.3247061323437854 + -0.07886607272047803 + 0.1553051317686588 + 0.3656174579014743 + 0.5421401825332409 + 0.6778807661920679 + 0.7691174029591411 + 0.815383591283116 + 0.8191468142330598 + 0.7852561034115624 + 0.7202512509214782 + 0.6316289615229637 + 0.5271502069387203 + 0.414252340274733 + 0.299604034103087 + 0.1888156680935432 + 0.08629634849090036 + -0.004766237953861595 + -0.08233462266814161 + -0.1453915320237015 + -0.7306451220787159 + -0.7098822206801415 + -0.7030433471220343 + -0.7130113713942277 + -0.7404822809502477 + -0.7836463768149375 + -0.8381684024007863 + -0.8974962682297791 + -0.9534821580821271 + -0.997252898905358 + -1.020226312913408 + -1.015143939396322 + -0.9769830639804873 + -0.9036243765946479 + -0.7961841622348772 + -0.6589666868437221 + -0.4990458254996447 + -0.3255362899053748 + -0.1486557957690322 + 0.02129612420584922 + 0.1749124374474417 + 0.3044908421862233 + 0.4045995793662903 + 0.4723531272289761 + 0.5073971411303165 + 0.5116404008029029 + 0.4887996835899908 + 0.44383819214461 + 0.3823789307100821 + 0.310163217983888 + 0.2326051012801306 + 0.1544693831034457 + 0.0796787237834312 + 0.01123732069645269 + -0.0487529840267453 + -0.09901318495168268 + -0.1389721734147417 + -0.7129317611301782 + -0.6464160889250983 + -0.5892057955055432 + -0.5462272034968378 + -0.5206680305362243 + -0.51352706936373 + -0.5234201112999064 + -0.5466839830887609 + -0.5777791135907828 + -0.6099470256032444 + -0.6360398462186369 + -0.6494112014385109 + -0.6447468017725632 + -0.6187209249097444 + -0.5703908170632993 + -0.5012805141940992 + -0.4151520302873575 + -0.3175073878308822 + -0.2149020000064852 + -0.1141726077864775 + -0.02168825874514755 + 0.05727913627971325 + 0.1189940909804162 + 0.1614705771175965 + 0.184459149139393 + 0.1892406137287824 + 0.1782815943996121 + 0.1548183548038198 + 0.1224341757015695 + 0.08468444155801906 + 0.04480593214434903 + 0.005526816918304013 + -0.03102457249579979 + -0.06332804540173155 + -0.09042070167583803 + -0.1118125366709545 + -0.1273909898718548 + -0.6797787861511799 + -0.5685591814255927 + -0.4618102533769973 + -0.3664124752240629 + -0.2879936567769502 + -0.2303553568763221 + -0.1951073993408992 + -0.1815638281770265 + -0.1869174726559285 + -0.2066700533759728 + -0.2352571082301542 + -0.2667784318845415 + -0.2957302456678726 + -0.317637531521951 + -0.3295034477879057 + -0.3300241039059169 + -0.3195554955523823 + -0.2998581852636144 + -0.2736776122138696 + -0.244238450068212 + -0.2147373622206906 + -0.1879098645704253 + -0.1657265411351483 + -0.1492463047613662 + -0.1386254047206292 + -0.1332558271350511 + -0.1319896671799833 + -0.1333990367027782 + -0.1360239854567788 + -0.1385717362302689 + -0.1400459918137575 + -0.1398014785159666 + -0.1375329598168334 + -0.1332174134780382 + -0.1270319690509843 + -0.1192689033978879 + -0.1102638410626366 + -0.632801736697684 + -0.4801877827311747 + -0.3271717614498849 + -0.1823961999533397 + -0.05375688918636175 + 0.05227900887681387 + 0.1311987262319212 + 0.1807500803686074 + 0.2009948140493896 + 0.1941114443318461 + 0.1639851896890949 + 0.1156513482515796 + 0.05467601822419973 + -0.01343853602741049 + -0.08374744884998103 + -0.1522020211760439 + -0.2158098541904526 + -0.2726237997932158 + -0.3215940846206152 + -0.3623358879831854 + -0.3948710498653555 + -0.4193973627217282 + -0.4361242826433467 + -0.4451937872075732 + -0.4466841474541923 + -0.4406769024618248 + -0.4273564655598392 + -0.407108947714401 + -0.3805914971923675 + -0.3487537194741187 + -0.3128056233887824 + -0.274138930692027 + -0.2342179078266921 + -0.1944605753876098 + -0.156130890876101 + -0.1202580705251814 + -0.0875921802251677 + -0.5745086380456222 + -0.3860136566418019 + -0.1923900411634886 + -0.003752680895159877 + 0.1700233837328606 + 0.3200719389073735 + 0.4392024276227633 + 0.5223930055704674 + 0.5670618480447797 + 0.5730990747275638 + 0.5426736568319894 + 0.4798579811146627 + 0.3901327535269357 + 0.2798436544991726 + 0.1556778393880865 + 0.02421455569136715 + -0.1084167087411166 + -0.2367604268344135 + -0.3561524806484581 + -0.4627566658851179 + -0.5535526800753769 + -0.6263061578985671 + -0.6795426567049202 + -0.7125350635336799 + -0.7253012476361361 + -0.7185991373446704 + -0.693901916092032 + -0.6533373996845209 + -0.5995820710117079 + -0.5357097425613663 + -0.4650048419934128 + -0.3907584025132793 + -0.3160691770175257 + -0.2436720918225903 + -0.175811821462669 + -0.1141718219814549 + -0.05986045978994395 + -0.508113703244522 + -0.2912320568546651 + -0.06482168392796653 + 0.159904587871888 + 0.371485247660059 + 0.5590396509845723 + 0.7130494506112456 + 0.8260145137943591 + 0.8929227717881705 + 0.9114979523493411 + 0.8822172356829733 + 0.8081179377392396 + 0.6944341218116785 + 0.548117524243617 + 0.37730106113698 + 0.1907580921971675 + -0.002601145639465786 + -0.1941696068945167 + -0.3760085029700158 + -0.5411374269222905 + -0.6837561451351134 + -0.7994059312316124 + -0.8850754700869418 + -0.9392515295487543 + -0.9619102295911968 + -0.9544429009452351 + -0.9195123658961535 + -0.8608409578268638 + -0.7829395710428491 + -0.6907955864717595 + -0.589544516588407 + -0.4841538597828568 + -0.3791469412347195 + -0.278389440412866 + -0.1849528228010805 + -0.1010586512713042 + -0.02809766740691966 + -0.437280313444928 + -0.201103632750425 + 0.04850916698146277 + 0.2996863947082444 + 0.5398560116920238 + 0.7566053861723013 + 0.9385450253087908 + 1.076095887041284 + 1.162129848385735 + 1.192411228427283 + 1.165810858056456 + 1.084289256282288 + 0.9526682447715031 + 0.7782277905791806 + 0.5701752805966076 + 0.3390375789726826 + 0.0960232609639908 + -0.147604541021588 + -0.3811127711072944 + -0.5948166387010893 + -0.7805135711542373 + -0.9318191508604367 + -1.044393822804141 + -1.11605154557887 + -1.14674511882172 + -1.138428579375292 + -1.094804958120633 + -1.020977071325839 + -0.9230283886765577 + -0.8075685242444272 + -0.6812818236400182 + -0.5505167585380973 + -0.4209481858422351 + -0.2973347645845092 + -0.1833815457967667 + -0.08170500981558967 + 0.006113325284578502 + -0.3658214444255029 + -0.1205132746158256 + 0.1415030574714277 + 0.408174557939514 + 0.6663497505083521 + 0.9026362472370301 + 1.104310555365755 + 1.260199668930315 + 1.36145729731636 + 1.40216959432678 + 1.379743911877227 + 1.295056477296869 + 1.152357762472987 + 0.958954785491388 + 0.7247055931410076 + 0.4613717369466854 + 0.181879774549904 + -0.1004563871119534 + -0.3727028429964344 + -0.6230175328098311 + -0.8412667337878333 + -1.019512585286795 + -1.152345366499276 + -1.23704317393783 + -1.273552476962327 + -1.264295605537068 + -1.213824717084153 + -1.128354741508979 + -1.015218384509021 + -0.8822926857367889 + -0.7374475757793111 + -0.5880619037092487 + -0.4406420931279438 + -0.3005644685307962 + -0.1719465823586891 + -0.05763799470324016 + 0.04069092378532746 + -0.2973923317900187 + -0.05355468614827265 + 0.2095169919494511 + 0.48007395348608 + 0.7449382472937065 + 0.990325798504185 + 1.202764412090231 + 1.370029134590087 + 1.482014486035126 + 1.531468887415655 + 1.514530087664075 + 1.431019481727919 + 1.28447529494053 + 1.081927015982658 + 0.8334339035653273 + 0.5514272608858436 + 0.2499086240791002 + -0.05643613814394208 + -0.3531433353042732 + -0.6268356177038951 + -0.865985058274672 + -1.061524208362547 + -1.207265447730336 + -1.300103470015142 + -1.339992917604455 + -1.329711849582664 + -1.274440170470345 + -1.181198253329054 + -1.058202605510655 + -0.9142007969860995 + -0.7578460660847984 + -0.5971631956308051 + -0.4391427173433545 + -0.2894824989880617 + -0.1524770707050312 + -0.03103842794801404 + 0.07318023735759968 + -0.2352119885910099 + -0.003188820803002205 + 0.2497755531653473 + 0.512697562507284 + 0.7729114944214062 + 1.016828073533754 + 1.23082360952478 + 1.402187753580001 + 1.52004944141567 + 1.576200577836952 + 1.565745286729171 + 1.487517909276034 + 1.344233404188977 + 1.142357012458712 + 0.8917036111519211 + 0.6047990070973757 + 0.2960538880369424 + -0.01918487733699251 + -0.3256321411139367 + -0.6090350185891352 + -0.8570422637142525 + -1.059907291417177 + -1.210973838609303 + -1.306912211012928 + -1.347696415566013 + -1.336336215972686 + -1.278400759281303 + -1.181389198510127 + -1.054016220581475 + -0.9054848421246238 + -0.7448146346701473 + -0.5802813767039645 + -0.4190059487335321 + -0.2667089652264478 + -0.1276264575962053 + -0.004563969262973033 + 0.1009459726348642 + -0.1818466319535121 + 0.02898310396511618 + 0.2616126053630667 + 0.5062275998793152 + 0.751162845036178 + 0.9835706721334225 + 1.190247544597035 + 1.358554585927479 + 1.477354924368141 + 1.537885454137886 + 1.534483888953093 + 1.465103370196836 + 1.331565040852993 + 1.139521890996232 + 0.8981324616130197 + 0.6194682612426337 + 0.3177017917626634 + 0.008141000798389877 + -0.2938107454924511 + -0.5736835786081258 + -0.8188743349978272 + -1.01940814474108 + -1.168468454184033 + -1.2626576012745 + -1.301976257859436 + -1.289537678698481 + -1.231058582348969 + -1.134189413904435 + -1.00775995470923 + -0.8610199866146824 + -0.7029485935843378 + -0.5416908092631003 + -0.3841591756138086 + -0.2358137790733339 + -0.1006112035545862 + 0.01890605735802403 + 0.1214204531426964 + -0.1390794426332221 + 0.04280479823930676 + 0.2465133170022632 + 0.4637191969582505 + 0.684161876394502 + 0.8962065351494278 + 1.087579967991195 + 1.246228524832607 + 1.361227022328478 + 1.423657909541199 + 1.427378726809647 + 1.369603301666294 + 1.251237416161764 + 1.076931232441848 + 0.8548363553748409 + 0.5960825093087889 + 0.3140148255589472 + 0.02325524311031197 + -0.2613316177021076 + -0.5256782512239063 + -0.7574688950936004 + -0.9469261472964962 + -1.087363289928347 + -1.175459792948726 + -1.211246058806366 + -1.197813700308876 + -1.140795847525683 + -1.047684510960025 + -0.9270658680809045 + -0.7878576521529114 + -0.6386253413676182 + -0.4870369904533288 + -0.3394932024188186 + -0.2009427484919988 + -0.07486980536917265 + 0.0365807100143577 + 0.1323851929621226 + -0.1078785611381684 + 0.03949892334259568 + 0.2079495523749275 + 0.3908417968647891 + 0.579611716092538 + 0.7642020428887552 + 0.9336868790644728 + 1.077038173896039 + 1.183971133350685 + 1.245792776559906 + 1.256172823227293 + 1.21175976637283 + 1.112577100995054 + 0.96215401335057 + 0.7673693977871933 + 0.5380153680870084 + 0.2861137410873694 + 0.02504356391272015 + -0.23144289220426 + -0.4702262696800487 + -0.6797559259464786 + -0.8508295170429754 + -0.977146464183441 + -1.055589394430735 + -1.086217126964225 + -1.071984286649912 + -1.018232165226823 + -0.9320190515243438 + -0.8213726457544511 + -0.6945503936526218 + -0.5593853764571933 + -0.4227773479209579 + -0.2903637686696349 + -0.1663784052166359 + -0.05367962248844338 + 0.04608928591060923 + 0.1322569563938465 + -0.08846072865081019 + 0.02146022748700387 + 0.151026639437276 + 0.2953836031464801 + 0.4478226635249545 + 0.6000984863641045 + 0.7429309489241416 + 0.8666595410874114 + 0.9619969047760425 + 1.020813345370688 + 1.036876298832316 + 1.006469189181748 + 0.9288229894449351 + 0.8063102446940824 + 0.6443736439506135 + 0.451187157814684 + 0.2370746566802813 + 0.01373603167817352 + -0.206648513488636 + -0.4123515160577302 + -0.5929790188528705 + -0.7402139725629708 + -0.8483514856865372 + -0.9145779393416311 + -0.9389748741886079 + -0.9242600274157292 + -0.8753078009727995 + -0.7985155983754297 + -0.7010973777314732 + -0.5903892790887035 + -0.4732439435393108 + -0.3555717303178544 + -0.2420617154699167 + -0.1360874607234884 + -0.0397766721905497 + 0.04579598240936777 + 0.120344795652729 + -0.080433841397827 + -0.008063409076944804 + 0.08198255594901074 + 0.1865719337913676 + 0.3008656900948825 + 0.4185195156753634 + 0.532061807956655 + 0.6334248456636785 + 0.7145862564678271 + 0.7682622040392112 + 0.7885842385932932 + 0.7716897589277659 + 0.7161618804536835 + 0.6232676363429784 + 0.4969625236370381 + 0.3436525213274578 + 0.1717295408286758 + -0.009079700530765664 + -0.1884907242606322 + -0.3564886963706923 + -0.5041235303701759 + -0.6241920663133457 + -0.7117382862992955 + -0.7643228289764501 + -0.7820399594299905 + -0.7672903235774141 + -0.724347159935353 + -0.6587778748260812 + -0.5767983058043626 + -0.4846411995530439 + -0.3880128367074063 + -0.2916937767262749 + -0.1993145845918239 + -0.113309535607901 + -0.03502540635478213 + 0.03505729916727018 + 0.09704416870400379 + -0.08299025100951234 + -0.04535870892564116 + 0.007598292267108994 + 0.07428326707201684 + 0.1515934461871776 + 0.2350240887003858 + 0.3189309685624258 + 0.3969372152387424 + 0.4624515876357292 + 0.5092503754945367 + 0.5320653627395536 + 0.5271168507173597 + 0.4925340275267698 + 0.4286146345340715 + 0.3378909536826793 + 0.224988181524539 + 0.09628249099055955 + -0.04061251240421461 + -0.1774828428146575 + -0.3062114566057933 + -0.4194638030725517 + -0.5112887462138211 + -0.5775700370433348 + -0.6162801423619272 + -0.6275118588566728 + -0.6132908624519401 + -0.5772002784955121 + -0.5238722375506729 + -0.4584173210976072 + -0.3858680933351786 + -0.3107066352100291 + -0.2365292710240152 + -0.1658775218860848 + -0.1002370666181021 + -0.04018092892382574 + 0.01438646832689972 + 0.06393836979526424 + -0.09511585250674685 + -0.08665198781525606 + -0.0654121030243779 + -0.03177187406650844 + 0.01262941549509813 + 0.06491910499558869 + 0.1211564166872877 + 0.1766238226676847 + 0.2262204179827909 + 0.2649205952220426 + 0.2882527494502139 + 0.2927490653647318 + 0.2763188912732177 + 0.238504522424873 + 0.1805887784589285 + 0.1055377072474657 + 0.01777802717803536 + -0.07717374511066749 + -0.1731967021280215 + -0.2641172242844481 + -0.3442685468610487 + -0.4089959915580726 + -0.4550494817982162 + -0.4808169366203208 + -0.4863713918495888 + -0.4733289550539318 + -0.4445404787801284 + -0.403662984013199 + -0.3546733495415116 + -0.3013935404983528 + -0.2470923002205665 + -0.194213453823795 + -0.1442584429129419 + -0.09782457927533494 + -0.05477554773205817 + -0.01450131934779963 + 0.02378598199109372 + -0.1157790293735875 + -0.1284792672441689 + -0.1309629517207666 + -0.1228038478127238 + -0.1045738840792563 + -0.07785354982104693 + -0.04513701109176569 + -0.009638077544476422 + 0.02498574591644469 + 0.05496502074491814 + 0.07677399705567645 + 0.08747556632291946 + 0.08502156776872685 + 0.06847782804315417 + 0.03814915253910642 + -0.004412410942991524 + -0.05652252176296561 + -0.1145972219406426 + -0.1744847893569112 + -0.2318653176199816 + -0.282675629672932 + -0.3235102751546554 + -0.3519485794087774 + -0.3667642904298032 + -0.3679883680431475 + -0.3568154140321946 + -0.3353672292804593 + -0.3063490786840339 + -0.2726512965086181 + -0.2369574187965771 + -0.201418153583997 + -0.1674383012645826 + -0.1356034178322107 + -0.105748434540649 + -0.07714630671548472 + -0.04877558333081411 + -0.01961495637037336 + -0.1440685480544208 + -0.1679764457381916 + -0.1840500542967906 + -0.1915641177831076 + -0.1905190759389978 + -0.18165420510393 + -0.1663892632209927 + -0.1467015969330606 + -0.1249517056020739 + -0.1036740344302272 + -0.08535139806199038 + -0.07219149935524036 + -0.06592325224573349 + -0.06762959971849236 + -0.07763233253636381 + -0.09544261424578861 + -0.1197876760436708 + -0.1487186237437244 + -0.1797961103306961 + -0.2103402206864388 + -0.2377197331310825 + -0.2596462307980216 + -0.2744329261760604 + -0.281178746259644 + -0.27984631666339 + -0.2712174859105128 + -0.2567297235741564 + -0.2382175045139343 + -0.2176004263703406 + -0.1965704262969723 + -0.1763315073253851 + -0.1574362833041758 + -0.1397460218277344 + -0.1225181852538308 + -0.1046023005693519 + -0.08470594035768997 + -0.06168130953483875 + -0.1792596437356243 + -0.2030580263179264 + -0.2210526150956735 + -0.2327763546057731 + -0.2382247608744708 + -0.2378305819023155 + -0.2324030988793334 + -0.2230437812717164 + -0.2110501958164969 + -0.1978175616356034 + -0.1847433332675364 + -0.1731363216266307 + -0.1641296978646492 + -0.1585977242136911 + -0.1570791865484841 + -0.1597151618318132 + -0.1662130372203962 + -0.1758504763839771 + -0.1875306576322641 + -0.1998930635402897 + -0.2114733247461225 + -0.2208934358172636 + -0.2270532488865704 + -0.2292887016786888 + -0.2274640177319479 + -0.2219747239214186 + -0.213654359353306 + -0.2035970058237253 + -0.1929259855261831 + -0.1825519484634319 + -0.1729678732752402 + -0.1641229001122979 + -0.155402347101905 + -0.1457207483525194 + -0.1337126593008353 + -0.1179869859100102 + -0.09739861539749972 + -0.2208010488355995 + -0.2324707014518855 + -0.2398632116224573 + -0.2433501621146297 + -0.24352713148449 + -0.2411075624774311 + -0.2368180314806673 + -0.2313154154158497 + -0.2251402391404957 + -0.2187107121057469 + -0.2123510497878778 + -0.2063385139420917 + -0.2009487835806066 + -0.1964803148438479 + -0.1932452186747846 + -0.1915251637159676 + -0.1915028885379697 + -0.1931895647308873 + -0.1963724529053405 + -0.2006043915172177 + -0.2052469624658514 + -0.209564978357881 + -0.2128549627321801 + -0.2145787285763071 + -0.2144684804051972 + -0.2125738412147833 + -0.2092333404119608 + -0.2049704817075333 + -0.2003332806049702 + -0.1957114047910746 + -0.1911728258529366 + -0.186360054334862 + -0.1804747874021739 + -0.1723616387108646 + -0.1606806722829921 + -0.1441394558173736 + -0.1217424649246128 + -0.2682302353029145 + -0.2557272261019621 + -0.2398488027546993 + -0.2223774081394064 + -0.2051187987979976 + -0.189673986346905 + -0.1772482716106323 + -0.1685305618572398 + -0.1636632521827107 + -0.1623051867164886 + -0.1637713516049817 + -0.1672172806598854 + -0.1718274534710163 + -0.1769674969674939 + -0.1822698365916726 + -0.1876393270873175 + -0.1931852223854838 + -0.1991036704128224 + -0.2055462230069914 + -0.2125117528918317 + -0.21979122853454 + -0.2269791723075738 + -0.2335465284725913 + -0.2389522426685574 + -0.2427598055946676 + -0.2447233275644214 + -0.2448158567079777 + -0.2431884659761809 + -0.2400679085308131 + -0.235618272806001 + -0.2298034116518828 + -0.2222889959555716 + -0.2124152779289692 + -0.1992559599463402 + -0.1817587998840935 + -0.1589444945546812 + -0.1301264173525714 + -0.3210371617256429 + -0.2729433880286298 + -0.2216675757941139 + -0.1709372589153114 + -0.1243513986509753 + -0.08499257528765533 + -0.05510931334550239 + -0.03591801263729193 + -0.02755431904647228 + -0.02917757603075843 + -0.03920440143721569 + -0.05562422961650061 + -0.07633594726579349 + -0.09944367175453435 + -0.1234615914632557 + -0.1473999153902271 + -0.1707312245172073 + -0.1932625083781195 + -0.21495686926082 + -0.2357560941777739 + -0.2554497464310276 + -0.2736200410160152 + -0.2896691462183916 + -0.3029127470484727 + -0.3127066082124834 + -0.3185656901633807 + -0.3202395653320338 + -0.3177218775248853 + -0.3111912881747974 + -0.3009013072653679 + -0.287051291293642 + -0.269676897505974 + -0.2485940453595998 + -0.2234172685827591 + -0.1936547776540789 + -0.1588633348660107 + -0.1188308693648636 + -0.3785061171716205 + -0.2846138102124795 + -0.1869830893731393 + -0.09175637035095209 + -0.004852416095096535 + 0.06861384553353567 + 0.1248123834058512 + 0.1615111676264419 + 0.1781786223649951 + 0.175867483818411 + 0.1569089296445124 + 0.1244773617266133 + 0.08210592930147181 + 0.03323664106809676 + -0.01912396086851452 + -0.07259909485442295 + -0.1254755812351931 + -0.1766006741283603 + -0.2251914588380066 + -0.2706192641605124 + -0.3122289542196096 + -0.3492365199368853 + -0.380722979347853 + -0.4057150729512518 + -0.4233206171240356 + -0.4328740386271266 + -0.4340480121441535 + -0.4268993049841621 + -0.4118369586901709 + -0.3895230669629002 + -0.3607346949333579 + -0.3262253232664154 + -0.2866234420210128 + -0.242395266495377 + -0.1938811902301438 + -0.1413962263612758 + -0.08536823232515189 + -0.4395692988316999 + -0.2913689204651027 + -0.138126465605154 + 0.01121726766823599 + 0.1479785895244778 + 0.2645293562022035 + 0.3549725165145303 + 0.4156041410643959 + 0.4451034852329591 + 0.4444357700253323 + 0.4164985452859514 + 0.3655828200175359 + 0.2967466292392167 + 0.2152061420091958 + 0.1258366131135289 + 0.03284563398517587 + -0.06035886640548979 + -0.1511245908892737 + -0.23738688956682 + -0.3174475809621923 + -0.3897721939557192 + -0.4528614549619105 + -0.505225472118797 + -0.5454576466009313 + -0.572377889899379 + -0.5851977289866028 + -0.5836567531418795 + -0.5680902732822961 + -0.5394082942305691 + -0.4989899863368463 + -0.4485192865235077 + -0.3898007225217439 + -0.3245971404461869 + -0.2545228195474492 + -0.1810093035178912 + -0.1053417796837914 + -0.02874608610956209 + -0.5027039551299494 + -0.2937549499021757 + -0.07775841071158326 + 0.1332656836516865 + 0.3275248076902808 + 0.4944885817304164 + 0.6257828931112929 + 0.7158293745944728 + 0.7621536968992336 + 0.7653371751260183 + 0.7286415708267715 + 0.6573862846412921 + 0.558190949966369 + 0.4382084107899167 + 0.3044614114118626 + 0.1633642740903143 + 0.02046592800675431 + -0.1195970219966186 + -0.2529886278866137 + -0.3764792281038503 + -0.4872489262952062 + -0.5827550168347905 + -0.6607010004146534 + -0.719110441758984 + -0.7564774769933313 + -0.7719447535796888 + -0.7654532927642257 + -0.7378175070201261 + -0.6906989035772337 + -0.6264777675960969 + -0.5480463886536033 + -0.4585641832049117 + -0.3612207848720841 + -0.2590473304572729 + -0.1548012069998483 + -0.05092993531918122 + 0.0503991372784478 + -0.5658976986020082 + -0.2920717355540456 + -0.008576079326044516 + 0.2693225746005325 + 0.5264940413811826 + 0.7492250086352833 + 0.9263477883893995 + 1.0500791262737 + 1.116472752396648 + 1.125447570827769 + 1.080417483502745 + 0.9876070269486908 + 0.8551784388379962 + 0.6923129772300175 + 0.5083798231146525 + 0.3122928346901364 + 0.1121067935507352 + -0.08514839039147826 + -0.2734432874613993 + -0.4476121417916056 + -0.6031901062849387 + -0.7362984812032212 + -0.8436232749057924 + -0.9224960416451673 + -0.971051446858771 + -0.9884116875420723 + -0.9748388767041747 + -0.9318036966731222 + -0.8619388508072916 + -0.7688729551300892 + -0.6569672043357215 + -0.5309968826606104 + -0.3958283638585529 + -0.2561386090371478 + -0.1162103834039376 + 0.02018319964924142 + 0.1498113561312184 + -0.6266952888388699 + -0.2862909380374983 + 0.0669030460397709 + 0.4143236518754629 + 0.7373970917335417 + 1.019065401616551 + 1.245157244469019 + 1.40544037368265 + 1.494238723761075 + 1.510561507562556 + 1.457763741933608 + 1.342824249407502 + 1.175376267317759 + 0.9666487314966226 + 0.7284698860124462 + 0.4724519911301945 + 0.2094248396382689 + -0.05087172088542324 + -0.2998775640809055 + -0.5301608038384814 + -0.7353143036680985 + -0.9098794277315432 + -1.049348317939635 + -1.150258666890266 + -1.210358382278526 + -1.228790714341096 + -1.206239169934614 + -1.144977344708721 + -1.048788811112934 + -0.9227503016612202 + -0.772900084770761 + -0.6058356736922752 + -0.4282961049208973 + -0.2467824172642157 + -0.06725732588859934 + 0.1050544587960403 + 0.2657649864299181 + -0.6823267990831416 + -0.2760623335739636 + 0.1464644404970994 + 0.5634616002125653 + 0.9529305357768956 + 1.294430672145927 + 1.570690928913414 + 1.768882069632468 + 1.88141201295038 + 1.906175640080904 + 1.846269596420547 + 1.70925694862125 + 1.506123041015353 + 1.25009283863669 + 0.9554774751977375 + 0.6366861672115491 + 0.3074874729731996 + -0.01945671711203989 + -0.332816847158282 + -0.6226531307404675 + -0.8803937336130674 + -1.098815617648706 + -1.27208347335738 + -1.395864905480186 + -1.467502397615986 + -1.486194087040082 + -1.453122435285757 + -1.371474482630557 + -1.246317021295045 + -1.084318735462288 + -0.8933414854337869 + -0.6819471794643679 + -0.4588799207315448 + -0.2325833350494486 + -0.01080146671126148 + 0.1997077399547793 + 0.3933393546471713 + -0.729903880392044 + -0.2608007115434987 + 0.2282280898251307 + 0.7123400745670604 + 1.166251585772475 + 1.566224343524718 + 1.891907574436796 + 2.127828235481702 + 2.26437109980267 + 2.298163707567881 + 2.231865846663328 + 2.073444379190648 + 1.835077611243938 + 1.531868403224674 + 1.180547091283669 + 0.79831609148677 + 0.4019360429120491 + 0.007090978027702144 + -0.3719889514656047 + -0.7227122834676402 + -1.034204425363785 + -1.297361215846836 + -1.504935585405879 + -1.6516787653948 + -1.734519772307844 + -1.752737558236176 + -1.708066120203625 + -1.604676456292728 + -1.448998410492493 + -1.249374390536352 + -1.015568032398854 + -0.7581766636718292 + -0.4880114071972121 + -0.2155105782407674 + 0.04975841266792624 + 0.299472518703463 + 0.5267883635220825 + -0.7666599664918863 + -0.2398330693768203 + 0.3106041307321226 + 0.857037591616429 + 1.371150640211522 + 1.826108892859916 + 2.198615064602672 + 2.470607033282862 + 2.63042194199535 + 2.673324787841823 + 2.601388939017858 + 2.422802811369173 + 2.150746487374018 + 1.802022938385038 + 1.395635224494888 + 0.95147509655869 + 0.4892377846329024 + 0.02761490661293059 + -0.4162435767249947 + -0.8270541637352312 + -1.191591487893133 + -1.498826580541256 + -1.740069923921303 + -1.909143077801108 + -2.002565771383495 + -2.019715972379483 + -1.962905730155549 + -1.837318381836628 + -1.650771250004996 + -1.413296757734329 + -1.136566425253052 + -0.8332089835479 + -0.5160901562812441 + -0.1976248212360288 + 0.1108171530666766 + 0.3993687710411056 + 0.6599678575128465 + -0.7902033755846785 + -0.2125771561257508 + 0.3921987526337133 + 0.9941041418153587 + 1.56214056840757 + 2.066684954511607 + 2.481731993125399 + 2.786782560492741 + 2.968183918502907 + 3.019804229754348 + 2.943015783967334 + 2.74605246317136 + 2.442881772226705 + 2.051778123330855 + 1.593795805284854 + 1.091318080437441 + 0.5668106684858258 + 0.04184577317877808 + -0.4635991060966287 + -0.9316123308729723 + -1.346661464540473 + -1.695824080089878 + -1.968993049225065 + -2.159081481447999 + -2.26221724211855 + -2.277888288532009 + -2.208985237588173 + -2.061689768343576 + -1.845175280279573 + -1.571114525304201 + -1.253020424534419 + -0.9054735320382274 + -0.5433068299286834 + -0.1808227920103613 + 0.1688907979231651 + 0.4944979341360227 + 0.7867792012565165 + -0.7987502790032533 + -0.1787190473905516 + 0.471701301508731 + 1.120519481421329 + 1.73448920246231 + 2.28159700297395 + 2.733461248141035 + 3.067386813608469 + 3.267866791125883 + 3.327399056680639 + 3.246578824457301 + 3.03352238622066 + 2.702756205961833 + 2.27375679767714 + 1.769343562143436 + 1.214109244733224 + 0.633027865715061 + 0.05031973978718079 + -0.5114085196368474 + -1.031781503563754 + -1.493092619786845 + -1.88063087413019 + -2.182951162698467 + -2.392113728505927 + -2.503885546002683 + -2.517869043108645 + -2.437509092330655 + -2.26993097900966 + -2.025579057020146 + -1.717653274023133 + -1.361371732067117 + -0.9731146911860895 + -0.5695231415534687 + -0.1666301588806087 + 0.220904298433358 + 0.580402006711255 + 0.9015884283673348 + -0.7913074925875724 + -0.1383594588901574 + 0.5477825311066077 + 1.23364213392338 + 1.884222654225338 + 2.465591339502833 + 2.947399420187719 + 3.305073534222244 + 3.521458434086516 + 3.587765923367674 + 3.503778215769748 + 3.277349502779508 + 2.923331473958304 + 2.462103934386413 + 1.91791319279333 + 1.317208154303164 + 0.6871233385809619 + 0.05420065279253083 + -0.5566187613258684 + -1.122752202212246 + -1.624534391284999 + -2.045639202994071 + -2.373414572127775 + -2.599155901401422 + -2.718313308134564 + -2.730602569933078 + -2.63997589324323 + -2.454410161107233 + -2.185486425818028 + -1.847760769946181 + -1.457956713009739 + -1.034036120938287 + -0.5942234008257978 + -0.156063438196588 + 0.2644130031408256 + 0.6533594834954739 + 0.9995854889786004 + -0.767782279358705 + -0.09210515481853258 + 0.6190279952310732 + 1.331172967173249 + 2.008122770026744 + 2.614548812566416 + 3.118603389334406 + 3.494214193522293 + 3.7228426459382 + 3.794550336382405 + 3.708309720374964 + 3.471590909161567 + 3.099340093313428 + 2.612523800482017 + 2.036439089669299 + 1.398981907805094 + 0.7290297350501986 + 0.05504089865309764 + -0.596085459056452 + -1.199895389312519 + -1.735052420467164 + -2.183848963098962 + -2.53260239358273 + -2.771960108817352 + -2.897111169189277 + -2.907878961727409 + -2.808656641530241 + -2.608148541308303 + -2.318895893082241 + -1.956590203933428 + -1.539206384235497 + -1.086013640296808 + -0.6165397206531518 + -0.1495701281422575 + 0.2977420877293664 + 0.7105963139577893 + 1.077056665179264 + + +# name: Eft_dtc +# type: matrix +# rows: 1369 +# columns: 1 + -0.5003520080158349 + -0.6531385853246185 + -0.8202637362651907 + -0.9964944577427091 + -1.174988842833933 + -1.347477102027947 + -1.504594120234525 + -1.636366072467724 + -1.732838788273084 + -1.784817475472137 + -1.784667642120976 + -1.727108251068217 + -1.609913846438569 + -1.434436458819691 + -1.20586383738059 + -0.9331497884640136 + -0.628584637522028 + -0.3070158955436575 + 0.01522457271328611 + 0.321587544886191 + 0.5966360466164625 + 0.827290963615507 + 1.003851823541145 + 1.120678485749596 + 1.176463038319236 + 1.17407477586617 + 1.120015949890584 + 1.023573220269966 + 0.8957822252206512 + 0.7483362237280888 + 0.5925637280594656 + 0.438577236487724 + 0.294660978978978 + 0.1669266815764975 + 0.05922932523799002 + -0.02669497719875315 + -0.09092628659736783 + -0.515180111700606 + -0.6200273916269633 + -0.7346179432397664 + -0.8562188252310144 + -0.980869566530424 + -1.103365516101588 + -1.217367476859448 + -1.315661679811814 + -1.390579359681759 + -1.434564483445347 + -1.440853728111028 + -1.404208148770391 + -1.321615608510529 + -1.192871613399605 + -1.020947545021625 + -0.8120714315585319 + -0.5754767985290992 + -0.3228163925339229 + -0.06728375432942586 + 0.17747077040887 + 0.3985096405792901 + 0.5847266282819418 + 0.7277808823959978 + 0.8227367416889073 + 0.8683395218507568 + 0.8669073548188324 + 0.8238704890979373 + 0.7470338880551606 + 0.6456696906750837 + 0.5295591230340547 + 0.4080981365528525 + 0.2895599899928381 + 0.1805762121787194 + 0.08586115209749505 + 0.008170853994235892 + -0.05154068567864238 + -0.09382260848799207 + -0.5224075057633996 + -0.5753280106200673 + -0.6329645554196126 + -0.695233273147284 + -0.7612459285919931 + -0.8290883651922676 + -0.8956963033365509 + -0.9568744247461484 + -1.007490233754096 + -1.041851177035392 + -1.054244692478031 + -1.039590637013821 + -0.9941292854648401 + -0.9160511893359076 + -0.8059719381408774 + -0.667167469650085 + -0.5055134271915257 + -0.3291116048993747 + -0.1476317026289092 + 0.02856008976596358 + 0.1893803237443564 + 0.3259917517645969 + 0.4316282431532589 + 0.5021782644031636 + 0.5364595417026404 + 0.536162455273152 + 0.5054863355381151 + 0.4505334042440519 + 0.3785533580453389 + 0.2971438191219976 + 0.2135074469767648 + 0.133847730044398 + 0.06295690374147328 + 0.004016782063185471 + -0.04139777047435204 + -0.07314782848919935 + -0.09224266662584332 + -0.521390254306057 + -0.5206748214827221 + -0.5194214703851608 + -0.5202228054226758 + -0.5253150401672186 + -0.5361541654293768 + -0.5530579236956658 + -0.5749806499545661 + -0.5994742775457992 + -0.6228639880543546 + -0.6406344100368557 + -0.6479870928431394 + -0.6404983497826998 + -0.6147844955245497 + -0.5690736729966339 + -0.5035921934115883 + -0.4206979558751179 + -0.3247304343223049 + -0.2215898696153725 + -0.1181003126086287 + -0.02124472980218892 + 0.06262031746203117 + 0.1284611038712638 + 0.1730806837557892 + 0.1953868728089516 + 0.1963897193128621 + 0.1789447098755132 + 0.1472937066152467 + 0.1064807289391334 + 0.06173084810009636 + 0.01787704322430055 + -0.02109614749104783 + -0.05234799730572585 + -0.07430007879464866 + -0.08658884929611779 + -0.0898846809721766 + -0.08562293003728061 + -0.5118173287131232 + -0.4582428831911321 + -0.3988771945821356 + -0.3388871208890498 + -0.2835369651484118 + -0.2375753018943968 + -0.2046546876453441 + -0.1868705564702087 + -0.1844928601105514 + -0.1959380187523735 + -0.2179932593345598 + -0.2462662067539537 + -0.2757964273257396 + -0.3017389884065066 + -0.3200179253812411 + -0.3278521818238505 + -0.3240774425279434 + -0.3092206887136767 + -0.2853243742438123 + -0.2555568119645283 + -0.2236778285506151 + -0.193448627779157 + -0.1680791629833435 + -0.149795117176851 + -0.1395825546579729 + -0.1371363006398558 + -0.14100409812312 + -0.1488885013542306 + -0.1580470756139048 + -0.1657216458634133 + -0.1695296529503009 + -0.1677635366879304 + -0.1595641939621381 + -0.1449577723199816 + -0.1247671203604446 + -0.100426612038664 + -0.07373954431430228 + -0.4937597172981529 + -0.3906343544993035 + -0.2767003036537503 + -0.1594676549103365 + -0.04698388270406906 + 0.05294568172381599 + 0.1335374649852016 + 0.1897067789053087 + 0.218551278675061 + 0.2195759758261681 + 0.1946323586338931 + 0.147586205977149 + 0.08376824060361715 + 0.009292094607638645 + -0.06965988880461189 + -0.1474831002921942 + -0.2196460317988693 + -0.2829803103592313 + -0.335747104381156 + -0.3774979439539398 + -0.4087784994689883 + -0.4307437600090583 + -0.4447597790056256 + -0.4520606566871627 + -0.4535119820400836 + -0.4495075660362555 + -0.439999832287052 + -0.4246404791497936 + -0.4029908487714536 + -0.374753164680902 + -0.339974963243455 + -0.2991884610908899 + -0.2534617518731939 + -0.20435634579739 + -0.1538023063956316 + -0.1039152817665697 + -0.05678723206220383 + -0.4676988523798914 + -0.3207333974542668 + -0.1584053967572806 + 0.009781651436232245 + 0.1733800949142789 + 0.3219119757671114 + 0.4458146452123928 + 0.5373032173811402 + 0.5910446724608375 + 0.604564386917873 + 0.5783437822118729 + 0.5156111956069955 + 0.4218696416020746 + 0.3042380402435962 + 0.1707017494024627 + 0.02937154556583331 + -0.1121617923921616 + -0.2473141392121805 + -0.3708036610872442 + -0.4787551599299373 + -0.5686405121492207 + -0.6391018800605686 + -0.6897131572901323 + -0.7207333243561107 + -0.7328948042307131 + -0.7272535795317063 + -0.7051094226464852 + -0.6679876525904964 + -0.6176612218026653 + -0.5561854006271327 + -0.4859173365774777 + -0.4094985698608316 + -0.3297884738296405 + -0.2497482793460503 + -0.172286445589582 + -0.1000845948311136 + -0.03542764635716877 + -0.4345302678251053 + -0.2515400164939226 + -0.04930180138514875 + 0.1611373192267757 + 0.367430058995761 + 0.5569376998526611 + 0.7177997713656309 + 0.8399419975248482 + 0.9159077130523087 + 0.9414225838753446 + 0.9156395986012412 + 0.8410544899141762 + 0.7231237503808597 + 0.5696516081012121 + 0.3900339598739203 + 0.1944541700836894 + -0.006881551514998487 + -0.2043998149466221 + -0.3896623826543723 + -0.5556975172308234 + -0.6971666864217392 + -0.8103910041295131 + -0.8932722165328705 + -0.9451457986508268 + -0.9666000309745801 + -0.9592868318388716 + -0.9257400101099879 + -0.8692067326081305 + -0.7934901686348742 + -0.702796612386374 + -0.6015792855656001 + -0.49437317707157 + -0.3856197996131637 + -0.2794863737005856 + -0.1796892948012179 + -0.08933553230037028 + -0.01079694004361727 + -0.3955402278187473 + -0.1859949530599767 + 0.0458472111008203 + 0.2879191411294989 + 0.5265627410418001 + 0.7475882783253786 + 0.93742003055264 + 1.08420307659395 + 1.178751753556855 + 1.215242709925094 + 1.19159043738981 + 1.109484475023616 + 0.9741082775467413 + 0.7935938440685911 + 0.5782892488401209 + 0.339926276754167 + 0.0907729978871359 + -0.1571561402521383 + -0.392778567959196 + -0.6064767636690096 + -0.7904724951663027 + -0.9390444383761104 + -1.048603069432981 + -1.117643680998438 + -1.146601353513693 + -1.137631736877826 + -1.094339644784714 + -1.021474673567521 + -0.9246100551988363 + -0.8098182442767026 + -0.6833546255946813 + -0.5513593311160718 + -0.4195864077827414 + -0.2931692359242824 + -0.1764307700323615 + -0.07274639621530778 + 0.01553444436738354 + -0.3523552869054901 + -0.1268083221588046 + 0.1231281596783771 + 0.3849319728439553 + 0.6442753546541559 + 0.8860881408192158 + 1.095728074356472 + 1.26013582196356 + 1.368855688782034 + 1.414822385281471 + 1.394845630190085 + 1.309762186148279 + 1.1642628874742 + 0.9664348233151304 + 0.7270822775045533 + 0.4589026708889781 + 0.1755960749732853 + -0.1090190980753869 + -0.381823064567575 + -0.6310972513078071 + -0.8470800300136732 + -1.022356832025403 + -1.152078081346217 + -1.234009043299168 + -1.268424888796525 + -1.257872016493314 + -1.206822749113605 + -1.121254575603902 + -1.008186823516865 + -0.8752069020523189 + -0.7300152627979777 + -0.580013504197267 + -0.4319543142509251 + -0.2916659360947864 + -0.1638581294915984 + -0.05201150940265464 + 0.04165226250322858 + -0.3068671274706616 + -0.07630414606365345 + 0.1797211910802222 + 0.4488025723837849 + 0.7165959799291528 + 0.9678407012236584 + 1.187503034687453 + 1.361928102782986 + 1.479886277217965 + 1.533416336450501 + 1.518394191330366 + 1.434788864355619 + 1.286601036641522 + 1.081509252974149 + 0.830271689427505 + 0.5459459653565769 + 0.2429961954330564 + -0.06364321090871364 + -0.3594817459573788 + -0.6313069545734917 + -0.8678896734156671 + -1.060522237755959 + -1.203363813690745 + -1.293580754800313 + -1.331284637424335 + -1.319285414615274 + -1.262690518746186 + -1.168391167198174 + -1.044483271693001 + -0.8996715195213629 + -0.7427014899042124 + -0.5818569753573092 + -0.4245494300032238 + -0.2770152985440625 + -0.1441263687120117 + -0.02930929404749859 + 0.06543641965058578 + -0.2611373069146932 + -0.03629142477970555 + 0.2140668122707988 + 0.4781874164343179 + 0.7423345706289175 + 0.9917231872515313 + 1.211588087568814 + 1.388283622951531 + 1.510310359859861 + 1.569176795996996 + 1.56002512005859 + 1.481976707834745 + 1.338181078619355 + 1.135577826584829 + 0.8844022841991109 + 0.5974814876583975 + 0.2893776598154963 + -0.02455724741946494 + -0.3291495724498008 + -0.6103284225894892 + -0.8559440953164656 + -1.056425381891591 + -1.20523250726987 + -1.299078566282845 + -1.337911763093129 + -1.324671668517806 + -1.26485254316388 + -1.165922862028933 + -1.036660313461824 + -0.8864645000979057 + -0.7247053453988724 + -0.5601550006719056 + -0.4005369131220475 + -0.2522100843327971 + -0.119991698341431 + -0.00710894683947709 + 0.08473802760764305 + -0.2172884600230816 + -0.007970080101321135 + 0.2259451856450704 + 0.4738389915909529 + 0.7231397774979255 + 0.9601391228906817 + 1.170944942976791 + 1.342485472316051 + 1.463474629319219 + 1.525256130325989 + 1.522458454551304 + 1.453412418555562 + 1.320304620189005 + 1.129060911459033 + 0.8889729141267089 + 0.6120969333306582 + 0.3124685977056825 + 0.005188384816580409 + -0.2945572953733685 + -0.5724683980719043 + -0.8160239376532917 + -1.015226082738155 + -1.163137528069926 + -1.256171712600278 + -1.294118577388521 + -1.279914450489686 + -1.219189819234506 + -1.119649588775473 + -0.990353963241688 + -0.8409726328709064 + -0.6810804132181862 + -0.5195503010580814 + -0.3640826569843718 + -0.2208899836262925 + -0.09453848813400918 + 0.0120674252061992 + 0.09758208454661757 + -0.1773898041232304 + 0.008122731035102788 + 0.2164649895584852 + 0.4385300098277258 + 0.663363215042113 + 0.8788317809836297 + 1.072429576625687 + 1.232150349182932 + 1.347356555108614 + 1.409573403707179 + 1.413145833230126 + 1.355708347933464 + 1.238432091871799 + 1.06602895955746 + 0.8465083791399212 + 0.5906985935323316 + 0.3115608360501669 + 0.02334137529444702 + -0.2593781286048381 + -0.5226590589769835 + -0.7541330960139079 + -0.9437988520437299 + -1.084617985863931 + -1.172859374136218 + -1.208165591254328 + -1.193345521328187 + -1.133926143257633 + -1.037521030443483 + -0.9130893229416618 + -0.7701648075748929 + -0.6181300982073805 + -0.4655973589303967 + -0.3199375087845074 + -0.1869779720791653 + -0.07086825465541875 + 0.0259043532744847 + 0.1023782274187699 + -0.1433453192276574 + 0.01212354880854552 + 0.1879658996167909 + 0.3768461054024573 + 0.5697478564542575 + 0.7564805982859544 + 0.9263152642544564 + 1.068701983961097 + 1.174015595031139 + 1.234272579500609 + 1.243764767575004 + 1.199559964077722 + 1.101826984221762 + 0.9539523224619838 + 0.7624280921269573 + 0.5365062910223429 + 0.2876327861625296 + 0.02869475234543238 + -0.2268643065425715 + -0.4659902188131792 + -0.6769411671569072 + -0.8501020532369701 + -0.978612097949953 + -1.058746050352559 + -1.090016403987297 + -1.074995839576228 + -1.018890932530922 + -0.928925099007649 + -0.8136068206973227 + -0.6819660747653581 + -0.5428373439927707 + -0.4042533063783104 + -0.2729924906544985 + -0.1543007378935336 + -0.05178403019940922 + 0.03254785445055482 + 0.09811952757588725 + -0.1167926557770885 + 0.004811521752166977 + 0.1438448993773655 + 0.2948668516235382 + 0.4509695841789449 + 0.604117718947363 + 0.7456065965582778 + 0.8666118336725701 + 0.9587946602815258 + 1.014921507304305 + 1.029452181708535 + 0.9990489359576261 + 0.9229593797737227 + 0.8032304191525018 + 0.6447192529809257 + 0.4548815702026315 + 0.2433362912866392 + 0.02122911832667717 + -0.1995588243473695 + -0.4072894356923704 + -0.5912501583114796 + -0.7425520600601616 + -0.8547610951991903 + -0.924297899211117 + -0.9505686291147762 + -0.9358219275848629 + -0.8847599741677539 + -0.8039596337364093 + -0.7011787214305731 + -0.5846299250338431 + -0.4623006458682737 + -0.3413826705452045 + -0.2278544394833777 + -0.1262347672464407 + -0.03950414667735827 + 0.03082861086494318 + 0.08454877319484871 + -0.09901970392862898 + -0.01246107753894942 + 0.08832144447112902 + 0.1997617427815299 + 0.3170696999489793 + 0.4344124642489363 + 0.5452004408183034 + 0.6424687893501868 + 0.7193365342498504 + 0.7695162838542717 + 0.7878385625737505 + 0.770746930997906 + 0.7167149293250668 + 0.6265352048551198 + 0.5034365815750057 + 0.3529972148763663 + 0.1828410933854314 + 0.002129304733808447 + -0.1791164148373726 + -0.3507963246064113 + -0.5035423594410408 + -0.6294680041606107 + -0.7227758503061846 + -0.7801566464007907 + -0.8009397435208431 + -0.7869866320520702 + -0.7423516396795166 + -0.6727616473333247 + -0.5849856771662507 + -0.4861729529219427 + -0.3832341790803615 + -0.2823270050351582 + -0.1884861348199707 + -0.1054152802437174 + -0.03543604565634045 + 0.02042898125155324 + 0.06227325450854421 + -0.09090399159648259 + -0.03787063479044162 + 0.02615974304109463 + 0.09933183472035215 + 0.1788210776118651 + 0.2608772401860046 + 0.3409563505657653 + 0.4139469718695946 + 0.4744880492690152 + 0.5173644253379492 + 0.5379536432011481 + 0.5326855263447935 + 0.4994664615254328 + 0.4380156925593227 + 0.3500632644945696 + 0.2393696174184941 + 0.1115449153291177 + -0.02632987093681645 + -0.1662516346313165 + -0.2999602818491203 + -0.419648352510584 + -0.5186340390070708 + -0.5919191684791703 + -0.6365680529898781 + -0.6518670005042256 + -0.6392538199125629 + -0.6020369573316573 + -0.5449500566799257 + -0.4736057570079402 + -0.3939200772770817 + -0.3115754368192527 + -0.2315777572164102 + -0.157944167385509 + -0.09353630006348207 + -0.04003369865048179 + 0.001974581257256802 + 0.03281265918291965 + -0.0928778971939527 + -0.06924827171299341 + -0.03763197218375443 + 0.001529076187689807 + 0.04707176794143076 + 0.09704941333449318 + 0.1487399870409218 + 0.1987419901237917 + 0.2431665878093997 + 0.2779227695980089 + 0.2990780110837614 + 0.3032623651032991 + 0.2880716690844198 + 0.2524182930963549 + 0.1967777427722741 + 0.1232876009627809 + 0.03567142412655742 + -0.06101758711242197 + -0.1608133046106011 + -0.2573701885657886 + -0.3445516870654192 + -0.4170020832190108 + -0.4706315438768195 + -0.5029560197963501 + -0.5132543011019274 + -0.502530426864308 + -0.4732963951957864 + -0.4292133257723614 + -0.3746453273035831 + -0.3141872169357971 + -0.2522245841096807 + -0.1925738260798085 + -0.13823331944783 + -0.09125810257724298 + -0.05275257854829113 + -0.02296144901001634 + -0.001429997986165277 + -0.1049203465669278 + -0.1042209734585904 + -0.09810521448832482 + -0.08601569754239255 + -0.06789225598962903 + -0.04429931082908738 + -0.01650048163630319 + 0.01354218934260904 + 0.04325979608752162 + 0.06966297248249601 + 0.08961307669436211 + 0.1001532922251762 + 0.09886190667761796 + 0.08418168977948828 + 0.05567756884882684 + 0.01418074839034932 + -0.03820925735099426 + -0.09827423599146659 + -0.1619663787790542 + -0.2248038766934148 + -0.2823236615000417 + -0.3305329957249898 + -0.3663017025535212 + -0.3876459469030641 + -0.3938710018456474 + -0.3855614308536301 + -0.3644289480293753 + -0.3330472550044465 + -0.2945164561520066 + -0.2521054862806117 + -0.2089190486935887 + -0.1676269307212102 + -0.1302803558485465 + -0.09822490630837444 + -0.07210516039533754 + -0.05194470009764807 + -0.03727791231897748 + -0.1265734934942291 + -0.140357985654454 + -0.1506593102669785 + -0.1564281214039099 + -0.1569281629578609 + -0.1518805328755768 + -0.1415721693532452 + -0.1269063371188879 + -0.1093784553285617 + -0.09096992149134533 + -0.07396449883939873 + -0.06070452787961363 + -0.05331549320720737 + -0.05343514292034416 + -0.06198570699415425 + -0.07902393685702574 + -0.1036939330488374 + -0.1342934075663645 + -0.1684474259210919 + -0.2033675837007859 + -0.2361617664339994 + -0.2641523344562956 + -0.2851599904044239 + -0.2977167271266633 + -0.3011829130493062 + -0.295758597660681 + -0.2823948519869 + -0.2626247542914416 + -0.2383433557201606 + -0.2115703516598287 + -0.1842280158665514 + -0.1579609849206703 + -0.1340152171940826 + -0.1131827910927371 + -0.09580904913967503 + -0.08185049134593914 + -0.07096675189263479 + -0.1569811006039049 + -0.1753128694953991 + -0.1912972746262618 + -0.2039653842829696 + -0.2125304397681998 + -0.2164964419494666 + -0.2157460627132415 + -0.2105925262963775 + -0.2017834813829797 + -0.1904507385869515 + -0.17800734243073 + -0.1660016186463489 + -0.1559451868827921 + -0.1491370810005872 + -0.146508003694701 + -0.1485068294295608 + -0.1550459080501025 + -0.1655133407334767 + -0.178850573186194 + -0.1936840405125654 + -0.2084918381597859 + -0.2217817760586758 + -0.2322564056709435 + -0.2389436921143147 + -0.241278251001046 + -0.239126269805575 + -0.2327559009683753 + -0.2227625831998851 + -0.2099642431322853 + -0.1952839586439004 + -0.1796372999602516 + -0.163838608017609 + -0.1485357232892652 + -0.1341771499023543 + -0.1210103348891102 + -0.1091054842075155 + -0.09839664653327018 + -0.1949441095191433 + -0.2069524237154882 + -0.2168360167175295 + -0.224312632872187 + -0.2292147918194983 + -0.2315085085819583 + -0.2313036712884461 + -0.2288541400845316 + -0.2245463596871402 + -0.218876310416362 + -0.2124158676158432 + -0.2057709400118395 + -0.1995349130478642 + -0.1942417277307318 + -0.19032321333444 + -0.1880749782587208 + -0.1876342671280702 + -0.1889718394192613 + -0.1918983235166175 + -0.1960838981351539 + -0.2010887878500163 + -0.2064011113215849 + -0.2114781821709336 + -0.2157874292595366 + -0.2188435884254372 + -0.2202395821505543 + -0.2196693928588257 + -0.2169421143408899 + -0.2119871403012641 + -0.2048510733948467 + -0.1956874068874636 + -0.1847403624811161 + -0.1723244854830099 + -0.1588017177840624 + -0.1445576923513203 + -0.1299789130910751 + -0.115432294013837 + -0.2389882881209865 + -0.2334650599457075 + -0.2250608837029522 + -0.2147879053229856 + -0.2037760248650179 + -0.1931488152263418 + -0.1838999404006333 + -0.1767878393944985 + -0.172264158507619 + -0.1704464086596779 + -0.1711383688208618 + -0.1738940241994992 + -0.1781136794704917 + -0.1831556152766095 + -0.1884442346553109 + -0.1935565390434003 + -0.1982728401545173 + -0.2025841297831462 + -0.2066563202343286 + -0.2107592295860731 + -0.2151743472738313 + -0.2200989928652372 + -0.225564875505061 + -0.2313862626098116 + -0.2371475422557434 + -0.2422329438215239 + -0.2458938545973538 + -0.2473428387791512 + -0.2458592048633957 + -0.2408894361770908 + -0.2321271346904485 + -0.2195609473276474 + -0.2034844426216789 + -0.1844680334819528 + -0.1632987140870483 + -0.1408976793811612 + -0.1182282323370469 + -0.2874388442703982 + -0.2534430236860612 + -0.2148182797587374 + -0.1744484741883916 + -0.135411695554166 + -0.1006644654618633 + -0.07273126521182749 + -0.05344254028309768 + -0.04375879082578071 + -0.04370630182923009 + -0.05243333335111681 + -0.06837696244512097 + -0.08951347779367684 + -0.1136523452518898 + -0.1387275980838987 + -0.1630421585515681 + -0.1854297392145385 + -0.2053139111854647 + -0.2226619367459348 + -0.2378488090015172 + -0.2514614870510401 + -0.2640821064028598 + -0.2760906387483655 + -0.2875220531413974 + -0.2980017503010279 + -0.3067681573523429 + -0.3127756767266083 + -0.3148574801654024 + -0.3119182208664986 + -0.3031230007503278 + -0.2880511726463557 + -0.2667909903217531 + -0.2399620854874112 + -0.2086650904235461 + -0.1743692101976688 + -0.1387572987844601 + -0.1035527886102352 + -0.3384973904633097 + -0.265934933067024 + -0.1860438660324856 + -0.1040969624770179 + -0.02571046025388315 + 0.04370582199895792 + 0.09949256441954758 + 0.1382058702995518 + 0.1579386289454233 + 0.1584537666022402 + 0.1411125693713368 + 0.1086122577724445 + 0.06457589898317619 + 0.0130594972775373 + -0.04194808927436097 + -0.09695869309999938 + -0.149292271139793 + -0.1972222636927015 + -0.2399515932267728 + -0.2774405895854921 + -0.3101316009650882 + -0.3386295401131172 + -0.363401011166643 + -0.3845469344787309 + -0.4016866936107789 + -0.4139692632614034 + -0.4202028525339691 + -0.4190736224087011 + -0.4094095325909153 + -0.390439488272347 + -0.362001159785013 + -0.3246619511232405 + -0.2797340851440477 + -0.2291833708343647 + -0.1754485258488485 + -0.1212010684290623 + -0.06908289057820127 + -0.3903174663969051 + -0.2704672963571298 + -0.1397274996405974 + -0.006190746301367709 + 0.1214893323580334 + 0.2349158379684108 + 0.3267644356815204 + 0.3914901002813931 + 0.4258298974764929 + 0.4290350369756344 + 0.4028049798739445 + 0.3509407516885966 + 0.2787761706734612 + 0.1924772522977462 + 0.09831622283219085 + 0.00202483913378957 + -0.09168717365357701 + -0.1793949545772161 + -0.2589884024815877 + -0.3294943659277042 + -0.3907489613981744 + -0.4429983006595714 + -0.486511321249664 + -0.5212787521766996 + -0.54685015672996 + -0.5623311795269884 + -0.566531379257623 + -0.5582251290907592 + -0.5364687367426024 + -0.5009090615556206 + -0.4520231317786252 + -0.3912430257475459 + -0.3209422315006183 + -0.2442844499476089 + -0.1649587977168738 + -0.08684271672135457 + -0.01364306383544722 + -0.4410757862732608 + -0.2670358038046815 + -0.07781947527110011 + 0.1153371192450525 + 0.3003592239056169 + 0.4654423368179652 + 0.6001674961960032 + 0.6964794575209006 + 0.74939990639249 + 0.7573843761751637 + 0.7222832579811178 + 0.6489255279092695 + 0.5443985773952229 + 0.4171394261001599 + 0.275974640698641 + 0.129245207725786 + -0.01587059993637147 + -0.1537637322539048 + -0.2805074079598234 + -0.3937039010391004 + -0.4921338609966618 + -0.5753033844975897 + -0.6429917001189175 + -0.6948911393220308 + -0.730404343807511 + -0.7486272491617203 + -0.7485074756888654 + -0.7291335112051698 + -0.690086345630107 + -0.6317756039081561 + -0.5556875450361252 + -0.4644906342115829 + -0.3619716190481208 + -0.2528056955350224 + -0.1421927450876863 + -0.03541289431991901 + 0.06263441455696483 + -0.4890372959718451 + -0.2560691225450663 + -0.003085681351054374 + 0.2553329889170826 + 0.5034414020966398 + 0.7257408397182658 + 0.9084100505987029 + 1.04057375834823 + 1.115246934851818 + 1.129837559668037 + 1.086154375113124 + 0.9899382188943706 + 0.8500035232405067 + 0.6771289484438001 + 0.4828643046865737 + 0.27842091860058 + 0.07378563096333711 + -0.1228493353336661 + -0.3053078683467691 + -0.4693300533280599 + -0.6122281835897123 + -0.7324082155049718 + -0.8288761662483219 + -0.9008366595753983 + -0.9474601527264107 + -0.9678532131781415 + -0.9612210124083584 + -0.927171385110825 + -0.866082260861857 + -0.7794432518888126 + -0.6700886709286311 + -0.5422610270351713 + -0.4014762456988383 + -0.2541980361057146 + -0.1073622234324514 + 0.03218333280280694 + 0.158245254520625 + -0.5326128639367613 + -0.2383695340262156 + 0.08107812786779284 + 0.40773762444857 + 0.7220888894483306 + 1.004799978191795 + 1.238476700380428 + 1.409228781195635 + 1.507856446437892 + 1.530513853500133 + 1.478781099445096 + 1.359161890034755 + 1.182104747752091 + 0.9607082401171911 + 0.7093050601944648 + 0.4421212242013283 + 0.1721765921295845 + -0.08946164916162404 + -0.3340290129018378 + -0.5550426887780893 + -0.7479927368819919 + -0.9098662867175067 + -1.038637835142262 + -1.132845757595502 + -1.191341295333354 + -1.213249350028975 + -1.198129962510585 + -1.146284891498119 + -1.059123044296356 + -0.9394864634074618 + -0.7918462988244812 + -0.6223031956219849 + -0.4383632963852886 + -0.2485022528030316 + -0.06156751832977259 + 0.1139029360285377 + 0.2703539378339528 + -0.5704089112493325 + -0.2150359542125294 + 0.1708607130486071 + 0.5659420476418958 + 0.94695950808282 + 1.290762667848766 + 1.576358805180325 + 1.786772190903069 + 1.910474346623265 + 1.942216087479597 + 1.883178024275856 + 1.740453793128155 + 1.525972930416276 + 1.255042491891307 + 0.9447268076462645 + 0.612287899902296 + 0.2738766910428823 + -0.05639493787593476 + -0.3669466217752385 + -0.6488085532066925 + -0.8953736436590984 + -1.101951583342887 + -1.265268097994023 + -1.383039433646885 + -1.453715890679654 + -1.476437616502804 + -1.451191316809273 + -1.379108482819234 + -1.262812718603264 + -1.106711098402827 + -0.9171334936998736 + -0.7022517634851582 + -0.4717515442783378 + -0.2362749799428521 + -0.006694480321286722 + 0.2066919918949974 + 0.3949395504712934 + -0.6012685009829903 + -0.1873756166158161 + 0.2622647821813093 + 0.7231631066032453 + 1.168535087518232 + 1.571578711825139 + 1.907822858557556 + 2.157263655842318 + 2.306029875594418 + 2.34738425757546 + 2.281962734419843 + 2.117261895815106 + 1.866488183309452 + 1.546963071582818 + 1.178324274578617 + 0.7807680317176877 + 0.3735435766178875 + -0.02615341665234461 + -0.403822876226264 + -0.7478551582275682 + -1.049365916005113 + -1.30180442573 + -1.500485304903285 + -1.642180368390144 + -1.724869636940947 + -1.747697358003177 + -1.711121478024222 + -1.617194442886756 + -1.469878653286092 + -1.275287067922037 + -1.041749761416616 + -0.7796378178632253 + -0.5009202753075832 + -0.2184791498770529 + 0.05474749733852935 + 0.3066921053035925 + 0.5270371003438483 + -0.6243034063420502 + -0.1568109615493463 + 0.3513372586998368 + 0.872816561770442 + 1.377635826098205 + 1.835651328570403 + 2.219172715924277 + 2.505349726418899 + 2.678054776500967 + 2.729046968160586 + 2.658305745780385 + 2.47353975243262 + 2.188988391468371 + 1.823721657523513 + 1.399694416396777 + 0.9398182923939866 + 0.4662796047197769 + -0.0007354115730034971 + -0.443832299293293 + -0.8487285382625728 + -1.204187751476922 + -1.501702724466015 + -1.735080242317789 + -1.900067950811364 + -1.994125019758398 + -2.01638382878198 + -1.967790840301431 + -1.851362874863101 + -1.67245973160524 + -1.438961492677156 + -1.161250451035742 + -0.8519304042910956 + -0.5252632310980991 + -0.1963549212157525 + 0.1198293898202962 + 0.4095080666538613 + 0.661055756332773 + -0.6389165578857875 + -0.1247880788978288 + 0.4343863868920371 + 1.008865670300682 + 1.565899773637081 + 2.072439981654084 + 2.497961287925016 + 2.817063519300133 + 3.011544718225119 + 3.071714356257194 + 2.996822377765058 + 2.794604268539871 + 2.480061137088317 + 2.07368762953931 + 1.599415120818295 + 1.082546547850384 + 0.5479245256543359 + 0.01850564359465617 + -0.485574070933272 + -0.9474476855320804 + -1.353561696348579 + -1.693449219487488 + -1.959384700331808 + -2.146060661684449 + -2.25038865927749 + -2.271471751764179 + -2.21073630095 + -2.0721586592647 + -1.862487085213985 + -1.591347224503848 + -1.271132319260541 + -0.9166138981260032 + -0.5442580075220449 + -0.1712864228257898 + 0.1854286684250477 + 0.5105134666877076 + 0.7911479902829086 + -0.6448141497854508 + -0.09269244093585145 + 0.5081727680096029 + 1.126124780792539 + 1.726199314183216 + 2.272984101284318 + 2.733609749057051 + 3.080521854436396 + 3.293711697553653 + 3.36215905579745 + 3.284352891643495 + 3.067884494107965 + 2.728231147229259 + 2.286946331528966 + 1.769530138513632 + 1.203264333052893 + 0.6152624591763522 + 0.03091642673046291 + -0.5271676909040794 + -1.039743151012597 + -1.491081615603986 + -1.868846429673975 + -2.163829304606492 + -2.369688334786706 + -2.482787701792729 + -2.502185274292173 + -2.429755501906413 + -2.270383435137055 + -2.032131254935632 + -1.726267607444853 + -1.367063977482349 + -0.9712982278229485 + -0.5574561313919708 + -0.1446773826718983 + 0.2484574796025898 + 0.6051680424112478 + 0.9115985743852151 + -0.6420066754730903 + -0.06177670396910307 + 0.5700633735624263 + 1.220500394871356 + 1.852970409992365 + 2.430317010221829 + 2.917897747888835 + 3.286478501361625 + 3.51458259292009 + 3.59003853485167 + 3.510584261399432 + 3.283516855432002 + 2.924502761061384 + 2.455763750205461 + 1.903913602074988 + 1.297732845006174 + 0.666136162944498 + 0.03651913009399169 + -0.5664169759358405 + -1.121354204437873 + -1.610630247106098 + -2.020215933905535 + -2.339540945328139 + -2.56130051908191 + -2.681339745280442 + -2.698659519661033 + -2.615531095359035 + -2.437656191908867 + -2.174276558936775 + -1.838126963235041 + -1.445140460456684 + -1.013851495675867 + -0.5644937136349237 + -0.1178454547360239 + 0.3060740168353053 + 0.6893200758752318 + 1.017200422720127 + -0.6307983468177992 + -0.03310413853632906 + 0.6181403118569034 + 1.289156428045743 + 1.942436148942952 + 2.539746537614202 + 3.045296485150541 + 3.428701550279617 + 3.667409120963798 + 3.748322672301129 + 3.668477681554567 + 3.43475296292756 + 3.062727462845307 + 2.57489341870928 + 1.99849742261044 + 1.363294692469313 + 0.6994709007084557 + 0.03592009377231747 + -0.601018435273372 + -1.188350062872704 + -1.70680323176493 + -2.140909683734513 + -2.47892118017614 + -2.71268821101192 + -2.837591904269184 + -2.852570216586769 + -2.760224890834727 + -2.566948026241325 + -2.282975942325991 + -1.922269415834891 + -1.502135014610551 + -1.042539196428616 + -0.5651180649407155 + -0.09194138425102061 + 0.3558610842181071 + 0.759469259802438 + 1.103585665866091 + + +# name: Eft_cs +# type: matrix +# rows: 1369 +# columns: 1 + -0.6141716578998517 + -0.6887779868954983 + -0.7830021241064568 + -0.8958957495054704 + -1.023823231149539 + -1.160324982784088 + -1.296338210210664 + -1.420798694854037 + -1.521590798254737 + -1.586754711931791 + -1.605810563413477 + -1.571028259840811 + -1.478467179532466 + -1.328633810355285 + -1.126655534911811 + -0.8819370624330438 + -0.6073407181997662 + -0.3179996171833167 + -0.02992164193096626 + 0.241436060732261 + 0.4824502699131638 + 0.682335052715719 + 0.8337800793377085 + 0.933197773459956 + 0.9806076838336706 + 0.9792273179790334 + 0.934860946948722 + 0.8551813294750932 + 0.7489877227233052 + 0.6255032170594365 + 0.4937520912412804 + 0.3620389214487248 + 0.2375384840639565 + 0.1259992126044433 + 0.03156109580204511 + -0.04331158518186356 + -0.09778416436269011 + -0.6584716479434982 + -0.6918089196962544 + -0.7412599661937381 + -0.807996885786232 + -0.890747921278546 + -0.9854947821983098 + -1.085515579242182 + -1.181814866902736 + -1.263924765480783 + -1.320999637490276 + -1.343072410763111 + -1.322304243071908 + -1.254049101540714 + -1.137574658148268 + -0.9763285687494326 + -0.7777068838518122 + -0.5523569021921638 + -0.3131162615186262 + -0.07374068009099533 + 0.1524042856930339 + 0.3535197406356204 + 0.5202852526405318 + 0.646426100975935 + 0.7289156548517438 + 0.7678465017736239 + 0.7660428402674151 + 0.7285056023327174 + 0.6617810221007697 + 0.5733275585346364 + 0.4709324424866362 + 0.3622052113501698 + 0.2541572584718194 + 0.1528664994376285 + 0.06322433975051461 + -0.01123469352874686 + -0.06841606951833151 + -0.107654938494803 + -0.6864567863051441 + -0.6736735707669173 + -0.6729069152412818 + -0.6876236849060665 + -0.7191656615729437 + -0.7662738921736134 + -0.8249379991070301 + -0.8886301353802 + -0.9489259209940395 + -0.9964510452025537 + -1.022033785360513 + -1.017902099606611 + -0.9787483855782657 + -0.902499979301438 + -0.7906774964113809 + -0.6482886271682256 + -0.4832797405309181 + -0.3056372648497749 + -0.1262819756112689 + 0.04407723709585137 + 0.195970988591169 + 0.321954064605317 + 0.4170757600766389 + 0.4790232760198349 + 0.5079775871532656 + 0.5062568451650319 + 0.4778369294102887 + 0.4278330276565362 + 0.362005648242526 + 0.286327431641907 + 0.2066218986114828 + 0.1282680797492431 + 0.0559585272257868 + -0.006498531907275316 + -0.05633309588372165 + -0.09191387733705889 + -0.1127802937141077 + -0.6960260617518645 + -0.6344889508660623 + -0.5804404972769224 + -0.5396974981615135 + -0.5163348984841755 + -0.5120398477065908 + -0.5257614993641593 + -0.5537337135182206 + -0.5898920129190913 + -0.62664176885781 + -0.6558733589983595 + -0.6700740750461747 + -0.663365765350605 + -0.6323068624929558 + -0.5763367278535547 + -0.4978020090255381 + -0.4015768506646587 + -0.2943568505468023 + -0.183757032179579 + -0.07736727089508784 + 0.01808875024218833 + 0.0973792883150747 + 0.1571150849637336 + 0.1958214935446349 + 0.2137777424298868 + 0.2127000606391428 + 0.1953545606689831 + 0.1651744325290624 + 0.1259305799756542 + 0.0814744639023233 + 0.03554569686603358 + -0.008378589688867188 + -0.04721790953957821 + -0.07842231512805362 + -0.1001066703327609 + -0.1111703180042261 + -0.1113771086149091 + -0.6862818368506907 + -0.5759808991551266 + -0.4684047052566185 + -0.371639330020859 + -0.2924616824263053 + -0.2355364427671652 + -0.2028716959330107 + -0.1936260785102452 + -0.2043074139334863 + -0.2293393509379723 + -0.2619100403563154 + -0.2949677153265243 + -0.3222025546200058 + -0.3388583349258418 + -0.3422509563341652 + -0.3319274188488677 + -0.3094665616133508 + -0.2779876000102716 + -0.2414806831558128 + -0.204095760036133 + -0.1695186248437786 + -0.1405296959001741 + -0.1187913440306759 + -0.1048562310070547 + -0.09834491218790985 + -0.09821537689724447 + -0.1030441962930947 + -0.1112563061647479 + -0.1212708616656581 + -0.1315640590011516 + -0.140676603801525 + -0.147206844760313 + -0.1498282773665077 + -0.1473546957706338 + -0.138853825990597 + -0.1237883638647793 + -0.1021486657403252 + -0.6576694185013806 + -0.5014373748506462 + -0.343143669225559 + -0.1929208192307829 + -0.06005617195433965 + 0.04794457611567426 + 0.1260789001234726 + 0.172248431023489 + 0.1872822647855977 + 0.1745862214401086 + 0.1394836100062555 + 0.08836396798279289 + 0.02778558465730577 + -0.0363210110813692 + -0.09922853054820426 + -0.1576971224306435 + -0.2099586015037045 + -0.2554516626118491 + -0.2944036135978352 + -0.3273743006107804 + -0.3548702949716347 + -0.3771056093428586 + -0.3939385885087592 + -0.4049658198712958 + -0.4097154367118506 + -0.4078631142275074 + -0.3993977511056632 + -0.3846873295253891 + -0.364430628659196 + -0.3395165851616726 + -0.3108399303193522 + -0.2791324122556321 + -0.2448615915873685 + -0.2082272202006344 + -0.1692557629022385 + -0.1279654166343794 + -0.08455470987126418 + -0.6119823984390188 + -0.4154885477963909 + -0.2123410598410352 + -0.01435945105433886 + 0.1670066043348633 + 0.3217138201572564 + 0.4419958469191824 + 0.522953332404738 + 0.5627916563895807 + 0.5626907298350632 + 0.5263506794854234 + 0.459308206710384 + 0.3681505110338152 + 0.2597602417105989 + 0.1407048288656005 + 0.01684162505128775 + -0.1068434893811635 + -0.2261992872210809 + -0.3377490460968595 + -0.4384993987740465 + -0.5258026222026875 + -0.5973270384201318 + -0.6511476375609955 + -0.6859258862566326 + -0.7011159272847314 + -0.6971224640875943 + -0.6753462375380458 + -0.6380824569218937 + -0.5882770149703732 + -0.5291834770072578 + -0.4639901417653705 + -0.3954940773800005 + -0.3258865273881676 + -0.2566855917144357 + -0.1888158362175467 + -0.1228002639207336 + -0.05900648477638656 + -0.5522248544520348 + -0.3237260456141621 + -0.0843804126992234 + 0.1527836021455189 + 0.3746410643820016 + 0.5690659559986162 + 0.7259130707918704 + 0.8377675655281643 + 0.9003789425039759 + 0.9127461321495437 + 0.8768752746747365 + 0.7972810106782888 + 0.6803356738055634 + 0.5335820321812653 + 0.3651124068940986 + 0.1830839507879047 + -0.004604728776538767 + -0.1904951342660482 + -0.367661673049652 + -0.529782818363788 + -0.6712495599797264 + -0.7873428420715635 + -0.8744740330817814 + -0.9304459002628424 + -0.954667244996362 + -0.9482499443733465 + -0.9139345650575518 + -0.8558256133969331 + -0.778960489693771 + -0.6887756351853612 + -0.5905585212146546 + -0.4889783432986187 + -0.3877706092251932 + -0.2896161340316321 + -0.19621241929363 + -0.1084957323142972 + -0.02694478511575037 + -0.4823410184938729 + -0.2321969526537407 + 0.03241138597707196 + 0.2978138015524652 + 0.5498054597523894 + 0.7747547199733544 + 0.9606516188719818 + 1.097978831723795 + 1.180314426215641 + 1.204617624342113 + 1.171197295219668 + 1.083408538073199 + 0.9471564071361571 + 0.7703010678381944 + 0.562053196533487 + 0.3324249554824091 + 0.09176753810182223 + -0.1496090837712194 + -0.3817650366872344 + -0.5954491261754351 + -0.7824397010649701 + -0.9359161725487398 + -1.050837531413979 + -1.124274900441814 + -1.155628705600092 + -1.146664136844036 + -1.101322336457478 + -1.025304277822961 + -0.9254698621611552 + -0.8091345430174318 + -0.6833691896373086 + -0.5544095235005798 + -0.4272588654549297 + -0.3055276691946474 + -0.1915053054288202 + -0.0864152932218642 + 0.009225357846352769 + -0.4068427552783757 + -0.1468285144808473 + 0.1305543743388178 + 0.4116113158748618 + 0.6817198633789502 + 0.9264015310589631 + 1.132388226496355 + 1.28857084672085 + 1.386736132823395 + 1.422030381026633 + 1.393128977482357 + 1.30213109431596 + 1.15423132681464 + 0.9572384627406979 + 0.721013253324009 + 0.4568835023301521 + 0.1770714261015358 + -0.1058569825537784 + -0.3795296385467352 + -0.6323082928794292 + -0.8538372344844233 + -1.035586528372421 + -1.171349686482276 + -1.257634038451471 + -1.293873561135017 + -1.282404150134908 + -1.228170642200298 + -1.138177973039066 + -1.020745841591341 + -0.8846654444696664 + -0.7383779309006594 + -0.5892912165040315 + -0.4433247345573505 + -0.3047267068940135 + -0.1761560801557233 + -0.05897343781777173 + 0.0463476093544197 + -0.3303818097818303 + -0.07285336584963832 + 0.2041457211438851 + 0.4875189616777113 + 0.7629070135700097 + 1.015676612732154 + 1.231956069720132 + 1.399615330827121 + 1.509097705150378 + 1.554032411974148 + 1.531587958106212 + 1.442560024730206 + 1.291217498323784 + 1.084951009094126 + 0.8337767757149905 + 0.5497449418840858 + 0.2462894802756057 + -0.06245798258648008 + -0.3623789317408051 + -0.640093840267714 + -0.8836850516139475 + -1.083381584976703 + -1.232151390246368 + -1.326132718715733 + -1.364835431576054 + -1.351059720931556 + -1.290513527982923 + -1.191155302608475 + -1.062335938019465 + -0.9138513936749511 + -0.7550358539830638 + -0.5940187578361115 + -0.4372381808170295 + -0.2892543768360011 + -0.1528516501565062 + -0.02936648888269341 + 0.08085428492481689 + -0.2573240487929279 + -0.01430949820489723 + 0.249438028827849 + 0.5220006769927671 + 0.7899301421417918 + 1.039112059972143 + 1.25572517877082 + 1.427207807530668 + 1.543143526427293 + 1.595989142139375 + 1.581588291611719 + 1.499440012523372 + 1.352718054267694 + 1.148058917260707 + 0.8951512140459711 + 0.6061649215214585 + 0.2950580486348611 + -0.02320610987930584 + -0.3335010700623136 + -0.621406653965632 + -0.8740656308985821 + -1.080974299679635 + -1.234640945852569 + -1.331039757657485 + -1.369793954970679 + -1.354043936437477 + -1.289993245800335 + -1.186171431878023 + -1.052499067213267 + -0.8992755486008341 + -0.7362256257154756 + -0.5717309275230081 + -0.4123389673837844 + -0.2625909583490911 + -0.125152252412248 + -0.001177767836174681 + 0.109189889849823 + -0.1913843853049907 + 0.02631758014237613 + 0.2651894855092302 + 0.5149857357179741 + 0.7637350119198892 + 0.9984469910750121 + 1.20595680783957 + 1.373837242988294 + 1.491298739317683 + 1.549997193986393 + 1.544679095357518 + 1.473611157061841 + 1.3387638587035 + 1.145741252401148 + 0.9034694242715029 + 0.623670849336347 + 0.3201612201794268 + 0.008010704645674858 + -0.2973843493710241 + -0.581267956775704 + -0.8304703446254807 + -1.034265333353106 + -1.185064904535017 + -1.278877143027148 + -1.31546591786901 + -1.298176808695455 + -1.233432519121123 + -1.129946829719983 + -0.9977502514022145 + -0.8471529705895373 + -0.6877829637285902 + -0.5278248696128829 + -0.3735495000635855 + -0.2291715312443298 + -0.097014837466742 + 0.02208659973275812 + 0.1282586381488268 + -0.135372654004015 + 0.04826088878459417 + 0.2527374629393742 + 0.4698518067922178 + 0.6895508234998208 + 0.900460785193093 + 1.090588648658013 + 1.248146657681896 + 1.362430777899765 + 1.424672685333588 + 1.428784097648476 + 1.37192146868233 + 1.254816801942307 + 1.08184340577071 + 0.8608099887888084 + 0.6024991465955594 + 0.3199848513605459 + 0.02777750907134031 + -0.2591446262713668 + -0.5263509475470765 + -0.7609475625257115 + -0.9524618049849128 + -1.093543223995485 + -1.180408506041608 + -1.212974626514907 + -1.194653234196823 + -1.131818233937033 + -1.033002596469522 + -0.9079215796498741 + -0.7664487190554911 + -0.6176804447581821 + -0.4692110468888624 + -0.3267032211460383 + -0.1937871939946759 + -0.07226401646253094 + 0.03746201783558278 + 0.1358303520222066 + -0.09108310390928366 + 0.05242349842623514 + 0.2157837381795253 + 0.3930462074979421 + 0.5763599939632202 + 0.7563137301604398 + 0.922477427640776 + 1.064115685705527 + 1.171014529137351 + 1.234343689583959 + 1.247465561140386 + 1.206603503163262 + 1.111295466113064 + 0.9645816438485038 + 0.7729029930281193 + 0.5457165122503547 + 0.2948593167340678 + 0.03371443845829862 + -0.2237537305016075 + -0.4640167842896664 + -0.6749696694265935 + -0.8468042706878687 + -0.9726894407527037 + -1.049188653332097 + -1.076366336404222 + -1.057563535151888 + -0.9988612492491306 + -0.9082909993714788 + -0.7948898006034786 + -0.6677226387671156 + -0.5350028030687126 + -0.4034254173915455 + -0.27779344489806 + -0.1609645518896466 + -0.05409154125588422 + 0.04291992673581624 + 0.1308448526657466 + -0.0593359644025675 + 0.04112479715427736 + 0.1599195155728521 + 0.2933925657717575 + 0.4360019982101491 + 0.5804759558124022 + 0.7181919785810055 + 0.8397658885758389 + 0.9358043315836329 + 0.9977466238627458 + 1.018702854013834 + 0.9941899908828532 + 0.9226771239774648 + 0.8058730701461081 + 0.6487202122615672 + 0.4590921863900277 + 0.2472246997399155 + 0.02493452372747566 + -0.1953002802463545 + -0.4013156090258994 + -0.5822052739743278 + -0.7291491488095159 + -0.8360486893953849 + -0.8999068311333145 + -0.9209103213569581 + -0.9022012659669538 + -0.8493597016711469 + -0.7696565055717066 + -0.6711698071350607 + -0.5618810883897335 + -0.4488730109906347 + -0.3377362566793487 + -0.2322582485944892 + -0.1344181858751418 + -0.04465971891759968 + 0.03763429672699448 + 0.1135714724328669 + -0.04015285976558081 + 0.01768265166161286 + 0.09195551200400696 + 0.1811721731658909 + 0.2820230696507966 + 0.3893760120345598 + 0.4965033772445566 + 0.5955450866886248 + 0.6781722429503577 + 0.7363820250646043 + 0.7633297552083582 + 0.7540938961298743 + 0.7062760817052148 + 0.6203596621488541 + 0.4997822485264073 + 0.3507142425215823 + 0.1815701110480061 + 0.002307362655283279 + -0.1764127842999844 + -0.3441194595401804 + -0.4913958677211703 + -0.6106324678181321 + -0.6965992966571224 + -0.7467819003938603 + -0.7614455493083541 + -0.7434185047399244 + -0.69761624490483 + -0.6303617878900247 + -0.5485874600882082 + -0.4590242869974196 + -0.3674907254429897 + -0.2783792146419892 + -0.1944074358282752 + -0.116656119172509 + -0.04486526423028869 + 0.02208398969352887 + 0.08560446060847227 + -0.03302369722783843 + -0.01410125032699375 + 0.01915026838360641 + 0.06709872505669459 + 0.1284142208929689 + 0.1999320979584383 + 0.2767511025541061 + 0.3525798510308599 + 0.4203051838292948 + 0.4727184629546232 + 0.5033078148807655 + 0.5070113598462258 + 0.4808310093526689 + 0.4242271146200778 + 0.3392464696196605 + 0.2303732945235087 + 0.1041280291608876 + -0.03153329304143317 + -0.1679484518052443 + -0.296528920275422 + -0.409512618332552 + -0.500618498236751 + -0.5655423624380709 + -0.6022469357129723 + -0.611016504609426 + -0.5942682240069991 + -0.5561384229264721 + -0.5018909644751027 + -0.4372217575249459 + -0.3675531640249527 + -0.2974185655508582 + -0.2300269196350824 + -0.1670694588737081 + -0.1087897244192315 + -0.05429155470114866 + -0.002017136173370515 + 0.0497020073765162 + -0.037205927010742 + -0.05047021037423248 + -0.05155647996618922 + -0.03868311721900582 + -0.01161018948708994 + 0.02813690765170635 + 0.0772707249320129 + 0.1309910030368928 + 0.183459213556402 + 0.2284398423517391 + 0.2600214371314249 + 0.2733171674585567 + 0.2650488739967722 + 0.2339387896687051 + 0.1808644029158577 + 0.1087674469210837 + 0.02234080552193907 + -0.07245801887425778 + -0.1690037865972508 + -0.2606431853870896 + -0.3413126882560761 + -0.4060772770988947 + -0.4515418619329749 + -0.4760975289926824 + -0.4799770755077021 + -0.4651102479799378 + -0.4347896761673687 + -0.3931827838365695 + -0.3447496135874522 + -0.2936462066558387 + -0.2432020710654623 + -0.1955539096769021 + -0.1514949258247331 + -0.1105626028540225 + -0.07134466489812308 + -0.03194211857166951 + 0.00950099376919078 + -0.05199149227562292 + -0.08817148327996505 + -0.1142018675575763 + -0.1274530239341255 + -0.1266538223485347 + -0.112149668974069 + -0.0859511923056954 + -0.0515546530788223 + -0.01355266569552107 + 0.02291103940381337 + 0.05276350748695176 + 0.07161092238425121 + 0.076248832037224 + 0.0650096261635373 + 0.03791189885068683 + -0.003391999499708059 + -0.05584635151266562 + -0.1153575967498655 + -0.1772433885737635 + -0.2367134870835369 + -0.2893360238181067 + -0.331449534563829 + -0.3604871762385133 + -0.3751844034209588 + -0.3756468356438103 + -0.3632638877561306 + -0.3404681883265032 + -0.310361028821227 + -0.2762473701756045 + -0.2411450649703999 + -0.2073456164111471 + -0.1761026432888284 + -0.1475068817537541 + -0.1205748530720008 + -0.09353823534195871 + -0.06428125840236909 + -0.03084335122297266 + -0.07688400114026792 + -0.1247748865819133 + -0.1642660164055482 + -0.1925285882316811 + -0.2078930883061775 + -0.210084037997498 + -0.2002715999055834 + -0.1809277513762237 + -0.1555076362998464 + -0.1280059810886623 + -0.1024579177924774 + -0.08245926811469494 + -0.07077269458074403 + -0.06906597452817559 + -0.07780247990602675 + -0.09627824781060269 + -0.1227804240472534 + -0.1548315278900101 + -0.1894829108418372 + -0.2236261213016876 + -0.2542982700698672 + -0.27896282319515 + -0.295748347109313 + -0.3036251907105857 + -0.3024970237389347 + -0.2931848828184083 + -0.2772895380032433 + -0.2569347453505992 + -0.2344170206709089 + -0.211811518121696 + -0.1906013197399536 + -0.171402427074316 + -0.1538453463950196 + -0.1366470855206161 + -0.1178698812538119 + -0.09532359474196372 + -0.06703698766659216 + -0.1116477242065037 + -0.1588067879031686 + -0.1988964539552942 + -0.2295824962756717 + -0.2494861600377721 + -0.2583357198583761 + -0.256968727104186 + -0.2471858498205248 + -0.2314832487016286 + -0.212710847345652 + -0.1937140463706915 + -0.177014293079195 + -0.1645705034434055 + -0.1576426238241928 + -0.1567564125519276 + -0.1617507159983278 + -0.1718793232736455 + -0.1859401472414351 + -0.2024129282844875 + -0.2195982892376983 + -0.23576031415648 + -0.2492775497260238 + -0.2588019052413294 + -0.263413321967643 + -0.2627451976016835 + -0.2570475384795275 + -0.2471568106564561 + -0.2343555415396368 + -0.2201287840389528 + -0.2058526129186955 + -0.1924736780897709 + -0.1802506009629656 + -0.1686226605552172 + -0.1562484225159091 + -0.1412213849123756 + -0.1214298648151253 + -0.09499423541777485 + -0.1562174610491275 + -0.1896895193454903 + -0.2168823051787696 + -0.2366563927008266 + -0.2486309512956493 + -0.2531933034544664 + -0.2513991704842243 + -0.2447839967006174 + -0.2351228982420061 + -0.2241856367620658 + -0.213531091870712 + -0.204373277426 + -0.1975311986336714 + -0.1934531528917109 + -0.1922885504392988 + -0.1939720174826255 + -0.1982878063413693 + -0.2048961637359837 + -0.213322715157357 + -0.2229304642341699 + -0.2329050548664356 + -0.2422831098228003 + -0.250040203735714 + -0.2552330951921582 + -0.2571672788697529 + -0.2555439222019438 + -0.250536499630333 + -0.2427597643723112 + -0.2331199054855246 + -0.2225679956327526 + -0.2118095891233303 + -0.2010421607755228 + -0.1897926023890499 + -0.1769079032002416 + -0.1607177036122711 + -0.1393463147020606 + -0.1111146747842162 + -0.2104887109383146 + -0.2175122284086666 + -0.218411111588165 + -0.2139109576387947 + -0.205317525629361 + -0.1943296334057036 + -0.1827871122134793 + -0.1723993752055643 + -0.1645067561793136 + -0.159921808427372 + -0.1588813094471041 + -0.1611149292996465 + -0.1660090881530756 + -0.172821426450132 + -0.1808889570961705 + -0.1897753333039757 + -0.1993198891755019 + -0.2095791176035812 + -0.2206825908352565 + -0.2326511145553621 + -0.2452373522531834 + -0.257843991450414 + -0.2695524996879733 + -0.2792624833837377 + -0.2859070655645766 + -0.2886839015815705 + -0.2872326263441787 + -0.2817010827373756 + -0.2726720619358045 + -0.2609615485657861 + -0.2473375114341141 + -0.2322340964325171 + -0.2155419658878461 + -0.1965393768253354 + -0.1739944766222274 + -0.1464262686420312 + -0.1124711559545677 + -0.2740346804582764 + -0.2426898559955099 + -0.2046751105944246 + -0.163188577549409 + -0.1218596309671372 + -0.08431734210359065 + -0.05374065412978483 + -0.03246577138334369 + -0.02172107645919547 + -0.02153940621062099 + -0.03086473889614575 + -0.04783161562611293 + -0.07015943935051511 + -0.09557888352657007 + -0.1222006987732417 + -0.1487509459952342 + -0.1746287543721197 + -0.199785872182823 + -0.2244710068154713 + -0.2489150099129407 + -0.2730464634711207 + -0.2963171866598256 + -0.3176858952398282 + -0.3357638824764424 + -0.3490811436548549 + -0.3563973744606455 + -0.3569692801643156 + -0.350697409131826 + -0.3381091078338261 + -0.3201799239772911 + -0.2980411153656024 + -0.2726532585312906 + -0.2445364151289184 + -0.2136331997878336 + -0.1793465017346412 + -0.1407481273440836 + -0.09691048572735239 + -0.3458147290680352 + -0.2655863585368967 + -0.1774142576267231 + -0.08748611561032467 + -0.002311538054777565 + 0.07199255993743339 + 0.1303881420715443 + 0.1694647496734905 + 0.1877593224371733 + 0.1857927898901302 + 0.1658193326215494 + 0.1313378940440927 + 0.08646117162808864 + 0.03526439612914711 + -0.01876222437412384 + -0.07305880204412393 + -0.1260873355850081 + -0.17717649620752 + -0.2261825968301547 + -0.2730697548207752 + -0.3175264466212012 + -0.3587204649802975 + -0.3952537100468878 + -0.4253228939835623 + -0.4470366636668697 + -0.4587984637181906 + -0.4596483964753482 + -0.4494702830901303 + -0.4290081068066258 + -0.3996883127939581 + -0.3632966404083624 + -0.3215962061793496 + -0.2759875799714684 + -0.2272985409550392 + -0.1757554029084094 + -0.1211395121189613 + -0.06308484906698419 + -0.4239439435868295 + -0.2861827127625605 + -0.1384867346853267 + 0.009562420330304454 + 0.1481225900711194 + 0.268116406987487 + 0.362183807803329 + 0.4254166959439896 + 0.4557611389221936 + 0.4540264062782039 + 0.4235082747561621 + 0.3693030516659058 + 0.2974442244250113 + 0.2140231913825769 + 0.1244520264264457 + 0.03298977700907257 + -0.057407886969465 + -0.1449289274862588 + -0.2285159847471677 + -0.3073755410056125 + -0.3805270248827998 + -0.4465133247709658 + -0.5033447457186144 + -0.5486829889526805 + -0.5802072514298839 + -0.596057524522245 + -0.5952322667542898 + -0.5778326134333081 + -0.5450881885801513 + -0.4991581809843488 + -0.4427596398964249 + -0.3787175877674485 + -0.3095479525845826 + -0.2371713307080916 + -0.1628179762513682 + -0.08713318860622987 + -0.01044138115561388 + -0.5055843800090818 + -0.3038589502577723 + -0.08954409513727531 + 0.1241094342706976 + 0.3235976528279194 + 0.4965151384474371 + 0.6327938866254286 + 0.7256474432982774 + 0.772081180107743 + 0.7728999994374656 + 0.7322303967583775 + 0.6566579267923278 + 0.5541463291289238 + 0.4329368028432608 + 0.3006178980839593 + 0.1635097565693815 + 0.02643133994677321 + -0.1071671640599038 + -0.2348026364789905 + -0.3544358443910324 + -0.4639890253471495 + -0.5610411977742771 + -0.6427807297133322 + -0.7062205098272349 + -0.7486093255139017 + -0.767921830498874 + -0.7632910547386083 + -0.7352651935773316 + -0.6858183176368851 + -0.6181089634071135 + -0.5360438720917622 + -0.443750068388181 + -0.3450759947738282 + -0.2432285426667864 + -0.1406129266172012 + -0.03888825050159683 + 0.06080197820446109 + -0.5869968420788043 + -0.31733495603232 + -0.03186085543710292 + 0.2523696405468672 + 0.5179980434401443 + 0.7490443545050504 + 0.9324414723550762 + 1.059204798595315 + 1.125073029917569 + 1.130541978206764 + 1.080315346141416 + 0.9822947329548181 + 0.846305654353429 + 0.6827914017007544 + 0.5016947819368087 + 0.3116920973156309 + 0.1198569564263711 + -0.06826646240458423 + -0.2482879286109698 + -0.4164570105749566 + -0.5691877787629414 + -0.7027701154639135 + -0.8133511862860626 + -0.8971894694158646 + -0.9511067167675531 + -0.9730096110302784 + -0.9623352553329672 + -0.9202958296535924 + -0.8498504939488658 + -0.7554018164236851 + -0.6422810351082897 + -0.516134235042883 + -0.3823389064284655 + -0.2455647519156612 + -0.1095501440121098 + 0.02289108616807045 + 0.1496734819380312 + -0.6637622275750227 + -0.324782172979018 + 0.03366679225473171 + 0.3907317698761067 + 0.7251518017488316 + 1.017258655759952 + 1.2508047448698 + 1.414365805435804 + 1.502130049140492 + 1.513985105684525 + 1.454930880028914 + 1.33395759040366 + 1.162611237504382 + 0.9535066076498977 + 0.719033270628006 + 0.4704370985845803 + 0.2173635983509336 + -0.03215781450222144 + -0.2714030980906 + -0.4944902992356661 + -0.6959507087782393 + -0.8704878487240041 + -1.013008195726091 + -1.118921451162127 + -1.184628039145592 + -1.208057411352775 + -1.18910518618988 + -1.129842219794548 + -1.034425927243183 + -0.9087172203571252 + -0.7596757725144916 + -0.5946544985014026 + -0.4207302061247846 + -0.2441893726806215 + -0.07024284955594418 + 0.09701563824856851 + 0.2544492518785386 + -0.7311494759085048 + -0.3240843471655168 + 0.1063741215189969 + 0.5357264052443135 + 0.9389083112132443 + 1.292589532366997 + 1.577281818061603 + 1.778973320626698 + 1.890078106755597 + 1.909600991713367 + 1.842547109271355 + 1.69872764969798 + 1.491203498084628 + 1.234649042962075 + 0.9439019064272756 + 0.6328960980806464 + 0.3140729340738613 + -0.001749638507598017 + -0.3051668080641617 + -0.5878142494019007 + -0.8420234892899011 + -1.060658991154506 + -1.237217536321749 + -1.366181625867516 + -1.443537633024949 + -1.467316704109179 + -1.438004082663982 + -1.358691761508944 + -1.234910529338898 + -1.074153235085844 + -0.8851713251574376 + -0.6771739246096313 + -0.4590724740398193 + -0.2388930362147055 + -0.02343062373793181 + 0.1818407284560961 + 0.3726458421434184 + -0.7845793542232309 + -0.313196772922317 + 0.1855829407862977 + 0.6838993348220405 + 1.153127974608387 + 1.566443880536633 + 1.901185985162724 + 2.140712503065674 + 2.275515918791449 + 2.303486478086136 + 2.229352081782227 + 2.063453078942122 + 1.820106634193329 + 1.515858304035277 + 1.167901049066061 + 0.7928704003159152 + 0.4061171233558255 + 0.0214413135018402 + -0.3488284093422341 + -0.6935880722397088 + -1.002731758271931 + -1.26709409449673 + -1.478635595321141 + -1.630855206699865 + -1.719334710689323 + -1.742270010953836 + -1.700836193116938 + -1.599266750395709 + -1.444591806186995 + -1.246057452949315 + -1.014318090257065 + -0.7605386971634149 + -0.4955545911096104 + -0.2292121661359463 + 0.03003603268200772 + 0.2752702525690891 + 0.5010220006335557 + -0.8201150736733397 + -0.2905355589756682 + 0.2703258345661477 + 0.831655813387838 + 1.361646851993554 + 1.830283189693085 + 2.211927900783381 + 2.487379597891572 + 2.645150428879541 + 2.681843436262474 + 2.60165316305615 + 2.415150004368121 + 2.137609213753796 + 1.787190456129124 + 1.383256427124153 + 0.9450463361935892 + 0.4908111912838279 + 0.03739954052311456 + -0.3998176984155558 + -0.8068545143363979 + -1.171028952045204 + -1.481033385769909 + -1.727219820317718 + -1.902076176071489 + -2.00079311859294 + -2.021775934729193 + -1.966952759749355 + -1.841768145044812 + -1.654817924566459 + -1.417159007704124 + -1.141395807427115 + -0.8406869236801868 + -0.5278226553882877 + -0.2144966541165143 + 0.08915708521695009 + 0.3747528425911608 + 0.6356145272915583 + -0.8349052843267033 + -0.255324234097449 + 0.3591094086829216 + 0.9751418153173627 + 1.558277911433355 + 2.075740162917112 + 2.499236337837332 + 2.807189480957834 + 2.98616861428392 + 3.031388454614683 + 2.946295980441962 + 2.741401622478344 + 2.432615714333234 + 2.039397321269712 + 1.583006033234369 + 1.085075293910811 + 0.5666180877607569 + 0.04745934775687005 + -0.4540081078516163 + -0.9209044760723714 + -1.33794757156592 + -1.691666772573799 + -1.970797847410863 + -2.166825568719466 + -2.274569607887764 + -2.292669899326881 + -2.22382985608946 + -2.074717431324145 + -1.85549270807079 + -1.579007680882375 + -1.259789270566352 + -0.9129546677666855 + -0.5532111212861448 + -0.1940620074016137 + 0.1527125654026285 + 0.4772942682395716 + 0.7718324307873679 + -0.8275129283156136 + -0.2078346318184625 + 0.4497748371374373 + 1.110214788541523 + 1.736894953224599 + 2.294812150966025 + 2.753450448352886 + 3.089149127297349 + 3.286668215836278 + 3.339811683154777 + 3.251118627477509 + 3.030773358793337 + 2.69498876507747 + 2.264164702556156 + 1.761108099564439 + 1.209531859008925 + 0.6329453379984777 + 0.05393696874489973 + -0.5062435146911963 + -1.027949142046007 + -1.49339620388412 + -1.887030107550116 + -2.196033981273797 + -2.410937631857181 + -2.526219352133772 + -2.540760343327188 + -2.458019265981677 + -2.285839540838348 + -2.035871593157313 + -1.722667569988289 + -1.362567934819912 + -0.9725330998110824 + -0.569072336914298 + -0.1673892895300706 + 0.2191910258929117 + 0.5795098594184815 + 0.9046256522486638 + -0.7980826605153682 + -0.1494797797874132 + 0.5394916306135903 + 1.23253248146651 + 1.891619908298799 + 2.480144279551487 + 2.965889278498261 + 3.323496978411007 + 3.536143573620619 + 3.596279744902924 + 3.505437677757664 + 3.273245378653298 + 2.915891250669064 + 2.454329410509942 + 1.912503110837882 + 1.315797848445437 + 0.6898368504971364 + 0.05962570791279545 + -0.5510340657960446 + -1.119991386796673 + -1.627182582402043 + -2.055149148529568 + -2.389658539638071 + -2.620376482058725 + -2.741481417696686 + -2.752085959380437 + -2.656343420368207 + -2.463165494189353 + -2.185546779234993 + -1.839564711152972 + -1.443181266405527 + -1.015002078125138 + -0.5731439782748602 + -0.1343269623569365 + 0.2867480331299652 + 0.6777336704303858 + 1.028731231865496 + -0.7483259470949677 + -0.08274380272058005 + 0.6248925346786224 + 1.337759839249747 + 2.017105266972685 + 2.625386084010827 + 3.129275427585828 + 3.50217995432884 + 3.725995695844853 + 3.791952406152383 + 3.700539951352326 + 3.460644616038987 + 3.088122662866731 + 2.6040854325331 + 2.033159344395493 + 1.401923274584076 + 0.737633871055176 + 0.06725133701614674 + -0.5833014001559065 + -1.189756408725665 + -1.730105143911881 + -2.185259892474883 + -2.539779228483339 + -2.782597488487933 + -2.907648122573361 + -2.914252116873873 + -2.807160901600355 + -2.59619335978206 + -2.295475396481339 + -1.922360248363546 + -1.496161083468906 + -1.0368522938796 + -0.5638879738907114 + -0.09524962088275224 + 0.3532189791314897 + 0.7681891771249258 + 1.138983961576424 + + diff --git a/test_gpstuff/octave/realValues_survival_aft.mat b/test_gpstuff/octave/realValues_survival_aft.mat new file mode 100644 index 00000000..b80bdd5f --- /dev/null +++ b/test_gpstuff/octave/realValues_survival_aft.mat @@ -0,0 +1,463 @@ +# Created by Octave 3.8.1, Tue Jun 07 15:32:02 2016 EEST +# name: pmu +# type: matrix +# rows: 456 +# columns: 3 + 0.1470780891824294 0.2688676353018228 0.4934786288327848 + 0.2151451593762723 0.4590832827483154 0.9196710915810627 + 0.3074225159922753 0.6379951331631318 1.252705072945667 + 0.313998501806016 0.6471547975945808 1.275006103578728 + 0.3706896016358039 0.7410833798299626 1.448852331695702 + 0.4267384322191888 0.8309349016681762 1.591234690109388 + 0.4863858609360365 0.9161504720249189 1.731183193978145 + 0.5420761959188155 0.9950055254205333 1.858417583600448 + 0.5962295363910914 1.07166038036387 1.987297259514936 + 0.639891212773486 1.141761257088724 2.087495400136755 + 0.6825869190664735 1.196799305637096 2.182179612564355 + 0.7162399372510329 1.24951456270241 2.252741233041117 + 0.7378662512411811 1.282836878418156 2.308154101265888 + 0.7474482032969977 1.296630190461126 2.318701147616036 + 0.7735962892207495 1.331551752984656 2.366087534781561 + 0.7971851742548903 1.362712036604294 2.386953199302758 + 0.8138673546783753 1.386924264722022 2.415457295722271 + 0.8365292086411262 1.402459276728539 2.416115691447856 + 0.8468431985695479 1.416376681210155 2.425644299359037 + 0.8540244250695926 1.425479689075427 2.429395737549853 + 0.8635369620511599 1.432310580263805 2.424255544933168 + 0.8688460159310341 1.433653016441659 2.415140024401566 + 0.8762949637168602 1.430042833291324 2.396152364324652 + 0.8830206631824996 1.424997433120016 2.377691780988664 + 0.879636118899234 1.425657157636256 2.370610356731579 + 0.8813914357329991 1.423934798406291 2.357061154555105 + 0.8832175327465382 1.422733269791942 2.329138287516991 + 0.8769080411022789 1.41736233087299 2.314106420098284 + 0.8782271771416145 1.410766268850681 2.282035653642907 + 0.8711589177726204 1.406905817134291 2.256335170072221 + 0.8709276870719289 1.405859363481417 2.253986338783089 + 0.8721949326817801 1.401953931564708 2.239035148512378 + 0.8661329141460179 1.397949290244296 2.225781515806104 + 0.8640513711063369 1.392331708130874 2.21266329255143 + 0.861023649206647 1.384217222824646 2.198255786300297 + 0.857189669094427 1.377987585230957 2.189726083193007 + 0.8552682832875308 1.375549964450888 2.185927850672948 + 0.8455413505753127 1.368920027823736 2.182323464713314 + 0.8435197320415907 1.360221491430879 2.166355737480637 + 0.8388533891549642 1.351385635324323 2.147547297131705 + 0.8362782079161599 1.346604678296841 2.133602802280177 + 0.8267517185200478 1.338177144883446 2.120945241875275 + 0.8227972151928911 1.330742036444564 2.110665439908384 + 0.8210002141563468 1.322707258419785 2.099393603594021 + 0.8192096405788609 1.316004985215558 2.084919937856791 + 0.8154880569066518 1.309129350733535 2.075798191201768 + 0.8094922470309316 1.30286186242041 2.063899989470744 + 0.8079810666642381 1.297496736965727 2.051380113831685 + 0.8024949517872759 1.287654372893866 2.035549873271531 + 0.7969279966134295 1.282132039961313 2.027285719254717 + 0.7920935189301641 1.277830762224273 2.015120422567683 + 0.7885220932489697 1.271226606044311 2.007420866372945 + 0.7871271554244086 1.267478157549588 1.999908895417598 + 0.7814184680952059 1.263864739599923 1.996530505590658 + 0.776530103417609 1.259429201139258 1.995717006967137 + 0.7738028723566061 1.253895554236824 1.986870799275769 + 0.769699511877187 1.250180544277717 1.97624950959709 + 0.7696238839267436 1.25004148746427 1.97459694653027 + 0.7697902286558684 1.246864805880915 1.979217077028299 + 0.7658887798238031 1.243701230835428 1.972630912470589 + 0.7634534740573834 1.239072411795815 1.970483300558635 + 0.7631577712011937 1.235012486940374 1.966578625409195 + 0.7622463895133026 1.230818345366879 1.95751862220536 + 0.7578146911514205 1.229304595268002 1.950710635634936 + 0.754528638514636 1.225036261969665 1.945655670671371 + 0.7520860401825467 1.218467658339249 1.940146288168557 + 0.7500611038287216 1.214267924274119 1.936715164446692 + 0.7483352947639934 1.208984216881843 1.932416864031917 + 0.7450789558849105 1.205086190192269 1.934410469575514 + 0.7433817761344038 1.202375807506036 1.928750059927419 + 0.7418785553868665 1.198600143866812 1.925117648228107 + 0.7392585384801964 1.195257837405346 1.918096588616969 + 0.7368158647267593 1.191305555451301 1.913070901535149 + 0.7351980227429179 1.18956125261602 1.908064837404142 + 0.7338575786390916 1.187123753465969 1.898933454936151 + 0.7332661994696625 1.18530332486933 1.898708031591014 + 0.7349969227493944 1.182764556340448 1.889894401818658 + 0.7344802939206647 1.181312776263052 1.883666455924453 + 0.7335448452647739 1.17751032718615 1.876981184103927 + 0.728391411475473 1.169518501051905 1.871347648976464 + 0.7234084057390711 1.166292916272225 1.873069137780338 + 0.7203735868313184 1.163243922548055 1.871474218844257 + 0.7168513583789942 1.159245955699165 1.862425514159078 + 0.7145027201044882 1.156250890273365 1.856096614625597 + 0.7106378205929655 1.153901346272397 1.856935747486195 + 0.7087384578375298 1.151815836114955 1.855384329535733 + 0.7080046885602977 1.148154443053247 1.848724477393342 + 0.7032144398748691 1.145290241599165 1.841920876953292 + 0.7029674613767525 1.144990137128481 1.841304142218624 + 0.7008943045963314 1.141594367767535 1.836787338423965 + 0.6965000428976478 1.139743424881001 1.833974876651273 + 0.6949676900062061 1.13776025704456 1.834937244381978 + 0.6923877612525652 1.134585843458967 1.834386221637721 + 0.6919966847446188 1.131902871178344 1.831369130578127 + 0.6897677348196618 1.128865320638823 1.830094855483523 + 0.6872424863918127 1.124316129655378 1.822639678782353 + 0.6854226726436659 1.120977463492375 1.812928810391796 + 0.6832824267693789 1.118997292648209 1.811024818365677 + 0.6825378656220383 1.116878330424788 1.806464878891677 + 0.6807051147848675 1.114231298238695 1.802898401730155 + 0.6782491406231539 1.11185146464871 1.799237408130866 + 0.6755198103757856 1.109384843674113 1.795853965650968 + 0.6721674250218936 1.10678616444814 1.789958114317631 + 0.6683015692630643 1.101213571960785 1.782062047609108 + 0.6654716950625248 1.097679189069731 1.78032195837947 + 0.6640777400601419 1.095614810396321 1.779439363929533 + 0.6607772107812908 1.092982199838116 1.778141598348175 + 0.6558712834447917 1.086700488570811 1.780638555607041 + 0.6554566537154575 1.084009750607247 1.77505127977628 + 0.6521330962187001 1.079024061104688 1.764625348416139 + 0.6510150318178184 1.075437494115351 1.759463566162893 + 0.6498201927134151 1.072581810017862 1.758146089065578 + 0.6481923512897382 1.066078711377523 1.753534632409699 + 0.6461037737017141 1.063499368435948 1.749568953755769 + 0.6441858395879094 1.060765438773446 1.744681840607907 + 0.6426763327297897 1.056854565426331 1.741208163020399 + 0.6399183386539684 1.054889573436863 1.739632663320336 + 0.6379287281567823 1.053760601893784 1.732348104660252 + 0.6352817146735568 1.051069820316268 1.729862044971882 + 0.6313728059716071 1.046181918540047 1.724325393196363 + 0.6271295349730179 1.039535384636701 1.720373863303608 + 0.623520287915339 1.035991711131181 1.715481461910981 + 0.6215194749832302 1.033244818545869 1.710135839275274 + 0.6196422486676734 1.031560089608337 1.704228279829711 + 0.6177217955355874 1.029433231453916 1.700161014822795 + 0.6160363289873334 1.027084343286396 1.695735395134238 + 0.6144846968232278 1.025330056523866 1.694400680217535 + 0.6116124766907731 1.020712091490259 1.688105280963073 + 0.6105329738305099 1.017786806953198 1.686602249819815 + 0.6087534999277933 1.014875536021217 1.683408043645274 + 0.607530074732987 1.012767229896701 1.682349573916294 + 0.6031782110506921 1.006037143218371 1.670947527471105 + 0.601199172289373 1.00297868570521 1.663527192892885 + 0.5941858239666086 0.9930996296053836 1.645702582676101 + 0.5924167449349397 0.9896544020918862 1.637057754090749 + 0.588803230554126 0.9831358682109378 1.629835510583004 + 0.5874807291075447 0.9809611133048853 1.626578093558455 + 0.5853622458387867 0.9759204283515219 1.617685250816721 + 0.5830144815260235 0.9716329134010429 1.608982010951094 + 0.5805592523125804 0.9681901338111023 1.602548182951846 + 0.5786248401688148 0.9657196511623256 1.597901887574683 + 0.5766902952064341 0.9632472988374305 1.595754857809802 + 0.5722758182126155 0.9580418560595017 1.585231913483118 + 0.5714001303000208 0.9553994683488636 1.579424138935679 + 0.5698684679456298 0.9536426506219746 1.574967058605203 + 0.5670686006124244 0.9514442279907174 1.569979926710116 + 0.5651600791897197 0.9477119440235392 1.564156143341797 + 0.5641471273355295 0.9462693372499883 1.561282159678986 + 0.5635078232050352 0.9446211033891456 1.553700635592582 + 0.5618109120162713 0.9425241279439072 1.5500066869872 + 0.5601019222614452 0.9402735286780914 1.542595834545481 + 0.5590880881182427 0.9388017373131377 1.539411727379695 + 0.5559124041042036 0.9335061630114285 1.533313164873136 + 0.5556849241054271 0.9320497037385018 1.531129172936444 + 0.5546965189222712 0.9291630729613868 1.528761942470335 + 0.5508926580654634 0.9259393984910242 1.521528525502424 + 0.548524980215932 0.9228186543471988 1.513691994292996 + 0.5400898438198289 0.9105297327479388 1.490452075519239 + 0.5390305972464995 0.9083732852701869 1.485663260880261 + 0.537868932299625 0.9065778510130982 1.48341994964019 + 0.5358870491635481 0.9048247283834425 1.480721761227762 + 0.5352059864206891 0.9035110388228531 1.47567521384571 + 0.5337788506825305 0.9013652348316076 1.473332268485786 + 0.5278795403882905 0.8955339712163343 1.467657620088709 + 0.5265464377010149 0.8937990257394022 1.464147742738131 + 0.5248045352215249 0.8902754964556601 1.459635136517602 + 0.5237106381385432 0.8883371709737068 1.458644167822392 + 0.521324752667915 0.8853738581305133 1.451872151218136 + 0.5148521313107439 0.876199653649365 1.431798230545184 + 0.5132582689913945 0.8746888585149803 1.428338191663806 + 0.5120386468061374 0.8726720621500474 1.427109356808186 + 0.5086414922386515 0.8695576775830576 1.422652363469794 + 0.5073677107158909 0.8687003742003172 1.421150532991131 + 0.5056402932174835 0.8675348790387676 1.418917483533781 + 0.5044540667288314 0.8655369883147708 1.417860009643196 + 0.5013123524822893 0.8612951487904201 1.406914834134954 + 0.5005639192681512 0.8600341614819429 1.405710384821126 + 0.4998863968496992 0.8585528512596865 1.405859988135599 + 0.4976002564840605 0.8542887640960922 1.400430097234439 + 0.496291342792487 0.8521704584543677 1.39697445471081 + 0.4932763501273066 0.849765309763211 1.393378785378653 + 0.4927764883731871 0.8461992052482057 1.388656203801326 + 0.4889211581642567 0.8423691851879345 1.38244314769908 + 0.4881405148274297 0.8405139044100909 1.380345627794437 + 0.4869367101675238 0.8375061120158263 1.377287510122974 + 0.4853073936010422 0.8344059032959634 1.376352796385332 + 0.4836786219458385 0.8331017195069272 1.373241934065325 + 0.4829231721459737 0.8315187313973189 1.372037434799986 + 0.4785245354182077 0.8245740868561851 1.36079973285362 + 0.4776471545920334 0.8225996826698719 1.358146909114185 + 0.4759558473765262 0.8205797556270173 1.355377259630093 + 0.4742877216900054 0.8191035238131579 1.352419846898911 + 0.4723345579633134 0.8140413960223001 1.345940676558921 + 0.470908557923513 0.8065213487676324 1.340387349287918 + 0.4707490052680711 0.8053261286545159 1.338498646874076 + 0.4679429945302978 0.8021716000656268 1.332426424235811 + 0.464556940595294 0.7987398143411391 1.327358746915783 + 0.4632624276303287 0.7958967960582837 1.324206707684072 + 0.4608371891913393 0.7911976618984051 1.312076565164214 + 0.4591936220682923 0.7880657736003767 1.302939400069352 + 0.4585107576541719 0.7873803983049721 1.301755687051159 + 0.4580753150973558 0.786963918476451 1.300712363048122 + 0.4571450429613085 0.7850180549720078 1.295566013129399 + 0.4561785880162505 0.7840228410297481 1.293337154679691 + 0.4554240813292822 0.7831771866660842 1.291166452698802 + 0.4535707263391126 0.7812308298174262 1.290145385348507 + 0.4524682550781263 0.7792001868498757 1.288392866411463 + 0.4504203795753523 0.7765552341423108 1.285391688223629 + 0.4487828410657279 0.7741401089265914 1.281880255523112 + 0.4462119428706452 0.7700245192556078 1.274796272615747 + 0.4449421150498666 0.7678350297273224 1.271737132386534 + 0.4443541171350504 0.7670278265483803 1.269391438452741 + 0.4443773946436356 0.7660250693629029 1.267834717218734 + 0.4442785298925279 0.7647961316191059 1.266821883901328 + 0.4434370244173772 0.7633549808498956 1.266003519750472 + 0.4428420489794632 0.7623374570541868 1.265642598042187 + 0.4415700025727369 0.7601004411067502 1.261860758868611 + 0.4407255453241826 0.7599528437768228 1.260021939106201 + 0.4396431467790122 0.7590300408713845 1.258587530780287 + 0.4392003765387212 0.7578697307208213 1.254320654917959 + 0.4371175927498507 0.7540251408275227 1.246816705791711 + 0.4366197709005196 0.7534061178441924 1.242992711772045 + 0.4364798749968266 0.7525745538587911 1.241062347616098 + 0.4356149765461222 0.7497825560407145 1.238472258655969 + 0.4343735709719603 0.7463433704427257 1.235054133509611 + 0.4332182395071082 0.7455371264779862 1.231995520426188 + 0.4324839204469603 0.7437588813428206 1.227492716540633 + 0.4317597965944786 0.7419379311491794 1.226483802557285 + 0.4312522135633267 0.7417031846899846 1.226439446027271 + 0.4301607248190388 0.7402158123130109 1.223696344923808 + 0.4248176907740573 0.7319672229381244 1.215554477762588 + 0.4236519579765442 0.7300540447826724 1.212986267916347 + 0.4231151241935253 0.7291266249465629 1.211967687736116 + 0.4225847124113891 0.7284694540754126 1.211697707742732 + 0.4212046102633663 0.7255105720577386 1.207736076577157 + 0.4192678204601344 0.7246675692522503 1.204282936462072 + 0.4178005985255955 0.7229547441241373 1.200387901866952 + 0.417404922185865 0.7217442924547148 1.195795355213881 + 0.416914035931544 0.7211764060879382 1.195819560665809 + 0.4155375187124876 0.717439347983676 1.18989021350532 + 0.4150628465094151 0.7163945860577534 1.189893949289912 + 0.4144203546298467 0.7162340652676237 1.189058215179213 + 0.4147541802369822 0.7139212718492574 1.187257441489159 + 0.412640202368238 0.7125664549663946 1.184798374102912 + 0.4100490695270818 0.7094945378546964 1.181862224870634 + 0.4100887867982905 0.7087188774575189 1.181744949954812 + 0.409399648639419 0.7070501224392248 1.179274748968052 + 0.4092932854144893 0.7067116112311524 1.17797279192018 + 0.4083986695740943 0.7060495293366855 1.177351285688825 + 0.4067105062724387 0.704114519004041 1.176430640652887 + 0.4053149964685382 0.7027093178361636 1.173156714999021 + 0.4043925894058338 0.6997433723976523 1.167843136386062 + 0.4021992026391059 0.697213989786503 1.163136014432892 + 0.4016591006387057 0.6968642735350887 1.161704067228015 + 0.401562461640485 0.6968037458737413 1.161177517829926 + 0.4006199162771924 0.696676272170735 1.15997371437582 + 0.4001709919921831 0.6963999163791157 1.159343345114808 + 0.3998777045027807 0.6954582968264009 1.158285586907766 + 0.3993612729737008 0.6946780527954945 1.156129137454285 + 0.3980711137054242 0.6936474095187515 1.153595812576641 + 0.3982246033230323 0.6931023977477631 1.15325688231555 + 0.3978077322561397 0.692226441399278 1.1539479675397 + 0.3977422069353471 0.6919798488767204 1.153651076984351 + 0.3975248622185154 0.6919184584042175 1.152685476123634 + 0.3955771924240767 0.688675248222884 1.144546111583964 + 0.3952463275029308 0.6881516268083696 1.144810300989591 + 0.3948409000972182 0.6867356690602175 1.142270424300832 + 0.3953124901709243 0.684975784484293 1.137727082666208 + 0.3956959337510273 0.6838165459076755 1.135338207293304 + 0.395335575820893 0.6833085453943275 1.135022605806102 + 0.3908535251308822 0.6774380378708647 1.127617687264491 + 0.3909410837770776 0.6771053114765405 1.126897132033749 + 0.390818625081762 0.6752475998116423 1.123043099539143 + 0.3908340584803118 0.6747060018142369 1.124038829179258 + 0.3891938863990624 0.671315712996945 1.120268500390902 + 0.3885637112672401 0.670659271125031 1.118384138426126 + 0.3881677919666124 0.6697611214674297 1.117555758695458 + 0.3870193591571679 0.6682528825708252 1.115877836197759 + 0.3864686347119577 0.6672631720573743 1.115796424335078 + 0.3844775087667284 0.6658127598920947 1.112298318303637 + 0.3841262018028202 0.6642539907401634 1.110335597491853 + 0.3844487750772235 0.6640632027939775 1.109107094016242 + 0.3827311057022806 0.6625439625579754 1.108005438713617 + 0.3820070376081893 0.6610375107606731 1.107292388138961 + 0.3815380166401596 0.6600866682536857 1.104773707108102 + 0.3807039556794133 0.6586501134866112 1.101571661223539 + 0.3800658204085143 0.6566849072117491 1.099565116118815 + 0.3785401599862575 0.6546063009357752 1.096161415382046 + 0.378488654740888 0.6537219062914035 1.095001691553402 + 0.3786528903782123 0.6537500838211441 1.095558132281373 + 0.3784375441333707 0.6534509275415524 1.096718844908182 + 0.3770892267535606 0.6526519486120089 1.09590376318976 + 0.3753125128128669 0.6488557090299862 1.089734809139409 + 0.3748946937507504 0.6465077659805939 1.089719289951864 + 0.3743806663007443 0.6463930505466353 1.088258856750088 + 0.373678791956475 0.6444071076358971 1.087404127429723 + 0.3729750526333776 0.6426256615644522 1.084600355131017 + 0.3724157806421196 0.6417582889506562 1.084554600905 + 0.3720898579332058 0.641275026229601 1.08292017658763 + 0.3720894245474498 0.6408973707159102 1.082574840757748 + 0.3710431990470021 0.6368107793418699 1.080582803789736 + 0.3710548952404018 0.6362233960567476 1.080305216719535 + 0.3706567715505357 0.6350740066343549 1.079869425108221 + 0.3673262136132026 0.6314428299488803 1.072829537880768 + 0.3661251292045146 0.6311248821808104 1.074020150682891 + 0.3648658047843538 0.6294917485325278 1.069293777942382 + 0.3649994475810306 0.6287130435070705 1.067652904821759 + 0.3640087461505007 0.6228091621645018 1.057395208565544 + 0.3632259930202388 0.6204066313028085 1.053627623942071 + 0.3631292274090191 0.6199603246119274 1.053723067883047 + 0.362397050471843 0.6182547052669192 1.053586797860372 + 0.3620785910759626 0.6172667693554995 1.052185870128786 + 0.3613994017382525 0.6159919959838316 1.050749095998035 + 0.3593852739899565 0.6100182486849979 1.046017142396286 + 0.3563432743418656 0.6053315535547872 1.044707898263838 + 0.3551228107216942 0.6036393333272838 1.040262281163716 + 0.3545215200593623 0.6024323883123142 1.039249495842885 + 0.3542317349479215 0.6017402251456063 1.037889804694431 + 0.3518952175238049 0.5987983476897702 1.033674670178221 + 0.3509251295606254 0.5952382611442946 1.033808506826113 + 0.3460396903691815 0.5887086525249887 1.027208570044821 + 0.3445322646367794 0.5867244224989336 1.022856036203536 + 0.3404580614519049 0.5813048959062349 1.012133467525725 + 0.3403116399645015 0.580919717824963 1.012494967538924 + 0.3394547241929039 0.5795799342450934 1.010887886979944 + 0.3388486363939839 0.5785593590794817 1.00753452654586 + 0.338422285935959 0.5773097246574503 1.006411123682234 + 0.3379363264549068 0.5759245612574448 1.0039581779728 + 0.3354437529084151 0.5730571222561611 1.002791860535043 + 0.333946250074192 0.5705058116797117 0.9995602893898163 + 0.3324778334699324 0.5678307139280006 0.9955870195704006 + 0.3316329935288737 0.5664116985205747 0.9944877851720677 + 0.3309580210067001 0.5650353471701551 0.9926131314150306 + 0.3306350524391102 0.5646777539756345 0.9921632033974743 + 0.3287148765138452 0.5610204766353646 0.9872422213449557 + 0.3284732911443047 0.5606251970960923 0.9871077230578801 + 0.326695881173656 0.5579375811176164 0.9822480221203824 + 0.3264574518363272 0.5575770139005585 0.9820036645832604 + 0.3224907453669183 0.5534305363348864 0.9754334338166986 + 0.321939744779779 0.5526689202057877 0.9745059518500516 + 0.3214274944877866 0.5515534017351468 0.9740534423161684 + 0.3159638165239578 0.545665776741584 0.9684639826419574 + 0.3157031231084549 0.5455134709947485 0.9677594022809015 + 0.3152436591551998 0.5450465235363193 0.9668016996233381 + 0.3148966907960408 0.5450001418445395 0.9664337265200689 + 0.313603810549556 0.5432507821111987 0.9628055080441302 + 0.3132482127577849 0.5419610923764239 0.9629142437555094 + 0.3115938642044865 0.538444182412201 0.9577813854542161 + 0.3108303525737802 0.5360226984768822 0.9545177435496297 + 0.310629486999234 0.5358396184530845 0.9542166722291825 + 0.3103525128267027 0.5353775930574833 0.9536531570413256 + 0.3077544542096411 0.5320478476184647 0.9502987761032253 + 0.3057495321447737 0.5282781057350945 0.9468004045179019 + 0.3051518172837512 0.5268643057931106 0.9441810549865396 + 0.303654051699243 0.5243668488867352 0.9428277158142451 + 0.3017187433891372 0.5204919222798878 0.9377623621231692 + 0.2999914247548041 0.5170928026554962 0.9314591877491548 + 0.2998738117913842 0.516033608502362 0.9296549122194935 + 0.2970253788921474 0.512284117973412 0.9244063662200044 + 0.2949816505341575 0.5087617605260164 0.9208939099383628 + 0.2945011324134778 0.5081894539264693 0.920090982360982 + 0.2904774654328582 0.5018499986931197 0.9071736692390338 + 0.2898427540363406 0.5004653231356924 0.9040803513630553 + 0.2862424416292241 0.495459278028448 0.8941728650054761 + 0.284287534870921 0.4921563557329451 0.8888448052307305 + 0.2821046522892387 0.4887754924602734 0.883361744876242 + 0.2802465627606853 0.485211720736491 0.8770593267363026 + 0.278538178224578 0.4825465773444343 0.8725819165938681 + 0.2762061715344545 0.4802063040501313 0.8668989508093567 + 0.2722514902086939 0.4749881430811931 0.8586343653191635 + 0.2716219644223148 0.4735502841063816 0.8562464659362486 + 0.2713757952573477 0.4732398990458191 0.8553508462413958 + 0.2710884892710704 0.4726438151141683 0.8548391751628128 + 0.2690259718255195 0.4695229169269869 0.8518647611159511 + 0.2686372400092958 0.4690556411250815 0.8508721214696454 + 0.2667627037845595 0.4656772703014158 0.8467131010810818 + 0.2631553126114601 0.4592605856612343 0.8307048967995493 + 0.2608303501040111 0.4565018243212109 0.8227454820455432 + 0.2591723517754727 0.4533447415056628 0.8171796347451921 + 0.2568766050387647 0.4496729776428495 0.811020114072679 + 0.2558669666352975 0.4475338968669538 0.8074476688742609 + 0.2548962371020905 0.4444822658510498 0.8025392439768207 + 0.2520122957048284 0.4415535643690921 0.7951205676564944 + 0.2504116102236223 0.4384703548579647 0.7890705453116487 + 0.2489147650806435 0.4359505048533673 0.7834070234842756 + 0.2466689842347674 0.4327066100181849 0.7775060324828571 + 0.2456543201758276 0.4295992172325661 0.7696356114347511 + 0.2414182793848456 0.4213906832148976 0.7550340217768465 + 0.2408298262205542 0.4205383861924217 0.7535033492632222 + 0.2323781381195172 0.4049463104836784 0.7262186404294594 + 0.2285246663531267 0.3988398351097421 0.7164464079713337 + 0.2283066387238414 0.3985059175493846 0.7162335120325218 + 0.2244152413418602 0.3937165576314025 0.706590300742107 + 0.220849499053247 0.3890070372229811 0.6946018480637115 + 0.2190209063105227 0.386208842681069 0.6893737794067717 + 0.2157181837159798 0.3809093360072174 0.6804683778816185 + 0.2144419842404895 0.3789559489600989 0.6782160386068221 + 0.2121649304769752 0.3756410011427954 0.6747286403218031 + 0.2105700290209236 0.3730751912230704 0.6699579498697994 + 0.2059423719869333 0.3655972016862803 0.6575356987812927 + 0.2045929034121997 0.3634706890569879 0.6545184763278944 + 0.2024650356724561 0.3609891965506989 0.6503019217018221 + 0.1989605059632063 0.3563010070337208 0.6409356515053333 + 0.1971949392914402 0.3538186863776232 0.6363507463892472 + 0.1954102376793428 0.3510610961000229 0.6319376451603952 + 0.1937923259775574 0.3486098135450991 0.6282442325752851 + 0.1907942677247498 0.3443717698906602 0.6186418839303252 + 0.1871804400339603 0.3402240874209242 0.611002636306158 + 0.184848118681844 0.3363652077249641 0.6027139011217288 + 0.1844169510585499 0.3357450903074846 0.6009468039553174 + 0.1818470347314569 0.3312992646471651 0.590818422924398 + 0.1791206262676577 0.3271906143623599 0.5833869452369553 + 0.1764658110888669 0.323019319980421 0.5766088599495089 + 0.1720976037336975 0.3168795173138669 0.5665349244921062 + 0.1693899335847118 0.3129186152171803 0.56048513263392 + 0.1682613753460016 0.3110207093788716 0.557732296591003 + 0.1644346158997692 0.305162657541258 0.548494871054497 + 0.163290692968431 0.3033403805669924 0.5450855680193073 + 0.1599785173723458 0.2975727567093527 0.5394919205645232 + 0.1586845786158986 0.2956372722222183 0.538136573251073 + 0.1546801773979968 0.2904274838422028 0.5305288688581123 + 0.1457699068920425 0.2774239666306157 0.5100744551560523 + 0.1426399861631496 0.2727472681448925 0.5047840646795736 + 0.1417393675644046 0.2710357665880898 0.5028363016837131 + 0.1377253970264976 0.2655638736953657 0.4938292922496813 + 0.1368854230642513 0.2643579730406098 0.4921196415754291 + 0.1357240410773413 0.2625896996724912 0.4906564315341115 + 0.1345558008094009 0.2611335270928304 0.4879996335130547 + 0.1262384912326139 0.2490075176408559 0.4722243355409557 + 0.1239872916580645 0.2449392753248641 0.4665318733506076 + 0.1224279527932122 0.2420418818939499 0.463207244455682 + 0.118991600495888 0.2361172250357779 0.453431524293656 + 0.1179100090565159 0.2346947658114108 0.4521213840339449 + 0.1150097149544691 0.2304026254815247 0.4470041251060027 + 0.113361934795479 0.2281680883683862 0.4438634644802883 + 0.1085554991079411 0.2218625387207401 0.4336261789433838 + 0.1080057579207626 0.2208472629805547 0.4308599785205322 + 0.1048915696656245 0.2168594332927274 0.424969540858226 + 0.08595802133865832 0.1885824031848514 0.3874310075043566 + 0.08421630758011329 0.1865808857230728 0.3847828917827194 + 0.08374477316003004 0.1859016430209318 0.3836956275118782 + 0.07919435038501893 0.1794439742893525 0.3748636264900498 + 0.07694692986479643 0.1756253433650087 0.3695477151225088 + 0.07592651266281938 0.1737887427430411 0.3679493511709871 + 0.07071835237906722 0.1654284715601424 0.3572988835268792 + 0.06767134338337338 0.1616101538378398 0.3539113633494149 + 0.0658653055228533 0.1594901236680711 0.351755205195146 + 0.06294247284733875 0.1551543912900627 0.3470275012697289 + 0.06043861786002882 0.1513004060223987 0.3413396680809865 + 0.05609819107237627 0.1450528535057662 0.3354989337224782 + 0.05227337922269128 0.1401112624206844 0.3325358403034011 + 0.05096116304432959 0.1385805198907011 0.3323655284416129 + 0.05084307080388557 0.1382170866752817 0.3321989470839741 + 0.0424668484480567 0.1251468261645505 0.3208173139525312 + 0.03803070838174732 0.1196997855810452 0.3207148384351949 + 0.03753429033217082 0.118837722543698 0.3201837501789481 + + diff --git a/test_gpstuff/run_tests.m b/test_gpstuff/run_tests.m new file mode 100644 index 00000000..1a5d6333 --- /dev/null +++ b/test_gpstuff/run_tests.m @@ -0,0 +1,59 @@ +% Run selected demos, compare results from demos to old results and save +% any error messages. + +demos={'demo_binomial1', ... + 'demo_classific', 'demo_derivativeobs', ... + 'demo_multinom', 'demo_neuralnetcov', ... + 'demo_periodic', 'demo_regression1', 'demo_regression_additive1', ... + 'demo_regression_hier', 'demo_regression_sparse1', 'demo_survival_aft'}; + +invalid_demos={}; +iter=0; +failed=0; +path=strrep(which('run_tests'), 'run_tests.m', ''); +for ii=1:length(demos) + iter=iter+1; + setrandstream(0); + if exist('OCTAVE_VERSION','builtin') + values.real=load([path 'octave/realValues_' strrep(demos{ii}, 'demo_', '')]); + else + values.real=load([path 'matlab/realValues_' strrep(demos{ii}, 'demo_', '')]); + end + field=fieldnames(values.real); + fprintf('\nRunning demo: %s\n\n', demos{ii}); + try + eval(demos{ii}); + for j=1:length(field) + iter=iter+1; + if mean(mean((abs(getfield(values.real, field{j}) - eval(field{j})))./getfield(values.real, field{j})))>1e-2 + failed=failed+1; + invalid_demos(failed).name=demos{ii}; + invalid_demos(failed).paramName=field{j}; + invalid_demos(failed).paramValue_old=getfield(values.real, field{j}); + invalid_demos(failed).paramValue_new=eval(field{j}); + invalid_demos(failed).error='New values dont match with old saved values with relative tolerance of 1e-2.'; + end + end + catch err + % Error while running a demo + iter=iter+length(field); + failed=failed+1; + invalid_demos(failed).name=demos{ii}; + invalid_demos(failed).paramName=''; + invalid_demos(failed).paramValue_old=[]; + invalid_demos(failed).paramValue_new=[]; + % Save error structure to field error. + invalid_demos(failed).error=err; + for j=1:length(field) + failed=failed+1; + invalid_demos(failed).name=demos{ii}; + invalid_demos(failed).paramName=field{j}; + invalid_demos(failed).paramValue_old=getfield(values.real, field{j}); + invalid_demos(failed).paramValue_new=[]; + invalid_demos(failed).error='Error while runnig the demo.'; + end + end + close all; +end +invalid_demos +fprintf('Failed %d of %d tests. Check struct invalid_demos for further details.\n',failed, iter); \ No newline at end of file diff --git a/test_gpstuff/update_test_references.m b/test_gpstuff/update_test_references.m new file mode 100644 index 00000000..c1093c3c --- /dev/null +++ b/test_gpstuff/update_test_references.m @@ -0,0 +1,34 @@ +% Run selected demos, compare results from demos to old results and save +% any error messages. + +demos={'demo_binomial1', ... + 'demo_classific', 'demo_derivativeobs', ... + 'demo_multinom', 'demo_neuralnetcov', ... + 'demo_periodic', 'demo_regression1', 'demo_regression_additive1', ... + 'demo_regression_hier', 'demo_regression_sparse1', 'demo_survival_aft'}; + +iter=0; +failed=0; +path=strrep(which('run_tests'), 'run_tests.m', ''); +for ii=1:length(demos) + iter=iter+1; + setrandstream(0); + if exist('OCTAVE_VERSION','builtin') + values.real=load([path 'octave/realValues_' strrep(demos{ii}, 'demo_', '')]); + else + values.real=load([path 'matlab/realValues_' strrep(demos{ii}, 'demo_', '')]); + end + field=fieldnames(values.real); + fprintf('\nRunning demo: %s\n\n', demos{ii}); + try + eval(demos{ii}); + delete([path 'realValues_' strrep(demos{ii}, 'demo_', '') '.mat']) + for jj=1:length(field) + save('-append', [path 'realValues_' strrep(demos{ii}, 'demo_', '') '.mat'], field{jj}) + end + catch err + fprintf('Failed %s\n s%', demos{ii}, err) + end + close all; +end +fprintf('Results saved to %s.\n', path); diff --git a/tests/Readme.txt b/tests/Readme.txt deleted file mode 100644 index 69ceb3ad..00000000 --- a/tests/Readme.txt +++ /dev/null @@ -1,27 +0,0 @@ -This directory contains unit test for GPstuff. The tests can be run using -the built-in unit test framewoork (Matlab 2013b or greater) or using the -xUnit package by Steve Eddins. - -Test structure in every test is basically the same: Run demo, save values -from demo, compare those saved test values to previously saved "correct" -values. Users can run these tests to determine if some calculations within -demos don't give correct answers. - -Tests are named test_.m (e.g. test_binomial.m is a corresponding -test for demo_binomial1.m) and they can include multiple test cases each. -Individual tests can be run with command "runtests ". -Function runtestset can be used to run all the tests or a predetermined set -of tests. - -When a test is run, the results of the demo are saved into the folder -testValues. The saved components include figures, selected workspace -variables and the log file of the command line output. Folder realValues -contain similar precomputed files for each demo. - -For more information to the MATLAB unit testing framework, see Matlab -documentation. - -For more information to the xUnit Test Framework package, visit -http://www.mathworks.com/matlabcentral/fx_files/22846/11/content/matlab_xunit/doc/xunit_product_page.html - -Real values from revision 990. diff --git a/tests/realValues/binomial1.txt b/tests/realValues/binomial1.txt deleted file mode 100644 index 15e0ee95..00000000 --- a/tests/realValues/binomial1.txt +++ /dev/null @@ -1,7 +0,0 @@ - TolFun reached. Func-count 37. Final f(x)=169.569. Elapsed time 1.02 - - gp hyperparameters: - - -0.7902 -1.0035 - -Demo completed in 0.088 minutes diff --git a/tests/realValues/binomial1_fig1.fig b/tests/realValues/binomial1_fig1.fig deleted file mode 100644 index 65e70317..00000000 Binary files a/tests/realValues/binomial1_fig1.fig and /dev/null differ diff --git a/tests/realValues/binomial1_fig2.fig b/tests/realValues/binomial1_fig2.fig deleted file mode 100644 index 4e4facf7..00000000 Binary files a/tests/realValues/binomial1_fig2.fig and /dev/null differ diff --git a/tests/realValues/binomial1_fig3.fig b/tests/realValues/binomial1_fig3.fig deleted file mode 100644 index 33e82424..00000000 Binary files a/tests/realValues/binomial1_fig3.fig and /dev/null differ diff --git a/tests/realValues/binomial2.mat b/tests/realValues/binomial2.mat deleted file mode 100644 index d8cf88bb..00000000 Binary files a/tests/realValues/binomial2.mat and /dev/null differ diff --git a/tests/realValues/binomial2.txt b/tests/realValues/binomial2.txt deleted file mode 100644 index ae204201..00000000 --- a/tests/realValues/binomial2.txt +++ /dev/null @@ -1,19 +0,0 @@ -Laplace+grid approximation IA-grid: finding the mode - IA-grid: computing Hessian using multiplication - IA-grid: evaluating density in a grid - IA-grid: evaluated density at 30 points -Elapsed time 2s -EP+grid approximation IA-grid: finding the mode - IA-grid: computing Hessian using multiplication - IA-grid: evaluating density in a grid - IA-grid: evaluated density at 30 points - Elapsed time 1.03 seconds - IA-grid: Total elapsed time 1.23 seconds -Elapsed time 5s -MCMC approximation Elapsed time 194s - - gp hyperparameters: - - 4.3811 2.3256 - -Demo completed in 3.367 minutes diff --git a/tests/realValues/binomial2_fig1.fig b/tests/realValues/binomial2_fig1.fig deleted file mode 100644 index 0e394f63..00000000 Binary files a/tests/realValues/binomial2_fig1.fig and /dev/null differ diff --git a/tests/realValues/binomial_apc.mat b/tests/realValues/binomial_apc.mat deleted file mode 100644 index 51042db6..00000000 Binary files a/tests/realValues/binomial_apc.mat and /dev/null differ diff --git a/tests/realValues/binomial_apc.txt b/tests/realValues/binomial_apc.txt deleted file mode 100644 index 42f51b54..00000000 --- a/tests/realValues/binomial_apc.txt +++ /dev/null @@ -1,59 +0,0 @@ - Iteration Func-count Grad-count f(x) Step-size - 0 1 1 1958.28 - 1 2 2 1911.95 0.00221514 - 2 6 6 1877.23 0.001 - 3 9 9 1847 0.01 - 4 12 12 1845.58 0.0163264 - 5 14 14 1787.72 0.5 - 6 18 18 1781.43 0.00238076 - 7 22 22 1771.39 0.0225751 - 8 23 23 1730.37 1 - 9 24 24 1723.09 1 - 10 25 25 1720.62 1 - 11 26 26 1720.31 1 - 12 27 27 1719.5 1 - 13 28 28 1719.15 1 - 14 29 29 1718.86 1 - 15 30 30 1718.68 1 - 16 31 31 1718.47 1 - 17 32 32 1718.41 1 - 18 33 33 1718.28 1 - 19 34 34 1718.15 1 - 20 35 35 1717.93 1 - 21 36 36 1717.68 1 - 22 37 37 1717.1 1 - 23 38 38 1716.73 1 - 24 40 40 1716.48 0.1 - 25 42 42 1716.22 0.1 - 26 44 44 1715.82 0.357093 - 27 45 45 1715.53 1 - 28 46 46 1715.25 1 - 29 47 47 1715 1 - 30 48 48 1714.92 1 - 31 49 49 1714.84 1 - 32 51 51 1714.71 0.230448 - 33 53 53 1714.63 0.1 - 34 54 54 1714.5 1 - 35 59 59 1713.39 0.344853 - 36 62 62 1713.36 0.0398992 - 37 64 64 1713 0.465217 - 38 65 65 1712.46 1 - 39 66 66 1711.82 1 - 40 67 67 1711.67 1 - 41 68 68 1711.67 1 - 42 69 69 1711.67 1 - 43 70 70 1711.67 1 - Optimizer Results - Algorithm Used: Broyden-Fletcher-Goldfarb-Shanno (BFGS) - Exit message : Change in x was smaller than the specified tolerance TolX. - Iterations : 44 - Function Count : 71 - Minimum found : 1711.6691 - Intern Time : 0.22471 seconds - Total Time : 8.3825 seconds - - gp hyperparameters: - - 0.7965 2.4325 -1.1382 1.1745 -3.6053 1.8489 -0.1535 1.9498 1.9306 - -Demo completed in 0.217 minutes diff --git a/tests/realValues/binomial_apc_fig1.fig b/tests/realValues/binomial_apc_fig1.fig deleted file mode 100644 index a5345e8c..00000000 Binary files a/tests/realValues/binomial_apc_fig1.fig and /dev/null differ diff --git a/tests/realValues/binomial_apc_fig2.fig b/tests/realValues/binomial_apc_fig2.fig deleted file mode 100644 index 42462601..00000000 Binary files a/tests/realValues/binomial_apc_fig2.fig and /dev/null differ diff --git a/tests/realValues/classific.txt b/tests/realValues/classific.txt deleted file mode 100644 index 33ecb53b..00000000 --- a/tests/realValues/classific.txt +++ /dev/null @@ -1,28 +0,0 @@ -Probit model with Laplace integration over the latent values and -MAP estimate for the parameters - TolFun reached. Func-count 27. Final f(x)=81.5289. Elapsed time 1.10 -Probit model with EP integration over the latent values and -MAP estimate for the parameters - TolFun reached. Func-count 7. Final f(x)=81.748. Elapsed time 0.30 -Probit model with MCMC integration over the latent values and -the parameters - Using SSLS sampler for hyperparameters and ESLS for latent values - cycle etr lslsn - 20 -943.088 2.0e+00 - 40 -933.602 7.0e+00 - 60 -975.302 7.0e+00 - 80 -978.888 6.0e+00 - 100 -1009.051 1.1e+01 - 120 -1048.534 7.0e+00 - 140 -1027.652 6.0e+00 - 160 -1001.384 6.0e+00 - 180 -1016.275 2.0e+00 - 200 -1090.211 4.0e+00 - 220 -1088.827 0.0e+00 -Compare MCMC, Laplace and EP results for two latent variables - - gp hyperparameters: - - 3.2607 -0.7237 0.0613 - -Demo completed in 0.966 minutes diff --git a/tests/realValues/classific_fig1.fig b/tests/realValues/classific_fig1.fig deleted file mode 100644 index ea435fbe..00000000 Binary files a/tests/realValues/classific_fig1.fig and /dev/null differ diff --git a/tests/realValues/classific_fig2.fig b/tests/realValues/classific_fig2.fig deleted file mode 100644 index 0bbbfe99..00000000 Binary files a/tests/realValues/classific_fig2.fig and /dev/null differ diff --git a/tests/realValues/classific_fig3.fig b/tests/realValues/classific_fig3.fig deleted file mode 100644 index a31c543a..00000000 Binary files a/tests/realValues/classific_fig3.fig and /dev/null differ diff --git a/tests/realValues/classific_fig4.fig b/tests/realValues/classific_fig4.fig deleted file mode 100644 index b79c3b69..00000000 Binary files a/tests/realValues/classific_fig4.fig and /dev/null differ diff --git a/tests/realValues/classific_fig5.fig b/tests/realValues/classific_fig5.fig deleted file mode 100644 index faaeadea..00000000 Binary files a/tests/realValues/classific_fig5.fig and /dev/null differ diff --git a/tests/realValues/classific_fig6.fig b/tests/realValues/classific_fig6.fig deleted file mode 100644 index 0fc74f1e..00000000 Binary files a/tests/realValues/classific_fig6.fig and /dev/null differ diff --git a/tests/realValues/classific_fig7.fig b/tests/realValues/classific_fig7.fig deleted file mode 100644 index 756036e4..00000000 Binary files a/tests/realValues/classific_fig7.fig and /dev/null differ diff --git a/tests/realValues/derivativeobs.txt b/tests/realValues/derivativeobs.txt deleted file mode 100644 index ea980cbf..00000000 --- a/tests/realValues/derivativeobs.txt +++ /dev/null @@ -1,25 +0,0 @@ -GP model without derivative obs -Checking gradient ... - - analytic diffs delta - - 2.2001 2.2001 0.0000 - -1.0624 -1.0624 -0.0000 - - TolFun reached. Func-count 17. Final f(x)=5.67863. Elapsed time 0.12 -GP model with derivative obs -Checking gradient ... - - analytic diffs delta - - 3.6684 3.6684 0.0000 - -10.3567 -10.3567 -0.0000 - 1.1596 1.1596 0.0000 - - TolX reached. Func-count 19. Final f(x)=3.15085. Elapsed time 0.17 - - gp hyperparameters: - - -1.6957 -0.3805 -4.1351 - -Demo completed in 0.012 minutes diff --git a/tests/realValues/derivativeobs_fig1.fig b/tests/realValues/derivativeobs_fig1.fig deleted file mode 100644 index 28c9b7ff..00000000 Binary files a/tests/realValues/derivativeobs_fig1.fig and /dev/null differ diff --git a/tests/realValues/epinf.mat b/tests/realValues/epinf.mat deleted file mode 100644 index 0ba33a00..00000000 Binary files a/tests/realValues/epinf.mat and /dev/null differ diff --git a/tests/realValues/epinf.txt b/tests/realValues/epinf.txt deleted file mode 100644 index 5e67d3d8..00000000 --- a/tests/realValues/epinf.txt +++ /dev/null @@ -1,35 +0,0 @@ -Optimise the input-dependent model - Iteration Func-count f(x) Lambda - 0 1 783.75 - 1 3 783.714 10 - 2 5 783.705 5 - 3 7 783.705 2.5 - 4 8 783.705 10 - 5 10 783.703 10 - 6 12 783.703 5 - 7 13 783.703 20 - TolFun reached. Func-count 13. Final f(x)=783.703. Elapsed time 4600.79 -mlpd input-dependent: -0.99 -Optimise the normal gaussian model - Iteration Func-count f(x) Lambda - 0 1 2984.2 - 1 3 1408.89 10 - 2 5 937.085 5 - 3 7 837.594 2.5 - 4 9 828.249 1.25 - 5 11 827.869 0.625 - 6 13 827.834 0.312 - 7 15 827.818 0.156 - 8 17 827.811 0.0781 - 9 19 827.796 0.0391 - 10 21 827.795 0.0195 - 11 23 827.795 0.00977 - 12 25 827.795 0.00488 - TolFun reached. Func-count 25. Final f(x)=827.795. Elapsed time 1.47 -mlpd gaussian: -1.12 - - gp hyperparameters: - - 0.1823 -2.4816 -0.3657 -1.3494 1.0286 -0.2708 - -Demo completed in 76.727 minutes diff --git a/tests/realValues/epinf_fig1.fig b/tests/realValues/epinf_fig1.fig deleted file mode 100644 index 3aab0be0..00000000 Binary files a/tests/realValues/epinf_fig1.fig and /dev/null differ diff --git a/tests/realValues/epinf_fig2.fig b/tests/realValues/epinf_fig2.fig deleted file mode 100644 index fa5e25b8..00000000 Binary files a/tests/realValues/epinf_fig2.fig and /dev/null differ diff --git a/tests/realValues/hierprior.mat b/tests/realValues/hierprior.mat deleted file mode 100644 index 57d117f5..00000000 Binary files a/tests/realValues/hierprior.mat and /dev/null differ diff --git a/tests/realValues/hierprior.txt b/tests/realValues/hierprior.txt deleted file mode 100644 index 9be1279f..00000000 --- a/tests/realValues/hierprior.txt +++ /dev/null @@ -1,583 +0,0 @@ - -w = - - -2.3026 0 0 0 2.3026 0 -2.3026 0 - - -s = - - 'log(sexp.magnSigma2)' - 'prior-t.mu' - 'log(sexp.lengthScale)' - 'prior-t.mu' - 'log(linear.coeffSigma2)' - 'prior-t.mu' - 'log(gaussian.sigma2)' - 't.mu' - - Iteration Func-count f(x) Lambda - 0 1 77.436 - 1 3 62.2251 10 - 2 5 48.7816 5 - 3 7 44.4582 2.5 - 4 9 40.3733 1.25 - 5 11 37.7161 0.625 - 6 13 37.1274 0.312 - 7 15 36.8407 0.156 - 8 17 36.6905 0.0781 - 9 19 36.5944 0.0391 - 10 21 36.4577 0.0195 - 11 23 36.4165 0.00977 - 12 25 36.4114 0.00488 - 13 27 36.4061 0.00244 - 14 29 36.3983 0.00122 - 15 31 36.3891 0.00061 - 16 33 36.3852 0.000305 - 17 35 36.3845 0.000153 - 18 37 36.3834 7.63e-05 - 19 39 36.3833 3.81e-05 - Iteration Func-count f(x) Lambda - 20 41 36.3832 1.91e-05 - 21 43 36.3832 9.54e-06 - 22 45 36.3832 4.77e-06 - 23 47 36.3832 2.38e-06 - TolFun reached. Func-count 47. Final f(x)=36.3832. Elapsed time 0.69 -Checking gradient ... - - analytic diffs delta - - -0.0026 -0.0026 0.0000 - 0.0016 0.0016 -0.0000 - -0.0004 -0.0004 -0.0000 - -0.0017 -0.0017 -0.0000 - 0.0000 0.0000 0.0000 - -0.0008 -0.0008 0.0000 - -0.0041 -0.0041 -0.0000 - 0.0000 0.0000 0.0000 - - Iteration Func-count f(x) Lambda - 0 1 93.314 - 1 3 77.6036 10 - 2 5 59.7768 5 - 3 7 49.7327 2.5 - 4 9 45.2948 1.25 - 5 11 42.1805 1.25 - 6 13 39.769 0.625 - 7 15 39.1496 0.312 - 8 17 38.1454 0.156 - 9 19 36.954 0.0781 - 10 21 36.4547 0.0391 - 11 23 36.1068 0.0391 - 12 25 35.9828 0.0195 - 13 27 35.9296 0.00977 - 14 29 35.8335 0.00488 - 15 31 35.7956 0.00244 - 16 33 35.7757 0.00122 - 17 35 35.7302 0.00061 - 18 37 35.7072 0.000305 - 19 39 35.6887 0.000153 - Iteration Func-count f(x) Lambda - 20 41 35.6841 7.63e-05 - 21 43 35.6691 3.81e-05 - 22 45 35.6528 1.91e-05 - 23 47 35.6523 9.54e-06 - 24 49 35.6498 4.77e-06 - 25 51 35.6483 2.38e-06 - 26 53 35.648 1.19e-06 - 27 55 35.6464 5.96e-07 - 28 57 35.6462 2.98e-07 - 29 59 35.6458 1.49e-07 - 30 61 35.6438 7.45e-08 - 31 63 35.6435 3.73e-08 - 32 65 35.6415 1.86e-08 - 33 67 35.6415 9.31e-09 - 34 68 35.6415 3.73e-08 - 35 69 35.6415 1.49e-07 - 36 70 35.6415 5.96e-07 - 37 71 35.6415 2.38e-06 - 38 72 35.6415 9.54e-06 - 39 73 35.6415 3.81e-05 - Iteration Func-count f(x) Lambda - 40 74 35.6415 0.000153 - 41 75 35.6415 0.00061 - 42 76 35.6415 0.00244 - 43 77 35.6415 0.00977 - 44 78 35.6415 0.0391 - 45 79 35.6251 0.156 - 46 81 35.625 0.0781 - 47 83 35.625 0.585 - 48 84 35.6038 2.34 - 49 86 35.6038 6.33 - 50 87 35.5681 25.3 - 51 89 34.811 27.7 - 52 91 34.3255 13.9 - 53 93 34.3255 6.93 - 54 94 33.3519 27.7 - 55 96 33.1555 13.9 - 56 98 33.0861 6.93 - 57 100 33.0672 3.46 - 58 102 33.0522 1.73 - 59 104 33.0429 0.866 - Iteration Func-count f(x) Lambda - 60 106 33.0282 0.433 - 61 108 33.0108 0.216 - 62 110 32.9964 0.108 - 63 112 32.9924 0.0541 - 64 114 32.9841 0.0271 - 65 116 32.9807 0.0135 - 66 118 32.9761 0.00676 - 67 120 32.9761 0.00676 - 68 122 32.9719 0.00338 - 69 124 32.9706 0.00169 - 70 126 32.9681 0.000845 - 71 128 32.9674 0.000423 - 72 130 32.9629 0.000211 - 73 132 32.9624 0.000106 - 74 134 32.9599 5.28e-05 - 75 136 32.9577 2.64e-05 - 76 138 32.957 1.32e-05 - 77 140 32.9562 6.6e-06 - 78 142 32.9552 3.3e-06 - 79 144 32.955 1.65e-06 - Iteration Func-count f(x) Lambda - 80 146 32.9537 8.26e-07 - 81 148 32.953 4.13e-07 - 82 150 32.9511 2.06e-07 - 83 152 32.9509 1.03e-07 - 84 154 32.9499 5.16e-08 - 85 156 32.9497 2.58e-08 - 86 158 32.9496 1.29e-08 - 87 160 32.9493 6.45e-09 - 88 162 32.9491 3.23e-09 - 89 164 32.949 1.61e-09 - 90 166 32.9489 8.06e-10 - 91 168 32.9489 4.03e-10 - 92 170 32.9489 2.02e-10 - 93 172 32.9489 1.01e-10 - 94 174 32.9488 5.04e-11 - 95 176 32.9488 2.52e-11 - TolFun reached. Func-count 176. Final f(x)=32.9488. Elapsed time 2.98 -Checking gradient ... - - analytic diffs delta - - 0.0043 -0.0574 0.0618 - -0.0006 -0.0006 0.0000 - -0.0335 0.0518 -0.0852 - 0.0001 0.0001 0.0000 - 0.0017 0.0794 -0.0777 - -0.0002 -0.0002 -0.0000 - 0.0056 -0.1566 0.1622 - -0.0000 -0.0000 0.0000 - 0.0107 -0.0431 0.0538 - -0.0083 -0.1051 0.0968 - -0.0046 -0.0231 0.0185 - 0.0004 -0.0933 0.0937 - 0.0004 -0.2254 0.2258 - 0.0007 -0.0042 0.0049 - -0.0025 -0.0359 0.0334 - -0.0016 0.0204 -0.0220 - -0.0011 -0.0367 0.0356 - -0.0004 0.0602 -0.0606 - -0.0066 -0.0066 -0.0000 - - Iteration Func-count f(x) Lambda - 0 1 93.397 - 1 3 78.2287 10 - 2 5 64.8018 5 - 3 7 58.5794 2.5 - 4 9 54.6623 1.25 - 5 11 54.6623 0.625 - 6 12 54.6623 2.5 - 7 13 51.3705 10 - 8 15 50.8605 5 - 9 17 50.6164 2.5 - 10 19 49.1723 1.25 - 11 21 48.5081 0.625 - 12 23 48.0247 0.312 - 13 25 47.655 0.156 - 14 27 47.5183 0.0781 - 15 29 47.4572 0.0391 - 16 31 47.4044 0.0195 - 17 33 47.3788 0.00977 - 18 35 47.3314 0.00488 - 19 37 47.3164 0.00244 - Iteration Func-count f(x) Lambda - 20 39 47.3093 0.00122 - 21 41 47.2816 0.00061 - 22 43 47.2798 0.000305 - 23 45 47.2714 0.000153 - 24 47 47.2677 7.63e-05 - 25 49 47.2643 3.81e-05 - 26 51 47.2429 1.91e-05 - 27 53 47.2368 9.54e-06 - 28 55 47.234 4.77e-06 - 29 57 47.2163 2.38e-06 - 30 59 47.1508 1.19e-06 - 31 61 47.1295 5.96e-07 - 32 63 47.1024 2.98e-07 - 33 65 47.0685 1.49e-07 - 34 67 47.0551 1.49e-07 - 35 69 47.0229 7.45e-08 - 36 71 46.9535 3.73e-08 - 37 73 46.9347 1.86e-08 - 38 75 46.928 9.31e-09 - 39 77 46.9252 4.66e-09 - Iteration Func-count f(x) Lambda - 40 79 46.9227 2.33e-09 - 41 81 46.9215 1.16e-09 - 42 83 46.9183 5.82e-10 - 43 85 46.9147 2.91e-10 - 44 87 46.9146 1.46e-10 - 45 89 46.9137 7.28e-11 - 46 91 46.9135 3.64e-11 - 47 93 46.9134 1.82e-11 - 48 95 46.9128 9.09e-12 - 49 97 46.9125 4.55e-12 - 50 99 46.9122 2.27e-12 - 51 101 46.912 1.14e-12 - 52 103 46.912 5.68e-13 - 53 105 46.9119 2.84e-13 - 54 107 46.9118 1.42e-13 - 55 109 46.9118 7.11e-14 - 56 111 46.9118 3.55e-14 - 57 113 46.9118 1.78e-14 - TolFun reached. Func-count 113. Final f(x)=46.9118. Elapsed time 1.90 -Checking gradient ... - - analytic diffs delta - - -0.0039 0.0072 -0.0111 - 0.0021 0.0021 -0.0000 - 0.0331 -0.0090 0.0422 - 0.0000 0.0000 0.0000 - 0.0004 -0.0009 0.0013 - 0.0017 0.0017 -0.0000 - -0.0006 -0.0281 0.0275 - -0.0000 -0.0000 0.0000 - -0.0003 -0.0018 0.0015 - -0.0003 -0.0027 0.0024 - -0.0000 0.0150 -0.0150 - -0.0005 -0.0006 0.0000 - -0.0020 -0.0929 0.0909 - -0.0022 -0.0135 0.0114 - 0.0006 0.0001 0.0005 - -0.0002 -0.0004 0.0002 - 0.0009 0.0019 -0.0009 - 0.0017 0.0017 -0.0000 - -0.0012 -0.0012 -0.0000 - - Iteration Func-count f(x) Lambda - 0 1 93.377 - 1 3 77.902 10 - 2 5 63.145 5 - 3 7 56.938 2.5 - 4 9 51.3383 1.25 - 5 11 46.6458 0.625 - 6 13 46.6458 0.312 - 7 14 46.6458 1.25 - 8 15 46.3136 5 - 9 17 46.2949 20 - 10 19 44.5981 10 - 11 21 43.7977 5 - 12 23 43.6585 2.5 - 13 25 43.6585 1.25 - 14 26 42.84 5 - 15 28 42.5202 2.5 - 16 30 42.4726 1.25 - 17 32 42.1871 0.625 - 18 34 42.122 0.312 - 19 36 42.0868 0.156 - Iteration Func-count f(x) Lambda - 20 38 42.032 0.0781 - 21 40 41.9998 0.0391 - 22 42 41.9998 0.0195 - 23 43 41.9998 0.0781 - 24 44 41.9998 0.312 - 25 45 41.9587 1.25 - 26 47 41.9085 1.25 - 27 49 41.8434 0.625 - 28 51 41.8262 0.312 - 29 53 41.8022 0.156 - 30 55 41.7995 0.0781 - 31 57 41.7975 0.0391 - 32 59 41.7927 0.0195 - 33 61 41.7902 0.00977 - 34 63 41.7869 0.00488 - 35 65 41.7859 0.00244 - 36 67 41.7832 0.00122 - 37 69 41.782 0.00061 - 38 71 41.7807 0.000305 - 39 73 41.7801 0.000153 - Iteration Func-count f(x) Lambda - 40 75 41.7792 7.63e-05 - 41 77 41.7781 3.81e-05 - 42 79 41.7777 1.91e-05 - 43 81 41.7774 9.54e-06 - 44 83 41.7773 4.77e-06 - 45 85 41.7772 2.38e-06 - 46 87 41.7768 1.19e-06 - 47 89 41.7761 5.96e-07 - 48 91 41.7761 2.98e-07 - 49 93 41.7759 1.49e-07 - 50 95 41.7759 7.45e-08 - 51 97 41.7758 3.73e-08 - TolFun reached. Func-count 97. Final f(x)=41.7758. Elapsed time 1.54 -Checking gradient ... - - analytic diffs delta - - -0.0071 -0.1225 0.1154 - -0.0033 -0.0033 -0.0000 - -0.0477 -0.0638 0.0160 - 0.0011 0.0011 -0.0000 - -0.0017 0.0868 -0.0885 - -0.0039 -0.0039 -0.0000 - -0.0100 -0.1310 0.1210 - 0.0000 0.0000 -0.0000 - 0.0032 0.0482 -0.0450 - 0.0067 0.0217 -0.0150 - 0.0023 -0.0444 0.0468 - 0.0022 0.0070 -0.0048 - 0.0027 0.0358 -0.0331 - 0.0027 0.0486 -0.0459 - -0.0008 -0.0135 0.0126 - -0.0017 -0.0038 0.0021 - 0.0004 -0.0042 0.0046 - 0.0015 0.0102 -0.0087 - 0.0028 0.0028 -0.0000 - -Laplace - -Full GP: - -Checking gradient ... - - analytic diffs delta - - -2.2030 -2.2030 0.0000 - 4.2467 4.2467 0.0000 - -13.4153 -13.4153 -0.0000 - -FIC: - -Checking gradient ... - - analytic diffs delta - - -1.0235 -1.0180 -0.0055 - 4.2467 4.2467 0.0000 - -12.9344 -12.9344 -0.0000 - 0.3752 0.3752 -0.0000 - 0.0957 0.0957 -0.0000 - 0.7028 0.7028 0.0000 - 0.2347 0.2251 0.0096 - 0.3373 0.3465 -0.0092 - 0.1788 0.1788 -0.0000 - 0.3103 0.3083 0.0020 - 0.1460 0.1441 0.0019 - 0.1498 0.1498 0.0000 - 0.2502 0.2501 0.0001 - 0.0953 0.0953 0.0000 - 0.1337 0.1337 0.0000 - 0.3556 0.3556 0.0001 - 0.2201 0.2215 -0.0015 - 0.0271 0.0271 -0.0000 - 0.1324 0.1317 0.0007 - 0.1099 0.1109 -0.0010 - -0.0019 -0.0019 0.0000 - 0.1841 0.1841 -0.0000 - 0.0958 0.0958 -0.0000 - -0.0179 -0.0179 -0.0000 - 0.1801 0.1801 -0.0000 - 0.0825 0.0825 0.0000 - -0.0277 -0.0277 -0.0000 - -PIC: - -Checking gradient ... - - analytic diffs delta - - -2.4573 -2.4562 -0.0011 - 4.2467 4.2467 -0.0000 - -13.5125 -13.5125 -0.0000 - 0.3753 0.3753 0.0000 - 0.0958 0.0958 -0.0000 - 0.7028 0.7028 0.0000 - 0.3135 0.3095 0.0039 - 0.1868 0.1907 -0.0039 - 0.1788 0.1788 0.0000 - 0.2314 0.2299 0.0015 - 0.0945 0.0930 0.0015 - 0.1498 0.1498 -0.0000 - 0.2515 0.2514 0.0000 - 0.0963 0.0963 0.0000 - 0.1337 0.1337 0.0000 - 0.2581 0.2574 0.0007 - 0.1981 0.2001 -0.0020 - 0.0271 0.0271 -0.0000 - 0.1377 0.1372 0.0005 - 0.1372 0.1381 -0.0009 - -0.0019 -0.0019 -0.0000 - 0.1852 0.1852 -0.0000 - 0.0952 0.0952 -0.0000 - -0.0179 -0.0179 -0.0000 - 0.1800 0.1800 -0.0000 - 0.0824 0.0824 0.0000 - -0.0277 -0.0277 -0.0000 - -CS+FIC: - -Checking gradient ... - - analytic diffs delta - - -0.1610 -0.1610 -0.0000 - 3.3462 3.3462 -0.0000 - -13.6002 -13.6002 -0.0000 - 0.3752 0.3752 0.0000 - 0.0957 0.0957 -0.0000 - 0.7028 0.7028 0.0000 - 0.2911 0.2890 0.0021 - 0.2082 0.2115 -0.0033 - 0.1788 0.1788 -0.0000 - 0.2977 0.2960 0.0017 - 0.1296 0.1273 0.0023 - 0.1498 0.1498 0.0000 - 0.2506 0.2505 0.0001 - 0.0956 0.0956 0.0000 - 0.1337 0.1337 0.0000 - 0.2405 0.2394 0.0011 - 0.1809 0.1820 -0.0010 - 0.0271 0.0271 -0.0000 - 0.1458 0.1449 0.0009 - 0.1182 0.1195 -0.0014 - -0.0019 -0.0019 0.0000 - 0.1823 0.1823 -0.0000 - 0.0959 0.0959 -0.0000 - -0.0179 -0.0179 -0.0000 - 0.1801 0.1801 -0.0000 - 0.0825 0.0825 0.0000 - -0.0277 -0.0277 -0.0000 - -EP - -Full GP: - -Checking gradient ... - - analytic diffs delta - - -2.1972 -2.1972 0.0000 - 4.2467 4.2467 0.0000 - -13.4149 -13.4149 -0.0000 - -FIC: - -Checking gradient ... - - analytic diffs delta - - -1.0170 -1.0169 -0.0000 - 4.2467 4.2467 0.0000 - -12.9336 -12.9336 -0.0000 - 0.3752 0.3752 0.0000 - 0.0957 0.0957 0.0000 - 0.7028 0.7028 0.0000 - 0.2254 0.2254 0.0000 - 0.3465 0.3465 -0.0000 - 0.1788 0.1788 -0.0000 - 0.3083 0.3083 -0.0000 - 0.1441 0.1441 -0.0000 - 0.1498 0.1498 0.0000 - 0.2501 0.2501 0.0000 - 0.0953 0.0953 0.0000 - 0.1337 0.1337 0.0000 - 0.3548 0.3549 -0.0000 - 0.2221 0.2221 -0.0000 - 0.0271 0.0271 -0.0000 - 0.1317 0.1317 0.0000 - 0.1109 0.1109 0.0000 - -0.0019 -0.0019 0.0000 - 0.1841 0.1841 -0.0000 - 0.0958 0.0958 -0.0000 - -0.0179 -0.0179 -0.0000 - 0.1801 0.1801 0.0000 - 0.0825 0.0825 -0.0000 - -0.0277 -0.0277 -0.0000 - -PIC: - -Checking gradient ... - - analytic diffs delta - - -2.4510 -2.4510 0.0000 - 4.2467 4.2467 -0.0000 - -13.5119 -13.5119 0.0000 - 0.3753 0.3753 -0.0000 - 0.0958 0.0958 -0.0000 - 0.7028 0.7028 0.0000 - 0.3096 0.3096 -0.0000 - 0.1907 0.1907 -0.0000 - 0.1788 0.1788 0.0000 - 0.2299 0.2299 0.0000 - 0.0930 0.0930 0.0000 - 0.1498 0.1498 -0.0000 - 0.2514 0.2514 0.0000 - 0.0963 0.0963 -0.0000 - 0.1337 0.1337 0.0000 - 0.2574 0.2574 -0.0000 - 0.2002 0.2002 -0.0000 - 0.0271 0.0271 -0.0000 - 0.1372 0.1372 0.0000 - 0.1381 0.1381 -0.0000 - -0.0019 -0.0019 -0.0000 - 0.1852 0.1852 -0.0000 - 0.0952 0.0952 0.0000 - -0.0179 -0.0179 -0.0000 - 0.1800 0.1800 -0.0000 - 0.0824 0.0824 -0.0000 - -0.0277 -0.0277 -0.0000 - -CS+FIC: - -Checking gradient ... - - analytic diffs delta - - -0.1264 -0.1264 -0.0000 - 3.3462 3.3462 -0.0000 - -13.5887 -13.5887 -0.0000 - 0.3752 0.3752 0.0000 - 0.0957 0.0957 -0.0000 - 0.7028 0.7028 0.0000 - 0.2893 0.2893 -0.0000 - 0.2115 0.2115 -0.0000 - 0.1788 0.1788 0.0000 - 0.2960 0.2960 -0.0000 - 0.1273 0.1273 -0.0000 - 0.1498 0.1498 -0.0000 - 0.2505 0.2505 0.0000 - 0.0956 0.0956 0.0000 - 0.1337 0.1337 0.0000 - 0.2395 0.2395 -0.0000 - 0.1822 0.1822 -0.0000 - 0.0271 0.0271 -0.0000 - 0.1449 0.1449 0.0000 - 0.1195 0.1195 -0.0000 - -0.0019 -0.0019 -0.0000 - 0.1823 0.1823 -0.0000 - 0.0959 0.0959 -0.0000 - -0.0179 -0.0179 -0.0000 - 0.1801 0.1801 -0.0000 - 0.0825 0.0825 0.0000 - -0.0277 -0.0277 -0.0000 - - - gp hyperparameters: - - 0 2.3026 2.3026 - -Demo completed in 2.753 minutes diff --git a/tests/realValues/hierprior_fig1.fig b/tests/realValues/hierprior_fig1.fig deleted file mode 100644 index 87fcdc82..00000000 Binary files a/tests/realValues/hierprior_fig1.fig and /dev/null differ diff --git a/tests/realValues/hurdle.mat b/tests/realValues/hurdle.mat deleted file mode 100644 index 433e0ea8..00000000 Binary files a/tests/realValues/hurdle.mat and /dev/null differ diff --git a/tests/realValues/hurdle.txt b/tests/realValues/hurdle.txt deleted file mode 100644 index 4fa486e4..00000000 --- a/tests/realValues/hurdle.txt +++ /dev/null @@ -1,37 +0,0 @@ - Iteration Func-count Grad-count f(x) Step-size - 0 1 1 308.325 - 1 2 2 250.194 0.0270693 - 2 4 4 217.36 0.343244 - 3 5 5 213.499 1 - 4 6 6 212.393 1 - 5 7 7 208.388 1 - 6 9 9 207.639 0.1 - 7 12 12 207.121 0.199533 - 8 13 13 207.077 1 - 9 14 14 207.056 1 - Optimizer Results - Algorithm Used: Broyden-Fletcher-Goldfarb-Shanno (BFGS) - Exit message : Change in the objective function value was less than TolFun. - Iterations : 10 - Function Count : 15 - Minimum found : 207.0551 - Intern Time : 0.012945 seconds - Total Time : 21.6357 seconds - Iteration Func-count Grad-count f(x) Step-size - 0 1 1 2750.29 - 1 2 2 2642.11 0.00651754 - 2 4 4 2634.45 0.1 - 3 5 5 2604.95 1 - 4 7 7 2603.24 0.426833 - 5 8 8 2602.72 1 - 6 9 9 2602.69 1 - 7 10 10 2602.69 1 - Optimizer Results - Algorithm Used: Broyden-Fletcher-Goldfarb-Shanno (BFGS) - Exit message : Change in x was smaller than the specified tolerance TolX. - Iterations : 8 - Function Count : 11 - Minimum found : 2602.6849 - Intern Time : 0.008021 seconds - Total Time : 116.946 seconds -Demo completed in 2.323 minutes diff --git a/tests/realValues/hurdle_fig1.fig b/tests/realValues/hurdle_fig1.fig deleted file mode 100644 index d58bec58..00000000 Binary files a/tests/realValues/hurdle_fig1.fig and /dev/null differ diff --git a/tests/realValues/improvemarginals.mat b/tests/realValues/improvemarginals.mat deleted file mode 100644 index 12bb6bd7..00000000 Binary files a/tests/realValues/improvemarginals.mat and /dev/null differ diff --git a/tests/realValues/improvemarginals.txt b/tests/realValues/improvemarginals.txt deleted file mode 100644 index a9d1aaaf..00000000 --- a/tests/realValues/improvemarginals.txt +++ /dev/null @@ -1,9 +0,0 @@ -Time elapsed for marginal corrections with EP-FACT: 0.2 s and for predictions 0.1 s -Time elapsed for marginal corrections with LA-CM2: 0.2 s and for predictions 0.1 s -Time elapsed for marginal corrections with LA-FACT: 0.1 s and for predictions 0.1 s - - gp hyperparameters: - - 2.3026 -0.1054 -0.1054 - -Demo completed in 0.029 minutes diff --git a/tests/realValues/improvemarginals_fig1.fig b/tests/realValues/improvemarginals_fig1.fig deleted file mode 100644 index 8264f11e..00000000 Binary files a/tests/realValues/improvemarginals_fig1.fig and /dev/null differ diff --git a/tests/realValues/improvemarginals_fig2.fig b/tests/realValues/improvemarginals_fig2.fig deleted file mode 100644 index 6d7960a1..00000000 Binary files a/tests/realValues/improvemarginals_fig2.fig and /dev/null differ diff --git a/tests/realValues/kalman1.mat b/tests/realValues/kalman1.mat deleted file mode 100644 index d48a9d43..00000000 Binary files a/tests/realValues/kalman1.mat and /dev/null differ diff --git a/tests/realValues/kalman1.txt b/tests/realValues/kalman1.txt deleted file mode 100644 index 08ba5d8a..00000000 --- a/tests/realValues/kalman1.txt +++ /dev/null @@ -1,14 +0,0 @@ - TolFun reached. Func-count 27. Final f(x)=-10.5562. Elapsed time 0.16 - TolFun reached. Func-count 27. Final f(x)=-10.5562. Elapsed time 1.36 - - Parameter | FULL | KALMAN ------------------------------------ - magnSigma2 | 0.0944 | 0.0944 - lengthScale | 0.7018 | 0.7018 - sigma2 | 0.0083 | 0.0083 - - gp hyperparameters: - - -2.3606 -0.3541 -4.7891 - -Demo completed in 0.036 minutes diff --git a/tests/realValues/kalman1_fig1.fig b/tests/realValues/kalman1_fig1.fig deleted file mode 100644 index 480d71b0..00000000 Binary files a/tests/realValues/kalman1_fig1.fig and /dev/null differ diff --git a/tests/realValues/kalman1_fig2.fig b/tests/realValues/kalman1_fig2.fig deleted file mode 100644 index c373be74..00000000 Binary files a/tests/realValues/kalman1_fig2.fig and /dev/null differ diff --git a/tests/realValues/kalman2.mat b/tests/realValues/kalman2.mat deleted file mode 100644 index e977f07c..00000000 Binary files a/tests/realValues/kalman2.mat and /dev/null differ diff --git a/tests/realValues/kalman2.txt b/tests/realValues/kalman2.txt deleted file mode 100644 index f34192eb..00000000 --- a/tests/realValues/kalman2.txt +++ /dev/null @@ -1,35 +0,0 @@ - Iteration Func-count Grad-count f(x) Step-size - 0 1 1 621.31 - 1 2 2 419.233 0.00442489 - 2 7 7 304.067 0.011875 - 3 10 10 224.226 0.23565 - 4 14 14 181.318 0.00625 - 5 18 18 162.607 0.0519188 - 6 20 20 153.013 0.40472 - 7 23 23 142.123 0.124208 - 8 25 25 137.704 0.436747 - 9 27 27 134.033 0.472882 - 10 29 29 132.053 0.228239 - 11 31 31 131.375 0.412029 - 12 32 32 130.964 1 - 13 33 33 130.872 1 - 14 34 34 130.833 1 - 15 35 35 130.827 1 - 16 36 36 130.827 1 - 17 37 37 130.827 1 - 18 38 38 130.826 1 - 19 39 39 130.826 1 - Optimizer Results - Algorithm Used: Broyden-Fletcher-Goldfarb-Shanno (BFGS) - Exit message : Change in x was smaller than the specified tolerance TolX. - Iterations : 20 - Function Count : 40 - Minimum found : 130.8265 - Intern Time : 0.23871 seconds - Total Time : 349.7141 seconds - - gp hyperparameters: - - 7.4345 3.2174 1.9601 0.3056 4.9391 -1.6257 -0.7279 -3.1561 - -Demo completed in 5.920 minutes diff --git a/tests/realValues/kalman2_fig1.fig b/tests/realValues/kalman2_fig1.fig deleted file mode 100644 index 95019019..00000000 Binary files a/tests/realValues/kalman2_fig1.fig and /dev/null differ diff --git a/tests/realValues/kalman2_fig2.fig b/tests/realValues/kalman2_fig2.fig deleted file mode 100644 index f0ea95e6..00000000 Binary files a/tests/realValues/kalman2_fig2.fig and /dev/null differ diff --git a/tests/realValues/kalman2_fig3.fig b/tests/realValues/kalman2_fig3.fig deleted file mode 100644 index 1ee1f8d3..00000000 Binary files a/tests/realValues/kalman2_fig3.fig and /dev/null differ diff --git a/tests/realValues/lgcp.mat b/tests/realValues/lgcp.mat deleted file mode 100644 index 3111c4ff..00000000 Binary files a/tests/realValues/lgcp.mat and /dev/null differ diff --git a/tests/realValues/lgcp.txt b/tests/realValues/lgcp.txt deleted file mode 100644 index 3315abad..00000000 --- a/tests/realValues/lgcp.txt +++ /dev/null @@ -1,4 +0,0 @@ -Coal disaster data with EP integration over the latent values -Redwood data with Laplace integration over the latent -values and MAP estimate for the parameters -Demo completed in 0.094 minutes diff --git a/tests/realValues/lgcp_fig1.fig b/tests/realValues/lgcp_fig1.fig deleted file mode 100644 index a06721f1..00000000 Binary files a/tests/realValues/lgcp_fig1.fig and /dev/null differ diff --git a/tests/realValues/lgcp_fig2.fig b/tests/realValues/lgcp_fig2.fig deleted file mode 100644 index 7386cb73..00000000 Binary files a/tests/realValues/lgcp_fig2.fig and /dev/null differ diff --git a/tests/realValues/loopred.mat b/tests/realValues/loopred.mat deleted file mode 100644 index 77a23346..00000000 Binary files a/tests/realValues/loopred.mat and /dev/null differ diff --git a/tests/realValues/loopred.txt b/tests/realValues/loopred.txt deleted file mode 100644 index 68c0cf40..00000000 --- a/tests/realValues/loopred.txt +++ /dev/null @@ -1,214 +0,0 @@ -Probit model with Laplace integration over the latent values and -MAP estimate for the parameters - TolFun reached. Func-count 27. Final f(x)=81.5289. Elapsed time 0.88 -Evaluating the CV utility. The inference method is MAP. - The CV-fold number: 1/100 - The CV-fold number: 2/100 - The CV-fold number: 3/100 - The CV-fold number: 4/100 - The CV-fold number: 5/100 - The CV-fold number: 6/100 - The CV-fold number: 7/100 - The CV-fold number: 8/100 - The CV-fold number: 9/100 - The CV-fold number: 10/100 - The CV-fold number: 11/100 - The CV-fold number: 12/100 - The CV-fold number: 13/100 - The CV-fold number: 14/100 - The CV-fold number: 15/100 - The CV-fold number: 16/100 - The CV-fold number: 17/100 - The CV-fold number: 18/100 - The CV-fold number: 19/100 - The CV-fold number: 20/100 - The CV-fold number: 21/100 - The CV-fold number: 22/100 - The CV-fold number: 23/100 - The CV-fold number: 24/100 - The CV-fold number: 25/100 - The CV-fold number: 26/100 - The CV-fold number: 27/100 - The CV-fold number: 28/100 - The CV-fold number: 29/100 - The CV-fold number: 30/100 - The CV-fold number: 31/100 - The CV-fold number: 32/100 - The CV-fold number: 33/100 - The CV-fold number: 34/100 - The CV-fold number: 35/100 - The CV-fold number: 36/100 - The CV-fold number: 37/100 - The CV-fold number: 38/100 - The CV-fold number: 39/100 - The CV-fold number: 40/100 - The CV-fold number: 41/100 - The CV-fold number: 42/100 - The CV-fold number: 43/100 - The CV-fold number: 44/100 - The CV-fold number: 45/100 - The CV-fold number: 46/100 - The CV-fold number: 47/100 - The CV-fold number: 48/100 - The CV-fold number: 49/100 - The CV-fold number: 50/100 - The CV-fold number: 51/100 - The CV-fold number: 52/100 - The CV-fold number: 53/100 - The CV-fold number: 54/100 - The CV-fold number: 55/100 - The CV-fold number: 56/100 - The CV-fold number: 57/100 - The CV-fold number: 58/100 - The CV-fold number: 59/100 - The CV-fold number: 60/100 - The CV-fold number: 61/100 - The CV-fold number: 62/100 - The CV-fold number: 63/100 - The CV-fold number: 64/100 - The CV-fold number: 65/100 - The CV-fold number: 66/100 - The CV-fold number: 67/100 - The CV-fold number: 68/100 - The CV-fold number: 69/100 - The CV-fold number: 70/100 - The CV-fold number: 71/100 - The CV-fold number: 72/100 - The CV-fold number: 73/100 - The CV-fold number: 74/100 - The CV-fold number: 75/100 - The CV-fold number: 76/100 - The CV-fold number: 77/100 - The CV-fold number: 78/100 - The CV-fold number: 79/100 - The CV-fold number: 80/100 - The CV-fold number: 81/100 - The CV-fold number: 82/100 - The CV-fold number: 83/100 - The CV-fold number: 84/100 - The CV-fold number: 85/100 - The CV-fold number: 86/100 - The CV-fold number: 87/100 - The CV-fold number: 88/100 - The CV-fold number: 89/100 - The CV-fold number: 90/100 - The CV-fold number: 91/100 - The CV-fold number: 92/100 - The CV-fold number: 93/100 - The CV-fold number: 94/100 - The CV-fold number: 95/100 - The CV-fold number: 96/100 - The CV-fold number: 97/100 - The CV-fold number: 98/100 - The CV-fold number: 99/100 - The CV-fold number: 100/100 -Probit model with EP integration over the latent values and -MAP estimate for the parameters - TolFun reached. Func-count 7. Final f(x)=81.748. Elapsed time 0.31 -Evaluating the CV utility. The inference method is MAP. - The CV-fold number: 1/100 - The CV-fold number: 2/100 - The CV-fold number: 3/100 - The CV-fold number: 4/100 - The CV-fold number: 5/100 - The CV-fold number: 6/100 - The CV-fold number: 7/100 - The CV-fold number: 8/100 - The CV-fold number: 9/100 - The CV-fold number: 10/100 - The CV-fold number: 11/100 - The CV-fold number: 12/100 - The CV-fold number: 13/100 - The CV-fold number: 14/100 - The CV-fold number: 15/100 - The CV-fold number: 16/100 - The CV-fold number: 17/100 - The CV-fold number: 18/100 - The CV-fold number: 19/100 - The CV-fold number: 20/100 - The CV-fold number: 21/100 - The CV-fold number: 22/100 - The CV-fold number: 23/100 - The CV-fold number: 24/100 - The CV-fold number: 25/100 - The CV-fold number: 26/100 - The CV-fold number: 27/100 - The CV-fold number: 28/100 - The CV-fold number: 29/100 - The CV-fold number: 30/100 - The CV-fold number: 31/100 - The CV-fold number: 32/100 - The CV-fold number: 33/100 - The CV-fold number: 34/100 - The CV-fold number: 35/100 - The CV-fold number: 36/100 - The CV-fold number: 37/100 - The CV-fold number: 38/100 - The CV-fold number: 39/100 - The CV-fold number: 40/100 - The CV-fold number: 41/100 - The CV-fold number: 42/100 - The CV-fold number: 43/100 - The CV-fold number: 44/100 - The CV-fold number: 45/100 - The CV-fold number: 46/100 - The CV-fold number: 47/100 - The CV-fold number: 48/100 - The CV-fold number: 49/100 - The CV-fold number: 50/100 - The CV-fold number: 51/100 - The CV-fold number: 52/100 - The CV-fold number: 53/100 - The CV-fold number: 54/100 - The CV-fold number: 55/100 - The CV-fold number: 56/100 - The CV-fold number: 57/100 - The CV-fold number: 58/100 - The CV-fold number: 59/100 - The CV-fold number: 60/100 - The CV-fold number: 61/100 - The CV-fold number: 62/100 - The CV-fold number: 63/100 - The CV-fold number: 64/100 - The CV-fold number: 65/100 - The CV-fold number: 66/100 - The CV-fold number: 67/100 - The CV-fold number: 68/100 - The CV-fold number: 69/100 - The CV-fold number: 70/100 - The CV-fold number: 71/100 - The CV-fold number: 72/100 - The CV-fold number: 73/100 - The CV-fold number: 74/100 - The CV-fold number: 75/100 - The CV-fold number: 76/100 - The CV-fold number: 77/100 - The CV-fold number: 78/100 - The CV-fold number: 79/100 - The CV-fold number: 80/100 - The CV-fold number: 81/100 - The CV-fold number: 82/100 - The CV-fold number: 83/100 - The CV-fold number: 84/100 - The CV-fold number: 85/100 - The CV-fold number: 86/100 - The CV-fold number: 87/100 - The CV-fold number: 88/100 - The CV-fold number: 89/100 - The CV-fold number: 90/100 - The CV-fold number: 91/100 - The CV-fold number: 92/100 - The CV-fold number: 93/100 - The CV-fold number: 94/100 - The CV-fold number: 95/100 - The CV-fold number: 96/100 - The CV-fold number: 97/100 - The CV-fold number: 98/100 - The CV-fold number: 99/100 - The CV-fold number: 100/100 - - gp hyperparameters: - - 3.2607 -0.7237 0.0613 - -Demo completed in 0.977 minutes diff --git a/tests/realValues/loopred_fig1.fig b/tests/realValues/loopred_fig1.fig deleted file mode 100644 index f57b234c..00000000 Binary files a/tests/realValues/loopred_fig1.fig and /dev/null differ diff --git a/tests/realValues/loopred_fig2.fig b/tests/realValues/loopred_fig2.fig deleted file mode 100644 index 4591505c..00000000 Binary files a/tests/realValues/loopred_fig2.fig and /dev/null differ diff --git a/tests/realValues/memorysave.txt b/tests/realValues/memorysave.txt deleted file mode 100644 index db1ab382..00000000 --- a/tests/realValues/memorysave.txt +++ /dev/null @@ -1,27 +0,0 @@ -Classification (EP), Neuralnetwork covariance function without and with memory saving (optimization and prediction) -Elapsed time is 6.419354 seconds. -Elapsed time is 6.433990 seconds. -Classification (Laplace), Squared-Exponential covariance function without and with memory saving (optimization and prediction) -Elapsed time is 1.118030 seconds. -Elapsed time is 1.522736 seconds. -Regression, FIC GP, Matern-3/2 covariance function, without and with memory saving (optimization and prediction) -Elapsed time is 0.295367 seconds. -Elapsed time is 0.314384 seconds. -Regression, VAR GP, Squared-Exponential covariance function, without and with memory saving (optimization and prediction) -Elapsed time is 2.041667 seconds. -Elapsed time is 1.953337 seconds. -Spatial process (Laplace), FIC GP, PPCS3 covariance function, without and with memory saving (optimization and prediction) -Elapsed time is 0.911109 seconds. -Elapsed time is 1.163756 seconds. -Spatial process (EP), FIC GP, Squared-Exponential covariance function, without and with memory saving (optimization and prediction) -Elapsed time is 11.673574 seconds. -Elapsed time is 11.344609 seconds. -Spatial process (Laplace), FIC GP, Neuralnetwork covariance function, without and with memory saving (optimization and prediction) -Elapsed time is 0.872615 seconds. -Elapsed time is 1.700451 seconds. - - gp hyperparameters: - - 0.2956 1.5729 -2.9479 4.1251 - -Demo completed in 0.806 minutes diff --git a/tests/realValues/modelassesment1.mat b/tests/realValues/modelassesment1.mat deleted file mode 100644 index 2d312822..00000000 Binary files a/tests/realValues/modelassesment1.mat and /dev/null differ diff --git a/tests/realValues/modelassesment1.txt b/tests/realValues/modelassesment1.txt deleted file mode 100644 index 820342c2..00000000 --- a/tests/realValues/modelassesment1.txt +++ /dev/null @@ -1,567 +0,0 @@ -Full GP model with Gaussian noise model -MAP estimate for the parameters - Optimizer Results - Algorithm Used: Broyden-Fletcher-Goldfarb-Shanno (BFGS) - Exit message : Change in x was smaller than the specified tolerance TolX. - Iterations : 16 - Function Count : 24 - Minimum found : 44.1644 - Intern Time : 0.014187 seconds - Total Time : 0.67327 seconds -MAP estimate for the parameters - k-fold-CV -Evaluating the CV utility. The inference method is MAP. - The CV-fold number: 1/10 - The CV-fold number: 2/10 - The CV-fold number: 3/10 - The CV-fold number: 4/10 - The CV-fold number: 5/10 - The CV-fold number: 6/10 - The CV-fold number: 7/10 - The CV-fold number: 8/10 - The CV-fold number: 9/10 - The CV-fold number: 10/10 -MAP estimate for the parameters - LOO-CV -MCMC integration over the parameters - Using SLS sampler for hyperparameters - cycle etr slsrej - 20 46.162 sls - 40 44.536 sls - 60 46.492 sls - 80 44.724 sls - 100 46.073 sls - 120 48.356 sls - 140 45.043 sls - 160 44.583 sls - 180 45.860 sls - 200 45.606 sls - 220 45.049 sls -MCMC integration over the parameters - k-fold-CV -Evaluating the CV utility. The inference method is MCMC. - The CV-fold number: 1/10 - cycle etr slsrej - 20 47.365 sls - 40 47.871 sls - The CV-fold number: 2/10 - cycle etr slsrej - 20 48.040 sls - 40 47.595 sls - The CV-fold number: 3/10 - cycle etr slsrej - 20 47.035 sls - 40 47.781 sls - The CV-fold number: 4/10 - cycle etr slsrej - 20 46.956 sls - 40 44.509 sls - The CV-fold number: 5/10 - cycle etr slsrej - 20 48.573 sls - 40 46.945 sls - The CV-fold number: 6/10 - cycle etr slsrej - 20 50.441 sls - 40 50.100 sls - The CV-fold number: 7/10 - cycle etr slsrej - 20 47.685 sls - 40 46.701 sls - The CV-fold number: 8/10 - cycle etr slsrej - 20 43.340 sls - 40 41.618 sls - The CV-fold number: 9/10 - cycle etr slsrej - 20 47.305 sls - 40 47.582 sls - The CV-fold number: 10/10 - cycle etr slsrej - 20 47.354 sls - 40 46.455 sls -MCMC integration over the parameters - LOO-CV -Grid integration over the parameters - IA-grid: finding the mode - IA-grid: computing Hessian using multiplication - IA-grid: evaluating density in a grid - IA-grid: evaluated density at 335 points - Elapsed time 1.52 seconds - IA-grid: Total elapsed time 1.72 seconds -Grid integration over the parameters - k-fold-CV -Evaluating the CV utility. The inference method is IA. - The CV-fold number: 1/10 - IA-grid: finding the mode - IA-grid: computing Hessian using multiplication - IA-grid: evaluating density in a grid - IA-grid: evaluated density at 326 points - Elapsed time 1.34 seconds - IA-grid: Total elapsed time 1.81 seconds - The CV-fold number: 2/10 - IA-grid: finding the mode - IA-grid: computing Hessian using multiplication - IA-grid: evaluating density in a grid - IA-grid: evaluated density at 333 points - Elapsed time 1.36 seconds - IA-grid: Total elapsed time 1.74 seconds - The CV-fold number: 3/10 - IA-grid: finding the mode - IA-grid: computing Hessian using multiplication - IA-grid: evaluating density in a grid - IA-grid: evaluated density at 372 points - Elapsed time 1.52 seconds - IA-grid: Total elapsed time 1.85 seconds - The CV-fold number: 4/10 - IA-grid: finding the mode - IA-grid: computing Hessian using multiplication - IA-grid: evaluating density in a grid - IA-grid: evaluated density at 342 points - Elapsed time 1.40 seconds - IA-grid: Total elapsed time 1.92 seconds - The CV-fold number: 5/10 - IA-grid: finding the mode - IA-grid: computing Hessian using multiplication - IA-grid: evaluating density in a grid - IA-grid: evaluated density at 357 points - Elapsed time 1.46 seconds - IA-grid: Total elapsed time 1.80 seconds - The CV-fold number: 6/10 - IA-grid: finding the mode - IA-grid: computing Hessian using multiplication - IA-grid: evaluating density in a grid - IA-grid: evaluated density at 314 points - Elapsed time 1.28 seconds - IA-grid: Total elapsed time 1.86 seconds - The CV-fold number: 7/10 - IA-grid: finding the mode - IA-grid: computing Hessian using multiplication - IA-grid: evaluating density in a grid - IA-grid: evaluated density at 354 points - Elapsed time 1.44 seconds - IA-grid: Total elapsed time 1.93 seconds - The CV-fold number: 8/10 - IA-grid: finding the mode - IA-grid: computing Hessian using multiplication - IA-grid: evaluating density in a grid - IA-grid: evaluated density at 363 points - Elapsed time 1.48 seconds - IA-grid: Total elapsed time 2.08 seconds - The CV-fold number: 9/10 - IA-grid: finding the mode - IA-grid: computing Hessian using multiplication - IA-grid: evaluating density in a grid - IA-grid: evaluated density at 351 points - Elapsed time 1.46 seconds - IA-grid: Total elapsed time 1.74 seconds - The CV-fold number: 10/10 - IA-grid: finding the mode - IA-grid: computing Hessian using multiplication - IA-grid: evaluating density in a grid - IA-grid: evaluated density at 341 points - Elapsed time 1.45 seconds - IA-grid: Total elapsed time 1.82 seconds -Grid integration over the parameters - LOO-CV -GP with FIC sparse approximation - -gp_fic = - - type: 'FIC' - lik: [1x1 struct] - cf: {[1x1 struct]} - infer_params: 'covariance+likelihood' - jitterSigma2: 1.0000e-06 - X_u: [36x2 double] - nind: 36 - p: [1x1 struct] - fh: [1x1 struct] - -MAP estimate for the parameters - Optimizer Results - Algorithm Used: Broyden-Fletcher-Goldfarb-Shanno (BFGS) - Exit message : Change in x was smaller than the specified tolerance TolX. - Iterations : 19 - Function Count : 30 - Minimum found : 42.5028 - Intern Time : 0.013008 seconds - Total Time : 0.34139 seconds - -n = - - 225 - -MAP estimate for the parameters - k-fold-CV -Evaluating the CV utility. The inference method is MAP. - The CV-fold number: 1/10 - The CV-fold number: 2/10 - The CV-fold number: 3/10 - The CV-fold number: 4/10 - The CV-fold number: 5/10 - The CV-fold number: 6/10 - The CV-fold number: 7/10 - The CV-fold number: 8/10 - The CV-fold number: 9/10 - The CV-fold number: 10/10 -MAP estimate for the parameters - LOO-CV -MCMC integration over the parameters - Using SLS sampler for hyperparameters - cycle etr slsrej - 20 43.432 sls - 40 47.122 sls - 60 43.719 sls - 80 46.022 sls - 100 43.813 sls - 120 43.664 sls - 140 45.968 sls - 160 43.173 sls - 180 45.430 sls - 200 43.797 sls - 220 45.146 sls -MCMC integration over the parameters - k-fold-CV -Evaluating the CV utility. The inference method is MCMC. - The CV-fold number: 1/10 - Using SLS sampler for hyperparameters - cycle etr slsrej - 20 47.086 sls - 40 46.972 sls - The CV-fold number: 2/10 - Using SLS sampler for hyperparameters - cycle etr slsrej - 20 46.050 sls - 40 46.532 sls - The CV-fold number: 3/10 - Using SLS sampler for hyperparameters - cycle etr slsrej - 20 46.107 sls - 40 47.328 sls - The CV-fold number: 4/10 - Using SLS sampler for hyperparameters - cycle etr slsrej - 20 48.334 sls - 40 42.812 sls - The CV-fold number: 5/10 - Using SLS sampler for hyperparameters - cycle etr slsrej - 20 46.991 sls - 40 45.679 sls - The CV-fold number: 6/10 - Using SLS sampler for hyperparameters - cycle etr slsrej - 20 46.842 sls - 40 46.800 sls - The CV-fold number: 7/10 - Using SLS sampler for hyperparameters - cycle etr slsrej - 20 46.764 sls - 40 46.945 sls - The CV-fold number: 8/10 - Using SLS sampler for hyperparameters - cycle etr slsrej - 20 39.821 sls - 40 41.284 sls - The CV-fold number: 9/10 - Using SLS sampler for hyperparameters - cycle etr slsrej - 20 47.632 sls - 40 47.333 sls - The CV-fold number: 10/10 - Using SLS sampler for hyperparameters - cycle etr slsrej - 20 45.015 sls - 40 44.994 sls -MCMC integration over the parameters - LOO-CV -Grid integration over the parameters - IA-grid: finding the mode - IA-grid: computing Hessian using multiplication - IA-grid: evaluating density in a grid - IA-grid: evaluated density at 348 points - Elapsed time 1.30 seconds - IA-grid: Total elapsed time 1.43 seconds -Grid integration over the parameters - k-fold-CV -Evaluating the CV utility. The inference method is IA. - The CV-fold number: 1/10 - IA-grid: finding the mode - IA-grid: computing Hessian using multiplication - IA-grid: evaluating density in a grid - IA-grid: evaluated density at 296 points - Elapsed time 1.10 seconds - IA-grid: Total elapsed time 1.78 seconds - The CV-fold number: 2/10 - IA-grid: finding the mode - IA-grid: computing Hessian using multiplication - IA-grid: evaluating density in a grid - IA-grid: evaluated density at 341 points - Elapsed time 1.25 seconds - IA-grid: Total elapsed time 1.66 seconds - The CV-fold number: 3/10 - IA-grid: finding the mode - IA-grid: computing Hessian using multiplication - IA-grid: evaluating density in a grid - IA-grid: evaluated density at 385 points - Elapsed time 1.38 seconds - IA-grid: Total elapsed time 1.81 seconds - The CV-fold number: 4/10 - IA-grid: finding the mode - IA-grid: computing Hessian using multiplication - IA-grid: evaluating density in a grid - IA-grid: evaluated density at 312 points - Elapsed time 1.12 seconds - IA-grid: Total elapsed time 1.68 seconds - The CV-fold number: 5/10 - IA-grid: finding the mode - IA-grid: computing Hessian using multiplication - IA-grid: evaluating density in a grid - IA-grid: evaluated density at 348 points - Elapsed time 1.24 seconds - IA-grid: Total elapsed time 1.54 seconds - The CV-fold number: 6/10 - IA-grid: finding the mode - IA-grid: computing Hessian using multiplication - IA-grid: evaluating density in a grid - IA-grid: evaluated density at 350 points - Elapsed time 1.25 seconds - IA-grid: Total elapsed time 1.66 seconds - The CV-fold number: 7/10 - IA-grid: finding the mode - IA-grid: computing Hessian using multiplication - IA-grid: evaluating density in a grid - IA-grid: evaluated density at 336 points - Elapsed time 1.21 seconds - IA-grid: Total elapsed time 2.23 seconds - The CV-fold number: 8/10 - IA-grid: finding the mode - IA-grid: computing Hessian using multiplication - IA-grid: evaluating density in a grid - IA-grid: evaluated density at 353 points - Elapsed time 1.28 seconds - IA-grid: Total elapsed time 1.82 seconds - The CV-fold number: 9/10 - IA-grid: finding the mode - IA-grid: computing Hessian using multiplication - IA-grid: evaluating density in a grid - IA-grid: evaluated density at 337 points - Elapsed time 1.23 seconds - IA-grid: Total elapsed time 1.55 seconds - The CV-fold number: 10/10 - IA-grid: finding the mode - IA-grid: computing Hessian using multiplication - IA-grid: evaluating density in a grid - IA-grid: evaluated density at 324 points - Elapsed time 1.17 seconds - IA-grid: Total elapsed time 1.56 seconds -Grid integration over the parameters - LOO-CV -GP with PIC sparse approximation -MAP estimate for the parameters - Optimizer Results - Algorithm Used: Broyden-Fletcher-Goldfarb-Shanno (BFGS) - Exit message : Change in x was smaller than the specified tolerance TolX. - Iterations : 14 - Function Count : 22 - Minimum found : 41.3886 - Intern Time : 0.009816 seconds - Total Time : 0.70206 seconds -MAP estimate for the parameters - k-fold-CV -Evaluating the CV utility. The inference method is MAP. - The CV-fold number: 1/10 - The CV-fold number: 2/10 - The CV-fold number: 3/10 - The CV-fold number: 4/10 - The CV-fold number: 5/10 - The CV-fold number: 6/10 - The CV-fold number: 7/10 - The CV-fold number: 8/10 - The CV-fold number: 9/10 - The CV-fold number: 10/10 -MAP estimate for the parameters - LOO-CV -MCMC integration over the parameters - Using SLS sampler for hyperparameters - cycle etr slsrej - 20 43.063 sls - 40 43.080 sls - 60 42.595 sls - 80 42.580 sls - 100 42.209 sls - 120 42.570 sls - 140 41.681 sls - 160 41.755 sls - 180 42.976 sls - 200 45.913 sls - 220 43.838 sls -MCMC integration over the parameters - k-fold-CV -Evaluating the CV utility. The inference method is MCMC. - The CV-fold number: 1/10 - Using SLS sampler for hyperparameters - cycle etr slsrej - 20 44.577 sls - 40 44.882 sls - The CV-fold number: 2/10 - Using SLS sampler for hyperparameters - cycle etr slsrej - 20 45.445 sls - 40 47.048 sls - The CV-fold number: 3/10 - Using SLS sampler for hyperparameters - cycle etr slsrej - 20 49.586 sls - 40 45.713 sls - The CV-fold number: 4/10 - Using SLS sampler for hyperparameters - cycle etr slsrej - 20 42.448 sls - 40 44.822 sls - The CV-fold number: 5/10 - Using SLS sampler for hyperparameters - cycle etr slsrej - 20 45.504 sls - 40 43.310 sls - The CV-fold number: 6/10 - Using SLS sampler for hyperparameters - cycle etr slsrej - 20 46.215 sls - 40 44.736 sls - The CV-fold number: 7/10 - Using SLS sampler for hyperparameters - cycle etr slsrej - 20 45.338 sls - 40 45.546 sls - The CV-fold number: 8/10 - Using SLS sampler for hyperparameters - cycle etr slsrej - 20 41.780 sls - 40 41.196 sls - The CV-fold number: 9/10 - Using SLS sampler for hyperparameters - cycle etr slsrej - 20 46.193 sls - 40 46.335 sls - The CV-fold number: 10/10 - Using SLS sampler for hyperparameters - cycle etr slsrej - 20 43.116 sls - 40 43.045 sls -MCMC integration over the parameters - LOO-CV -Grid integration over the parameters - IA-grid: finding the mode - IA-grid: computing Hessian using multiplication - IA-grid: evaluating density in a grid - IA-grid: evaluated density at 338 points - Elapsed time 3.18 seconds - IA-grid: Total elapsed time 3.55 seconds -Grid integration over the parameters - k-fold-CV -Evaluating the CV utility. The inference method is IA. - The CV-fold number: 1/10 - IA-grid: finding the mode - IA-grid: computing Hessian using multiplication - IA-grid: evaluating density in a grid - IA-grid: evaluated density at 347 points - Elapsed time 3.18 seconds - IA-grid: Total elapsed time 4.11 seconds - The CV-fold number: 2/10 - IA-grid: finding the mode - IA-grid: computing Hessian using multiplication - IA-grid: evaluating density in a grid - IA-grid: evaluated density at 337 points - Elapsed time 3.10 seconds - IA-grid: Total elapsed time 4.11 seconds - The CV-fold number: 3/10 - IA-grid: finding the mode - IA-grid: computing Hessian using multiplication - IA-grid: evaluating density in a grid - IA-grid: evaluated density at 355 points - Elapsed time 3.26 seconds - IA-grid: Total elapsed time 4.30 seconds - The CV-fold number: 4/10 - IA-grid: finding the mode - Elapsed time 1.04 seconds - IA-grid: computing Hessian using multiplication - IA-grid: evaluating density in a grid - IA-grid: evaluated density at 348 points - Elapsed time 3.20 seconds - IA-grid: Total elapsed time 4.47 seconds - The CV-fold number: 5/10 - IA-grid: finding the mode - Elapsed time 1.03 seconds - IA-grid: computing Hessian using multiplication - IA-grid: evaluating density in a grid - IA-grid: evaluated density at 352 points - Elapsed time 3.20 seconds - IA-grid: Total elapsed time 4.45 seconds - The CV-fold number: 6/10 - IA-grid: finding the mode - IA-grid: computing Hessian using multiplication - IA-grid: evaluating density in a grid - IA-grid: evaluated density at 336 points - Elapsed time 3.06 seconds - IA-grid: Total elapsed time 3.88 seconds - The CV-fold number: 7/10 - IA-grid: finding the mode - Elapsed time 1.53 seconds - IA-grid: computing Hessian using multiplication - IA-grid: evaluating density in a grid - IA-grid: evaluated density at 347 points - Elapsed time 3.17 seconds - IA-grid: Total elapsed time 4.92 seconds - The CV-fold number: 8/10 - IA-grid: finding the mode - Elapsed time 1.03 seconds - IA-grid: computing Hessian using multiplication - IA-grid: evaluating density in a grid - IA-grid: evaluated density at 342 points - Elapsed time 3.13 seconds - IA-grid: Total elapsed time 4.39 seconds - The CV-fold number: 9/10 - IA-grid: finding the mode - Elapsed time 1.25 seconds - IA-grid: computing Hessian using multiplication - IA-grid: evaluating density in a grid - IA-grid: evaluated density at 335 points - Elapsed time 3.06 seconds - IA-grid: Total elapsed time 4.53 seconds - The CV-fold number: 10/10 - IA-grid: finding the mode - IA-grid: computing Hessian using multiplication - IA-grid: evaluating density in a grid - IA-grid: evaluated density at 344 points - Elapsed time 3.15 seconds - IA-grid: Total elapsed time 4.20 seconds -Grid integration over the parameters - LOO-CV -Summary of the results - -S = - - full_MAP full_MCMC full_IA FIC_MAP FIC_MCMC FIC_IA PIC_MAP PIC_MCMC PIC_IA - CV-mlpd 0.05 0.06 0.05 0.06 0.06 0.06 0.07 0.08 0.08 - CV-rmse 0.24 0.24 0.24 0.23 0.23 0.23 0.23 0.23 0.23 - LOO-mlpd 0.06 0.05 0.05 0.06 0.05 0.05 0.07 0.06 0.06 - LOO-rmse 0.24 0.24 0.24 0.23 0.23 0.23 0.23 0.23 0.23 - - WAIC_V 0.07 0.06 0.07 0.11 -1.06 -0.11 0.09 0.08 0.08 - WAIC_G 0.10 0.09 0.09 0.17 -0.45 0.42 0.12 0.12 0.12 - - DIC_h NaN -0.20 -0.20 NaN -0.19 -0.19 NaN -0.19 -0.18 - DIC_a NaN 0.05 0.07 NaN 0.12 0.12 NaN 0.09 0.09 - DIC_l 0.07 0.00 0.00 0.11 0.00 0.00 0.09 - peff_h NaN 3.47 3.25 NaN 4.20 3.21 NaN 3.64 3.34 - peff_a NaN 43.12 39.79 NaN 81.90 82.93 NaN 46.67 47.16 - peff_l 37.44 0.00 0.00 76.09 0.00 0.00 45.15 - peff_l2 37.61 0.00 0.00 76.28 0.00 0.00 45.22 - - - The notation is as follows: - CV-mlpd = mean log predictive density from the 10-fold CV. - CV-rmse = root mean squared error from the 10-fold LOO-CV. - LOO-mlpd = mean log predictive density from the LOO-CV. - LOO-rmse = root mean squared error from the 10-fold CV. - WAIC_V = WAIC via variance method - WAIC_G = WAIC via Gibbs training utility method - DIC_h = DIC with focus on parameters. - DIC_a = DIC with focus on parameters and latent variables (all). - DIC_l = DIC with focus on latent variables. - peff_h = effective number of parameters (latent variables marginalized). - peff_a = effective number of parameters and latent variables. - peff_l = effective number of latent variables evaluated with gp_peff. - peff_l2 = effective number of latent variables evaluated with gp_dic. - - - - gp hyperparameters: - - 1.0742 -0.1662 -0.2199 -3.1540 - -Demo completed in 12.993 minutes diff --git a/tests/realValues/modelassesment2.mat b/tests/realValues/modelassesment2.mat deleted file mode 100644 index b008b78e..00000000 Binary files a/tests/realValues/modelassesment2.mat and /dev/null differ diff --git a/tests/realValues/modelassesment2.txt b/tests/realValues/modelassesment2.txt deleted file mode 100644 index 9b6af42f..00000000 --- a/tests/realValues/modelassesment2.txt +++ /dev/null @@ -1,481 +0,0 @@ -Data analysis with probit likelihood -Probit with Laplace integration over the latent values -and MAP estimate for the parameters - Optimizer Results - Algorithm Used: Broyden-Fletcher-Goldfarb-Shanno (BFGS) - Exit message : Change in the objective function value was less than TolFun. - Iterations : 9 - Function Count : 13 - Minimum found : 78.8894 - Intern Time : 0.007441 seconds - Total Time : 0.54661 seconds -Evaluating the CV utility. The inference method is MAP. - The CV-fold number: 1/10 - The CV-fold number: 2/10 - The CV-fold number: 3/10 - The CV-fold number: 4/10 - The CV-fold number: 5/10 - The CV-fold number: 6/10 - The CV-fold number: 7/10 - The CV-fold number: 8/10 - The CV-fold number: 9/10 - The CV-fold number: 10/10 -Probit with EP integration over the latent values and MAP -estimate for the parameters - Optimizer Results - Algorithm Used: Broyden-Fletcher-Goldfarb-Shanno (BFGS) - Exit message : Change in the objective function value was less than TolFun. - Iterations : 4 - Function Count : 8 - Minimum found : 79.1395 - Intern Time : 0.004267 seconds - Total Time : 0.50173 seconds -Evaluating the CV utility. The inference method is MAP. - The CV-fold number: 1/10 - The CV-fold number: 2/10 - The CV-fold number: 3/10 - The CV-fold number: 4/10 - The CV-fold number: 5/10 - The CV-fold number: 6/10 - The CV-fold number: 7/10 - The CV-fold number: 8/10 - The CV-fold number: 9/10 - The CV-fold number: 10/10 -Probit with MCMC integration over the latent values and -the parameters - Using SSLS sampler for hyperparameters and ESLS for latent values - cycle etr lslsn - 20 -588.426 9.0e+00 - 40 -587.970 1.0e+01 - 60 -626.360 1.5e+01 - 80 -626.707 4.0e+00 - 100 -617.044 0.0e+00 - 120 -630.091 2.0e+01 - 140 -615.030 5.0e+00 - 160 -653.144 6.0e+00 - 180 -608.386 1.8e+01 - 200 -635.256 1.3e+01 - 220 -590.438 2.0e+00 -Evaluating the CV utility. The inference method is MCMC. - The CV-fold number: 1/10 - Using SSLS sampler for hyperparameters and ESLS for latent values - cycle etr lslsn - 20 -547.984 7.0e+00 - 40 -540.295 8.0e+00 - The CV-fold number: 2/10 - Using SSLS sampler for hyperparameters and ESLS for latent values - cycle etr lslsn - 20 -535.925 1.0e+01 - 40 -505.911 0.0e+00 - The CV-fold number: 3/10 - Using SSLS sampler for hyperparameters and ESLS for latent values - cycle etr lslsn - 20 -526.682 9.0e+00 - 40 -472.494 5.0e+00 - The CV-fold number: 4/10 - Using SSLS sampler for hyperparameters and ESLS for latent values - cycle etr lslsn - 20 -530.221 1.5e+01 - 40 -562.331 1.3e+01 - The CV-fold number: 5/10 - Using SSLS sampler for hyperparameters and ESLS for latent values - cycle etr lslsn - 20 -549.694 8.0e+00 - 40 -521.740 9.0e+00 - The CV-fold number: 6/10 - Using SSLS sampler for hyperparameters and ESLS for latent values - cycle etr lslsn - 20 -481.416 5.0e+00 - 40 -495.256 2.0e+00 - The CV-fold number: 7/10 - Using SSLS sampler for hyperparameters and ESLS for latent values - cycle etr lslsn - 20 -523.814 1.2e+01 - 40 -486.134 8.0e+00 - The CV-fold number: 8/10 - Using SSLS sampler for hyperparameters and ESLS for latent values - cycle etr lslsn - 20 -550.736 1.3e+01 - 40 -551.778 1.3e+01 - The CV-fold number: 9/10 - Using SSLS sampler for hyperparameters and ESLS for latent values - cycle etr lslsn - 20 -551.138 8.0e+00 - 40 -615.547 8.0e+00 - The CV-fold number: 10/10 - Using SSLS sampler for hyperparameters and ESLS for latent values - cycle etr lslsn - 20 -480.774 0.0e+00 - 40 -418.991 7.0e+00 -[Warning: For 1 data point the effective sample size in IS is less than n/10] -[> In gpmc_loopred at 113 - In gp_loopred at 85 - In demo_modelassesment2 at 137 - In run at 63 - In rundemo at 111 - In test_modelassesment2>testRunDemo at 44 - In FunctionTestCase>FunctionTestCase.test at 90 - In TestRunner>TestRunner.runMethod at 684 - In TestRunnerPlugin>TestRunnerPlugin.runMethod at 99 - In TestRunnerPlugin>TestRunnerPlugin.runMethod at 99 - In TestRunner>TestRunner.runMethodOnPlugins at 538 - In TestRunner>TestRunner.runMethodsOnTestContent at 555 - In TestRunner>TestRunner.runTestMethod at 753 - In TestRunnerPlugin>TestRunnerPlugin.runTestMethod at 95 - In TestRunnerPlugin>TestRunnerPlugin.runTestMethod at 95 - In TestRunner>TestRunner.runMethodOnPlugins at 538 - In TestRunner>TestRunner.runTestSuite at 655 - In TestRunnerPlugin>TestRunnerPlugin.runTestSuite at 54 - In TestRunnerPlugin>TestRunnerPlugin.runTestSuite at 54 - In FailureDiagnosticsPlugin>FailureDiagnosticsPlugin.runTestSuite at 77 - In TestRunner>TestRunner.runMethodOnPlugins at 538 - In TestRunner>TestRunner.run at 175 - In TestSuite>TestSuite.run at 364 - In runtests at 44 - In runtestset at 94] -Probit with EP integration over the latent values and -grid integration over the parameters - Optimizer Results - Algorithm Used: Broyden-Fletcher-Goldfarb-Shanno (BFGS) - Exit message : Change in x was smaller than the specified tolerance TolX. - Iterations : 8 - Function Count : 11 - Minimum found : 79.1395 - Intern Time : 0.006339 seconds - Total Time : 0.6401 seconds - IA-grid: finding the mode - IA-grid: computing Hessian using multiplication - IA-grid: evaluating density in a grid - IA-grid: evaluated density at 32 points - Elapsed time 1.72 seconds - IA-grid: Total elapsed time 2.02 seconds -Evaluating the CV utility. The inference method is IA. - The CV-fold number: 1/10 - IA-grid: finding the mode - IA-grid: computing Hessian using multiplication - IA-grid: evaluating density in a grid - IA-grid: evaluated density at 28 points - Elapsed time 1.15 seconds - IA-grid: Total elapsed time 2.03 seconds - The CV-fold number: 2/10 - IA-grid: finding the mode - Elapsed time 1.18 seconds - IA-grid: computing Hessian using multiplication - IA-grid: evaluating density in a grid - IA-grid: evaluated density at 32 points - Elapsed time 1.37 seconds - IA-grid: Total elapsed time 2.72 seconds - The CV-fold number: 3/10 - IA-grid: finding the mode - IA-grid: computing Hessian using multiplication - IA-grid: evaluating density in a grid - IA-grid: evaluated density at 32 points - Elapsed time 1.51 seconds - IA-grid: Total elapsed time 2.50 seconds - The CV-fold number: 4/10 - IA-grid: finding the mode - Elapsed time 1.07 seconds - IA-grid: computing Hessian using multiplication - IA-grid: evaluating density in a grid - IA-grid: evaluated density at 32 points - Elapsed time 1.45 seconds - IA-grid: Total elapsed time 2.70 seconds - The CV-fold number: 5/10 - IA-grid: finding the mode - IA-grid: computing Hessian using multiplication - IA-grid: evaluating density in a grid - IA-grid: evaluated density at 32 points - Elapsed time 1.49 seconds - IA-grid: Total elapsed time 2.10 seconds - The CV-fold number: 6/10 - IA-grid: finding the mode - Elapsed time 1.03 seconds - IA-grid: computing Hessian using multiplication - IA-grid: evaluating density in a grid - IA-grid: evaluated density at 32 points - Elapsed time 1.45 seconds - IA-grid: Total elapsed time 2.66 seconds - The CV-fold number: 7/10 - IA-grid: finding the mode - IA-grid: computing Hessian using multiplication - IA-grid: evaluating density in a grid - IA-grid: evaluated density at 32 points - Elapsed time 1.34 seconds - IA-grid: Total elapsed time 2.15 seconds - The CV-fold number: 8/10 - IA-grid: finding the mode - IA-grid: computing Hessian using multiplication - IA-grid: evaluating density in a grid - IA-grid: evaluated density at 32 points - Elapsed time 1.40 seconds - IA-grid: Total elapsed time 2.44 seconds - The CV-fold number: 9/10 - IA-grid: finding the mode - Elapsed time 1.07 seconds - IA-grid: computing Hessian using multiplication - IA-grid: evaluating density in a grid - IA-grid: evaluated density at 28 points - Elapsed time 1.28 seconds - IA-grid: Total elapsed time 2.53 seconds - The CV-fold number: 10/10 - IA-grid: finding the mode - IA-grid: computing Hessian using multiplication - IA-grid: evaluating density in a grid - IA-grid: evaluated density at 32 points - Elapsed time 1.34 seconds - IA-grid: Total elapsed time 2.30 seconds -Data analysis with logit likelihood -Logit with Laplace integration over the latent values and -MAP estimate for the parameters - Optimizer Results - Algorithm Used: Broyden-Fletcher-Goldfarb-Shanno (BFGS) - Exit message : Change in the objective function value was less than TolFun. - Iterations : 12 - Function Count : 15 - Minimum found : 79.3867 - Intern Time : 0.008351 seconds - Total Time : 0.48857 seconds -Evaluating the CV utility. The inference method is MAP. - The CV-fold number: 1/10 - The CV-fold number: 2/10 - The CV-fold number: 3/10 - The CV-fold number: 4/10 - The CV-fold number: 5/10 - The CV-fold number: 6/10 - The CV-fold number: 7/10 - The CV-fold number: 8/10 - The CV-fold number: 9/10 - The CV-fold number: 10/10 -Logit with EP integration over the latent values and MAP -estimate for the parameters - Optimizer Results - Algorithm Used: Broyden-Fletcher-Goldfarb-Shanno (BFGS) - Exit message : Change in the objective function value was less than TolFun. - Iterations : 4 - Function Count : 9 - Minimum found : 79.5156 - Intern Time : 0.004829 seconds - Total Time : 8.2143 seconds -Evaluating the CV utility. The inference method is MAP. - The CV-fold number: 1/10 - The CV-fold number: 2/10 - The CV-fold number: 3/10 - The CV-fold number: 4/10 - The CV-fold number: 5/10 - The CV-fold number: 6/10 - The CV-fold number: 7/10 - The CV-fold number: 8/10 - The CV-fold number: 9/10 - The CV-fold number: 10/10 -Logit with MCMC integration over the latent values and -the parameters - Using SSLS sampler for hyperparameters and ESLS for latent values - cycle etr lslsn - 20 -533.055 1.0e+01 - 40 -518.968 6.0e+00 - 60 -472.492 3.0e+00 - 80 -478.123 0.0e+00 - 100 -599.868 5.0e+00 - 120 -577.869 1.0e+01 - 140 -535.928 1.3e+01 - 160 -555.210 8.0e+00 - 180 -578.161 7.0e+00 - 200 -580.977 7.0e+00 -Evaluating the CV utility. The inference method is MCMC. - The CV-fold number: 1/10 - Using SSLS sampler for hyperparameters and ESLS for latent values - cycle etr lslsn - 20 -501.194 8.0e+00 - 40 -474.223 5.0e+00 - The CV-fold number: 2/10 - Using SSLS sampler for hyperparameters and ESLS for latent values - cycle etr lslsn - 20 -534.713 1.3e+01 - 40 -528.955 1.3e+01 - The CV-fold number: 3/10 - Using SSLS sampler for hyperparameters and ESLS for latent values - cycle etr lslsn - 20 -450.989 7.0e+00 - 40 -500.478 7.0e+00 - The CV-fold number: 4/10 - Using SSLS sampler for hyperparameters and ESLS for latent values - cycle etr lslsn - 20 -503.487 4.0e+00 - 40 -510.591 0.0e+00 - The CV-fold number: 5/10 - Using SSLS sampler for hyperparameters and ESLS for latent values - cycle etr lslsn - 20 -388.814 5.0e+00 - 40 -437.343 9.0e+00 - The CV-fold number: 6/10 - Using SSLS sampler for hyperparameters and ESLS for latent values - cycle etr lslsn - 20 -460.051 1.1e+01 - 40 -470.438 1.0e+01 - The CV-fold number: 7/10 - Using SSLS sampler for hyperparameters and ESLS for latent values - cycle etr lslsn - 20 -438.615 3.0e+00 - 40 -499.552 6.0e+00 - The CV-fold number: 8/10 - Using SSLS sampler for hyperparameters and ESLS for latent values - cycle etr lslsn - 20 -495.175 1.0e+01 - 40 -504.217 1.0e+01 - The CV-fold number: 9/10 - Using SSLS sampler for hyperparameters and ESLS for latent values - cycle etr lslsn - 20 -513.708 2.0e+00 - 40 -522.626 8.0e+00 - The CV-fold number: 10/10 - Using SSLS sampler for hyperparameters and ESLS for latent values - cycle etr lslsn - 20 -519.795 5.0e+00 - 40 -486.984 7.0e+00 -Logit with EP integration over the latent values and grid -integration over the parameters - Optimizer Results - Algorithm Used: Broyden-Fletcher-Goldfarb-Shanno (BFGS) - Exit message : Change in x was smaller than the specified tolerance TolX. - Iterations : 5 - Function Count : 9 - Minimum found : 79.5156 - Intern Time : 0.005054 seconds - Total Time : 9.4608 seconds - IA-grid: finding the mode - IA-grid: computing Hessian using multiplication - Elapsed time 2.05 seconds - IA-grid: evaluating density in a grid - IA-grid: evaluated density at 32 points - Elapsed time 47.04 seconds - IA-grid: Total elapsed time 49.57 seconds -Evaluating the CV utility. The inference method is IA. - The CV-fold number: 1/10 - IA-grid: finding the mode - Elapsed time 13.49 seconds - IA-grid: computing Hessian using multiplication - Elapsed time 1.93 seconds - IA-grid: evaluating density in a grid - IA-grid: evaluated density at 28 points - Elapsed time 34.38 seconds - IA-grid: Total elapsed time 49.80 seconds - The CV-fold number: 2/10 - IA-grid: finding the mode - Elapsed time 8.59 seconds - IA-grid: computing Hessian using multiplication - Elapsed time 1.92 seconds - IA-grid: evaluating density in a grid - IA-grid: evaluated density at 32 points - Elapsed time 40.96 seconds - IA-grid: Total elapsed time 51.48 seconds - The CV-fold number: 3/10 - IA-grid: finding the mode - Elapsed time 9.60 seconds - IA-grid: computing Hessian using multiplication - Elapsed time 1.84 seconds - IA-grid: evaluating density in a grid - IA-grid: evaluated density at 32 points - Elapsed time 42.37 seconds - IA-grid: Total elapsed time 53.81 seconds - The CV-fold number: 4/10 - IA-grid: finding the mode - Elapsed time 10.00 seconds - IA-grid: computing Hessian using multiplication - Elapsed time 1.83 seconds - IA-grid: evaluating density in a grid - IA-grid: evaluated density at 32 points - Elapsed time 40.80 seconds - IA-grid: Total elapsed time 52.63 seconds - The CV-fold number: 5/10 - IA-grid: finding the mode - Elapsed time 6.13 seconds - IA-grid: computing Hessian using multiplication - Elapsed time 1.84 seconds - IA-grid: evaluating density in a grid - IA-grid: evaluated density at 32 points - Elapsed time 42.12 seconds - IA-grid: Total elapsed time 50.09 seconds - The CV-fold number: 6/10 - IA-grid: finding the mode - Elapsed time 11.59 seconds - IA-grid: computing Hessian using multiplication - Elapsed time 1.75 seconds - IA-grid: evaluating density in a grid - IA-grid: evaluated density at 28 points - Elapsed time 35.16 seconds - IA-grid: Total elapsed time 48.50 seconds - The CV-fold number: 7/10 - IA-grid: finding the mode - Elapsed time 9.40 seconds - IA-grid: computing Hessian using multiplication - Elapsed time 1.74 seconds - IA-grid: evaluating density in a grid - IA-grid: evaluated density at 31 points - Elapsed time 39.63 seconds - IA-grid: Total elapsed time 50.78 seconds - The CV-fold number: 8/10 - IA-grid: finding the mode - Elapsed time 12.50 seconds - IA-grid: computing Hessian using multiplication - Elapsed time 1.93 seconds - IA-grid: evaluating density in a grid - IA-grid: evaluated density at 32 points - Elapsed time 41.01 seconds - IA-grid: Total elapsed time 55.45 seconds - The CV-fold number: 9/10 - IA-grid: finding the mode - Elapsed time 14.53 seconds - IA-grid: computing Hessian using multiplication - Elapsed time 1.93 seconds - IA-grid: evaluating density in a grid - IA-grid: evaluated density at 28 points - Elapsed time 35.96 seconds - IA-grid: Total elapsed time 52.43 seconds - The CV-fold number: 10/10 - IA-grid: finding the mode - Elapsed time 10.44 seconds - IA-grid: computing Hessian using multiplication - Elapsed time 1.75 seconds - IA-grid: evaluating density in a grid - IA-grid: evaluated density at 32 points - Elapsed time 40.17 seconds - IA-grid: Total elapsed time 52.37 seconds -Summary of the results - -S = - - pr_Laplace pr_EP pr_MCMC pr_IA lo_Laplace lo_EP lo_MCMC lo_IA - CV-mlpd -0.29 -0.28 -0.29 -0.28 -0.29 -0.28 -0.28 -0.28 - LOO-mlpd -0.28 -0.27 -0.28 -0.28 -0.28 -0.28 -0.28 -0.28 - - WAIC -0.31 -0.28 -0.30 -0.28 -0.29 -0.28 -0.28 -0.28 - - DIC_h NaN NaN -0.33 -0.33 NaN NaN -0.33 -0.33 - DIC_a NaN NaN -0.28 -0.27 NaN NaN -0.28 -0.28 - DIC_l -0.30 -0.28 NaN NaN -0.30 -0.28 NaN NaN - peff_h NaN NaN 1.45 2.40 NaN NaN 2.96 2.42 - peff_a NaN NaN 7.90 6.20 NaN NaN 9.71 9.20 - peff_l 8.72 9.19 NaN NaN 8.84 9.18 NaN NaN - peff_l2 13.14 8.48 NaN NaN 12.19 8.41 NaN NaN - - The notation is as follows: - pr_* = probit likelihood and inference method - lo_* = logit likelihood and inference method - CV-mlpd = mean log predictive density from the 10-fold CV. - LOO-mlpd = mean log predictive density from the 10-fold CV. - WAIC = Widely applicable information criterion. - DIC_h = DIC with focus on parameters. - DIC_a = DIC with focus on parameters and laten variables (all). - DIC_l = DIC with focus on latent variables. - peff_h = effective number of parameters (latent variables marginalized). - peff_a = effective number of parameters and latent variables. - peff_l = effective number of latent variables evaluated with gp_peff. - peff_l2 = effective number of latent variables evaluated with gp_dic. - - - - gp hyperparameters: - - 3.8250 -0.8579 -0.1429 - -Demo completed in 46.102 minutes diff --git a/tests/realValues/monotonic2.mat b/tests/realValues/monotonic2.mat deleted file mode 100644 index 066552a8..00000000 Binary files a/tests/realValues/monotonic2.mat and /dev/null differ diff --git a/tests/realValues/monotonic2.txt b/tests/realValues/monotonic2.txt deleted file mode 100644 index f912b144..00000000 --- a/tests/realValues/monotonic2.txt +++ /dev/null @@ -1,61 +0,0 @@ - IA-CCD: finding the mode - Elapsed time 1.34 seconds - IA-CCD: computing Hessian using multiplication - IA-CCD: 9 points for 2 parameters - IA-CCD: autoscaling in 4 directions - IA-CCD: scaling minmax [0.89 1.10] - IA-CCD: evaluating density at 9 points - IA-CCD: Total elapsed time 2.85 seconds - Iteration Func-count Grad-count f(x) Step-size - 0 1 1 102.417 - 1 2 2 89.3513 0.0650335 - 2 4 4 87.5645 0.148177 - 3 5 5 86.4853 1 - 4 6 6 85.9438 1 - 5 8 8 84.971 0.430378 - Optimizer Results - Algorithm Used: Broyden-Fletcher-Goldfarb-Shanno (BFGS) - Exit message : Change in x was smaller than the specified tolerance TolX. - Iterations : 6 - Function Count : 10 - Minimum found : 84.9383 - Intern Time : 0.006423 seconds - Total Time : 1.715 seconds - IA-CCD: finding the mode - Elapsed time 2.74 seconds - IA-CCD: computing Hessian using multiplication - IA-CCD: 9 points for 2 parameters - IA-CCD: autoscaling in 4 directions - IA-CCD: scaling minmax [0.90 1.35] - IA-CCD: evaluating density at 9 points - Elapsed time 1.29 seconds - IA-CCD: Total elapsed time 5.31 seconds - IA-CCD: finding the mode - IA-CCD: computing Hessian using multiplication - IA-CCD: 9 points for 2 parameters - IA-CCD: autoscaling in 4 directions - IA-CCD: scaling minmax [1.02 1.44] - IA-CCD: evaluating density at 9 points - Elapsed time 1.02 seconds - IA-CCD: Total elapsed time 2.67 seconds - Iteration Func-count Grad-count f(x) Step-size - 0 1 1 84.3228 - 1 3 3 84.0392 0.112757 - 2 4 4 83.9396 1 - Optimizer Results - Algorithm Used: Broyden-Fletcher-Goldfarb-Shanno (BFGS) - Exit message : Change in the objective function value was less than TolFun. - Iterations : 3 - Function Count : 5 - Minimum found : 83.9237 - Intern Time : 0.003398 seconds - Total Time : 0.6747 seconds - IA-CCD: finding the mode - Elapsed time 2.32 seconds - IA-CCD: computing Hessian using multiplication - IA-CCD: 9 points for 2 parameters - IA-CCD: autoscaling in 4 directions - IA-CCD: scaling minmax [1.02 1.32] - IA-CCD: evaluating density at 9 points - IA-CCD: Total elapsed time 4.41 seconds -Demo completed in 0.439 minutes diff --git a/tests/realValues/monotonic2_fig1.fig b/tests/realValues/monotonic2_fig1.fig deleted file mode 100644 index e1709614..00000000 Binary files a/tests/realValues/monotonic2_fig1.fig and /dev/null differ diff --git a/tests/realValues/multiclass.mat b/tests/realValues/multiclass.mat deleted file mode 100644 index 667ccb47..00000000 Binary files a/tests/realValues/multiclass.mat and /dev/null differ diff --git a/tests/realValues/multiclass.txt b/tests/realValues/multiclass.txt deleted file mode 100644 index ac205194..00000000 --- a/tests/realValues/multiclass.txt +++ /dev/null @@ -1,665 +0,0 @@ -Softmax model with Laplace integration over the latent -values and MAP estimate for the parameters - Iteration Func-count Grad-count f(x) Step-size - 0 1 1 277.318 - 1 2 2 192.117 0.0228515 - 2 4 4 187.479 0.174366 - 3 7 7 178.445 0.038357 - 4 9 9 177.153 0.428397 - 5 11 11 174.94 0.55422 - 6 13 13 174.885 0.207464 - 7 14 14 174.863 1 - 8 15 15 174.862 1 - Optimizer Results - Algorithm Used: Broyden-Fletcher-Goldfarb-Shanno (BFGS) - Exit message : Change in the objective function value was less than TolFun. - Iterations : 9 - Function Count : 16 - Minimum found : 174.8621 - Intern Time : 0.053621 seconds - Total Time : 30.1563 seconds - -missed = - - 0.1333 - - -ans = - - 3.3233e+05 - - -ans = - - 1.0e+04 * - - -1.1812 5.6124 4.4558 1.5772 1.5647 - -Checking gradient ... - - analytic diffs delta - - 1.0e+05 * - - -0.3752 -0.3752 -0.0000 - 0.5975 0.5976 -0.0000 - 1.2293 1.2294 -0.0000 - 1.5432 1.5432 -0.0000 - 0.6947 0.6947 -0.0000 - - Using HMC sampler for hyperparameters and MCMC for latent values - cycle etr hrej lrej lvScale - 2 -3601.918 0.0e+00 6.4e-01 0.038151 - Using HMC sampler for hyperparameters and MCMC for latent values - cycle etr hrej lrej lvScale - 3 -4195.235 0.0e+00 4.0e-01 0.044182 - 4 -4173.255 0.0e+00 8.0e-01 0.069478 - 5 -4141.263 0.0e+00 6.0e-01 0.053155 - 6 -4116.405 0.0e+00 6.0e-01 0.072371 - 7 -4087.959 0.0e+00 6.0e-01 0.041504 - 8 -4050.433 0.0e+00 8.0e-01 0.056509 - 9 -3998.193 0.0e+00 1.0e+00 0.076937 - 10 -3976.434 0.0e+00 8.0e-01 0.067985 - 11 -3943.680 0.0e+00 4.0e-01 0.069386 - 12 -3912.732 0.0e+00 8.0e-01 0.070815 - 13 -3877.543 1.0e+00 6.0e-01 0.083477 - 14 -3854.397 0.0e+00 2.0e-01 0.063865 - 15 -3835.217 0.0e+00 6.0e-01 0.056433 - 16 -3818.584 1.0e+00 4.0e-01 0.076835 - 17 -3801.007 0.0e+00 4.0e-01 0.078418 - 18 -3807.111 0.0e+00 8.0e-01 0.069293 - 19 -3784.737 0.0e+00 1.0e+00 0.081683 - 20 -3773.910 0.0e+00 8.0e-01 0.054106 - 21 -3744.992 0.0e+00 6.0e-01 0.085084 - 22 -3738.260 0.0e+00 8.0e-01 0.056358 - 23 -3743.156 0.0e+00 4.0e-01 0.057519 - 24 -3742.546 0.0e+00 4.0e-01 0.078313 - 25 -3765.457 0.0e+00 2.0e-01 0.051874 - 26 -3763.581 0.0e+00 8.0e-01 0.061149 - 27 -3755.346 0.0e+00 8.0e-01 0.062409 - 28 -3745.480 0.0e+00 1.0e+00 0.084970 - 29 -3732.728 0.0e+00 8.0e-01 0.075083 - 30 -3731.040 1.0e+00 8.0e-01 0.057443 - 31 -3734.529 0.0e+00 6.0e-01 0.067713 - 32 -3739.670 0.0e+00 8.0e-01 0.069109 - 33 -3763.025 0.0e+00 6.0e-01 0.094092 - 34 -3757.489 0.0e+00 6.0e-01 0.083144 - 35 -3769.894 0.0e+00 8.0e-01 0.073469 - 36 -3775.090 0.0e+00 8.0e-01 0.056208 - 37 -3774.249 0.0e+00 6.0e-01 0.066258 - 38 -3774.156 0.0e+00 8.0e-01 0.078105 - 39 -3780.886 0.0e+00 1.0e+00 0.069017 - 40 -3779.080 0.0e+00 4.0e-01 0.060986 - 41 -3794.636 0.0e+00 1.0e+00 0.071890 - 42 -3808.517 0.0e+00 8.0e-01 0.073371 - 43 -3809.519 1.0e+00 6.0e-01 0.056133 - 44 -3821.706 0.0e+00 8.0e-01 0.076426 - 45 -3813.244 0.0e+00 4.0e-01 0.067533 - 46 -3803.672 0.0e+00 1.0e+00 0.068925 - 47 -3808.233 0.0e+00 6.0e-01 0.070345 - 48 -3791.349 1.0e+00 8.0e-01 0.082922 - 49 -3784.581 0.0e+00 6.0e-01 0.063440 - 50 -3777.135 0.0e+00 4.0e-01 0.042022 - 51 -3792.102 0.0e+00 8.0e-01 0.076324 - 52 -3805.075 0.0e+00 8.0e-01 0.103916 - 53 -3799.061 0.0e+00 8.0e-01 0.068833 - 54 -3807.984 0.0e+00 2.0e-01 0.070251 - 55 -3798.667 0.0e+00 8.0e-01 0.095648 - 56 -3807.055 0.0e+00 8.0e-01 0.063356 - 57 -3785.899 0.0e+00 8.0e-01 0.086260 - 58 -3796.989 1.0e+00 4.0e-01 0.065994 - 59 -3784.183 0.0e+00 1.0e+00 0.067353 - 60 -3782.214 0.0e+00 4.0e-01 0.059516 - 61 -3773.576 0.0e+00 6.0e-01 0.070157 - 62 -3790.747 1.0e+00 6.0e-01 0.061994 - 63 -3790.818 0.0e+00 8.0e-01 0.054780 - 64 -3820.407 0.0e+00 8.0e-01 0.074584 - 65 -3816.671 0.0e+00 8.0e-01 0.087920 - 66 -3813.713 0.0e+00 8.0e-01 0.058237 - 67 -3811.637 0.0e+00 6.0e-01 0.068649 - 68 -3834.506 0.0e+00 8.0e-01 0.070064 - 69 -3830.291 0.0e+00 8.0e-01 0.046409 - 70 -3815.373 0.0e+00 6.0e-01 0.072981 - 71 -3790.707 0.0e+00 6.0e-01 0.064489 - 72 -3797.375 0.0e+00 4.0e-01 0.076020 - 73 -3788.317 0.0e+00 6.0e-01 0.067174 - 74 -3793.363 0.0e+00 1.0e+00 0.068558 - 75 -3798.745 0.0e+00 8.0e-01 0.045412 - 76 -3815.207 0.0e+00 4.0e-01 0.040128 - 77 -3813.056 0.0e+00 6.0e-01 0.035459 - 78 -3801.258 0.0e+00 8.0e-01 0.055760 - 79 -3805.214 0.0e+00 8.0e-01 0.056909 - 80 -3816.489 0.0e+00 8.0e-01 0.050287 - 81 -3811.881 0.0e+00 4.0e-01 0.038473 - 82 -3815.111 0.0e+00 4.0e-01 0.069877 - 83 -3798.296 0.0e+00 6.0e-01 0.053460 - 84 -3789.290 0.0e+00 6.0e-01 0.054562 - 85 -3799.642 0.0e+00 4.0e-01 0.041743 - 86 -3797.829 0.0e+00 1.0e+00 0.075817 - 87 -3805.328 0.0e+00 2.0e-01 0.043481 - 88 -3793.960 0.0e+00 4.0e-01 0.033265 - 89 -3773.501 0.0e+00 6.0e-01 0.060419 - 90 -3789.466 0.0e+00 6.0e-01 0.061664 - 91 -3782.442 0.0e+00 6.0e-01 0.062935 - 92 -3782.395 0.0e+00 4.0e-01 0.048149 - 93 -3784.553 0.0e+00 8.0e-01 0.075716 - 94 -3808.720 0.0e+00 4.0e-01 0.037595 - 95 -3800.279 1.0e+00 1.0e+00 0.059121 - 96 -3799.708 0.0e+00 6.0e-01 0.060339 - 97 -3800.343 0.0e+00 8.0e-01 0.053318 - 98 -3812.644 0.0e+00 8.0e-01 0.054416 - 99 -3794.699 0.0e+00 8.0e-01 0.055538 - 100 -3801.718 0.0e+00 8.0e-01 0.065468 - 101 -3766.419 0.0e+00 4.0e-01 0.050086 - 102 -3766.488 0.0e+00 4.0e-01 0.078763 - 103 -3751.015 0.0e+00 6.0e-01 0.060258 - 104 -3759.311 0.0e+00 6.0e-01 0.046101 - 105 -3759.972 0.0e+00 1.0e+00 0.096712 - 106 -3773.921 0.0e+00 4.0e-01 0.048020 - 107 -3765.351 0.0e+00 8.0e-01 0.065380 - 108 -3747.822 0.0e+00 8.0e-01 0.057773 - 109 -3774.499 0.0e+00 1.0e+00 0.090850 - 110 -3782.396 0.0e+00 8.0e-01 0.052102 - 111 -3818.952 0.0e+00 1.0e+00 0.061418 - 112 -3825.824 0.0e+00 6.0e-01 0.046988 - 113 -3814.132 0.0e+00 6.0e-01 0.085344 - 114 -3820.902 0.0e+00 8.0e-01 0.056531 - 115 -3814.556 0.0e+00 8.0e-01 0.057696 - 116 -3814.463 0.0e+00 1.0e+00 0.068012 - 117 -3825.162 0.0e+00 8.0e-01 0.069413 - 118 -3806.801 0.0e+00 6.0e-01 0.053105 - 119 -3789.657 0.0e+00 4.0e-01 0.040628 - 120 -3766.190 0.0e+00 6.0e-01 0.055316 - 121 -3773.364 0.0e+00 4.0e-01 0.036641 - 122 -3760.463 0.0e+00 6.0e-01 0.076865 - 123 -3779.984 0.0e+00 8.0e-01 0.050914 - 124 -3784.808 0.0e+00 6.0e-01 0.033725 - 125 -3778.953 0.0e+00 2.0e-01 0.025802 - 126 -3765.729 1.0e+00 6.0e-01 0.035129 - 127 -3768.953 0.0e+00 2.0e-01 0.041410 - 128 -3785.662 1.0e+00 8.0e-01 0.048814 - 129 -3793.821 0.0e+00 6.0e-01 0.043134 - 130 -3795.783 0.0e+00 8.0e-01 0.050847 - 131 -3794.770 0.0e+00 1.0e+00 0.069228 - 132 -3797.170 0.0e+00 1.0e+00 0.045856 - 133 -3798.982 0.0e+00 4.0e-01 0.062433 - 134 -3789.888 1.0e+00 8.0e-01 0.041355 - 135 -3798.331 1.0e+00 8.0e-01 0.042207 - 136 -3792.892 0.0e+00 6.0e-01 0.049754 - 137 -3785.129 0.0e+00 4.0e-01 0.050779 - 138 -3784.428 0.0e+00 8.0e-01 0.051825 - 139 -3780.444 0.0e+00 8.0e-01 0.061091 - 140 -3789.482 0.0e+00 6.0e-01 0.030334 - 141 -3793.330 0.0e+00 4.0e-01 0.041300 - 142 -3806.120 0.0e+00 6.0e-01 0.075013 - 143 -3794.395 0.0e+00 6.0e-01 0.057389 - 144 -3780.075 0.0e+00 8.0e-01 0.078136 - 145 -3775.411 0.0e+00 2.0e-01 0.059778 - 146 -3770.718 0.0e+00 8.0e-01 0.061010 - 147 -3787.710 0.0e+00 6.0e-01 0.046676 - 148 -3784.415 0.0e+00 6.0e-01 0.055022 - 149 -3778.897 0.0e+00 4.0e-01 0.064859 - 150 -3774.164 0.0e+00 8.0e-01 0.088307 - 151 -3769.296 1.0e+00 6.0e-01 0.067560 - 152 -3783.333 0.0e+00 1.0e+00 0.059699 - 153 -3784.360 0.0e+00 8.0e-01 0.060929 - 154 -3772.686 0.0e+00 6.0e-01 0.053839 - 155 -3778.163 0.0e+00 6.0e-01 0.063465 - 156 -3787.678 0.0e+00 6.0e-01 0.064773 - 157 -3797.304 0.0e+00 8.0e-01 0.042905 - 158 -3776.033 0.0e+00 8.0e-01 0.058415 - 159 -3761.853 0.0e+00 4.0e-01 0.068860 - 160 -3761.480 0.0e+00 8.0e-01 0.052682 - 161 -3772.897 0.0e+00 1.0e+00 0.046552 - 162 -3761.781 1.0e+00 4.0e-01 0.054875 - 163 -3750.158 0.0e+00 1.0e+00 0.056006 - 164 -3753.373 0.0e+00 4.0e-01 0.049489 - 165 -3763.750 1.0e+00 4.0e-01 0.050509 - 166 -3784.475 0.0e+00 1.0e+00 0.079427 - 167 -3785.106 0.0e+00 1.0e+00 0.070185 - 168 -3775.811 0.0e+00 6.0e-01 0.082734 - 169 -3758.508 1.0e+00 6.0e-01 0.073107 - 170 -3749.692 0.0e+00 4.0e-01 0.074614 - 171 -3748.731 0.0e+00 8.0e-01 0.076151 - 172 -3745.757 0.0e+00 4.0e-01 0.067290 - 173 -3730.261 0.0e+00 8.0e-01 0.068677 - 174 -3727.500 0.0e+00 8.0e-01 0.070092 - 175 -3720.234 0.0e+00 1.0e+00 0.053624 - 176 -3713.491 0.0e+00 8.0e-01 0.063212 - 177 -3714.120 0.0e+00 4.0e-01 0.055857 - 178 -3739.274 0.0e+00 4.0e-01 0.065844 - 179 -3727.604 0.0e+00 6.0e-01 0.050374 - 180 -3724.040 0.0e+00 4.0e-01 0.059381 - 181 -3726.512 0.0e+00 8.0e-01 0.080848 - 182 -3746.341 0.0e+00 6.0e-01 0.071441 - 183 -3743.999 0.0e+00 4.0e-01 0.054656 - 184 -3762.334 0.0e+00 4.0e-01 0.055782 - 185 -3775.652 0.0e+00 6.0e-01 0.056932 - 186 -3757.765 1.0e+00 4.0e-01 0.058105 - 187 -3768.766 0.0e+00 1.0e+00 0.091372 - 188 -3750.685 0.0e+00 8.0e-01 0.093255 - 189 -3740.558 0.0e+00 6.0e-01 0.082404 - 190 -3756.157 1.0e+00 4.0e-01 0.084102 - 191 -3762.877 0.0e+00 6.0e-01 0.055708 - 192 -3773.125 0.0e+00 8.0e-01 0.056856 - 193 -3769.778 0.0e+00 6.0e-01 0.067021 - 194 -3780.267 0.0e+00 2.0e-01 0.051275 - 195 -3783.277 0.0e+00 8.0e-01 0.052332 - 196 -3774.568 0.0e+00 6.0e-01 0.061689 - 197 -3780.674 0.0e+00 2.0e-01 0.054510 - 198 -3763.258 1.0e+00 1.0e+00 0.085720 - 199 -3753.619 0.0e+00 4.0e-01 0.056780 - 200 -3710.222 0.0e+00 8.0e-01 0.057950 - 201 -3730.524 0.0e+00 6.0e-01 0.038385 - 202 -3726.483 0.0e+00 6.0e-01 0.039176 - 203 -3733.478 0.0e+00 1.0e+00 0.061606 - 204 -3743.554 0.0e+00 4.0e-01 0.054438 - 205 -3754.502 0.0e+00 8.0e-01 0.098875 - 206 -3769.876 1.0e+00 6.0e-01 0.075645 - 207 -3774.106 0.0e+00 4.0e-01 0.057873 - 208 -3746.711 0.0e+00 8.0e-01 0.068220 - 209 -3763.920 0.0e+00 6.0e-01 0.080418 - 210 -3757.036 0.0e+00 4.0e-01 0.061524 - 211 -3781.399 0.0e+00 8.0e-01 0.062792 - 212 -3773.995 0.0e+00 1.0e+00 0.074019 - 213 -3773.308 0.0e+00 6.0e-01 0.049029 - 214 -3763.448 0.0e+00 8.0e-01 0.043324 - 215 -3753.225 0.0e+00 4.0e-01 0.068129 - 216 -3747.969 0.0e+00 6.0e-01 0.080311 - 217 -3730.204 0.0e+00 6.0e-01 0.070966 - 218 -3724.264 0.0e+00 8.0e-01 0.072428 - 219 -3716.910 0.0e+00 4.0e-01 0.055412 - 220 -3701.976 0.0e+00 1.0e+00 0.065319 - 221 -3696.320 0.0e+00 1.0e+00 0.057719 - 222 -3709.295 0.0e+00 6.0e-01 0.068039 - 223 -3684.540 1.0e+00 8.0e-01 0.092635 - 224 -3678.245 0.0e+00 8.0e-01 0.070871 - 225 -3689.371 0.0e+00 4.0e-01 0.083543 - 226 -3675.508 0.0e+00 4.0e-01 0.047911 - 227 -3664.092 0.0e+00 8.0e-01 0.065232 - 228 -3687.212 1.0e+00 6.0e-01 0.066576 - 229 -3675.789 0.0e+00 2.0e-01 0.050934 - 230 -3691.580 0.0e+00 6.0e-01 0.092512 - 231 -3705.979 0.0e+00 1.0e+00 0.081747 - 232 -3680.725 0.0e+00 6.0e-01 0.046882 - 233 -3685.298 0.0e+00 8.0e-01 0.073724 - 234 -3709.674 0.0e+00 0.0e+00 0.056403 - 235 -3687.350 0.0e+00 4.0e-01 0.049840 - 236 -3709.087 0.0e+00 8.0e-01 0.078375 - 237 -3710.757 0.0e+00 8.0e-01 0.079990 - 238 -3715.134 0.0e+00 2.0e-01 0.070682 - 239 -3744.154 0.0e+00 1.0e+00 0.062458 - 240 -3748.320 0.0e+00 1.0e+00 0.085037 - 241 -3729.778 0.0e+00 6.0e-01 0.075142 - 242 -3725.670 0.0e+00 1.0e+00 0.088578 - 243 -3720.673 0.0e+00 1.0e+00 0.050799 - 244 -3747.327 0.0e+00 1.0e+00 0.051846 - 245 -3737.666 0.0e+00 8.0e-01 0.081530 - 246 -3732.087 0.0e+00 8.0e-01 0.072043 - 247 -3716.902 0.0e+00 1.0e+00 0.055117 - 248 -3737.774 0.0e+00 1.0e+00 0.086674 - 249 -3730.718 0.0e+00 6.0e-01 0.088460 - 250 -3727.279 0.0e+00 4.0e-01 0.043923 - 251 -3718.843 0.0e+00 6.0e-01 0.059802 - 252 -3718.690 0.0e+00 4.0e-01 0.061034 - 253 -3709.168 0.0e+00 8.0e-01 0.046694 - 254 -3711.905 0.0e+00 6.0e-01 0.063575 - 255 -3717.334 0.0e+00 1.0e+00 0.064885 - 256 -3735.511 0.0e+00 6.0e-01 0.076486 - 257 -3719.203 0.0e+00 4.0e-01 0.058516 - 258 -3721.657 0.0e+00 2.0e-01 0.079671 - 259 -3723.383 1.0e+00 6.0e-01 0.045691 - 260 -3732.024 1.0e+00 8.0e-01 0.062209 - 261 -3746.038 0.0e+00 8.0e-01 0.073331 - 262 -3735.285 0.0e+00 6.0e-01 0.042055 - 263 -3728.452 0.0e+00 6.0e-01 0.057259 - 264 -3738.065 1.0e+00 4.0e-01 0.058438 - 265 -3731.135 0.0e+00 2.0e-01 0.051639 - 266 -3734.995 0.0e+00 4.0e-01 0.045630 - 267 -3751.828 1.0e+00 8.0e-01 0.053788 - 268 -3755.531 0.0e+00 8.0e-01 0.063406 - 269 -3759.178 0.0e+00 8.0e-01 0.048509 - 270 -3745.865 0.0e+00 1.0e+00 0.066046 - 271 -3769.565 0.0e+00 6.0e-01 0.058361 - 272 -3771.036 0.0e+00 4.0e-01 0.059563 - 273 -3770.653 0.0e+00 6.0e-01 0.060790 - 274 -3782.947 0.0e+00 8.0e-01 0.062043 - 275 -3768.867 0.0e+00 8.0e-01 0.073136 - 276 -3772.262 1.0e+00 1.0e+00 0.074643 - 277 -3757.198 0.0e+00 1.0e+00 0.076181 - 278 -3741.587 0.0e+00 6.0e-01 0.067317 - 279 -3729.355 0.0e+00 1.0e+00 0.105859 - 280 -3755.000 0.0e+00 8.0e-01 0.070119 - 281 -3726.823 0.0e+00 2.0e-01 0.061960 - 282 -3736.325 0.0e+00 8.0e-01 0.054751 - 283 -3733.783 0.0e+00 1.0e+00 0.086098 - 284 -3745.705 0.0e+00 4.0e-01 0.049377 - 285 -3733.087 0.0e+00 6.0e-01 0.067227 - 286 -3737.383 0.0e+00 1.0e+00 0.068612 - 287 -3743.256 0.0e+00 4.0e-01 0.052492 - 288 -3730.573 0.0e+00 8.0e-01 0.046384 - 289 -3718.471 0.0e+00 4.0e-01 0.072941 - 290 -3727.431 0.0e+00 4.0e-01 0.055804 - 291 -3694.668 0.0e+00 6.0e-01 0.075978 - 292 -3693.530 0.0e+00 4.0e-01 0.067137 - 293 -3703.467 0.0e+00 8.0e-01 0.051364 - 294 -3705.682 0.0e+00 8.0e-01 0.069933 - 295 -3710.475 0.0e+00 6.0e-01 0.053502 - 296 -3714.367 0.0e+00 6.0e-01 0.047277 - 297 -3719.820 1.0e+00 6.0e-01 0.064368 - 298 -3715.425 0.0e+00 8.0e-01 0.065694 - 299 -3721.159 0.0e+00 4.0e-01 0.050260 - 300 -3718.133 0.0e+00 6.0e-01 0.059246 - 301 -3704.743 0.0e+00 2.0e-01 0.045327 - 302 -3706.917 0.0e+00 6.0e-01 0.071278 - 303 -3698.103 0.0e+00 8.0e-01 0.084023 - 304 -3699.137 0.0e+00 4.0e-01 0.064282 - 305 -3701.228 1.0e+00 2.0e-01 0.049180 - 306 -3717.713 0.0e+00 1.0e+00 0.066959 - 307 -3714.611 0.0e+00 8.0e-01 0.091165 - 308 -3705.346 0.0e+00 8.0e-01 0.069746 - 309 -3707.682 0.0e+00 6.0e-01 0.061631 - 310 -3720.721 0.0e+00 1.0e+00 0.083911 - 311 -3705.195 0.0e+00 4.0e-01 0.055581 - 312 -3692.410 0.0e+00 1.0e+00 0.065519 - 313 -3693.175 0.0e+00 1.0e+00 0.057896 - 314 -3678.808 1.0e+00 8.0e-01 0.068247 - 315 -3684.662 0.0e+00 6.0e-01 0.052213 - 316 -3705.135 0.0e+00 8.0e-01 0.053289 - 317 -3698.372 0.0e+00 1.0e+00 0.047088 - 318 -3709.428 1.0e+00 8.0e-01 0.048058 - 319 -3707.251 0.0e+00 6.0e-01 0.075574 - 320 -3716.650 0.0e+00 1.0e+00 0.057818 - 321 -3724.419 0.0e+00 6.0e-01 0.059010 - 322 -3716.526 0.0e+00 8.0e-01 0.060226 - 323 -3724.378 0.0e+00 8.0e-01 0.039893 - 324 -3718.451 0.0e+00 6.0e-01 0.047025 - 325 -3722.991 0.0e+00 6.0e-01 0.041553 - 326 -3723.741 0.0e+00 8.0e-01 0.065345 - 327 -3718.498 0.0e+00 4.0e-01 0.057741 - 328 -3713.086 0.0e+00 6.0e-01 0.051023 - 329 -3709.218 0.0e+00 8.0e-01 0.033797 - 330 -3695.001 0.0e+00 8.0e-01 0.046015 - 331 -3689.727 0.0e+00 6.0e-01 0.030479 - 332 -3692.385 0.0e+00 8.0e-01 0.047930 - 333 -3700.441 0.0e+00 8.0e-01 0.065258 - 334 -3686.540 0.0e+00 6.0e-01 0.049926 - 335 -3689.740 0.0e+00 6.0e-01 0.058853 - 336 -3685.474 0.0e+00 1.0e+00 0.052004 - 337 -3680.613 0.0e+00 4.0e-01 0.045953 - 338 -3696.918 0.0e+00 6.0e-01 0.054170 - 339 -3688.954 0.0e+00 1.0e+00 0.047866 - 340 -3693.716 0.0e+00 6.0e-01 0.042297 - 341 -3701.336 0.0e+00 8.0e-01 0.057588 - 342 -3702.666 0.0e+00 4.0e-01 0.067884 - 343 -3696.179 0.0e+00 6.0e-01 0.044966 - 344 -3686.677 0.0e+00 0.0e+00 0.053005 - 345 -3692.984 0.0e+00 4.0e-01 0.046838 - 346 -3701.219 0.0e+00 8.0e-01 0.085071 - 347 -3705.684 0.0e+00 4.0e-01 0.031664 - 348 -3691.495 0.0e+00 6.0e-01 0.037325 - 349 -3704.778 1.0e+00 8.0e-01 0.067794 - 350 -3711.365 0.0e+00 8.0e-01 0.044906 - 351 -3701.497 0.0e+00 4.0e-01 0.039680 - 352 -3692.845 0.0e+00 6.0e-01 0.054025 - 353 -3695.949 0.0e+00 6.0e-01 0.047739 - 354 -3704.371 0.0e+00 6.0e-01 0.056275 - 355 -3698.152 0.0e+00 6.0e-01 0.066336 - 356 -3707.626 0.0e+00 6.0e-01 0.058618 - 357 -3728.164 0.0e+00 1.0e+00 0.059825 - 358 -3719.003 0.0e+00 8.0e-01 0.052864 - 359 -3703.139 0.0e+00 6.0e-01 0.071975 - 360 -3692.106 0.0e+00 4.0e-01 0.047675 - 361 -3695.802 0.0e+00 4.0e-01 0.064911 - 362 -3688.800 0.0e+00 4.0e-01 0.049660 - 363 -3706.053 0.0e+00 8.0e-01 0.078093 - 364 -3710.709 0.0e+00 8.0e-01 0.069006 - 365 -3732.794 0.0e+00 1.0e+00 0.081344 - 366 -3729.170 0.0e+00 8.0e-01 0.053881 - 367 -3716.301 0.0e+00 8.0e-01 0.063515 - 368 -3710.745 0.0e+00 8.0e-01 0.086477 - 369 -3694.249 0.0e+00 1.0e+00 0.057281 - 370 -3700.308 0.0e+00 4.0e-01 0.058461 - 371 -3724.359 0.0e+00 8.0e-01 0.051659 - 372 -3729.625 0.0e+00 8.0e-01 0.070334 - 373 -3721.202 0.0e+00 4.0e-01 0.046588 - 374 -3730.963 0.0e+00 2.0e-01 0.041167 - 375 -3739.605 0.0e+00 6.0e-01 0.074772 - 376 -3748.069 0.0e+00 6.0e-01 0.076313 - 377 -3726.154 0.0e+00 6.0e-01 0.050549 - 378 -3735.244 0.0e+00 8.0e-01 0.051590 - 379 -3741.248 0.0e+00 8.0e-01 0.070241 - 380 -3738.338 0.0e+00 6.0e-01 0.053738 - 381 -3736.404 0.0e+00 8.0e-01 0.084505 - 382 -3736.662 0.0e+00 8.0e-01 0.074672 - 383 -3710.237 0.0e+00 6.0e-01 0.101667 - 384 -3725.762 0.0e+00 2.0e-01 0.058306 - 385 -3725.313 0.0e+00 1.0e+00 0.079384 - 386 -3728.950 0.0e+00 6.0e-01 0.039417 - 387 -3745.684 0.0e+00 8.0e-01 0.071592 - 388 -3729.012 0.0e+00 1.0e+00 0.063262 - 389 -3732.725 0.0e+00 4.0e-01 0.055901 - 390 -3760.881 0.0e+00 8.0e-01 0.065896 - 391 -3770.414 0.0e+00 8.0e-01 0.067253 - 392 -3769.848 0.0e+00 4.0e-01 0.059428 - 393 -3773.187 0.0e+00 1.0e+00 0.070053 - 394 -3752.826 0.0e+00 1.0e+00 0.046402 - 395 -3750.152 0.0e+00 4.0e-01 0.047359 - 396 -3732.863 0.0e+00 2.0e-01 0.055826 - 397 -3737.672 0.0e+00 1.0e+00 0.087789 - 398 -3752.304 0.0e+00 4.0e-01 0.058150 - 399 -3750.609 0.0e+00 4.0e-01 0.038518 - 400 -3760.889 0.0e+00 8.0e-01 0.060572 - 401 -3748.131 0.0e+00 4.0e-01 0.053523 - 402 -3751.729 0.0e+00 8.0e-01 0.072873 - Using HMC sampler for hyperparameters and MCMC for latent values - cycle etr hrej lrej lvScale - 2 -3546.859 0.0e+00 6.0e-02 0.125687 - Using HMC sampler for hyperparameters and MCMC for latent values - cycle etr hrej lrej lvScale - 3 -3553.563 0.0e+00 0.0e+00 0.179264 - 4 -3572.433 0.0e+00 0.0e+00 0.214237 - 5 -3523.501 0.0e+00 1.0e-01 0.256033 - 6 -3619.135 0.0e+00 2.5e-01 0.305983 - 7 -3566.772 0.0e+00 1.0e-01 0.179326 - 8 -3604.777 1.0e+00 5.0e-02 0.214311 - 9 -3564.579 0.0e+00 5.0e-02 0.179357 - 10 -3569.154 0.0e+00 0.0e+00 0.214348 - 11 -3546.679 0.0e+00 1.0e-01 0.256165 - 12 -3623.375 0.0e+00 1.0e-01 0.214385 - 13 -3616.679 0.0e+00 2.0e-01 0.125643 - 14 -3625.434 0.0e+00 5.0e-02 0.105151 - 15 -3641.577 0.0e+00 0.0e+00 0.125665 - 16 -3587.926 0.0e+00 5.0e-02 0.150181 - 17 -3620.766 0.0e+00 0.0e+00 0.179480 - 18 -3600.002 1.0e+00 5.0e-02 0.214496 - 19 -3649.535 0.0e+00 1.0e-01 0.125708 - 20 -3630.994 0.0e+00 5.0e-02 0.150233 - 21 -3630.374 0.0e+00 0.0e+00 0.179542 - 22 -3619.010 0.0e+00 0.0e+00 0.214570 - 23 -3555.384 0.0e+00 5.0e-02 0.179573 - 24 -3587.871 0.0e+00 1.0e-01 0.214607 - 25 -3589.657 0.0e+00 5.0e-02 0.179604 - 26 -3604.577 0.0e+00 0.0e+00 0.214644 - 27 -3595.302 0.0e+00 5.0e-02 0.179635 - 28 -3605.356 0.0e+00 1.0e-01 0.150337 - 29 -3596.330 1.0e+00 2.0e-01 0.125817 - 30 -3552.534 0.0e+00 5.0e-02 0.105296 - 31 -3544.548 0.0e+00 0.0e+00 0.125838 - 32 -3598.823 1.0e+00 0.0e+00 0.150388 - 33 -3611.053 0.0e+00 0.0e+00 0.179728 - 34 -3592.953 0.0e+00 1.0e-01 0.214792 - 35 -3640.496 0.0e+00 0.0e+00 0.256696 - 36 -3608.115 0.0e+00 1.5e-01 0.306776 - 37 -3608.110 1.0e+00 0.0e+00 0.366625 - 38 -3606.910 0.0e+00 2.5e-01 0.306828 - 39 -3584.905 0.0e+00 5.0e-02 0.256785 - 40 -3578.951 0.0e+00 1.0e-01 0.214903 - 41 -3629.357 0.0e+00 5.0e-02 0.179852 - 42 -3622.591 1.0e+00 0.0e+00 0.214940 - 43 -3617.690 0.0e+00 1.0e-01 0.256873 - 44 -3671.473 0.0e+00 5.0e-02 0.214977 - 45 -3544.613 0.0e+00 1.5e-01 0.125990 - 46 -3543.886 1.0e+00 5.0e-02 0.150570 - 47 -3578.844 1.0e+00 0.0e+00 0.179945 - 48 -3586.392 1.0e+00 0.0e+00 0.215051 - 49 -3568.503 1.0e+00 1.5e-01 0.257006 - 50 -3583.069 0.0e+00 1.0e-01 0.215088 - 51 -3593.919 0.0e+00 5.0e-02 0.180007 - 52 -3560.095 0.0e+00 0.0e+00 0.215125 - 53 -3619.776 0.0e+00 5.0e-02 0.257095 - 54 -3611.814 0.0e+00 2.0e-01 0.307252 - 55 -3618.396 0.0e+00 5.0e-02 0.367195 - 56 -3606.316 0.0e+00 1.5e-01 0.438831 - 57 -3583.648 0.0e+00 5.0e-02 0.367258 - 58 -3581.269 0.0e+00 1.0e-01 0.215237 - 59 -3619.048 0.0e+00 0.0e+00 0.257228 - 60 -3596.755 0.0e+00 1.0e-01 0.215274 - 61 -3612.793 0.0e+00 1.5e-01 0.180163 - 62 -3628.661 0.0e+00 0.0e+00 0.215311 - 63 -3583.840 0.0e+00 5.0e-02 0.180194 - 64 -3575.540 0.0e+00 0.0e+00 0.215348 - 65 -3596.618 0.0e+00 5.0e-02 0.180225 - 66 -3590.817 0.0e+00 5.0e-02 0.150830 - 67 -3620.793 0.0e+00 1.0e-01 0.126230 - 68 -3608.739 0.0e+00 0.0e+00 0.150856 - 69 -3613.657 0.0e+00 0.0e+00 0.180287 - 70 -3597.147 1.0e+00 0.0e+00 0.215459 - 71 -3555.650 0.0e+00 5.0e-02 0.257494 - 72 -3594.045 0.0e+00 1.5e-01 0.150908 - 73 -3543.667 1.0e+00 5.0e-02 0.180349 - 74 -3595.043 0.0e+00 1.0e-01 0.215534 - 75 -3572.348 1.0e+00 1.5e-01 0.257583 - 76 -3586.976 1.0e+00 5.0e-02 0.215571 - 77 -3566.529 0.0e+00 0.0e+00 0.257627 - 78 -3538.982 0.0e+00 1.0e-01 0.150986 - 79 -3560.281 0.0e+00 1.0e-01 0.088488 - 80 -3574.456 0.0e+00 5.0e-02 0.074055 - 81 -3568.635 0.0e+00 0.0e+00 0.088503 - 82 -3543.400 0.0e+00 1.0e-01 0.051868 - 83 -3560.974 0.0e+00 5.0e-02 0.061987 - 84 -3549.470 0.0e+00 0.0e+00 0.074081 - 85 -3545.856 0.0e+00 0.0e+00 0.088533 - 86 -3515.315 1.0e+00 5.0e-02 0.105805 - 87 -3527.291 1.0e+00 5.0e-02 0.088549 - 88 -3515.009 0.0e+00 0.0e+00 0.105824 - 89 -3532.274 0.0e+00 0.0e+00 0.126469 - 90 -3518.899 0.0e+00 0.0e+00 0.151142 - 91 -3511.339 0.0e+00 5.0e-02 0.180629 - 92 -3529.833 0.0e+00 0.0e+00 0.215868 - 93 -3565.562 0.0e+00 5.0e-02 0.180660 - 94 -3603.658 0.0e+00 0.0e+00 0.215906 - 95 -3595.164 0.0e+00 5.0e-02 0.180691 - 96 -3539.675 0.0e+00 0.0e+00 0.215943 - 97 -3608.294 0.0e+00 5.0e-02 0.180723 - 98 -3585.861 0.0e+00 0.0e+00 0.215980 - 99 -3594.425 1.0e+00 0.0e+00 0.258116 - 100 -3596.381 0.0e+00 5.0e-02 0.216017 - 101 -3589.803 0.0e+00 1.0e-01 0.258161 - 102 -3619.482 0.0e+00 5.0e-02 0.216055 - 103 -3570.690 0.0e+00 1.0e-01 0.180816 - 104 -3545.787 1.0e+00 1.0e-01 0.216092 - 105 -3515.888 0.0e+00 5.0e-02 0.180847 - 106 -3547.241 0.0e+00 5.0e-02 0.151351 - 107 -3528.950 1.0e+00 5.0e-02 0.126666 - 108 -3526.869 0.0e+00 0.0e+00 0.151377 - 109 -3544.864 0.0e+00 5.0e-02 0.180910 - 110 -3536.383 0.0e+00 0.0e+00 0.216204 - 111 -3585.555 0.0e+00 5.0e-02 0.180941 - 112 -3541.398 0.0e+00 0.0e+00 0.216241 - 113 -3551.327 0.0e+00 5.0e-02 0.180972 - 114 -3476.261 0.0e+00 0.0e+00 0.216278 - 115 -3512.409 0.0e+00 5.0e-02 0.181003 - 116 -3544.347 0.0e+00 0.0e+00 0.216316 - 117 -3506.505 0.0e+00 1.0e-01 0.181034 - 118 -3511.628 0.0e+00 0.0e+00 0.216353 - 119 -3502.283 0.0e+00 1.0e-01 0.181066 - 120 -3510.560 0.0e+00 5.0e-02 0.216390 - 121 -3495.075 1.0e+00 1.0e-01 0.258606 - 122 -3444.407 0.0e+00 5.0e-02 0.216428 - 123 -3525.211 0.0e+00 2.0e-01 0.258651 - 124 -3520.949 0.0e+00 2.0e-01 0.216465 - 125 -3519.523 0.0e+00 5.0e-02 0.181159 - 126 -3492.608 0.0e+00 5.0e-02 0.216502 - 127 -3443.437 1.0e+00 1.5e-01 0.258740 - 128 -3473.191 0.0e+00 1.0e-01 0.216540 - 129 -3445.220 0.0e+00 5.0e-02 0.181222 - 130 -3471.242 0.0e+00 5.0e-02 0.216577 - 131 -3450.983 1.0e+00 0.0e+00 0.258829 - 132 -3477.064 1.0e+00 1.5e-01 0.216614 - 133 -3443.047 0.0e+00 1.5e-01 0.126950 - 134 -3521.749 1.0e+00 5.0e-02 0.106244 - 135 -3543.283 0.0e+00 5.0e-02 0.088916 - 136 -3516.085 0.0e+00 0.0e+00 0.106263 - 137 -3496.080 0.0e+00 1.0e-01 0.126994 - 138 -3557.043 0.0e+00 5.0e-02 0.151769 - 139 -3494.817 0.0e+00 1.0e-01 0.127016 - 140 -3530.436 0.0e+00 1.0e-01 0.151795 - 141 -3498.561 1.0e+00 0.0e+00 0.181409 - 142 -3525.235 0.0e+00 0.0e+00 0.216801 - 143 -3514.645 0.0e+00 5.0e-02 0.181441 - 144 -3461.475 0.0e+00 5.0e-02 0.216838 - 145 -3467.901 0.0e+00 5.0e-02 0.181472 - 146 -3458.071 0.0e+00 0.0e+00 0.216876 - 147 -3494.490 0.0e+00 1.5e-01 0.259187 - 148 -3527.754 0.0e+00 5.0e-02 0.216913 - 149 -3520.285 0.0e+00 0.0e+00 0.259231 - 150 -3508.842 0.0e+00 1.0e-01 0.216951 - 151 -3490.882 0.0e+00 0.0e+00 0.259276 - 152 -3523.176 0.0e+00 1.0e-01 0.216988 - 153 -3539.945 0.0e+00 5.0e-02 0.181597 - 154 -3467.065 0.0e+00 0.0e+00 0.217025 - 155 -3514.794 0.0e+00 0.0e+00 0.259366 - 156 -3542.491 0.0e+00 1.5e-01 0.152005 - 157 -3505.487 0.0e+00 5.0e-02 0.181660 - 158 -3478.542 1.0e+00 1.0e-01 0.152031 - 159 -3475.046 0.0e+00 5.0e-02 0.127235 - 160 -3497.219 0.0e+00 5.0e-02 0.152057 - 161 -3511.755 0.0e+00 5.0e-02 0.181722 - 162 -3488.256 0.0e+00 1.0e-01 0.217175 - 163 -3518.694 0.0e+00 5.0e-02 0.259544 - 164 -3524.963 0.0e+00 0.0e+00 0.310180 - 165 -3501.020 0.0e+00 1.0e-01 0.181785 - 166 -3509.842 0.0e+00 5.0e-02 0.217250 - 167 -3504.392 0.0e+00 0.0e+00 0.259634 - 168 -3499.712 0.0e+00 5.0e-02 0.217288 - 169 -3472.272 0.0e+00 0.0e+00 0.259679 - 170 -3487.399 0.0e+00 1.5e-01 0.310340 - 171 -3501.195 0.0e+00 1.0e-01 0.259724 - 172 -3528.694 0.0e+00 0.0e+00 0.310394 - 173 -3487.743 0.0e+00 1.0e-01 0.181911 - 174 -3443.119 0.0e+00 0.0e+00 0.217400 - 175 -3466.950 0.0e+00 1.5e-01 0.181942 - 176 -3453.988 0.0e+00 5.0e-02 0.217437 - 177 -3439.164 0.0e+00 5.0e-02 0.181973 - 178 -3376.121 0.0e+00 0.0e+00 0.217475 - 179 -3401.337 0.0e+00 1.0e-01 0.259903 - 180 -3462.778 0.0e+00 5.0e-02 0.217512 - 181 -3448.675 0.0e+00 5.0e-02 0.259948 - 182 -3447.430 0.0e+00 1.0e-01 0.217550 - 183 -3475.872 0.0e+00 5.0e-02 0.182067 - 184 -3502.555 0.0e+00 1.0e-01 0.217587 - 185 -3487.736 0.0e+00 5.0e-02 0.182099 - 186 -3508.070 0.0e+00 5.0e-02 0.152398 - 187 -3531.568 0.0e+00 0.0e+00 0.182130 - 188 -3468.904 0.0e+00 0.0e+00 0.217663 - 189 -3552.292 1.0e+00 5.0e-02 0.260127 - 190 -3522.526 0.0e+00 5.0e-02 0.217700 - 191 -3449.378 0.0e+00 1.5e-01 0.260172 - 192 -3482.642 0.0e+00 1.0e-01 0.217738 - 193 -3447.347 0.0e+00 0.0e+00 0.260217 - 194 -3545.778 0.0e+00 5.0e-02 0.217775 - 195 -3454.657 0.0e+00 1.5e-01 0.260261 - 196 -3507.440 0.0e+00 1.0e-01 0.217813 - 197 -3475.018 0.0e+00 5.0e-02 0.182287 - 198 -3513.142 0.0e+00 0.0e+00 0.217850 - 199 -3480.068 0.0e+00 5.0e-02 0.182319 - 200 -3529.343 1.0e+00 0.0e+00 0.217888 - 201 -3492.161 0.0e+00 1.0e-01 0.260396 - 202 -3497.105 0.0e+00 1.5e-01 0.311198 - - gp hyperparameters: - - 2.8831 -0.6152 -0.5214 1.5709 1.6167 - -Demo completed in 42.562 minutes diff --git a/tests/realValues/multiclass_fig1.fig b/tests/realValues/multiclass_fig1.fig deleted file mode 100644 index 8686a9ae..00000000 Binary files a/tests/realValues/multiclass_fig1.fig and /dev/null differ diff --git a/tests/realValues/multiclass_fig2.fig b/tests/realValues/multiclass_fig2.fig deleted file mode 100644 index 165b1385..00000000 Binary files a/tests/realValues/multiclass_fig2.fig and /dev/null differ diff --git a/tests/realValues/multiclass_fig3.fig b/tests/realValues/multiclass_fig3.fig deleted file mode 100644 index baf1cb0c..00000000 Binary files a/tests/realValues/multiclass_fig3.fig and /dev/null differ diff --git a/tests/realValues/multiclass_nested_ep.mat b/tests/realValues/multiclass_nested_ep.mat deleted file mode 100644 index b79ad363..00000000 Binary files a/tests/realValues/multiclass_nested_ep.mat and /dev/null differ diff --git a/tests/realValues/multiclass_nested_ep.txt b/tests/realValues/multiclass_nested_ep.txt deleted file mode 100644 index 2d73c1a0..00000000 --- a/tests/realValues/multiclass_nested_ep.txt +++ /dev/null @@ -1,23 +0,0 @@ -Optimize the hyperparameters - Iteration Func-count Grad-count f(x) Step-size - 0 1 1 145.286 - 1 2 2 106.602 0.0541548 - 2 5 5 102.985 0.120757 - 3 8 8 98.2436 0.0807225 - 4 10 10 98.0724 0.254374 - 5 11 11 98.0559 1 - 6 12 12 98.0407 1 - 7 14 14 98.0398 0.216519 - Optimizer Results - Algorithm Used: Broyden-Fletcher-Goldfarb-Shanno (BFGS) - Exit message : Change in x was smaller than the specified tolerance TolX. - Iterations : 8 - Function Count : 15 - Minimum found : 98.0398 - Intern Time : 0.010704 seconds - Total Time : 60.4646 seconds - -Optimized magnitude sigma^2: 13.1109 -Optimized lengthscales: 0.58525 0.64233 4.8782 4.3622 -The percentage of misclassified points: 0.1525 -Demo completed in 1.082 minutes diff --git a/tests/realValues/multiclass_nested_ep_fig1.fig b/tests/realValues/multiclass_nested_ep_fig1.fig deleted file mode 100644 index 01f506c1..00000000 Binary files a/tests/realValues/multiclass_nested_ep_fig1.fig and /dev/null differ diff --git a/tests/realValues/multinom.txt b/tests/realValues/multinom.txt deleted file mode 100644 index b5b362ed..00000000 --- a/tests/realValues/multinom.txt +++ /dev/null @@ -1,435 +0,0 @@ - Iteration Func-count f(x) Lambda - 0 1 667.05 - 1 3 666.162 10 - 2 5 666.133 5 - 3 7 666.049 2.5 - 4 9 665.97 1.25 - 5 11 665.77 0.625 - 6 13 665.562 0.312 - 7 15 665.52 0.156 - 8 17 665.422 0.0781 - 9 19 665.396 0.0391 - 10 21 665.388 0.0195 - 11 23 665.375 0.00977 - 12 25 665.373 0.00488 - 13 27 665.372 0.00244 - 14 29 665.362 0.00122 - 15 31 665.362 0.00061 - 16 33 665.36 0.000305 - 17 35 665.36 0.000153 - 18 37 665.359 7.63e-05 - 19 39 665.359 3.81e-05 - Iteration Func-count f(x) Lambda - 20 41 665.359 1.91e-05 - TolFun reached. Func-count 41. Final f(x)=665.359. Elapsed time 2.47 - Using HMC sampler for hyperparameters and MCMC for latent values - cycle etr hrej lrej lvScale - 2 156.741 0.0e+00 6.6e-01 0.010430 - Using HMC sampler for hyperparameters and MCMC for latent values - cycle etr hrej lrej lvScale - 3 149.953 0.0e+00 8.0e-01 0.007839 - 4 147.362 0.0e+00 8.0e-01 0.010673 - 5 148.822 1.0e+00 4.0e-01 0.010893 - 6 148.372 0.0e+00 1.0e+00 0.012840 - 7 139.237 0.0e+00 1.0e+00 0.015136 - 8 142.246 0.0e+00 8.0e-01 0.011580 - 9 138.938 0.0e+00 6.0e-01 0.008859 - 10 130.069 0.0e+00 6.0e-01 0.010444 - 11 134.682 0.0e+00 6.0e-01 0.012311 - 12 142.648 0.0e+00 6.0e-01 0.014512 - 13 147.244 0.0e+00 6.0e-01 0.011102 - 14 141.776 0.0e+00 8.0e-01 0.013088 - 15 153.127 0.0e+00 6.0e-01 0.015428 - 16 158.535 0.0e+00 4.0e-01 0.011803 - 17 158.152 0.0e+00 2.0e-01 0.010430 - 18 145.927 0.0e+00 2.0e-01 0.010644 - 19 146.203 0.0e+00 4.0e-01 0.009406 - 20 147.244 0.0e+00 4.0e-01 0.012806 - 21 151.305 0.0e+00 8.0e-01 0.011316 - 22 154.570 0.0e+00 4.0e-01 0.011549 - 23 156.650 0.0e+00 8.0e-01 0.008836 - 24 146.018 0.0e+00 8.0e-01 0.013895 - 25 140.781 0.0e+00 8.0e-01 0.012278 - 26 143.985 0.0e+00 1.0e+00 0.012531 - 27 141.999 0.0e+00 6.0e-01 0.014772 - 28 143.170 0.0e+00 6.0e-01 0.009784 - 29 146.030 0.0e+00 8.0e-01 0.011534 - 30 145.303 0.0e+00 6.0e-01 0.011772 - 31 147.656 0.0e+00 4.0e-01 0.010402 - 32 151.534 0.0e+00 6.0e-01 0.012262 - 33 154.844 0.0e+00 6.0e-01 0.010835 - 34 158.504 1.0e+00 4.0e-01 0.011058 - 35 151.869 1.0e+00 8.0e-01 0.015056 - 36 157.102 0.0e+00 1.0e+00 0.011519 - 37 160.149 1.0e+00 8.0e-01 0.011756 - 38 158.809 0.0e+00 8.0e-01 0.021352 - 39 145.627 0.0e+00 2.0e-01 0.012245 - 40 149.604 0.0e+00 6.0e-01 0.012498 - 41 152.599 1.0e+00 8.0e-01 0.009561 - 42 153.324 0.0e+00 2.0e-01 0.009758 - 43 149.979 0.0e+00 8.0e-01 0.011503 - 44 148.201 0.0e+00 4.0e-01 0.008801 - 45 152.560 0.0e+00 6.0e-01 0.013839 - 46 157.084 0.0e+00 1.0e+00 0.014124 - 47 163.450 0.0e+00 4.0e-01 0.008100 - 48 171.495 1.0e+00 6.0e-01 0.011029 - 49 173.397 0.0e+00 4.0e-01 0.009745 - 50 158.901 0.0e+00 8.0e-01 0.009946 - 51 165.245 0.0e+00 8.0e-01 0.010151 - 52 164.895 0.0e+00 6.0e-01 0.013821 - 53 161.485 0.0e+00 8.0e-01 0.012213 - 54 162.608 0.0e+00 6.0e-01 0.012464 - 55 165.864 0.0e+00 4.0e-01 0.012721 - 56 167.574 0.0e+00 8.0e-01 0.011241 - 57 160.999 0.0e+00 4.0e-01 0.011473 - 58 164.095 0.0e+00 4.0e-01 0.007599 - 59 161.170 0.0e+00 6.0e-01 0.015942 - 60 162.298 0.0e+00 8.0e-01 0.009143 - 61 166.214 0.0e+00 4.0e-01 0.010777 - 62 168.157 0.0e+00 6.0e-01 0.008245 - 63 172.407 0.0e+00 4.0e-01 0.009719 - 64 171.735 0.0e+00 6.0e-01 0.011457 - 65 173.042 1.0e+00 8.0e-01 0.011693 - 66 173.106 1.0e+00 4.0e-01 0.010333 - 67 170.477 0.0e+00 6.0e-01 0.006844 - 68 174.691 0.0e+00 1.0e+00 0.016583 - 69 172.799 1.0e+00 4.0e-01 0.012687 - 70 171.915 0.0e+00 6.0e-01 0.008404 - 71 173.346 1.0e+00 6.0e-01 0.013216 - 72 176.508 1.0e+00 6.0e-01 0.010111 - 73 174.215 0.0e+00 6.0e-01 0.008934 - 74 169.975 0.0e+00 2.0e-01 0.009118 - 75 169.420 1.0e+00 6.0e-01 0.008057 - 76 174.345 0.0e+00 6.0e-01 0.012670 - 77 175.182 0.0e+00 8.0e-01 0.007266 - 78 180.928 0.0e+00 8.0e-01 0.015244 - 79 180.765 0.0e+00 4.0e-01 0.011662 - 80 184.515 0.0e+00 2.0e-01 0.011902 - 81 179.514 0.0e+00 2.0e-01 0.009106 - 82 183.132 0.0e+00 6.0e-01 0.014320 - 83 186.510 0.0e+00 6.0e-01 0.010955 - 84 177.087 0.0e+00 4.0e-01 0.009681 - 85 175.979 1.0e+00 8.0e-01 0.011412 - 86 180.064 0.0e+00 8.0e-01 0.008730 - 87 178.666 1.0e+00 0.0e+00 0.008910 - 88 180.462 1.0e+00 2.0e-01 0.012132 - 89 184.765 0.0e+00 4.0e-01 0.010720 - 90 188.743 0.0e+00 8.0e-01 0.014595 - 91 198.627 0.0e+00 8.0e-01 0.011166 - 92 193.849 0.0e+00 8.0e-01 0.011396 - 93 199.980 1.0e+00 4.0e-01 0.011631 - 94 191.935 0.0e+00 6.0e-01 0.013711 - 95 184.075 0.0e+00 4.0e-01 0.010490 - 96 188.920 0.0e+00 8.0e-01 0.010706 - 97 190.659 0.0e+00 6.0e-01 0.012620 - 98 186.523 1.0e+00 1.0e+00 0.011151 - 99 181.855 0.0e+00 4.0e-01 0.011381 - 100 185.423 0.0e+00 2.0e-01 0.010057 - 101 184.956 0.0e+00 8.0e-01 0.013692 - 102 199.852 0.0e+00 1.0e+00 0.018642 - 103 205.680 0.0e+00 1.0e+00 0.016473 - 104 205.774 0.0e+00 8.0e-01 0.014556 - 105 191.932 0.0e+00 6.0e-01 0.014856 - 106 191.512 0.0e+00 6.0e-01 0.011366 - 107 191.469 0.0e+00 4.0e-01 0.011600 - 108 195.797 1.0e+00 8.0e-01 0.018242 - 109 194.657 1.0e+00 6.0e-01 0.007842 - 110 186.386 0.0e+00 8.0e-01 0.012332 - 111 183.688 0.0e+00 8.0e-01 0.010897 - 112 188.002 0.0e+00 6.0e-01 0.014837 - 113 182.836 0.0e+00 8.0e-01 0.013110 - 114 189.582 0.0e+00 2.0e-01 0.007519 - 115 188.144 0.0e+00 4.0e-01 0.010237 - 116 181.400 0.0e+00 6.0e-01 0.007832 - 117 187.523 0.0e+00 6.0e-01 0.010663 - 118 181.253 1.0e+00 6.0e-01 0.010883 - 119 197.603 1.0e+00 6.0e-01 0.009616 - 120 189.672 1.0e+00 8.0e-01 0.009814 - 121 193.255 0.0e+00 6.0e-01 0.007509 - 122 191.071 0.0e+00 8.0e-01 0.011808 - 123 197.850 0.0e+00 6.0e-01 0.007821 - 124 197.173 0.0e+00 6.0e-01 0.009220 - 125 194.622 0.0e+00 8.0e-01 0.012553 - 126 200.623 0.0e+00 6.0e-01 0.009603 - 127 197.163 0.0e+00 6.0e-01 0.007347 - 128 193.468 0.0e+00 6.0e-01 0.007499 - 129 198.643 0.0e+00 6.0e-01 0.006626 - 130 197.104 0.0e+00 6.0e-01 0.010420 - 131 194.725 0.0e+00 1.0e+00 0.012283 - 132 200.355 0.0e+00 1.0e+00 0.012536 - 133 204.499 0.0e+00 8.0e-01 0.011077 - 134 199.043 0.0e+00 1.0e+00 0.008475 - 135 199.557 0.0e+00 8.0e-01 0.009990 - 136 207.263 0.0e+00 2.0e-01 0.006617 - 137 200.371 1.0e+00 1.0e+00 0.009009 - 138 198.157 1.0e+00 8.0e-01 0.010620 - 139 198.883 0.0e+00 8.0e-01 0.008125 - 140 205.275 0.0e+00 8.0e-01 0.012777 - 141 196.914 1.0e+00 4.0e-01 0.009775 - 142 200.531 0.0e+00 6.0e-01 0.008638 - 143 206.378 0.0e+00 8.0e-01 0.007633 - 144 212.963 1.0e+00 4.0e-01 0.007790 - 145 213.121 0.0e+00 8.0e-01 0.009183 - 146 221.572 0.0e+00 4.0e-01 0.007025 - 147 228.156 0.0e+00 8.0e-01 0.008282 - 148 219.081 0.0e+00 6.0e-01 0.009762 - 149 211.730 0.0e+00 4.0e-01 0.006466 - 150 212.854 0.0e+00 6.0e-01 0.008804 - 151 207.781 0.0e+00 2.0e-01 0.010378 - 152 217.767 0.0e+00 6.0e-01 0.009171 - 153 212.309 0.0e+00 8.0e-01 0.009360 - 154 213.229 0.0e+00 1.0e+00 0.009552 - 155 217.119 1.0e+00 8.0e-01 0.009749 - 156 212.965 0.0e+00 6.0e-01 0.008615 - 157 218.597 1.0e+00 1.0e+00 0.011729 - 158 219.487 0.0e+00 6.0e-01 0.008973 - 159 216.751 0.0e+00 6.0e-01 0.009158 - 160 225.131 0.0e+00 8.0e-01 0.010796 - 161 224.333 0.0e+00 8.0e-01 0.011018 - 162 228.613 0.0e+00 6.0e-01 0.011245 - 163 225.752 0.0e+00 6.0e-01 0.011477 - 164 215.479 0.0e+00 8.0e-01 0.008781 - 165 214.782 1.0e+00 8.0e-01 0.010351 - 166 214.933 0.0e+00 0.0e+00 0.007919 - 167 220.191 1.0e+00 8.0e-01 0.009335 - 168 221.324 0.0e+00 1.0e+00 0.009527 - 169 214.574 0.0e+00 6.0e-01 0.009723 - 170 222.213 0.0e+00 6.0e-01 0.009924 - 171 227.018 0.0e+00 8.0e-01 0.007592 - 172 222.231 0.0e+00 6.0e-01 0.008950 - 173 220.035 0.0e+00 4.0e-01 0.014074 - 174 214.461 0.0e+00 4.0e-01 0.009322 - 175 222.390 0.0e+00 6.0e-01 0.008237 - 176 220.229 0.0e+00 8.0e-01 0.012954 - 177 219.790 1.0e+00 6.0e-01 0.009910 - 178 222.420 1.0e+00 4.0e-01 0.007582 - 179 224.933 1.0e+00 6.0e-01 0.008938 - 180 224.942 1.0e+00 4.0e-01 0.010536 - 181 232.543 0.0e+00 2.0e-01 0.010753 - 182 222.190 0.0e+00 4.0e-01 0.008226 - 183 221.722 0.0e+00 8.0e-01 0.012937 - 184 218.829 1.0e+00 6.0e-01 0.011431 - 185 213.759 0.0e+00 8.0e-01 0.010101 - 186 218.961 1.0e+00 6.0e-01 0.007728 - 187 217.089 1.0e+00 4.0e-01 0.007887 - 188 214.426 0.0e+00 6.0e-01 0.008050 - 189 220.135 0.0e+00 8.0e-01 0.012658 - 190 217.947 0.0e+00 6.0e-01 0.009684 - 191 218.909 0.0e+00 6.0e-01 0.011416 - 192 227.147 0.0e+00 2.0e-01 0.011651 - 193 220.770 0.0e+00 2.0e-01 0.007718 - 194 224.109 1.0e+00 8.0e-01 0.012136 - 195 224.455 0.0e+00 6.0e-01 0.010724 - 196 227.509 0.0e+00 8.0e-01 0.010945 - 197 232.729 0.0e+00 6.0e-01 0.011171 - 198 223.208 0.0e+00 8.0e-01 0.006406 - 199 230.646 0.0e+00 4.0e-01 0.006538 - 200 232.548 0.0e+00 1.0e+00 0.010282 - 201 229.470 0.0e+00 6.0e-01 0.006811 - 202 230.399 0.0e+00 2.0e-01 0.008028 - 203 231.355 1.0e+00 4.0e-01 0.009464 - 204 241.935 0.0e+00 6.0e-01 0.012885 - 205 238.580 1.0e+00 4.0e-01 0.008535 - 206 242.889 1.0e+00 1.0e+00 0.010061 - 207 232.102 0.0e+00 6.0e-01 0.011860 - 208 224.876 0.0e+00 8.0e-01 0.010480 - 209 234.434 1.0e+00 1.0e+00 0.014268 - 210 233.074 0.0e+00 8.0e-01 0.014562 - 211 241.748 1.0e+00 8.0e-01 0.011141 - 212 241.469 1.0e+00 4.0e-01 0.011370 - 213 231.886 0.0e+00 8.0e-01 0.013403 - 214 229.974 0.0e+00 6.0e-01 0.008878 - 215 234.781 0.0e+00 4.0e-01 0.012088 - 216 237.931 0.0e+00 2.0e-01 0.009248 - 217 239.706 0.0e+00 2.0e-01 0.009438 - 218 234.219 0.0e+00 1.0e+00 0.012851 - 219 234.878 1.0e+00 6.0e-01 0.009831 - 220 232.927 0.0e+00 6.0e-01 0.007522 - 221 235.485 0.0e+00 1.0e+00 0.013661 - 222 236.736 0.0e+00 8.0e-01 0.012072 - 223 233.293 1.0e+00 1.0e+00 0.007996 - 224 231.648 0.0e+00 4.0e-01 0.009426 - 225 234.705 1.0e+00 8.0e-01 0.009620 - 226 236.161 0.0e+00 1.0e+00 0.009818 - 227 241.674 0.0e+00 6.0e-01 0.011574 - 228 234.566 1.0e+00 6.0e-01 0.008855 - 229 226.260 0.0e+00 1.0e+00 0.010438 - 230 223.157 0.0e+00 4.0e-01 0.006914 - 231 228.623 0.0e+00 4.0e-01 0.010872 - 232 232.463 1.0e+00 4.0e-01 0.008318 - 233 239.122 0.0e+00 6.0e-01 0.007350 - 234 234.880 0.0e+00 8.0e-01 0.008664 - 235 234.098 0.0e+00 8.0e-01 0.011797 - 236 241.289 0.0e+00 1.0e+00 0.013906 - 237 239.993 0.0e+00 6.0e-01 0.009211 - 238 245.382 0.0e+00 6.0e-01 0.009401 - 239 250.210 0.0e+00 6.0e-01 0.007192 - 240 249.312 0.0e+00 4.0e-01 0.007340 - 241 242.819 0.0e+00 6.0e-01 0.007492 - 242 240.454 0.0e+00 0.0e+00 0.008831 - 243 244.747 0.0e+00 4.0e-01 0.007803 - 244 248.635 0.0e+00 6.0e-01 0.007964 - 245 248.841 1.0e+00 4.0e-01 0.007038 - 246 255.468 1.0e+00 8.0e-01 0.007183 - 247 263.691 0.0e+00 2.0e-01 0.009779 - 248 248.709 1.0e+00 6.0e-01 0.009981 - 249 248.787 0.0e+00 4.0e-01 0.005724 - 250 243.080 0.0e+00 1.0e+00 0.010396 - 251 249.804 0.0e+00 6.0e-01 0.006886 - 252 241.678 0.0e+00 6.0e-01 0.006085 - 253 248.100 1.0e+00 4.0e-01 0.006210 - 254 253.727 0.0e+00 8.0e-01 0.008455 - 255 253.157 0.0e+00 8.0e-01 0.005601 - 256 257.970 0.0e+00 8.0e-01 0.007626 - 257 250.823 0.0e+00 1.0e+00 0.006738 - 258 249.139 0.0e+00 4.0e-01 0.007943 - 259 245.462 1.0e+00 8.0e-01 0.008107 - 260 254.723 0.0e+00 6.0e-01 0.008274 - 261 254.922 0.0e+00 4.0e-01 0.006330 - 262 254.007 0.0e+00 6.0e-01 0.007462 - 263 246.327 0.0e+00 6.0e-01 0.007615 - 264 252.634 0.0e+00 6.0e-01 0.008977 - 265 254.028 0.0e+00 1.0e+00 0.009162 - 266 246.421 0.0e+00 1.0e+00 0.008096 - 267 248.003 0.0e+00 2.0e-01 0.008263 - 268 241.774 1.0e+00 6.0e-01 0.007301 - 269 246.111 1.0e+00 8.0e-01 0.009941 - 270 243.710 0.0e+00 6.0e-01 0.006585 - 271 243.119 0.0e+00 6.0e-01 0.007762 - 272 245.204 0.0e+00 6.0e-01 0.012206 - 273 238.438 0.0e+00 6.0e-01 0.007000 - 274 238.050 0.0e+00 4.0e-01 0.006186 - 275 240.704 0.0e+00 8.0e-01 0.009727 - 276 242.427 1.0e+00 8.0e-01 0.011466 - 277 246.923 0.0e+00 1.0e+00 0.011703 - 278 242.469 1.0e+00 8.0e-01 0.011944 - 279 244.823 0.0e+00 6.0e-01 0.007911 - 280 249.867 0.0e+00 8.0e-01 0.008074 - 281 244.933 0.0e+00 6.0e-01 0.010993 - 282 248.466 1.0e+00 6.0e-01 0.008411 - 283 241.345 0.0e+00 8.0e-01 0.009914 - 284 247.532 0.0e+00 4.0e-01 0.006567 - 285 248.473 0.0e+00 8.0e-01 0.008941 - 286 251.554 0.0e+00 8.0e-01 0.009125 - 287 251.492 0.0e+00 4.0e-01 0.009313 - 288 253.213 0.0e+00 6.0e-01 0.008230 - 289 253.943 0.0e+00 4.0e-01 0.008399 - 290 245.151 0.0e+00 2.0e-01 0.006426 - 291 246.703 0.0e+00 8.0e-01 0.007575 - 292 257.618 0.0e+00 8.0e-01 0.007731 - 293 254.717 0.0e+00 8.0e-01 0.009113 - 294 247.522 0.0e+00 6.0e-01 0.006972 - 295 256.533 0.0e+00 6.0e-01 0.008219 - 296 256.720 0.0e+00 8.0e-01 0.009688 - 297 264.403 0.0e+00 6.0e-01 0.008561 - 298 255.942 1.0e+00 4.0e-01 0.006550 - 299 260.738 0.0e+00 4.0e-01 0.007721 - 300 255.045 1.0e+00 1.0e+00 0.012141 - 301 254.900 0.0e+00 8.0e-01 0.006963 - 302 253.813 0.0e+00 4.0e-01 0.006153 - 303 256.530 0.0e+00 4.0e-01 0.006279 - 304 255.189 0.0e+00 6.0e-01 0.008550 - 305 254.844 0.0e+00 6.0e-01 0.007555 - 306 255.741 1.0e+00 4.0e-01 0.005780 - 307 255.612 0.0e+00 8.0e-01 0.005899 - 308 263.507 0.0e+00 8.0e-01 0.008031 - 309 257.700 0.0e+00 6.0e-01 0.007097 - 310 255.341 1.0e+00 8.0e-01 0.011160 - 311 256.443 0.0e+00 1.0e+00 0.007392 - 312 256.664 0.0e+00 6.0e-01 0.007545 - 313 259.956 0.0e+00 1.0e+00 0.010272 - 314 252.183 1.0e+00 4.0e-01 0.006804 - 315 250.422 0.0e+00 8.0e-01 0.008021 - 316 250.592 1.0e+00 2.0e-01 0.007087 - 317 261.947 0.0e+00 2.0e-01 0.009650 - 318 257.370 0.0e+00 2.0e-01 0.007382 - 319 258.826 0.0e+00 4.0e-01 0.007535 - 320 255.383 0.0e+00 8.0e-01 0.008882 - 321 249.565 0.0e+00 2.0e-01 0.005883 - 322 259.877 1.0e+00 8.0e-01 0.009252 - 323 260.117 0.0e+00 4.0e-01 0.007078 - 324 262.326 0.0e+00 4.0e-01 0.007224 - 325 265.207 0.0e+00 8.0e-01 0.011360 - 326 263.777 0.0e+00 8.0e-01 0.007525 - 327 263.399 0.0e+00 4.0e-01 0.007680 - 328 261.947 0.0e+00 8.0e-01 0.006786 - 329 264.246 0.0e+00 1.0e+00 0.007999 - 330 258.059 0.0e+00 1.0e+00 0.009430 - 331 257.171 0.0e+00 8.0e-01 0.006246 - 332 258.881 0.0e+00 6.0e-01 0.007363 - 333 261.520 0.0e+00 8.0e-01 0.007515 - 334 263.638 0.0e+00 4.0e-01 0.004978 - 335 257.345 1.0e+00 1.0e+00 0.010442 - 336 254.285 0.0e+00 6.0e-01 0.007989 - 337 253.287 0.0e+00 4.0e-01 0.008153 - 338 259.284 0.0e+00 6.0e-01 0.009611 - 339 259.789 0.0e+00 8.0e-01 0.011330 - 340 261.148 0.0e+00 6.0e-01 0.006497 - 341 253.759 0.0e+00 8.0e-01 0.006631 - 342 251.806 1.0e+00 8.0e-01 0.009029 - 343 255.814 1.0e+00 6.0e-01 0.006907 - 344 252.236 0.0e+00 4.0e-01 0.006104 - 345 257.603 0.0e+00 1.0e+00 0.011086 - 346 248.843 0.0e+00 8.0e-01 0.008481 - 347 254.425 1.0e+00 8.0e-01 0.007495 - 348 259.312 0.0e+00 1.0e+00 0.008835 - 349 259.008 1.0e+00 6.0e-01 0.005067 - 350 259.639 1.0e+00 4.0e-01 0.005972 - 351 254.628 0.0e+00 6.0e-01 0.008132 - 352 243.759 0.0e+00 8.0e-01 0.008299 - 353 243.477 1.0e+00 8.0e-01 0.006349 - 354 244.410 1.0e+00 1.0e+00 0.005610 - 355 246.901 0.0e+00 4.0e-01 0.010190 - 356 247.522 0.0e+00 4.0e-01 0.007796 - 357 248.622 1.0e+00 4.0e-01 0.005964 - 358 248.394 0.0e+00 4.0e-01 0.006087 - 359 248.934 1.0e+00 8.0e-01 0.006213 - 360 249.832 0.0e+00 4.0e-01 0.005490 - 361 248.175 0.0e+00 2.0e-01 0.007475 - 362 247.629 1.0e+00 4.0e-01 0.010177 - 363 247.659 0.0e+00 6.0e-01 0.007786 - 364 249.739 0.0e+00 6.0e-01 0.006880 - 365 250.666 0.0e+00 2.0e-01 0.006079 - 366 249.526 0.0e+00 8.0e-01 0.011042 - 367 252.039 0.0e+00 4.0e-01 0.007314 - 368 247.189 0.0e+00 6.0e-01 0.006463 - 369 248.710 0.0e+00 8.0e-01 0.006596 - 370 256.541 0.0e+00 8.0e-01 0.007775 - 371 248.149 0.0e+00 6.0e-01 0.007936 - 372 256.840 0.0e+00 8.0e-01 0.008099 - 373 258.809 0.0e+00 4.0e-01 0.006196 - 374 260.056 0.0e+00 8.0e-01 0.009744 - 375 267.134 0.0e+00 8.0e-01 0.007455 - 376 266.418 1.0e+00 2.0e-01 0.010150 - 377 254.053 0.0e+00 4.0e-01 0.005821 - 378 257.370 0.0e+00 6.0e-01 0.009153 - 379 260.243 0.0e+00 4.0e-01 0.009342 - 380 255.864 0.0e+00 4.0e-01 0.009534 - 381 254.064 0.0e+00 1.0e+00 0.009731 - 382 259.944 0.0e+00 8.0e-01 0.007445 - 383 267.322 0.0e+00 2.0e-01 0.006578 - 384 264.692 0.0e+00 8.0e-01 0.008957 - 385 256.688 1.0e+00 4.0e-01 0.007914 - 386 258.340 0.0e+00 8.0e-01 0.008078 - 387 268.025 0.0e+00 8.0e-01 0.010998 - 388 263.174 0.0e+00 6.0e-01 0.008414 - 389 264.371 0.0e+00 6.0e-01 0.006437 - 390 267.127 1.0e+00 4.0e-01 0.006570 - 391 269.984 0.0e+00 2.0e-01 0.006705 - 392 268.496 0.0e+00 8.0e-01 0.005925 - 393 263.443 0.0e+00 4.0e-01 0.005235 - 394 263.938 1.0e+00 4.0e-01 0.006172 - 395 279.883 1.0e+00 4.0e-01 0.006299 - 396 261.173 0.0e+00 6.0e-01 0.005566 - 397 264.522 0.0e+00 6.0e-01 0.006561 - 398 262.476 0.0e+00 4.0e-01 0.006696 - 399 268.589 0.0e+00 1.0e+00 0.006834 - 400 265.954 0.0e+00 8.0e-01 0.006975 - 401 264.191 0.0e+00 8.0e-01 0.010968 - 402 264.745 0.0e+00 6.0e-01 0.008391 - - gp hyperparameters: - - 0.8942 0.7866 0.9250 0.0264 -0.1950 1.0640 - -Demo completed in 1.015 minutes diff --git a/tests/realValues/multinom_fig1.fig b/tests/realValues/multinom_fig1.fig deleted file mode 100644 index e8ef3d2e..00000000 Binary files a/tests/realValues/multinom_fig1.fig and /dev/null differ diff --git a/tests/realValues/multinom_fig2.fig b/tests/realValues/multinom_fig2.fig deleted file mode 100644 index 6416c9bb..00000000 Binary files a/tests/realValues/multinom_fig2.fig and /dev/null differ diff --git a/tests/realValues/multinom_fig3.fig b/tests/realValues/multinom_fig3.fig deleted file mode 100644 index 6ef2de4a..00000000 Binary files a/tests/realValues/multinom_fig3.fig and /dev/null differ diff --git a/tests/realValues/neuralnetcov.txt b/tests/realValues/neuralnetcov.txt deleted file mode 100644 index ca9d4930..00000000 --- a/tests/realValues/neuralnetcov.txt +++ /dev/null @@ -1,10 +0,0 @@ - TolFun reached. Func-count 34. Final f(x)=-49.0877. Elapsed time 0.81 - TolFun reached. Func-count 33. Final f(x)=-92.1279. Elapsed time 1.22 - TolFun reached. Func-count 48. Final f(x)=-123.011. Elapsed time 0.36 - TolFun reached. Func-count 25. Final f(x)=-126.821. Elapsed time 0.27 - - gp hyperparameters: - - -3.6553 -0.9891 -5.8739 - -Demo completed in 0.072 minutes diff --git a/tests/realValues/neuralnetcov_fig1.fig b/tests/realValues/neuralnetcov_fig1.fig deleted file mode 100644 index b16f50ec..00000000 Binary files a/tests/realValues/neuralnetcov_fig1.fig and /dev/null differ diff --git a/tests/realValues/neuralnetcov_fig2.fig b/tests/realValues/neuralnetcov_fig2.fig deleted file mode 100644 index 2db07979..00000000 Binary files a/tests/realValues/neuralnetcov_fig2.fig and /dev/null differ diff --git a/tests/realValues/neuralnetcov_fig3.fig b/tests/realValues/neuralnetcov_fig3.fig deleted file mode 100644 index 3b00a341..00000000 Binary files a/tests/realValues/neuralnetcov_fig3.fig and /dev/null differ diff --git a/tests/realValues/neuralnetcov_fig4.fig b/tests/realValues/neuralnetcov_fig4.fig deleted file mode 100644 index bcfb7d30..00000000 Binary files a/tests/realValues/neuralnetcov_fig4.fig and /dev/null differ diff --git a/tests/realValues/periodic.txt b/tests/realValues/periodic.txt deleted file mode 100644 index 31403228..00000000 --- a/tests/realValues/periodic.txt +++ /dev/null @@ -1,89 +0,0 @@ - Optimizer Results - Algorithm Used: Broyden-Fletcher-Goldfarb-Shanno (BFGS) - Exit message : Line search cannot find an acceptable point along the current search direction - Iterations : 29 - Function Count : 50 - Minimum found : 582.4295 - Intern Time : 0.029314 seconds - Total Time : 6.3461 seconds -GP with sexp+sexp+noise: l_1= 478.43, s^2_1 = 1880.95, - l_2= 2.31, s^2_2 = 5.90 - s^2_{noise} = 0.04 - Iteration Func-count Grad-count f(x) Step-size - 0 1 1 567.966 - 1 6 6 567.821 3.33254e-07 - 2 11 11 186.598 0.00870757 - 3 15 15 178.531 0.00677027 - 4 17 17 174.01 0.1 - 5 20 20 171.958 0.01 - 6 23 23 170.366 0.0398045 - 7 27 27 163.86 0.0354622 - 8 30 30 160.988 0.287431 - 9 32 32 158.369 0.27121 - 10 33 33 156.7 1 - 11 35 35 156.584 0.378146 - 12 37 37 156.58 0.186455 - Optimizer Results - Algorithm Used: Broyden-Fletcher-Goldfarb-Shanno (BFGS) - Exit message : Line search cannot find an acceptable point along the current search direction - Iterations : 13 - Function Count : 52 - Minimum found : 156.5799 - Intern Time : 0.033706 seconds - Total Time : 11.3564 seconds -GP sexp+periodic+sexp+noise: l_1= 204.51, s^2_1 = 517.05, - l_2= 1.38, s^2_2 = 6.86, p=12.00, s_sexp^2 = 1469.76, - l_3= 4.01, s^2_3 = 0.17, - s^2_{noise} = 0.04 -[Warning: quad_moments: Reached the limit on the maximum number of intervals in use.] -[> In gp/private/quad_moments at 122 - In lik_poisson>lik_poisson_tiltedMoments at 247 - In gpep_e>ep_algorithm at 2117 - In gpep_e at 110 - In gp_e at 54 - In gp_eg at 35 - In gp_optim>@(ww)gp_eg(ww,gp,x,y,'z',z) at 66 - In fminlbfgs>gradient_function at 890 - In fminlbfgs>bracketingPhase at 744 - In fminlbfgs>linesearch at 583 - In fminlbfgs at 279 - In gp_optim at 121 - In demo_periodic at 286 - In run at 63 - In rundemo at 111 - In test_periodic>testRunDemo at 44 - In FunctionTestCase>FunctionTestCase.test at 90 - In TestRunner>TestRunner.evaluateMethod at 967 - In TestRunner>TestRunner.evaluateMethodOnPlugins at 678 - In TestRunner>TestRunner.evaluateMethodsOnTestContent at 691 - In TestRunner>TestRunner.runTestMethod at 953 - In TestRunner>TestRunner.evaluateMethodOnPlugins at 678 - In TestRunner>TestRunner.runTest at 902 - In TestRunner>TestRunner.evaluateMethodOnPlugins at 678 - In TestRunner>TestRunner.runSharedTestCase at 374 - In TestRunner>TestRunner.runTestClass at 832 - In TestRunnerPlugin>TestRunnerPlugin.runTestClass at 369 - In ConciseProgressPlugin>ConciseProgressPlugin.runTestClass at 61 - In TestRunner>TestRunner.evaluateMethodOnPlugins at 678 - In TestRunner>TestRunner.runTestSuite at 754 - In TestRunnerPlugin>TestRunnerPlugin.runTestSuite at 220 - In FailureDiagnosticsPlugin>FailureDiagnosticsPlugin.runTestSuite at 83 - In TestRunner>TestRunner.evaluateMethodOnPlugins at 678 - In TestRunner>TestRunner.run at 220 - In TestSuite>TestSuite.run at 568 - In runtests at 73 - In runtestset at 166] - Optimizer Results - Algorithm Used: Broyden-Fletcher-Goldfarb-Shanno (BFGS) - Exit message : Change in the objective function value was less than TolFun. - Iterations : 20 - Function Count : 29 - Minimum found : 249.6466 - Intern Time : 0.015026 seconds - Total Time : 7.1884 seconds - - gp hyperparameters: - - -1.6167 3.9826 -0.3658 -0.0967 4.6499 -2.9568 -0.4466 3.2408 5.2019 - -Demo completed in 0.437 minutes diff --git a/tests/realValues/periodic_fig1.fig b/tests/realValues/periodic_fig1.fig deleted file mode 100644 index a98bbac2..00000000 Binary files a/tests/realValues/periodic_fig1.fig and /dev/null differ diff --git a/tests/realValues/periodic_fig2.fig b/tests/realValues/periodic_fig2.fig deleted file mode 100644 index 1bbfa2b5..00000000 Binary files a/tests/realValues/periodic_fig2.fig and /dev/null differ diff --git a/tests/realValues/periodic_fig3.fig b/tests/realValues/periodic_fig3.fig deleted file mode 100644 index 66d9e772..00000000 Binary files a/tests/realValues/periodic_fig3.fig and /dev/null differ diff --git a/tests/realValues/periodic_fig4.fig b/tests/realValues/periodic_fig4.fig deleted file mode 100644 index c541cda8..00000000 Binary files a/tests/realValues/periodic_fig4.fig and /dev/null differ diff --git a/tests/realValues/quantilegp.mat b/tests/realValues/quantilegp.mat deleted file mode 100644 index 676d9dd7..00000000 Binary files a/tests/realValues/quantilegp.mat and /dev/null differ diff --git a/tests/realValues/quantilegp.txt b/tests/realValues/quantilegp.txt deleted file mode 100644 index ace3def6..00000000 --- a/tests/realValues/quantilegp.txt +++ /dev/null @@ -1,108 +0,0 @@ - Using SSLS sampler for hyperparameters and ESLS for latent values - cycle etr - 10 -655.948 - 20 -814.127 - 30 -793.237 - 40 -811.429 - 50 -790.802 - 60 -795.628 - 70 -799.446 - 80 -790.804 - 90 -790.947 - 100 -793.979 - 110 -819.661 - 120 -810.312 - 130 -806.862 - 140 -799.911 - 150 -802.424 - 160 -809.855 - 170 -803.488 - 180 -802.406 - 190 -814.197 - 200 -815.736 - Using SSLS sampler for hyperparameters and ESLS for latent values - cycle etr - 10 -835.532 - 20 -876.538 - 30 -873.323 - 40 -873.999 - 50 -866.677 - 60 -865.850 - 70 -862.013 - 80 -861.627 - 90 -881.933 - 100 -882.073 - 110 -879.486 - 120 -858.539 - 130 -857.283 - 140 -859.148 - 150 -874.396 - 160 -874.116 - 170 -872.306 - 180 -873.092 - 190 -864.090 - 200 -869.966 - Using SSLS sampler for hyperparameters and ESLS for latent values - cycle etr - 10 -674.260 - 20 -782.390 - 30 -785.058 - 40 -777.811 - 50 -775.691 - 60 -781.468 - 70 -780.819 - 80 -778.977 - 90 -762.236 - 100 -775.296 - 110 -776.123 - 120 -767.543 - 130 -755.555 - 140 -748.529 - 150 -742.941 - 160 -743.832 - 170 -743.400 - 180 -751.381 - 190 -736.308 - 200 -742.827 - Iteration Func-count Grad-count f(x) Step-size - 0 1 1 330.216 - 1 2 2 265.558 0.0138401 - 2 4 4 212.146 0.497238 - 3 7 7 211.176 0.0434884 - 4 8 8 210.956 1 - 5 9 9 210.917 1 - 6 10 10 210.913 1 - 7 11 11 210.913 1 - 8 12 12 210.913 1 - 9 13 13 210.913 1 - Optimizer Results - Algorithm Used: Broyden-Fletcher-Goldfarb-Shanno (BFGS) - Exit message : Line search cannot find an acceptable point along the current search direction - Iterations : 10 - Function Count : 18 - Minimum found : 210.9131 - Intern Time : 0.012145 seconds - Total Time : 46.1157 seconds - Iteration Func-count Grad-count f(x) Step-size - 0 1 1 331.846 - 1 2 2 266.315 0.0137365 - 2 4 4 212.334 0.467987 - 3 7 7 208.034 0.05 - 4 9 9 207.787 0.305239 - 5 10 10 207.776 1 - 6 11 11 207.774 1 - 7 12 12 207.774 1 - Optimizer Results - Algorithm Used: Broyden-Fletcher-Goldfarb-Shanno (BFGS) - Exit message : Change in x was smaller than the specified tolerance TolX. - Iterations : 8 - Function Count : 14 - Minimum found : 207.7743 - Intern Time : 0.009385 seconds - Total Time : 45.9901 seconds - - gp hyperparameters: - - 0 0 -0.6931 - -Demo completed in 2.888 minutes diff --git a/tests/realValues/quantilegp_fig1.fig b/tests/realValues/quantilegp_fig1.fig deleted file mode 100644 index e40fe451..00000000 Binary files a/tests/realValues/quantilegp_fig1.fig and /dev/null differ diff --git a/tests/realValues/regression1.txt b/tests/realValues/regression1.txt deleted file mode 100644 index 155dd297..00000000 --- a/tests/realValues/regression1.txt +++ /dev/null @@ -1,60 +0,0 @@ -GP with Gaussian noise model - -gpcf = - - type: 'gpcf_sexp' - lengthScale: [1.1000 1.2000] - magnSigma2: 0.0400 - p: [1x1 struct] - fh: [1x1 struct] - - -K = - - 0.0400 0.0187 0.0019 - 0.0187 0.0400 0.0187 - 0.0019 0.0187 0.0400 - - -C = - - 0.0800 0.0187 0.0019 - 0.0187 0.0800 0.0187 - 0.0019 0.0187 0.0800 - - MAP estimate for the parameters - TolFun reached. Func-count 33. Final f(x)=41.4902. Elapsed time 0.65 - 'log(sexp.magnSigma2)' - 'log(sexp.lengthScale x 2)' - 'log(gaussian.sigma2)' - - 3.5984 0.8838 0.8323 0.0428 - - Grid integration over the parameters - IA-grid: finding the mode - IA-grid: computing Hessian using multiplication - IA-grid: evaluating density in a grid - IA-grid: evaluated density at 341 points - Elapsed time 11.44 seconds - IA-grid: Total elapsed time 19.63 seconds - MCMC integration over the parameters - Using SLS sampler for hyperparameters - cycle etr slsrej - 20 44.827 sls - 40 42.705 sls - 60 42.124 sls - 80 44.214 sls - 100 42.967 sls - 120 43.217 sls - 140 41.865 sls - 160 44.764 sls - 180 42.241 sls - 200 41.686 sls - 220 42.984 sls -Done - - gp hyperparameters: - - 1.2805 -0.1235 -0.1836 -3.1521 - -Demo completed in 1.078 minutes diff --git a/tests/realValues/regression1_fig1.fig b/tests/realValues/regression1_fig1.fig deleted file mode 100644 index 8e45ee8d..00000000 Binary files a/tests/realValues/regression1_fig1.fig and /dev/null differ diff --git a/tests/realValues/regression1_fig2.fig b/tests/realValues/regression1_fig2.fig deleted file mode 100644 index 2d95fda2..00000000 Binary files a/tests/realValues/regression1_fig2.fig and /dev/null differ diff --git a/tests/realValues/regression1_fig3.fig b/tests/realValues/regression1_fig3.fig deleted file mode 100644 index a3f1bf2f..00000000 Binary files a/tests/realValues/regression1_fig3.fig and /dev/null differ diff --git a/tests/realValues/regression1_fig4.fig b/tests/realValues/regression1_fig4.fig deleted file mode 100644 index b23c76bf..00000000 Binary files a/tests/realValues/regression1_fig4.fig and /dev/null differ diff --git a/tests/realValues/regression_additive1.txt b/tests/realValues/regression_additive1.txt deleted file mode 100644 index f40b6eda..00000000 --- a/tests/realValues/regression_additive1.txt +++ /dev/null @@ -1,87 +0,0 @@ - -gp = - - type: 'FULL' - lik: [1x1 struct] - cf: {[1x1 struct] [1x1 struct]} - infer_params: 'covariance+likelihood' - jitterSigma2: 1.0000e-09 - fh: [1x1 struct] - - TolX reached. Func-count 56. Final f(x)=600.635. Elapsed time 4.58 - -gp_fic = - - type: 'FIC' - lik: [1x1 struct] - cf: {[1x1 struct] [1x1 struct]} - infer_params: 'covariance+likelihood' - jitterSigma2: 1.0000e-09 - X_u: [24x1 double] - nind: 24 - p: [1x1 struct] - fh: [1x1 struct] - - TolFun reached. Func-count 45. Final f(x)=1257.57. Elapsed time 1.97 - -gp_pic = - - type: 'PIC' - lik: [1x1 struct] - cf: {[1x1 struct] [1x1 struct]} - infer_params: 'covariance+likelihood' - jitterSigma2: 1.0000e-06 - X_u: [24x1 double] - nind: 24 - p: [1x1 struct] - tr_index: [] - fh: [1x1 struct] - - TolX reached. Func-count 45. Final f(x)=636.321. Elapsed time 4.25 - TolFun reached. Func-count 3. Final f(x)=636.321. Elapsed time 0.28 - -gp_csfic = - - type: 'CS+FIC' - lik: [1x1 struct] - cf: {[1x1 struct] [1x1 struct]} - infer_params: 'covariance+likelihood' - jitterSigma2: 1.0000e-09 - X_u: [24x1 double] - nind: 24 - p: [1x1 struct] - fh: [1x1 struct] - -[Warning: Function value at xnew not finite or a number] -[> In fminscg at 202 - In gp_optim at 121 - In demo_regression_additive1 at 305 - In run at 63 - In rundemo at 111 - In test_regression_additive1>testRunDemo at 44 - In FunctionTestCase>FunctionTestCase.test at 90 - In TestRunner>TestRunner.runMethod at 684 - In TestRunnerPlugin>TestRunnerPlugin.runMethod at 99 - In TestRunnerPlugin>TestRunnerPlugin.runMethod at 99 - In TestRunner>TestRunner.runMethodOnPlugins at 538 - In TestRunner>TestRunner.runMethodsOnTestContent at 555 - In TestRunner>TestRunner.runTestMethod at 753 - In TestRunnerPlugin>TestRunnerPlugin.runTestMethod at 95 - In TestRunnerPlugin>TestRunnerPlugin.runTestMethod at 95 - In TestRunner>TestRunner.runMethodOnPlugins at 538 - In TestRunner>TestRunner.runTestSuite at 655 - In TestRunnerPlugin>TestRunnerPlugin.runTestSuite at 54 - In TestRunnerPlugin>TestRunnerPlugin.runTestSuite at 54 - In FailureDiagnosticsPlugin>FailureDiagnosticsPlugin.runTestSuite at 77 - In TestRunner>TestRunner.runMethodOnPlugins at 538 - In TestRunner>TestRunner.run at 175 - In TestSuite>TestSuite.run at 364 - In runtests at 44 - In runtestset at 94] - TolX reached. Func-count 45. Final f(x)=600.505. Elapsed time 1.31 - - gp hyperparameters: - - 5.7476 4.8844 1.6333 2.0965 -3.5407 - -Demo completed in 0.236 minutes diff --git a/tests/realValues/regression_additive1_fig1.fig b/tests/realValues/regression_additive1_fig1.fig deleted file mode 100644 index 9610cc94..00000000 Binary files a/tests/realValues/regression_additive1_fig1.fig and /dev/null differ diff --git a/tests/realValues/regression_additive1_fig2.fig b/tests/realValues/regression_additive1_fig2.fig deleted file mode 100644 index a75e26e6..00000000 Binary files a/tests/realValues/regression_additive1_fig2.fig and /dev/null differ diff --git a/tests/realValues/regression_additive1_fig3.fig b/tests/realValues/regression_additive1_fig3.fig deleted file mode 100644 index 352f9f9c..00000000 Binary files a/tests/realValues/regression_additive1_fig3.fig and /dev/null differ diff --git a/tests/realValues/regression_additive1_fig4.fig b/tests/realValues/regression_additive1_fig4.fig deleted file mode 100644 index 0322d6ff..00000000 Binary files a/tests/realValues/regression_additive1_fig4.fig and /dev/null differ diff --git a/tests/realValues/regression_additive1_fig5.fig b/tests/realValues/regression_additive1_fig5.fig deleted file mode 100644 index 1b866cb4..00000000 Binary files a/tests/realValues/regression_additive1_fig5.fig and /dev/null differ diff --git a/tests/realValues/regression_additive2.mat b/tests/realValues/regression_additive2.mat deleted file mode 100644 index 4ccb7696..00000000 Binary files a/tests/realValues/regression_additive2.mat and /dev/null differ diff --git a/tests/realValues/regression_additive2.txt b/tests/realValues/regression_additive2.txt deleted file mode 100644 index 2ccf9521..00000000 --- a/tests/realValues/regression_additive2.txt +++ /dev/null @@ -1,20 +0,0 @@ -Constant + linear covariance function - TolFun reached. Func-count 31. Final f(x)=103.189. Elapsed time 0.44 -Constant + squared exponential covariance function -(w.r.t. the first input dimension) + linear (w.r.t. -the second input dimension) - TolFun reached. Func-count 33. Final f(x)=54.0344. Elapsed time 0.82 -Additive squared exponential covariance function - TolFun reached. Func-count 35. Final f(x)=26.9207. Elapsed time 0.76 -Squared exponential covariance function - TolFun reached. Func-count 29. Final f(x)=30.6121. Elapsed time 0.46 -Additive neural network covariance function - TolFun reached. Func-count 33. Final f(x)=24.4157. Elapsed time 1.09 -Neural network covariance function - TolFun reached. Func-count 54. Final f(x)=24.2467. Elapsed time 1.23 - - gp hyperparameters: - - -3.1648 1.4213 0.5037 -2.9099 - -Demo completed in 0.273 minutes diff --git a/tests/realValues/regression_additive2_fig1.fig b/tests/realValues/regression_additive2_fig1.fig deleted file mode 100644 index 28e1b800..00000000 Binary files a/tests/realValues/regression_additive2_fig1.fig and /dev/null differ diff --git a/tests/realValues/regression_additive2_fig2.fig b/tests/realValues/regression_additive2_fig2.fig deleted file mode 100644 index 42d91732..00000000 Binary files a/tests/realValues/regression_additive2_fig2.fig and /dev/null differ diff --git a/tests/realValues/regression_additive2_fig3.fig b/tests/realValues/regression_additive2_fig3.fig deleted file mode 100644 index feb00c75..00000000 Binary files a/tests/realValues/regression_additive2_fig3.fig and /dev/null differ diff --git a/tests/realValues/regression_additive2_fig4.fig b/tests/realValues/regression_additive2_fig4.fig deleted file mode 100644 index 5e817a63..00000000 Binary files a/tests/realValues/regression_additive2_fig4.fig and /dev/null differ diff --git a/tests/realValues/regression_additive2_fig5.fig b/tests/realValues/regression_additive2_fig5.fig deleted file mode 100644 index 1ca8d444..00000000 Binary files a/tests/realValues/regression_additive2_fig5.fig and /dev/null differ diff --git a/tests/realValues/regression_additive2_fig6.fig b/tests/realValues/regression_additive2_fig6.fig deleted file mode 100644 index afe8effd..00000000 Binary files a/tests/realValues/regression_additive2_fig6.fig and /dev/null differ diff --git a/tests/realValues/regression_hier.txt b/tests/realValues/regression_hier.txt deleted file mode 100644 index 65e6d927..00000000 --- a/tests/realValues/regression_hier.txt +++ /dev/null @@ -1,54 +0,0 @@ -1) Linear model with intercept and slope wrt time - TolFun reached. Func-count 19. Final f(x)=19.4149. Elapsed time 0.21 -2) Linear model with hierarchical intercept - TolFun reached. Func-count 25. Final f(x)=-37.2922. Elapsed time 0.46 -3) Linear model with hierarchical intercept and slope - TolFun reached. Func-count 33. Final f(x)=-46.4251. Elapsed time 0.77 -4) Nonlinear model with hierarchical intercept - TolFun reached. Func-count 40. Final f(x)=-45.8041. Elapsed time 0.95 -5) Non-linear hierarchical model 1 with MAP - TolFun reached. Func-count 88. Final f(x)=-77.8152. Elapsed time 3.28 -6) Non-linear hierarchical model 1 with IA - IA-CCD: finding the mode - Elapsed time 1.31 seconds - IA-CCD: computing Hessian using multiplication - IA-CCD: 147 points for 9 parameters - IA-CCD: autoscaling in 18 directions - IA-CCD: scaling minmax [0.63 1.43] - IA-CCD: evaluating density at 147 points - Elapsed time 1.92 seconds - IA-CCD: Total elapsed time 4.10 seconds -7) Non-linear hierarchical model 2 with MAP - TolFun reached. Func-count 39. Final f(x)=-80.2512. Elapsed time 0.91 -8) Non-linear hierarchical model 2 with IA - IA-CCD: finding the mode - IA-CCD: computing Hessian using multiplication - IA-CCD: 45 points for 6 parameters - IA-CCD: autoscaling in 12 directions - IA-CCD: scaling minmax [0.84 1.26] - IA-CCD: evaluating density at 45 points - IA-CCD: Total elapsed time 1.25 seconds -9) Non-linear hierarchical model 3 with IA - TolFun reached. Func-count 43. Final f(x)=-64.4989. Elapsed time 1.50 - IA-CCD: finding the mode - IA-CCD: computing Hessian using multiplication - IA-CCD: 79 points for 7 parameters - IA-CCD: autoscaling in 14 directions - IA-CCD: scaling minmax [0.70 1.29] - IA-CCD: evaluating density at 79 points - IA-CCD: Total elapsed time 2.11 seconds -10) Missing data example - TolFun reached. Func-count 49. Final f(x)=-4.10284. Elapsed time 0.99 - IA-CCD: finding the mode - IA-CCD: computing Hessian using multiplication - IA-CCD: 79 points for 7 parameters - IA-CCD: autoscaling in 14 directions - IA-CCD: scaling minmax [0.64 1.33] - IA-CCD: evaluating density at 79 points - IA-CCD: Total elapsed time 1.00 seconds - - gp hyperparameters: - - -0.1987 -3.4072 1.0782 0.4515 -3.4082 -4.7715 -4.8805 - -Demo completed in 0.461 minutes diff --git a/tests/realValues/regression_hier_fig1.fig b/tests/realValues/regression_hier_fig1.fig deleted file mode 100644 index e4ba19a2..00000000 Binary files a/tests/realValues/regression_hier_fig1.fig and /dev/null differ diff --git a/tests/realValues/regression_hier_fig2.fig b/tests/realValues/regression_hier_fig2.fig deleted file mode 100644 index 319c9547..00000000 Binary files a/tests/realValues/regression_hier_fig2.fig and /dev/null differ diff --git a/tests/realValues/regression_meanf.mat b/tests/realValues/regression_meanf.mat deleted file mode 100644 index 6384a899..00000000 Binary files a/tests/realValues/regression_meanf.mat and /dev/null differ diff --git a/tests/realValues/regression_meanf.txt b/tests/realValues/regression_meanf.txt deleted file mode 100644 index db155f03..00000000 --- a/tests/realValues/regression_meanf.txt +++ /dev/null @@ -1,15 +0,0 @@ -Checking gradient ... - - analytic diffs delta - - -6.7439 -6.7439 0.0000 - 2.1897 2.1897 -0.0000 - -2.3321 -2.3321 -0.0000 - - TolFun reached. Func-count 19. Final f(x)=16.4578. Elapsed time 0.19 - - gp hyperparameters: - - 1.6749 -0.3565 -1.4619 - -Demo completed in 0.009 minutes diff --git a/tests/realValues/regression_meanf_fig1.fig b/tests/realValues/regression_meanf_fig1.fig deleted file mode 100644 index d95e5c44..00000000 Binary files a/tests/realValues/regression_meanf_fig1.fig and /dev/null differ diff --git a/tests/realValues/regression_ppcs.mat b/tests/realValues/regression_ppcs.mat deleted file mode 100644 index 6e3d786e..00000000 Binary files a/tests/realValues/regression_ppcs.mat and /dev/null differ diff --git a/tests/realValues/regression_ppcs.txt b/tests/realValues/regression_ppcs.txt deleted file mode 100644 index a8409d5a..00000000 --- a/tests/realValues/regression_ppcs.txt +++ /dev/null @@ -1,25 +0,0 @@ - Iteration Func-count f(x) Lambda - 0 1 15150 - 1 3 14366.9 10 - 2 5 14366.9 5 - 3 6 14366.9 20 - 4 7 14366.9 80 - 5 8 13860.1 320 - 6 10 13859.9 320 - 7 12 13449.3 160 - 8 14 13274.3 160 - 9 16 13257.4 80 - 10 18 13254 40 - 11 20 13253.7 20 - 12 22 13253.6 10 - 13 24 13253.4 5 - 14 26 13253.4 2.5 - 15 28 13253.4 1.25 - TolX reached. Func-count 28. Final f(x)=13253.4. Elapsed time 3338.85 -Proportion of non-zeros is 0.0475 - - gp hyperparameters: - - 2.7497 1.1142 1.4814 1.3157 - -Demo completed in 55.722 minutes diff --git a/tests/realValues/regression_ppcs_fig1.fig b/tests/realValues/regression_ppcs_fig1.fig deleted file mode 100644 index f565c711..00000000 Binary files a/tests/realValues/regression_ppcs_fig1.fig and /dev/null differ diff --git a/tests/realValues/regression_ppcs_fig2.fig b/tests/realValues/regression_ppcs_fig2.fig deleted file mode 100644 index 55662383..00000000 Binary files a/tests/realValues/regression_ppcs_fig2.fig and /dev/null differ diff --git a/tests/realValues/regression_ppcs_fig3.fig b/tests/realValues/regression_ppcs_fig3.fig deleted file mode 100644 index c4e0e0c5..00000000 Binary files a/tests/realValues/regression_ppcs_fig3.fig and /dev/null differ diff --git a/tests/realValues/regression_robust.mat b/tests/realValues/regression_robust.mat deleted file mode 100644 index 3a167d7b..00000000 Binary files a/tests/realValues/regression_robust.mat and /dev/null differ diff --git a/tests/realValues/regression_robust.txt b/tests/realValues/regression_robust.txt deleted file mode 100644 index bfae7205..00000000 --- a/tests/realValues/regression_robust.txt +++ /dev/null @@ -1,143 +0,0 @@ - -gp = - - type: 'FULL' - lik: [1x1 struct] - cf: {[1x1 struct]} - infer_params: 'covariance+likelihood' - jitterSigma2: 1.0000e-09 - fh: [1x1 struct] - -Gaussian noise model and MAP estimate for parameters - TolFun reached. Func-count 23. Final f(x)=27.0141. Elapsed time 0.18 - -S1 = - -length-scale: 1.066, magnSigma2: 5.420 - - -Scale mixture Gaussian (~=Student-t) noise model -using MCMC integration over the latent values and parameters - Using SLS sampler for hyperparameters - cycle etr slsrej - 20 -38.105 sls - 40 -51.018 sls - 60 -54.371 sls - 80 -54.989 sls - 100 -61.803 sls - 120 -65.385 sls - 140 -50.697 sls - 160 -64.071 sls - 180 -47.628 sls - 200 -53.372 sls - 220 -55.422 sls - 240 -55.152 sls - 260 -59.509 sls - 280 -45.947 sls - 300 -53.208 sls - -S2 = - -length-scale: 1.051, magnSigma2: 7.908 - - -Student-t noise model using Laplace integration over the -latent values and MAP estimate for the parameters - TolFun reached. Func-count 27. Final f(x)=-24.079. Elapsed time 1.10 - -S3 = - -length-scale: 1.047, magnSigma2: 3.092 - - -Student-t noise model using EP integration over the -latent values and MAP estimate for parameters - Iteration Func-count f(x) Lambda - 0 1 5.0753 - 1 3 -0.390577 10 - 2 5 -20.2665 5 - 3 7 -21.8841 2.5 - 4 9 -23.5458 1.25 - 5 11 -23.9733 0.625 - 6 13 -24.8948 0.312 - 7 15 -25.2 0.156 - 8 17 -25.3813 0.0781 - 9 19 -25.4289 0.0391 - 10 21 -25.5223 0.0195 - 11 23 -25.5358 0.00977 - 12 25 -25.6001 0.00488 - 13 27 -25.619 0.00244 - 14 29 -25.6518 0.00122 - 15 31 -25.6526 0.00061 - TolFun reached. Func-count 31. Final f(x)=-25.6526. Elapsed time 17.56 - -S4 = - -length-scale: 1.040, magnSigma2: 2.920 - - -Student-t noise model with nu= 4 and using MCMC integration -over the latent values and parameters - Using SSLS sampler for hyperparameters and ESLS for latent values - cycle etr lslsn - 20 -194.741 7.0e+00 - 40 -247.772 9.0e+00 - 60 -263.046 9.0e+00 - 80 -286.524 4.0e+00 - 100 -284.345 9.0e+00 - 120 -283.511 8.0e+00 - 140 -281.262 7.0e+00 - 160 -293.818 1.2e+01 - 180 -294.601 1.6e+01 - 200 -302.074 8.0e+00 - 220 -303.498 8.0e+00 - 240 -303.258 1.0e+01 - 260 -308.047 1.6e+01 - 280 -313.108 8.0e+00 - 300 -308.032 1.2e+01 - 320 -307.147 1.2e+01 - 340 -313.006 9.0e+00 - 360 -315.498 1.0e+01 - 380 -309.592 1.1e+01 - 400 -309.290 1.1e+01 - -S5 = - -length-scale: 0.761, magnSigma2: 2.366 - - -Student-t noise model with nu=4 using Laplace integration over -the latent values and MAP estimate for the parameters - TolFun reached. Func-count 19. Final f(x)=-14.9305. Elapsed time 0.51 - -S6 = - -length-scale: 1.040, magnSigma2: 3.095 - - -Student-t noise model with nu=4 using EP integration over -the latent values and MAP estimate for parameters - Iteration Func-count f(x) Lambda - 0 1 5.0753 - 1 3 -0.138385 10 - 2 5 -13.6439 5 - 3 7 -14.0719 2.5 - 4 9 -14.1846 1.25 - 5 11 -14.8554 0.625 - 6 13 -15.1515 0.312 - 7 15 -15.1629 0.156 - 8 17 -15.1788 0.0781 - 9 19 -15.1794 0.0391 - TolFun reached. Func-count 19. Final f(x)=-15.1794. Elapsed time 7.74 - -S7 = - -length-scale: 1.033, magnSigma2: 2.966 - - - - gp hyperparameters: - - 1.0871 0.0321 -4.6357 - -Demo completed in 1.327 minutes diff --git a/tests/realValues/regression_robust_fig1.fig b/tests/realValues/regression_robust_fig1.fig deleted file mode 100644 index 7323074e..00000000 Binary files a/tests/realValues/regression_robust_fig1.fig and /dev/null differ diff --git a/tests/realValues/regression_robust_fig2.fig b/tests/realValues/regression_robust_fig2.fig deleted file mode 100644 index 32c23e1d..00000000 Binary files a/tests/realValues/regression_robust_fig2.fig and /dev/null differ diff --git a/tests/realValues/regression_robust_fig3.fig b/tests/realValues/regression_robust_fig3.fig deleted file mode 100644 index 166b3c29..00000000 Binary files a/tests/realValues/regression_robust_fig3.fig and /dev/null differ diff --git a/tests/realValues/regression_robust_fig4.fig b/tests/realValues/regression_robust_fig4.fig deleted file mode 100644 index 62d75da2..00000000 Binary files a/tests/realValues/regression_robust_fig4.fig and /dev/null differ diff --git a/tests/realValues/regression_robust_fig5.fig b/tests/realValues/regression_robust_fig5.fig deleted file mode 100644 index 36e8c941..00000000 Binary files a/tests/realValues/regression_robust_fig5.fig and /dev/null differ diff --git a/tests/realValues/regression_robust_fig6.fig b/tests/realValues/regression_robust_fig6.fig deleted file mode 100644 index 8f5b95e1..00000000 Binary files a/tests/realValues/regression_robust_fig6.fig and /dev/null differ diff --git a/tests/realValues/regression_robust_fig7.fig b/tests/realValues/regression_robust_fig7.fig deleted file mode 100644 index e25fd2ee..00000000 Binary files a/tests/realValues/regression_robust_fig7.fig and /dev/null differ diff --git a/tests/realValues/regression_robust_fig8.fig b/tests/realValues/regression_robust_fig8.fig deleted file mode 100644 index 4b7cec00..00000000 Binary files a/tests/realValues/regression_robust_fig8.fig and /dev/null differ diff --git a/tests/realValues/regression_sparse1.txt b/tests/realValues/regression_sparse1.txt deleted file mode 100644 index 29f4fd1b..00000000 --- a/tests/realValues/regression_sparse1.txt +++ /dev/null @@ -1,74 +0,0 @@ - -gp = - - type: 'FULL' - lik: [1x1 struct] - cf: {[1x1 struct]} - infer_params: 'covariance+likelihood' - jitterSigma2: 1.0000e-08 - fh: [1x1 struct] - - TolFun reached. Func-count 27. Final f(x)=52.5982. Elapsed time 1.30 - -gp_fic = - - type: 'FIC' - lik: [1x1 struct] - cf: {[1x1 struct]} - infer_params: 'covariance+likelihood' - jitterSigma2: 1.0000e-04 - X_u: [36x2 double] - nind: 36 - p: [1x1 struct] - fh: [1x1 struct] - - TolFun reached. Func-count 53. Final f(x)=46.3892. Elapsed time 0.68 - -gp_pic = - - type: 'PIC' - lik: [1x1 struct] - cf: {[1x1 struct]} - infer_params: 'covariance+likelihood' - jitterSigma2: 1.0000e-04 - X_u: [36x2 double] - nind: 36 - p: [1x1 struct] - tr_index: {1x16 cell} - fh: [1x1 struct] - - TolFun reached. Func-count 29. Final f(x)=45.3107. Elapsed time 1.08 - -gp_var = - - type: 'VAR' - lik: [1x1 struct] - cf: {[1x1 struct]} - infer_params: 'covariance+likelihood+inducing' - jitterSigma2: 1.0000e-04 - X_u: [36x2 double] - nind: 36 - p: [1x1 struct] - fh: [1x1 struct] - - TolFun reached. Func-count 155. Final f(x)=50.7135. Elapsed time 9.72 - -gp_dtc = - - type: 'DTC' - lik: [1x1 struct] - cf: {[1x1 struct]} - infer_params: 'covariance+likelihood' - jitterSigma2: 1.0000e-04 - X_u: [36x2 double] - nind: 36 - p: [1x1 struct] - fh: [1x1 struct] - - TolFun reached. Func-count 61. Final f(x)=46.3105. Elapsed time 0.71 - - gp hyperparameters: - - 0.4291 1.1773 1.0540 -3.2363 - -Demo completed in 0.238 minutes diff --git a/tests/realValues/regression_sparse1_fig1.fig b/tests/realValues/regression_sparse1_fig1.fig deleted file mode 100644 index d7714fd0..00000000 Binary files a/tests/realValues/regression_sparse1_fig1.fig and /dev/null differ diff --git a/tests/realValues/regression_sparse1_fig2.fig b/tests/realValues/regression_sparse1_fig2.fig deleted file mode 100644 index ae1d3475..00000000 Binary files a/tests/realValues/regression_sparse1_fig2.fig and /dev/null differ diff --git a/tests/realValues/regression_sparse1_fig3.fig b/tests/realValues/regression_sparse1_fig3.fig deleted file mode 100644 index 9e9916e0..00000000 Binary files a/tests/realValues/regression_sparse1_fig3.fig and /dev/null differ diff --git a/tests/realValues/regression_sparse1_fig4.fig b/tests/realValues/regression_sparse1_fig4.fig deleted file mode 100644 index bc62f6da..00000000 Binary files a/tests/realValues/regression_sparse1_fig4.fig and /dev/null differ diff --git a/tests/realValues/regression_sparse1_fig5.fig b/tests/realValues/regression_sparse1_fig5.fig deleted file mode 100644 index 777ef503..00000000 Binary files a/tests/realValues/regression_sparse1_fig5.fig and /dev/null differ diff --git a/tests/realValues/regression_sparse2.mat b/tests/realValues/regression_sparse2.mat deleted file mode 100644 index 27db0946..00000000 Binary files a/tests/realValues/regression_sparse2.mat and /dev/null differ diff --git a/tests/realValues/regression_sparse2.txt b/tests/realValues/regression_sparse2.txt deleted file mode 100644 index aeb4949a..00000000 --- a/tests/realValues/regression_sparse2.txt +++ /dev/null @@ -1,14 +0,0 @@ -Full GP - TolFun reached. Func-count 35. Final f(x)=51.3654. Elapsed time 0.31 -FIC GP - TolX reached. Func-count 14. Final f(x)=57.5109. Elapsed time 0.18 -VAR GP - TolFun reached. Func-count 68. Final f(x)=65.8332. Elapsed time 0.87 -DTC GP - TolX reached. Func-count 14. Final f(x)=48.4277. Elapsed time 0.17 - - gp hyperparameters: - - 1.6935 -0.6707 -2.9350 - -Demo completed in 0.034 minutes diff --git a/tests/realValues/regression_sparse2_fig1.fig b/tests/realValues/regression_sparse2_fig1.fig deleted file mode 100644 index c511d451..00000000 Binary files a/tests/realValues/regression_sparse2_fig1.fig and /dev/null differ diff --git a/tests/realValues/spatial1.mat b/tests/realValues/spatial1.mat deleted file mode 100644 index 5e28c29e..00000000 Binary files a/tests/realValues/spatial1.mat and /dev/null differ diff --git a/tests/realValues/spatial1.txt b/tests/realValues/spatial1.txt deleted file mode 100644 index 18be9d59..00000000 --- a/tests/realValues/spatial1.txt +++ /dev/null @@ -1,543 +0,0 @@ - TolFun reached. Func-count 35. Final f(x)= 2844. Elapsed time 2.42 - -S1 = - -MAP: length-scale: 14.3, magnSigma: 0.153 - - - IA-grid: finding the mode - IA-grid: computing Hessian using multiplication - IA-grid: evaluating density in a grid - IA-grid: evaluated density at 12 points - IA-grid: Total elapsed time 2.35 seconds - -S2 = - -IA-GRID: 90% CI - length-scale: [8.8,33.1], magnSigma: [0.099,0.325] - - - Using HMC sampler for hyperparameters and MCMC for latent values - cycle etr hrej lrej - 2 732.703 0.0e+00 6.0e-02 0.087940 - -h1 = - - 986.0103 - 987.0098 - - mean hmcrej: 0.00 latrej: 0.02 - mean hmcrej: 0.00 latrej: 0.01 - mean hmcrej: 0.00 latrej: 0.01 - mean hmcrej: 0.00 latrej: 0.01 - mean hmcrej: 0.00 latrej: 0.01 - mean hmcrej: 0.00 latrej: 0.01 - mean hmcrej: 0.02 latrej: 0.01 - mean hmcrej: 0.04 latrej: 0.03 - mean hmcrej: 0.04 latrej: 0.02 - mean hmcrej: 0.03 latrej: 0.04 - mean hmcrej: 0.03 latrej: 0.05 - mean hmcrej: 0.04 latrej: 0.08 - mean hmcrej: 0.04 latrej: 0.10 - mean hmcrej: 0.04 latrej: 0.10 - mean hmcrej: 0.05 latrej: 0.10 - mean hmcrej: 0.04 latrej: 0.09 - mean hmcrej: 0.04 latrej: 0.09 - mean hmcrej: 0.05 latrej: 0.08 - mean hmcrej: 0.05 latrej: 0.08 - mean hmcrej: 0.05 latrej: 0.08 - mean hmcrej: 0.05 latrej: 0.07 - mean hmcrej: 0.05 latrej: 0.08 - mean hmcrej: 0.05 latrej: 0.07 - mean hmcrej: 0.05 latrej: 0.07 - mean hmcrej: 0.04 latrej: 0.07 - mean hmcrej: 0.05 latrej: 0.07 - mean hmcrej: 0.05 latrej: 0.07 - mean hmcrej: 0.05 latrej: 0.07 - mean hmcrej: 0.05 latrej: 0.07 - mean hmcrej: 0.04 latrej: 0.08 - mean hmcrej: 0.04 latrej: 0.07 - mean hmcrej: 0.04 latrej: 0.07 - mean hmcrej: 0.05 latrej: 0.07 - mean hmcrej: 0.04 latrej: 0.07 - mean hmcrej: 0.04 latrej: 0.07 - mean hmcrej: 0.04 latrej: 0.07 - mean hmcrej: 0.04 latrej: 0.07 - mean hmcrej: 0.04 latrej: 0.07 - mean hmcrej: 0.04 latrej: 0.06 - mean hmcrej: 0.04 latrej: 0.06 - mean hmcrej: 0.04 latrej: 0.06 - mean hmcrej: 0.05 latrej: 0.06 - mean hmcrej: 0.05 latrej: 0.06 - mean hmcrej: 0.05 latrej: 0.06 - mean hmcrej: 0.05 latrej: 0.06 - mean hmcrej: 0.05 latrej: 0.06 - mean hmcrej: 0.04 latrej: 0.05 - mean hmcrej: 0.04 latrej: 0.05 - mean hmcrej: 0.04 latrej: 0.06 - mean hmcrej: 0.05 latrej: 0.06 - mean hmcrej: 0.05 latrej: 0.05 - mean hmcrej: 0.04 latrej: 0.06 - mean hmcrej: 0.04 latrej: 0.06 - mean hmcrej: 0.04 latrej: 0.06 - mean hmcrej: 0.05 latrej: 0.06 - mean hmcrej: 0.04 latrej: 0.06 - mean hmcrej: 0.05 latrej: 0.06 - mean hmcrej: 0.05 latrej: 0.05 - mean hmcrej: 0.05 latrej: 0.05 - mean hmcrej: 0.05 latrej: 0.05 - mean hmcrej: 0.05 latrej: 0.05 - mean hmcrej: 0.05 latrej: 0.05 - mean hmcrej: 0.05 latrej: 0.05 - mean hmcrej: 0.05 latrej: 0.06 - mean hmcrej: 0.04 latrej: 0.05 - mean hmcrej: 0.05 latrej: 0.05 - mean hmcrej: 0.05 latrej: 0.05 - mean hmcrej: 0.05 latrej: 0.05 - mean hmcrej: 0.05 latrej: 0.05 - mean hmcrej: 0.05 latrej: 0.06 - mean hmcrej: 0.05 latrej: 0.06 - mean hmcrej: 0.05 latrej: 0.06 - mean hmcrej: 0.05 latrej: 0.06 - mean hmcrej: 0.05 latrej: 0.06 - mean hmcrej: 0.05 latrej: 0.06 - mean hmcrej: 0.05 latrej: 0.06 - mean hmcrej: 0.05 latrej: 0.06 - mean hmcrej: 0.05 latrej: 0.06 - mean hmcrej: 0.05 latrej: 0.06 - mean hmcrej: 0.05 latrej: 0.06 - mean hmcrej: 0.05 latrej: 0.06 - mean hmcrej: 0.05 latrej: 0.06 - mean hmcrej: 0.04 latrej: 0.05 - mean hmcrej: 0.05 latrej: 0.05 - mean hmcrej: 0.05 latrej: 0.05 - mean hmcrej: 0.05 latrej: 0.05 - mean hmcrej: 0.05 latrej: 0.05 - mean hmcrej: 0.05 latrej: 0.05 - mean hmcrej: 0.05 latrej: 0.06 - mean hmcrej: 0.05 latrej: 0.06 - mean hmcrej: 0.05 latrej: 0.05 - mean hmcrej: 0.05 latrej: 0.05 - mean hmcrej: 0.05 latrej: 0.06 - mean hmcrej: 0.05 latrej: 0.06 - mean hmcrej: 0.05 latrej: 0.06 - mean hmcrej: 0.05 latrej: 0.06 - mean hmcrej: 0.05 latrej: 0.06 - mean hmcrej: 0.05 latrej: 0.06 - mean hmcrej: 0.05 latrej: 0.06 - mean hmcrej: 0.05 latrej: 0.06 - mean hmcrej: 0.05 latrej: 0.06 - mean hmcrej: 0.05 latrej: 0.06 - mean hmcrej: 0.05 latrej: 0.06 - mean hmcrej: 0.05 latrej: 0.06 - mean hmcrej: 0.05 latrej: 0.06 - mean hmcrej: 0.05 latrej: 0.06 - mean hmcrej: 0.05 latrej: 0.06 - mean hmcrej: 0.05 latrej: 0.06 - mean hmcrej: 0.05 latrej: 0.06 - mean hmcrej: 0.05 latrej: 0.06 - mean hmcrej: 0.05 latrej: 0.06 - mean hmcrej: 0.05 latrej: 0.06 - mean hmcrej: 0.05 latrej: 0.06 - mean hmcrej: 0.05 latrej: 0.06 - mean hmcrej: 0.05 latrej: 0.06 - mean hmcrej: 0.05 latrej: 0.06 - mean hmcrej: 0.05 latrej: 0.06 - mean hmcrej: 0.05 latrej: 0.06 - mean hmcrej: 0.05 latrej: 0.06 - mean hmcrej: 0.05 latrej: 0.06 - mean hmcrej: 0.05 latrej: 0.06 - mean hmcrej: 0.05 latrej: 0.06 - mean hmcrej: 0.05 latrej: 0.05 - mean hmcrej: 0.05 latrej: 0.05 - mean hmcrej: 0.05 latrej: 0.05 - mean hmcrej: 0.05 latrej: 0.05 - mean hmcrej: 0.05 latrej: 0.05 - mean hmcrej: 0.05 latrej: 0.05 - mean hmcrej: 0.05 latrej: 0.05 - mean hmcrej: 0.05 latrej: 0.05 - mean hmcrej: 0.05 latrej: 0.05 - mean hmcrej: 0.05 latrej: 0.05 - mean hmcrej: 0.05 latrej: 0.06 - mean hmcrej: 0.05 latrej: 0.05 - mean hmcrej: 0.05 latrej: 0.05 - mean hmcrej: 0.05 latrej: 0.06 - mean hmcrej: 0.05 latrej: 0.06 - mean hmcrej: 0.05 latrej: 0.06 - mean hmcrej: 0.05 latrej: 0.06 - mean hmcrej: 0.05 latrej: 0.06 - mean hmcrej: 0.05 latrej: 0.06 - mean hmcrej: 0.05 latrej: 0.06 - mean hmcrej: 0.05 latrej: 0.06 - mean hmcrej: 0.05 latrej: 0.06 - mean hmcrej: 0.05 latrej: 0.06 - mean hmcrej: 0.05 latrej: 0.06 - mean hmcrej: 0.05 latrej: 0.06 - mean hmcrej: 0.05 latrej: 0.06 - mean hmcrej: 0.05 latrej: 0.06 - mean hmcrej: 0.05 latrej: 0.06 - mean hmcrej: 0.05 latrej: 0.06 - mean hmcrej: 0.05 latrej: 0.06 - mean hmcrej: 0.05 latrej: 0.06 - mean hmcrej: 0.05 latrej: 0.06 - mean hmcrej: 0.05 latrej: 0.06 - mean hmcrej: 0.05 latrej: 0.06 - mean hmcrej: 0.05 latrej: 0.06 - mean hmcrej: 0.05 latrej: 0.06 - mean hmcrej: 0.05 latrej: 0.06 - mean hmcrej: 0.05 latrej: 0.06 - mean hmcrej: 0.05 latrej: 0.06 - mean hmcrej: 0.05 latrej: 0.06 - mean hmcrej: 0.05 latrej: 0.06 - mean hmcrej: 0.05 latrej: 0.07 - mean hmcrej: 0.05 latrej: 0.07 - mean hmcrej: 0.05 latrej: 0.07 - mean hmcrej: 0.05 latrej: 0.07 - mean hmcrej: 0.05 latrej: 0.07 - mean hmcrej: 0.05 latrej: 0.06 - mean hmcrej: 0.05 latrej: 0.06 - mean hmcrej: 0.05 latrej: 0.07 - mean hmcrej: 0.05 latrej: 0.06 - mean hmcrej: 0.05 latrej: 0.06 - mean hmcrej: 0.05 latrej: 0.06 - mean hmcrej: 0.05 latrej: 0.06 - mean hmcrej: 0.06 latrej: 0.06 - mean hmcrej: 0.06 latrej: 0.06 - mean hmcrej: 0.06 latrej: 0.06 - mean hmcrej: 0.06 latrej: 0.06 - mean hmcrej: 0.06 latrej: 0.06 - mean hmcrej: 0.06 latrej: 0.06 - mean hmcrej: 0.06 latrej: 0.06 - mean hmcrej: 0.06 latrej: 0.06 - mean hmcrej: 0.06 latrej: 0.06 - mean hmcrej: 0.06 latrej: 0.06 - mean hmcrej: 0.06 latrej: 0.06 - mean hmcrej: 0.06 latrej: 0.06 - mean hmcrej: 0.06 latrej: 0.06 - mean hmcrej: 0.06 latrej: 0.06 - mean hmcrej: 0.06 latrej: 0.06 - mean hmcrej: 0.06 latrej: 0.06 - mean hmcrej: 0.06 latrej: 0.06 - mean hmcrej: 0.06 latrej: 0.06 - mean hmcrej: 0.06 latrej: 0.06 - mean hmcrej: 0.06 latrej: 0.06 - mean hmcrej: 0.06 latrej: 0.06 - mean hmcrej: 0.06 latrej: 0.06 - mean hmcrej: 0.06 latrej: 0.06 - mean hmcrej: 0.06 latrej: 0.06 - mean hmcrej: 0.06 latrej: 0.06 - mean hmcrej: 0.06 latrej: 0.06 - mean hmcrej: 0.06 latrej: 0.06 - mean hmcrej: 0.06 latrej: 0.06 - mean hmcrej: 0.06 latrej: 0.06 - mean hmcrej: 0.06 latrej: 0.07 - mean hmcrej: 0.06 latrej: 0.06 - mean hmcrej: 0.06 latrej: 0.07 - mean hmcrej: 0.06 latrej: 0.07 - mean hmcrej: 0.05 latrej: 0.07 - mean hmcrej: 0.05 latrej: 0.07 - mean hmcrej: 0.05 latrej: 0.07 - mean hmcrej: 0.05 latrej: 0.07 - mean hmcrej: 0.05 latrej: 0.07 - mean hmcrej: 0.05 latrej: 0.07 - mean hmcrej: 0.05 latrej: 0.07 - mean hmcrej: 0.05 latrej: 0.07 - mean hmcrej: 0.05 latrej: 0.07 - mean hmcrej: 0.05 latrej: 0.07 - mean hmcrej: 0.05 latrej: 0.07 - mean hmcrej: 0.05 latrej: 0.07 - mean hmcrej: 0.05 latrej: 0.07 - mean hmcrej: 0.05 latrej: 0.07 - mean hmcrej: 0.05 latrej: 0.07 - mean hmcrej: 0.05 latrej: 0.06 - mean hmcrej: 0.05 latrej: 0.07 - mean hmcrej: 0.05 latrej: 0.07 - mean hmcrej: 0.05 latrej: 0.07 - mean hmcrej: 0.05 latrej: 0.07 - mean hmcrej: 0.05 latrej: 0.07 - mean hmcrej: 0.05 latrej: 0.06 - mean hmcrej: 0.05 latrej: 0.06 - mean hmcrej: 0.05 latrej: 0.06 - mean hmcrej: 0.05 latrej: 0.06 - mean hmcrej: 0.05 latrej: 0.06 - mean hmcrej: 0.05 latrej: 0.06 - mean hmcrej: 0.05 latrej: 0.06 - mean hmcrej: 0.05 latrej: 0.07 - mean hmcrej: 0.05 latrej: 0.07 - mean hmcrej: 0.05 latrej: 0.06 - mean hmcrej: 0.05 latrej: 0.07 - mean hmcrej: 0.05 latrej: 0.07 - mean hmcrej: 0.05 latrej: 0.06 - mean hmcrej: 0.05 latrej: 0.07 - mean hmcrej: 0.05 latrej: 0.07 - mean hmcrej: 0.05 latrej: 0.07 - mean hmcrej: 0.05 latrej: 0.07 - mean hmcrej: 0.05 latrej: 0.07 - mean hmcrej: 0.05 latrej: 0.07 - mean hmcrej: 0.05 latrej: 0.07 - mean hmcrej: 0.05 latrej: 0.07 - mean hmcrej: 0.05 latrej: 0.07 - mean hmcrej: 0.05 latrej: 0.06 - mean hmcrej: 0.05 latrej: 0.07 - mean hmcrej: 0.05 latrej: 0.07 - mean hmcrej: 0.05 latrej: 0.07 - mean hmcrej: 0.05 latrej: 0.07 - mean hmcrej: 0.05 latrej: 0.07 - mean hmcrej: 0.05 latrej: 0.07 - mean hmcrej: 0.05 latrej: 0.07 - mean hmcrej: 0.05 latrej: 0.07 - mean hmcrej: 0.05 latrej: 0.06 - mean hmcrej: 0.05 latrej: 0.06 - mean hmcrej: 0.05 latrej: 0.06 - mean hmcrej: 0.05 latrej: 0.06 - mean hmcrej: 0.05 latrej: 0.06 - mean hmcrej: 0.05 latrej: 0.06 - mean hmcrej: 0.05 latrej: 0.06 - mean hmcrej: 0.05 latrej: 0.06 - mean hmcrej: 0.05 latrej: 0.06 - mean hmcrej: 0.05 latrej: 0.06 - mean hmcrej: 0.05 latrej: 0.06 - mean hmcrej: 0.05 latrej: 0.06 - mean hmcrej: 0.05 latrej: 0.06 - mean hmcrej: 0.05 latrej: 0.06 - mean hmcrej: 0.05 latrej: 0.07 - mean hmcrej: 0.05 latrej: 0.06 - mean hmcrej: 0.05 latrej: 0.06 - mean hmcrej: 0.05 latrej: 0.07 - mean hmcrej: 0.05 latrej: 0.07 - mean hmcrej: 0.05 latrej: 0.07 - mean hmcrej: 0.05 latrej: 0.07 - mean hmcrej: 0.05 latrej: 0.07 - mean hmcrej: 0.05 latrej: 0.07 - mean hmcrej: 0.05 latrej: 0.07 - mean hmcrej: 0.05 latrej: 0.07 - mean hmcrej: 0.05 latrej: 0.06 - mean hmcrej: 0.05 latrej: 0.06 - mean hmcrej: 0.05 latrej: 0.06 - mean hmcrej: 0.05 latrej: 0.06 - mean hmcrej: 0.05 latrej: 0.06 - mean hmcrej: 0.05 latrej: 0.06 - mean hmcrej: 0.05 latrej: 0.06 - mean hmcrej: 0.05 latrej: 0.06 - mean hmcrej: 0.05 latrej: 0.06 - mean hmcrej: 0.05 latrej: 0.06 - mean hmcrej: 0.05 latrej: 0.06 - mean hmcrej: 0.05 latrej: 0.06 - mean hmcrej: 0.05 latrej: 0.06 - mean hmcrej: 0.05 latrej: 0.06 - mean hmcrej: 0.05 latrej: 0.06 - mean hmcrej: 0.05 latrej: 0.06 - mean hmcrej: 0.05 latrej: 0.06 - mean hmcrej: 0.05 latrej: 0.06 - mean hmcrej: 0.05 latrej: 0.06 - mean hmcrej: 0.05 latrej: 0.06 - mean hmcrej: 0.05 latrej: 0.06 - mean hmcrej: 0.05 latrej: 0.06 - mean hmcrej: 0.05 latrej: 0.06 - mean hmcrej: 0.05 latrej: 0.06 - mean hmcrej: 0.05 latrej: 0.06 - mean hmcrej: 0.05 latrej: 0.06 - mean hmcrej: 0.05 latrej: 0.06 - mean hmcrej: 0.06 latrej: 0.06 - mean hmcrej: 0.06 latrej: 0.06 - mean hmcrej: 0.06 latrej: 0.06 - mean hmcrej: 0.06 latrej: 0.06 - mean hmcrej: 0.06 latrej: 0.06 - mean hmcrej: 0.06 latrej: 0.06 - mean hmcrej: 0.06 latrej: 0.06 - mean hmcrej: 0.06 latrej: 0.06 - mean hmcrej: 0.06 latrej: 0.06 - mean hmcrej: 0.06 latrej: 0.06 - mean hmcrej: 0.06 latrej: 0.06 - mean hmcrej: 0.06 latrej: 0.06 - mean hmcrej: 0.06 latrej: 0.06 - mean hmcrej: 0.06 latrej: 0.06 - mean hmcrej: 0.06 latrej: 0.06 - mean hmcrej: 0.06 latrej: 0.06 - mean hmcrej: 0.05 latrej: 0.06 - mean hmcrej: 0.05 latrej: 0.06 - mean hmcrej: 0.06 latrej: 0.06 - mean hmcrej: 0.06 latrej: 0.06 - mean hmcrej: 0.05 latrej: 0.06 - mean hmcrej: 0.05 latrej: 0.06 - mean hmcrej: 0.05 latrej: 0.06 - mean hmcrej: 0.05 latrej: 0.06 - mean hmcrej: 0.05 latrej: 0.06 - mean hmcrej: 0.05 latrej: 0.06 - mean hmcrej: 0.06 latrej: 0.06 - mean hmcrej: 0.06 latrej: 0.06 - mean hmcrej: 0.06 latrej: 0.06 - mean hmcrej: 0.06 latrej: 0.06 - mean hmcrej: 0.06 latrej: 0.06 - mean hmcrej: 0.06 latrej: 0.06 - mean hmcrej: 0.06 latrej: 0.06 - mean hmcrej: 0.06 latrej: 0.06 - mean hmcrej: 0.06 latrej: 0.06 - mean hmcrej: 0.06 latrej: 0.06 - mean hmcrej: 0.06 latrej: 0.06 - mean hmcrej: 0.06 latrej: 0.06 - mean hmcrej: 0.06 latrej: 0.06 - mean hmcrej: 0.06 latrej: 0.06 - mean hmcrej: 0.06 latrej: 0.06 - mean hmcrej: 0.06 latrej: 0.06 - mean hmcrej: 0.06 latrej: 0.06 - mean hmcrej: 0.06 latrej: 0.06 - mean hmcrej: 0.06 latrej: 0.06 - mean hmcrej: 0.06 latrej: 0.06 - mean hmcrej: 0.06 latrej: 0.06 - mean hmcrej: 0.06 latrej: 0.06 - mean hmcrej: 0.06 latrej: 0.06 - mean hmcrej: 0.06 latrej: 0.06 - mean hmcrej: 0.06 latrej: 0.06 - mean hmcrej: 0.06 latrej: 0.06 - mean hmcrej: 0.06 latrej: 0.06 - mean hmcrej: 0.06 latrej: 0.06 - mean hmcrej: 0.06 latrej: 0.06 - mean hmcrej: 0.06 latrej: 0.06 - mean hmcrej: 0.06 latrej: 0.06 - mean hmcrej: 0.06 latrej: 0.06 - mean hmcrej: 0.06 latrej: 0.06 - mean hmcrej: 0.06 latrej: 0.06 - mean hmcrej: 0.05 latrej: 0.06 - mean hmcrej: 0.05 latrej: 0.06 - mean hmcrej: 0.06 latrej: 0.06 - mean hmcrej: 0.06 latrej: 0.06 - mean hmcrej: 0.06 latrej: 0.06 - mean hmcrej: 0.06 latrej: 0.06 - mean hmcrej: 0.06 latrej: 0.06 - mean hmcrej: 0.06 latrej: 0.06 - mean hmcrej: 0.06 latrej: 0.06 - mean hmcrej: 0.06 latrej: 0.06 - mean hmcrej: 0.06 latrej: 0.06 - mean hmcrej: 0.05 latrej: 0.06 - mean hmcrej: 0.05 latrej: 0.06 - mean hmcrej: 0.05 latrej: 0.06 - mean hmcrej: 0.05 latrej: 0.06 - mean hmcrej: 0.05 latrej: 0.06 - mean hmcrej: 0.05 latrej: 0.06 - mean hmcrej: 0.05 latrej: 0.06 - mean hmcrej: 0.06 latrej: 0.06 - mean hmcrej: 0.06 latrej: 0.06 - mean hmcrej: 0.06 latrej: 0.06 - mean hmcrej: 0.06 latrej: 0.06 - mean hmcrej: 0.06 latrej: 0.06 - mean hmcrej: 0.06 latrej: 0.06 - mean hmcrej: 0.06 latrej: 0.06 - mean hmcrej: 0.06 latrej: 0.06 - mean hmcrej: 0.06 latrej: 0.06 - mean hmcrej: 0.06 latrej: 0.06 - mean hmcrej: 0.06 latrej: 0.06 - mean hmcrej: 0.06 latrej: 0.06 - mean hmcrej: 0.06 latrej: 0.06 - mean hmcrej: 0.06 latrej: 0.06 - mean hmcrej: 0.06 latrej: 0.06 - mean hmcrej: 0.06 latrej: 0.06 - mean hmcrej: 0.06 latrej: 0.06 - mean hmcrej: 0.06 latrej: 0.06 - mean hmcrej: 0.06 latrej: 0.06 - mean hmcrej: 0.06 latrej: 0.06 - mean hmcrej: 0.06 latrej: 0.06 - mean hmcrej: 0.06 latrej: 0.06 - mean hmcrej: 0.06 latrej: 0.06 - mean hmcrej: 0.06 latrej: 0.06 - mean hmcrej: 0.06 latrej: 0.06 - mean hmcrej: 0.06 latrej: 0.06 - mean hmcrej: 0.06 latrej: 0.06 - mean hmcrej: 0.06 latrej: 0.06 - mean hmcrej: 0.06 latrej: 0.06 - mean hmcrej: 0.06 latrej: 0.06 - mean hmcrej: 0.06 latrej: 0.06 - mean hmcrej: 0.06 latrej: 0.06 - mean hmcrej: 0.06 latrej: 0.06 - mean hmcrej: 0.05 latrej: 0.06 - mean hmcrej: 0.06 latrej: 0.06 - mean hmcrej: 0.06 latrej: 0.06 - mean hmcrej: 0.06 latrej: 0.06 - mean hmcrej: 0.06 latrej: 0.06 - mean hmcrej: 0.06 latrej: 0.06 - mean hmcrej: 0.06 latrej: 0.06 - mean hmcrej: 0.06 latrej: 0.06 - mean hmcrej: 0.06 latrej: 0.06 - mean hmcrej: 0.06 latrej: 0.06 - mean hmcrej: 0.06 latrej: 0.06 - mean hmcrej: 0.06 latrej: 0.06 - mean hmcrej: 0.06 latrej: 0.06 - mean hmcrej: 0.06 latrej: 0.06 - mean hmcrej: 0.06 latrej: 0.06 - mean hmcrej: 0.06 latrej: 0.06 - mean hmcrej: 0.06 latrej: 0.06 - mean hmcrej: 0.06 latrej: 0.06 - mean hmcrej: 0.06 latrej: 0.06 - mean hmcrej: 0.06 latrej: 0.06 - mean hmcrej: 0.06 latrej: 0.06 - mean hmcrej: 0.06 latrej: 0.06 - mean hmcrej: 0.06 latrej: 0.06 - mean hmcrej: 0.06 latrej: 0.06 - mean hmcrej: 0.06 latrej: 0.06 - mean hmcrej: 0.06 latrej: 0.06 - mean hmcrej: 0.06 latrej: 0.06 - mean hmcrej: 0.06 latrej: 0.06 - mean hmcrej: 0.06 latrej: 0.06 - mean hmcrej: 0.06 latrej: 0.06 - mean hmcrej: 0.06 latrej: 0.06 - mean hmcrej: 0.06 latrej: 0.06 - mean hmcrej: 0.06 latrej: 0.06 - mean hmcrej: 0.06 latrej: 0.06 - mean hmcrej: 0.06 latrej: 0.06 - mean hmcrej: 0.06 latrej: 0.06 - mean hmcrej: 0.06 latrej: 0.06 - mean hmcrej: 0.06 latrej: 0.06 - mean hmcrej: 0.06 latrej: 0.06 - mean hmcrej: 0.06 latrej: 0.06 - mean hmcrej: 0.06 latrej: 0.06 - mean hmcrej: 0.06 latrej: 0.06 - mean hmcrej: 0.06 latrej: 0.06 - mean hmcrej: 0.06 latrej: 0.06 - mean hmcrej: 0.06 latrej: 0.06 - mean hmcrej: 0.06 latrej: 0.06 - mean hmcrej: 0.06 latrej: 0.06 - mean hmcrej: 0.06 latrej: 0.06 - mean hmcrej: 0.06 latrej: 0.06 - mean hmcrej: 0.06 latrej: 0.06 - mean hmcrej: 0.06 latrej: 0.06 - mean hmcrej: 0.06 latrej: 0.06 - mean hmcrej: 0.06 latrej: 0.06 - mean hmcrej: 0.06 latrej: 0.06 - mean hmcrej: 0.06 latrej: 0.06 - mean hmcrej: 0.06 latrej: 0.06 - mean hmcrej: 0.06 latrej: 0.06 - mean hmcrej: 0.06 latrej: 0.06 - mean hmcrej: 0.06 latrej: 0.06 - mean hmcrej: 0.06 latrej: 0.06 - mean hmcrej: 0.06 latrej: 0.06 - mean hmcrej: 0.06 latrej: 0.06 - mean hmcrej: 0.06 latrej: 0.06 - mean hmcrej: 0.06 latrej: 0.06 - mean hmcrej: 0.06 latrej: 0.06 - mean hmcrej: 0.06 latrej: 0.06 - mean hmcrej: 0.06 latrej: 0.06 - mean hmcrej: 0.06 latrej: 0.06 - mean hmcrej: 0.06 latrej: 0.06 - mean hmcrej: 0.06 latrej: 0.06 - mean hmcrej: 0.06 latrej: 0.06 - mean hmcrej: 0.06 latrej: 0.06 - mean hmcrej: 0.06 latrej: 0.06 - mean hmcrej: 0.06 latrej: 0.06 - mean hmcrej: 0.06 latrej: 0.06 - -S3 = - -MCMC: 90% CI - length-scale: [7.3,28.7], magnSigma: [0.114,0.332] - - -MAP: length-scale: 14.3, magnSigma: 0.153 - -IA-GRID: 90% CI - length-scale: [8.8,33.1], magnSigma: [0.099,0.325] - -MCMC: 90% CI - length-scale: [7.3,28.7], magnSigma: [0.114,0.332] - - - gp hyperparameters: - - -2.3055 2.8813 - -Demo completed in 4.450 minutes diff --git a/tests/realValues/spatial1_fig1.fig b/tests/realValues/spatial1_fig1.fig deleted file mode 100644 index dbdc49f0..00000000 Binary files a/tests/realValues/spatial1_fig1.fig and /dev/null differ diff --git a/tests/realValues/spatial1_fig2.fig b/tests/realValues/spatial1_fig2.fig deleted file mode 100644 index 82312ea1..00000000 Binary files a/tests/realValues/spatial1_fig2.fig and /dev/null differ diff --git a/tests/realValues/spatial1_fig3.fig b/tests/realValues/spatial1_fig3.fig deleted file mode 100644 index 9094ac02..00000000 Binary files a/tests/realValues/spatial1_fig3.fig and /dev/null differ diff --git a/tests/realValues/spatial1_fig4.fig b/tests/realValues/spatial1_fig4.fig deleted file mode 100644 index 1677daa8..00000000 Binary files a/tests/realValues/spatial1_fig4.fig and /dev/null differ diff --git a/tests/realValues/spatial1_fig5.fig b/tests/realValues/spatial1_fig5.fig deleted file mode 100644 index 401a4d80..00000000 Binary files a/tests/realValues/spatial1_fig5.fig and /dev/null differ diff --git a/tests/realValues/spatial1_fig6.fig b/tests/realValues/spatial1_fig6.fig deleted file mode 100644 index 4687f63f..00000000 Binary files a/tests/realValues/spatial1_fig6.fig and /dev/null differ diff --git a/tests/realValues/spatial1_fig7.fig b/tests/realValues/spatial1_fig7.fig deleted file mode 100644 index 98cacd12..00000000 Binary files a/tests/realValues/spatial1_fig7.fig and /dev/null differ diff --git a/tests/realValues/spatial2.mat b/tests/realValues/spatial2.mat deleted file mode 100644 index cf2ac397..00000000 Binary files a/tests/realValues/spatial2.mat and /dev/null differ diff --git a/tests/realValues/spatial2.txt b/tests/realValues/spatial2.txt deleted file mode 100644 index 81339926..00000000 --- a/tests/realValues/spatial2.txt +++ /dev/null @@ -1,28 +0,0 @@ -GP with negative-binomial observation model, Laplace -integration over the latent values and MAP estimate -for the parameters - Iteration Func-count f(x) Lambda - 0 1 5286.4 - 1 3 5286.36 10 - 2 4 5241.3 40 - 3 6 5221.46 40 - 4 8 5216.89 20 - 5 10 5216.55 10 - 6 12 5216.44 5 - 7 14 5216.44 2.5 - TolX reached. Func-count 14. Final f(x)=5216.44. Elapsed time 239.70 -Proportion of non-zeros is 0.0715 -GP with negative-binomial observation model, EP -integration over the latent values and MAP estimate -for the parameters - Iteration Func-count f(x) Lambda - 0 1 5216.4 - 1 3 5216.42 10 - TolX reached. Func-count 3. Final f(x)=5216.42. Elapsed time 221.78 -Proportion of non-zeros is 0.0715 - - gp hyperparameters: - - -2.1782 2.2583 2.8991 - -Demo completed in 8.026 minutes diff --git a/tests/realValues/spatial2_fig1.fig b/tests/realValues/spatial2_fig1.fig deleted file mode 100644 index 0c9bf517..00000000 Binary files a/tests/realValues/spatial2_fig1.fig and /dev/null differ diff --git a/tests/realValues/spatial2_fig2.fig b/tests/realValues/spatial2_fig2.fig deleted file mode 100644 index 5d922ac8..00000000 Binary files a/tests/realValues/spatial2_fig2.fig and /dev/null differ diff --git a/tests/realValues/spatial2_fig3.fig b/tests/realValues/spatial2_fig3.fig deleted file mode 100644 index 4fc9c1f9..00000000 Binary files a/tests/realValues/spatial2_fig3.fig and /dev/null differ diff --git a/tests/realValues/spatial2_fig4.fig b/tests/realValues/spatial2_fig4.fig deleted file mode 100644 index c77d2242..00000000 Binary files a/tests/realValues/spatial2_fig4.fig and /dev/null differ diff --git a/tests/realValues/spatial2_fig5.fig b/tests/realValues/spatial2_fig5.fig deleted file mode 100644 index 1a29a309..00000000 Binary files a/tests/realValues/spatial2_fig5.fig and /dev/null differ diff --git a/tests/realValues/spatial2_fig6.fig b/tests/realValues/spatial2_fig6.fig deleted file mode 100644 index a0665282..00000000 Binary files a/tests/realValues/spatial2_fig6.fig and /dev/null differ diff --git a/tests/realValues/survival_aft.txt b/tests/realValues/survival_aft.txt deleted file mode 100644 index 414cde19..00000000 --- a/tests/realValues/survival_aft.txt +++ /dev/null @@ -1,43 +0,0 @@ - Iteration Func-count Grad-count f(x) Step-size - 0 1 1 1685.5 - 1 3 3 1677.24 0.000815125 - 2 5 5 1669.25 0.295997 - 3 7 7 1661.47 0.204233 - 4 9 9 1658.18 0.139274 - 5 12 12 1656.38 0.0470118 - 6 14 14 1655.37 0.425986 - 7 16 16 1654.6 0.201154 - 8 17 17 1654.34 1 - 9 18 18 1654.17 1 - 10 19 19 1654.17 1 - 11 20 20 1654.17 1 - 12 21 21 1654.17 1 - 13 22 22 1654.17 1 - Optimizer Results - Algorithm Used: Broyden-Fletcher-Goldfarb-Shanno (BFGS) - Exit message : Change in x was smaller than the specified tolerance TolX. - Iterations : 14 - Function Count : 23 - Minimum found : 1654.1655 - Intern Time : 0.045501 seconds - Total Time : 16.0997 seconds - IA-CCD: computing Hessian using multiplication - Elapsed time 13.39 seconds - IA-CCD: 81 points for 8 parameters - IA-CCD: autoscaling in 16 directions - IA-CCD: scaling minmax [0.77 1.22] - Elapsed time 6.22 seconds - IA-CCD: evaluating density at 81 points - Elapsed time 27.19 seconds - IA-CCD: Total elapsed time 46.87 seconds - -ans = - - -1.6292e+03 - - - gp hyperparameters: - - -0.5933 -0.7558 -0.2888 0.6951 2.0332 -0.4531 0.5524 -0.0853 - -Demo completed in 6.724 minutes diff --git a/tests/realValues/survival_aft_fig1.fig b/tests/realValues/survival_aft_fig1.fig deleted file mode 100644 index d24c1e5b..00000000 Binary files a/tests/realValues/survival_aft_fig1.fig and /dev/null differ diff --git a/tests/realValues/survival_coxph.mat b/tests/realValues/survival_coxph.mat deleted file mode 100644 index 92010549..00000000 Binary files a/tests/realValues/survival_coxph.mat and /dev/null differ diff --git a/tests/realValues/survival_coxph.txt b/tests/realValues/survival_coxph.txt deleted file mode 100644 index 9419205d..00000000 --- a/tests/realValues/survival_coxph.txt +++ /dev/null @@ -1,40 +0,0 @@ - Iteration Func-count f(x) Lambda - 0 1 592.79 - 1 3 586.41 21.6 - 2 5 585.087 21.6 - 3 7 572.396 10.8 - 4 9 569.02 5.41 - 5 11 568.097 2.71 - 6 13 567.164 1.35 - 7 15 567.04 0.676 - 8 17 566.904 0.338 - 9 19 566.673 0.169 - 10 21 566.665 0.0846 - TolFun reached. Func-count 21. Final f(x)=566.665. Elapsed time 58.25 - -ans = - - -5.9203e+03 - -Evaluating the CV utility. The inference method is MAP. - The CV-fold number: 1/10 - The CV-fold number: 2/10 - The CV-fold number: 3/10 - The CV-fold number: 4/10 - The CV-fold number: 5/10 - The CV-fold number: 6/10 - The CV-fold number: 7/10 - The CV-fold number: 8/10 - The CV-fold number: 9/10 - The CV-fold number: 10/10 - -ans = - - -546.5010 - - - gp hyperparameters: - - -0.6744 -0.3888 -0.6922 -1.1005 -1.3187 -1.5066 0.4186 0.9045 -0.9993 0.4694 - -Demo completed in 15.805 minutes diff --git a/tests/realValues/survival_coxph_fig1.fig b/tests/realValues/survival_coxph_fig1.fig deleted file mode 100644 index 62315ddd..00000000 Binary files a/tests/realValues/survival_coxph_fig1.fig and /dev/null differ diff --git a/tests/realValues/svi_classific.mat b/tests/realValues/svi_classific.mat deleted file mode 100644 index 41dadecd..00000000 Binary files a/tests/realValues/svi_classific.mat and /dev/null differ diff --git a/tests/realValues/svi_classific.txt b/tests/realValues/svi_classific.txt deleted file mode 100644 index d769aa98..00000000 --- a/tests/realValues/svi_classific.txt +++ /dev/null @@ -1,105 +0,0 @@ -SVI GP classification model with probit likelihood -Select 20 inducing inputs by clustering 10 points from both training classes ... done -iter=1/1000, e=-7860.360, de=Inf -iter=11/1000, e=-165.931, de=2.3164 -iter=21/1000, e=-148.428, de=1.1875 -iter=31/1000, e=-139.968, de=0.74236 -iter=41/1000, e=-135.056, de=0.44259 -iter=51/1000, e=-131.841, de=0.59245 -iter=61/1000, e=-129.681, de=0.38347 -iter=71/1000, e=-128.214, de=0.038981 -iter=81/1000, e=-126.864, de=0.07066 -iter=91/1000, e=-126.041, de=0.10476 -iter=101/1000, e=-125.086, de=0.062065 -iter=111/1000, e=-124.379, de=0.03243 -iter=121/1000, e=-123.903, de=0.079169 -iter=131/1000, e=-123.417, de=0.042307 -iter=141/1000, e=-122.934, de=0.072635 -iter=151/1000, e=-122.674, de=0.005947 -iter=161/1000, e=-122.282, de=0.0011458 -iter=171/1000, e=-122.021, de=0.064172 -iter=181/1000, e=-121.737, de=0.027982 -iter=191/1000, e=-121.554, de=0.034569 -iter=201/1000, e=-121.295, de=0.0065123 -iter=211/1000, e=-121.112, de=0.035029 -iter=221/1000, e=-120.938, de=0.023682 -iter=231/1000, e=-120.793, de=0.013486 -iter=241/1000, e=-120.612, de=0.0041615 -iter=251/1000, e=-120.500, de=0.014727 -iter=261/1000, e=-120.344, de=0.0065798 -iter=271/1000, e=-120.224, de=0.032921 -iter=281/1000, e=-120.089, de=0.0040458 -iter=291/1000, e=-120.021, de=0.020417 -iter=301/1000, e=-119.913, de=0.0086777 -iter=311/1000, e=-119.852, de=0.0057643 -iter=321/1000, e=-119.709, de=0.06095 -iter=331/1000, e=-119.689, de=0.011442 -iter=341/1000, e=-119.585, de=0.019807 -iter=351/1000, e=-119.484, de=0.029099 -iter=361/1000, e=-119.437, de=0.026291 -iter=371/1000, e=-119.362, de=0.0074362 -iter=381/1000, e=-119.326, de=0.00062521 -iter=391/1000, e=-119.250, de=0.00043361 -iter=401/1000, e=-119.176, de=0.007927 -iter=411/1000, e=-119.134, de=0.009016 -iter=421/1000, e=-119.076, de=0.015387 -iter=431/1000, e=-119.017, de=0.0072118 -iter=441/1000, e=-118.998, de=0.016271 -iter=451/1000, e=-118.955, de=0.00070405 -iter=461/1000, e=-118.887, de=0.013122 -iter=471/1000, e=-118.862, de=0.018169 -iter=481/1000, e=-118.793, de=0.0204 -iter=491/1000, e=-118.778, de=0.014299 -iter=501/1000, e=-118.709, de=0.014295 -iter=511/1000, e=-118.680, de=0.020085 -iter=521/1000, e=-118.661, de=0.016699 -iter=531/1000, e=-118.639, de=0.014926 -iter=541/1000, e=-118.608, de=0.017074 -iter=551/1000, e=-118.558, de=0.0025758 -iter=561/1000, e=-118.531, de=0.0024666 -iter=571/1000, e=-118.499, de=0.007473 -iter=581/1000, e=-118.462, de=0.0071841 -iter=591/1000, e=-118.439, de=0.014747 -iter=601/1000, e=-118.399, de=0.0069098 -iter=611/1000, e=-118.374, de=0.0081705 -iter=621/1000, e=-118.363, de=0.005196 -iter=631/1000, e=-118.345, de=0.0095211 -iter=641/1000, e=-118.296, de=0.0026426 -iter=651/1000, e=-118.276, de=0.0010179 -iter=661/1000, e=-118.260, de=0.0050527 -iter=671/1000, e=-118.221, de=0.0016515 -iter=681/1000, e=-118.225, de=0.013952 -iter=691/1000, e=-118.196, de=0.0046819 -iter=701/1000, e=-118.169, de=0.0053694 -iter=711/1000, e=-118.136, de=0.0074989 -iter=721/1000, e=-118.134, de=0.010308 -iter=731/1000, e=-118.096, de=0.012854 -iter=741/1000, e=-118.089, de=0.0073019 -iter=751/1000, e=-118.068, de=0.0044747 -iter=761/1000, e=-118.042, de=0.0087049 -iter=771/1000, e=-118.036, de=0.00292 -iter=781/1000, e=-118.005, de=0.0081969 -iter=791/1000, e=-117.987, de=0.0094266 -iter=801/1000, e=-117.977, de=0.0054837 -iter=811/1000, e=-117.967, de=0.0085031 -iter=821/1000, e=-117.953, de=0.0046847 -iter=831/1000, e=-117.934, de=0.0028916 -iter=841/1000, e=-117.925, de=0.003906 -iter=851/1000, e=-117.890, de=0.00077029 -iter=861/1000, e=-117.877, de=0.0079648 -iter=871/1000, e=-117.865, de=0.007645 -iter=881/1000, e=-117.854, de=0.0051175 -iter=891/1000, e=-117.841, de=0.0040959 -iter=901/1000, e=-117.826, de=0.0053202 -iter=911/1000, e=-117.811, de=0.0083797 -iter=921/1000, e=-117.806, de=0.0065045 -iter=931/1000, e=-117.790, de=0.00091282 -iter=941/1000, e=-117.771, de=0.00096074 -iter=951/1000, e=-117.766, de=0.0047903 -iter=961/1000, e=-117.756, de=0.0073944 -iter=971/1000, e=-117.733, de=0.0023123 -iter=981/1000, e=-117.733, de=0.0059698 -iter=991/1000, e=-117.724, de=0.0010356 -Iteration limit 1000 reached while optimising the parameters -Final energy: -117.699 -Demo completed in 2.713 minutes diff --git a/tests/realValues/svi_classific_fig1.fig b/tests/realValues/svi_classific_fig1.fig deleted file mode 100644 index 8ef29f31..00000000 Binary files a/tests/realValues/svi_classific_fig1.fig and /dev/null differ diff --git a/tests/realValues/svi_regression.mat b/tests/realValues/svi_regression.mat deleted file mode 100644 index d0870ab2..00000000 Binary files a/tests/realValues/svi_regression.mat and /dev/null differ diff --git a/tests/realValues/svi_regression.txt b/tests/realValues/svi_regression.txt deleted file mode 100644 index 924da3ed..00000000 --- a/tests/realValues/svi_regression.txt +++ /dev/null @@ -1,22 +0,0 @@ -Assign inducing inputs by clustering -iter=1/150, e=-806.238, mlpd=-0.00329, rmse=0.08678, de=Inf -iter=11/150, e=1628.618, mlpd=1.341, rmse=0.01701, de=0.53808 -iter=21/150, e=1638.118, mlpd=1.352, rmse=0.01603, de=0.92957 -iter=31/150, e=1644.276, mlpd=1.354, rmse=0.01486, de=0.00041356 -iter=41/150, e=1648.648, mlpd=1.357, rmse=0.01436, de=0.6143 -iter=51/150, e=1650.748, mlpd=1.353, rmse=0.01441, de=0.011609 -iter=61/150, e=1653.303, mlpd=1.357, rmse=0.01386, de=0.69366 -iter=71/150, e=1654.098, mlpd=1.356, rmse=0.01392, de=0.73379 -iter=81/150, e=1655.407, mlpd=1.362, rmse=0.01336, de=0.15758 -iter=91/150, e=1656.587, mlpd=1.362, rmse=0.01348, de=0.83295 -iter=101/150, e=1657.672, mlpd=1.362, rmse=0.01369, de=0.55494 -iter=111/150, e=1658.012, mlpd=1.359, rmse=0.01341, de=0.028293 -iter=121/150, e=1659.574, mlpd=1.362, rmse=0.0132, de=0.37814 -iter=131/150, e=1660.190, mlpd=1.361, rmse=0.01289, de=0.43749 -iter=141/150, e=1660.848, mlpd=1.361, rmse=0.01271, de=0.026303 -Iteration limit 150 reached while optimising the parameters -Final values: -e=1660.428, mlpd=1.362, rmse=0.01325 -[Warning: MATLAB has disabled some advanced graphics rendering features by switching to software -OpenGL. For more information, click here.] -Demo completed in 1.108 minutes diff --git a/tests/realValues/svi_regression_fig1.fig b/tests/realValues/svi_regression_fig1.fig deleted file mode 100644 index 7a1db3d0..00000000 Binary files a/tests/realValues/svi_regression_fig1.fig and /dev/null differ diff --git a/tests/realValues/svi_regression_fig2.fig b/tests/realValues/svi_regression_fig2.fig deleted file mode 100644 index 6f1a4b80..00000000 Binary files a/tests/realValues/svi_regression_fig2.fig and /dev/null differ diff --git a/tests/realValues/zinegbin.mat b/tests/realValues/zinegbin.mat deleted file mode 100644 index 383f2823..00000000 Binary files a/tests/realValues/zinegbin.mat and /dev/null differ diff --git a/tests/realValues/zinegbin.txt b/tests/realValues/zinegbin.txt deleted file mode 100644 index 99479c7f..00000000 --- a/tests/realValues/zinegbin.txt +++ /dev/null @@ -1,30 +0,0 @@ - Iteration Func-count Grad-count f(x) Step-size - 0 1 1 2964.84 - 1 2 2 2908.76 0.0146046 - 2 4 4 2900.33 0.1 - 3 5 5 2885.72 1 - 4 7 7 2864.1 0.295668 - 5 8 8 2848.64 1 - 6 9 9 2842.71 1 - 7 10 10 2842.05 1 - 8 12 12 2841.84 0.266463 - 9 14 14 2841.81 0.143598 - 10 15 15 2841.77 1 - 11 16 16 2841.71 1 - 12 17 17 2841.7 1 - 13 18 18 2841.69 1 - 14 19 19 2841.69 1 - Optimizer Results - Algorithm Used: Broyden-Fletcher-Goldfarb-Shanno (BFGS) - Exit message : Change in x was smaller than the specified tolerance TolX. - Iterations : 15 - Function Count : 20 - Minimum found : 2841.6901 - Intern Time : 0.017685 seconds - Total Time : 102.8869 seconds - - gp hyperparameters: - - 4.0478 1.3173 -2.6332 1.4244 - -Demo completed in 1.745 minutes diff --git a/tests/realValues/zinegbin_fig1.fig b/tests/realValues/zinegbin_fig1.fig deleted file mode 100644 index 10d61eb4..00000000 Binary files a/tests/realValues/zinegbin_fig1.fig and /dev/null differ diff --git a/tests/realValues/zinegbin_fig2.fig b/tests/realValues/zinegbin_fig2.fig deleted file mode 100644 index 64711c23..00000000 Binary files a/tests/realValues/zinegbin_fig2.fig and /dev/null differ diff --git a/tests/rundemo.m b/tests/rundemo.m deleted file mode 100644 index 2ca0d7c5..00000000 --- a/tests/rundemo.m +++ /dev/null @@ -1,256 +0,0 @@ -function rundemo(name, varToSave, mode) -%RUNDEMO Run a GPstuff demo and save the results. -% -% Description -% RUNDEMO(name, varToSave, mode) runs the GPstuff demo given in name -% and save given variables into the folder 'testValues' or -% 'realValues'. This function is used by test_* to compare the results -% into the precomputed expected ones. -% -% The saved components are: -% - desired workspace variables into .mat -% - command line output log into .txt -% - new created figures into _fig#.fig -% If diary is on before this function is called, it is left untouched -% and the logfile is not created. Figures created before this function -% are not touched. -% -% Parameters: -% name -% The name of the demo without the .m extension or the demo_ prefix, -% e.g. 'binomial1'. -% varToSave (optional) -% Cell array of strings indicates the variables that are saved into -% the desired folder. Giving string 'all' saves the whole work -% space. String 'same' (default) looks the names of the saved -% variables in the file 'realValues/.mat' and saves -% them. Empty array indicates that nothig is saved. A function can be -% applied into the variable before saving by providing a cell array -% containing the name of the variable and the function handle (in -% that order) in place of the name string in the cell array varToSave -% e.g. varToSave = {'var1' {'var2' @(x)diag(x)} 'var3'} saves -% variables var1, var2 = diag(var2) and var3. By providing a third -% cell array string element, the name of the saved variable can be -% changed, e.g. {'varOut' @(x)diag(x), 'varOrig'} saves variable -% varOut = diag(varOrig). -% mode (optional) -% String 'test' (default) or 'real' indicating which folder the -% results are saved. -% -% See also -% TEST_*, DEMO_* -% -% Copyright (c) 2014 Tuomas Sivula - -% This software is distributed under the GNU General Public -% License (version 3 or later); please refer to the file -% License.txt, included with the software, for details. - -% Handle parameters -% Save to 'testValues' by default -if nargin < 3 - mode = 'test'; -end -% If varToSave is not defined, save the same as before -if nargin < 2 - varToSave = 'same'; -end - -% Validate mode parameter -if ~(strcmp(mode, 'test') || strcmp(mode, 'real')) - error('Mode has to be ''test'' or ''real''') -end - -% Save required variables into the structure run_demo_data -run_demo_data.name = name; -run_demo_data.varToSave = varToSave; -run_demo_data.mode = mode; -% Store original figures -run_demo_data.orig_figs = get(0,'children'); -% Change working directory -fpath = mfilename('fullpath'); -run_demo_data.origPath = cd(fpath(1:end-length(mfilename))); -% Try to avoid differences in the results by setting a common random stream -run_demo_data.origStream = setrandstream(0); -% Hide figure windows -run_demo_data.origFigVisibility = get(0,'DefaultFigureVisible'); -set(0,'DefaultFigureVisible','off') -% Check if diay is already used (no logging then) -if strcmp(get(0,'Diary'), 'off') - run_demo_data.diary = 1; -else - run_demo_data.diary = 0; -end -clear name varToSave fpath mode - -% Create cleanup function to restore changes -run_demo_cleanupObj = onCleanup(@() restoreChanges(run_demo_data)); - -% Create the folder if it does not exist -if ~(exist([run_demo_data.mode 'Values/'], 'dir') == 7) - mkdir([run_demo_data.mode 'Values/']) -end - -% Run the demo and create log into the desired directory -try - - fprintf('---- Run demo_%s %s\n\n', ... - run_demo_data.name, repmat('-',1,79-15-length(run_demo_data.name))); - - % Create log, if diary is not currently running - if run_demo_data.diary - if exist([run_demo_data.mode 'Values/' run_demo_data.name '.txt'] ... - ,'file') - delete([run_demo_data.mode 'Values/' run_demo_data.name '.txt']); - end - diary([run_demo_data.mode 'Values/' run_demo_data.name '.txt']); - end - - % Run the demo and measure time - run_demo_data.timer_id = tic; - run(['demo_' run_demo_data.name]) - % If variable gp exist, display hypreparameters - if exist('gp', 'var') - run_demo_data.w = gp_pak(gp); - if numel(run_demo_data.w) <= 10 - fprintf('\n gp hyperparameters: \n \n') - disp(run_demo_data.w) - end - end - fprintf('Demo completed in %.3f minutes\n', ... - toc(run_demo_data.timer_id)/60) - - % Close diary at this point (if logged) - if run_demo_data.diary - diary off; - end - -catch err - % Error running the demo - % Here the exception could be included as a cause to a new exeption but - % that makes the information related to this exeption harder to see. - % ME = MException('run_demo:DemoFailure', 'Could not run demo_%s', ... - % run_demo_data.name); - % ME = addCause(ME, err); - % throw(ME) - rethrow(err) -end - -% Save the results into the desired directory -try - - % Save variables - if ~isempty(run_demo_data.varToSave) - if iscell(run_demo_data.varToSave) - % Apply functions - broken = 0; - for i = 1:length(run_demo_data.varToSave) - if iscell(run_demo_data.varToSave{i}) ... - && length(run_demo_data.varToSave{i}) >= 2 ... - && ischar(run_demo_data.varToSave{i}{1}) ... - && isvarname(run_demo_data.varToSave{i}{1}) ... - && isa(run_demo_data.varToSave{i}{2}, 'function_handle') ... - && (length(run_demo_data.varToSave{i}) == 2 ... - || (length(run_demo_data.varToSave{i}) == 3 ... - && ischar(run_demo_data.varToSave{i}{3}) ... - && isvarname(run_demo_data.varToSave{i}{3})) ) - if length(run_demo_data.varToSave{i}) == 2 - if exist(run_demo_data.varToSave{i}{1}, 'var') - eval(sprintf('%s = run_demo_data.varToSave{i}{2}(%s);', ... - run_demo_data.varToSave{i}{1}, ... - run_demo_data.varToSave{i}{1})); - else - error('Variable %s not found', run_demo_data.varToSave{i}{1}) - end - else - if exist(run_demo_data.varToSave{i}{3}, 'var') - eval(sprintf('%s = run_demo_data.varToSave{i}{2}(%s);', ... - run_demo_data.varToSave{i}{1}, ... - run_demo_data.varToSave{i}{3})); - else - error('Variable %s not found', run_demo_data.varToSave{i}{3}) - end - end - run_demo_data.varToSave{i} = run_demo_data.varToSave{i}{1}; - elseif ~ischar(run_demo_data.varToSave{i}) - warning('Unsupported parameter varToSave, no variables saved.') - broken = 1; - break - end - end - if ~broken - % Save given variables - save([run_demo_data.mode 'Values/' run_demo_data.name], ... - run_demo_data.varToSave{:}) - end - elseif ischar(run_demo_data.varToSave) ... - && strcmp(run_demo_data.varToSave, 'same') - % Save the same variables as in the 'realValues/.mat' - finfo = whos(matfile(['realValues/' run_demo_data.name '.mat'])); - if ~isempty(finfo) - save([run_demo_data.mode 'Values/' run_demo_data.name], finfo.name) - else - warning(['File realValues/' run_demo_data.name '.mat not found' ... - 'or file has no variables.']) - end - elseif ischar(run_demo_data.varToSave) ... - && strcmp(run_demo_data.varToSave, 'all') - % Save all variables - save([run_demo_data.mode 'Values/' run_demo_data.name]) - else - warning('Unsupported parameter varToSave, no variables saved.') - end - end - - % Save all figures into the desired folder - for i = setdiff(get(0,'children'), run_demo_data.orig_figs)' - if isprop(i, 'Number') - filename = [run_demo_data.mode 'Values/' ... - run_demo_data.name '_fig' num2str(i.Number) '.fig']; - else - filename = [run_demo_data.mode 'Values/' ... - run_demo_data.name '_fig' num2str(i) '.fig']; - end - % First save the figure hidden - saveas(i,filename) - % Then change the visible-flag on - % Note that the field hgM_070000 present in some newer Matlab versions - % is discarded. - f=load(filename,'-mat','hgS_070000'); - n=fieldnames(f); - f.(n{1}).properties.Visible='on'; - save(filename,'-struct','f') - end - -catch err - % Error saving the variables - ME = MException('run_demo:DemoResultSaveFailure', ... - 'Could not save the results'); - ME = addCause(ME, err); - throw(ME) -end - -fprintf('Results saved into the folder ''tests/%sValues/''\n\n', ... - run_demo_data.mode) - -end - - -function restoreChanges(run_demo_data) - % Ensure that changes are restored when exiting the function - - % Close all created 'hidden' figures - for i = setdiff(get(0,'children'), run_demo_data.orig_figs)' - close(i); - end - % Change directory - cd(run_demo_data.origPath) - % Set back previous random stream - setrandstream(run_demo_data.origStream); - % Set back original figure visibility - set(0,'DefaultFigureVisible',run_demo_data.origFigVisibility) - % Ensure that diary is closed (if used) - if run_demo_data.diary - diary off; - end -end diff --git a/tests/runtestset.m b/tests/runtestset.m deleted file mode 100644 index a8d88def..00000000 --- a/tests/runtestset.m +++ /dev/null @@ -1,174 +0,0 @@ -function log = runtestset(mode) -%RUNTESTSET Run a set of tests in GPstuff. -% -% Description -% LOG = RUN_GP_TESTS(MODE) runs a collection of tests in tests folder -% and returns the test log. Each of the tests runs corresponding demo -% and compares the values to previously saved ones for errors. This is -% useful e.g. in case user modifies functions provided by GPstuff. -% -% Possible values for parameter MODE: -% 'fast' - runs a selection of test taking about 2.5 min (default) -% 'hour' - runs a selection of test taking about one hour -% 'all' - runs all the tests taking about 5 hours -% -% Can be used with both xUnit Test Framework package by Steve Eddins -% and the built-in Unit Testing Framework. -% -% N.B. The time estimates assumes that SuiteSparse is used. The -% estimated runtime of the individual demos (min): -% binomial1 0.057 -% binomial2 2.853 -% binomial_apc 0.224 -% classific 1.058 -% derivativeobs 0.020 -% epinf 76.727 -% hierprior 2.734 -% hurdle 2.286 -% improvemarginals 0.043 -% kalman1 0.044 -% kalman2 6.270 -% lgcp 0.069 -% loopred 1.017 -% memorysave 0.727 -% modelassesment1 12.892 -% modelassesment2 45.490 -% monotonic2 0.406 -% multiclass 42.372 -% multiclass_nested_ep 1.088 -% multinom 1.027 -% neuralnetcov 0.076 -% periodic 0.380 -% quantilegp 2.862 -% regression1 1.028 -% regression_additive1 0.258 -% regression_additive2 0.112 -% regression_hier 0.409 -% regression_meanf 0.015 -% regression_ppcs 58.481 -% regression_robust 1.352 -% regression_sparse1 0.273 -% regression_sparse2 0.044 -% spatial1 4.473 -% spatial2 8.209 -% survival_aft 6.519 -% survival_coxph 15.872 -% svi_classific 2.713 -% svi_regression 0.740 -% zinegbin 1.763 -% -% See also -% Readme.txt - -% Copyright (c) 2011-2012 Ville Tolvanen -% Copyright (c) 2014 Tuomas Sivula - -% This software is distributed under the GNU General Public -% License (version 3 or later); please refer to the file -% License.txt, included with the software, for details. - -if nargin < 1 - mode = 'fast'; -end - -% Define tests to run on fast mode -fast_tests = {'test_binomial1' ... -'test_binomial_apc' ... -'test_derivativeobs' ... -'test_improvemarginals' ... -'test_kalman1' ... -'test_lgcp' ... -'test_monotonic2' ... -'test_neuralnetcov' ... -'test_periodic' ... -'test_regression_additive1' ... -'test_regression_additive2' ... -'test_regression_hier' ... -'test_regression_meanf' ... -'test_regression_sparse1' ... -'test_regression_sparse2' ... -'test_svi_regression'}'; - -% Define tests to run on hour mode -hour_tests = {'test_binomial1' ... -'test_binomial2' ... -'test_binomial_apc' ... -'test_classific' ... -'test_derivativeobs' ... -'test_hierprior' ... -'test_hurdle' ... -'test_improvemarginals' ... -'test_kalman1' ... -'test_kalman2' ... -'test_lgcp' ... -'test_loopred' ... -'test_memorysave' ... -'test_monotonic2' ... -'test_multiclass_nested_ep' ... -'test_multinom' ... -'test_neuralnetcov' ... -'test_periodic' ... -'test_quantilegp' ... -'test_regression1' ... -'test_regression_additive1' ... -'test_regression_additive2' ... -'test_regression_hier' ... -'test_regression_meanf' ... -'test_regression_robust' ... -'test_regression_sparse1' ... -'test_regression_sparse2' ... -'test_spatial1' ... -'test_spatial2' ... -'test_survival_aft' ... -'test_svi_classific' ... -'test_svi_regression' ... -'test_zinegbin'}'; - -% Path to the unittest folder -path = mfilename('fullpath'); -path = path(1:end-length(mfilename)); - -% Check which test package to use -runtests_path = which('runtests'); -if exist([runtests_path(1:end-10) 'initTestSuite.m'], 'file') - - % xUnit Test Framework - if strcmp(mode, 'all') - % Add all the tests - suite = TestSuite.fromName(path); - elseif strcmp(mode, 'fast') - % Add the selected tests - suite = TestSuite; - for i = 1:length(fast_tests) - suite.add(TestSuite(fast_tests{i})); - end - elseif strcmp(mode, 'hour') - % Add the selected tests - suite = TestSuite; - for i = 1:length(hour_tests) - suite.add(TestSuite(hour_tests{i})); - end - else - error('Unsupported mode') - end - % Run the tests - log = TestRunLogger; - suite.run(log); - -else - - % Built-in test framework - if strcmp(mode, 'all') - % Run all the tests - log = runtests(path); - elseif strcmp(mode, 'fast') - % Run the selected tests - log = runtests(fast_tests); - elseif strcmp(mode, 'hour') - % Run the selected tests - log = runtests(hour_tests); - else - error('Unsupported mode') - end - -end diff --git a/tests/test_binomial1.m b/tests/test_binomial1.m deleted file mode 100644 index 40f32c95..00000000 --- a/tests/test_binomial1.m +++ /dev/null @@ -1,70 +0,0 @@ -function test_suite = test_binomial1 - -% Run specific demo, save values and compare the results to the expected. -% Works for both xUnit Test Framework package by Steve Eddins and for -% the built-in Unit Testing Framework (as of Matlab version 2013b). -% -% See also -% TEST_ALL, DEMO_BINOMIAL1 -% -% Copyright (c) 2011-2012 Ville Tolvanen -% Copyright (c) 2014 Tuomas Sivula - -% This software is distributed under the GNU General Public -% License (version 3 or later); please refer to the file -% License.txt, included with the software, for details. - - % Check which package to use - if exist('initTestSuite', 'file') - initTestSuite_path = which('initTestSuite'); - else - initTestSuite_path = ''; - end - if ~isempty(initTestSuite_path) && ... - exist([initTestSuite_path(1:end-15) 'runtests'], 'file') - % xUnit package - initTestSuite; - else - % Built-in package - % Use all functions except the @setup - tests = localfunctions; - tests = tests(~cellfun(@(x)strcmp(func2str(x),'setup'),tests)); - test_suite = functiontests(tests); - end -end - - -% ------------- -% Tests -% ------------- - -function testRunDemo(testCase) - % Run the correspondin demo and save the values. Note this test has to - % be run at lest once before the other test may succeed. - rundemo(getName()) -end - -function testPredictiveMeanVarianceAndDensity(testCase) - % Test predictive mean, variance and density - verifyVarsEqual(testCase, getName(), ... - 'RelTolElement', 0.05, 'RelTolRange', 0.01) -end - - -% ------------------------ -% Helper functions -% ------------------------ - -function testCase = setup - % Helper function to suply empty array into variable testCase as an - % argument for each test function, if using xUnit package. Not to be - % used with built-in test framework. - testCase = []; -end - -function name = getName - % Helperfunction that returns the name of the demo, e.g. 'binomial1'. - name = mfilename; - name = name(6:end); -end - diff --git a/tests/test_binomial2.m b/tests/test_binomial2.m deleted file mode 100644 index ba73383c..00000000 --- a/tests/test_binomial2.m +++ /dev/null @@ -1,94 +0,0 @@ -function test_suite = test_binomial2 - -% Run specific demo, save values and compare the results to the expected. -% Works for both xUnit Test Framework package by Steve Eddins and for -% the built-in Unit Testing Framework (as of Matlab version 2013b). -% -% See also -% TEST_ALL, DEMO_BINOMIAL2 -% -% Copyright (c) 2011-2012 Ville Tolvanen -% Copyright (c) 2014 Tuomas Sivula - -% This software is distributed under the GNU General Public -% License (version 3 or later); please refer to the file -% License.txt, included with the software, for details. - - % Check which package to use - if exist('initTestSuite', 'file') - initTestSuite_path = which('initTestSuite'); - else - initTestSuite_path = ''; - end - if ~isempty(initTestSuite_path) && ... - exist([initTestSuite_path(1:end-15) 'runtests'], 'file') - % xUnit package - initTestSuite; - else - % Built-in package - % Use all functions except the @setup - tests = localfunctions; - tests = tests(~cellfun(@(x)strcmp(func2str(x),'setup'),tests)); - test_suite = functiontests(tests); - end -end - - -% ------------- -% Tests -% ------------- - -function testRunDemo(testCase) - % Run the correspondin demo and save the values. Note this test has to - % be run at lest once before the other test may succeed. - rundemo(getName()) -end - -function testPredictiveMeanAndVarianceLaplace(testCase) - % Test predictive mean and variance for Laplace - verifyVarsEqual(testCase, getName(), ... - {'Eft_la','Varft_la','Eft_la_sampled','Varft_la_sampled'}, ... - 'RelTolElement', 0.1, 'RelTolRange', 0.05) - % Test prediction for pbetapositive - verifyVarsEqual(testCase, getName(), {'pbetapositive_la'}, ... - 'AbsTol', 0.01) -end - -function testPredictiveMeanAndVarianceEP(testCase) - % Test predictive mean and variance for EP - verifyVarsEqual(testCase, getName(), ... - {'Eft_ep','Varft_ep','Eft_ep_sampled','Varft_ep_sampled'}, ... - 'RelTolElement', 0.1, 'RelTolRange', 0.05) - % Test prediction for pbetapositive - verifyVarsEqual(testCase, getName(), {'pbetapositive_ep'}, ... - 'AbsTol', 0.01) -end - -function testPredictiveMeanMCMC(testCase) - % Test predictive mean for the MCMC samples - verifyVarsEqual(testCase, getName(), {'Eft_mcmc'}, ... - 'RelTolElement', 0.1, 'RelTolRange', 0.05) - % Test prediction for pbetapositive - verifyVarsEqual(testCase, getName(), {'pbetapositive_mcmc'}, ... - 'AbsTol', 0.01) -end - - -% ------------------------ -% Helper functions -% ------------------------ - -function testCase = setup - % Helper function to suply empty array into variable testCase as an - % argument for each test function, if using xUnit package. Not to be - % used with built-in test framework. - testCase = []; -end - -function name = getName - % Helperfunction that returns the name of the demo, e.g. 'binomial1'. - name = mfilename; - name = name(6:end); -end - - \ No newline at end of file diff --git a/tests/test_binomial_apc.m b/tests/test_binomial_apc.m deleted file mode 100644 index 7522cee3..00000000 --- a/tests/test_binomial_apc.m +++ /dev/null @@ -1,74 +0,0 @@ -function test_suite = test_binomial_apc - -% Run specific demo, save values and compare the results to the expected. -% Works for both xUnit Test Framework package by Steve Eddins and for -% the built-in Unit Testing Framework (as of Matlab version 2013b). -% -% See also -% TEST_ALL, DEMO_BINOMIAL_APC -% -% Copyright (c) 2011-2012 Ville Tolvanen -% Copyright (c) 2014 Tuomas Sivula - -% This software is distributed under the GNU General Public -% License (version 3 or later); please refer to the file -% License.txt, included with the software, for details. - - % Check which package to use - if exist('initTestSuite', 'file') - initTestSuite_path = which('initTestSuite'); - else - initTestSuite_path = ''; - end - if ~isempty(initTestSuite_path) && ... - exist([initTestSuite_path(1:end-15) 'runtests'], 'file') - % xUnit package - initTestSuite; - else - % Built-in package - % Use all functions except the @setup - tests = localfunctions; - tests = tests(~cellfun(@(x)strcmp(func2str(x),'setup'),tests)); - test_suite = functiontests(tests); - end -end - - -% ------------- -% Tests -% ------------- - -function testRunDemo(testCase) - % Run the correspondin demo and save the values. Note this test has to - % be run at lest once before the other test may succeed. - rundemo(getName()) -end - -function testPredictionsAll(testCase) - verifyVarsEqual(testCase, getName(), {'Eft', 'Varft'}, ... - 'RelTolElement', 0.05, 'RelTolRange', 0.025) -end - -function testPredictionsCohort(testCase) - verifyVarsEqual(testCase, getName(), {'Eft_3', 'Varft_3'}, ... - 'RelTolElement', 0.05, 'RelTolRange', 0.025) -end - - -% ------------------------ -% Helper functions -% ------------------------ - -function testCase = setup - % Helper function to suply empty array into variable testCase as an - % argument for each test function, if using xUnit package. Not to be - % used with built-in test framework. - testCase = []; -end - -function name = getName - % Helperfunction that returns the name of the demo, e.g. 'binomial1'. - name = mfilename; - name = name(6:end); -end - diff --git a/tests/test_classific.m b/tests/test_classific.m deleted file mode 100644 index 93445c52..00000000 --- a/tests/test_classific.m +++ /dev/null @@ -1,86 +0,0 @@ -function test_suite = test_classific - -% Run specific demo, save values and compare the results to the expected. -% Works for both xUnit Test Framework package by Steve Eddins and for -% the built-in Unit Testing Framework (as of Matlab version 2013b). -% -% See also -% TEST_ALL, DEMO_CLASSIFIC -% -% Copyright (c) 2011-2012 Ville Tolvanen -% Copyright (c) 2014 Tuomas Sivula - -% This software is distributed under the GNU General Public -% License (version 3 or later); please refer to the file -% License.txt, included with the software, for details. - - % Check which package to use - if exist('initTestSuite', 'file') - initTestSuite_path = which('initTestSuite'); - else - initTestSuite_path = ''; - end - if ~isempty(initTestSuite_path) && ... - exist([initTestSuite_path(1:end-15) 'runtests'], 'file') - % xUnit package - initTestSuite; - else - % Built-in package - % Use all functions except the @setup - tests = localfunctions; - tests = tests(~cellfun(@(x)strcmp(func2str(x),'setup'),tests)); - test_suite = functiontests(tests); - end -end - - -% ------------- -% Tests -% ------------- - -function testRunDemo(testCase) - % Run the correspondin demo and save the values. Note this test has to - % be run at lest once before the other test may succeed. - rundemo(getName(), {... - {'Eft_la', @(x)x(1:100)}, ... - {'Eft_ep', @(x)x(1:100)}, ... - {'Efs_mc', @(x)x(1:50,1:50)}, ... - {'Varft_la', @(x)x(1:100)}, ... - {'Varft_ep', @(x)x(1:100)}, ... - {'Varfs_mc', @(x)x(1:50,1:50)} }) -end - -function testLaplace(testCase) - verifyVarsEqual(testCase, getName(), {'Eft_la','Varft_la'}, ... - 'RelTolElement', 0.05, 'RelTolRange', 0.01) -end - -function testEP(testCase) - verifyVarsEqual(testCase, getName(), {'Eft_ep','Varft_ep'}, ... - 'RelTolElement', 0.05, 'RelTolRange', 0.01) -end - -% The results vary too much to be tested reliably -% function testMC(testCase) -% verifyVarsEqual(testCase, getName(), {'Efs_mc'}, @(x)mean(x,2), ... -% 'RelTolRange', 0.2) -% end - - -% ------------------------ -% Helper functions -% ------------------------ - -function testCase = setup - % Helper function to suply empty array into variable testCase as an - % argument for each test function, if using xUnit package. Not to be - % used with built-in test framework. - testCase = []; -end - -function name = getName - % Helperfunction that returns the name of the demo, e.g. 'binomial1'. - name = mfilename; - name = name(6:end); -end - diff --git a/tests/test_derivativeobs.m b/tests/test_derivativeobs.m deleted file mode 100644 index c4e48a5d..00000000 --- a/tests/test_derivativeobs.m +++ /dev/null @@ -1,76 +0,0 @@ -function test_suite = test_derivativeobs - -% Run specific demo, save values and compare the results to the expected. -% Works for both xUnit Test Framework package by Steve Eddins and for -% the built-in Unit Testing Framework (as of Matlab version 2013b). -% -% See also -% TEST_ALL, DEMO_DERIVATIVEOBS -% -% Copyright (c) 2011-2012 Ville Tolvanen -% Copyright (c) 2014 Tuomas Sivula - -% This software is distributed under the GNU General Public -% License (version 3 or later); please refer to the file -% License.txt, included with the software, for details. - - % Check which package to use - if exist('initTestSuite', 'file') - initTestSuite_path = which('initTestSuite'); - else - initTestSuite_path = ''; - end - if ~isempty(initTestSuite_path) && ... - exist([initTestSuite_path(1:end-15) 'runtests'], 'file') - % xUnit package - initTestSuite; - else - % Built-in package - % Use all functions except the @setup - tests = localfunctions; - tests = tests(~cellfun(@(x)strcmp(func2str(x),'setup'),tests)); - test_suite = functiontests(tests); - end -end - - -% ------------- -% Tests -% ------------- - -function testRunDemo(testCase) - % Run the correspondin demo and save the values. Note this test has to - % be run at lest once before the other test may succeed. - rundemo(getName()) -end - -function testPrediction(testCase) - % Test predictive mean and variance - verifyVarsEqual(testCase, getName(), {'Eft','Varft'}, ... - 'RelTolElement', 0.05, 'RelTolRange', 0.01) -end - -function testPredictionDerivative(testCase) - % Test predictive mean and variance with derivative obs - verifyVarsEqual(testCase, getName(), {'Eft2','Varft2'}, ... - 'RelTolElement', 0.05, 'RelTolRange', 0.01) -end - - -% ------------------------ -% Helper functions -% ------------------------ - -function testCase = setup - % Helper function to suply empty array into variable testCase as an - % argument for each test function, if using xUnit package. Not to be - % used with built-in test framework. - testCase = []; -end - -function name = getName - % Helperfunction that returns the name of the demo, e.g. 'binomial1'. - name = mfilename; - name = name(6:end); -end - diff --git a/tests/test_epinf.m b/tests/test_epinf.m deleted file mode 100644 index bc3d2eed..00000000 --- a/tests/test_epinf.m +++ /dev/null @@ -1,70 +0,0 @@ -function test_suite = test_epinf - -% Run specific demo, save values and compare the results to the expected. -% Works for both xUnit Test Framework package by Steve Eddins and for -% the built-in Unit Testing Framework (as of Matlab version 2013b). -% -% See also -% TEST_ALL, DEMO_EPINF -% -% Copyright (c) 2011-2012 Ville Tolvanen -% Copyright (c) 2014 Tuomas Sivula - -% This software is distributed under the GNU General Public -% License (version 3 or later); please refer to the file -% License.txt, included with the software, for details. - - % Check which package to use - if exist('initTestSuite', 'file') - initTestSuite_path = which('initTestSuite'); - else - initTestSuite_path = ''; - end - if ~isempty(initTestSuite_path) && ... - exist([initTestSuite_path(1:end-15) 'runtests'], 'file') - % xUnit package - initTestSuite; - else - % Built-in package - % Use all functions except the @setup - tests = localfunctions; - tests = tests(~cellfun(@(x)strcmp(func2str(x),'setup'),tests)); - test_suite = functiontests(tests); - end -end - - -% ------------- -% Tests -% ------------- - -function testRunDemo(testCase) - % Run the correspondin demo and save the values. Note this test has to - % be run at lest once before the other test may succeed. - rundemo(getName()) -end - -function testPredictiveMeanAndVariance(testCase) - % Test predictive mean, variance and density - verifyVarsEqual(testCase, getName(), ... - 'RelTolElement', 0.05, 'RelTolRange', 0.01) -end - - -% ------------------------ -% Helper functions -% ------------------------ - -function testCase = setup - % Helper function to suply empty array into variable testCase as an - % argument for each test function, if using xUnit package. Not to be - % used with built-in test framework. - testCase = []; -end - -function name = getName - % Helperfunction that returns the name of the demo, e.g. 'binomial1'. - name = mfilename; - name = name(6:end); -end - diff --git a/tests/test_hierprior.m b/tests/test_hierprior.m deleted file mode 100644 index 4221eb91..00000000 --- a/tests/test_hierprior.m +++ /dev/null @@ -1,85 +0,0 @@ -function test_suite = test_hierprior - -% Run specific demo, save values and compare the results to the expected. -% Works for both xUnit Test Framework package by Steve Eddins and for -% the built-in Unit Testing Framework (as of Matlab version 2013b). -% -% See also -% TEST_ALL, DEMO_HIERPRIOR -% -% Copyright (c) 2011-2012 Ville Tolvanen -% Copyright (c) 2014 Tuomas Sivula - -% This software is distributed under the GNU General Public -% License (version 3 or later); please refer to the file -% License.txt, included with the software, for details. - - % Check which package to use - if exist('initTestSuite', 'file') - initTestSuite_path = which('initTestSuite'); - else - initTestSuite_path = ''; - end - if ~isempty(initTestSuite_path) && ... - exist([initTestSuite_path(1:end-15) 'runtests'], 'file') - % xUnit package - initTestSuite; - else - % Built-in package - % Use all functions except the @setup - tests = localfunctions; - tests = tests(~cellfun(@(x)strcmp(func2str(x),'setup'),tests)); - test_suite = functiontests(tests); - end -end - - -% ------------- -% Tests -% ------------- - -function testRunDemo(testCase) - % Run the correspondin demo and save the values. Note this test has to - % be run at lest once before the other test may succeed. - rundemo(getName()) -end - -function testDerivatesRegression(testCase) - verifyVarsEqual(testCase, getName(), {'derivs'}, @(x)x{1}, ... - 'RelTolElement', 0.05, 'RelTolRange', 0.01, 'AbsTol', 0.4) - verifyVarsEqual(testCase, getName(), {'derivs'}, @(x)x{2}, ... - 'RelTolElement', 0.05, 'RelTolRange', 0.01, 'AbsTol', 0.4) -end - -function testDerivatesLaplace(testCase) - verifyVarsEqual(testCase, getName(), {'derivs'}, @(x)x{3}, ... - 'AbsTol', 1e-5) - verifyVarsEqual(testCase, getName(), {'derivs'}, @(x)x{4}, ... - 'AbsTol', 1e-5) -end - -function testDerivatesEP(testCase) - verifyVarsEqual(testCase, getName(), {'derivs'}, @(x)x{5}, ... - 'AbsTol', 1e-5) - verifyVarsEqual(testCase, getName(), {'derivs'}, @(x)x{6}, ... - 'AbsTol', 1e-5) -end - - -% ------------------------ -% Helper functions -% ------------------------ - -function testCase = setup - % Helper function to suply empty array into variable testCase as an - % argument for each test function, if using xUnit package. Not to be - % used with built-in test framework. - testCase = []; -end - -function name = getName - % Helperfunction that returns the name of the demo, e.g. 'binomial1'. - name = mfilename; - name = name(6:end); -end - diff --git a/tests/test_hurdle.m b/tests/test_hurdle.m deleted file mode 100644 index 91cb2ead..00000000 --- a/tests/test_hurdle.m +++ /dev/null @@ -1,75 +0,0 @@ -function test_suite = test_hurdle - -% Run specific demo, save values and compare the results to the expected. -% Works for both xUnit Test Framework package by Steve Eddins and for -% the built-in Unit Testing Framework (as of Matlab version 2013b). -% -% See also -% TEST_ALL, DEMO_HURDLE -% -% Copyright (c) 2011-2012 Ville Tolvanen -% Copyright (c) 2014 Tuomas Sivula - -% This software is distributed under the GNU General Public -% License (version 3 or later); please refer to the file -% License.txt, included with the software, for details. - - % Check which package to use - if exist('initTestSuite', 'file') - initTestSuite_path = which('initTestSuite'); - else - initTestSuite_path = ''; - end - if ~isempty(initTestSuite_path) && ... - exist([initTestSuite_path(1:end-15) 'runtests'], 'file') - % xUnit package - initTestSuite; - else - % Built-in package - % Use all functions except the @setup - tests = localfunctions; - tests = tests(~cellfun(@(x)strcmp(func2str(x),'setup'),tests)); - test_suite = functiontests(tests); - end -end - - -% ------------- -% Tests -% ------------- - -function testRunDemo(testCase) - % Run the correspondin demo and save the values. Note this test has to - % be run at lest once before the other test may succeed. - rundemo(getName()) -end - -function testPredictiveMeanAndVariance_LatentZeroProcess(testCase) - verifyVarsEqual(testCase, getName(), {'Efz','Varfz'}, ... - 'RelTolElement', 0.05, 'RelTolRange', 0.01) -end - -function testPredictiveMeanAndVariance_LatentCountProcess(testCase) - verifyVarsEqual(testCase, getName(), {'Efc','Varfc'}, ... - 'RelTolElement', 0.05, 'RelTolRange', 0.01) -end - - -% ------------------------ -% Helper functions -% ------------------------ - -function testCase = setup - % Helper function to suply empty array into variable testCase as an - % argument for each test function, if using xUnit package. Not to be - % used with built-in test framework. - testCase = []; -end - -function name = getName - % Helperfunction that returns the name of the demo, e.g. 'binomial1'. - name = mfilename; - name = name(6:end); -end - - \ No newline at end of file diff --git a/tests/test_improvemarginals.m b/tests/test_improvemarginals.m deleted file mode 100644 index 1db43c96..00000000 --- a/tests/test_improvemarginals.m +++ /dev/null @@ -1,85 +0,0 @@ -function test_suite = test_improvemarginals - -% Run specific demo, save values and compare the results to the expected. -% Works for both xUnit Test Framework package by Steve Eddins and for -% the built-in Unit Testing Framework (as of Matlab version 2013b). -% -% See also -% TEST_ALL, DEMO_IMPROVEMARGINALS -% -% Copyright (c) 2011-2012 Ville Tolvanen -% Copyright (c) 2014 Tuomas Sivula - -% This software is distributed under the GNU General Public -% License (version 3 or later); please refer to the file -% License.txt, included with the software, for details. - - % Check which package to use - if exist('initTestSuite', 'file') - initTestSuite_path = which('initTestSuite'); - else - initTestSuite_path = ''; - end - if ~isempty(initTestSuite_path) && ... - exist([initTestSuite_path(1:end-15) 'runtests'], 'file') - % xUnit package - initTestSuite; - else - % Built-in package - % Use all functions except the @setup - tests = localfunctions; - tests = tests(~cellfun(@(x)strcmp(func2str(x),'setup'),tests)); - test_suite = functiontests(tests); - end -end - - -% ------------- -% Tests -% ------------- - -function testRunDemo(testCase) - % Run the correspondin demo and save the values. Note this test has to - % be run at lest once before the other test may succeed. - rundemo(getName()) -end - -function test_EP_fact(testCase) - verifyVarsEqual(testCase, getName(), ... - {'pc_ep','fvec_ep','pc_ep_pred','fvec_ep_pred'}, ... - {[], @(x)[x(1),x(end)], [], @(x)[x(1),x(end)]}, ... - 'RelTolElement', 0.05, 'RelTolRange', 0.01) -end - -function test_Laplace_CM2(testCase) - verifyVarsEqual(testCase, getName(), ... - {'pc_la','fvec_la','pc_la_pred','fvec_la_pred'}, ... - {[], @(x)[x(1),x(end)], [], @(x)[x(1),x(end)]}, ... - 'RelTolElement', 0.05, 'RelTolRange', 0.01) -end - -function test_Laplace_fact(testCase) - verifyVarsEqual(testCase, getName(), ... - {'pc_la2','fvec_la2','pc_la_pred2','fvec_la_pred2'}, ... - {[], @(x)[x(1),x(end)], [], @(x)[x(1),x(end)]}, ... - 'RelTolElement', 0.1, 'RelTolRange', 0.05) -end - - -% ------------------------ -% Helper functions -% ------------------------ - -function testCase = setup - % Helper function to suply empty array into variable testCase as an - % argument for each test function, if using xUnit package. Not to be - % used with built-in test framework. - testCase = []; -end - -function name = getName - % Helperfunction that returns the name of the demo, e.g. 'binomial1'. - name = mfilename; - name = name(6:end); -end - diff --git a/tests/test_kalman1.m b/tests/test_kalman1.m deleted file mode 100644 index 10d59978..00000000 --- a/tests/test_kalman1.m +++ /dev/null @@ -1,71 +0,0 @@ -function test_suite = test_kalman1 - -% Run specific demo, save values and compare the results to the expected. -% Works for both xUnit Test Framework package by Steve Eddins and for -% the built-in Unit Testing Framework (as of Matlab version 2013b). -% -% See also -% TEST_ALL, DEMO_KALMAN1 -% -% Copyright (c) 2011-2012 Ville Tolvanen -% Copyright (c) 2014 Tuomas Sivula - -% This software is distributed under the GNU General Public -% License (version 3 or later); please refer to the file -% License.txt, included with the software, for details. - - % Check which package to use - if exist('initTestSuite', 'file') - initTestSuite_path = which('initTestSuite'); - else - initTestSuite_path = ''; - end - if ~isempty(initTestSuite_path) && ... - exist([initTestSuite_path(1:end-15) 'runtests'], 'file') - % xUnit package - initTestSuite; - else - % Built-in package - % Use all functions except the @setup - tests = localfunctions; - tests = tests(~cellfun(@(x)strcmp(func2str(x),'setup'),tests)); - test_suite = functiontests(tests); - end -end - - -% ------------- -% Tests -% ------------- - -function testRunDemo(testCase) - % Run the correspondin demo and save the values. Note this test has to - % be run at lest once before the other test may succeed. - rundemo(getName()) -end - -function testPredictionsKalman1(testCase) - % Test predictive mean and variance - verifyVarsEqual(testCase, getName(), ... - {'Eft','Varft','Covft'}, ... - 'RelTolElement', 0.1, 'RelTolRange', 0.02) -end - - -% ------------------------ -% Helper functions -% ------------------------ - -function testCase = setup - % Helper function to suply empty array into variable testCase as an - % argument for each test function, if using xUnit package. Not to be - % used with built-in test framework. - testCase = []; -end - -function name = getName - % Helperfunction that returns the name of the demo, e.g. 'binomial1'. - name = mfilename; - name = name(6:end); -end - diff --git a/tests/test_kalman2.m b/tests/test_kalman2.m deleted file mode 100644 index 31863373..00000000 --- a/tests/test_kalman2.m +++ /dev/null @@ -1,75 +0,0 @@ -function test_suite = test_kalman2 - -% Run specific demo, save values and compare the results to the expected. -% Works for both xUnit Test Framework package by Steve Eddins and for -% the built-in Unit Testing Framework (as of Matlab version 2013b). -% -% See also -% TEST_ALL, DEMO_KALMAN2 -% -% Copyright (c) 2011-2012 Ville Tolvanen -% Copyright (c) 2014 Tuomas Sivula - -% This software is distributed under the GNU General Public -% License (version 3 or later); please refer to the file -% License.txt, included with the software, for details. - - % Check which package to use - if exist('initTestSuite', 'file') - initTestSuite_path = which('initTestSuite'); - else - initTestSuite_path = ''; - end - if ~isempty(initTestSuite_path) && ... - exist([initTestSuite_path(1:end-15) 'runtests'], 'file') - % xUnit package - initTestSuite; - else - % Built-in package - % Use all functions except the @setup - tests = localfunctions; - tests = tests(~cellfun(@(x)strcmp(func2str(x),'setup'),tests)); - test_suite = functiontests(tests); - end -end - - -% ------------- -% Tests -% ------------- - -function testRunDemo(testCase) - % Run the correspondin demo and save the values. Note this test has to - % be run at lest once before the other test may succeed. - - % Suppress an expected warning - Sw = warning('off','MATLAB:nearlySingularMatrix'); - rundemo(getName()) - warning(Sw); % Return the original warning visibility status -end - -function testPredictionsKalman2(testCase) - % Test predictive mean and variance - verifyVarsEqual(testCase, getName(), ... - {'Eft','Varft'}, ... - 'RelTolElement', 0.1, 'RelTolRange', 0.02) -end - - -% ------------------------ -% Helper functions -% ------------------------ - -function testCase = setup - % Helper function to suply empty array into variable testCase as an - % argument for each test function, if using xUnit package. Not to be - % used with built-in test framework. - testCase = []; -end - -function name = getName - % Helperfunction that returns the name of the demo, e.g. 'binomial1'. - name = mfilename; - name = name(6:end); -end - diff --git a/tests/test_lgcp.m b/tests/test_lgcp.m deleted file mode 100644 index 35f3e99a..00000000 --- a/tests/test_lgcp.m +++ /dev/null @@ -1,70 +0,0 @@ -function test_suite = test_lgcp - -% Run specific demo, save values and compare the results to the expected. -% Works for both xUnit Test Framework package by Steve Eddins and for -% the built-in Unit Testing Framework (as of Matlab version 2013b). -% -% See also -% TEST_ALL, DEMO_LGCP -% -% Copyright (c) 2011-2012 Ville Tolvanen -% Copyright (c) 2014 Tuomas Sivula - -% This software is distributed under the GNU General Public -% License (version 3 or later); please refer to the file -% License.txt, included with the software, for details. - - % Check which package to use - if exist('initTestSuite', 'file') - initTestSuite_path = which('initTestSuite'); - else - initTestSuite_path = ''; - end - if ~isempty(initTestSuite_path) && ... - exist([initTestSuite_path(1:end-15) 'runtests'], 'file') - % xUnit package - initTestSuite; - else - % Built-in package - % Use all functions except the @setup - tests = localfunctions; - tests = tests(~cellfun(@(x)strcmp(func2str(x),'setup'),tests)); - test_suite = functiontests(tests); - end -end - - -% ------------- -% Tests -% ------------- - -function testRunDemo(testCase) - % Run the correspondin demo and save the values. Note this test has to - % be run at lest once before the other test may succeed. - rundemo(getName()) -end - -function testLGCP(testCase) - verifyVarsEqual(testCase, getName(), ... - {'p1', 'p2'}, ... - 'RelTolElement', 0.05, 'RelTolRange', 0.01) -end - - -% ------------------------ -% Helper functions -% ------------------------ - -function testCase = setup - % Helper function to suply empty array into variable testCase as an - % argument for each test function, if using xUnit package. Not to be - % used with built-in test framework. - testCase = []; -end - -function name = getName - % Helperfunction that returns the name of the demo, e.g. 'binomial1'. - name = mfilename; - name = name(6:end); -end - diff --git a/tests/test_loopred.m b/tests/test_loopred.m deleted file mode 100644 index 4644d1ed..00000000 --- a/tests/test_loopred.m +++ /dev/null @@ -1,88 +0,0 @@ -function test_suite = test_loopred - -% Run specific demo, save values and compare the results to the expected. -% Works for both xUnit Test Framework package by Steve Eddins and for -% the built-in Unit Testing Framework (as of Matlab version 2013b). -% -% See also -% TEST_ALL, DEMO_LOOPRED -% -% Copyright (c) 2011-2012 Ville Tolvanen -% Copyright (c) 2014 Tuomas Sivula - -% This software is distributed under the GNU General Public -% License (version 3 or later); please refer to the file -% License.txt, included with the software, for details. - - % Check which package to use - if exist('initTestSuite', 'file') - initTestSuite_path = which('initTestSuite'); - else - initTestSuite_path = ''; - end - if ~isempty(initTestSuite_path) && ... - exist([initTestSuite_path(1:end-15) 'runtests'], 'file') - % xUnit package - initTestSuite; - else - % Built-in package - % Use all functions except the @setup - tests = localfunctions; - tests = tests(~cellfun(@(x)strcmp(func2str(x),'setup'),tests)); - test_suite = functiontests(tests); - end -end - - -% ------------- -% Tests -% ------------- - -function testRunDemo(testCase) - % Run the correspondin demo and save the values. Note this test has to - % be run at lest once before the other test may succeed. - rundemo(getName()) -end - -function testLrsLOO(testCase) - verifyVarsEqual(testCase, getName(), ... - {'Eft_lrs','Varft_lrs','lpyt_lrs'}, ... - 'AbsTol', 0.1) -end - -function testCavityLOO(testCase) - verifyVarsEqual(testCase, getName(), ... - {'Eft_cav','Varft_cav','lpyt_cav'}, ... - 'AbsTol', 0.1) -end - -function testInlaLOO(testCase) - verifyVarsEqual(testCase, getName(), ... - {'Eft_inla','Varft_inla','lpyt_inla'}, ... - 'AbsTol', 0.1) -end - -function testEPLOO(testCase) - verifyVarsEqual(testCase, getName(), ... - {'Eft_ep','Varft_ep','lpyt_ep'}, ... - 'AbsTol', 0.1) -end - - -% ------------------------ -% Helper functions -% ------------------------ - -function testCase = setup - % Helper function to suply empty array into variable testCase as an - % argument for each test function, if using xUnit package. Not to be - % used with built-in test framework. - testCase = []; -end - -function name = getName - % Helperfunction that returns the name of the demo, e.g. 'binomial1'. - name = mfilename; - name = name(6:end); -end - diff --git a/tests/test_memorysave.m b/tests/test_memorysave.m deleted file mode 100644 index 73b0e310..00000000 --- a/tests/test_memorysave.m +++ /dev/null @@ -1,64 +0,0 @@ -function test_suite = test_memorysave - -% Run specific demo, save values and compare the results to the expected. -% Works for both xUnit Test Framework package by Steve Eddins and for -% the built-in Unit Testing Framework (as of Matlab version 2013b). -% -% See also -% TEST_ALL, DEMO_MEMORYSAVE -% -% Copyright (c) 2011-2012 Ville Tolvanen -% Copyright (c) 2014 Tuomas Sivula - -% This software is distributed under the GNU General Public -% License (version 3 or later); please refer to the file -% License.txt, included with the software, for details. - - % Check which package to use - if exist('initTestSuite', 'file') - initTestSuite_path = which('initTestSuite'); - else - initTestSuite_path = ''; - end - if ~isempty(initTestSuite_path) && ... - exist([initTestSuite_path(1:end-15) 'runtests'], 'file') - % xUnit package - initTestSuite; - else - % Built-in package - % Use all functions except the @setup - tests = localfunctions; - tests = tests(~cellfun(@(x)strcmp(func2str(x),'setup'),tests)); - test_suite = functiontests(tests); - end -end - - -% ------------- -% Tests -% ------------- - -function testRunDemo(testCase) - % Run the correspondin demo and save the values. Note this test has to - % be run at lest once before the other test may succeed. - rundemo(getName(), []) -end - - -% ------------------------ -% Helper functions -% ------------------------ - -function testCase = setup - % Helper function to suply empty array into variable testCase as an - % argument for each test function, if using xUnit package. Not to be - % used with built-in test framework. - testCase = []; -end - -function name = getName - % Helperfunction that returns the name of the demo, e.g. 'binomial1'. - name = mfilename; - name = name(6:end); -end - diff --git a/tests/test_modelassesment1.m b/tests/test_modelassesment1.m deleted file mode 100644 index 42149d79..00000000 --- a/tests/test_modelassesment1.m +++ /dev/null @@ -1,129 +0,0 @@ -function test_suite = test_modelassesment1 - -% Run specific demo, save values and compare the results to the expected. -% Works for both xUnit Test Framework package by Steve Eddins and for -% the built-in Unit Testing Framework (as of Matlab version 2013b). -% -% See also -% TEST_ALL, DEMO_MODELASSESMENT1 -% -% Copyright (c) 2011-2012 Ville Tolvanen -% Copyright (c) 2014 Tuomas Sivula - -% This software is distributed under the GNU General Public -% License (version 3 or later); please refer to the file -% License.txt, included with the software, for details. - - % Check which package to use - if exist('initTestSuite', 'file') - initTestSuite_path = which('initTestSuite'); - else - initTestSuite_path = ''; - end - if ~isempty(initTestSuite_path) && ... - exist([initTestSuite_path(1:end-15) 'runtests'], 'file') - % xUnit package - initTestSuite; - else - % Built-in package - % Use all functions except the @setup - tests = localfunctions; - tests = tests(~cellfun(@(x)strcmp(func2str(x),'setup'),tests)); - test_suite = functiontests(tests); - end -end - - -% ------------- -% Tests -% ------------- - -function testRunDemo(testCase) - % Run the correspondin demo and save the values. Note this test has to - % be run at lest once before the other test may succeed. - rundemo(getName()) -end - -function testDICParameters(testCase) - verifyVarsEqual(testCase, getName(), {'DIC'}, {@nans2zero}, ... - 'RelTolElement', 0.05, 'RelTolRange', 0.01) -end - -function testDICAll(testCase) - verifyVarsEqual(testCase, getName(), {'DIC2'}, {@nans2zero}, ... - 'RelTolElement', 0.2, 'RelTolRange', 0.05) -end - -function testDICLatent(testCase) - verifyVarsEqual(testCase, getName(), {'DIC_latent'}, {@nans2zero}, ... - 'RelTolElement', 0.2, 'RelTolRange', 0.05) -end - -function testPeffLatentMarginalized(testCase) - verifyVarsEqual(testCase, getName(), {'p_eff'}, {@nans2zero}, ... - 'RelTolElement', 0.2, 'RelTolRange', 0.05) -end - -function testPeffAll(testCase) - verifyVarsEqual(testCase, getName(), {'p_eff2'}, {@nans2zero}, ... - 'RelTolElement', 0.2, 'RelTolRange', 0.05) -end - -function testPeffLatent(testCase) - verifyVarsEqual(testCase, getName(), {'p_eff_latent'}, {@nans2zero}, ... - 'RelTolElement', 0.2, 'RelTolRange', 0.05) -end - -function testPeffLatent2(testCase) - verifyVarsEqual(testCase, getName(), {'p_eff_latent2'}, {@nans2zero}, ... - 'RelTolElement', 0.2, 'RelTolRange', 0.05) -end - -function testLogPredDensity10foldCV(testCase) - verifyVarsEqual(testCase, getName(), {'mlpd_cv'}, ... - 'RelTolElement', 0.2, 'RelTolRange', 0.05) -end - -function testMeanSquaredError10foldCV(testCase) - verifyVarsEqual(testCase, getName(), {'rmse_cv'}, ... - 'RelTolElement', 0.2, 'RelTolRange', 0.05) -end - -function testLogPredDensityLOOPRED(testCase) - verifyVarsEqual(testCase, getName(), {'mlpd_loo'}, ... - 'RelTolElement', 0.2, 'RelTolRange', 0.05) -end - -function testMeanSquaredErrorLOOPRED(testCase) - verifyVarsEqual(testCase, getName(), {'rmse_loo'}, ... - 'RelTolElement', 0.2, 'RelTolRange', 0.05) -end - -function testWAIC(testCase) - verifyVarsEqual(testCase, getName(), {'WAICV','WAICG'}, ... - 'RelTolElement', 0.2, 'RelTolRange', 0.05) -end - - -% ------------------------ -% Helper functions -% ------------------------ - -function x = nans2zero(x) - % Helperfunction to replace NaNs in an array by zeroes. - x(isnan(x)) = 0; -end - -function testCase = setup - % Helper function to suply empty array into variable testCase as an - % argument for each test function, if using xUnit package. Not to be - % used with built-in test framework. - testCase = []; -end - -function name = getName - % Helperfunction that returns the name of the demo, e.g. 'binomial1'. - name = mfilename; - name = name(6:end); -end - diff --git a/tests/test_modelassesment2.m b/tests/test_modelassesment2.m deleted file mode 100644 index dbb456b2..00000000 --- a/tests/test_modelassesment2.m +++ /dev/null @@ -1,114 +0,0 @@ -function test_suite = test_modelassesment2 - -% Run specific demo, save values and compare the results to the expected. -% Works for both xUnit Test Framework package by Steve Eddins and for -% the built-in Unit Testing Framework (as of Matlab version 2013b). -% -% See also -% TEST_ALL, DEMO_MODELASSESMENT2 -% -% Copyright (c) 2011-2012 Ville Tolvanen -% Copyright (c) 2014 Tuomas Sivula - -% This software is distributed under the GNU General Public -% License (version 3 or later); please refer to the file -% License.txt, included with the software, for details. - - % Check which package to use - if exist('initTestSuite', 'file') - initTestSuite_path = which('initTestSuite'); - else - initTestSuite_path = ''; - end - if ~isempty(initTestSuite_path) && ... - exist([initTestSuite_path(1:end-15) 'runtests'], 'file') - % xUnit package - initTestSuite; - else - % Built-in package - % Use all functions except the @setup - tests = localfunctions; - tests = tests(~cellfun(@(x)strcmp(func2str(x),'setup'),tests)); - test_suite = functiontests(tests); - end -end - - -% ------------- -% Tests -% ------------- - -function testRunDemo(testCase) - % Run the correspondin demo and save the values. Note this test has to - % be run at lest once before the other test may succeed. - rundemo(getName()) -end - -function testDICParameters(testCase) - verifyVarsEqual(testCase, getName(), {'DIC'}, @nans2zero, ... - 'RelTolElement', 0.2, 'RelTolRange', 0.05) -end - -function testDICAll(testCase) - verifyVarsEqual(testCase, getName(), {'DIC2'}, @nans2zero, ... - 'RelTolElement', 0.2, 'RelTolRange', 0.05) -end - -function testDICLatent(testCase) - verifyVarsEqual(testCase, getName(), {'DIC_latent'}, @nans2zero, ... - 'RelTolElement', 0.2, 'RelTolRange', 0.05) -end - -% function testPeffLatentMarginalized(testCase) -% verifyVarsEqual(testCase, getName(), {'p_eff'}, @nans2zero, ... -% 'AbsTol', 0.5) -% end - -function testPeffLatent(testCase) - verifyVarsEqual(testCase, getName(), {'p_eff_latent'}, @nans2zero, ... - 'AbsTol', 0.6) -end - -function testPeffLatent2(testCase) - verifyVarsEqual(testCase, getName(), {'p_eff_latent2'}, @nans2zero, ... - 'AbsTol', 2.5) -end - -function testLogPredDensity10foldCV(testCase) - verifyVarsEqual(testCase, getName(), {'mlpd_cv'}, ... - 'RelTolElement', 0.2, 'RelTolRange', 0.05) -end - -function testLogPredDensityLOOPRED(testCase) - verifyVarsEqual(testCase, getName(), {'mlpd_loo'}, ... - 'RelTolElement', 0.2, 'RelTolRange', 0.05) -end - -function testWAIC(testCase) - verifyVarsEqual(testCase, getName(), {'WAIC'}, ... - 'RelTolElement', 0.2, 'RelTolRange', 0.05) -end - - -% ------------------------ -% Helper functions -% ------------------------ - -function x = nans2zero(x) - % Helperfunction to replace NaNs in an array by zeroes. - x(isnan(x)) = 0; -end - -function testCase = setup - % Helper function to suply empty array into variable testCase as an - % argument for each test function, if using xUnit package. Not to be - % used with built-in test framework. - testCase = []; -end - -function name = getName - % Helperfunction that returns the name of the demo, e.g. 'binomial1'. - name = mfilename; - name = name(6:end); -end - diff --git a/tests/test_monotonic2.m b/tests/test_monotonic2.m deleted file mode 100644 index e59ba889..00000000 --- a/tests/test_monotonic2.m +++ /dev/null @@ -1,74 +0,0 @@ -function test_suite = test_monotonic2 - -% Run specific demo, save values and compare the results to the expected. -% Works for both xUnit Test Framework package by Steve Eddins and for -% the built-in Unit Testing Framework (as of Matlab version 2013b). -% -% See also -% TEST_ALL, DEMO_MONOTONIC2 -% -% Copyright (c) 2011-2012 Ville Tolvanen -% Copyright (c) 2014 Tuomas Sivula - -% This software is distributed under the GNU General Public -% License (version 3 or later); please refer to the file -% License.txt, included with the software, for details. - - % Check which package to use - if exist('initTestSuite', 'file') - initTestSuite_path = which('initTestSuite'); - else - initTestSuite_path = ''; - end - if ~isempty(initTestSuite_path) && ... - exist([initTestSuite_path(1:end-15) 'runtests'], 'file') - % xUnit package - initTestSuite; - else - % Built-in package - % Use all functions except the @setup - tests = localfunctions; - tests = tests(~cellfun(@(x)strcmp(func2str(x),'setup'),tests)); - test_suite = functiontests(tests); - end -end - - -% ------------- -% Tests -% ------------- - -function testRunDemo(testCase) - % Run the correspondin demo and save the values. Note this test has to - % be run at lest once before the other test may succeed. - rundemo(getName()) -end - -function testPredictiveMeanAndVariance_normal(testCase) - verifyVarsEqual(testCase, getName(), {'Eft','Varft'}, ... - 'RelTolElement', 0.05, 'RelTolRange', 0.01) -end - -function testPredictiveMeanAndVariance_monotonic(testCase) - verifyVarsEqual(testCase, getName(), {'Eftm','Varftm'}, ... - 'RelTolElement', 0.05, 'RelTolRange', 0.01) -end - - -% ------------------------ -% Helper functions -% ------------------------ - -function testCase = setup - % Helper function to suply empty array into variable testCase as an - % argument for each test function, if using xUnit package. Not to be - % used with built-in test framework. - testCase = []; -end - -function name = getName - % Helperfunction that returns the name of the demo, e.g. 'binomial1'. - name = mfilename; - name = name(6:end); -end - diff --git a/tests/test_multiclass.m b/tests/test_multiclass.m deleted file mode 100644 index e8ef8064..00000000 --- a/tests/test_multiclass.m +++ /dev/null @@ -1,73 +0,0 @@ -function test_suite = test_multiclass - -% Run specific demo, save values and compare the results to the expected. -% Works for both xUnit Test Framework package by Steve Eddins and for -% the built-in Unit Testing Framework (as of Matlab version 2013b). -% -% See also -% TEST_ALL, DEMO_MULTICLASS -% -% Copyright (c) 2011-2012 Ville Tolvanen -% Copyright (c) 2014 Tuomas Sivula - -% This software is distributed under the GNU General Public -% License (version 3 or later); please refer to the file -% License.txt, included with the software, for details. - - % Check which package to use - if exist('initTestSuite', 'file') - initTestSuite_path = which('initTestSuite'); - else - initTestSuite_path = ''; - end - if ~isempty(initTestSuite_path) && ... - exist([initTestSuite_path(1:end-15) 'runtests'], 'file') - % xUnit package - initTestSuite; - else - % Built-in package - % Use all functions except the @setup - tests = localfunctions; - tests = tests(~cellfun(@(x)strcmp(func2str(x),'setup'),tests)); - test_suite = functiontests(tests); - end -end - - -% ------------- -% Tests -% ------------- - -function testRunDemo(testCase) - % Run the correspondin demo and save the values. Note this test has to - % be run at lest once before the other test may succeed. - rundemo(getName(), { ... - {'Eft', @(x)x(1:100,:)}, ... - {'Varft', @(x)x(:,:,1:100)}, ... - {'Covft', @(x)x(:,:,1:100)} }) -end - -function testPredictions(testCase) - verifyVarsEqual(testCase, getName(), ... - {'Eft', 'Varft', 'Covft'}, @mean, ... - 'RelTolElement', 0.01, 'RelTolRange', 0.005) -end - - -% ------------------------ -% Helper functions -% ------------------------ - -function testCase = setup - % Helper function to suply empty array into variable testCase as an - % argument for each test function, if using xUnit package. Not to be - % used with built-in test framework. - testCase = []; -end - -function name = getName - % Helperfunction that returns the name of the demo, e.g. 'binomial1'. - name = mfilename; - name = name(6:end); -end - diff --git a/tests/test_multiclass_nested_ep.m b/tests/test_multiclass_nested_ep.m deleted file mode 100644 index 5f8b8218..00000000 --- a/tests/test_multiclass_nested_ep.m +++ /dev/null @@ -1,69 +0,0 @@ -function test_suite = test_multiclass_nested_ep - -% Run specific demo, save values and compare the results to the expected. -% Works for both xUnit Test Framework package by Steve Eddins and for -% the built-in Unit Testing Framework (as of Matlab version 2013b). -% -% See also -% TEST_ALL, DEMO_MULTICLASS_NESTED_EP -% -% Copyright (c) 2011-2012 Ville Tolvanen -% Copyright (c) 2014 Tuomas Sivula - -% This software is distributed under the GNU General Public -% License (version 3 or later); please refer to the file -% License.txt, included with the software, for details. - - % Check which package to use - if exist('initTestSuite', 'file') - initTestSuite_path = which('initTestSuite'); - else - initTestSuite_path = ''; - end - if ~isempty(initTestSuite_path) && ... - exist([initTestSuite_path(1:end-15) 'runtests'], 'file') - % xUnit package - initTestSuite; - else - % Built-in package - % Use all functions except the @setup - tests = localfunctions; - tests = tests(~cellfun(@(x)strcmp(func2str(x),'setup'),tests)); - test_suite = functiontests(tests); - end -end - - -% ------------- -% Tests -% ------------- - -function testRunDemo(testCase) - % Run the correspondin demo and save the values. Note this test has to - % be run at lest once before the other test may succeed. - rundemo(getName()) -end - -function testPredictionsMulticlassEP(testCase) - verifyVarsEqual(testCase, getName(), {'Eft', 'Covft', 'lpg'}, ... - 'RelTolElement', 0.1, 'RelTolRange', 0.02) -end - - -% ------------------------ -% Helper functions -% ------------------------ - -function testCase = setup - % Helper function to suply empty array into variable testCase as an - % argument for each test function, if using xUnit package. Not to be - % used with built-in test framework. - testCase = []; -end - -function name = getName - % Helperfunction that returns the name of the demo, e.g. 'binomial1'. - name = mfilename; - name = name(6:end); -end - diff --git a/tests/test_multinom.m b/tests/test_multinom.m deleted file mode 100644 index 19048d6a..00000000 --- a/tests/test_multinom.m +++ /dev/null @@ -1,68 +0,0 @@ -function test_suite = test_multinom - -% Run specific demo, save values and compare the results to the expected. -% Works for both xUnit Test Framework package by Steve Eddins and for -% the built-in Unit Testing Framework (as of Matlab version 2013b). -% -% See also -% TEST_ALL, DEMO_MULTINOM -% -% Copyright (c) 2011-2012 Ville Tolvanen -% Copyright (c) 2014 Tuomas Sivula - -% This software is distributed under the GNU General Public -% License (version 3 or later); please refer to the file -% License.txt, included with the software, for details. - - % Check which package to use - if exist('initTestSuite', 'file') - initTestSuite_path = which('initTestSuite'); - else - initTestSuite_path = ''; - end - if ~isempty(initTestSuite_path) && ... - exist([initTestSuite_path(1:end-15) 'runtests'], 'file') - % xUnit package - initTestSuite; - else - % Built-in package - % Use all functions except the @setup - tests = localfunctions; - tests = tests(~cellfun(@(x)strcmp(func2str(x),'setup'),tests)); - test_suite = functiontests(tests); - end -end - - -% ------------- -% Tests -% ------------- - -function testRunDemo(testCase) - % Run the correspondin demo and save the values. Note this test has to - % be run at lest once before the other test may succeed. - rundemo(getName()) -end - -function testPredictionsMultinom(testCase) - verifyVarsEqual(testCase, getName(), {'Eft', 'pyt2'}, 'AbsTol', 0.1) -end - - -% ------------------------ -% Helper functions -% ------------------------ - -function testCase = setup - % Helper function to suply empty array into variable testCase as an - % argument for each test function, if using xUnit package. Not to be - % used with built-in test framework. - testCase = []; -end - -function name = getName - % Helperfunction that returns the name of the demo, e.g. 'binomial1'. - name = mfilename; - name = name(6:end); -end - diff --git a/tests/test_neuralnetcov.m b/tests/test_neuralnetcov.m deleted file mode 100644 index 97ee8713..00000000 --- a/tests/test_neuralnetcov.m +++ /dev/null @@ -1,71 +0,0 @@ -function test_suite = test_neuralnetcov - -% Run specific demo, save values and compare the results to the expected. -% Works for both xUnit Test Framework package by Steve Eddins and for -% the built-in Unit Testing Framework (as of Matlab version 2013b). -% -% See also -% TEST_ALL, DEMO_NEURALNETCOV -% -% Copyright (c) 2011-2012 Ville Tolvanen -% Copyright (c) 2014 Tuomas Sivula - -% This software is distributed under the GNU General Public -% License (version 3 or later); please refer to the file -% License.txt, included with the software, for details. - - % Check which package to use - if exist('initTestSuite', 'file') - initTestSuite_path = which('initTestSuite'); - else - initTestSuite_path = ''; - end - if ~isempty(initTestSuite_path) && ... - exist([initTestSuite_path(1:end-15) 'runtests'], 'file') - % xUnit package - initTestSuite; - else - % Built-in package - % Use all functions except the @setup - tests = localfunctions; - tests = tests(~cellfun(@(x)strcmp(func2str(x),'setup'),tests)); - test_suite = functiontests(tests); - end -end - - -% ------------- -% Tests -% ------------- - -function testRunDemo(testCase) - % Run the correspondin demo and save the values. Note this test has to - % be run at lest once before the other test may succeed. - rundemo(getName()) -end - -function testPredictions(testCase) - verifyVarsEqual(testCase, getName(), ... - {'Eft_map', 'Eft_map2','Varft_map','Varft_map2'}, ... - {@mean, @mean, @mean, @mean}, ... - 'RelTolElement', 0.05, 'RelTolRange', 0.01) -end - - -% ------------------------ -% Helper functions -% ------------------------ - -function testCase = setup - % Helper function to suply empty array into variable testCase as an - % argument for each test function, if using xUnit package. Not to be - % used with built-in test framework. - testCase = []; -end - -function name = getName - % Helperfunction that returns the name of the demo, e.g. 'binomial1'. - name = mfilename; - name = name(6:end); -end - diff --git a/tests/test_periodic.m b/tests/test_periodic.m deleted file mode 100644 index a6a30df3..00000000 --- a/tests/test_periodic.m +++ /dev/null @@ -1,76 +0,0 @@ -function test_suite = test_periodic - -% Run specific demo, save values and compare the results to the expected. -% Works for both xUnit Test Framework package by Steve Eddins and for -% the built-in Unit Testing Framework (as of Matlab version 2013b). -% -% See also -% TEST_ALL, DEMO_PERIODIC -% -% Copyright (c) 2011-2012 Ville Tolvanen -% Copyright (c) 2014 Tuomas Sivula - -% This software is distributed under the GNU General Public -% License (version 3 or later); please refer to the file -% License.txt, included with the software, for details. - - % Check which package to use - if exist('initTestSuite', 'file') - initTestSuite_path = which('initTestSuite'); - else - initTestSuite_path = ''; - end - if ~isempty(initTestSuite_path) && ... - exist([initTestSuite_path(1:end-15) 'runtests'], 'file') - % xUnit package - initTestSuite; - else - % Built-in package - % Use all functions except the @setup - tests = localfunctions; - tests = tests(~cellfun(@(x)strcmp(func2str(x),'setup'),tests)); - test_suite = functiontests(tests); - end -end - - -% ------------- -% Tests -% ------------- - -function testRunDemo(testCase) - % Run the correspondin demo and save the values. Note this test has to - % be run at lest once before the other test may succeed. - rundemo(getName()) -end - -function testPredictionsMaunaLoa(testCase) - verifyVarsEqual(testCase, getName(), ... - {'Eft_full1', 'Eft_full2','Varft_full1','Varft_full2'}, @mean, ... - 'RelTolElement', 0.05, 'RelTolRange', 0.01) -end - -function testPredictionsDrowning(testCase) - verifyVarsEqual(testCase, getName(), ... - {'Eft_full', 'Varft_full'}, @mean, ... - 'RelTolElement', 0.05, 'RelTolRange', 0.01) -end - - -% ------------------------ -% Helper functions -% ------------------------ - -function testCase = setup - % Helper function to suply empty array into variable testCase as an - % argument for each test function, if using xUnit package. Not to be - % used with built-in test framework. - testCase = []; -end - -function name = getName - % Helperfunction that returns the name of the demo, e.g. 'binomial1'. - name = mfilename; - name = name(6:end); -end - diff --git a/tests/test_quantilegp.m b/tests/test_quantilegp.m deleted file mode 100644 index 6b7b3db7..00000000 --- a/tests/test_quantilegp.m +++ /dev/null @@ -1,75 +0,0 @@ -function test_suite = test_quantilegp - -% Run specific demo, save values and compare the results to the expected. -% Works for both xUnit Test Framework package by Steve Eddins and for -% the built-in Unit Testing Framework (as of Matlab version 2013b). -% -% See also -% TEST_ALL, DEMO_QUANTILEGP -% -% Copyright (c) 2011-2012 Ville Tolvanen -% Copyright (c) 2014 Tuomas Sivula - -% This software is distributed under the GNU General Public -% License (version 3 or later); please refer to the file -% License.txt, included with the software, for details. - - % Check which package to use - if exist('initTestSuite', 'file') - initTestSuite_path = which('initTestSuite'); - else - initTestSuite_path = ''; - end - if ~isempty(initTestSuite_path) && ... - exist([initTestSuite_path(1:end-15) 'runtests'], 'file') - % xUnit package - initTestSuite; - else - % Built-in package - % Use all functions except the @setup - tests = localfunctions; - tests = tests(~cellfun(@(x)strcmp(func2str(x),'setup'),tests)); - test_suite = functiontests(tests); - end -end - - -% ------------- -% Tests -% ------------- - -function testRunDemo(testCase) - % Run the correspondin demo and save the values. Note this test has to - % be run at lest once before the other test may succeed. - rundemo(getName()) -end - -function testPredictiveMeanAndVariance_EP(testCase) - verifyVarsEqual(testCase, getName(), {'Ef4','Ef5','Varf4','Varf5'}, ... - 'RelTolElement', 0.1, 'RelTolRange', 0.02) -end - -function testPredictiveMean_MCMC(testCase) - verifyVarsEqual(testCase, getName(), {'Ef1','Ef2','Ef3'}, ... - 'RelTolRange', 0.1) -end - - -% ------------------------ -% Helper functions -% ------------------------ - -function testCase = setup - % Helper function to suply empty array into variable testCase as an - % argument for each test function, if using xUnit package. Not to be - % used with built-in test framework. - testCase = []; -end - -function name = getName - % Helperfunction that returns the name of the demo, e.g. 'binomial1'. - name = mfilename; - name = name(6:end); -end - - \ No newline at end of file diff --git a/tests/test_regression1.m b/tests/test_regression1.m deleted file mode 100644 index eed40ee6..00000000 --- a/tests/test_regression1.m +++ /dev/null @@ -1,101 +0,0 @@ -function test_suite = test_regression1 - -% Run specific demo, save values and compare the results to the expected. -% Works for both xUnit Test Framework package by Steve Eddins and for -% the built-in Unit Testing Framework (as of Matlab version 2013b). -% -% See also -% TEST_ALL, DEMO_REGRESSION1 -% -% Copyright (c) 2011-2012 Ville Tolvanen -% Copyright (c) 2014 Tuomas Sivula - -% This software is distributed under the GNU General Public -% License (version 3 or later); please refer to the file -% License.txt, included with the software, for details. - - % Check which package to use - if exist('initTestSuite', 'file') - initTestSuite_path = which('initTestSuite'); - else - initTestSuite_path = ''; - end - if ~isempty(initTestSuite_path) && ... - exist([initTestSuite_path(1:end-15) 'runtests'], 'file') - % xUnit package - initTestSuite; - else - % Built-in package - % Use all functions except the @setup - tests = localfunctions; - tests = tests(~cellfun(@(x)strcmp(func2str(x),'setup'),tests)); - test_suite = functiontests(tests); - end -end - - -% ------------- -% Tests -% ------------- - -function testRunDemo(testCase) - % Run the correspondin demo and save the values. Note this test has to - % be run at lest once before the other test may succeed. - rundemo(getName(), { ... - 'K', 'C', 'w', ... - {'Eft_map', @(x)x(1:50)}, {'Varft_map', @(x)x(1:50)}, ... - {'Eft_ia', @(x)x(1:50)}, {'Varft_ia', @(x)x(1:50)}, ... - {'Eft_mc', @(x)x(1:50)}, {'Varft_mc', @(x)x(1:50)} }) -end - -function testCovarianceMatrices(testCase) - % Test diagonal with 1e-7 tolerance (because of varying jitterSigma2) - verifyVarsEqual(testCase, getName(), {'K','C'}, ... - @(x)diag(x), 'AbsTol', 1e-7) - % Test non-diagonal elements - verifyVarsEqual(testCase, getName(), {'K','C'}, ... - @(x)x(~eye(size(x))), 'AbsTol', eps) -end - -function testOptimizedParameter(testCase) - verifyVarsEqual(testCase, getName(), {'w'}, ... - 'RelTolElement', 0.05) -end - -function testPredictedMeanVarianceGrid(testCase) - verifyVarsEqual(testCase, getName(), ... - {'Eft_map','Varft_map'}, ... - 'RelTolElement', 0.05, 'RelTolRange', 0.01) -end - -function testPredictedMeanVarianceMC(testCase) - verifyVarsEqual(testCase, getName(), {'Eft_mc'}, ... - 'RelTolElement', 0.1, 'RelTolRange', 0.02) - verifyVarsEqual(testCase, getName(), {'Varft_mc'}, ... - 'AbsTol', 0.3) -end - -function testPredictedMeanVarianceIA(testCase) - verifyVarsEqual(testCase, getName(), ... - {'Eft_ia','Varft_ia'}, ... - 'RelTolElement', 0.1, 'RelTolRange', 0.02) -end - - -% ------------------------ -% Helper functions -% ------------------------ - -function testCase = setup - % Helper function to suply empty array into variable testCase as an - % argument for each test function, if using xUnit package. Not to be - % used with built-in test framework. - testCase = []; -end - -function name = getName - % Helperfunction that returns the name of the demo, e.g. 'binomial1'. - name = mfilename; - name = name(6:end); -end - diff --git a/tests/test_regression_additive1.m b/tests/test_regression_additive1.m deleted file mode 100644 index 24639997..00000000 --- a/tests/test_regression_additive1.m +++ /dev/null @@ -1,82 +0,0 @@ -function test_suite = test_regression_additive1 - -% Run specific demo, save values and compare the results to the expected. -% Works for both xUnit Test Framework package by Steve Eddins and for -% the built-in Unit Testing Framework (as of Matlab version 2013b). -% -% See also -% TEST_ALL, DEMO_REGRESSION_ADDITIVE1 -% -% Copyright (c) 2011-2012 Ville Tolvanen -% Copyright (c) 2014 Tuomas Sivula - -% This software is distributed under the GNU General Public -% License (version 3 or later); please refer to the file -% License.txt, included with the software, for details. - - % Check which package to use - if exist('initTestSuite', 'file') - initTestSuite_path = which('initTestSuite'); - else - initTestSuite_path = ''; - end - if ~isempty(initTestSuite_path) && ... - exist([initTestSuite_path(1:end-15) 'runtests'], 'file') - % xUnit package - initTestSuite; - else - % Built-in package - % Use all functions except the @setup - tests = localfunctions; - tests = tests(~cellfun(@(x)strcmp(func2str(x),'setup'),tests)); - test_suite = functiontests(tests); - end -end - - -% ------------- -% Tests -% ------------- - -function testRunDemo(testCase) - % Run the correspondin demo and save the values. Note this test has to - % be run at lest once before the other test may succeed. - rundemo(getName()) -end - -function testPredictionsFIC(testCase) - verifyVarsEqual(testCase, getName(), ... - {'Eft_fic', 'Varft_fic'}, {[], @mean}, ... - 'AbsTol', 0.1) -end - -function testPredictionsPIC(testCase) - verifyVarsEqual(testCase, getName(), ... - {'Eft_pic', 'Varft_pic'}, ... - 'AbsTol', 0.1) -end - -function testPredictionsSparse(testCase) - verifyVarsEqual(testCase, getName(), ... - {'Eft_csfic', 'Varft_csfic'}, ... - 'AbsTol', 0.1) -end - - -% ------------------------ -% Helper functions -% ------------------------ - -function testCase = setup - % Helper function to suply empty array into variable testCase as an - % argument for each test function, if using xUnit package. Not to be - % used with built-in test framework. - testCase = []; -end - -function name = getName - % Helperfunction that returns the name of the demo, e.g. 'binomial1'. - name = mfilename; - name = name(6:end); -end - diff --git a/tests/test_regression_additive2.m b/tests/test_regression_additive2.m deleted file mode 100644 index 21abf020..00000000 --- a/tests/test_regression_additive2.m +++ /dev/null @@ -1,69 +0,0 @@ -function test_suite = test_regression_additive2 - -% Run specific demo, save values and compare the results to the expected. -% Works for both xUnit Test Framework package by Steve Eddins and for -% the built-in Unit Testing Framework (as of Matlab version 2013b). -% -% See also -% TEST_ALL, DEMO_REGRESSION_ADDITIVE2 -% -% Copyright (c) 2011-2012 Ville Tolvanen -% Copyright (c) 2014 Tuomas Sivula - -% This software is distributed under the GNU General Public -% License (version 3 or later); please refer to the file -% License.txt, included with the software, for details. - - % Check which package to use - if exist('initTestSuite', 'file') - initTestSuite_path = which('initTestSuite'); - else - initTestSuite_path = ''; - end - if ~isempty(initTestSuite_path) && ... - exist([initTestSuite_path(1:end-15) 'runtests'], 'file') - % xUnit package - initTestSuite; - else - % Built-in package - % Use all functions except the @setup - tests = localfunctions; - tests = tests(~cellfun(@(x)strcmp(func2str(x),'setup'),tests)); - test_suite = functiontests(tests); - end -end - - -% ------------- -% Tests -% ------------- - -function testRunDemo(testCase) - % Run the correspondin demo and save the values. Note this test has to - % be run at lest once before the other test may succeed. - rundemo(getName()) -end - -function testNeuralNetworkCFPrediction(testCase) - verifyVarsEqual(testCase, getName(), {'Eft_map'}, ... - 'RelTolElement', 0.05, 'RelTolRange', 0.01) -end - - -% ------------------------ -% Helper functions -% ------------------------ - -function testCase = setup - % Helper function to suply empty array into variable testCase as an - % argument for each test function, if using xUnit package. Not to be - % used with built-in test framework. - testCase = []; -end - -function name = getName - % Helperfunction that returns the name of the demo, e.g. 'binomial1'. - name = mfilename; - name = name(6:end); -end - diff --git a/tests/test_regression_hier.m b/tests/test_regression_hier.m deleted file mode 100644 index 27dbf50d..00000000 --- a/tests/test_regression_hier.m +++ /dev/null @@ -1,69 +0,0 @@ -function test_suite = test_regression_hier - -% Run specific demo, save values and compare the results to the expected. -% Works for both xUnit Test Framework package by Steve Eddins and for -% the built-in Unit Testing Framework (as of Matlab version 2013b). -% -% See also -% TEST_ALL, DEMO_REGRESSION_HIER -% -% Copyright (c) 2011-2012 Ville Tolvanen -% Copyright (c) 2014 Tuomas Sivula - -% This software is distributed under the GNU General Public -% License (version 3 or later); please refer to the file -% License.txt, included with the software, for details. - - % Check which package to use - if exist('initTestSuite', 'file') - initTestSuite_path = which('initTestSuite'); - else - initTestSuite_path = ''; - end - if ~isempty(initTestSuite_path) && ... - exist([initTestSuite_path(1:end-15) 'runtests'], 'file') - % xUnit package - initTestSuite; - else - % Built-in package - % Use all functions except the @setup - tests = localfunctions; - tests = tests(~cellfun(@(x)strcmp(func2str(x),'setup'),tests)); - test_suite = functiontests(tests); - end -end - - -% ------------- -% Tests -% ------------- - -function testRunDemo(testCase) - % Run the correspondin demo and save the values. Note this test has to - % be run at lest once before the other test may succeed. - rundemo(getName()) -end - -function testPredictionMissingData(testCase) - verifyVarsEqual(testCase, getName(), {'Eff'}, {@mean}, ... - 'RelTolElement', 0.01, 'RelTolRange', 0.005) -end - - -% ------------------------ -% Helper functions -% ------------------------ - -function testCase = setup - % Helper function to suply empty array into variable testCase as an - % argument for each test function, if using xUnit package. Not to be - % used with built-in test framework. - testCase = []; -end - -function name = getName - % Helperfunction that returns the name of the demo, e.g. 'binomial1'. - name = mfilename; - name = name(6:end); -end - diff --git a/tests/test_regression_meanf.m b/tests/test_regression_meanf.m deleted file mode 100644 index a9b24c6c..00000000 --- a/tests/test_regression_meanf.m +++ /dev/null @@ -1,69 +0,0 @@ -function test_suite = test_regression_meanf - -% Run specific demo, save values and compare the results to the expected. -% Works for both xUnit Test Framework package by Steve Eddins and for -% the built-in Unit Testing Framework (as of Matlab version 2013b). -% -% See also -% TEST_ALL, DEMO_REGRESSION_MEANF -% -% Copyright (c) 2011-2012 Ville Tolvanen -% Copyright (c) 2014 Tuomas Sivula - -% This software is distributed under the GNU General Public -% License (version 3 or later); please refer to the file -% License.txt, included with the software, for details. - - % Check which package to use - if exist('initTestSuite', 'file') - initTestSuite_path = which('initTestSuite'); - else - initTestSuite_path = ''; - end - if ~isempty(initTestSuite_path) && ... - exist([initTestSuite_path(1:end-15) 'runtests'], 'file') - % xUnit package - initTestSuite; - else - % Built-in package - % Use all functions except the @setup - tests = localfunctions; - tests = tests(~cellfun(@(x)strcmp(func2str(x),'setup'),tests)); - test_suite = functiontests(tests); - end -end - - -% ------------- -% Tests -% ------------- - -function testRunDemo(testCase) - % Run the correspondin demo and save the values. Note this test has to - % be run at lest once before the other test may succeed. - rundemo(getName()) -end - -function testPredictions(testCase) - verifyVarsEqual(testCase, getName(), {'Eft'}, {@mean}, ... - 'RelTolElement', 0.1, 'RelTolRange', 0.02) -end - - -% ------------------------ -% Helper functions -% ------------------------ - -function testCase = setup - % Helper function to suply empty array into variable testCase as an - % argument for each test function, if using xUnit package. Not to be - % used with built-in test framework. - testCase = []; -end - -function name = getName - % Helperfunction that returns the name of the demo, e.g. 'binomial1'. - name = mfilename; - name = name(6:end); -end - diff --git a/tests/test_regression_ppcs.m b/tests/test_regression_ppcs.m deleted file mode 100644 index 0e394215..00000000 --- a/tests/test_regression_ppcs.m +++ /dev/null @@ -1,74 +0,0 @@ -function test_suite = test_regression_ppcs - -% Run specific demo, save values and compare the results to the expected. -% Works for both xUnit Test Framework package by Steve Eddins and for -% the built-in Unit Testing Framework (as of Matlab version 2013b). -% -% See also -% TEST_ALL, DEMO_REGRESSION_PPCS -% -% Copyright (c) 2011-2012 Ville Tolvanen -% Copyright (c) 2014 Tuomas Sivula - -% This software is distributed under the GNU General Public -% License (version 3 or later); please refer to the file -% License.txt, included with the software, for details. - - % Check which package to use - if exist('initTestSuite', 'file') - initTestSuite_path = which('initTestSuite'); - else - initTestSuite_path = ''; - end - if ~isempty(initTestSuite_path) && ... - exist([initTestSuite_path(1:end-15) 'runtests'], 'file') - % xUnit package - initTestSuite; - else - % Built-in package - % Use all functions except the @setup - tests = localfunctions; - tests = tests(~cellfun(@(x)strcmp(func2str(x),'setup'),tests)); - test_suite = functiontests(tests); - end -end - - -% ------------- -% Tests -% ------------- - -function testRunDemo(testCase) - % Run the correspondin demo and save the values. Note this test has to - % be run at lest once before the other test may succeed. - rundemo(getName(), {{'K', @(x)x(1:50,1:50)}, {'Ef', @(x)x(1:100)}}) -end - -function testCovarianceMatrix(testCase) - verifyVarsEqual(testCase, getName(), {'K'}, {@(x)mean(full(x))}, ... - 'RelTolElement', 0.1, 'RelTolRange', 0.02) -end - -function testPrediction(testCase) - verifyVarsEqual(testCase, getName(), {'Ef'}, {@(x)mean(x)}, ... - 'RelTolElement', 0.1, 'RelTolRange', 0.02) -end - - -% ------------------------ -% Helper functions -% ------------------------ - -function testCase = setup - % Helper function to suply empty array into variable testCase as an - % argument for each test function, if using xUnit package. Not to be - % used with built-in test framework. - testCase = []; -end - -function name = getName - % Helperfunction that returns the name of the demo, e.g. 'binomial1'. - name = mfilename; - name = name(6:end); -end - diff --git a/tests/test_regression_robust.m b/tests/test_regression_robust.m deleted file mode 100644 index d6d99b62..00000000 --- a/tests/test_regression_robust.m +++ /dev/null @@ -1,76 +0,0 @@ -function test_suite = test_regression_robust - -% Run specific demo, save values and compare the results to the expected. -% Works for both xUnit Test Framework package by Steve Eddins and for -% the built-in Unit Testing Framework (as of Matlab version 2013b). -% -% See also -% TEST_ALL, DEMO_REGRESSION_ROBUST -% -% Copyright (c) 2011-2012 Ville Tolvanen -% Copyright (c) 2014 Tuomas Sivula - -% This software is distributed under the GNU General Public -% License (version 3 or later); please refer to the file -% License.txt, included with the software, for details. - - % Check which package to use - if exist('initTestSuite', 'file') - initTestSuite_path = which('initTestSuite'); - else - initTestSuite_path = ''; - end - if ~isempty(initTestSuite_path) && ... - exist([initTestSuite_path(1:end-15) 'runtests'], 'file') - % xUnit package - initTestSuite; - else - % Built-in package - % Use all functions except the @setup - tests = localfunctions; - tests = tests(~cellfun(@(x)strcmp(func2str(x),'setup'),tests)); - test_suite = functiontests(tests); - end -end - - -% ------------- -% Tests -% ------------- - -function testRunDemo(testCase) - % Run the correspondin demo and save the values. Note this test has to - % be run at lest once before the other test may succeed. - rundemo(getName(), {'Eft', 'Varft', {'w', @gp_pak, 'rr'}}) -end - -function testPredictionEP(testCase) - verifyVarsEqual(testCase, getName(), {'Eft', 'Varft'}, @mean, ... - 'RelTolElement', 0.05, 'RelTolRange', 0.01) -end - -function testMCMCSamples(testCase) - verifyVarsEqual(testCase, getName(), {'w'}, @(x) mean(x(:,1)), ... - 'AbsTol', 1) - verifyVarsEqual(testCase, getName(), {'w'}, @(x) mean(x(:,[2,3])), ... - 'AbsTol', 0.5) -end - - -% ------------------------ -% Helper functions -% ------------------------ - -function testCase = setup - % Helper function to suply empty array into variable testCase as an - % argument for each test function, if using xUnit package. Not to be - % used with built-in test framework. - testCase = []; -end - -function name = getName - % Helperfunction that returns the name of the demo, e.g. 'binomial1'. - name = mfilename; - name = name(6:end); -end - diff --git a/tests/test_regression_sparse1.m b/tests/test_regression_sparse1.m deleted file mode 100644 index 796bbccf..00000000 --- a/tests/test_regression_sparse1.m +++ /dev/null @@ -1,89 +0,0 @@ -function test_suite = test_regression_sparse1 - -% Run specific demo, save values and compare the results to the expected. -% Works for both xUnit Test Framework package by Steve Eddins and for -% the built-in Unit Testing Framework (as of Matlab version 2013b). -% -% See also -% TEST_ALL, DEMO_REGRESSION_SPARSE1 -% -% Copyright (c) 2011-2012 Ville Tolvanen -% Copyright (c) 2014 Tuomas Sivula - -% This software is distributed under the GNU General Public -% License (version 3 or later); please refer to the file -% License.txt, included with the software, for details. - - % Check which package to use - if exist('initTestSuite', 'file') - initTestSuite_path = which('initTestSuite'); - else - initTestSuite_path = ''; - end - if ~isempty(initTestSuite_path) && ... - exist([initTestSuite_path(1:end-15) 'runtests'], 'file') - % xUnit package - initTestSuite; - else - % Built-in package - % Use all functions except the @setup - tests = localfunctions; - tests = tests(~cellfun(@(x)strcmp(func2str(x),'setup'),tests)); - test_suite = functiontests(tests); - end -end - - -% ------------- -% Tests -% ------------- - -function testRunDemo(testCase) - % Run the correspondin demo and save the values. Note this test has to - % be run at lest once before the other test may succeed. - rundemo(getName()) -end - -function testPredictionsCS(testCase) - verifyVarsEqual(testCase, getName(), {'Eft_cs'}, ... - 'RelTolRange', 0.02) -end - -function testPredictionsFIC(testCase) - verifyVarsEqual(testCase, getName(), {'Eft_fic'}, ... - 'RelTolRange', 0.02) -end - -function testPredictionsPIC(testCase) - verifyVarsEqual(testCase, getName(), {'Eft_pic'}, ... - 'RelTolRange', 0.02) -end - -function testPredictionsVAR(testCase) - verifyVarsEqual(testCase, getName(), {'Eft_var'}, ... - 'RelTolRange', 0.02) -end - -function testPredictionsDTC(testCase) - verifyVarsEqual(testCase, getName(), {'Eft_dtc'}, ... - 'RelTolRange', 0.02) -end - - -% ------------------------ -% Helper functions -% ------------------------ - -function testCase = setup - % Helper function to suply empty array into variable testCase as an - % argument for each test function, if using xUnit package. Not to be - % used with built-in test framework. - testCase = []; -end - -function name = getName - % Helperfunction that returns the name of the demo, e.g. 'binomial1'. - name = mfilename; - name = name(6:end); -end - diff --git a/tests/test_regression_sparse2.m b/tests/test_regression_sparse2.m deleted file mode 100644 index 02228017..00000000 --- a/tests/test_regression_sparse2.m +++ /dev/null @@ -1,78 +0,0 @@ -function test_suite = test_regression_sparse2 - -% Run specific demo, save values and compare the results to the expected. -% Works for both xUnit Test Framework package by Steve Eddins and for -% the built-in Unit Testing Framework (as of Matlab version 2013b). -% -% See also -% TEST_ALL, DEMO_REGRESSION_SPARSE2 -% -% Copyright (c) 2011-2012 Ville Tolvanen -% Copyright (c) 2014 Tuomas Sivula - -% This software is distributed under the GNU General Public -% License (version 3 or later); please refer to the file -% License.txt, included with the software, for details. - - % Check which package to use - if exist('initTestSuite', 'file') - initTestSuite_path = which('initTestSuite'); - else - initTestSuite_path = ''; - end - if ~isempty(initTestSuite_path) && ... - exist([initTestSuite_path(1:end-15) 'runtests'], 'file') - % xUnit package - initTestSuite; - else - % Built-in package - % Use all functions except the @setup - tests = localfunctions; - tests = tests(~cellfun(@(x)strcmp(func2str(x),'setup'),tests)); - test_suite = functiontests(tests); - end -end - - -% ------------- -% Tests -% ------------- - -function testRunDemo(testCase) - % Run the correspondin demo and save the values. Note this test has to - % be run at lest once before the other test may succeed. - rundemo(getName(), { ... - {'Eft_full', @(x)x(1:100)}, {'Varft_full', @(x)x(1:100)}, ... - {'Eft_var', @(x)x(1:100)}, {'Varft_var', @(x)x(1:100)} }) -end - -function testPredictionsFull(testCase) - verifyVarsEqual(testCase, getName(), ... - {'Eft_full', 'Varft_full'}, @mean, ... - 'RelTolElement', 0.1) -end - -function testPredictionsVar(testCase) - verifyVarsEqual(testCase, getName(), ... - {'Eft_var', 'Varft_var'}, ... - 'RelTolElement', 0.1, 'RelTolRange', 0.02) -end - - -% ------------------------ -% Helper functions -% ------------------------ - -function testCase = setup - % Helper function to suply empty array into variable testCase as an - % argument for each test function, if using xUnit package. Not to be - % used with built-in test framework. - testCase = []; -end - -function name = getName - % Helperfunction that returns the name of the demo, e.g. 'binomial1'. - name = mfilename; - name = name(6:end); -end - diff --git a/tests/test_spatial1.m b/tests/test_spatial1.m deleted file mode 100644 index fbdd98a0..00000000 --- a/tests/test_spatial1.m +++ /dev/null @@ -1,75 +0,0 @@ -function test_suite = test_spatial1 - -% Run specific demo, save values and compare the results to the expected. -% Works for both xUnit Test Framework package by Steve Eddins and for -% the built-in Unit Testing Framework (as of Matlab version 2013b). -% -% See also -% TEST_ALL, DEMO_SPATIAL1 -% -% Copyright (c) 2011-2012 Ville Tolvanen -% Copyright (c) 2014 Tuomas Sivula - -% This software is distributed under the GNU General Public -% License (version 3 or later); please refer to the file -% License.txt, included with the software, for details. - - % Check which package to use - if exist('initTestSuite', 'file') - initTestSuite_path = which('initTestSuite'); - else - initTestSuite_path = ''; - end - if ~isempty(initTestSuite_path) && ... - exist([initTestSuite_path(1:end-15) 'runtests'], 'file') - % xUnit package - initTestSuite; - else - % Built-in package - % Use all functions except the @setup - tests = localfunctions; - tests = tests(~cellfun(@(x)strcmp(func2str(x),'setup'),tests)); - test_suite = functiontests(tests); - end -end - - -% ------------- -% Tests -% ------------- - -function testRunDemo(testCase) - % Run the correspondin demo and save the values. Note this test has to - % be run at lest once before the other test may succeed. - rundemo(getName()) -end - -function testEstimatesIA(testCase) - verifyVarsEqual(testCase, getName(), {'Elth', 'Elth2'}, ... - 'RelTolElement', 0.1, 'RelTolRange', 0.02) -end - -function testPredictionIA(testCase) - verifyVarsEqual(testCase, getName(), {'Ef', 'Varf'}, ... - @(x)mean(x(1:100)), ... - 'RelTolElement', 0.1, 'RelTolRange', 0.02) -end - - -% ------------------------ -% Helper functions -% ------------------------ - -function testCase = setup - % Helper function to suply empty array into variable testCase as an - % argument for each test function, if using xUnit package. Not to be - % used with built-in test framework. - testCase = []; -end - -function name = getName - % Helperfunction that returns the name of the demo, e.g. 'binomial1'. - name = mfilename; - name = name(6:end); -end - diff --git a/tests/test_spatial2.m b/tests/test_spatial2.m deleted file mode 100644 index 63d5900c..00000000 --- a/tests/test_spatial2.m +++ /dev/null @@ -1,76 +0,0 @@ -function test_suite = test_spatial2 - -% Run specific demo, save values and compare the results to the expected. -% Works for both xUnit Test Framework package by Steve Eddins and for -% the built-in Unit Testing Framework (as of Matlab version 2013b). -% -% See also -% TEST_ALL, DEMO_SPATIAL2 -% -% Copyright (c) 2011-2012 Ville Tolvanen -% Copyright (c) 2014 Tuomas Sivula - -% This software is distributed under the GNU General Public -% License (version 3 or later); please refer to the file -% License.txt, included with the software, for details. - - % Check which package to use - if exist('initTestSuite', 'file') - initTestSuite_path = which('initTestSuite'); - else - initTestSuite_path = ''; - end - if ~isempty(initTestSuite_path) && ... - exist([initTestSuite_path(1:end-15) 'runtests'], 'file') - % xUnit package - initTestSuite; - else - % Built-in package - % Use all functions except the @setup - tests = localfunctions; - tests = tests(~cellfun(@(x)strcmp(func2str(x),'setup'),tests)); - test_suite = functiontests(tests); - end -end - - -% ------------- -% Tests -% ------------- - -function testRunDemo(testCase) - % Run the correspondin demo and save the values. Note this test has to - % be run at lest once before the other test may succeed. - rundemo(getName(), ... - {{'Ef', @(x)x(1:100)}, {'Varf', @(x)x(1:100)}, ... - {'C', @(x)x(1:50,1:50)}}) -end - -function testPredictionsEP(testCase) - verifyVarsEqual(testCase, getName(), {'Ef', 'Varf'}, @mean, ... - 'RelTolElement', 0.1, 'RelTolRange', 0.02) -end - -function testCovarianceMatrix(testCase) - verifyVarsEqual(testCase, getName(), {'C'}, @mean, ... - 'RelTolElement', 0.1, 'RelTolRange', 0.02) -end - - -% ------------------------ -% Helper functions -% ------------------------ - -function testCase = setup - % Helper function to suply empty array into variable testCase as an - % argument for each test function, if using xUnit package. Not to be - % used with built-in test framework. - testCase = []; -end - -function name = getName - % Helperfunction that returns the name of the demo, e.g. 'binomial1'. - name = mfilename; - name = name(6:end); -end - diff --git a/tests/test_survival_aft.m b/tests/test_survival_aft.m deleted file mode 100644 index 55475b1a..00000000 --- a/tests/test_survival_aft.m +++ /dev/null @@ -1,73 +0,0 @@ -function test_suite = test_survival_aft - -% Run specific demo, save values and compare the results to the expected. -% Works for both xUnit Test Framework package by Steve Eddins and for -% the built-in Unit Testing Framework (as of Matlab version 2013b). -% -% See also -% TEST_ALL, DEMO_SURVIVAL_AFT -% -% Copyright (c) 2011-2012 Ville Tolvanen -% Copyright (c) 2014 Tuomas Sivula - -% This software is distributed under the GNU General Public -% License (version 3 or later); please refer to the file -% License.txt, included with the software, for details. - - % Check which package to use - if exist('initTestSuite', 'file') - initTestSuite_path = which('initTestSuite'); - else - initTestSuite_path = ''; - end - if ~isempty(initTestSuite_path) && ... - exist([initTestSuite_path(1:end-15) 'runtests'], 'file') - % xUnit package - initTestSuite; - else - % Built-in package - % Use all functions except the @setup - tests = localfunctions; - tests = tests(~cellfun(@(x)strcmp(func2str(x),'setup'),tests)); - test_suite = functiontests(tests); - end -end - - -% ------------- -% Tests -% ------------- - -function testRunDemo(testCase) - % Run the correspondin demo and save the values. Note this test has to - % be run at lest once before the other test may succeed. - rundemo(getName()) -end - -function testPredictions(testCase) - verifyVarsEqual(testCase, getName(), {'pmu'}, {@(x)x(:,1)}, ... - 'RelTolElement', 0.05, 'RelTolRange', 0.01) - verifyVarsEqual(testCase, getName(), {'pmu'}, {@(x)x(:,2)}, ... - 'RelTolElement', 0.05, 'RelTolRange', 0.01) - verifyVarsEqual(testCase, getName(), {'pmu'}, {@(x)x(:,3)}, ... - 'RelTolElement', 0.05, 'RelTolRange', 0.01) -end - - -% ------------------------ -% Helper functions -% ------------------------ - -function testCase = setup - % Helper function to suply empty array into variable testCase as an - % argument for each test function, if using xUnit package. Not to be - % used with built-in test framework. - testCase = []; -end - -function name = getName - % Helperfunction that returns the name of the demo, e.g. 'binomial1'. - name = mfilename; - name = name(6:end); -end - diff --git a/tests/test_survival_coxph.m b/tests/test_survival_coxph.m deleted file mode 100644 index 82f10636..00000000 --- a/tests/test_survival_coxph.m +++ /dev/null @@ -1,69 +0,0 @@ -function test_suite = test_survival_coxph - -% Run specific demo, save values and compare the results to the expected. -% Works for both xUnit Test Framework package by Steve Eddins and for -% the built-in Unit Testing Framework (as of Matlab version 2013b). -% -% See also -% TEST_ALL, DEMO_SURVIVAL_COXPH -% -% Copyright (c) 2011-2012 Ville Tolvanen -% Copyright (c) 2014 Tuomas Sivula - -% This software is distributed under the GNU General Public -% License (version 3 or later); please refer to the file -% License.txt, included with the software, for details. - - % Check which package to use - if exist('initTestSuite', 'file') - initTestSuite_path = which('initTestSuite'); - else - initTestSuite_path = ''; - end - if ~isempty(initTestSuite_path) && ... - exist([initTestSuite_path(1:end-15) 'runtests'], 'file') - % xUnit package - initTestSuite; - else - % Built-in package - % Use all functions except the @setup - tests = localfunctions; - tests = tests(~cellfun(@(x)strcmp(func2str(x),'setup'),tests)); - test_suite = functiontests(tests); - end -end - - -% ------------- -% Tests -% ------------- - -function testRunDemo(testCase) - % Run the correspondin demo and save the values. Note this test has to - % be run at lest once before the other test may succeed. - rundemo(getName()) -end - -function testPredictionsCoxph(testCase) - verifyVarsEqual(testCase, getName(), {'Ef','Varf'}, ... - 'AbsTol', 0.1) -end - - -% ------------------------ -% Helper functions -% ------------------------ - -function testCase = setup - % Helper function to suply empty array into variable testCase as an - % argument for each test function, if using xUnit package. Not to be - % used with built-in test framework. - testCase = []; -end - -function name = getName - % Helperfunction that returns the name of the demo, e.g. 'binomial1'. - name = mfilename; - name = name(6:end); -end - diff --git a/tests/test_svi_classific.m b/tests/test_svi_classific.m deleted file mode 100644 index ff7f51b9..00000000 --- a/tests/test_svi_classific.m +++ /dev/null @@ -1,74 +0,0 @@ -function test_suite = test_svi_classific - -% Run specific demo, save values and compare the results to the expected. -% Works for both xUnit Test Framework package by Steve Eddins and for -% the built-in Unit Testing Framework (as of Matlab version 2013b). -% -% See also -% TEST_ALL, DEMO_SVI_CLASSIFIC -% -% Copyright (c) 2011-2012 Ville Tolvanen -% Copyright (c) 2014 Tuomas Sivula - -% This software is distributed under the GNU General Public -% License (version 3 or later); please refer to the file -% License.txt, included with the software, for details. - - % Check which package to use - if exist('initTestSuite', 'file') - initTestSuite_path = which('initTestSuite'); - else - initTestSuite_path = ''; - end - if ~isempty(initTestSuite_path) && ... - exist([initTestSuite_path(1:end-15) 'runtests'], 'file') - % xUnit package - initTestSuite; - else - % Built-in package - % Use all functions except the @setup - tests = localfunctions; - tests = tests(~cellfun(@(x)strcmp(func2str(x),'setup'),tests)); - test_suite = functiontests(tests); - end -end - - -% ------------- -% Tests -% ------------- - -function testRunDemo(testCase) - % Run the correspondin demo and save the values. Note this test has to - % be run at lest once before the other test may succeed. - rundemo(getName(), {'lpyt', {'w', @(x)gp_pak(x), 'gp'} }) -end - -function testPrediction(testCase) - verifyVarsEqual(testCase, getName(), {'lpyt'}, ... - 'RelTolElement', 0.05, 'RelTolRange', 0.01) -end - -function testParameters(testCase) - verifyVarsEqual(testCase, getName(), {'w'}, ... - 'RelTolElement', 0.05, 'RelTolRange', 0.01) -end - - -% ------------------------ -% Helper functions -% ------------------------ - -function testCase = setup - % Helper function to suply empty array into variable testCase as an - % argument for each test function, if using xUnit package. Not to be - % used with built-in test framework. - testCase = []; -end - -function name = getName - % Helperfunction that returns the name of the demo, e.g. 'binomial1'. - name = mfilename; - name = name(6:end); -end - diff --git a/tests/test_svi_regression.m b/tests/test_svi_regression.m deleted file mode 100644 index 176829f3..00000000 --- a/tests/test_svi_regression.m +++ /dev/null @@ -1,85 +0,0 @@ -function test_suite = test_svi_regression - -% Run specific demo, save values and compare the results to the expected. -% Works for both xUnit Test Framework package by Steve Eddins and for -% the built-in Unit Testing Framework (as of Matlab version 2013b). -% -% See also -% TEST_ALL, DEMO_SVI_REGRESSION -% -% Copyright (c) 2011-2012 Ville Tolvanen -% Copyright (c) 2014 Tuomas Sivula - -% This software is distributed under the GNU General Public -% License (version 3 or later); please refer to the file -% License.txt, included with the software, for details. - - % Check which package to use - if exist('initTestSuite', 'file') - initTestSuite_path = which('initTestSuite'); - else - initTestSuite_path = ''; - end - if ~isempty(initTestSuite_path) && ... - exist([initTestSuite_path(1:end-15) 'runtests'], 'file') - % xUnit package - initTestSuite; - else - % Built-in package - % Use all functions except the @setup - tests = localfunctions; - tests = tests(~cellfun(@(x)strcmp(func2str(x),'setup'),tests)); - test_suite = functiontests(tests); - end -end - - -% ------------- -% Tests -% ------------- - -function testRunDemo(testCase) - % Run the correspondin demo and save the values. Note this test has to - % be run at lest once before the other test may succeed. - rundemo(getName(), {... - {'e_final', @(x)x.e(end), 'diagnosis'}, ... - {'mlpd_final', @(x)x.mlpd(end), 'diagnosis'}, ... - {'rmse_final', @(x)x.rmse(end), 'diagnosis'}, ... - {'Eft', @(x)x([411:451, 1231:1271])}, ... - {'w', @(x)gp_pak(x), 'gp'} }) -end - -function testConvergence(testCase) - verifyVarsEqual(testCase, getName(), ... - {'e_final', 'mlpd_final', 'rmse_final'}, ... - 'RelTolElement', 0.1) -end - -function testMean(testCase) - verifyVarsEqual(testCase, getName(), {'Eft'}, ... - 'RelTolElement', 0.05, 'RelTolRange', 0.01) -end - -function testParameters(testCase) - verifyVarsEqual(testCase, getName(), {'w'}, ... - 'RelTolElement', 0.05, 'RelTolRange', 0.01) -end - - -% ------------------------ -% Helper functions -% ------------------------ - -function testCase = setup - % Helper function to suply empty array into variable testCase as an - % argument for each test function, if using xUnit package. Not to be - % used with built-in test framework. - testCase = []; -end - -function name = getName - % Helperfunction that returns the name of the demo, e.g. 'binomial1'. - name = mfilename; - name = name(6:end); -end - diff --git a/tests/test_zinegbin.m b/tests/test_zinegbin.m deleted file mode 100644 index 7131b353..00000000 --- a/tests/test_zinegbin.m +++ /dev/null @@ -1,70 +0,0 @@ -function test_suite = test_zinegbin - -% Run specific demo, save values and compare the results to the expected. -% Works for both xUnit Test Framework package by Steve Eddins and for -% the built-in Unit Testing Framework (as of Matlab version 2013b). -% -% See also -% TEST_ALL, DEMO_ZINEGBIN -% -% Copyright (c) 2011-2012 Ville Tolvanen -% Copyright (c) 2014 Tuomas Sivula - -% This software is distributed under the GNU General Public -% License (version 3 or later); please refer to the file -% License.txt, included with the software, for details. - - % Check which package to use - if exist('initTestSuite', 'file') - initTestSuite_path = which('initTestSuite'); - else - initTestSuite_path = ''; - end - if ~isempty(initTestSuite_path) && ... - exist([initTestSuite_path(1:end-15) 'runtests'], 'file') - % xUnit package - initTestSuite; - else - % Built-in package - % Use all functions except the @setup - tests = localfunctions; - tests = tests(~cellfun(@(x)strcmp(func2str(x),'setup'),tests)); - test_suite = functiontests(tests); - end -end - - -% ------------- -% Tests -% ------------- - -function testRunDemo(testCase) - % Run the correspondin demo and save the values. Note this test has to - % be run at lest once before the other test may succeed. - rundemo(getName(), ... - {{'Ef' @(x)x(1:100)}, {'Varf', @(x)diag(x(1:100,1:100))}}) -end - -function testPredictionsZinegbin(testCase) - verifyVarsEqual(testCase, getName(), {'Ef', 'Varf'}, ... - 'RelTolElement', 0.1, 'RelTolRange', 0.02) -end - - -% ------------------------ -% Helper functions -% ------------------------ - -function testCase = setup - % Helper function to suply empty array into variable testCase as an - % argument for each test function, if using xUnit package. Not to be - % used with built-in test framework. - testCase = []; -end - -function name = getName - % Helperfunction that returns the name of the demo, e.g. 'binomial1'. - name = mfilename; - name = name(6:end); -end - diff --git a/tests/verifyVarsEqual.m b/tests/verifyVarsEqual.m deleted file mode 100644 index 5988534f..00000000 --- a/tests/verifyVarsEqual.m +++ /dev/null @@ -1,245 +0,0 @@ -function verifyVarsEqual(testCase, name, varargin) -%verifyVarsEqual Verify the equality of demo results within tolerance. -% -% Description -% verifyVarsEqual(testCase, name, vars, funcs, OPTIONS) -% compares the elements in the results of a demo into the expected ones -% using relative tolerance to each element individually and/or to the -% range of the expected array and/or using absolute tolerance. The data -% is loaded from the 'realValues' and 'testValues' folders. Used by the -% gpstuff tests. Can be used with xUnit Test Framework package by Steve -% Eddins or with the Matlab's built-in Unit Testing Framework (as of -% version 2013b). -% -% Parameters: -% testCase -% The testCase object, if using the integrated unit test framework, -% or empty array, if using the xUnit package. -% name -% The name of the demo. -% vars (optional) -% Cell array of strings defining the numerical array variables that -% are compared. Giving string 'same' (default) looks the names of -% the saved variables in the file 'realValues/.mat' -% and compares them. -% funcs (optional) -% Cell array of function handles that are applied into the -% corresponding actual and expected arrays before comparison. Cell -% containing an empty array indicates that no function is used for -% that variable. Empty array in general indicates that no function -% is applied for any variable. Providing a single function handle -% applies the function to all variables. -% -% OPTIONS is optional parameter-value pair -% RelTolElement - tolerance relative to the magnitude of each element -% (default 0.05) -% RelTolRange - tolerance relative to the range of the elements -% (default 0.01) -% AbsTol - absolute tolerance (default 0) -% -% See also -% TEST_* -% -% Copyright (c) 2014 Tuomas Sivula - -% This software is distributed under the GNU General Public -% License (version 3 or later); please refer to the file -% License.txt, included with the software, for details. - -% Parse inputs -ip = inputParser; -ip.FunctionName = 'verifyVarsEqual'; -ip.addRequired('testCase',@(x) isempty(x) ... - || isa(testCase, 'matlab.unittest.FunctionTestCase')) -ip.addRequired('name', @ischar) -ip.addOptional('vars', 'same', @(x) iscellstr(x) ... - || (ischar(x) && strcmp(x,'same'))) -ip.addOptional('funcs', [], @(x) isempty(x) || ... - isa(x,'function_handle') || (iscell(x) && all( ... - cellfun(@(y)isa(y,'function_handle')||isempty(y),x) ))) -ip.addParamValue('RelTolElement', 0, ... - @(x) isnumeric(x) && isscalar(x) && isreal(x) && x >= 0) -ip.addParamValue('RelTolRange', 0, ... - @(x) isnumeric(x) && isscalar(x) && isreal(x) && x >= 0) -ip.addParamValue('AbsTol', 0, ... - @(x) isnumeric(x) && isscalar(x) && isreal(x) && x >= 0) -ip.parse(testCase,name,varargin{:}); -testCase = ip.Results.testCase; -name = ip.Results.name; -vars = ip.Results.vars; -funcs = ip.Results.funcs; -tol_el = ip.Results.RelTolElement; -tol_range = ip.Results.RelTolRange; -tol_abs = ip.Results.AbsTol; - -% Handle parameter vars -if ischar(vars) && strcmp(vars, 'same') - % Check the variable names from 'realValues/.mat' - vars = whos(matfile(['realValues/' name '.mat'])); - vars = {vars.name}; -end - -% Validate parameter funcs -if ~isempty(funcs) && iscell(funcs) && length(funcs) ~= length(vars) - error('Parameter funcs size mismatch') -end - -% Find the path to the test folder -path = mfilename('fullpath'); -path = path(1:end-length(mfilename)); - -% For every variable in vars -for i = 1:length(vars) - - % Load the variables - if isempty(testCase) - % xUnit package - Sw = warning('off','MATLAB:load:variableNotFound') - try - actual = load([path, 'testValues/' name '.mat'], vars{i}); - if ~isfield(actual, vars{i}) - error(['Variable ' vars{i} ' not found in testValues/' name '.mat']) - end - expected = load([path, 'realValues/' name '.mat'], vars{i}); - if ~isfield(expected, vars{i}) - error(['Variable ' vars{i} ' not found in realValues/' name '.mat']) - end - catch err - warning(Sw) - rethrow(err) - end - warning(Sw) - else - % Built-in test framework - actual = assertWarningFree(testCase, ... - @() load([path, 'testValues/' name '.mat'], vars{i})); - expected = assertWarningFree(testCase, ... - @() load([path, 'realValues/' name '.mat'], vars{i})); - end - - % Error message (if the variable should fail the validation) - msg = ['The variable ' vars{i} ' failed the verification.']; - - % Apply funcs - if isa(funcs,'function_handle') - actual = funcs(actual.(vars{i})); - expected = funcs(expected.(vars{i})); - %Add info to the error message - msg = sprintf('%s\nFunction applied:\n%s', msg, func2str(funcs)); - elseif ~isempty(funcs) && ~isempty(funcs{i}) - actual = funcs{i}(actual.(vars{i})); - expected = funcs{i}(expected.(vars{i})); - %Add info to the error message - msg = sprintf('%s\nFunction applied:\n%s', msg, func2str(funcs{i})); - else - actual = actual.(vars{i}); - expected = expected.(vars{i}); - end - - - - if isempty(testCase) - - % xUnit package (N.B. using assertions instead of verifications) - if tol_el == 0 && tol_range == 0 && tol_abs == 0 - % No tolerance - assertEqual(actual, expected, msg) - else - % Manual assertion - - % Compare - diff = abs(actual(:) - expected(:)); - viol_el = 1; - viol_range = 1; - viol_abs = 1; - if tol_el > 0 - viol_el = diff > tol_el*abs(expected(:)); - end - if tol_range > 0 - viol_range = diff > tol_range ... - *( max(expected(:)) - min(expected(:)) ); - end - if tol_abs > 0 - viol_abs = diff > tol_abs; - end - - if any( viol_el & viol_range & viol_abs ) - - % Compose the message - msg = sprintf( ... - ['%s\nInput elements are not all equal within tolerances\n' ... - '(RelTolElement=%g, RelTolRange=%g, AbsTol=%g)\n\n'], ... - msg, tol_el, tol_range, tol_abs); - if tol_el > 0 && any(viol_el) - msg = sprintf( ... - ['%sThe following indexes fail the elementwise relative ' ... - 'tolerance:\n%s\n\n'], ... - msg, xunit.utils.arrayToString(find(viol_el)')); - end - if tol_range > 0 && any(viol_range) - msg = sprintf( ... - ['%sThe following indexes fail the range relative ' ... - 'tolerance:\n%s\n\n'], ... - msg, xunit.utils.arrayToString(find(viol_range)')); - end - if tol_abs > 0 && any(viol_abs) - msg = sprintf( ... - ['%sThe following indexes fail the absolute ' ... - 'tolerance:\n%s\n\n'], ... - msg, xunit.utils.arrayToString(find(viol_abs)')); - end - msg = sprintf( ... - ['%sThe following indexes fail the comparison(s):\n%s\n\n' ... - 'First input:\n%s\n\nSecond input:\n%s'], ... - msg, ... - xunit.utils.arrayToString(find(viol_el & viol_range & viol_abs)'), ... - xunit.utils.arrayToString(actual), ... - xunit.utils.arrayToString(expected) ); - - % Raise error - throwAsCaller(MException('assertVars:tolExceeded', msg)); - - end - end - - else - - if tol_el == 0 && tol_range == 0 && tol_abs == 0 - % No tolerance - verifyEqual(testCase, actual, expected, msg) - else - % Construct tolerance object - if tol_el > 0 - tolObj = matlab.unittest.constraints.RelativeTolerance(tol_el); - end - if tol_range > 0 - if exist('tolObj', 'var') - tolObj = tolObj | matlab.unittest.constraints.AbsoluteTolerance( ... - tol_range*( max(expected(:)) - min(expected(:)) )); - else - tolObj = matlab.unittest.constraints.AbsoluteTolerance( ... - tol_range*( max(expected(:)) - min(expected(:)) )); - end - end - if tol_abs > 0 - if exist('tolObj', 'var') - tolObj = tolObj | matlab.unittest.constraints.AbsoluteTolerance( ... - tol_abs); - else - tolObj = matlab.unittest.constraints.AbsoluteTolerance(tol_abs); - end - end - - % Perform the verification - testCase.verifyThat(actual, matlab.unittest.constraints.IsEqualTo( ... - expected, 'Within', tolObj), msg); - - end - - end - - % Clear variables - clear actual expected tolObj - -end -