Introduction
We are looking at Inference for Comparing Two Paired Means.
── Attaching core tidyverse packages ──────────────────────── tidyverse 2.0.0 ──
✔ dplyr 1.1.4 ✔ readr 2.1.5
✔ forcats 1.0.0 ✔ stringr 1.5.1
✔ ggplot2 3.5.1 ✔ tibble 3.2.1
✔ lubridate 1.9.3 ✔ tidyr 1.3.1
✔ purrr 1.0.2
── Conflicts ────────────────────────────────────────── tidyverse_conflicts() ──
✖ dplyr::filter() masks stats::filter()
✖ dplyr::lag() masks stats::lag()
ℹ Use the conflicted package (<http://conflicted.r-lib.org/>) to force all conflicts to become errors
Registered S3 method overwritten by 'mosaic':
method from
fortify.SpatialPolygonsDataFrame ggplot2
The 'mosaic' package masks several functions from core packages in order to add
additional features. The original behavior of these functions should not be affected by this.
Attaching package: 'mosaic'
The following object is masked from 'package:Matrix':
mean
The following objects are masked from 'package:dplyr':
count, do, tally
The following object is masked from 'package:purrr':
cross
The following object is masked from 'package:ggplot2':
stat
The following objects are masked from 'package:stats':
binom.test, cor, cor.test, cov, fivenum, IQR, median, prop.test,
quantile, sd, t.test, var
The following objects are masked from 'package:base':
max, mean, min, prod, range, sample, sum
library (broom)
library (resampledata3)
Attaching package: 'resampledata3'
The following object is masked from 'package:datasets':
Titanic
Plot Theme
knitr:: opts_chunk$ set (
fig.width = 7 ,
## Sets the default width of figures to 7 inches.
fig.asp = 0.618 ,
## Sets the aspect ratio of the figure to approximately the golden ratio.
fig.align = "center"
## Centers the alignment of the figure output.
)
theme_custom <- function () {
## defines a custom theme for ggplot2 plots, using the font "Roboto Condensed" and modifying certain visual elements like the plot title, subtitles, captions, axis titles, and text.
font <- "Roboto Condensed"
theme_classic (base_size = 14 ) %+replace% ## used to replace elements from the base theme with custom settings.
theme (
panel.grid.minor = element_blank (),
text = element_text (family = font),
plot.title = element_text (
family = font,
face = "bold" ,
hjust = 0 ,
margin = margin (0 , 0 , 10 , 0 )
),
plot.subtitle = element_text (
family = font,
hjust = 0 ,
margin = margin (2 , 0 , 5 , 0 )
),
plot.caption = element_text (
family = font,
size = 8 ,
hjust = 1
),
axis.title = element_text (
family = font,
size = 10
),
axis.text = element_text (
family = font,
size = 8
)
)
}
theme_set (new = theme_custom ())
Case Study - Results from a Diving Championship
data ("Diving2017" , package = "resampledata3" )
Diving2017
Name Country Semifinal Final
1 CHEONG Jun Hoong Malaysia 325.50 397.50
2 SI Yajie China 382.80 396.00
3 REN Qian China 367.50 391.95
4 KIM Mi Rae North Korea 346.00 385.55
5 WU Melissa Australia 318.70 370.20
6 KIM Kuk Hyang North Korea 360.85 360.00
7 ITAHASHI Minami Japan 313.70 357.85
8 BENFEITO Meaghan Canada 355.15 331.40
9 PAMG Pandelela Malaysia 322.75 322.40
10 CHAMANDY Olivia Canada 320.55 307.15
11 PARRATTO Jessica USA 322.75 302.35
12 MURILLO URREA Carolina Colombia 325.75 283.35
Diving2017_inspect <- inspect (Diving2017)
Diving2017_inspect$ categorical
# A tibble: 2 × 6
name class levels n missing distribution
<chr> <chr> <int> <int> <int> <chr>
1 Name factor 12 12 0 " SI Yajie (8.3%) ... …
2 Country factor 8 12 0 "Canada (16.7%), China (16.7%) ... …
Diving2017_inspect$ quantitative
# A tibble: 2 × 11
name class min Q1 median Q3 max mean sd n missing
* <chr> <chr> <dbl> <dbl> <dbl> <dbl> <dbl> <dbl> <dbl> <int> <int>
1 Semifinal numeric 314. 322. 326. 357. 383. 338. 22.9 12 0
2 Final numeric 283. 319. 359. 387. 398. 350. 40.0 12 0
The dataset from the Diving2017 championship includes results from 12 divers across 8 countries, with no missing data. The semifinal scores ranged from 313.7 to 382.8, with a median of 325.63 and a standard deviation of 22.95, indicating a relatively consistent performance among divers. The final scores showed more variation, ranging from 283.35 to 397.5, with a higher median of 358.93 and a larger standard deviation of 40.02, suggesting greater performance differences in the final round. Overall, most divers improved their scores in the final compared to the semifinals.
Diving Scores - Density Plot
Diving2017_long %>%
gf_density (~ scores,
fill = ~ race,
alpha = 0.5 ,
title = "Diving Scores"
) %>%
gf_facet_grid (~ race) %>%
gf_fitdistr (dist = "dnorm" )
Warning in grid.Call(C_stringMetric, as.graphicsAnnot(x$label)): font family
not found in Windows font database
Warning in grid.Call(C_stringMetric, as.graphicsAnnot(x$label)): font family
not found in Windows font database
Warning in grid.Call(C_stringMetric, as.graphicsAnnot(x$label)): font family
not found in Windows font database
Warning in grid.Call(C_stringMetric, as.graphicsAnnot(x$label)): font family
not found in Windows font database
Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font
family not found in Windows font database
Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font
family not found in Windows font database
Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font
family not found in Windows font database
Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font
family not found in Windows font database
Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font
family not found in Windows font database
Warning in grid.Call.graphics(C_text, as.graphicsAnnot(x$label), x$x, x$y, :
font family not found in Windows font database
Warning in grid.Call.graphics(C_text, as.graphicsAnnot(x$label), x$x, x$y, :
font family not found in Windows font database
Warning in grid.Call.graphics(C_text, as.graphicsAnnot(x$label), x$x, x$y, :
font family not found in Windows font database
Warning in grid.Call.graphics(C_text, as.graphicsAnnot(x$label), x$x, x$y, :
font family not found in Windows font database
Warning in grid.Call.graphics(C_text, as.graphicsAnnot(x$label), x$x, x$y, :
font family not found in Windows font database
Warning in grid.Call.graphics(C_text, as.graphicsAnnot(x$label), x$x, x$y, :
font family not found in Windows font database
Warning in grid.Call.graphics(C_text, as.graphicsAnnot(x$label), x$x, x$y, :
font family not found in Windows font database
The density plot visualizes the distribution of scores from the Diving2017 championship, separated into semifinal and final rounds. The semifinal scores (in blue) show a slightly more concentrated distribution, with a peak around 350, indicating that most divers scored close to this value. The final scores (in pink) are more widely spread, peaking around 375, but with a flatter distribution, suggesting a greater variability in performance. The normal distribution curve is fitted for both sets of scores, showing that while the semifinal scores are more normally distributed, the final scores have a wider range and less symmetry.
Diving Scores - Histogram
Diving2017_long %>%
gf_col (
fct_reorder (Name, scores) ~ scores,
fill = ~ race,
alpha = 0.5 ,
position = "dodge" ,
xlab = "Scores" ,
ylab = "Name" ,
title = "Diving Scores"
)
Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font
family not found in Windows font database
Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font
family not found in Windows font database
Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font
family not found in Windows font database
Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font
family not found in Windows font database
Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font
family not found in Windows font database
Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font
family not found in Windows font database
Warning in grid.Call.graphics(C_text, as.graphicsAnnot(x$label), x$x, x$y, :
font family not found in Windows font database
Warning in grid.Call.graphics(C_text, as.graphicsAnnot(x$label), x$x, x$y, :
font family not found in Windows font database
Warning in grid.Call.graphics(C_text, as.graphicsAnnot(x$label), x$x, x$y, :
font family not found in Windows font database
Warning in grid.Call.graphics(C_text, as.graphicsAnnot(x$label), x$x, x$y, :
font family not found in Windows font database
Warning in grid.Call.graphics(C_text, as.graphicsAnnot(x$label), x$x, x$y, :
font family not found in Windows font database
Warning in grid.Call.graphics(C_text, as.graphicsAnnot(x$label), x$x, x$y, :
font family not found in Windows font database
The plot shows that top performers like SI Yajie and REN Qian from China consistently scored higher in both rounds, while other divers, such as KIM Mi Rae and CHEONG Jun Hoong, also performed well but with slight variations between the two rounds. Notably, some divers, like BENFEITO Meaghan and MURILLO URREA Carolina, experienced a drop in their final scores compared to the semifinals. The plot, with its clear distinction between semifinal and final scores through color coding, makes it easy to see changes in individual performances across the rounds.
Diving Scores - Boxplot
Diving2017_long %>%
gf_boxplot (
scores ~ race,
fill = ~ race,
alpha = 0.5 ,
xlab = "Race" ,
ylab = "Scores" ,
title = "Diving Scores"
)
Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font
family not found in Windows font database
Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font
family not found in Windows font database
Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font
family not found in Windows font database
Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font
family not found in Windows font database
Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font
family not found in Windows font database
Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font
family not found in Windows font database
Warning in grid.Call.graphics(C_text, as.graphicsAnnot(x$label), x$x, x$y, :
font family not found in Windows font database
Warning in grid.Call.graphics(C_text, as.graphicsAnnot(x$label), x$x, x$y, :
font family not found in Windows font database
Warning in grid.Call.graphics(C_text, as.graphicsAnnot(x$label), x$x, x$y, :
font family not found in Windows font database
Warning in grid.Call.graphics(C_text, as.graphicsAnnot(x$label), x$x, x$y, :
font family not found in Windows font database
Warning in grid.Call.graphics(C_text, as.graphicsAnnot(x$label), x$x, x$y, :
font family not found in Windows font database
Warning in grid.Call.graphics(C_text, as.graphicsAnnot(x$label), x$x, x$y, :
font family not found in Windows font database
The boxplot visualizes the distribution of diving scores for the semifinal and final rounds. The box for the final scores (in pink) is positioned higher overall, indicating that final scores tend to be higher than semifinal scores. The median score in the final round is higher, around 375, compared to the semifinal’s median of about 350. The final scores also show more variability, with a wider interquartile range (IQR) and longer whiskers, reflecting a broader spread of scores. The semifinal scores (in blue) are more concentrated, with a smaller IQR and whiskers, indicating less variation in scores. This plot emphasizes that divers generally performed better and with more variability in the final round than in the semifinal.
Checking for Normality
shapiro.test (Diving2017$ Final)
Shapiro-Wilk normality test
data: Diving2017$Final
W = 0.9184, p-value = 0.273
shapiro.test (Diving2017$ Semifinal)
Shapiro-Wilk normality test
data: Diving2017$Semifinal
W = 0.86554, p-value = 0.05738
The Shapiro-Wilk normality test was performed on the semifinal and final diving scores to assess whether the data is normally distributed.
Final scores : The test statistic W=0.9184 and the p-value is 0.273. Since the p-value is greater than the typical significance level of 0.05, we fail to reject the null hypothesis, indicating that the final scores do not significantly deviate from a normal distribution.
Semifinal scores : The test statistic W=0.86554 and the p-value is 0.05738. Although the p-value is close to 0.05, it is still slightly higher, so we also fail to reject the null hypothesis for the semifinal scores. This suggests that the semifinal scores are approximately normally distributed, but with a slightly stronger deviation from normality compared to the final scores.
In summary, both the semifinal and final scores are not significantly different from a normal distribution based on the Shapiro-Wilk test results.
Comparing Data and Normal Boxplots
theme_set (new = theme_custom ())
set.rseed (1234 )
Diving2017 %>%
mutate (
Final_norm = rnorm (
n = 12 ,
mean = mean (Final),
sd = sd (Final)
),
Semifinal_norm = rnorm (
n = 12 ,
mean = mean (Semifinal),
sd = sd (Semifinal)
)
) %>%
pivot_longer (
cols =
c (Semifinal, Final, Semifinal_norm, Final_norm),
names_to = "score_type" , values_to = "value"
) %>%
gf_boxplot (value ~ score_type,
fill = ~ score_type,
show.legend = FALSE
) %>%
gf_labs (title = "Comparing Data and Normal Boxplots" )
Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font
family not found in Windows font database
Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font
family not found in Windows font database
Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font
family not found in Windows font database
Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font
family not found in Windows font database
Warning in grid.Call.graphics(C_text, as.graphicsAnnot(x$label), x$x, x$y, :
font family not found in Windows font database
Warning in grid.Call.graphics(C_text, as.graphicsAnnot(x$label), x$x, x$y, :
font family not found in Windows font database
Warning in grid.Call.graphics(C_text, as.graphicsAnnot(x$label), x$x, x$y, :
font family not found in Windows font database
Warning in grid.Call.graphics(C_text, as.graphicsAnnot(x$label), x$x, x$y, :
font family not found in Windows font database
Diving2017_long %>%
gf_qq (~ scores | race, size = 2 ) %>%
gf_qqline (ylab = "scores" , xlab = "theoretical normal" )
Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font
family not found in Windows font database
Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font
family not found in Windows font database
Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font
family not found in Windows font database
Warning in grid.Call.graphics(C_text, as.graphicsAnnot(x$label), x$x, x$y, :
font family not found in Windows font database
Warning in grid.Call.graphics(C_text, as.graphicsAnnot(x$label), x$x, x$y, :
font family not found in Windows font database
Warning in grid.Call.graphics(C_text, as.graphicsAnnot(x$label), x$x, x$y, :
font family not found in Windows font database
Warning in grid.Call.graphics(C_text, as.graphicsAnnot(x$label), x$x, x$y, :
font family not found in Windows font database
## set.rseed(1234)-This ensures reproducibility by setting a seed for random number generation. The seed ensures that random numbers generated in the next step will be the same every time the code is run.
## gf_qq() generates the QQ plot for the scores variable, grouped by race (semifinal and final).
## gf_qqline() adds a reference line to the QQ plot, which helps to assess how closely the actual data follows a normal distribution.
In the boxplots comparing the actual and simulated normal scores for the diving championship data, the Final and Semifinal scores are shown alongside their respective normally generated counterparts. The actual final scores exhibit a wider range with a slightly higher median compared to the simulated normal distribution, which is narrower. Similarly, the semifinal scores display more variability than the corresponding simulated normal distribution, but they are closer in range compared to the finals. The normal simulations serve as a baseline for comparison, highlighting the greater variability in actual scores, especially in the finals.
In the QQ plot (Quantile-Quantile plot), the actual scores for both the final and semifinal rounds are plotted against a theoretical normal distribution. While the semifinal scores mostly follow the expected straight-line pattern of a normal distribution, the final scores deviate more significantly, particularly at the higher end, where outliers appear above the theoretical line. This confirms that the final scores show more variation from normality, whereas the semifinal scores are closer to a normal distribution.
Checking for Variances
var.test (scores ~ race,
data = Diving2017_long,
ratio = 1 ,
conf.int = TRUE ,
conf.level = 0.95
) %>%
broom:: tidy ()
Multiple parameters; naming those columns num.df, den.df
# A tibble: 1 × 9
estimate num.df den.df statistic p.value conf.low conf.high method alternative
<dbl> <int> <int> <dbl> <dbl> <dbl> <dbl> <chr> <chr>
1 3.04 11 11 3.04 0.0783 0.876 10.6 F tes… two.sided
## The var.test() function is used to conduct the F-test for equality of variances between two groups (semifinal and final scores in this case).
## ratio = 1: Specifies the null hypothesis that the ratio of the variances is equal to 1, meaning both groups have the same variance.
The F-test for variances was performed to compare the variability between the final and semifinal scores in the Diving2017 dataset. The test statistic is 3.041, with a p-value of 0.0783. Since the p-value is greater than the typical significance level of 0.05, we fail to reject the null hypothesis, suggesting that the variances between the two groups (final and semifinal scores) are not significantly different.
The confidence interval for the variance ratio is (0.8755, 10.5644), which includes 1, further supporting the conclusion that there is no significant difference in variance between the semifinal and final scores. Thus, the variability in scores is approximately the same in both rounds.
Observed and Test Statistic
obs_diff_swim <- diffmean (scores ~ race,
data = Diving2017_long,
only.2 = FALSE
)
obs_diff_swim
## diffmean(scores ~ race): This calculates the difference in the mean scores between the two groups defined by the race variable (semifinal and final).
## only.2 = FALSE: This argument specifies that the comparison should be made between the two groups in race (semifinal and final), even if there are more than two categories. Here, it ensures the comparison is made between exactly these two categories.
This calculates that the mean score in the semifinal is about 11.975 points lower than the mean score in the final. This negative value suggests that divers generally performed better in the final round compared to the semifinal.
Paired t-test
mosaic:: t.test (
x = Diving2017$ Semifinal,
y = Diving2017$ Final,
paired = TRUE , var.equal = FALSE
) %>% broom:: tidy ()
# A tibble: 1 × 8
estimate statistic p.value parameter conf.low conf.high method alternative
<dbl> <dbl> <dbl> <dbl> <dbl> <dbl> <chr> <chr>
1 -12.0 -1.19 0.259 11 -34.1 10.2 Paired t-… two.sided
The paired t-test comparing the semifinal and final diving scores reveals that the average score difference is -11.975, with semifinal scores being lower than final scores. However, the p-value of 0.259 indicates that this difference is not statistically significant, meaning the observed difference could be due to random variation. The 95% confidence interval for the mean difference, ranging from -34.11 to 10.17, includes zero, further supporting that there is no meaningful difference between the two rounds. Overall, there is no significant evidence to suggest that scores significantly improved from the semifinals to the finals.
Non-parametric paired Wilcoxon test
wilcox.test (
x = Diving2017$ Semifinal,
y = Diving2017$ Final,
mu = 0 ,
alternative = "two.sided" ,
paired = TRUE ,
conf.int = TRUE ,
conf.level = 0.95
) %>%
broom:: tidy ()
# A tibble: 1 × 7
estimate statistic p.value conf.low conf.high method alternative
<dbl> <dbl> <dbl> <dbl> <dbl> <chr> <chr>
1 -12.0 27 0.380 -35.8 12.3 Wilcoxon signed ran… two.sided
The Wilcoxon signed-rank test was conducted to compare the semifinal and final diving scores. The estimated difference between the median semifinal and final scores is -11.96, suggesting that semifinal scores are lower. However, the p-value of 0.38 indicates that this difference is not statistically significant at the 95% confidence level. The 95% confidence interval for the median difference ranges from -35.83 to 12.3, which includes zero, further supporting the conclusion that there is no significant difference between the scores in the semifinal and final rounds. This test confirms that the score differences could be due to random variation.
Using the Linear Model Method
lm (Semifinal - Final ~ 1 , data = Diving2017) %>%
broom:: tidy (conf.int = TRUE , conf.level = 0.95 )
# A tibble: 1 × 7
term estimate std.error statistic p.value conf.low conf.high
<chr> <dbl> <dbl> <dbl> <dbl> <dbl> <dbl>
1 (Intercept) -12.0 10.1 -1.19 0.259 -34.1 10.2
signed_rank <- function (x) {
sign (x) * rank (abs (x))
}
lm (signed_rank (Semifinal - Final) ~ 1 ,
data = Diving2017
) %>%
broom:: tidy (conf.int = TRUE , conf.level = 0.95 )
# A tibble: 1 × 7
term estimate std.error statistic p.value conf.low conf.high
<chr> <dbl> <dbl> <dbl> <dbl> <dbl> <dbl>
1 (Intercept) -2 2.14 -0.937 0.369 -6.70 2.70
## lm(Semifinal - Final ~ 1, data = Diving2017)- This part fits a simple linear model to the difference between Semifinal and Final scores, essentially calculating the mean difference between the two. ~ 1 means that the model is fitting just the intercept, which represents the average difference between semifinal and final scores.
## signed_rank <- function(x)
## This function applies a signed rank transformation to the difference between Semifinal and Final scores.
## sign(x) returns the sign of each element in x (positive or negative).
## rank(abs(x)) computes the ranks of the absolute values of x.
## The result is a vector where each difference is replaced by its signed rank.
## lm(signed_rank(Semifinal - Final) ~ 1, data = Diving2017)- After applying the signed rank transformation, the code fits another linear model (just like the first one) but with the signed ranks instead of the raw differences.
The first linear model estimates the mean difference between semifinal and final scores. The estimate of -11.975 indicates that the semifinal scores are, on average, 11.975 points lower than the final scores. However, the p-value of 0.259 suggests that this difference is not statistically significant.
The second linear model, based on the signed ranks, estimates a mean difference of -2, which is also not statistically significant (p = 0.369). The confidence interval ranges from -6.7 to 2.7, indicating that the mean rank difference is not meaningfully different from zero.
Permutation Test
polarity <- c (rep (1 , 6 ), rep (- 1 , 6 ))
polarity
[1] 1 1 1 1 1 1 -1 -1 -1 -1 -1 -1
null_dist_swim <- do (4999 ) *
mean (
data = Diving2017,
~ (Final - Semifinal) *
mosaic:: resample (polarity,
replace = TRUE
)
)
null_dist_swim
mean
1 1.866667e+00
2 -3.733333e+00
3 -1.234167e+01
4 -2.058333e+00
5 8.783333e+00
6 1.296667e+01
7 -1.440833e+01
8 1.409167e+01
9 -1.263333e+01
10 -1.440833e+01
11 -1.033333e+01
12 1.044167e+01
13 -5.916667e-01
14 -1.078333e+01
15 2.350000e+00
16 -7.508333e+00
17 -1.018333e+01
18 -9.491667e+00
19 -1.344167e+01
20 -1.462500e+01
21 -1.629167e+01
22 -1.870000e+01
23 2.758333e+00
24 -8.550000e+00
25 2.833333e-01
26 2.916667e+00
27 -4.033333e+00
28 5.083333e-01
29 1.121667e+01
30 3.083333e+00
31 -1.942500e+01
32 -1.725000e+00
33 -1.733333e+00
34 -2.162500e+01
35 -3.283333e+00
36 9.725000e+00
37 -3.200000e+00
38 -3.333333e-02
39 -1.397500e+01
40 -1.060000e+01
41 -1.383333e+00
42 3.333333e+00
43 6.166667e+00
44 -7.100000e+00
45 -8.100000e+00
46 -1.799167e+01
47 -8.916667e-01
48 1.308333e+00
49 -6.375000e+00
50 5.683333e+00
51 7.083333e+00
52 2.700000e+00
53 1.400000e+00
54 6.508333e+00
55 -1.416667e-01
56 1.276667e+01
57 -1.045000e+01
58 1.039167e+01
59 -1.128333e+01
60 9.916667e+00
61 5.750000e-01
62 8.816667e+00
63 -1.503333e+01
64 -4.850000e+00
65 -1.393333e+01
66 -3.416667e-01
67 -9.358333e+00
68 -1.781667e+01
69 3.941667e+00
70 9.566667e+00
71 1.052500e+01
72 7.900000e+00
73 -1.578333e+01
74 -2.075000e+00
75 -1.488333e+01
76 -8.400000e+00
77 -2.566667e+00
78 2.232500e+01
79 -7.408333e+00
80 8.841667e+00
81 -6.616667e+00
82 1.678333e+01
83 -1.692500e+01
84 1.250000e+00
85 5.808333e+00
86 1.182500e+01
87 -7.158333e+00
88 -3.000000e+00
89 5.633333e+00
90 4.500000e-01
91 2.250000e-01
92 -2.858333e+00
93 1.320000e+01
94 -2.473333e+01
95 -2.080000e+01
96 1.265000e+01
97 -8.333333e-03
98 2.000000e+00
99 6.825000e+00
100 2.010833e+01
101 -2.916667e-01
102 3.675000e+00
103 -8.100000e+00
104 4.850000e+00
105 1.549167e+01
106 -8.316667e+00
107 1.236667e+01
108 -1.216667e+00
109 2.341667e+00
110 4.183333e+00
111 5.416667e+00
112 1.277500e+01
113 3.716667e+00
114 5.183333e+00
115 -9.625000e+00
116 1.640833e+01
117 1.675000e+00
118 -1.856667e+01
119 6.075000e+00
120 -1.622500e+01
121 1.262500e+01
122 1.280000e+01
123 -1.476667e+01
124 1.045833e+01
125 5.333333e+00
126 7.291667e+00
127 -1.727500e+01
128 6.708333e+00
129 -1.895833e+01
130 -8.008333e+00
131 8.316667e+00
132 -1.514167e+01
133 3.125000e+00
134 -4.616667e+00
135 -1.383333e+01
136 1.343333e+01
137 3.591667e+00
138 4.358333e+00
139 5.466667e+00
140 -1.525833e+01
141 9.383333e+00
142 -6.791667e+00
143 -1.163333e+01
144 5.875000e+00
145 1.122500e+01
146 -1.365833e+01
147 -7.983333e+00
148 -6.791667e+00
149 1.816667e+01
150 2.863333e+01
151 1.474167e+01
152 1.901667e+01
153 -8.808333e+00
154 6.350000e+00
155 -6.908333e+00
156 -1.171667e+01
157 3.816667e+00
158 7.608333e+00
159 -7.841667e+00
160 2.133333e+01
161 -9.483333e+00
162 1.708333e+00
163 -1.388333e+01
164 1.333333e+00
165 -1.191667e+01
166 2.500000e+00
167 -1.800000e+00
168 1.317500e+01
169 -5.091667e+00
170 3.425000e+00
171 -6.433333e+00
172 8.333333e-01
173 -2.741667e+00
174 -1.692500e+01
175 -1.103333e+01
176 5.350000e+00
177 9.583333e+00
178 -5.300000e+00
179 -3.866667e+00
180 -1.220000e+01
181 9.983333e+00
182 7.091667e+00
183 2.650000e+00
184 -2.583333e-01
185 6.166667e+00
186 9.541667e+00
187 7.358333e+00
188 6.000000e-01
189 -3.600000e+00
190 1.600000e+00
191 -7.141667e+00
192 1.933333e+01
193 -2.516667e+00
194 1.125833e+01
195 1.567500e+01
196 -9.666667e-01
197 5.683333e+00
198 1.130000e+01
199 -3.908333e+00
200 7.041667e+00
201 -4.700000e+00
202 -3.791667e+00
203 4.416667e+00
204 -1.075000e+00
205 7.091667e+00
206 -4.216667e+00
207 3.050000e+00
208 6.933333e+00
209 -7.350000e+00
210 -1.409167e+01
211 -6.016667e+00
212 1.261667e+01
213 1.296667e+01
214 -3.433333e+00
215 -1.787500e+01
216 -7.558333e+00
217 6.316667e+00
218 1.858333e+00
219 -5.391667e+00
220 -1.157500e+01
221 -8.933333e+00
222 -1.913333e+01
223 -1.374167e+01
224 -2.475000e+00
225 -2.127500e+01
226 -1.910000e+01
227 -2.500000e+00
228 -1.067500e+01
229 2.320000e+01
230 -4.725000e+00
231 1.275000e+00
232 -5.441667e+00
233 -8.333333e-01
234 1.171667e+01
235 -1.850833e+01
236 -1.308333e+00
237 -2.065833e+01
238 -1.555000e+01
239 8.608333e+00
240 -1.207500e+01
241 -2.141667e+01
242 -1.263333e+01
243 -1.740000e+01
244 2.775000e+00
245 -8.608333e+00
246 -1.366667e+00
247 -5.066667e+00
248 1.557500e+01
249 5.908333e+00
250 -1.655000e+01
251 -6.175000e+00
252 2.566667e+00
253 1.083333e+00
254 -1.520000e+01
255 1.135833e+01
256 3.700000e+00
257 3.933333e+00
258 4.000000e-01
259 4.791667e+00
260 -1.065833e+01
261 -1.359167e+01
262 1.511667e+01
263 -3.941667e+00
264 1.045833e+01
265 -1.603333e+01
266 -1.445833e+01
267 5.566667e+00
268 9.833333e+00
269 1.858333e+00
270 -4.000000e+00
271 5.150000e+00
272 -3.308333e+00
273 4.533333e+00
274 8.516667e+00
275 1.050000e+00
276 -8.633333e+00
277 -2.833333e+00
278 1.316667e+00
279 -2.066667e+00
280 1.474167e+01
281 -1.858333e+00
282 -3.491667e+00
283 9.983333e+00
284 1.845833e+01
285 9.525000e+00
286 -1.517500e+01
287 -1.122500e+01
288 1.053333e+01
289 8.333333e-01
290 9.008333e+00
291 -5.033333e+00
292 8.550000e+00
293 4.741667e+00
294 1.810833e+01
295 2.558333e+00
296 3.541667e+00
297 1.027500e+01
298 -1.570000e+01
299 -7.350000e+00
300 2.121667e+01
301 4.300000e+00
302 -4.408333e+00
303 -2.261667e+01
304 4.025000e+00
305 -9.225000e+00
306 1.394167e+01
307 -8.041667e+00
308 1.785000e+01
309 5.875000e+00
310 -1.510833e+01
311 1.391667e+00
312 -1.120000e+01
313 1.921667e+01
314 7.500000e-01
315 9.983333e+00
316 1.283333e+01
317 -1.520000e+01
318 1.257500e+01
319 -7.325000e+00
320 5.266667e+00
321 -1.836667e+01
322 3.433333e+00
323 6.375000e+00
324 -5.441667e+00
325 -1.522500e+01
326 -8.050000e+00
327 1.488333e+01
328 1.799167e+01
329 7.275000e+00
330 1.067500e+01
331 -7.558333e+00
332 -1.791667e+00
333 3.816667e+00
334 -1.665000e+01
335 -8.341667e+00
336 8.808333e+00
337 -2.141667e+00
338 4.616667e+00
339 4.733333e+00
340 1.092500e+01
341 4.666667e-01
342 8.458333e+00
343 -4.675000e+00
344 6.491667e+00
345 6.908333e+00
346 -8.608333e+00
347 -8.041667e+00
348 4.766667e+00
349 -8.950000e+00
350 3.816667e+00
351 3.333333e+00
352 2.150000e+00
353 3.416667e-01
354 -6.125000e+00
355 5.808333e+00
356 -1.051667e+01
357 -1.100000e+01
358 -1.245000e+01
359 1.525833e+01
360 1.458333e+00
361 1.174167e+01
362 1.095000e+01
363 -8.433333e+00
364 -1.373333e+01
365 -2.025000e+00
366 1.038333e+01
367 -9.666667e-01
368 -6.025000e+00
369 2.708333e+00
370 1.686667e+01
371 -8.808333e+00
372 -1.953333e+01
373 -4.500000e+00
374 8.808333e+00
375 -5.258333e+00
376 1.457500e+01
377 -1.255833e+01
378 6.675000e+00
379 -1.300000e+00
380 7.616667e+00
381 2.283333e+00
382 -7.675000e+00
383 -1.854167e+01
384 5.875000e+00
385 4.925000e+00
386 -5.000000e+00
387 5.166667e-01
388 -3.908333e+00
389 3.908333e+00
390 1.373333e+01
391 1.658333e+00
392 3.166667e+00
393 6.250000e-01
394 -1.415000e+01
395 1.801667e+01
396 1.379167e+01
397 -1.750000e+00
398 -7.116667e+00
399 5.708333e+00
400 -8.108333e+00
401 -9.400000e+00
402 7.208333e+00
403 -2.537500e+01
404 1.084167e+01
405 -1.476667e+01
406 1.115000e+01
407 -1.866667e+00
408 -1.435000e+01
409 4.416667e+00
410 -2.016667e+00
411 3.333333e+00
412 9.358333e+00
413 -7.383333e+00
414 2.558333e+00
415 2.255833e+01
416 9.833333e-01
417 -2.891667e+00
418 4.233333e+00
419 8.933333e+00
420 2.625000e+00
421 -1.370833e+01
422 3.225000e+00
423 4.116667e+00
424 -8.666667e+00
425 -1.191667e+00
426 -7.783333e+00
427 2.758333e+00
428 -7.783333e+00
429 -1.220000e+01
430 2.204167e+01
431 3.483333e+00
432 -1.426667e+01
433 6.558333e+00
434 4.300000e+00
435 -1.508333e+01
436 1.461667e+01
437 -4.583333e-01
438 -5.083333e-01
439 6.525000e+00
440 -1.233333e+01
441 1.420833e+01
442 -2.000000e+00
443 -1.511667e+01
444 -3.425000e+00
445 5.833333e-02
446 6.991667e+00
447 1.426667e+01
448 2.833333e+00
449 -7.200000e+00
450 1.400000e+00
451 -3.675000e+00
452 -1.496667e+01
453 4.675000e+00
454 2.024167e+01
455 -2.416667e+00
456 -5.475000e+00
457 1.597500e+01
458 -6.016667e+00
459 4.066667e+00
460 -5.116667e+00
461 6.933333e+00
462 2.891667e+00
463 6.733333e+00
464 1.741667e+00
465 -3.266667e+00
466 1.415000e+01
467 6.400000e+00
468 1.406667e+01
469 3.566667e+00
470 1.441667e+00
471 3.166667e-01
472 3.325000e+00
473 1.545833e+01
474 -8.458333e+00
475 1.517500e+01
476 -4.783333e+00
477 -4.533333e+00
478 -1.916667e+00
479 1.115833e+01
480 2.141667e+00
481 -1.043333e+01
482 2.060000e+01
483 -4.941667e+00
484 -1.790833e+01
485 1.760833e+01
486 -7.533333e+00
487 1.596667e+01
488 -6.525000e+00
489 -5.758333e+00
490 8.333333e-03
491 -1.221667e+01
492 1.142500e+01
493 8.866667e+00
494 5.350000e+00
495 -1.468333e+01
496 -3.416667e-01
497 -2.500000e-02
498 1.086667e+01
499 1.316667e+00
500 -1.394167e+01
501 -2.075000e+00
502 3.533333e+00
503 -4.641667e+00
504 -3.975000e+00
505 8.575000e+00
506 -9.841667e+00
507 -1.808333e+00
508 4.183333e+00
509 -2.083333e+00
510 2.083333e-01
511 -7.933333e+00
512 -3.075000e+00
513 -9.366667e+00
514 1.139167e+01
515 -1.166667e-01
516 -1.066667e+01
517 -1.125000e+00
518 -7.358333e+00
519 1.004167e+01
520 -8.100000e+00
521 1.591667e+00
522 6.016667e+00
523 6.416667e+00
524 6.525000e+00
525 -1.329167e+01
526 -5.475000e+00
527 1.388333e+01
528 -9.475000e+00
529 -5.125000e+00
530 9.491667e+00
531 -2.683333e+00
532 1.575833e+01
533 7.616667e+00
534 -6.141667e+00
535 -5.758333e+00
536 1.916667e+00
537 -5.841667e+00
538 -4.166667e+00
539 8.183333e+00
540 -8.375000e+00
541 3.175000e+00
542 2.425000e+00
543 1.282500e+01
544 -7.641667e+00
545 1.591667e+00
546 5.091667e+00
547 1.250833e+01
548 2.950000e+00
549 1.308333e+00
550 -1.203333e+01
551 -5.208333e+00
552 -6.675000e+00
553 -1.268333e+01
554 -1.255833e+01
555 9.383333e+00
556 -5.825000e+00
557 3.425000e+00
558 -1.367500e+01
559 -8.241667e+00
560 -7.866667e+00
561 -7.841667e+00
562 5.875000e+00
563 1.666667e+00
564 -1.241667e+00
565 8.166667e-01
566 3.975000e+00
567 1.616667e+01
568 -5.608333e+00
569 2.291667e+00
570 3.533333e+00
571 9.000000e-01
572 -1.836667e+01
573 9.625000e+00
574 -5.341667e+00
575 -9.250000e+00
576 3.933333e+00
577 -4.325000e+00
578 -5.275000e+00
579 -1.124167e+01
580 -8.808333e+00
581 1.904167e+01
582 2.250000e+01
583 -6.508333e+00
584 9.166667e+00
585 4.883333e+00
586 -2.741667e+00
587 6.433333e+00
588 -2.877500e+01
589 -4.441667e+00
590 1.517500e+01
591 -5.750000e-01
592 -2.500000e+00
593 -1.211667e+01
594 -9.716667e+00
595 3.875000e+00
596 -7.066667e+00
597 -1.069167e+01
598 -1.080833e+01
599 -1.468333e+01
600 3.683333e+00
601 6.416667e+00
602 1.025833e+01
603 -4.616667e+00
604 2.246667e+01
605 4.558333e+00
606 3.041667e+00
607 -2.416667e+00
608 -4.850000e+00
609 1.133333e+00
610 8.108333e+00
611 -1.597500e+01
612 -4.650000e+00
613 2.275000e+00
614 -4.166667e+00
615 -5.833333e-02
616 4.983333e+00
617 -4.275000e+00
618 1.030833e+01
619 -9.641667e+00
620 -2.660000e+01
621 -1.597500e+01
622 -8.758333e+00
623 1.950833e+01
624 7.841667e+00
625 1.482500e+01
626 -2.333333e-01
627 8.100000e+00
628 -7.916667e-01
629 2.475000e+00
630 1.220833e+01
631 5.583333e-01
632 -3.058333e+00
633 -3.058333e+00
634 1.027500e+01
635 5.400000e+00
636 1.600000e+00
637 -1.267500e+01
638 6.791667e+00
639 -2.583333e-01
640 -1.741667e+00
641 2.080000e+01
642 5.666667e+00
643 1.225833e+01
644 -1.854167e+01
645 -1.508333e+00
646 1.557500e+01
647 -2.358333e+00
648 4.008333e+00
649 -5.408333e+00
650 -1.142500e+01
651 1.644167e+01
652 -5.325000e+00
653 -1.037500e+01
654 -4.091667e+00
655 1.072500e+01
656 -7.166667e-01
657 7.550000e+00
658 4.791667e+00
659 7.500000e-02
660 -9.566667e+00
661 -9.383333e+00
662 9.441667e+00
663 6.850000e+00
664 2.916667e-01
665 1.916667e-01
666 -1.459167e+01
667 -1.600000e+00
668 -4.591667e+00
669 -1.236667e+01
670 8.333333e-02
671 1.380000e+01
672 1.866667e+00
673 8.016667e+00
674 1.678333e+01
675 -4.416667e+00
676 4.050000e+00
677 -5.766667e+00
678 -9.191667e+00
679 2.208333e+00
680 -1.262500e+01
681 5.175000e+00
682 4.658333e+00
683 7.500000e+00
684 9.775000e+00
685 -1.666667e+00
686 -5.683333e+00
687 8.733333e+00
688 -5.416667e+00
689 -7.416667e-01
690 3.050000e+00
691 5.316667e+00
692 3.716667e+00
693 -5.275000e+00
694 -1.065833e+01
695 2.869167e+01
696 5.391667e+00
697 -1.405833e+01
698 -1.807500e+01
699 4.558333e+00
700 -5.358333e+00
701 -8.550000e+00
702 -8.716667e+00
703 -4.733333e+00
704 -7.383333e+00
705 -8.775000e+00
706 -1.294167e+01
707 1.529167e+01
708 1.913333e+01
709 1.990000e+01
710 -1.053333e+01
711 -1.802500e+01
712 -1.312500e+01
713 -2.916667e+00
714 4.550000e+00
715 9.916667e-01
716 -1.670833e+01
717 6.675000e+00
718 3.475000e+00
719 -1.551667e+01
720 -9.816667e+00
721 5.916667e-01
722 -1.078333e+01
723 -6.500000e-01
724 -4.250000e-01
725 4.658333e+00
726 -2.450000e+00
727 7.475000e+00
728 1.100833e+01
729 -7.533333e+00
730 -4.066667e+00
731 -1.720000e+01
732 -1.158333e+00
733 -9.875000e+00
734 1.791667e+00
735 1.901667e+01
736 -8.750000e+00
737 9.875000e+00
738 5.533333e+00
739 1.168333e+01
740 -1.206667e+01
741 1.150000e+01
742 -1.511667e+01
743 1.105833e+01
744 6.458333e+00
745 -5.008333e+00
746 2.261667e+01
747 -1.098333e+01
748 -9.916667e-01
749 -2.741667e+00
750 -4.166667e+00
751 1.200000e+00
752 3.916667e-01
753 -1.110000e+01
754 -9.333333e+00
755 -1.239167e+01
756 1.189167e+01
757 6.025000e+00
758 -6.158333e+00
759 -2.058333e+00
760 -1.171667e+01
761 2.683333e+00
762 -9.841667e+00
763 1.508333e+01
764 1.175000e+00
765 7.200000e+00
766 -9.841667e+00
767 -1.242500e+01
768 3.850000e+00
769 9.625000e+00
770 7.816667e+00
771 -8.808333e+00
772 1.383333e+01
773 8.383333e+00
774 -1.591667e+00
775 1.497500e+01
776 2.500000e-02
777 1.591667e+00
778 -5.208333e+00
779 -1.581667e+01
780 -7.000000e+00
781 1.525833e+01
782 6.016667e+00
783 -2.660000e+01
784 -7.825000e+00
785 -2.558333e+00
786 -8.933333e+00
787 1.912500e+01
788 1.203333e+01
789 5.208333e+00
790 -4.050000e+00
791 -3.933333e+00
792 4.500000e+00
793 2.741667e+00
794 1.120833e+01
795 -5.258333e+00
796 2.091667e+00
797 5.825000e+00
798 2.083333e-01
799 2.150000e+00
800 6.316667e+00
801 -1.913333e+01
802 -4.816667e+00
803 -8.041667e+00
804 -1.289167e+01
805 -6.391667e+00
806 3.366667e+00
807 -5.666667e+00
808 2.250000e+01
809 7.025000e+00
810 1.258333e+00
811 5.350000e+00
812 -7.000000e+00
813 1.704167e+01
814 -1.517500e+01
815 -1.197500e+01
816 4.250000e+00
817 6.416667e+00
818 -8.333333e-01
819 -1.755000e+01
820 -1.308333e+01
821 5.625000e+00
822 -1.358333e+01
823 -2.166667e+00
824 2.633333e+00
825 5.475000e+00
826 -1.719167e+01
827 8.633333e+00
828 1.239167e+01
829 9.025000e+00
830 -2.244167e+01
831 5.616667e+00
832 2.645833e+01
833 -2.000000e-01
834 2.247500e+01
835 9.508333e+00
836 5.625000e+00
837 4.500000e+00
838 4.383333e+00
839 9.583333e+00
840 6.016667e+00
841 2.150000e+00
842 8.858333e+00
843 -2.266667e+00
844 -6.783333e+00
845 5.266667e+00
846 -6.516667e+00
847 2.261667e+01
848 7.783333e+00
849 -1.261667e+01
850 -1.124167e+01
851 -8.266667e+00
852 -7.616667e+00
853 2.224167e+01
854 -6.533333e+00
855 -2.408333e+00
856 5.825000e+00
857 1.046667e+01
858 1.500000e-01
859 -8.675000e+00
860 -4.783333e+00
861 1.400000e+01
862 -1.217500e+01
863 -5.758333e+00
864 -7.183333e+00
865 -8.216667e+00
866 -1.115000e+01
867 -1.666667e-02
868 -4.025000e+00
869 2.166667e-01
870 -8.333333e-02
871 1.441667e+00
872 7.275000e+00
873 2.566667e+00
874 1.177500e+01
875 5.200000e+00
876 6.833333e-01
877 2.883333e+00
878 -2.314167e+01
879 4.500000e+00
880 -1.050000e+00
881 9.875000e+00
882 1.878333e+01
883 3.350000e+00
884 -1.546667e+01
885 -9.358333e+00
886 5.958333e+00
887 -8.816667e+00
888 -7.783333e+00
889 -2.663333e+01
890 -9.916667e-01
891 -7.241667e+00
892 8.866667e+00
893 -2.166667e+00
894 -8.691667e+00
895 1.379167e+01
896 -1.385833e+01
897 7.275000e+00
898 3.133333e+00
899 1.927500e+01
900 1.200833e+01
901 1.858333e+00
902 1.275000e+01
903 -1.850000e+00
904 1.780833e+01
905 -4.325000e+00
906 1.019167e+01
907 1.341667e+00
908 -3.758333e+00
909 1.400000e+01
910 -5.608333e+00
911 2.305833e+01
912 -2.716667e+00
913 7.325000e+00
914 1.221667e+01
915 8.516667e+00
916 1.435000e+01
917 5.583333e+00
918 7.491667e+00
919 -7.900000e+00
920 9.016667e+00
921 1.153333e+01
922 2.750000e+00
923 1.122500e+01
924 1.060833e+01
925 -2.208333e+00
926 5.266667e+00
927 -3.116667e+00
928 -1.808333e+00
929 -2.375000e+00
930 6.458333e+00
931 8.516667e+00
932 -4.000000e+00
933 -1.397500e+01
934 -3.125000e+00
935 1.566667e+00
936 -1.704167e+01
937 6.241667e+00
938 -1.476667e+01
939 2.441667e+00
940 -4.616667e+00
941 -1.160000e+01
942 -6.433333e+00
943 -1.080833e+01
944 1.416667e-01
945 1.646667e+01
946 -2.983333e+00
947 -5.208333e+00
948 -4.983333e+00
949 1.802500e+01
950 -7.966667e+00
951 -2.244167e+01
952 8.675000e+00
953 -1.139167e+01
954 -3.383333e+00
955 4.925000e+00
956 -2.650000e+00
957 -1.465000e+01
958 7.816667e+00
959 2.100000e+01
960 6.850000e+00
961 -1.567500e+01
962 -7.233333e+00
963 -1.277500e+01
964 -5.683333e+00
965 1.060000e+01
966 2.283333e+00
967 4.791667e+00
968 -8.750000e+00
969 -7.666667e-01
970 -2.250000e+01
971 -5.325000e+00
972 -2.516667e+00
973 -1.024167e+01
974 -1.045000e+01
975 -1.051667e+01
976 -7.408333e+00
977 1.359167e+01
978 -1.180833e+01
979 2.094167e+01
980 -7.041667e+00
981 -2.166667e-01
982 -7.508333e+00
983 -1.333333e-01
984 6.925000e+00
985 -1.415000e+01
986 -1.830833e+01
987 1.065833e+01
988 7.500000e+00
989 5.425000e+00
990 1.397500e+01
991 -4.816667e+00
992 -4.650000e+00
993 7.666667e+00
994 -2.225000e+00
995 -3.108333e+00
996 -4.441667e+00
997 6.558333e+00
998 7.116667e+00
999 1.089167e+01
1000 -8.966667e+00
1001 -5.750000e+00
1002 1.120000e+01
1003 7.333333e+00
1004 1.364167e+01
1005 -1.864167e+01
1006 -8.866667e+00
1007 -1.359167e+01
1008 -8.333333e-01
1009 -2.825000e+00
1010 7.933333e+00
1011 1.921667e+01
1012 -9.858333e+00
1013 -5.008333e+00
1014 5.416667e+00
1015 4.091667e+00
1016 -3.166667e-01
1017 -2.543333e+01
1018 1.380000e+01
1019 2.645833e+01
1020 1.500000e+01
1021 -3.475000e+00
1022 2.309167e+01
1023 -7.675000e+00
1024 4.737241e-15
1025 -7.950000e+00
1026 2.833333e-01
1027 -6.391667e+00
1028 -9.225000e+00
1029 6.158333e+00
1030 -7.416667e-01
1031 1.124167e+01
1032 -3.050000e+00
1033 -6.241667e+00
1034 5.766667e+00
1035 -9.750000e-01
1036 5.558333e+00
1037 -1.555000e+01
1038 -8.816667e+00
1039 1.216667e+00
1040 -9.433333e+00
1041 4.850000e+00
1042 -4.800000e+00
1043 -1.503333e+01
1044 -1.107500e+01
1045 -1.185833e+01
1046 8.408333e+00
1047 4.883333e+00
1048 5.550000e+00
1049 -5.000000e+00
1050 4.858333e+00
1051 1.197500e+01
1052 4.383333e+00
1053 -5.750000e+00
1054 -5.416667e+00
1055 -8.550000e+00
1056 1.067500e+01
1057 -4.358333e+00
1058 -4.983333e+00
1059 -7.783333e+00
1060 -1.257500e+01
1061 -1.337500e+01
1062 6.958333e+00
1063 5.266667e+00
1064 3.241667e+00
1065 8.691667e+00
1066 -1.216667e+00
1067 1.561667e+01
1068 -9.225000e+00
1069 -1.503333e+01
1070 -2.232500e+01
1071 2.216667e+00
1072 1.458333e+00
1073 -1.177500e+01
1074 -6.175000e+00
1075 -4.583333e+00
1076 -4.650000e+00
1077 -8.408333e+00
1078 5.333333e+00
1079 -3.316667e+00
1080 -5.425000e+00
1081 -8.141667e+00
1082 -4.641667e+00
1083 -3.166667e-01
1084 -6.566667e+00
1085 -2.434167e+01
1086 1.500000e-01
1087 7.441667e+00
1088 -3.325000e+00
1089 -5.166667e-01
1090 -1.750000e+00
1091 -7.700000e+00
1092 5.583333e+00
1093 -1.980833e+01
1094 1.359167e+01
1095 9.583333e+00
1096 -3.016667e+00
1097 1.200833e+01
1098 3.416667e-01
1099 -1.245000e+01
1100 4.250000e+00
1101 -1.910000e+01
1102 -6.525000e+00
1103 -4.866667e+00
1104 -1.341667e+00
1105 2.156667e+01
1106 1.529167e+01
1107 2.441667e+00
1108 -2.083333e-01
1109 -2.708333e+00
1110 -7.858333e+00
1111 1.808333e+01
1112 -1.221667e+01
1113 6.400000e+00
1114 -1.320000e+01
1115 -1.259167e+01
1116 -5.933333e+00
1117 -1.980833e+01
1118 -1.658333e+00
1119 1.675000e+00
1120 4.100000e+00
1121 1.516667e+01
1122 -1.435000e+01
1123 6.666667e-02
1124 4.391667e+00
1125 -9.566667e+00
1126 2.133333e+01
1127 8.733333e+00
1128 -1.533333e+00
1129 3.175000e+00
1130 -2.660000e+01
1131 -1.177500e+01
1132 1.030833e+01
1133 -1.037500e+01
1134 6.475000e+00
1135 8.966667e+00
1136 -8.866667e+00
1137 8.075000e+00
1138 2.558333e+00
1139 1.312500e+01
1140 1.074167e+01
1141 7.200000e+00
1142 6.475000e+00
1143 2.316667e+00
1144 -1.030833e+01
1145 -1.163333e+01
1146 2.267500e+01
1147 -1.044167e+01
1148 2.323333e+01
1149 1.288333e+01
1150 -8.808333e+00
1151 9.441667e+00
1152 -2.158333e+00
1153 -5.691667e+00
1154 7.491667e+00
1155 1.030833e+01
1156 -1.750000e+00
1157 7.275000e+00
1158 1.180000e+01
1159 -2.250000e+01
1160 -5.091667e+00
1161 9.241667e+00
1162 -7.550000e+00
1163 8.333333e-01
1164 -1.666667e+00
1165 1.950833e+01
1166 -1.650000e+00
1167 -4.391667e+00
1168 2.900000e+00
1169 -7.133333e+00
1170 8.375000e+00
1171 -1.750000e+00
1172 1.054167e+01
1173 2.032500e+01
1174 5.616667e+00
1175 1.389167e+01
1176 3.100000e+00
1177 -1.203333e+01
1178 -1.233333e+00
1179 -3.316667e+00
1180 -1.201667e+01
1181 -1.856667e+01
1182 2.833333e-01
1183 -1.130000e+01
1184 -5.608333e+00
1185 -1.505833e+01
1186 2.616667e+00
1187 8.808333e+00
1188 -4.250000e+00
1189 4.275000e+00
1190 -5.875000e+00
1191 2.583333e-01
1192 -9.166667e+00
1193 1.579167e+01
1194 -4.737241e-15
1195 -1.078333e+01
1196 8.258333e+00
1197 -1.666667e-01
1198 -5.483333e+00
1199 1.781667e+01
1200 3.225000e+00
1201 -4.333333e-01
1202 6.791667e+00
1203 1.704167e+01
1204 2.032500e+01
1205 2.658333e+00
1206 -7.300000e+00
1207 -1.833333e+00
1208 -1.052500e+01
1209 1.377500e+01
1210 -3.216667e+00
1211 1.916667e+00
1212 9.541667e+00
1213 -5.825000e+00
1214 -7.900000e+00
1215 8.283333e+00
1216 -1.215000e+01
1217 -5.200000e+00
1218 1.725000e+00
1219 -1.153333e+01
1220 -2.350000e+00
1221 5.841667e+00
1222 -6.350000e+00
1223 -5.625000e+00
1224 7.583333e+00
1225 1.458333e+00
1226 1.373333e+01
1227 -3.966667e+00
1228 -7.416667e-01
1229 1.517500e+01
1230 -1.174167e+01
1231 -8.466667e+00
1232 3.841667e+00
1233 -1.333333e+00
1234 -1.350000e+01
1235 -1.048333e+01
1236 -4.000000e-01
1237 -1.483333e+00
1238 -3.866667e+00
1239 1.323333e+01
1240 -1.511667e+01
1241 5.666667e+00
1242 -9.166667e+00
1243 -1.305833e+01
1244 -1.171667e+01
1245 3.608333e+00
1246 3.283333e+00
1247 -8.691667e+00
1248 -6.841667e+00
1249 -6.016667e+00
1250 -9.575000e+00
1251 5.275000e+00
1252 7.275000e+00
1253 -5.458333e+00
1254 -3.041667e+00
1255 2.210000e+01
1256 -5.383333e+00
1257 -8.941667e+00
1258 6.616667e+00
1259 -9.083333e-01
1260 -7.750000e-01
1261 8.608333e+00
1262 -3.333333e+00
1263 -3.866667e+00
1264 1.546667e+01
1265 -7.325000e+00
1266 6.908333e+00
1267 -5.475000e+00
1268 5.125000e+00
1269 5.208333e+00
1270 1.323333e+01
1271 -9.100000e+00
1272 1.359167e+01
1273 4.725000e+00
1274 1.037500e+01
1275 -7.408333e+00
1276 1.883333e+00
1277 2.425833e+01
1278 1.353333e+01
1279 8.816667e+00
1280 4.816667e+00
1281 -3.425000e+00
1282 8.808333e+00
1283 6.666667e-02
1284 1.236667e+01
1285 -1.095000e+01
1286 5.516667e+00
1287 -8.433333e+00
1288 3.116667e+00
1289 6.333333e-01
1290 -9.158333e+00
1291 -5.325000e+00
1292 -1.488333e+01
1293 -1.575833e+01
1294 -1.514167e+01
1295 2.467500e+01
1296 5.500000e+00
1297 -9.166667e+00
1298 -3.741667e+00
1299 -5.841667e+00
1300 1.755000e+01
1301 -1.018333e+01
1302 1.750000e-01
1303 1.160000e+01
1304 1.140000e+01
1305 1.420833e+01
1306 9.916667e-01
1307 5.150000e+00
1308 6.316667e+00
1309 -2.275000e+00
1310 -2.566667e+00
1311 7.500000e-02
1312 1.488333e+01
1313 -2.158333e+00
1314 1.458333e+00
1315 -1.287500e+01
1316 9.525000e+00
1317 1.075000e+01
1318 3.275000e+00
1319 1.045833e+01
1320 1.684167e+01
1321 4.166667e+00
1322 1.248333e+01
1323 1.366667e+00
1324 1.052500e+01
1325 3.925000e+00
1326 -8.100000e+00
1327 3.133333e+00
1328 2.741667e+00
1329 3.225000e+00
1330 -1.343333e+01
1331 8.750000e+00
1332 -6.016667e+00
1333 -1.741667e+00
1334 4.641667e+00
1335 9.416667e-01
1336 -3.391667e+00
1337 5.825000e+00
1338 -1.531667e+01
1339 -2.500000e-02
1340 3.591667e+00
1341 9.025000e+00
1342 7.533333e+00
1343 -2.316667e+00
1344 -1.033333e+01
1345 -8.816667e+00
1346 -1.191667e+00
1347 -7.533333e+00
1348 3.241667e+00
1349 1.658333e+00
1350 -1.901667e+01
1351 2.303333e+01
1352 1.098333e+01
1353 4.241667e+00
1354 -4.025000e+00
1355 8.550000e+00
1356 2.033333e+00
1357 -1.341667e+00
1358 1.426667e+01
1359 1.344167e+01
1360 8.050000e+00
1361 3.750000e+00
1362 -1.051667e+01
1363 1.947500e+01
1364 1.296667e+01
1365 1.379167e+01
1366 3.333333e+00
1367 1.543333e+01
1368 -1.250833e+01
1369 2.083333e-01
1370 7.241667e+00
1371 -1.458333e+00
1372 -5.550000e+00
1373 8.691667e+00
1374 2.591667e+00
1375 -8.783333e+00
1376 1.206667e+01
1377 1.104167e+01
1378 1.760833e+01
1379 -9.425000e+00
1380 1.250000e+00
1381 7.566667e+00
1382 1.203333e+01
1383 5.683333e+00
1384 -8.875000e+00
1385 4.233333e+00
1386 1.267500e+01
1387 -8.666667e+00
1388 -7.900000e+00
1389 7.383333e+00
1390 -1.083333e-01
1391 -7.675000e+00
1392 9.925000e+00
1393 1.160000e+01
1394 -5.750000e+00
1395 8.250000e-01
1396 1.034167e+01
1397 1.581667e+01
1398 -8.725000e+00
1399 3.566667e+00
1400 -3.141667e+00
1401 7.158333e+00
1402 -1.115000e+01
1403 2.091667e+00
1404 3.275000e+00
1405 5.175000e+00
1406 -2.683333e+00
1407 1.168333e+01
1408 4.358333e+00
1409 -9.083333e-01
1410 1.522500e+01
1411 9.416667e+00
1412 4.500000e+00
1413 -1.373333e+01
1414 -1.197500e+01
1415 -6.991667e+00
1416 1.358333e+01
1417 -2.420000e+01
1418 2.877500e+01
1419 -9.000000e-01
1420 -1.415000e+01
1421 3.333333e-02
1422 -1.107500e+01
1423 5.583333e+00
1424 6.933333e+00
1425 -8.950000e+00
1426 1.828333e+01
1427 -4.275000e+00
1428 8.316667e+00
1429 1.250833e+01
1430 -2.091667e+00
1431 -5.475000e+00
1432 -4.800000e+00
1433 -2.975000e+00
1434 1.953333e+01
1435 -1.133333e+00
1436 1.013333e+01
1437 -2.833333e+00
1438 7.933333e+00
1439 1.543333e+01
1440 -1.790833e+01
1441 -4.183333e+00
1442 5.833333e-02
1443 -6.441667e+00
1444 -3.875000e+00
1445 -1.858333e+00
1446 -8.633333e+00
1447 -1.359167e+01
1448 -7.408333e+00
1449 1.186667e+01
1450 1.591667e+00
1451 -1.183333e+00
1452 -5.000000e-02
1453 -1.400000e+01
1454 -8.916667e-01
1455 -2.750000e+00
1456 -1.162500e+01
1457 -6.875000e+00
1458 -1.344167e+01
1459 -5.500000e+00
1460 5.150000e+00
1461 1.166667e-01
1462 -2.032500e+01
1463 9.625000e+00
1464 -6.283333e+00
1465 1.690000e+01
1466 1.775000e+00
1467 -1.611667e+01
1468 1.725833e+01
1469 -2.176667e+01
1470 1.120000e+01
1471 -1.075000e+00
1472 2.166667e-01
1473 -1.050000e+01
1474 -5.416667e+00
1475 -1.045000e+01
1476 1.918333e+01
1477 -1.426667e+01
1478 -1.425000e+00
1479 -5.008333e+00
1480 7.025000e+00
1481 -1.411667e+01
1482 -1.800000e+00
1483 8.500000e-01
1484 8.041667e+00
1485 2.317500e+01
1486 -9.916667e-01
1487 1.068333e+01
1488 1.617500e+01
1489 -1.517500e+01
1490 -8.408333e+00
1491 -4.441667e+00
1492 1.733333e+00
1493 -1.250833e+01
1494 -6.425000e+00
1495 1.360000e+01
1496 6.925000e+00
1497 1.125000e+00
1498 -4.066667e+00
1499 -1.367500e+01
1500 1.275833e+01
1501 -5.458333e+00
1502 1.956667e+01
1503 1.043333e+01
1504 1.808333e+00
1505 -1.791667e+00
1506 -5.150000e+00
1507 1.168333e+01
1508 -1.275833e+01
1509 1.525833e+01
1510 1.560833e+01
1511 -1.221667e+01
1512 3.333333e-02
1513 7.391667e+00
1514 2.100000e+00
1515 -1.733333e+00
1516 1.277500e+01
1517 -1.320000e+01
1518 2.537500e+01
1519 -2.858333e+00
1520 1.468333e+01
1521 -8.300000e+00
1522 5.683333e+00
1523 -1.025000e+01
1524 -1.367500e+01
1525 -2.516667e+00
1526 -9.375000e+00
1527 -1.300000e+00
1528 -1.457500e+01
1529 -2.004167e+01
1530 -9.583333e-01
1531 -5.841667e+00
1532 3.425000e+00
1533 -2.309167e+01
1534 -6.908333e+00
1535 1.573333e+01
1536 7.208333e+00
1537 7.041667e+00
1538 -5.583333e-01
1539 1.158333e+00
1540 -1.383333e+01
1541 -7.208333e+00
1542 3.908333e+00
1543 -1.265000e+01
1544 -1.749167e+01
1545 8.875000e+00
1546 -8.550000e+00
1547 1.808333e+00
1548 9.016667e+00
1549 -1.302500e+01
1550 -1.016667e+00
1551 8.433333e+00
1552 -1.174167e+01
1553 -1.458333e+00
1554 -7.383333e+00
1555 8.441667e+00
1556 1.133333e+00
1557 1.123333e+01
1558 -2.044167e+01
1559 2.891667e+00
1560 7.558333e+00
1561 9.508333e+00
1562 2.500000e-02
1563 -8.633333e+00
1564 1.055833e+01
1565 1.941667e+00
1566 5.125000e+00
1567 -1.901667e+01
1568 6.641667e+00
1569 -1.629167e+01
1570 -2.030000e+01
1571 -1.197500e+01
1572 -1.148333e+01
1573 1.280000e+01
1574 -8.333333e-03
1575 -4.741667e+00
1576 -1.075000e+01
1577 -4.066667e+00
1578 6.441667e+00
1579 -1.801667e+01
1580 -1.440833e+01
1581 2.127500e+01
1582 1.267500e+01
1583 -7.833333e-01
1584 -1.308333e+00
1585 -1.030833e+01
1586 3.066667e+00
1587 7.075000e+00
1588 -2.650000e+00
1589 1.858333e+00
1590 -1.496667e+01
1591 -3.125000e+00
1592 1.458333e+00
1593 3.391667e+00
1594 7.533333e+00
1595 -1.503333e+01
1596 3.191667e+00
1597 8.333333e-02
1598 -4.500000e+00
1599 6.100000e+00
1600 -1.180000e+01
1601 8.333333e-01
1602 -5.425000e+00
1603 -2.156667e+01
1604 -1.388333e+01
1605 -2.467500e+01
1606 -3.483333e+00
1607 8.250000e-01
1608 1.337500e+01
1609 8.200000e+00
1610 -1.850833e+01
1611 1.216667e+00
1612 1.593333e+01
1613 1.734167e+01
1614 8.166667e-01
1615 2.650000e+00
1616 -3.941667e+00
1617 1.766667e+01
1618 -6.666667e-02
1619 7.208333e+00
1620 1.550000e+00
1621 -5.358333e+00
1622 -1.907500e+01
1623 -3.941667e+00
1624 5.316667e+00
1625 3.050000e+00
1626 1.131667e+01
1627 9.433333e+00
1628 3.425000e+00
1629 1.317500e+01
1630 -1.749167e+01
1631 -4.591667e+00
1632 -4.675000e+00
1633 1.274167e+01
1634 6.083333e+00
1635 -6.533333e+00
1636 -1.510833e+01
1637 2.019167e+01
1638 7.900000e+00
1639 8.458333e+00
1640 -1.291667e+01
1641 -1.277500e+01
1642 7.816667e+00
1643 1.800000e+00
1644 -1.250000e+00
1645 5.133333e+00
1646 5.033333e+00
1647 9.833333e+00
1648 -9.833333e-01
1649 2.425000e+00
1650 6.675000e+00
1651 1.599167e+01
1652 6.991667e+00
1653 -5.766667e+00
1654 6.616667e+00
1655 3.225000e+00
1656 -1.915833e+01
1657 -8.958333e+00
1658 -1.316667e+00
1659 7.900000e+00
1660 -3.125000e+00
1661 2.950000e+00
1662 -4.216667e+00
1663 1.034167e+01
1664 -5.875000e+00
1665 -5.766667e+00
1666 2.267500e+01
1667 1.463333e+01
1668 -4.041667e+00
1669 -2.833333e+00
1670 -1.822500e+01
1671 2.566667e+00
1672 1.131667e+01
1673 -9.416667e-01
1674 5.258333e+00
1675 -1.921667e+01
1676 -6.850000e+00
1677 7.750000e+00
1678 7.408333e+00
1679 -2.074167e+01
1680 -1.065833e+01
1681 -1.078333e+01
1682 4.616667e+00
1683 7.275000e+00
1684 6.500000e-01
1685 1.801667e+01
1686 3.850000e+00
1687 4.000000e-01
1688 -7.608333e+00
1689 -1.016667e+00
1690 2.025000e+01
1691 -7.466667e+00
1692 1.084167e+01
1693 1.250833e+01
1694 -3.741667e+00
1695 -9.358333e+00
1696 -6.233333e+00
1697 -1.209167e+01
1698 -8.008333e+00
1699 -1.323333e+01
1700 4.241667e+00
1701 8.133333e+00
1702 1.150000e+01
1703 -4.308333e+00
1704 1.068333e+01
1705 1.176667e+01
1706 9.241667e+00
1707 -3.158333e+00
1708 3.958333e+00
1709 2.566667e+00
1710 1.403333e+01
1711 -6.783333e+00
1712 -1.250000e+00
1713 8.400000e+00
1714 -2.583333e-01
1715 -1.420833e+01
1716 1.462500e+01
1717 5.550000e+00
1718 3.550000e+00
1719 1.420833e+01
1720 -1.858333e+00
1721 -1.474167e+01
1722 7.783333e+00
1723 -6.733333e+00
1724 -9.716667e+00
1725 -1.290833e+01
1726 -6.241667e+00
1727 1.191667e+01
1728 -7.675000e+00
1729 7.533333e+00
1730 -5.266667e+00
1731 -8.608333e+00
1732 -7.158333e+00
1733 1.345833e+01
1734 7.158333e+00
1735 -7.325000e+00
1736 8.250000e+00
1737 1.719167e+01
1738 -1.816667e+01
1739 -1.531667e+01
1740 1.074167e+01
1741 1.337500e+01
1742 1.790833e+01
1743 -1.600000e+00
1744 6.125000e+00
1745 -1.242500e+01
1746 3.541667e+00
1747 -4.050000e+00
1748 1.636667e+01
1749 5.625000e+00
1750 -5.691667e+00
1751 5.583333e+00
1752 -1.904167e+01
1753 1.234167e+01
1754 1.191667e+00
1755 2.162500e+01
1756 1.443333e+01
1757 8.100000e+00
1758 -8.758333e+00
1759 8.933333e+00
1760 7.125000e+00
1761 1.241667e+00
1762 5.041667e+00
1763 1.200833e+01
1764 8.916667e-01
1765 -1.275000e+01
1766 -7.025000e+00
1767 2.252500e+01
1768 9.225000e+00
1769 -1.420833e+01
1770 -5.300000e+00
1771 1.176667e+01
1772 1.100833e+01
1773 -4.141667e+00
1774 6.416667e-01
1775 -3.600000e+00
1776 9.716667e+00
1777 -4.166667e-01
1778 1.584167e+01
1779 -1.590833e+01
1780 1.287500e+01
1781 4.175000e+00
1782 -9.800000e+00
1783 -1.455833e+01
1784 1.426667e+01
1785 1.941667e+00
1786 1.075000e+01
1787 -1.750000e+00
1788 7.533333e+00
1789 -1.217500e+01
1790 -5.508333e+00
1791 3.541667e+00
1792 -9.083333e-01
1793 -2.235833e+01
1794 2.083333e+00
1795 1.051667e+01
1796 -3.900000e+00
1797 5.166667e-01
1798 -1.625000e+00
1799 -5.150000e+00
1800 -1.854167e+01
1801 3.866667e+00
1802 -1.379167e+01
1803 1.866667e+00
1804 1.540833e+01
1805 3.041667e+00
1806 3.566667e+00
1807 2.558333e+00
1808 4.983333e+00
1809 6.641667e+00
1810 1.365000e+01
1811 1.587500e+01
1812 2.204167e+01
1813 5.416667e+00
1814 1.019167e+01
1815 1.345833e+01
1816 8.333333e-01
1817 8.816667e+00
1818 4.041667e+00
1819 6.425000e+00
1820 1.064167e+01
1821 1.666667e+00
1822 -2.983333e+00
1823 5.266667e+00
1824 1.533333e+00
1825 -1.583333e+00
1826 8.575000e+00
1827 4.791667e+00
1828 5.083333e-01
1829 3.133333e+00
1830 9.250000e+00
1831 -1.075000e+00
1832 7.050000e+00
1833 -9.750000e-01
1834 3.033333e+00
1835 7.933333e+00
1836 5.750000e-01
1837 1.511667e+01
1838 4.183333e+00
1839 1.359167e+01
1840 1.075000e+01
1841 -8.041667e+00
1842 1.047500e+01
1843 2.420000e+01
1844 -1.063333e+01
1845 1.567500e+01
1846 1.050000e+00
1847 1.134167e+01
1848 -7.241667e+00
1849 1.690000e+01
1850 7.933333e+00
1851 -1.048333e+01
1852 2.825000e+00
1853 1.541667e+00
1854 1.049167e+01
1855 -1.660833e+01
1856 -1.142500e+01
1857 -2.350000e+00
1858 1.380000e+01
1859 6.908333e+00
1860 7.100000e+00
1861 1.482500e+01
1862 3.416667e-01
1863 -4.500000e+00
1864 5.391667e+00
1865 4.708333e+00
1866 -9.841667e+00
1867 4.008333e+00
1868 2.094167e+01
1869 -7.958333e+00
1870 -1.516667e+00
1871 -1.785000e+01
1872 -8.833333e-01
1873 -1.470833e+01
1874 -9.583333e-01
1875 -8.258333e+00
1876 -1.440833e+01
1877 -1.394167e+01
1878 6.666667e-02
1879 -3.758333e+00
1880 -4.616667e+00
1881 1.942500e+01
1882 3.033333e+00
1883 3.283333e+00
1884 7.866667e+00
1885 -1.921667e+01
1886 -3.816667e+00
1887 -1.522500e+01
1888 4.558333e+00
1889 6.583333e+00
1890 -8.216667e+00
1891 1.585000e+01
1892 1.265000e+01
1893 1.287500e+01
1894 2.883333e+01
1895 1.775000e+01
1896 -1.582500e+01
1897 -7.991667e+00
1898 -1.013333e+01
1899 -1.128333e+01
1900 9.833333e-01
1901 -6.850000e+00
1902 2.038333e+01
1903 -3.366667e+00
1904 7.816667e+00
1905 -7.408333e+00
1906 4.908333e+00
1907 2.883333e+01
1908 1.415000e+01
1909 3.366667e+00
1910 -1.990000e+01
1911 -2.255833e+01
1912 -5.341667e+00
1913 -6.708333e+00
1914 1.308333e+01
1915 -7.783333e+00
1916 -5.266667e+00
1917 2.250000e+01
1918 -2.127500e+01
1919 -2.233333e+00
1920 1.274167e+01
1921 -1.180000e+01
1922 1.660833e+01
1923 -7.425000e+00
1924 1.183333e+00
1925 -1.191667e+01
1926 -2.640000e+01
1927 -2.408333e+00
1928 -7.833333e-01
1929 1.733333e+00
1930 -5.458333e+00
1931 7.666667e+00
1932 -2.166667e+00
1933 1.397500e+01
1934 1.535000e+01
1935 5.150000e+00
1936 -1.365000e+01
1937 -4.758333e+00
1938 2.416667e+00
1939 -8.775000e+00
1940 3.883333e+00
1941 -8.950000e+00
1942 1.180833e+01
1943 4.175000e+00
1944 7.833333e-01
1945 3.741667e+00
1946 -6.333333e-01
1947 1.123333e+01
1948 2.741667e+00
1949 -7.750000e-01
1950 6.983333e+00
1951 1.089167e+01
1952 -3.591667e+00
1953 2.645833e+01
1954 -2.320000e+01
1955 -3.425000e+00
1956 -9.083333e-01
1957 1.983333e+00
1958 8.008333e+00
1959 -6.908333e+00
1960 -1.608333e+00
1961 5.133333e+00
1962 3.158333e+00
1963 9.425000e+00
1964 -7.950000e+00
1965 -1.550000e+00
1966 -5.983333e+00
1967 1.086667e+01
1968 -3.016667e+00
1969 -6.791667e+00
1970 8.500000e-01
1971 5.908333e+00
1972 -5.166667e-01
1973 -1.731667e+01
1974 7.408333e+00
1975 2.425000e+00
1976 -6.908333e+00
1977 1.383333e+00
1978 -7.325000e+00
1979 2.333333e-01
1980 -9.083333e+00
1981 -2.900000e+00
1982 3.091667e+00
1983 -1.468333e+01
1984 -1.400000e+01
1985 2.425833e+01
1986 -6.791667e+00
1987 -1.209167e+01
1988 -5.475000e+00
1989 -2.267500e+01
1990 5.900000e+00
1991 6.616667e+00
1992 -2.267500e+01
1993 -5.350000e+00
1994 -1.039167e+01
1995 -1.207500e+01
1996 1.050000e+00
1997 -8.866667e+00
1998 2.019167e+01
1999 -2.166667e-01
2000 -6.850000e+00
2001 -1.142500e+01
2002 3.733333e+00
2003 1.921667e+01
2004 1.745833e+01
2005 1.160000e+01
2006 3.000000e+00
2007 5.608333e+00
2008 7.025000e+00
2009 1.916667e+00
2010 -1.045833e+01
2011 9.483333e+00
2012 -1.664167e+01
2013 3.091667e+00
2014 -1.998333e+01
2015 1.200000e+00
2016 -8.750000e+00
2017 -4.908333e+00
2018 3.308333e+00
2019 -2.434167e+01
2020 1.055000e+01
2021 1.063333e+01
2022 -1.860000e+01
2023 -1.241667e+00
2024 -1.391667e+01
2025 -3.825000e+00
2026 -1.468333e+01
2027 -4.141667e+00
2028 -2.258333e+01
2029 -2.583333e-01
2030 -3.450000e+00
2031 -5.625000e+00
2032 6.366667e+00
2033 -3.683333e+00
2034 1.269167e+01
2035 -6.875000e+00
2036 -1.098333e+01
2037 3.475000e+00
2038 -3.308333e+00
2039 -9.683333e+00
2040 9.475000e+00
2041 2.441667e+00
2042 -6.508333e+00
2043 -6.375000e+00
2044 1.488333e+01
2045 -1.027500e+01
2046 -6.250000e-01
2047 -1.727500e+01
2048 7.725000e+00
2049 6.841667e+00
2050 -5.000000e-02
2051 -7.900000e+00
2052 -7.500000e-01
2053 7.100000e+00
2054 5.608333e+00
2055 -3.216667e+00
2056 -2.208333e+00
2057 -8.458333e+00
2058 5.533333e+00
2059 -2.266667e+00
2060 -5.475000e+00
2061 5.091667e+00
2062 -2.883333e+00
2063 1.121667e+01
2064 3.750000e-01
2065 1.276667e+01
2066 1.075000e+00
2067 1.248333e+01
2068 2.208333e+00
2069 -9.300000e+00
2070 -5.008333e+00
2071 -1.171667e+01
2072 -3.991667e+00
2073 -1.250833e+01
2074 -8.725000e+00
2075 6.241667e+00
2076 -1.191667e+00
2077 9.583333e+00
2078 6.733333e+00
2079 3.675000e+00
2080 -1.921667e+01
2081 6.666667e+00
2082 -7.466667e+00
2083 -1.892500e+01
2084 2.075000e+00
2085 -4.850000e+00
2086 -2.208333e+00
2087 9.958333e+00
2088 1.664167e+01
2089 -1.400000e+00
2090 -1.450833e+01
2091 1.058333e+00
2092 1.216667e+00
2093 -2.300000e+01
2094 8.516667e+00
2095 -3.333333e-01
2096 3.325000e+00
2097 1.162500e+01
2098 -1.933333e+01
2099 1.046667e+01
2100 -1.913333e+01
2101 -3.750000e-01
2102 1.725000e+00
2103 -1.005833e+01
2104 -1.468333e+01
2105 -1.191667e+01
2106 1.206667e+01
2107 -2.475000e+00
2108 1.107500e+01
2109 -1.177500e+01
2110 -1.318333e+01
2111 1.508333e+00
2112 1.613333e+01
2113 -8.400000e+00
2114 -3.550000e+00
2115 1.465000e+01
2116 -1.870000e+01
2117 1.294167e+01
2118 3.450000e+00
2119 -1.215000e+01
2120 -7.725000e+00
2121 -5.683333e+00
2122 9.433333e+00
2123 1.741667e+00
2124 2.000833e+01
2125 8.658333e+00
2126 -2.100000e+00
2127 -1.675000e+00
2128 1.124167e+01
2129 3.241667e+00
2130 1.394167e+01
2131 7.841667e+00
2132 1.505833e+01
2133 1.288333e+01
2134 -9.766667e+00
2135 1.176667e+01
2136 7.183333e+00
2137 1.379167e+01
2138 -5.083333e-01
2139 2.916667e+00
2140 6.225000e+00
2141 -1.796667e+01
2142 3.516667e+00
2143 -2.133333e+01
2144 -1.191667e+01
2145 -1.005833e+01
2146 2.000833e+01
2147 -1.454167e+01
2148 8.108333e+00
2149 2.210000e+01
2150 1.233333e+01
2151 1.296667e+01
2152 -7.041667e+00
2153 2.583333e-01
2154 -5.816667e+00
2155 -5.150000e+00
2156 -2.303333e+01
2157 -1.049167e+01
2158 5.825000e+00
2159 -2.000000e+00
2160 2.966667e+00
2161 6.083333e-01
2162 1.058333e+00
2163 -1.531667e+01
2164 -3.316667e+00
2165 2.475000e+00
2166 1.913333e+01
2167 -5.150000e+00
2168 -8.050000e+00
2169 -5.633333e+00
2170 -9.050000e+00
2171 -6.158333e+00
2172 -1.516667e+01
2173 1.465000e+01
2174 -1.220833e+01
2175 3.908333e+00
2176 1.801667e+01
2177 1.799167e+01
2178 -7.808333e+00
2179 -2.210000e+01
2180 -1.766667e+01
2181 1.039167e+01
2182 -7.016667e+00
2183 -7.216667e+00
2184 2.261667e+01
2185 -1.904167e+01
2186 -8.633333e+00
2187 5.333333e+00
2188 -1.858333e+00
2189 -1.078333e+01
2190 6.333333e-01
2191 1.235833e+01
2192 -2.004167e+01
2193 -1.537500e+01
2194 -1.130000e+01
2195 2.660000e+01
2196 -2.133333e+01
2197 9.783333e+00
2198 -6.183333e+00
2199 2.200000e+00
2200 7.275000e+00
2201 -1.641667e+00
2202 -5.525000e+00
2203 1.393333e+01
2204 6.500000e-01
2205 -8.100000e+00
2206 -7.750000e-01
2207 -1.133333e+01
2208 -1.065833e+01
2209 4.783333e+00
2210 1.311667e+01
2211 -5.750000e+00
2212 1.259167e+01
2213 -5.325000e+00
2214 1.075000e+00
2215 1.045000e+01
2216 8.333333e-03
2217 5.875000e+00
2218 -7.500000e+00
2219 1.221667e+01
2220 -2.080000e+01
2221 -5.416667e-01
2222 7.841667e+00
2223 8.925000e+00
2224 -9.050000e+00
2225 -5.150000e+00
2226 -1.027500e+01
2227 1.090000e+01
2228 3.125000e+00
2229 4.975000e+00
2230 -4.558333e+00
2231 1.763333e+01
2232 9.341667e+00
2233 -5.150000e+00
2234 1.389167e+01
2235 9.975000e+00
2236 -2.080000e+01
2237 1.781667e+01
2238 -3.783333e+00
2239 9.783333e+00
2240 4.308333e+00
2241 -9.558333e+00
2242 -1.594167e+01
2243 1.787500e+01
2244 -2.416667e+00
2245 1.393333e+01
2246 7.641667e+00
2247 -8.333333e-02
2248 -1.373333e+01
2249 -9.008333e+00
2250 -6.616667e+00
2251 -5.608333e+00
2252 1.239167e+01
2253 2.663333e+01
2254 1.045000e+01
2255 -8.466667e+00
2256 1.054167e+01
2257 3.125000e+00
2258 7.050000e+00
2259 -1.415000e+01
2260 4.591667e+00
2261 3.225000e+00
2262 3.050000e+00
2263 1.233333e+00
2264 9.858333e+00
2265 -1.866667e+00
2266 2.775000e+00
2267 4.166667e-01
2268 3.116667e+00
2269 -1.092500e+01
2270 -4.675000e+00
2271 6.616667e+00
2272 -5.458333e+00
2273 1.836667e+01
2274 6.916667e-01
2275 -4.358333e+00
2276 1.183333e+01
2277 -3.116667e+00
2278 3.375000e+00
2279 5.766667e+00
2280 6.566667e+00
2281 -3.175000e+00
2282 -8.133333e+00
2283 -7.383333e+00
2284 -1.807500e+01
2285 6.175000e+00
2286 3.050000e+00
2287 -5.825000e+00
2288 -1.296667e+01
2289 -1.211667e+01
2290 1.683333e+01
2291 -2.038333e+01
2292 1.248333e+01
2293 6.075000e+00
2294 -1.750000e-01
2295 1.288333e+01
2296 1.067500e+01
2297 5.400000e+00
2298 1.775000e+01
2299 2.500000e+00
2300 5.083333e-01
2301 5.841667e+00
2302 1.850000e+00
2303 4.141667e+00
2304 1.283333e+01
2305 1.337500e+01
2306 2.300000e+00
2307 1.600000e+00
2308 4.358333e+00
2309 -2.208333e+00
2310 -8.791667e+00
2311 -1.013333e+01
2312 6.541667e+00
2313 6.500000e-01
2314 -2.166667e+00
2315 -7.833333e-01
2316 7.050000e+00
2317 -1.895833e+01
2318 -1.174167e+01
2319 1.080833e+01
2320 -1.830833e+01
2321 1.233333e+01
2322 4.500000e+00
2323 1.320000e+01
2324 -6.158333e+00
2325 -6.425000e+00
2326 3.283333e+00
2327 -1.176667e+01
2328 -5.350000e+00
2329 8.550000e+00
2330 1.629167e+01
2331 1.027500e+01
2332 -4.816667e+00
2333 -4.941667e+00
2334 -1.170833e+01
2335 5.875000e+00
2336 1.800000e+00
2337 -3.366667e+00
2338 2.645833e+01
2339 3.925000e+00
2340 1.394167e+01
2341 5.383333e+00
2342 6.908333e+00
2343 -1.261667e+01
2344 -1.440833e+01
2345 1.387500e+01
2346 4.250000e-01
2347 -3.750000e-01
2348 1.510833e+01
2349 -1.030833e+01
2350 -3.333333e-02
2351 5.458333e+00
2352 -1.666667e+00
2353 7.725000e+00
2354 9.433333e+00
2355 -8.616667e+00
2356 -3.541667e+00
2357 -3.333333e+00
2358 7.216667e+00
2359 -8.316667e+00
2360 8.333333e-01
2361 -1.405833e+01
2362 -2.300000e+00
2363 -6.916667e-01
2364 7.350000e+00
2365 -3.966667e+00
2366 4.858333e+00
2367 4.041667e+00
2368 -1.045833e+01
2369 -1.364167e+01
2370 5.683333e+00
2371 -3.083333e+00
2372 -1.316667e+00
2373 -5.833333e-02
2374 8.841667e+00
2375 -1.359167e+01
2376 -2.058333e+00
2377 2.566667e+00
2378 -2.127500e+01
2379 1.830833e+01
2380 4.800000e+00
2381 -4.708333e+00
2382 2.291667e+00
2383 -7.583333e+00
2384 1.391667e+01
2385 9.816667e+00
2386 -1.206667e+01
2387 -3.075000e+00
2388 -2.450000e+00
2389 -1.590833e+01
2390 2.204167e+01
2391 6.075000e+00
2392 5.341667e+00
2393 -2.267500e+01
2394 6.433333e+00
2395 -6.366667e+00
2396 -4.175000e+00
2397 1.061667e+01
2398 -1.391667e+01
2399 -6.291667e+00
2400 7.341667e+00
2401 3.450000e+00
2402 5.625000e+00
2403 -1.291667e+01
2404 1.750000e-01
2405 1.275000e+01
2406 2.083333e-01
2407 4.900000e+00
2408 -1.092500e+01
2409 8.550000e+00
2410 -7.900000e+00
2411 4.500000e+00
2412 -1.033333e+01
2413 2.350000e+00
2414 1.051667e+01
2415 -5.625000e+00
2416 -1.616667e+01
2417 3.416667e-01
2418 -4.616667e+00
2419 2.075000e+00
2420 -7.500000e+00
2421 -1.373333e+01
2422 -1.065833e+01
2423 1.617500e+01
2424 3.333333e+00
2425 1.177500e+01
2426 -7.525000e+00
2427 -1.020000e+01
2428 -1.984167e+01
2429 -1.114167e+01
2430 -7.933333e+00
2431 -1.125833e+01
2432 4.766667e+00
2433 6.783333e+00
2434 1.984167e+01
2435 1.787500e+01
2436 1.916667e+00
2437 -7.100000e+00
2438 -2.645833e+01
2439 4.675000e+00
2440 -6.991667e+00
2441 -8.166667e-01
2442 7.500000e-02
2443 1.403333e+01
2444 -3.258333e+00
2445 3.666667e-01
2446 -4.183333e+00
2447 -9.433333e+00
2448 1.704167e+01
2449 1.566667e+00
2450 -1.186667e+01
2451 -1.750000e-01
2452 -3.175000e+00
2453 1.810833e+01
2454 -1.625000e+00
2455 5.066667e+00
2456 -1.924167e+01
2457 1.733333e+00
2458 1.200000e+01
2459 -2.583333e-01
2460 -1.525833e+01
2461 -1.191667e+01
2462 8.841667e+00
2463 3.425000e+00
2464 3.066667e+00
2465 -1.250833e+01
2466 4.241667e+00
2467 1.117500e+01
2468 -3.308333e+00
2469 -2.841667e+00
2470 -3.241667e+00
2471 3.891667e+00
2472 -8.416667e-01
2473 -4.325000e+00
2474 7.300000e+00
2475 5.633333e+00
2476 1.101667e+01
2477 8.875000e+00
2478 6.833333e-01
2479 -1.921667e+01
2480 2.235833e+01
2481 -3.333333e-02
2482 8.800000e+00
2483 -1.541667e+00
2484 1.025000e+01
2485 1.183333e+01
2486 -6.350000e+00
2487 -3.716667e+00
2488 -1.641667e+00
2489 -4.300000e+00
2490 1.098333e+01
2491 -1.810833e+01
2492 2.341667e+00
2493 8.416667e-01
2494 -1.217500e+01
2495 -1.678333e+01
2496 1.156667e+01
2497 1.221667e+01
2498 1.670833e+01
2499 -1.092500e+01
2500 -2.625000e+00
2501 1.027500e+01
2502 6.375000e+00
2503 -2.225000e+00
2504 -1.325833e+01
2505 -6.566667e+00
2506 -5.983333e+00
2507 -1.998333e+01
2508 1.704167e+01
2509 1.116667e+00
2510 -7.283333e+00
2511 1.892500e+01
2512 -1.275000e+01
2513 3.875000e+00
2514 3.900000e+00
2515 1.168333e+01
2516 2.833333e+00
2517 -7.125000e+00
2518 -4.500000e+00
2519 5.150000e+00
2520 5.091667e+00
2521 -1.426667e+01
2522 -1.066667e+01
2523 -5.341667e+00
2524 -5.483333e+00
2525 -1.975000e+00
2526 1.690000e+01
2527 8.983333e+00
2528 -4.550000e+00
2529 2.408333e+00
2530 -2.458333e+00
2531 1.440833e+01
2532 -7.441667e+00
2533 -1.613333e+01
2534 -3.275000e+00
2535 -9.225000e+00
2536 -5.900000e+00
2537 -7.383333e+00
2538 -3.158333e+00
2539 1.858333e+00
2540 -3.266667e+00
2541 1.953333e+01
2542 6.175000e+00
2543 4.675000e+00
2544 -2.305833e+01
2545 7.200000e+00
2546 3.200000e+00
2547 -2.543333e+01
2548 -1.128333e+01
2549 -3.925000e+00
2550 8.516667e+00
2551 -1.320000e+01
2552 1.719167e+01
2553 4.916667e+00
2554 -1.546667e+01
2555 2.416667e+00
2556 1.308333e+01
2557 1.329167e+01
2558 -1.483333e+00
2559 1.317500e+01
2560 -2.558333e+00
2561 -1.416667e-01
2562 1.465000e+01
2563 3.350000e+00
2564 -2.500000e-02
2565 6.558333e+00
2566 6.666667e-01
2567 1.365000e+01
2568 1.189167e+01
2569 1.061667e+01
2570 -3.391667e+00
2571 7.275000e+00
2572 -2.575000e+00
2573 1.104167e+01
2574 -2.116667e+00
2575 7.200000e+00
2576 -5.516667e+00
2577 -2.416667e+00
2578 7.666667e-01
2579 -9.166667e+00
2580 8.841667e+00
2581 -5.558333e+00
2582 1.600000e+00
2583 5.875000e+00
2584 3.333333e-01
2585 -3.025000e+00
2586 -7.641667e+00
2587 2.708333e+00
2588 1.020000e+01
2589 1.388333e+01
2590 -4.358333e+00
2591 1.183333e+00
2592 -1.517500e+01
2593 -1.600000e+00
2594 -3.241667e+00
2595 -1.790833e+01
2596 7.158333e+00
2597 -2.983333e+00
2598 6.383333e+00
2599 -6.041667e+00
2600 -5.750000e-01
2601 -1.124167e+01
2602 6.558333e+00
2603 -1.051667e+01
2604 -2.633333e+00
2605 -9.775000e+00
2606 9.083333e+00
2607 -5.200000e+00
2608 1.267500e+01
2609 -2.041667e+00
2610 1.331667e+01
2611 1.646667e+01
2612 2.657500e+01
2613 -4.725000e+00
2614 2.441667e+00
2615 1.154167e+01
2616 7.841667e+00
2617 -1.234167e+01
2618 9.775000e+00
2619 -5.875000e+00
2620 7.491667e+00
2621 8.000000e-01
2622 -1.027500e+01
2623 2.450000e+00
2624 5.033333e+00
2625 1.217500e+01
2626 8.941667e+00
2627 -6.791667e+00
2628 4.500000e+00
2629 2.323333e+01
2630 1.365833e+01
2631 2.244167e+01
2632 1.927500e+01
2633 -1.258333e+00
2634 4.650000e+00
2635 -2.156667e+01
2636 2.650000e+00
2637 -1.808333e+00
2638 -3.483333e+00
2639 -9.875000e+00
2640 6.933333e+00
2641 -4.675000e+00
2642 4.900000e+00
2643 2.833333e-01
2644 -1.365000e+01
2645 1.035833e+01
2646 -1.816667e+01
2647 5.850000e+00
2648 1.066667e+01
2649 -9.775000e+00
2650 8.016667e+00
2651 -8.800000e+00
2652 1.298333e+01
2653 -9.475000e+00
2654 -3.600000e+00
2655 8.608333e+00
2656 -1.658333e+01
2657 -4.733333e+00
2658 8.025000e+00
2659 2.300000e+01
2660 -3.925000e+00
2661 2.166667e-01
2662 -3.091667e+00
2663 -9.083333e+00
2664 2.091667e+00
2665 4.708333e+00
2666 3.316667e+00
2667 -2.461667e+01
2668 1.050000e+00
2669 1.394167e+01
2670 -1.142500e+01
2671 -4.041667e+00
2672 4.308333e+00
2673 6.383333e+00
2674 -4.383333e+00
2675 3.425000e+00
2676 -8.333333e-01
2677 1.359167e+01
2678 -1.235833e+01
2679 -1.514167e+01
2680 1.850833e+01
2681 -9.583333e+00
2682 6.883333e+00
2683 5.550000e+00
2684 -9.275000e+00
2685 1.323333e+01
2686 3.925000e+00
2687 -1.690000e+01
2688 7.441667e+00
2689 1.268333e+01
2690 -6.025000e+00
2691 -6.850000e+00
2692 7.566667e+00
2693 -1.449167e+01
2694 -1.590833e+01
2695 -1.394167e+01
2696 -4.366667e+00
2697 1.503333e+01
2698 -8.516667e+00
2699 -4.733333e+00
2700 -6.300000e+00
2701 -5.566667e+00
2702 9.625000e+00
2703 -4.858333e+00
2704 -5.958333e+00
2705 -7.841667e+00
2706 -8.108333e+00
2707 2.741667e+00
2708 1.168333e+01
2709 9.900000e+00
2710 -7.525000e+00
2711 -1.840000e+01
2712 -3.941667e+00
2713 1.191667e+00
2714 -1.854167e+01
2715 1.380000e+01
2716 -1.516667e+01
2717 -5.358333e+00
2718 2.250000e-01
2719 -4.900000e+00
2720 5.900000e+00
2721 -1.375000e+00
2722 1.441667e+01
2723 3.866667e+00
2724 -6.500000e-01
2725 -6.850000e+00
2726 3.125000e+00
2727 -9.400000e+00
2728 -1.808333e+01
2729 -8.816667e+00
2730 -2.461667e+01
2731 5.133333e+00
2732 4.833333e-01
2733 3.041667e+00
2734 1.253333e+01
2735 -3.675000e+00
2736 1.672500e+01
2737 -1.550000e+00
2738 1.766667e+01
2739 1.593333e+01
2740 -1.441667e+00
2741 -1.195000e+01
2742 -6.375000e+00
2743 1.174167e+01
2744 -7.241667e+00
2745 -1.588333e+01
2746 -9.416667e-01
2747 -3.391667e+00
2748 -8.458333e+00
2749 6.825000e+00
2750 1.800000e+00
2751 1.454167e+01
2752 -7.166667e-01
2753 6.175000e+00
2754 -2.000000e+00
2755 -2.775000e+00
2756 1.517500e+01
2757 4.858333e+00
2758 -4.100000e+00
2759 7.750000e-01
2760 -3.450000e+00
2761 1.158333e+00
2762 -5.333333e-01
2763 5.475000e+00
2764 1.807500e+01
2765 6.108333e+00
2766 3.925000e+00
2767 -6.508333e+00
2768 -4.766667e+00
2769 -1.270000e+01
2770 -6.916667e-01
2771 7.750000e+00
2772 -9.008333e+00
2773 -6.675000e+00
2774 -3.250000e+00
2775 1.041667e+00
2776 -1.608333e+00
2777 -7.500000e+00
2778 6.175000e+00
2779 -1.866667e+00
2780 -7.058333e+00
2781 -2.241667e+01
2782 1.625000e+00
2783 1.350000e+01
2784 1.907500e+01
2785 -1.666667e+00
2786 7.041667e+00
2787 -1.282500e+01
2788 -6.650000e+00
2789 -5.300000e+00
2790 4.366667e+00
2791 -7.100000e+00
2792 -1.443333e+01
2793 -1.049167e+01
2794 2.066667e+00
2795 -5.958333e+00
2796 -1.435000e+01
2797 4.000000e-01
2798 -6.233333e+00
2799 -1.755000e+01
2800 -9.833333e-01
2801 -2.083333e-01
2802 8.933333e+00
2803 1.500000e+01
2804 8.758333e+00
2805 -1.001667e+01
2806 -7.425000e+00
2807 1.034167e+01
2808 1.075000e+00
2809 -4.100000e+00
2810 -1.400000e+00
2811 -8.000000e-01
2812 3.966667e+00
2813 -8.458333e+00
2814 8.800000e+00
2815 -8.866667e+00
2816 3.433333e+00
2817 -2.158333e+00
2818 2.224167e+01
2819 1.799167e+01
2820 8.550000e+00
2821 1.092500e+01
2822 -7.150000e+00
2823 -1.483333e+00
2824 6.666667e+00
2825 7.350000e+00
2826 6.458333e+00
2827 1.046667e+01
2828 -4.175000e+00
2829 2.135833e+01
2830 -1.275000e+01
2831 8.600000e+00
2832 7.866667e+00
2833 -8.041667e+00
2834 -1.189167e+01
2835 -1.233333e+01
2836 1.148333e+01
2837 -1.058333e+01
2838 -1.010000e+01
2839 -6.433333e+00
2840 -2.320000e+01
2841 -5.550000e+00
2842 -9.241667e+00
2843 1.054167e+01
2844 1.755000e+01
2845 -1.379167e+01
2846 9.433333e+00
2847 3.600000e+00
2848 1.583333e+00
2849 -3.125000e+00
2850 2.683333e+00
2851 -2.775000e+00
2852 -7.408333e+00
2853 -4.583333e-01
2854 9.508333e+00
2855 2.246667e+01
2856 1.377500e+01
2857 6.308333e+00
2858 4.358333e+00
2859 -1.666667e+00
2860 -5.758333e+00
2861 -1.035833e+01
2862 -1.520000e+01
2863 -1.936667e+01
2864 1.769167e+01
2865 -2.833333e-01
2866 1.324167e+01
2867 3.383333e+00
2868 -1.394167e+01
2869 -7.808333e+00
2870 1.933333e+01
2871 6.533333e+00
2872 1.385000e+01
2873 1.090000e+01
2874 -6.250000e-01
2875 -6.816667e+00
2876 7.391667e+00
2877 -2.266667e+00
2878 -2.583333e-01
2879 -4.791667e+00
2880 -4.741667e+00
2881 -1.234167e+01
2882 8.908333e+00
2883 3.908333e+00
2884 6.316667e+00
2885 -2.250000e-01
2886 1.737500e+01
2887 2.640000e+01
2888 -5.900000e+00
2889 9.916667e+00
2890 -6.375000e+00
2891 2.640000e+01
2892 5.683333e+00
2893 2.529167e+01
2894 2.024167e+01
2895 9.958333e+00
2896 1.800000e+00
2897 -2.127500e+01
2898 1.075000e+00
2899 -2.416667e+00
2900 2.916667e-01
2901 5.350000e+00
2902 1.263333e+01
2903 6.883333e+00
2904 -3.400000e+00
2905 -1.535000e+01
2906 -1.276667e+01
2907 5.125000e+00
2908 -1.019167e+01
2909 -1.191667e+01
2910 1.550000e+00
2911 2.025000e+00
2912 2.583333e-01
2913 -1.380000e+01
2914 -1.845833e+01
2915 9.000000e-01
2916 -7.325000e+00
2917 -1.041667e+00
2918 4.158333e+00
2919 1.270000e+01
2920 1.268333e+01
2921 1.215000e+01
2922 -2.458333e+00
2923 4.791667e+00
2924 1.200833e+01
2925 -2.019167e+01
2926 7.550000e+00
2927 1.271667e+01
2928 -5.125000e+00
2929 6.316667e+00
2930 -6.491667e+00
2931 -2.258333e+01
2932 -4.916667e+00
2933 1.263333e+01
2934 1.220833e+01
2935 3.700000e+00
2936 9.158333e+00
2937 1.698333e+01
2938 7.233333e+00
2939 4.500000e+00
2940 6.533333e+00
2941 4.950000e+00
2942 2.320000e+01
2943 -6.158333e+00
2944 -3.125000e+00
2945 -1.215000e+01
2946 1.488333e+01
2947 -3.025000e+00
2948 1.459167e+01
2949 1.525833e+01
2950 -1.034167e+01
2951 -1.998333e+01
2952 -8.266667e+00
2953 1.458333e+00
2954 8.758333e+00
2955 -6.316667e+00
2956 -2.166667e-01
2957 1.283333e+01
2958 -2.529167e+01
2959 -1.561667e+01
2960 -5.666667e+00
2961 1.049167e+01
2962 1.373333e+01
2963 -1.296667e+01
2964 -9.008333e+00
2965 -2.232500e+01
2966 4.841667e+00
2967 2.625000e+00
2968 1.391667e+01
2969 -3.508333e+00
2970 4.191667e+00
2971 1.540000e+01
2972 5.266667e+00
2973 -6.383333e+00
2974 9.375000e+00
2975 -6.433333e+00
2976 -2.100000e+01
2977 -7.491667e+00
2978 -1.916667e+00
2979 -8.216667e+00
2980 5.841667e+00
2981 6.241667e+00
2982 9.925000e+00
2983 -1.397500e+01
2984 5.175000e+00
2985 6.991667e+00
2986 -9.025000e+00
2987 -5.916667e-01
2988 -9.700000e+00
2989 -3.908333e+00
2990 -7.416667e-01
2991 -5.441667e+00
2992 1.461667e+01
2993 1.663333e+01
2994 -3.583333e-01
2995 -4.850000e+00
2996 8.241667e+00
2997 -2.204167e+01
2998 -1.060000e+01
2999 5.408333e+00
3000 4.333333e+00
3001 9.925000e+00
3002 7.583333e-01
3003 -1.593333e+01
3004 -5.208333e+00
3005 1.597500e+01
3006 -8.458333e+00
3007 1.380000e+01
3008 -5.808333e+00
3009 -1.248333e+01
3010 -5.983333e+00
3011 -1.215833e+01
3012 -1.541667e+00
3013 3.175000e+00
3014 2.291667e+00
3015 3.100000e+00
3016 1.250833e+01
3017 -2.233333e+00
3018 1.144167e+01
3019 1.261667e+01
3020 8.666667e+00
3021 1.075000e+01
3022 1.020000e+01
3023 1.060833e+01
3024 1.449167e+01
3025 -9.925000e+00
3026 -1.910000e+01
3027 -1.133333e+01
3028 1.750000e-01
3029 8.008333e+00
3030 1.666667e+00
3031 -1.051667e+01
3032 4.383333e+00
3033 1.379167e+01
3034 3.750000e+00
3035 -1.270000e+01
3036 -5.416667e-01
3037 -8.250000e+00
3038 6.783333e+00
3039 1.603333e+01
3040 3.333333e-02
3041 1.488333e+01
3042 2.467500e+01
3043 1.191667e+00
3044 7.525000e+00
3045 1.171667e+01
3046 -2.033333e+00
3047 -9.841667e+00
3048 -2.080000e+01
3049 -1.684167e+01
3050 1.468333e+01
3051 -5.083333e-01
3052 -8.400000e+00
3053 1.049167e+01
3054 -4.041667e+00
3055 -1.810833e+01
3056 8.333333e-03
3057 -1.531667e+01
3058 -5.150000e+00
3059 5.616667e+00
3060 4.183333e+00
3061 8.500000e-01
3062 -1.170833e+01
3063 9.366667e+00
3064 -7.725000e+00
3065 -6.108333e+00
3066 -4.758333e+00
3067 -2.125000e+00
3068 1.115000e+01
3069 6.475000e+00
3070 -3.850000e+00
3071 -9.633333e+00
3072 -7.783333e+00
3073 4.591667e+00
3074 -9.800000e+00
3075 1.025000e+01
3076 4.708333e+00
3077 1.933333e+01
3078 -5.291667e+00
3079 -5.825000e+00
3080 -9.083333e-01
3081 1.488333e+01
3082 -2.916667e+00
3083 4.733333e+00
3084 2.408333e+00
3085 -7.000000e-01
3086 -3.741667e+00
3087 -1.265000e+01
3088 -9.641667e+00
3089 -1.282500e+01
3090 -1.740000e+01
3091 3.433333e+00
3092 -1.420833e+01
3093 -2.863333e+01
3094 -8.316667e+00
3095 1.291667e+01
3096 1.781667e+01
3097 8.316667e+00
3098 5.091667e+00
3099 -1.450000e+00
3100 -1.148333e+01
3101 1.116667e+00
3102 7.500000e+00
3103 1.833333e+00
3104 1.308333e+01
3105 5.125000e+00
3106 6.583333e+00
3107 6.233333e+00
3108 5.458333e+00
3109 -5.266667e+00
3110 -1.810833e+01
3111 3.325000e+00
3112 -5.983333e+00
3113 1.191667e+00
3114 6.733333e+00
3115 2.420000e+01
3116 -1.365000e+01
3117 4.916667e+00
3118 2.508333e+00
3119 4.108333e+00
3120 -8.383333e+00
3121 -1.528333e+01
3122 -1.389167e+01
3123 -8.408333e+00
3124 -1.110000e+01
3125 6.158333e+00
3126 -2.375000e+00
3127 -3.783333e+00
3128 1.377500e+01
3129 -8.075000e+00
3130 4.441667e+00
3131 1.064167e+01
3132 -8.816667e+00
3133 -1.197500e+01
3134 5.358333e+00
3135 9.775000e+00
3136 1.567500e+01
3137 1.365833e+01
3138 -9.400000e+00
3139 9.558333e+00
3140 -5.683333e+00
3141 -1.261667e+01
3142 6.291667e+00
3143 4.175000e+00
3144 1.856667e+01
3145 -7.808333e+00
3146 -2.250000e-01
3147 3.800000e+00
3148 -9.716667e+00
3149 -9.166667e+00
3150 6.491667e+00
3151 -1.725000e+00
3152 1.516667e+01
3153 -5.616667e+00
3154 1.566667e+00
3155 2.133333e+01
3156 3.700000e+00
3157 -2.640000e+01
3158 -1.379167e+01
3159 -2.450000e+00
3160 3.433333e+00
3161 -4.858333e+00
3162 1.541667e+00
3163 3.333333e+00
3164 -2.645833e+01
3165 6.916667e-01
3166 -1.183333e+00
3167 2.775000e+00
3168 1.463333e+01
3169 7.883333e+00
3170 -3.166667e-01
3171 -2.450000e+00
3172 -1.725000e+00
3173 -4.508333e+00
3174 -9.858333e+00
3175 5.416667e-01
3176 -1.045000e+01
3177 -1.018333e+01
3178 -1.234167e+01
3179 -6.941667e+00
3180 1.201667e+01
3181 -1.344167e+01
3182 -7.841667e+00
3183 1.195000e+01
3184 1.116667e+00
3185 5.150000e+00
3186 -1.308333e+01
3187 1.254167e+01
3188 7.391667e+00
3189 2.026667e+01
3190 -6.108333e+00
3191 -1.801667e+01
3192 6.791667e+00
3193 -7.833333e-01
3194 2.900000e+00
3195 -7.166667e-01
3196 2.156667e+01
3197 -1.655000e+01
3198 -7.441667e+00
3199 6.583333e+00
3200 -1.128333e+01
3201 8.216667e+00
3202 2.775000e+00
3203 1.496667e+01
3204 -4.650000e+00
3205 -1.791667e+00
3206 1.613333e+01
3207 -5.208333e+00
3208 -8.041667e+00
3209 4.583333e-01
3210 1.605000e+01
3211 -5.691667e+00
3212 -1.316667e+00
3213 -3.533333e+00
3214 2.455833e+01
3215 7.425000e+00
3216 -2.233333e+00
3217 -1.528333e+01
3218 5.900000e+00
3219 -7.416667e-01
3220 2.891667e+00
3221 -2.030000e+01
3222 -1.051667e+01
3223 -1.583333e-01
3224 8.058333e+00
3225 7.750000e-01
3226 -2.010833e+01
3227 -4.558333e+00
3228 -3.991667e+00
3229 -7.333333e+00
3230 -6.650000e+00
3231 -7.116667e+00
3232 2.130000e+01
3233 -8.800000e+00
3234 1.906667e+01
3235 -2.863333e+01
3236 1.051667e+01
3237 -8.108333e+00
3238 4.333333e-01
3239 -2.491667e+00
3240 -3.716667e+00
3241 4.008333e+00
3242 -5.000000e-02
3243 8.791667e+00
3244 5.150000e+00
3245 -1.258333e+00
3246 2.891667e+00
3247 6.241667e+00
3248 -5.258333e+00
3249 -7.166667e-01
3250 1.294167e+01
3251 -6.933333e+00
3252 -8.916667e-01
3253 8.608333e+00
3254 7.166667e-01
3255 2.025000e+00
3256 -3.900000e+00
3257 -2.147500e+01
3258 1.403333e+01
3259 -6.791667e+00
3260 -2.200000e+00
3261 -2.975000e+00
3262 3.316667e+00
3263 -1.095833e+01
3264 4.708333e+00
3265 -9.483333e+00
3266 -5.266667e+00
3267 2.408333e+00
3268 -1.591667e+00
3269 3.116667e+00
3270 8.383333e+00
3271 1.468333e+01
3272 2.080000e+01
3273 -1.936667e+01
3274 -2.643333e+01
3275 -5.000000e-02
3276 1.074167e+01
3277 1.298333e+01
3278 1.157500e+01
3279 6.708333e+00
3280 1.573333e+01
3281 2.127500e+01
3282 6.366667e+00
3283 1.049167e+01
3284 -9.050000e+00
3285 -8.016667e+00
3286 2.264167e+01
3287 1.174167e+01
3288 -1.331667e+01
3289 1.380000e+01
3290 1.227500e+01
3291 -1.109167e+01
3292 4.908333e+00
3293 -8.858333e+00
3294 -1.078333e+01
3295 7.500000e-01
3296 4.650000e+00
3297 7.266667e+00
3298 -4.075000e+00
3299 1.850833e+01
3300 1.585000e+01
3301 -5.000000e-01
3302 2.100000e+01
3303 -2.640000e+01
3304 5.550000e+00
3305 -3.175000e+00
3306 -1.870000e+01
3307 3.816667e+00
3308 -1.391667e+01
3309 -1.166667e-01
3310 -3.675000e+00
3311 -1.287500e+01
3312 -1.290833e+01
3313 -1.177500e+01
3314 -2.258333e+01
3315 4.308333e+00
3316 8.258333e+00
3317 -8.758333e+00
3318 3.166667e+00
3319 -7.783333e+00
3320 -6.316667e+00
3321 1.032500e+01
3322 -1.910000e+01
3323 1.388333e+01
3324 -5.608333e+00
3325 -8.858333e+00
3326 -1.160000e+01
3327 -1.737500e+01
3328 -8.733333e+00
3329 2.016667e+00
3330 -2.625000e+00
3331 -2.645833e+01
3332 1.508333e+01
3333 -1.047500e+01
3334 -1.502500e+01
3335 1.013333e+01
3336 9.333333e+00
3337 2.058333e+00
3338 -1.100833e+01
3339 -2.323333e+01
3340 5.475000e+00
3341 -1.698333e+01
3342 3.183333e+00
3343 -2.283333e+00
3344 -4.508333e+00
3345 1.924167e+01
3346 -9.166667e-01
3347 -4.858333e+00
3348 9.525000e+00
3349 -1.144167e+01
3350 1.185833e+01
3351 1.075000e+00
3352 4.408333e+00
3353 -8.658333e+00
3354 -5.391667e+00
3355 1.870000e+01
3356 4.616667e+00
3357 -1.441667e+01
3358 3.491667e+00
3359 3.141667e+00
3360 -1.733333e+00
3361 1.775000e+01
3362 -5.766667e+00
3363 -1.684167e+01
3364 -9.700000e+00
3365 6.966667e+00
3366 2.026667e+01
3367 4.558333e+00
3368 -2.475000e+00
3369 1.162500e+01
3370 -1.947500e+01
3371 -2.038333e+01
3372 4.408333e+00
3373 -1.317500e+01
3374 -1.057500e+01
3375 -5.958333e+00
3376 8.466667e+00
3377 7.141667e+00
3378 1.136667e+01
3379 -1.460000e+01
3380 -4.333333e-01
3381 5.466667e+00
3382 -2.975000e+00
3383 1.395000e+01
3384 -3.133333e+00
3385 -3.991667e+00
3386 6.850000e+00
3387 -3.333333e+00
3388 -1.240000e+01
3389 -8.491667e+00
3390 -3.391667e+00
3391 -7.183333e+00
3392 -1.842500e+01
3393 -1.269167e+01
3394 -2.543333e+01
3395 -1.216667e+00
3396 -2.916667e+00
3397 1.267500e+01
3398 1.257500e+01
3399 1.483333e+00
3400 -1.080833e+01
3401 -1.215833e+01
3402 -7.883333e+00
3403 7.166667e-01
3404 -1.529167e+01
3405 9.775000e+00
3406 7.000000e+00
3407 5.375000e+00
3408 -4.650000e+00
3409 -2.975000e+00
3410 1.692500e+01
3411 -1.200833e+01
3412 -1.416667e-01
3413 -1.456667e+01
3414 -5.150000e+00
3415 3.383333e+00
3416 6.233333e+00
3417 -8.158333e+00
3418 4.783333e+00
3419 8.375000e+00
3420 2.166667e-01
3421 1.866667e+00
3422 -6.308333e+00
3423 9.583333e-01
3424 8.125000e+00
3425 -5.325000e+00
3426 3.125000e+00
3427 -1.053333e+01
3428 -6.641667e+00
3429 -2.074167e+01
3430 -1.010000e+01
3431 7.350000e+00
3432 1.203333e+01
3433 3.933333e+00
3434 -2.975000e+00
3435 7.616667e+00
3436 -1.860000e+01
3437 -4.841667e+00
3438 1.617500e+01
3439 -3.250000e+00
3440 8.675000e+00
3441 -2.537500e+01
3442 1.341667e+00
3443 -8.316667e+00
3444 9.900000e+00
3445 -2.026667e+01
3446 8.250000e-01
3447 -6.641667e+00
3448 -6.766667e+00
3449 -1.884167e+01
3450 3.141667e+00
3451 -1.191667e+00
3452 -2.975000e+00
3453 1.426667e+01
3454 1.596667e+01
3455 9.633333e+00
3456 -9.416667e+00
3457 -6.833333e-01
3458 7.325000e+00
3459 4.083333e+00
3460 -4.816667e+00
3461 -1.180000e+01
3462 7.416667e-01
3463 -1.039167e+01
3464 -1.058333e+01
3465 3.483333e+00
3466 7.833333e-01
3467 1.333333e+00
3468 -7.491667e+00
3469 -2.825000e+00
3470 -1.895833e+01
3471 5.233333e+00
3472 2.225000e+00
3473 1.420833e+01
3474 -3.591667e+00
3475 -5.166667e-01
3476 -9.833333e+00
3477 -2.183333e+00
3478 1.543333e+01
3479 -8.266667e+00
3480 9.491667e+00
3481 -1.665000e+01
3482 -1.415000e+01
3483 1.092500e+01
3484 -1.166667e-01
3485 -2.481667e+01
3486 -1.305833e+01
3487 -8.933333e+00
3488 1.136667e+01
3489 -1.593333e+01
3490 7.091667e+00
3491 -1.242500e+01
3492 9.050000e+00
3493 4.675000e+00
3494 6.533333e+00
3495 -3.791667e+00
3496 6.991667e+00
3497 -3.733333e+00
3498 1.927500e+01
3499 1.426667e+01
3500 -1.836667e+01
3501 1.567500e+01
3502 -1.686667e+01
3503 5.066667e+00
3504 1.275833e+01
3505 1.174167e+01
3506 -6.375000e+00
3507 7.583333e-01
3508 -9.916667e+00
3509 1.750000e-01
3510 2.246667e+01
3511 -8.375000e+00
3512 -2.133333e+01
3513 -3.333333e-02
3514 8.241667e+00
3515 -1.808333e+00
3516 -3.666667e-01
3517 8.950000e+00
3518 -9.025000e+00
3519 3.716667e+00
3520 8.691667e+00
3521 4.250000e-01
3522 -2.115833e+01
3523 1.180000e+01
3524 -2.008333e+00
3525 1.796667e+01
3526 7.166667e-01
3527 -1.052500e+01
3528 9.416667e-01
3529 1.383333e+00
3530 2.025000e+01
3531 5.550000e+00
3532 -5.550000e+00
3533 2.121667e+01
3534 -6.783333e+00
3535 -7.066667e+00
3536 6.791667e+00
3537 -1.910000e+01
3538 1.110000e+01
3539 -9.433333e+00
3540 -4.816667e+00
3541 -1.510833e+01
3542 -1.318333e+01
3543 1.268333e+01
3544 -2.966667e+00
3545 3.941667e+00
3546 -6.833333e-01
3547 -6.575000e+00
3548 -1.460000e+01
3549 1.045833e+01
3550 1.227500e+01
3551 -5.150000e+00
3552 -3.808333e+00
3553 4.833333e-01
3554 -9.050000e+00
3555 -5.691667e+00
3556 -1.910000e+01
3557 -4.900000e+00
3558 -1.441667e+00
3559 3.991667e+00
3560 -9.558333e+00
3561 6.175000e+00
3562 6.583333e+00
3563 -8.258333e+00
3564 4.500000e-01
3565 -7.100000e+00
3566 8.966667e+00
3567 -1.599167e+01
3568 -2.566667e+00
3569 -5.033333e+00
3570 -1.125833e+01
3571 1.597500e+01
3572 6.541667e+00
3573 -2.529167e+01
3574 -5.091667e+00
3575 -6.791667e+00
3576 -1.066667e+01
3577 7.166667e-01
3578 -7.300000e+00
3579 -1.615000e+01
3580 -2.000000e-01
3581 -1.440000e+01
3582 -7.016667e+00
3583 -1.065833e+01
3584 -1.666667e+00
3585 3.850000e+00
3586 9.916667e+00
3587 7.916667e-01
3588 1.379167e+01
3589 -1.906667e+01
3590 -1.482500e+01
3591 1.725000e+00
3592 4.591667e+00
3593 -1.385833e+01
3594 5.816667e+00
3595 5.200000e+00
3596 1.373333e+01
3597 1.166667e-01
3598 -2.833333e-01
3599 7.816667e+00
3600 1.800000e+00
3601 -2.025000e+00
3602 -5.825000e+00
3603 -8.000000e+00
3604 -1.557500e+01
3605 -1.840000e+01
3606 6.441667e+00
3607 -9.416667e-01
3608 4.091667e+00
3609 6.875000e+00
3610 1.708333e+00
3611 -2.877500e+01
3612 -7.125000e+00
3613 1.065833e+01
3614 1.247500e+01
3615 2.358333e+00
3616 -6.383333e+00
3617 -2.000833e+01
3618 8.400000e+00
3619 -1.195000e+01
3620 1.550000e+00
3621 2.708333e+00
3622 -2.025000e+00
3623 -1.289167e+01
3624 -2.575000e+00
3625 1.041667e+01
3626 -1.496667e+01
3627 6.916667e-01
3628 3.666667e-01
3629 -5.008333e+00
3630 7.900000e+00
3631 3.625000e+00
3632 -1.576667e+01
3633 -2.130000e+01
3634 -1.135833e+01
3635 -5.350000e+00
3636 3.625000e+00
3637 -1.416667e-01
3638 -1.174167e+01
3639 -4.408333e+00
3640 2.433333e+00
3641 -2.005000e+01
3642 -2.645833e+01
3643 5.750000e+00
3644 8.666667e+00
3645 2.210000e+01
3646 2.044167e+01
3647 1.796667e+01
3648 -4.500000e-01
3649 -1.533333e+00
3650 5.333333e+00
3651 1.365833e+01
3652 1.775000e+01
3653 1.440833e+01
3654 -3.141667e+00
3655 -7.350000e+00
3656 -9.050000e+00
3657 1.440833e+01
3658 -5.758333e+00
3659 2.183333e+00
3660 9.658333e+00
3661 -4.250000e-01
3662 2.966667e+00
3663 4.716667e+00
3664 3.333333e+00
3665 -2.877500e+01
3666 -4.416667e+00
3667 -1.854167e+01
3668 -6.416667e-01
3669 -1.333333e+00
3670 -1.590833e+01
3671 4.166667e+00
3672 5.208333e+00
3673 -8.325000e+00
3674 -8.200000e+00
3675 -2.012500e+01
3676 5.750000e+00
3677 -2.916667e-01
3678 7.500000e-01
3679 5.966667e+00
3680 -9.583333e+00
3681 -5.125000e+00
3682 -5.091667e+00
3683 1.755000e+01
3684 -9.858333e+00
3685 -5.150000e+00
3686 -9.975000e+00
3687 1.290833e+01
3688 -4.216667e+00
3689 -3.425000e+00
3690 -7.158333e+00
3691 -1.483333e+00
3692 2.255833e+01
3693 4.041667e+00
3694 -1.283333e+01
3695 5.375000e+00
3696 -3.450000e+00
3697 -4.866667e+00
3698 -9.858333e+00
3699 -1.265000e+01
3700 8.325000e+00
3701 -1.063333e+01
3702 -1.990000e+01
3703 1.217500e+01
3704 3.450000e+00
3705 -2.658333e+00
3706 -4.850000e+00
3707 1.503333e+01
3708 1.808333e+01
3709 -5.900000e+00
3710 7.666667e-01
3711 1.602500e+01
3712 -4.183333e+00
3713 -3.933333e+00
3714 7.241667e+00
3715 6.983333e+00
3716 -2.000000e+00
3717 -7.750000e-01
3718 7.050000e+00
3719 -3.750000e-01
3720 -9.383333e+00
3721 -1.123333e+01
3722 1.465000e+01
3723 1.257500e+01
3724 -3.133333e+00
3725 -5.825000e+00
3726 5.275000e+00
3727 -1.086667e+01
3728 -7.325000e+00
3729 8.616667e+00
3730 -4.366667e+00
3731 1.055000e+01
3732 -6.708333e+00
3733 8.958333e+00
3734 1.557500e+01
3735 2.030000e+01
3736 -1.013333e+01
3737 -2.825000e+00
3738 -4.150000e+00
3739 -1.150000e+01
3740 -1.608333e+00
3741 3.425000e+00
3742 -3.133333e+00
3743 -1.990000e+01
3744 1.186667e+01
3745 8.183333e+00
3746 -2.266667e+00
3747 -1.927500e+01
3748 5.258333e+00
3749 3.366667e+00
3750 1.980833e+01
3751 -6.966667e+00
3752 8.400000e+00
3753 4.858333e+00
3754 1.543333e+01
3755 2.708333e+00
3756 2.475000e+00
3757 -1.858333e+00
3758 6.575000e+00
3759 -4.550000e+00
3760 5.216667e+00
3761 -2.065833e+01
3762 -2.246667e+01
3763 4.008333e+00
3764 -1.110000e+01
3765 8.716667e+00
3766 -5.191667e+00
3767 -1.115833e+01
3768 6.466667e+00
3769 3.333333e-02
3770 7.125000e+00
3771 -6.375000e+00
3772 -1.275833e+01
3773 1.385833e+01
3774 -1.630833e+01
3775 3.841667e+00
3776 2.350000e+00
3777 -3.116667e+00
3778 5.416667e+00
3779 -2.425000e+00
3780 -4.983333e+00
3781 -3.025000e+00
3782 2.060000e+01
3783 -1.268333e+01
3784 -8.916667e-01
3785 -1.755000e+01
3786 2.375000e+00
3787 -9.300000e+00
3788 8.916667e-01
3789 1.360000e+01
3790 5.875000e+00
3791 -1.084167e+01
3792 -7.233333e+00
3793 1.984167e+01
3794 -1.516667e+01
3795 -9.275000e+00
3796 -6.791667e+00
3797 -7.750000e-01
3798 -5.383333e+00
3799 7.866667e+00
3800 1.594167e+01
3801 -9.800000e+00
3802 -1.445000e+01
3803 4.841667e+00
3804 3.041667e+00
3805 -3.191667e+00
3806 -2.008333e+00
3807 -1.904167e+01
3808 1.878333e+01
3809 -1.918333e+01
3810 5.250000e-01
3811 -1.323333e+01
3812 9.583333e-01
3813 -6.233333e+00
3814 -1.426667e+01
3815 8.333333e-03
3816 -1.822500e+01
3817 3.791667e+00
3818 3.000000e+00
3819 2.044167e+01
3820 3.275000e+00
3821 -2.218333e+01
3822 -8.325000e+00
3823 -2.358333e+00
3824 6.791667e+00
3825 3.908333e+00
3826 -8.000000e-01
3827 -5.841667e+00
3828 1.836667e+01
3829 1.160000e+01
3830 5.175000e+00
3831 -1.658333e+00
3832 1.108333e+00
3833 8.108333e+00
3834 5.408333e+00
3835 9.366667e+00
3836 5.966667e+00
3837 9.875000e+00
3838 3.791667e+00
3839 5.708333e+00
3840 2.133333e+01
3841 6.050000e+00
3842 -4.358333e+00
3843 1.255833e+01
3844 -1.130000e+01
3845 3.166667e+00
3846 2.408333e+00
3847 -7.750000e-01
3848 -1.060833e+01
3849 3.333333e-01
3850 -3.575000e+00
3851 2.000833e+01
3852 -9.158333e+00
3853 -6.083333e-01
3854 -5.833333e-02
3855 7.350000e+00
3856 1.611667e+01
3857 7.166667e-01
3858 5.266667e+00
3859 -7.166667e-01
3860 -1.304167e+01
3861 3.666667e-01
3862 1.704167e+01
3863 1.856667e+01
3864 -1.860000e+01
3865 3.741667e+00
3866 -2.433333e+00
3867 -1.560833e+01
3868 -3.200000e+00
3869 4.066667e+00
3870 -2.025000e+01
3871 4.083333e+00
3872 -7.408333e+00
3873 -5.666667e-01
3874 -1.337500e+01
3875 -7.833333e-01
3876 1.613333e+01
3877 -1.296667e+01
3878 -5.150000e+00
3879 2.869167e+01
3880 2.176667e+01
3881 -5.416667e-01
3882 -8.041667e+00
3883 7.275000e+00
3884 -5.041667e+00
3885 -3.625000e+00
3886 -4.650000e+00
3887 6.575000e+00
3888 7.241667e+00
3889 -4.791667e+00
3890 -8.458333e+00
3891 2.116667e+00
3892 -4.925000e+00
3893 -1.450000e+00
3894 -2.877500e+01
3895 2.758333e+00
3896 -7.758333e+00
3897 -4.475000e+00
3898 8.433333e+00
3899 7.258333e+00
3900 -6.875000e+00
3901 -8.158333e+00
3902 5.916667e-01
3903 -1.220833e+01
3904 7.900000e+00
3905 -7.841667e+00
3906 5.625000e+00
3907 1.573333e+01
3908 -8.933333e+00
3909 -1.308333e+00
3910 6.666667e-02
3911 -1.583333e-01
3912 1.025000e+01
3913 1.171667e+01
3914 2.204167e+01
3915 4.383333e+00
3916 9.166667e-02
3917 9.416667e-01
3918 -8.816667e+00
3919 2.616667e+00
3920 7.675000e+00
3921 2.537500e+01
3922 1.658333e+00
3923 8.608333e+00
3924 -4.300000e+00
3925 3.641667e+00
3926 2.141667e+01
3927 -1.672500e+01
3928 -4.358333e+00
3929 7.666667e+00
3930 -1.052500e+01
3931 -2.116667e+00
3932 1.200833e+01
3933 6.108333e+00
3934 -1.166667e-01
3935 7.500000e-01
3936 -6.441667e+00
3937 -1.675000e+00
3938 -1.060000e+01
3939 5.150000e+00
3940 6.108333e+00
3941 -1.984167e+01
3942 -1.476667e+01
3943 8.008333e+00
3944 -2.916667e-01
3945 8.058333e+00
3946 4.675000e+00
3947 6.908333e+00
3948 -6.583333e+00
3949 -5.275000e+00
3950 -3.325000e+00
3951 -1.845833e+01
3952 -3.758333e+00
3953 8.800000e+00
3954 8.258333e+00
3955 -2.100000e+01
3956 1.298333e+01
3957 2.470000e+01
3958 -2.775000e+00
3959 -7.500000e+00
3960 1.045833e+01
3961 -2.425000e+00
3962 7.100000e+00
3963 -8.575000e+00
3964 -1.323333e+01
3965 -3.425000e+00
3966 5.150000e+00
3967 6.383333e+00
3968 -5.416667e+00
3969 -1.100833e+01
3970 -1.133333e+01
3971 -1.191667e+00
3972 3.666667e-01
3973 -4.675000e+00
3974 1.209167e+01
3975 -3.741667e+00
3976 -1.095000e+01
3977 1.895833e+01
3978 -3.858333e+00
3979 -1.822500e+01
3980 1.603333e+01
3981 -5.200000e+00
3982 1.666667e+00
3983 3.908333e+00
3984 -6.908333e+00
3985 9.716667e+00
3986 -1.277500e+01
3987 1.220833e+01
3988 -3.808333e+00
3989 -8.416667e-01
3990 -2.500000e-02
3991 1.262500e+01
3992 -3.141667e+00
3993 -8.250000e+00
3994 -1.215000e+01
3995 -8.983333e+00
3996 7.058333e+00
3997 -3.566667e+00
3998 -7.100000e+00
3999 2.508333e+00
4000 2.643333e+01
4001 7.141667e+00
4002 7.566667e+00
4003 1.217500e+01
4004 -1.913333e+01
4005 -5.900000e+00
4006 5.316667e+00
4007 1.100000e+00
4008 1.795833e+01
4009 2.083333e+00
4010 -3.841667e+00
4011 6.250000e-01
4012 -3.750000e+00
4013 3.166667e-01
4014 -6.991667e+00
4015 9.900000e+00
4016 -4.708333e+00
4017 7.083333e+00
4018 -7.666667e-01
4019 6.583333e+00
4020 5.816667e+00
4021 -8.716667e+00
4022 -7.675000e+00
4023 -1.216667e+00
4024 1.166667e-01
4025 5.825000e+00
4026 -1.364167e+01
4027 -1.165833e+01
4028 5.583333e+00
4029 1.075000e+00
4030 -1.165833e+01
4031 -1.406667e+01
4032 -3.616667e+00
4033 -1.045000e+01
4034 5.816667e+00
4035 5.475000e+00
4036 -6.908333e+00
4037 1.579167e+01
4038 8.250000e-01
4039 -1.095833e+01
4040 8.941667e+00
4041 8.075000e+00
4042 4.908333e+00
4043 -8.400000e+00
4044 1.300000e+00
4045 2.075000e+00
4046 1.833333e+00
4047 1.686667e+01
4048 -1.207500e+01
4049 -3.475000e+00
4050 7.500000e+00
4051 -1.933333e+01
4052 -2.775000e+00
4053 -1.435000e+01
4054 -1.242500e+01
4055 -2.708333e+00
4056 -5.933333e+00
4057 1.115833e+01
4058 -3.258333e+00
4059 -3.975000e+00
4060 5.275000e+00
4061 -1.128333e+01
4062 -3.616667e+00
4063 7.916667e-01
4064 -1.787500e+01
4065 -4.716667e+00
4066 -4.408333e+00
4067 6.983333e+00
4068 1.615000e+01
4069 3.925000e+00
4070 -1.345833e+01
4071 -7.641667e+00
4072 3.383333e+00
4073 2.283333e+00
4074 7.566667e+00
4075 -7.166667e-01
4076 -3.816667e+00
4077 9.625000e+00
4078 1.318333e+01
4079 1.615000e+01
4080 4.133333e+00
4081 1.658333e+01
4082 -1.025000e+01
4083 -5.616667e+00
4084 1.189167e+01
4085 -8.833333e-01
4086 -2.000000e+00
4087 -8.491667e+00
4088 -9.833333e-01
4089 -1.915833e+01
4090 8.491667e+00
4091 1.403333e+01
4092 -1.822500e+01
4093 9.275000e+00
4094 9.541667e+00
4095 -9.083333e+00
4096 5.391667e+00
4097 5.550000e+00
4098 -6.175000e+00
4099 7.966667e+00
4100 1.291667e+01
4101 -5.325000e+00
4102 -5.683333e+00
4103 1.045833e+01
4104 2.467500e+01
4105 1.760833e+01
4106 7.166667e-01
4107 -4.066667e+00
4108 3.991667e+00
4109 1.019167e+01
4110 3.050000e+00
4111 -8.375000e+00
4112 1.084167e+01
4113 4.850000e+00
4114 -9.783333e+00
4115 -9.833333e+00
4116 -7.441667e+00
4117 1.500000e+01
4118 -4.250000e-01
4119 8.875000e+00
4120 3.325000e+00
4121 -1.594167e+01
4122 -8.666667e+00
4123 -4.216667e+00
4124 -4.166667e+00
4125 1.275833e+01
4126 -4.858333e+00
4127 1.751667e+01
4128 1.520000e+01
4129 -1.255833e+01
4130 1.065833e+01
4131 1.666667e+00
4132 -1.441667e+01
4133 1.060000e+01
4134 -8.691667e+00
4135 -4.300000e+00
4136 3.908333e+00
4137 1.550000e+00
4138 9.341667e+00
4139 1.089167e+01
4140 1.010000e+01
4141 9.641667e+00
4142 1.990000e+01
4143 -2.116667e+00
4144 5.258333e+00
4145 2.683333e+00
4146 -8.866667e+00
4147 -4.383333e+00
4148 1.597500e+01
4149 -3.158333e+00
4150 1.590833e+01
4151 -1.581667e+01
4152 1.061667e+01
4153 5.991667e+00
4154 5.525000e+00
4155 1.698333e+01
4156 8.333333e-01
4157 1.500000e-01
4158 2.883333e+00
4159 -2.127500e+01
4160 -1.394167e+01
4161 1.814167e+01
4162 7.350000e+00
4163 -1.474167e+01
4164 -6.025000e+00
4165 -1.731667e+01
4166 1.441667e+00
4167 -2.708333e+00
4168 1.037500e+01
4169 -5.083333e-01
4170 -5.358333e+00
4171 3.541667e+00
4172 4.500000e-01
4173 2.085833e+01
4174 -1.391667e+01
4175 -9.708333e+00
4176 -9.716667e+00
4177 -6.441667e+00
4178 -2.566667e+00
4179 -6.475000e+00
4180 5.033333e+00
4181 2.481667e+01
4182 1.704167e+01
4183 -9.583333e+00
4184 -2.058333e+00
4185 -8.916667e-01
4186 6.908333e+00
4187 -2.026667e+01
4188 -2.147500e+01
4189 -3.425000e+00
4190 -5.441667e+00
4191 -1.941667e+00
4192 5.416667e-01
4193 2.025000e+01
4194 1.691667e+00
4195 -9.383333e+00
4196 -1.254167e+01
4197 -1.201667e+01
4198 -1.191667e+00
4199 6.125000e+00
4200 -3.966667e+00
4201 5.475000e+00
4202 -3.816667e+00
4203 -1.725000e+00
4204 1.808333e+00
4205 -1.162500e+01
4206 -4.500000e-01
4207 6.791667e+00
4208 5.583333e-01
4209 -5.491667e+00
4210 3.266667e+00
4211 3.200000e+00
4212 -1.801667e+01
4213 -2.127500e+01
4214 6.075000e+00
4215 9.833333e-01
4216 -3.200000e+00
4217 5.341667e+00
4218 4.708333e+00
4219 -1.800000e+00
4220 1.200833e+01
4221 1.019167e+01
4222 -2.225000e+00
4223 -1.531667e+01
4224 -4.216667e+00
4225 1.051667e+01
4226 6.600000e+00
4227 -7.150000e+00
4228 -1.883333e+00
4229 3.166667e-01
4230 -4.708333e+00
4231 4.100000e+00
4232 -2.216667e+00
4233 -1.139167e+01
4234 1.616667e+01
4235 8.733333e+00
4236 -1.274167e+01
4237 8.550000e+00
4238 1.271667e+01
4239 -1.557500e+01
4240 -5.408333e+00
4241 -4.100000e+00
4242 1.206667e+01
4243 -1.690000e+01
4244 -2.516667e+00
4245 2.425833e+01
4246 -1.383333e+00
4247 -1.397500e+01
4248 2.224167e+01
4249 -7.166667e-01
4250 2.267500e+01
4251 7.958333e+00
4252 1.373333e+01
4253 -9.166667e-01
4254 8.666667e+00
4255 -6.525000e+00
4256 1.116667e+00
4257 -8.191667e+00
4258 -7.550000e+00
4259 -7.408333e+00
4260 -3.050000e+00
4261 -3.758333e+00
4262 -4.358333e+00
4263 1.200833e+01
4264 2.121667e+01
4265 1.912500e+01
4266 1.600000e+00
4267 -1.445000e+01
4268 -4.500000e+00
4269 1.083333e+00
4270 -1.924167e+01
4271 -3.600000e+00
4272 -7.933333e+00
4273 -1.025000e+01
4274 -8.666667e+00
4275 -1.047500e+01
4276 2.225000e+00
4277 6.708333e+00
4278 6.158333e+00
4279 5.150000e+00
4280 -7.241667e+00
4281 5.766667e+00
4282 5.508333e+00
4283 -1.836667e+01
4284 -1.107500e+01
4285 -6.541667e+00
4286 -9.216667e+00
4287 -1.476667e+01
4288 1.907500e+01
4289 2.883333e+00
4290 -6.541667e+00
4291 2.500000e-02
4292 -9.083333e+00
4293 -1.148333e+01
4294 -1.166667e-01
4295 -1.906667e+01
4296 -1.060833e+01
4297 1.615000e+01
4298 -7.841667e+00
4299 3.216667e+00
4300 -3.183333e+00
4301 3.075000e+00
4302 9.416667e+00
4303 2.019167e+01
4304 7.641667e+00
4305 5.266667e+00
4306 1.578333e+01
4307 -3.400000e+00
4308 6.400000e+00
4309 -3.225000e+00
4310 1.840000e+01
4311 1.898333e+01
4312 -5.008333e+00
4313 -5.566667e+00
4314 -1.391667e+01
4315 -1.057500e+01
4316 1.666667e+00
4317 -6.850000e+00
4318 1.308333e+01
4319 9.575000e+00
4320 -2.467500e+01
4321 1.311667e+01
4322 1.055000e+01
4323 3.591667e+00
4324 -3.250000e+00
4325 -2.983333e+00
4326 -8.691667e+00
4327 6.050000e+00
4328 -7.583333e-01
4329 6.383333e+00
4330 5.041667e+00
4331 -8.191667e+00
4332 6.791667e+00
4333 9.291667e+00
4334 -1.692500e+01
4335 4.183333e+00
4336 -8.400000e+00
4337 6.450000e+00
4338 3.083333e+00
4339 -1.514167e+01
4340 2.416667e+00
4341 -1.135833e+01
4342 -1.514167e+01
4343 7.025000e+00
4344 -1.211667e+01
4345 -8.716667e+00
4346 1.142500e+01
4347 1.200000e+00
4348 -1.027500e+01
4349 5.850000e+00
4350 5.341667e+00
4351 -8.866667e+00
4352 3.450000e+00
4353 -1.133333e+01
4354 1.250833e+01
4355 -5.000000e-02
4356 -1.691667e+00
4357 -2.633333e+00
4358 -3.841667e+00
4359 1.775000e+01
4360 7.900000e+00
4361 1.128333e+01
4362 1.775000e+00
4363 1.128333e+01
4364 -1.599167e+01
4365 7.166667e-01
4366 -7.958333e+00
4367 -7.141667e+00
4368 -5.625000e+00
4369 1.502500e+01
4370 -1.037500e+01
4371 -7.441667e+00
4372 2.000000e-01
4373 1.227500e+01
4374 2.566667e+00
4375 1.608333e+00
4376 -8.633333e+00
4377 -1.066667e+01
4378 -9.716667e+00
4379 3.458333e+00
4380 2.026667e+01
4381 1.913333e+01
4382 1.209167e+01
4383 1.440000e+01
4384 7.041667e+00
4385 -2.266667e+00
4386 -5.583333e+00
4387 1.924167e+01
4388 -3.533333e+00
4389 2.100000e+01
4390 -1.998333e+01
4391 2.091667e+00
4392 -1.294167e+01
4393 5.458333e+00
4394 2.966667e+00
4395 2.032500e+01
4396 -2.147500e+01
4397 -3.450000e+00
4398 8.783333e+00
4399 2.166667e-01
4400 -7.816667e+00
4401 -3.925000e+00
4402 -1.351667e+01
4403 -7.466667e+00
4404 -2.241667e+01
4405 -7.183333e+00
4406 -1.220833e+01
4407 -9.366667e+00
4408 -1.733333e+00
4409 8.816667e+00
4410 -4.591667e+00
4411 -1.041667e+01
4412 -1.395000e+01
4413 -1.549167e+01
4414 1.403333e+01
4415 -1.133333e+01
4416 2.012500e+01
4417 8.750000e+00
4418 -1.625000e+00
4419 1.142500e+01
4420 -6.158333e+00
4421 1.927500e+01
4422 6.183333e+00
4423 4.091667e+00
4424 -3.258333e+00
4425 1.605000e+01
4426 9.833333e-01
4427 9.083333e-01
4428 -6.558333e+00
4429 -1.250000e+00
4430 5.808333e+00
4431 3.333333e+00
4432 -8.550000e+00
4433 3.483333e+00
4434 -1.025833e+01
4435 3.200000e+00
4436 3.250000e+00
4437 1.766667e+01
4438 -1.514167e+01
4439 2.916667e+00
4440 3.200000e+00
4441 -3.591667e+00
4442 2.224167e+01
4443 7.125000e+00
4444 9.416667e-01
4445 1.599167e+01
4446 -6.475000e+00
4447 1.514167e+01
4448 5.416667e-01
4449 -1.180000e+01
4450 -1.283333e+01
4451 1.984167e+01
4452 6.458333e+00
4453 -4.616667e+00
4454 -1.281667e+01
4455 3.866667e+00
4456 1.248333e+01
4457 -1.195000e+01
4458 2.252500e+01
4459 -2.166667e+00
4460 -3.825000e+00
4461 -1.503333e+01
4462 -7.500000e-01
4463 -4.791667e+00
4464 -5.766667e+00
4465 7.950000e+00
4466 -1.907500e+01
4467 -3.675000e+00
4468 -1.080833e+01
4469 1.440833e+01
4470 7.466667e+00
4471 5.841667e+00
4472 1.083333e+00
4473 -8.100000e+00
4474 -6.100000e+00
4475 -1.939167e+01
4476 3.800000e+00
4477 9.083333e+00
4478 5.458333e+00
4479 1.013333e+01
4480 -2.080000e+01
4481 -6.991667e+00
4482 -1.525833e+01
4483 3.991667e+00
4484 2.025000e+01
4485 1.567500e+01
4486 -2.916667e+00
4487 -4.533333e+00
4488 6.500000e+00
4489 -1.333333e-01
4490 -4.300000e+00
4491 -5.000000e+00
4492 9.400000e+00
4493 -6.850000e+00
4494 -2.750000e-01
4495 1.517500e+01
4496 -2.250000e-01
4497 -1.525833e+01
4498 -1.027500e+01
4499 -1.953333e+01
4500 -2.500000e-02
4501 1.441667e+01
4502 1.013333e+01
4503 -1.165833e+01
4504 -1.468333e+01
4505 2.766667e+00
4506 1.514167e+01
4507 3.391667e+00
4508 -3.391667e+00
4509 1.616667e+01
4510 8.125000e+00
4511 -1.660833e+01
4512 2.600000e+00
4513 -8.666667e+00
4514 -1.503333e+01
4515 7.425000e+00
4516 1.858333e+00
4517 -1.253333e+01
4518 -3.425000e+00
4519 -1.174167e+01
4520 -1.163333e+01
4521 5.291667e+00
4522 4.008333e+00
4523 -7.025000e+00
4524 1.296667e+01
4525 -2.083333e+00
4526 -1.602500e+01
4527 -4.750000e-01
4528 -4.508333e+00
4529 -1.165833e+01
4530 2.833333e+00
4531 -3.483333e+00
4532 9.783333e+00
4533 -6.125000e+00
4534 -7.900000e+00
4535 1.500000e+00
4536 4.075000e+00
4537 1.684167e+01
4538 1.375000e+00
4539 -9.250000e-01
4540 1.163333e+01
4541 -2.408333e+00
4542 3.783333e+00
4543 8.500000e-01
4544 -8.608333e+00
4545 -5.900000e+00
4546 -6.108333e+00
4547 1.445000e+01
4548 6.791667e+00
4549 1.171667e+01
4550 -5.208333e+00
4551 -1.924167e+01
4552 5.650000e+00
4553 -3.616667e+00
4554 1.027500e+01
4555 2.141667e+01
4556 2.156667e+01
4557 1.066667e+01
4558 -2.000000e-01
4559 1.830833e+01
4560 -9.558333e+00
4561 -5.441667e+00
4562 -9.683333e+00
4563 -6.650000e+00
4564 -1.051667e+01
4565 -1.898333e+01
4566 -7.000000e+00
4567 9.925000e+00
4568 -5.583333e-01
4569 1.333333e-01
4570 -1.359167e+01
4571 2.625000e+00
4572 8.666667e+00
4573 -9.666667e-01
4574 -1.233333e+00
4575 -2.135833e+01
4576 -1.793333e+01
4577 -2.255833e+01
4578 -1.975000e+00
4579 3.241667e+00
4580 -5.291667e+00
4581 -7.666667e-01
4582 7.325000e+00
4583 -3.250000e+00
4584 -1.175000e+00
4585 1.166667e-01
4586 1.248333e+01
4587 -5.766667e+00
4588 -3.033333e+00
4589 1.400833e+01
4590 2.025000e+01
4591 -7.666667e-01
4592 5.766667e+00
4593 4.816667e+00
4594 5.008333e+00
4595 -4.250000e-01
4596 -2.320000e+01
4597 -1.483333e+00
4598 6.450000e+00
4599 3.158333e+00
4600 -8.333333e-02
4601 8.875000e+00
4602 4.791667e+00
4603 8.325000e+00
4604 1.983333e+00
4605 8.316667e+00
4606 9.983333e+00
4607 1.587500e+01
4608 -1.508333e+01
4609 6.825000e+00
4610 -4.233333e+00
4611 -3.683333e+00
4612 9.191667e+00
4613 1.810833e+01
4614 -9.083333e+00
4615 6.616667e+00
4616 -5.825000e+00
4617 -6.783333e+00
4618 -5.683333e+00
4619 8.041667e+00
4620 -1.610833e+01
4621 -2.264167e+01
4622 -1.395000e+01
4623 2.633333e+00
4624 1.617500e+01
4625 3.158333e+00
4626 -5.408333e+00
4627 1.435000e+01
4628 4.000000e-01
4629 -9.800000e+00
4630 -9.083333e-01
4631 -4.750000e-01
4632 -6.591667e+00
4633 6.016667e+00
4634 -1.367500e+01
4635 -1.441667e+00
4636 -6.425000e+00
4637 -2.966667e+00
4638 -7.166667e-01
4639 1.108333e+00
4640 2.026667e+01
4641 9.500000e+00
4642 5.566667e+00
4643 -5.533333e+00
4644 -1.393333e+01
4645 6.816667e+00
4646 -3.908333e+00
4647 -1.570000e+01
4648 -2.633333e+00
4649 -1.854167e+01
4650 -2.508333e+00
4651 -6.575000e+00
4652 3.541667e+00
4653 4.091667e+00
4654 1.781667e+01
4655 -9.083333e+00
4656 -4.616667e+00
4657 -7.900000e+00
4658 -2.425000e+00
4659 -3.483333e+00
4660 1.145833e+01
4661 -3.116667e+00
4662 -7.608333e+00
4663 -4.000000e-01
4664 -6.416667e-01
4665 1.033333e+01
4666 8.800000e+00
4667 -8.633333e+00
4668 -3.900000e+00
4669 -1.333333e-01
4670 1.166667e-01
4671 2.416667e+00
4672 -1.751667e+01
4673 2.975000e+00
4674 -1.128333e+01
4675 -2.741667e+00
4676 9.716667e+00
4677 -5.691667e+00
4678 -1.069167e+01
4679 8.141667e+00
4680 3.391667e+00
4681 -1.011667e+01
4682 -1.125000e+00
4683 -6.466667e+00
4684 2.425000e+00
4685 -6.250000e-01
4686 1.387500e+01
4687 4.975000e+00
4688 2.833333e+00
4689 -9.416667e+00
4690 1.725000e+00
4691 7.500000e-01
4692 -8.375000e+00
4693 2.683333e+00
4694 -9.541667e+00
4695 -7.700000e+00
4696 -1.105833e+01
4697 -4.500000e-01
4698 -1.617500e+01
4699 6.333333e-01
4700 -7.500000e+00
4701 6.791667e+00
4702 4.675000e+00
4703 -1.383333e+00
4704 -4.116667e+00
4705 -9.016667e+00
4706 4.641667e+00
4707 1.215833e+01
4708 4.841667e+00
4709 -6.675000e+00
4710 -1.866667e+00
4711 5.266667e+00
4712 -1.585000e+01
4713 7.525000e+00
4714 2.333333e-01
4715 -1.289167e+01
4716 -1.098333e+01
4717 9.975000e+00
4718 5.625000e+00
4719 -1.665000e+01
4720 1.807500e+01
4721 1.611667e+01
4722 1.039167e+01
4723 -3.333333e-02
4724 -1.600000e+00
4725 5.000000e+00
4726 1.275833e+01
4727 -2.566667e+00
4728 4.858333e+00
4729 -2.869167e+01
4730 9.566667e+00
4731 1.153333e+01
4732 -7.966667e+00
4733 -7.883333e+00
4734 7.100000e+00
4735 2.267500e+01
4736 1.261667e+01
4737 2.264167e+01
4738 6.525000e+00
4739 4.500000e-01
4740 -6.450000e+00
4741 5.116667e+00
4742 -1.584167e+01
4743 -2.458333e+00
4744 2.358333e+00
4745 -9.083333e+00
4746 -1.435000e+01
4747 -2.141667e+01
4748 5.058333e+00
4749 7.383333e+00
4750 -1.025833e+01
4751 -2.440000e+01
4752 -1.745833e+01
4753 -1.691667e+00
4754 2.841667e+00
4755 -5.150000e+00
4756 -2.891667e+00
4757 -5.008333e+00
4758 -1.405833e+01
4759 1.254167e+01
4760 -1.068333e+01
4761 -8.666667e+00
4762 2.649167e+01
4763 -9.633333e+00
4764 8.958333e+00
4765 -1.641667e+00
4766 -1.858333e+00
4767 3.666667e-01
4768 2.650000e+00
4769 -1.458333e+00
4770 1.916667e+00
4771 1.013333e+01
4772 1.221667e+01
4773 1.415000e+01
4774 6.766667e+00
4775 4.758333e+00
4776 -2.291667e+00
4777 -4.708333e+00
4778 3.950000e+00
4779 1.420833e+01
4780 -1.916667e+00
4781 -5.175000e+00
4782 -1.160000e+01
4783 -6.083333e-01
4784 1.760833e+01
4785 -5.666667e+00
4786 -2.030000e+01
4787 -1.101667e+01
4788 6.233333e+00
4789 1.269167e+01
4790 6.833333e-01
4791 -5.400000e+00
4792 5.333333e+00
4793 6.441667e+00
4794 -1.678333e+01
4795 -7.916667e+00
4796 3.325000e+00
4797 -8.616667e+00
4798 -8.608333e+00
4799 -3.333333e-01
4800 7.208333e+00
4801 8.133333e+00
4802 1.704167e+01
4803 5.291667e+00
4804 7.141667e+00
4805 6.850000e+00
4806 1.704167e+01
4807 -1.133333e+00
4808 -5.316667e+00
4809 -9.641667e+00
4810 1.866667e+00
4811 -1.734167e+01
4812 -1.276667e+01
4813 -7.491667e+00
4814 5.066667e+00
4815 2.156667e+01
4816 4.533333e+00
4817 -8.333333e-01
4818 8.716667e+00
4819 -1.115000e+01
4820 -1.283333e+01
4821 1.050000e+00
4822 1.610833e+01
4823 -7.100000e+00
4824 9.025000e+00
4825 -9.333333e-01
4826 -5.750000e+00
4827 4.883333e+00
4828 2.650000e+00
4829 1.221667e+01
4830 -2.166667e+00
4831 6.591667e+00
4832 5.183333e+00
4833 -1.733333e+00
4834 -1.241667e+00
4835 -3.475000e+00
4836 2.058333e+00
4837 4.175000e+00
4838 1.100000e+00
4839 -9.833333e+00
4840 -5.350000e+00
4841 4.441667e+00
4842 2.420000e+01
4843 -1.360000e+01
4844 -3.166667e-01
4845 -1.423333e+01
4846 -9.416667e+00
4847 -4.091667e+00
4848 -5.691667e+00
4849 -8.950000e+00
4850 -7.616667e+00
4851 7.241667e+00
4852 -6.016667e+00
4853 -1.176667e+01
4854 -1.385000e+01
4855 -1.646667e+01
4856 -3.625000e+00
4857 -2.233333e+00
4858 -1.441667e+01
4859 -2.625000e+00
4860 2.583333e-01
4861 1.470833e+01
4862 6.158333e+00
4863 -1.373333e+01
4864 -1.216667e+00
4865 -1.245000e+01
4866 3.600000e+00
4867 -1.550000e+00
4868 2.166667e-01
4869 -7.900000e+00
4870 7.833333e-01
4871 -2.258333e+01
4872 1.043333e+01
4873 -2.266667e+00
4874 -2.010833e+01
4875 -4.416667e+00
4876 -6.225000e+00
4877 1.154167e+01
4878 -1.145833e+01
4879 -1.607500e+01
4880 7.133333e+00
4881 -1.171667e+01
4882 -4.250000e-01
4883 -1.183333e+01
4884 -4.591667e+00
4885 3.166667e-01
4886 5.608333e+00
4887 -7.266667e+00
4888 9.250000e-01
4889 1.203333e+01
4890 -1.110000e+01
4891 -1.300000e+00
4892 1.125000e+00
4893 -1.924167e+01
4894 1.128333e+01
4895 -1.165833e+01
4896 1.160000e+01
4897 1.294167e+01
4898 9.000000e-01
4899 2.434167e+01
4900 -9.300000e+00
4901 8.183333e+00
4902 5.475000e+00
4903 -1.072500e+01
4904 -5.416667e-01
4905 6.291667e+00
4906 2.261667e+01
4907 6.966667e+00
4908 1.010000e+01
4909 1.216667e+00
4910 -6.641667e+00
4911 -1.918333e+01
4912 -8.666667e+00
4913 -8.008333e+00
4914 5.116667e+00
4915 6.591667e+00
4916 -3.191667e+00
4917 1.546667e+01
4918 1.933333e+01
4919 1.075000e+00
4920 -1.725000e+00
4921 3.116667e+00
4922 -6.083333e+00
4923 1.719167e+01
4924 -1.195000e+01
4925 -2.434167e+01
4926 -1.582500e+01
4927 7.183333e+00
4928 -7.241667e+00
4929 -2.529167e+01
4930 9.333333e+00
4931 -6.416667e+00
4932 9.433333e+00
4933 -6.991667e+00
4934 -1.733333e+00
4935 -1.191667e+01
4936 6.158333e+00
4937 -3.333333e-02
4938 -3.625000e+00
4939 2.016667e+00
4940 2.508333e+00
4941 -1.698333e+01
4942 -5.766667e+00
4943 -4.416667e+00
4944 3.091667e+00
4945 7.833333e-01
4946 -4.791667e+00
4947 -1.549167e+01
4948 1.030833e+01
4949 6.250000e-01
4950 -7.466667e+00
4951 2.261667e+01
4952 -7.666667e+00
4953 -3.208333e+00
4954 -9.633333e+00
4955 6.591667e+00
4956 1.916667e+00
4957 9.000000e+00
4958 4.983333e+00
4959 -1.808333e+00
4960 1.915833e+01
4961 1.080833e+01
4962 1.254167e+01
4963 -4.100000e+00
4964 -1.383333e+00
4965 1.420833e+01
4966 8.316667e+00
4967 -6.025000e+00
4968 4.591667e+00
4969 3.941667e+00
4970 -2.166667e-01
4971 3.608333e+00
4972 -7.900000e+00
4973 -9.050000e+00
4974 1.001667e+01
4975 -1.268333e+01
4976 2.758333e+00
4977 -5.908333e+00
4978 -1.288333e+01
4979 1.805000e+01
4980 1.025000e+01
4981 6.141667e+00
4982 -5.133333e+00
4983 6.841667e+00
4984 -3.450000e+00
4985 -1.907500e+01
4986 -2.416667e+00
4987 -5.625000e+00
4988 -3.091667e+00
4989 -4.091667e+00
4990 7.666667e+00
4991 1.353333e+01
4992 9.016667e+00
4993 -7.816667e+00
4994 9.433333e+00
4995 1.587500e+01
4996 7.991667e+00
4997 1.455833e+01
4998 -6.675000e+00
4999 1.450000e+00
## polarity <- c(rep(1, 6), rep(-1, 6))- This creates a vector polarity that contains six 1s and six -1s. The 1s represent keeping the original sign of the difference between Final and Semifinal scores, while the -1s represent flipping the sign of the difference.
## The do(4999) command runs the following process 4999 times to create a null distribution of resampled mean differences.
## In each iteration, it calculates the mean of the differences between Final and Semifinal scores, with the polarity of the differences randomly flipped using mosaic::resample(polarity, replace = TRUE).
## The null distribution simulates what the mean differences would look like under the null hypothesis, assuming no true difference between the scores.
This generates a null distribution of mean differences between Final and Semifinal scores by flipping the sign of the differences randomly and calculating the mean across 4999 iterations. This permutation test helps assess whether the observed difference in scores is statistically significant by comparing it against the generated null distribution. The results (e.g., 1.866, -3.733, etc.) represent the simulated mean differences under the assumption of no real difference between the scores.
Plotting the Null Distribution
theme_set (new = theme_custom ())
gf_histogram (data = null_dist_swim, ~ mean) %>%
gf_vline (
xintercept = obs_diff_swim,
colour = "red" ,
linewidth = 1
)
Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font
family not found in Windows font database
Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font
family not found in Windows font database
Warning in grid.Call.graphics(C_text, as.graphicsAnnot(x$label), x$x, x$y, :
font family not found in Windows font database
Warning in grid.Call.graphics(C_text, as.graphicsAnnot(x$label), x$x, x$y, :
font family not found in Windows font database
Warning in grid.Call.graphics(C_text, as.graphicsAnnot(x$label), x$x, x$y, :
font family not found in Windows font database
gf_ecdf (data = null_dist_swim, ~ mean, linewidth = 1 ) %>%
gf_vline (
xintercept = obs_diff_swim,
colour = "red" ,
linewidth = 1
)
Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font
family not found in Windows font database
Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font
family not found in Windows font database
Warning in grid.Call.graphics(C_text, as.graphicsAnnot(x$label), x$x, x$y, :
font family not found in Windows font database
Warning in grid.Call.graphics(C_text, as.graphicsAnnot(x$label), x$x, x$y, :
font family not found in Windows font database
Warning in grid.Call.graphics(C_text, as.graphicsAnnot(x$label), x$x, x$y, :
font family not found in Windows font database
prop1 (~ mean <= obs_diff_swim, data = null_dist_swim)
## gf_ecdf(data = null_dist_swim, ~mean, linewidth = 1) %>%
## gf_vline(xintercept = obs_diff_swim, colour = "red", linewidth = 1)- This creates an ECDF plot, showing the cumulative proportion of mean values from the null distribution. Again, a red vertical line is added at the location of the observed mean difference (obs_diff_swim).
## prop1(~ mean <= obs_diff_swim, data = null_dist_swim)- This calculates the proportion of the values in the null distribution that are less than or equal to the observed mean difference (obs_diff_swim). This can be interpreted as a two-tailed p-value.
The code visualizes the null distribution of resampled mean differences between the final and semifinal diving scores, and compares it to the observed mean difference of -11.975. The histogram shows that the observed difference lies in the left tail of the null distribution, suggesting that such a difference is rare under the assumption of no true difference between rounds. The ECDF plot further highlights this by showing that only a small proportion of the null distribution is less than or equal to the observed difference. This visualization suggests that the observed difference may be statistically significant, as it deviates notably from the central values of the null distribution.
All Tests Together
mosaic:: t.test (
x = Diving2017$ Semifinal,
y = Diving2017$ Final,
paired = TRUE
) %>%
broom:: tidy () %>%
gt () %>%
tab_style (
style = list (cell_fill (color = "cyan" ), cell_text (weight = "bold" )),
locations = cells_body (columns = p.value)
) %>%
tab_header (title = "t.test" )
estimate
statistic
p.value
parameter
conf.low
conf.high
method
alternative
-11.975
-1.190339
0.2589684
11
-34.11726
10.16726
Paired t-test
two.sided
lm (Semifinal - Final ~ 1 , data = Diving2017) %>%
broom:: tidy (conf.int = TRUE , conf.level = 0.95 ) %>%
gt () %>%
tab_style (
style = list (cell_fill (color = "cyan" ), cell_text (weight = "bold" )),
locations = cells_body (columns = p.value)
) %>%
tab_header (title = "Linear Model" )
term
estimate
std.error
statistic
p.value
conf.low
conf.high
(Intercept)
-11.975
10.06016
-1.190339
0.2589684
-34.11726
10.16726
wilcox.test (
x = Diving2017$ Semifinal,
y = Diving2017$ Final,
paired = TRUE
) %>%
broom:: tidy () %>%
gt () %>%
tab_style (
style = list (cell_fill (color = "palegreen" ), cell_text (weight = "bold" )),
locations = cells_body (columns = p.value)
) %>%
tab_header (title = "Wilcoxon test" )
statistic
p.value
method
alternative
27
0.3803711
Wilcoxon signed rank exact test
two.sided
lm (signed_rank (Semifinal - Final) ~ 1 ,
data = Diving2017
) %>%
broom:: tidy (conf.int = TRUE , conf.level = 0.95 ) %>%
gt () %>%
tab_style (
style = list (cell_fill (color = "palegreen" ), cell_text (weight = "bold" )),
locations = cells_body (columns = p.value)
) %>%
tab_header (title = "Linear Model with sign.rank" )
term
estimate
std.error
statistic
p.value
conf.low
conf.high
(Intercept)
-2
2.135558
-0.9365236
0.3691097
-6.70033
2.70033
The results from four different statistical tests, including the paired t-test, linear model, Wilcoxon signed-rank test, and linear model with signed ranks, all consistently show that there is no statistically significant difference between the semifinal and final diving scores. The p-values from all tests (ranging from 0.259 to 0.380) are well above the typical significance threshold of 0.05, indicating that any observed difference in scores could be due to random variation. The paired t-test and linear model both estimate a mean score difference of -11.975, while the Wilcoxon test and the signed-rank model yield slightly different estimates but ultimately lead to the same conclusion: the score difference is not significant. This suggests that the diving performances in the semifinal and final rounds are statistically similar.
Case Study - Walmart vs Target
data ("Groceries" )
Groceries <- Groceries %>%
mutate (Product = stringr:: str_squish (Product)) # Knock off extra spaces
Groceries
Product Size Target
1 Kellogg NutriGrain Bars 8 bars 2.50
2 Quaker Oats Life Cereal Original 18oz 3.19
3 General Mills Lucky Charms 11.50z 3.19
4 Quaker Oats Old Fashioned 18oz 2.82
5 Nabisco Oreo Cookies 14.3oz 2.99
6 Nabisco Chips Ahoy 13oz 2.64
7 Doritos Nacho Cheese Chips 10oz 3.99
8 Cheez-it Original Baked 21oz 4.79
9 Swiss Miss Hot Chocolate 10 count 1.49
10 Tazo Chai Classic Latte Black Tea 32 oz 3.49
11 Annie's Macaroni & Cheese 6oz 1.79
12 Rice A Roni Chicken 6.9oz 1.00
13 Zatarain's Jambalaya Rice Mix 8oz 1.62
14 SPAM Original Lunch Meat 12oz 2.79
15 Campbell's Chicken Noodle Soup 10.75oz 0.99
16 Dinty Moore Hearty Meals Beef Stew 15oz 1.99
17 Hormel Chili with Beans 15oz 1.94
18 Dole Pineapple Chunks 20 oz 1.59
19 Skippy Creamy Peanut Butter 16.3oz 2.59
20 Smucker's Strawberry Preserve 18oz 2.99
21 Heinz Tomato Ketchup 32oz 2.99
22 Near East Couscous Toasted Pine Nuts mix 5.6oz 2.12
23 Barilla Angel Hair Pasta 16oz 1.42
24 Betty Crocker Super Moist Chocolate Fudge Cake Mix 15.25oz 1.22
25 Kraft Jet-Puffed Marshmllows 16oz 1.99
26 Dunkin' Donuts Original Blend Medium Roast Ground Coffee 12oz 7.19
27 Dove Promises Milk Chocolate 8.87oz 3.19
28 Skittles 41oz 7.99
29 Vlasic Kosher Dill Pickle Spears 24oz 2.39
30 Vlasic Old Fashioned Sauerkraut 32oz 1.99
Walmart
1 2.78
2 6.01
3 2.98
4 2.68
5 2.98
6 1.98
7 2.50
8 4.79
9 1.28
10 2.98
11 1.72
12 1.00
13 1.54
14 2.64
15 1.58
16 1.98
17 1.88
18 1.47
19 2.58
20 2.84
21 2.88
22 1.98
23 1.38
24 1.17
25 1.96
26 6.98
27 3.50
28 6.98
29 2.18
30 1.97
Groceries_inspect <- inspect (Groceries)
Groceries_inspect$ categorical
# A tibble: 2 × 6
name class levels n missing distribution
<chr> <chr> <int> <int> <int> <chr>
1 Product character 30 30 0 "Annie's Macaroni & Cheese (3.3%) ... …
2 Size factor 24 30 0 "18oz (10%), 12oz (6.7%) ... …
Groceries_inspect$ quantitative
# A tibble: 2 × 11
name class min Q1 median Q3 max mean sd n missing
* <chr> <chr> <dbl> <dbl> <dbl> <dbl> <dbl> <dbl> <dbl> <int> <int>
1 Target numeric 0.99 1.83 2.54 3.14 7.99 2.76 1.58 30 0
2 Walmart numeric 1 1.76 2.34 2.96 6.98 2.71 1.56 30 0
The case study compares the prices of 30 grocery items between Walmart and Target. The dataset includes products such as cereals, cookies, and beverages with their respective sizes and prices at both stores. The summary statistics show that Target’s prices range from $0.99 to $7.99, with a median price of $2.545 and an average price of $2.76. On the other hand, Walmart’s prices range from $1.00 to $6.98, with a median price of $2.34 and an average price of $2.71. The standard deviations are quite similar for both stores (Target: 1.58, Walmart: 1.56), suggesting comparable price variability. Overall, Target tends to have slightly higher average prices than Walmart for the same products, though the difference is minimal.
Grocery Costs - Histogram
Groceries_long %>%
gf_dhistogram (~ prices,
fill = ~ store,
alpha = 0.5 ,
title = "Grocery Costs"
) %>%
gf_facet_grid (~ store) %>%
gf_fitdistr (dist = "dnorm" )
Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font
family not found in Windows font database
Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font
family not found in Windows font database
Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font
family not found in Windows font database
Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font
family not found in Windows font database
Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font
family not found in Windows font database
Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font
family not found in Windows font database
Warning in grid.Call.graphics(C_text, as.graphicsAnnot(x$label), x$x, x$y, :
font family not found in Windows font database
Warning in grid.Call.graphics(C_text, as.graphicsAnnot(x$label), x$x, x$y, :
font family not found in Windows font database
Warning in grid.Call.graphics(C_text, as.graphicsAnnot(x$label), x$x, x$y, :
font family not found in Windows font database
Warning in grid.Call.graphics(C_text, as.graphicsAnnot(x$label), x$x, x$y, :
font family not found in Windows font database
Warning in grid.Call.graphics(C_text, as.graphicsAnnot(x$label), x$x, x$y, :
font family not found in Windows font database
Warning in grid.Call.graphics(C_text, as.graphicsAnnot(x$label), x$x, x$y, :
font family not found in Windows font database
Warning in grid.Call.graphics(C_text, as.graphicsAnnot(x$label), x$x, x$y, :
font family not found in Windows font database
This visualisation compares the distribution of grocery prices at Walmart and Target using histograms and overlaying normal distribution curves. Each store’s prices are represented separately, with Walmart in red and Target in blue. The shapes of the distributions indicate that Walmart prices are more widely spread, with several items priced above $5, whereas Target has a higher concentration of items priced between $2 and $4. The fitted normal distribution curves further suggest that Walmart’s pricing has a wider range, while Target’s pricing is more clustered around the lower price range, making Target appear slightly more consistent in pricing across products.
Grocery Costs - Density Plot
Groceries_long %>%
gf_density (~ prices,
fill = ~ store,
alpha = 0.5 ,
title = "Grocery Costs"
) %>%
gf_facet_grid (~ store) %>%
gf_fitdistr (dist = "dnorm" )
Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font
family not found in Windows font database
Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font
family not found in Windows font database
Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font
family not found in Windows font database
Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font
family not found in Windows font database
Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font
family not found in Windows font database
Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font
family not found in Windows font database
Warning in grid.Call.graphics(C_text, as.graphicsAnnot(x$label), x$x, x$y, :
font family not found in Windows font database
Warning in grid.Call.graphics(C_text, as.graphicsAnnot(x$label), x$x, x$y, :
font family not found in Windows font database
Warning in grid.Call.graphics(C_text, as.graphicsAnnot(x$label), x$x, x$y, :
font family not found in Windows font database
Warning in grid.Call.graphics(C_text, as.graphicsAnnot(x$label), x$x, x$y, :
font family not found in Windows font database
Warning in grid.Call.graphics(C_text, as.graphicsAnnot(x$label), x$x, x$y, :
font family not found in Windows font database
Warning in grid.Call.graphics(C_text, as.graphicsAnnot(x$label), x$x, x$y, :
font family not found in Windows font database
Warning in grid.Call.graphics(C_text, as.graphicsAnnot(x$label), x$x, x$y, :
font family not found in Windows font database
This density plot compares grocery prices between Walmart and Target. The red area represents Walmart prices, while the blue area shows Target prices. The graph suggests that Walmart has a higher concentration of lower-priced items around the $2 range, with a sharp peak and a gradual decline, showing a few products priced above $6. In contrast, Target has a more evenly distributed pricing structure, with a peak around $3 and more products priced consistently in the $2 to $4 range. The normal distribution curves indicate that Walmart’s prices are more dispersed, while Target’s prices are clustered closer to the lower range, with fewer high-priced items.
Grocery Costs - Boxplot
theme_set (new = theme_custom ())
Groceries_long %>%
gf_boxplot (prices ~ store,
fill = ~ store
)
Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font
family not found in Windows font database
Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font
family not found in Windows font database
Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font
family not found in Windows font database
Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font
family not found in Windows font database
Warning in grid.Call.graphics(C_text, as.graphicsAnnot(x$label), x$x, x$y, :
font family not found in Windows font database
Warning in grid.Call.graphics(C_text, as.graphicsAnnot(x$label), x$x, x$y, :
font family not found in Windows font database
Warning in grid.Call.graphics(C_text, as.graphicsAnnot(x$label), x$x, x$y, :
font family not found in Windows font database
Warning in grid.Call.graphics(C_text, as.graphicsAnnot(x$label), x$x, x$y, :
font family not found in Windows font database
Warning in grid.Call.graphics(C_text, as.graphicsAnnot(x$label), x$x, x$y, :
font family not found in Windows font database
This boxplot compares the prices of grocery items at Walmart and Target. The boxes represent the interquartile range (IQR) of prices, with the median price indicated by the thick horizontal line within each box. Both stores have a similar median price, with Walmart slightly lower than Target. Walmart’s prices appear to be more tightly clustered around the lower range, while Target has a wider range of prices. There are more outliers (higher-priced items) for both stores, but Target has more extreme price outliers above $6. This suggests that while the general pricing between the two stores is similar, Target has a slightly broader distribution of higher-priced items.
Grocery Costs - Horizontal Bar Plot
theme_set (new = theme_custom ())
Groceries_long %>%
gf_col (fct_reorder (Product, prices) ~ prices,
fill = ~ store,
alpha = 0.5 ,
position = "dodge" ,
xlab = "Prices" ,
ylab = "" ,
title = "Grocery Costs"
) %>%
gf_col (
data =
Groceries_long %>%
filter (
Product == "Quaker Oats Life Cereal Original"
),
fct_reorder (Product, prices) ~ prices,
fill = ~ store,
position = "dodge"
)
Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font
family not found in Windows font database
Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font
family not found in Windows font database
Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font
family not found in Windows font database
Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font
family not found in Windows font database
Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font
family not found in Windows font database
Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font
family not found in Windows font database
Warning in grid.Call.graphics(C_text, as.graphicsAnnot(x$label), x$x, x$y, :
font family not found in Windows font database
Warning in grid.Call.graphics(C_text, as.graphicsAnnot(x$label), x$x, x$y, :
font family not found in Windows font database
Warning in grid.Call.graphics(C_text, as.graphicsAnnot(x$label), x$x, x$y, :
font family not found in Windows font database
Warning in grid.Call.graphics(C_text, as.graphicsAnnot(x$label), x$x, x$y, :
font family not found in Windows font database
Warning in grid.Call.graphics(C_text, as.graphicsAnnot(x$label), x$x, x$y, :
font family not found in Windows font database
The bar plot compares the prices of various grocery items between Walmart and Target. Each product is listed on the y-axis, with the corresponding prices shown on the x-axis. The products are color-coded based on the store, with Walmart represented in red and Target in blue. The graph reveals that prices for similar items vary between the two stores. For example, products like Skittles and Cheez-it Original Baked show notable differences in price, with Target generally having higher prices in some categories while Walmart has higher prices in others. This visual comparison provides an effective way to see which store offers lower prices on particular products. The plot also emphasizes that certain items have similar pricing between both stores, highlighting the competitiveness in pricing strategies.
Difference in mean prices between Walmart and Target
obs_diff_price <- diffmean (prices ~ store,
data = Groceries_long,
only.2 = FALSE
)
obs_diff_price
This calculates the difference in mean prices between two stores (Walmart and Target) using the diffmean function. The result, shown as diffmean = 0.05666667, indicates that the average price difference between the stores is approximately 0.057. This small positive difference suggests that, on average, prices are marginally higher at Target compared to Walmart for the grocery items in the dataset. However, the difference is not substantial, implying that both stores have relatively similar pricing overall.
Checking for Normality
shapiro.test (Groceries$ Walmart)
Shapiro-Wilk normality test
data: Groceries$Walmart
W = 0.78662, p-value = 3.774e-05
shapiro.test (Groceries$ Target)
Shapiro-Wilk normality test
data: Groceries$Target
W = 0.79722, p-value = 5.836e-05
The Shapiro-Wilk normality tests were conducted for both Walmart and Target grocery prices to assess if the data follows a normal distribution. For Walmart, the W-value is 0.78662 with a p-value of 3.774e-05, and for Target, the W-value is 0.79722 with a p-value of 5.836e-05. In both cases, the very small p-values (much less than 0.05) indicate that the prices for groceries at both Walmart and Target do not follow a normal distribution. Therefore, these distributions are likely non-normal, and further analysis might require non-parametric methods or transformations.
Checking for Variances
var.test (Groceries$ Walmart, Groceries$ Target)
F test to compare two variances
data: Groceries$Walmart and Groceries$Target
F = 0.97249, num df = 29, denom df = 29, p-value = 0.9406
alternative hypothesis: true ratio of variances is not equal to 1
95 percent confidence interval:
0.4628695 2.0431908
sample estimates:
ratio of variances
0.9724868
The F-test for comparing the variances between Walmart and Target grocery prices resulted in an F-value of 0.97249 with a p-value of 0.9406. Since the p-value is much greater than 0.05, we fail to reject the null hypothesis, which means there is no significant difference in the variances between the two stores. The ratio of the variances is approximately 0.9725, and the 95% confidence interval ranges from 0.4627 to 2.0439, further confirming that the variance in grocery prices between Walmart and Target is similar.
Paired t-test
mosaic:: t_test (Groceries$ Walmart, Groceries$ Target, paired = TRUE ) %>%
broom:: tidy ()
# A tibble: 1 × 8
estimate statistic p.value parameter conf.low conf.high method alternative
<dbl> <dbl> <dbl> <dbl> <dbl> <dbl> <chr> <chr>
1 -0.0567 -0.470 0.642 29 -0.303 0.190 Paired t-… two.sided
The paired t-test results comparing prices at Walmart and Target show a mean difference of -0.0567, with a t-statistic of -0.4704556 and a p-value of 0.6415488. The confidence interval for the difference ranges from -0.3030159 to 0.1896825. Since the p-value is quite large (greater than 0.05), the results suggest that there is no statistically significant difference between the grocery prices at Walmart and Target. The confidence interval further supports this, as it contains zero, indicating that the mean difference could be negligible or non-existent.
Non-parametric paired Wilcoxon test
## For stability reasons, it may be advisable to use rounded data or to set digits.rank = 7, say,
## such that determination of ties does not depend on very small numeric differences (see the example).
wilcox.test (Groceries$ Walmart, Groceries$ Target,
data = Groceries_long,
digits.rank = 7 , paired = TRUE ,
conf.int = TRUE , conf.level = 0.95
) %>%
broom:: tidy ()
Warning in wilcox.test.default(Groceries$Walmart, Groceries$Target, data =
Groceries_long, : cannot compute exact p-value with ties
Warning in wilcox.test.default(Groceries$Walmart, Groceries$Target, data =
Groceries_long, : cannot compute exact confidence interval with ties
Warning in wilcox.test.default(Groceries$Walmart, Groceries$Target, data =
Groceries_long, : cannot compute exact p-value with zeroes
Warning in wilcox.test.default(Groceries$Walmart, Groceries$Target, data =
Groceries_long, : cannot compute exact confidence interval with zeroes
# A tibble: 1 × 7
estimate statistic p.value conf.low conf.high method alternative
<dbl> <dbl> <dbl> <dbl> <dbl> <chr> <chr>
1 -0.105 95 0.0143 -0.175 -0.0301 Wilcoxon signed ran… two.sided
The non-parametric paired Wilcoxon test compares the grocery prices between Walmart and Target. The test’s p-value is 0.0143, which is significant at a 0.05 level, suggesting that the difference in prices between the two stores is statistically significant. The confidence interval ranges from -0.1750051 to -0.03005987, and the estimate of the effect size is -0.104966. This implies that Walmart’s prices tend to be slightly lower than Target’s, with the test favoring the conclusion that there is a genuine difference between the two.
Using the Linear Model Method
lm (Target - Walmart ~ 1 , data = Groceries) %>%
broom:: tidy (conf.int = TRUE , conf.level = 0.95 )
# A tibble: 1 × 7
term estimate std.error statistic p.value conf.low conf.high
<chr> <dbl> <dbl> <dbl> <dbl> <dbl> <dbl>
1 (Intercept) 0.0567 0.120 0.470 0.642 -0.190 0.303
signed_rank <- function (x) {
sign (x) * rank (abs (x))
}
lm (signed_rank (Target - Walmart) ~ 1 ,
data = Groceries
) %>%
broom:: tidy (conf.int = TRUE , conf.level = 0.95 )
# A tibble: 1 × 7
term estimate std.error statistic p.value conf.low conf.high
<chr> <dbl> <dbl> <dbl> <dbl> <dbl> <dbl>
1 (Intercept) 8.53 2.89 2.95 0.00617 2.63 14.4
The first model computes the difference between Target and Walmart prices directly, resulting in an estimate of around 0.0567, but with a p-value of 0.6415, indicating no statistically significant difference between prices. The second model uses a rank transformation (signed rank) of the price differences.
The second approach produces an estimate of around 8.53, with a highly significant p-value (0.006), suggesting that Target’s prices are notably higher than Walmart’s. The confidence interval for the estimate ranges from 2.625 to 14.44, further confirming this significant difference when using the rank-based method.
This suggests that while a simple linear model does not reveal a significant price difference, a rank-based approach indicates that Target prices tend to be higher than Walmart prices.
Permutation Test
# | layout: [[15, 85, 15]]
theme_set (new = theme_custom ())
polarity <- c (rep (1 , 15 ), rep (- 1 , 15 ))
null_dist_price <- do (9999 ) *
mean (
data = Groceries,
~ (Target - Walmart) *
resample (polarity, replace = TRUE )
)
null_dist_price
mean
1 -1.413333e-01
2 -2.253333e-01
3 -1.193333e-01
4 -1.160000e-01
5 8.733333e-02
6 -1.406667e-01
7 -1.200000e-02
8 -4.800000e-02
9 8.133333e-02
10 1.433333e-01
11 8.333333e-02
12 -4.000000e-02
13 -1.426667e-01
14 -5.466667e-02
15 -1.493333e-01
16 2.206667e-01
17 -1.560000e-01
18 -1.980000e-01
19 1.800000e-02
20 -1.260000e-01
21 1.666667e-02
22 -2.220000e-01
23 1.920000e-01
24 -1.100000e-01
25 -6.533333e-02
26 -1.120000e-01
27 -6.666667e-02
28 9.466667e-02
29 2.000000e-02
30 -1.066667e-01
31 -3.866667e-02
32 2.066667e-02
33 -1.333333e-03
34 -7.133333e-02
35 -2.140000e-01
36 1.546667e-01
37 1.920000e-01
38 9.666667e-02
39 6.933333e-02
40 -9.733333e-02
41 5.533333e-02
42 -6.533333e-02
43 -5.400000e-02
44 1.300000e-01
45 4.533333e-02
46 -4.666667e-03
47 3.333333e-02
48 1.333333e-01
49 1.640000e-01
50 9.533333e-02
51 -7.866667e-02
52 1.700000e-01
53 -1.880000e-01
54 6.666667e-02
55 -1.433333e-01
56 -2.733333e-02
57 -1.840000e-01
58 3.933333e-02
59 1.786667e-01
60 -5.066667e-02
61 1.540000e-01
62 -2.133333e-02
63 1.400000e-02
64 -1.066667e-01
65 1.406667e-01
66 1.400000e-02
67 -4.933333e-02
68 1.393333e-01
69 2.466667e-01
70 1.866667e-02
71 -1.346667e-01
72 6.066667e-02
73 -9.800000e-02
74 1.020000e-01
75 -1.060000e-01
76 -1.080000e-01
77 1.186667e-01
78 -1.453333e-01
79 4.266667e-02
80 -5.266667e-02
81 1.073333e-01
82 -6.866667e-02
83 -6.266667e-02
84 2.133333e-01
85 -1.300000e-01
86 1.300000e-01
87 1.266667e-02
88 1.580000e-01
89 4.333333e-02
90 3.266667e-02
91 4.733333e-02
92 -1.400000e-02
93 -2.920000e-01
94 8.400000e-02
95 -5.533333e-02
96 1.133333e-02
97 6.266667e-02
98 -5.533333e-02
99 -4.733333e-02
100 -7.533333e-02
101 9.933333e-02
102 1.340000e-01
103 -8.266667e-02
104 1.606667e-01
105 -1.160000e-01
106 -5.000000e-02
107 -3.266667e-02
108 -2.266667e-02
109 2.100000e-01
110 1.653333e-01
111 3.333333e-03
112 -5.333333e-02
113 -6.600000e-02
114 1.733333e-02
115 1.680000e-01
116 -2.466667e-01
117 2.333333e-02
118 -2.120000e-01
119 -7.866667e-02
120 -1.780000e-01
121 1.333333e-02
122 1.226667e-01
123 8.933333e-02
124 1.273333e-01
125 -3.933333e-02
126 2.666667e-02
127 -6.133333e-02
128 6.266667e-02
129 2.866667e-02
130 1.666667e-01
131 1.733333e-02
132 1.800000e-02
133 4.200000e-02
134 1.100000e-01
135 9.400000e-02
136 -1.026667e-01
137 -1.066667e-02
138 -1.326667e-01
139 -1.280000e-01
140 -1.133333e-02
141 -1.613333e-01
142 -1.113333e-01
143 -6.000000e-03
144 8.333333e-02
145 1.506667e-01
146 -1.640000e-01
147 2.533333e-02
148 -4.066667e-02
149 3.466667e-02
150 -1.806667e-01
151 5.466667e-02
152 -8.133333e-02
153 -6.000000e-03
154 -7.933333e-02
155 1.333333e-02
156 -1.313333e-01
157 -3.066667e-02
158 4.000000e-03
159 1.133333e-01
160 -6.466667e-02
161 -1.333333e-01
162 -3.266667e-02
163 3.400000e-02
164 7.733333e-02
165 1.253333e-01
166 -1.213333e-01
167 1.933333e-02
168 1.600000e-02
169 -3.133333e-02
170 -8.733333e-02
171 -1.666667e-02
172 -1.273333e-01
173 1.560000e-01
174 -1.686667e-01
175 1.580000e-01
176 -4.666667e-03
177 -4.266667e-02
178 1.706667e-01
179 4.066667e-02
180 -7.266667e-02
181 1.733333e-02
182 -7.066667e-02
183 -1.513333e-01
184 4.733333e-02
185 -9.400000e-02
186 2.466667e-02
187 -1.840000e-01
188 -1.500000e-01
189 7.933333e-02
190 1.533333e-02
191 -4.533333e-02
192 1.540000e-01
193 1.420000e-01
194 1.440000e-01
195 -9.333333e-03
196 8.000000e-02
197 -4.400000e-02
198 9.533333e-02
199 1.333333e-02
200 -4.866667e-02
201 1.526667e-01
202 -1.213333e-01
203 4.533333e-02
204 1.740000e-01
205 -2.106667e-01
206 -5.600000e-02
207 -1.440000e-01
208 -8.400000e-02
209 -5.400000e-02
210 8.866667e-02
211 -1.360000e-01
212 -2.260000e-01
213 1.293333e-01
214 1.420000e-01
215 1.866667e-02
216 -1.526667e-01
217 -1.026667e-01
218 2.020000e-01
219 2.533333e-02
220 -2.133333e-01
221 -1.293333e-01
222 -1.840000e-01
223 -8.733333e-02
224 -8.400000e-02
225 1.000000e-02
226 -1.506667e-01
227 -2.706667e-01
228 -3.933333e-02
229 2.606667e-01
230 9.800000e-02
231 -8.266667e-02
232 1.093333e-01
233 3.200000e-02
234 -1.206667e-01
235 -2.193333e-01
236 -3.066667e-02
237 1.113333e-01
238 -2.253333e-01
239 2.400000e-01
240 1.553333e-01
241 -7.466667e-02
242 -4.666667e-03
243 2.360000e-01
244 1.193333e-01
245 2.733333e-01
246 1.133333e-02
247 -3.733333e-02
248 7.600000e-02
249 -9.200000e-02
250 3.333333e-03
251 1.266667e-01
252 1.140000e-01
253 -2.000000e-02
254 -1.460000e-01
255 -3.133333e-02
256 -8.400000e-02
257 3.400000e-02
258 1.140000e-01
259 8.466667e-02
260 -1.280000e-01
261 -5.600000e-02
262 -2.666667e-02
263 -9.333333e-03
264 -1.486667e-01
265 -9.800000e-02
266 1.100000e-01
267 -1.660000e-01
268 -2.100000e-01
269 1.733333e-01
270 -5.800000e-02
271 -7.400000e-02
272 -1.073333e-01
273 -5.866667e-02
274 1.833333e-01
275 6.733333e-02
276 1.980000e-01
277 -1.053333e-01
278 -4.133333e-02
279 1.166667e-01
280 6.266667e-02
281 -1.453333e-01
282 -8.666667e-02
283 -3.000000e-02
284 2.133333e-02
285 8.666667e-03
286 1.186667e-01
287 -1.720000e-01
288 -1.753333e-01
289 8.000000e-03
290 -1.713333e-01
291 8.666667e-02
292 -1.113333e-01
293 9.600000e-02
294 1.240000e-01
295 8.866667e-02
296 -7.066667e-02
297 -1.006667e-01
298 -1.213333e-01
299 -1.573333e-01
300 1.160000e-01
301 2.806667e-01
302 -5.933333e-02
303 1.046667e-01
304 1.500000e-01
305 -2.020000e-01
306 -1.153333e-01
307 -7.733333e-02
308 1.826667e-01
309 1.873333e-01
310 2.800000e-02
311 -1.680000e-01
312 1.380000e-01
313 7.866667e-02
314 -1.533333e-01
315 -1.193333e-01
316 1.873333e-01
317 6.666667e-03
318 1.053333e-01
319 1.613333e-01
320 9.000000e-02
321 2.800000e-02
322 9.466667e-02
323 2.086667e-01
324 2.200000e-02
325 4.466667e-02
326 -1.626667e-01
327 -9.200000e-02
328 1.573333e-01
329 2.666667e-03
330 -2.866667e-02
331 7.466667e-02
332 -1.173333e-01
333 1.333333e-01
334 7.800000e-02
335 1.866667e-02
336 -1.680000e-01
337 -2.333333e-02
338 -1.333333e-02
339 1.146667e-01
340 -1.193333e-01
341 -1.646667e-01
342 6.800000e-02
343 -6.600000e-02
344 -2.246667e-01
345 -1.226667e-01
346 1.340000e-01
347 1.506667e-01
348 7.200000e-02
349 -2.466667e-02
350 -1.480000e-01
351 -1.513333e-01
352 1.666667e-02
353 -1.060000e-01
354 -1.273333e-01
355 -4.600000e-02
356 1.433333e-01
357 9.466667e-02
358 -1.226667e-01
359 -1.100000e-01
360 -1.566667e-01
361 2.266667e-02
362 1.940000e-01
363 8.066667e-02
364 9.266667e-02
365 3.400000e-02
366 6.333333e-02
367 -1.533333e-02
368 -1.260000e-01
369 1.053333e-01
370 3.933333e-02
371 -1.640000e-01
372 -2.146667e-01
373 -2.733333e-02
374 1.400000e-02
375 -1.773333e-01
376 -2.066667e-01
377 -2.133333e-02
378 -1.546667e-01
379 7.666667e-02
380 -1.246667e-01
381 -2.066667e-02
382 -1.166667e-01
383 -7.266667e-02
384 -1.553333e-01
385 -1.326667e-01
386 8.200000e-02
387 -1.060000e-01
388 1.200000e-01
389 -2.140000e-01
390 -8.666667e-02
391 -5.066667e-02
392 -1.700000e-01
393 -2.300000e-01
394 -1.653333e-01
395 -9.333333e-03
396 2.033333e-01
397 5.200000e-02
398 1.153333e-01
399 8.133333e-02
400 -2.026667e-01
401 -2.133333e-01
402 -2.386667e-01
403 -1.040000e-01
404 -1.706667e-01
405 1.853333e-01
406 1.400000e-02
407 -1.366667e-01
408 2.006667e-01
409 -2.266667e-01
410 -1.166667e-01
411 2.800000e-02
412 -1.473333e-01
413 1.460000e-01
414 -8.466667e-02
415 -6.866667e-02
416 1.200000e-01
417 1.466667e-02
418 1.113333e-01
419 -6.000000e-02
420 -1.380000e-01
421 1.173333e-01
422 -3.400000e-02
423 -2.220971e-17
424 3.133333e-02
425 -1.006667e-01
426 2.733333e-02
427 1.320000e-01
428 6.400000e-02
429 1.813333e-01
430 4.066667e-02
431 2.140000e-01
432 1.133333e-01
433 -2.193333e-01
434 2.353333e-01
435 -9.600000e-02
436 4.000000e-03
437 1.060000e-01
438 1.246667e-01
439 7.066667e-02
440 1.293333e-01
441 8.600000e-02
442 3.333333e-02
443 5.733333e-02
444 4.333333e-02
445 7.600000e-02
446 -1.013333e-01
447 1.373333e-01
448 -2.293333e-01
449 -8.000000e-03
450 1.133333e-02
451 7.333333e-02
452 1.066667e-02
453 1.813333e-01
454 -1.126667e-01
455 -4.466667e-02
456 1.360000e-01
457 1.713333e-01
458 1.506667e-01
459 -8.733333e-02
460 1.693333e-01
461 -1.613333e-01
462 -4.800000e-02
463 -2.326667e-01
464 -1.133333e-02
465 1.166667e-01
466 -1.400000e-02
467 -9.066667e-02
468 5.733333e-02
469 1.866667e-01
470 -9.333333e-02
471 -1.560000e-01
472 -1.580000e-01
473 -7.066667e-02
474 3.733333e-02
475 1.886667e-01
476 1.513333e-01
477 2.233333e-01
478 1.226667e-01
479 8.200000e-02
480 -1.240000e-01
481 -2.733333e-02
482 2.466667e-02
483 -4.133333e-02
484 -4.133333e-02
485 2.600000e-02
486 -1.433333e-01
487 -7.933333e-02
488 1.706667e-01
489 2.080000e-01
490 -2.200000e-02
491 1.693333e-01
492 1.266667e-02
493 -3.333333e-03
494 -2.400000e-02
495 -2.466667e-01
496 1.673333e-01
497 3.333333e-03
498 4.666667e-03
499 6.600000e-02
500 -9.066667e-02
501 1.526667e-01
502 -3.200000e-02
503 1.126667e-01
504 2.166667e-01
505 -2.733333e-02
506 8.000000e-03
507 2.240000e-01
508 -6.133333e-02
509 4.400000e-02
510 -5.466667e-02
511 4.133333e-02
512 -3.666667e-02
513 1.460000e-01
514 9.466667e-02
515 -1.740000e-01
516 -5.733333e-02
517 -1.620000e-01
518 -5.333333e-02
519 -5.933333e-02
520 1.880000e-01
521 8.000000e-02
522 -1.246667e-01
523 5.000000e-02
524 4.266667e-02
525 -1.006667e-01
526 -1.846667e-01
527 -6.600000e-02
528 -2.726667e-01
529 -1.846667e-01
530 -3.800000e-02
531 -2.933333e-02
532 1.926667e-01
533 -1.013333e-01
534 -2.113333e-01
535 -1.933333e-02
536 1.113333e-01
537 4.066667e-02
538 1.673333e-01
539 -1.733333e-02
540 6.666667e-03
541 -1.866667e-02
542 4.933333e-02
543 6.066667e-02
544 -1.553333e-01
545 1.386667e-01
546 1.433333e-01
547 -7.600000e-02
548 -1.580000e-01
549 9.533333e-02
550 -1.200000e-01
551 1.533333e-02
552 4.200000e-02
553 1.480000e-01
554 -9.333333e-02
555 -1.146667e-01
556 -2.733333e-02
557 -1.660000e-01
558 1.766667e-01
559 1.173333e-01
560 -1.593333e-01
561 -1.120000e-01
562 -1.266667e-01
563 -8.000000e-02
564 1.673333e-01
565 -1.606667e-01
566 1.133333e-02
567 2.533333e-02
568 2.473333e-01
569 8.000000e-02
570 -6.733333e-02
571 -1.160000e-01
572 -1.653333e-01
573 -8.800000e-02
574 -5.933333e-02
575 -7.533333e-02
576 -1.060000e-01
577 2.666667e-03
578 1.546667e-01
579 1.213333e-01
580 1.286667e-01
581 1.553333e-01
582 1.013333e-01
583 -2.400000e-02
584 -8.666667e-03
585 -2.221333e-17
586 -7.400000e-02
587 -3.066667e-02
588 -6.333333e-02
589 1.406667e-01
590 6.733333e-02
591 2.400000e-02
592 1.120000e-01
593 2.000000e-03
594 5.400000e-02
595 1.320000e-01
596 1.533333e-01
597 -1.413333e-01
598 -1.046667e-01
599 -1.353333e-01
600 -1.500000e-01
601 1.166667e-01
602 1.333333e-02
603 -1.413333e-01
604 3.000000e-02
605 -1.133333e-01
606 -2.160000e-01
607 -1.573333e-01
608 -9.733333e-02
609 -1.106667e-01
610 -7.066667e-02
611 -5.333333e-03
612 1.713333e-01
613 -1.306667e-01
614 1.106667e-01
615 1.573333e-01
616 1.706667e-01
617 1.686667e-01
618 -2.193333e-01
619 1.273333e-01
620 1.886667e-01
621 5.733333e-02
622 1.666667e-02
623 -1.606667e-01
624 1.173333e-01
625 6.666667e-03
626 -1.980000e-01
627 5.400000e-02
628 3.466667e-02
629 -1.213333e-01
630 -1.740000e-01
631 -1.073333e-01
632 -1.666667e-02
633 -8.733333e-02
634 1.300000e-01
635 -1.133333e-02
636 6.333333e-02
637 -9.733333e-02
638 5.933333e-02
639 2.600000e-02
640 -9.200000e-02
641 -1.213333e-01
642 1.220000e-01
643 1.100000e-01
644 2.000000e-02
645 4.133333e-02
646 2.140000e-01
647 1.400000e-02
648 -5.866667e-02
649 -5.800000e-02
650 7.800000e-02
651 5.733333e-02
652 -3.333333e-02
653 1.820000e-01
654 2.060000e-01
655 2.333333e-02
656 -1.533333e-01
657 4.533333e-02
658 -8.133333e-02
659 -4.000000e-03
660 -8.933333e-02
661 -2.133333e-01
662 -1.573333e-01
663 2.086667e-01
664 1.706667e-01
665 1.200000e-02
666 -2.800000e-02
667 5.600000e-02
668 4.533333e-02
669 -6.666667e-02
670 3.333333e-03
671 1.246667e-01
672 1.073333e-01
673 -1.306667e-01
674 -1.873333e-01
675 5.866667e-02
676 -2.033333e-01
677 9.333333e-02
678 -1.200000e-02
679 8.266667e-02
680 -1.373333e-01
681 5.400000e-02
682 2.280000e-01
683 -1.033333e-01
684 -1.246667e-01
685 -1.426667e-01
686 1.486667e-01
687 -8.066667e-02
688 -4.733333e-02
689 7.533333e-02
690 4.666667e-02
691 3.333333e-03
692 5.600000e-02
693 -1.526667e-01
694 1.353333e-01
695 3.333333e-02
696 1.746667e-01
697 7.733333e-02
698 4.066667e-02
699 1.340000e-01
700 -1.720000e-01
701 1.206667e-01
702 1.633333e-01
703 -1.046667e-01
704 -2.013333e-01
705 1.886667e-01
706 1.353333e-01
707 1.580000e-01
708 -1.266667e-01
709 -1.213333e-01
710 1.240000e-01
711 1.300000e-01
712 1.600000e-02
713 1.693333e-01
714 1.853333e-01
715 -1.673333e-01
716 1.480000e-01
717 2.333333e-02
718 1.746667e-01
719 3.533333e-02
720 9.333333e-03
721 2.800000e-02
722 1.353333e-01
723 -1.773333e-01
724 -9.933333e-02
725 6.400000e-02
726 8.733333e-02
727 1.740000e-01
728 -5.800000e-02
729 -1.300000e-01
730 1.300000e-01
731 1.566667e-01
732 3.000000e-02
733 -3.333333e-03
734 -1.680000e-01
735 1.146667e-01
736 9.066667e-02
737 -1.333333e-02
738 6.000000e-03
739 8.800000e-02
740 1.493333e-01
741 -1.020000e-01
742 4.333333e-02
743 2.200000e-02
744 -1.186667e-01
745 7.666667e-02
746 8.000000e-03
747 1.560000e-01
748 -1.420000e-01
749 1.880000e-01
750 3.866667e-02
751 2.060000e-01
752 4.666667e-03
753 6.066667e-02
754 -1.806667e-01
755 -8.066667e-02
756 -1.000000e-02
757 -6.333333e-02
758 -8.733333e-02
759 -9.133333e-02
760 7.400000e-02
761 1.593333e-01
762 1.940000e-01
763 -1.060000e-01
764 -4.466667e-02
765 8.133333e-02
766 1.406667e-01
767 6.533333e-02
768 1.973333e-01
769 -7.066667e-02
770 -2.386667e-01
771 2.026667e-01
772 1.740000e-01
773 -8.066667e-02
774 -7.933333e-02
775 1.600000e-02
776 -2.106667e-01
777 -5.333333e-02
778 1.333333e-02
779 -3.333333e-03
780 -7.733333e-02
781 2.400000e-02
782 -4.200000e-02
783 -4.933333e-02
784 -1.140000e-01
785 8.400000e-02
786 2.073333e-01
787 -3.333333e-02
788 3.400000e-02
789 5.266667e-02
790 6.000000e-02
791 -1.813333e-01
792 -1.140000e-01
793 1.613333e-01
794 9.866667e-02
795 6.400000e-02
796 2.273333e-01
797 -1.886667e-01
798 -2.033333e-01
799 -1.646667e-01
800 9.933333e-02
801 -1.853333e-01
802 -1.100000e-01
803 -1.200000e-01
804 2.800000e-02
805 9.733333e-02
806 8.333333e-02
807 -2.266667e-02
808 -4.133333e-02
809 -1.646667e-01
810 -1.566667e-01
811 1.146667e-01
812 -7.866667e-02
813 -2.306667e-01
814 2.446667e-01
815 -1.733333e-02
816 3.066667e-02
817 3.733333e-02
818 -5.733333e-02
819 -2.200000e-02
820 1.000000e-01
821 -1.060000e-01
822 -5.200000e-02
823 -6.800000e-02
824 -1.866667e-02
825 1.060000e-01
826 1.393333e-01
827 -3.066667e-02
828 7.733333e-02
829 -6.800000e-02
830 -6.600000e-02
831 1.146667e-01
832 1.666667e-01
833 3.533333e-02
834 -3.066667e-02
835 1.340000e-01
836 9.000000e-02
837 -1.766667e-01
838 -6.866667e-02
839 -2.193333e-01
840 -2.933333e-02
841 -1.700000e-01
842 1.380000e-01
843 9.066667e-02
844 -6.133333e-02
845 -1.626667e-01
846 2.200000e-02
847 -1.066667e-01
848 -1.073333e-01
849 6.600000e-02
850 -3.933333e-02
851 -7.933333e-02
852 9.600000e-02
853 -5.666667e-02
854 -2.220000e-01
855 -1.240000e-01
856 6.400000e-02
857 -3.866667e-02
858 7.600000e-02
859 -3.333333e-02
860 6.466667e-02
861 -2.666667e-03
862 -1.220000e-01
863 1.073333e-01
864 1.126667e-01
865 5.066667e-02
866 2.173333e-01
867 -4.933333e-02
868 3.333333e-02
869 -7.400000e-02
870 2.533333e-02
871 -8.400000e-02
872 1.333333e-03
873 1.300000e-01
874 -1.446667e-01
875 1.913333e-01
876 -2.113333e-01
877 -1.800000e-02
878 -1.093333e-01
879 7.066667e-02
880 -6.133333e-02
881 -1.120000e-01
882 -1.566667e-01
883 1.500000e-01
884 -1.266667e-01
885 -1.966667e-01
886 -4.600000e-02
887 -1.400000e-02
888 6.666667e-03
889 -1.233333e-01
890 -1.293333e-01
891 1.800000e-02
892 9.133333e-02
893 -6.733333e-02
894 -6.400000e-02
895 -1.333333e-01
896 1.033333e-01
897 1.406667e-01
898 3.400000e-02
899 -3.666667e-02
900 8.466667e-02
901 -5.333333e-02
902 -1.613333e-01
903 -7.666667e-02
904 1.486667e-01
905 2.113333e-01
906 2.733333e-02
907 -2.266667e-01
908 9.533333e-02
909 -1.426667e-01
910 -1.840000e-01
911 -3.400000e-02
912 4.666667e-02
913 2.206667e-01
914 3.600000e-02
915 -5.933333e-02
916 -5.600000e-02
917 1.286667e-01
918 1.166667e-01
919 -1.933333e-01
920 -4.666667e-03
921 2.333333e-02
922 -8.866667e-02
923 -9.533333e-02
924 -4.266667e-02
925 -1.600000e-02
926 1.466667e-02
927 6.333333e-02
928 -6.000000e-03
929 9.733333e-02
930 1.866667e-01
931 1.840000e-01
932 1.673333e-01
933 1.066667e-01
934 -1.133333e-02
935 -1.466667e-02
936 -2.106667e-01
937 -1.313333e-01
938 -2.400000e-02
939 8.266667e-02
940 -1.273333e-01
941 -1.293333e-01
942 4.533333e-02
943 7.333333e-03
944 -2.466667e-02
945 -2.666667e-03
946 -5.800000e-02
947 5.666667e-02
948 -3.000000e-02
949 -1.493333e-01
950 -1.046667e-01
951 7.000000e-02
952 -1.506667e-01
953 1.073333e-01
954 6.866667e-02
955 -6.400000e-02
956 -1.680000e-01
957 2.866667e-02
958 2.933333e-02
959 -5.933333e-02
960 1.166667e-01
961 4.933333e-02
962 3.666667e-02
963 9.600000e-02
964 1.773333e-01
965 -4.533333e-02
966 -9.466667e-02
967 2.366667e-01
968 2.486667e-01
969 -1.646667e-01
970 -9.533333e-02
971 2.193333e-01
972 2.046667e-01
973 -1.086667e-01
974 1.193333e-01
975 2.466667e-02
976 9.000000e-02
977 5.133333e-02
978 7.666667e-02
979 -9.466667e-02
980 2.933333e-02
981 -2.933333e-02
982 -1.540000e-01
983 -1.080000e-01
984 9.866667e-02
985 1.253333e-01
986 -1.993333e-01
987 9.333333e-02
988 3.800000e-02
989 -1.646667e-01
990 1.860000e-01
991 -1.420000e-01
992 3.533333e-02
993 1.193333e-01
994 9.066667e-02
995 1.166667e-01
996 4.533333e-02
997 -5.466667e-02
998 -8.266667e-02
999 -4.600000e-02
1000 -1.893333e-01
1001 7.066667e-02
1002 -7.933333e-02
1003 -2.866667e-02
1004 1.460000e-01
1005 -6.666667e-02
1006 1.526667e-01
1007 -1.946667e-01
1008 2.313333e-01
1009 3.200000e-02
1010 -6.400000e-02
1011 -6.266667e-02
1012 -2.466667e-02
1013 -6.666667e-02
1014 1.340000e-01
1015 2.466667e-02
1016 -6.333333e-02
1017 6.666667e-03
1018 -1.566667e-01
1019 -1.653333e-01
1020 -1.740000e-01
1021 -2.620000e-01
1022 -7.866667e-02
1023 -1.233333e-01
1024 9.266667e-02
1025 -5.466667e-02
1026 -1.520000e-01
1027 -5.800000e-02
1028 -1.200000e-02
1029 1.320000e-01
1030 1.713333e-01
1031 1.400000e-02
1032 -1.500000e-01
1033 -2.400000e-02
1034 -9.266667e-02
1035 3.933333e-02
1036 -1.560000e-01
1037 -1.146667e-01
1038 8.400000e-02
1039 -8.066667e-02
1040 -1.433333e-01
1041 -5.333333e-02
1042 2.260000e-01
1043 1.940000e-01
1044 2.100000e-01
1045 1.360000e-01
1046 -1.880000e-01
1047 1.026667e-01
1048 -2.866667e-02
1049 -1.060000e-01
1050 -1.713333e-01
1051 -1.580000e-01
1052 4.466667e-02
1053 -1.793333e-01
1054 -1.473333e-01
1055 -7.533333e-02
1056 1.600000e-01
1057 -1.626667e-01
1058 1.986667e-01
1059 1.233333e-01
1060 -8.066667e-02
1061 3.400000e-02
1062 -4.133333e-02
1063 1.126667e-01
1064 1.260000e-01
1065 9.666667e-02
1066 1.333333e-01
1067 1.286667e-01
1068 6.400000e-02
1069 -7.400000e-02
1070 -3.333333e-02
1071 1.953333e-01
1072 -2.453333e-01
1073 -9.200000e-02
1074 -2.700000e-01
1075 1.153333e-01
1076 -1.333333e-01
1077 -5.600000e-02
1078 1.860000e-01
1079 9.866667e-02
1080 -5.333333e-02
1081 -2.133333e-02
1082 6.066667e-02
1083 -1.073333e-01
1084 -7.000000e-02
1085 -4.066667e-02
1086 1.920000e-01
1087 -6.000000e-02
1088 1.180000e-01
1089 -9.600000e-02
1090 2.800000e-02
1091 3.533333e-02
1092 1.433333e-01
1093 1.340000e-01
1094 -2.060000e-01
1095 7.266667e-02
1096 5.866667e-02
1097 -7.200000e-02
1098 -9.933333e-02
1099 -6.133333e-02
1100 -1.460000e-01
1101 1.633333e-01
1102 2.240000e-01
1103 -9.000000e-02
1104 -2.600000e-02
1105 4.866667e-02
1106 1.200000e-02
1107 2.533333e-02
1108 1.740000e-01
1109 -1.526667e-01
1110 6.733333e-02
1111 2.733333e-02
1112 -7.666667e-02
1113 -2.200000e-02
1114 -2.066667e-01
1115 -3.600000e-02
1116 2.266667e-01
1117 2.333333e-02
1118 1.933333e-02
1119 4.066667e-02
1120 -1.146667e-01
1121 -1.180000e-01
1122 -5.200000e-02
1123 1.586667e-01
1124 2.666667e-03
1125 3.666667e-02
1126 -2.226667e-01
1127 4.933333e-02
1128 -1.693333e-01
1129 -1.666667e-01
1130 -1.400000e-01
1131 2.800000e-02
1132 -2.040000e-01
1133 4.400000e-02
1134 9.933333e-02
1135 1.413333e-01
1136 -7.666667e-02
1137 1.900000e-01
1138 -1.206667e-01
1139 -3.000000e-02
1140 7.733333e-02
1141 2.400000e-02
1142 -1.960000e-01
1143 -4.400000e-02
1144 -1.480000e-01
1145 2.006667e-01
1146 2.386667e-01
1147 2.113333e-01
1148 -4.000000e-03
1149 5.000000e-02
1150 1.206667e-01
1151 -9.800000e-02
1152 6.933333e-02
1153 8.533333e-02
1154 -1.440000e-01
1155 -1.753333e-01
1156 -2.466667e-02
1157 -1.386667e-01
1158 -6.200000e-02
1159 -7.066667e-02
1160 -1.226667e-01
1161 -1.326667e-01
1162 -1.840000e-01
1163 1.146667e-01
1164 4.066667e-02
1165 -5.333333e-03
1166 -1.400000e-02
1167 -1.166667e-01
1168 8.600000e-02
1169 -1.346667e-01
1170 -1.260000e-01
1171 -1.113333e-01
1172 -1.200000e-01
1173 -1.646667e-01
1174 7.133333e-02
1175 -1.666667e-01
1176 1.473333e-01
1177 1.533333e-02
1178 9.800000e-02
1179 -9.666667e-02
1180 1.666667e-01
1181 -1.693333e-01
1182 1.153333e-01
1183 -1.473333e-01
1184 -1.753333e-01
1185 -1.880000e-01
1186 2.380000e-01
1187 -1.733333e-02
1188 9.733333e-02
1189 -7.600000e-02
1190 1.746667e-01
1191 -1.340000e-01
1192 2.086667e-01
1193 1.000000e-01
1194 -2.200000e-01
1195 4.666667e-02
1196 1.186667e-01
1197 -1.546667e-01
1198 6.200000e-02
1199 -1.186667e-01
1200 7.866667e-02
1201 -2.800000e-02
1202 9.000000e-02
1203 2.333333e-02
1204 -2.666667e-02
1205 6.000000e-02
1206 2.333333e-02
1207 1.360000e-01
1208 1.666667e-01
1209 9.133333e-02
1210 -2.440000e-01
1211 1.480000e-01
1212 -1.226667e-01
1213 2.006667e-01
1214 1.686667e-01
1215 3.600000e-02
1216 -1.653333e-01
1217 -9.266667e-02
1218 -2.800000e-02
1219 -9.533333e-02
1220 1.840000e-01
1221 6.266667e-02
1222 6.466667e-02
1223 -1.426667e-01
1224 -1.193333e-01
1225 -2.000000e-02
1226 -1.840000e-01
1227 1.173333e-01
1228 1.466667e-02
1229 -1.026667e-01
1230 6.600000e-02
1231 8.066667e-02
1232 -2.533333e-02
1233 1.466667e-01
1234 -9.400000e-02
1235 8.266667e-02
1236 1.433333e-01
1237 2.800000e-02
1238 4.866667e-02
1239 6.933333e-02
1240 1.420000e-01
1241 -1.346667e-01
1242 -5.800000e-02
1243 1.300000e-01
1244 -5.000000e-02
1245 4.066667e-02
1246 -1.000000e-02
1247 -1.500000e-01
1248 1.000000e-01
1249 -4.600000e-02
1250 3.000000e-02
1251 -8.000000e-03
1252 2.666667e-03
1253 1.046667e-01
1254 1.200000e-02
1255 1.993333e-01
1256 4.333333e-02
1257 1.806667e-01
1258 1.420000e-01
1259 1.380000e-01
1260 -3.400000e-02
1261 -1.146667e-01
1262 9.600000e-02
1263 -1.500000e-01
1264 1.566667e-01
1265 2.300000e-01
1266 1.286667e-01
1267 -3.466667e-02
1268 -7.933333e-02
1269 1.653333e-01
1270 -1.220000e-01
1271 5.666667e-02
1272 1.553333e-01
1273 1.600000e-02
1274 -2.466667e-02
1275 -1.353333e-01
1276 -2.260000e-01
1277 7.533333e-02
1278 -1.600000e-01
1279 -1.360000e-01
1280 1.406667e-01
1281 7.200000e-02
1282 1.113333e-01
1283 6.666667e-03
1284 5.400000e-02
1285 1.000000e-01
1286 5.266667e-02
1287 7.066667e-02
1288 -1.686667e-01
1289 6.000000e-03
1290 -9.333333e-02
1291 5.800000e-02
1292 5.266667e-02
1293 8.400000e-02
1294 1.013333e-01
1295 -2.666667e-02
1296 -1.706667e-01
1297 -4.333333e-02
1298 5.800000e-02
1299 7.866667e-02
1300 4.866667e-02
1301 3.400000e-02
1302 2.333333e-02
1303 -3.066667e-02
1304 1.100000e-01
1305 9.400000e-02
1306 -6.666667e-04
1307 6.466667e-02
1308 -1.993333e-01
1309 2.226667e-01
1310 1.593333e-01
1311 2.106667e-01
1312 1.760000e-01
1313 -7.066667e-02
1314 -6.066667e-02
1315 -1.240000e-01
1316 3.600000e-02
1317 -1.253333e-01
1318 -7.866667e-02
1319 5.533333e-02
1320 1.740000e-01
1321 1.706667e-01
1322 3.466667e-02
1323 1.260000e-01
1324 -6.400000e-02
1325 7.600000e-02
1326 -6.666667e-02
1327 4.800000e-02
1328 4.200000e-02
1329 -1.633333e-01
1330 1.200000e-01
1331 -5.266667e-02
1332 2.600000e-02
1333 -7.400000e-02
1334 1.340000e-01
1335 1.760000e-01
1336 -2.253333e-01
1337 1.020000e-01
1338 1.340000e-01
1339 -6.733333e-02
1340 -8.666667e-03
1341 1.020000e-01
1342 -1.040000e-01
1343 -5.000000e-02
1344 1.380000e-01
1345 1.240000e-01
1346 -1.106667e-01
1347 -1.560000e-01
1348 2.333333e-02
1349 -7.000000e-02
1350 1.346667e-01
1351 1.880000e-01
1352 1.546667e-01
1353 6.533333e-02
1354 -3.866667e-02
1355 -1.420000e-01
1356 1.466667e-01
1357 2.266667e-02
1358 2.466667e-01
1359 -1.960000e-01
1360 1.113333e-01
1361 7.800000e-02
1362 -1.146667e-01
1363 4.466667e-02
1364 -1.653333e-01
1365 -8.866667e-02
1366 -1.833333e-01
1367 -4.800000e-02
1368 -2.466667e-02
1369 -1.920000e-01
1370 1.653333e-01
1371 -1.026667e-01
1372 -2.120000e-01
1373 -1.053333e-01
1374 4.000000e-02
1375 -1.780000e-01
1376 -8.000000e-02
1377 -1.973333e-01
1378 -2.866667e-02
1379 1.573333e-01
1380 1.626667e-01
1381 -1.506667e-01
1382 3.733333e-02
1383 -2.733333e-02
1384 3.600000e-02
1385 -8.866667e-02
1386 -4.666667e-03
1387 -7.733333e-02
1388 1.640000e-01
1389 1.140000e-01
1390 -8.866667e-02
1391 1.046667e-01
1392 -6.466667e-02
1393 6.666667e-02
1394 -3.800000e-02
1395 2.053333e-01
1396 1.133333e-01
1397 1.533333e-02
1398 -4.533333e-02
1399 8.200000e-02
1400 -6.533333e-02
1401 7.733333e-02
1402 1.253333e-01
1403 -5.933333e-02
1404 -8.866667e-02
1405 -1.446667e-01
1406 -1.266667e-01
1407 -4.866667e-02
1408 -2.600000e-02
1409 -2.333333e-02
1410 -2.066667e-02
1411 1.493333e-01
1412 -1.066667e-01
1413 -1.553333e-01
1414 -8.000000e-03
1415 9.533333e-02
1416 -4.400000e-02
1417 1.760000e-01
1418 -6.666667e-04
1419 8.666667e-03
1420 2.106667e-01
1421 -1.180000e-01
1422 -9.533333e-02
1423 -2.173333e-01
1424 1.473333e-01
1425 -2.333333e-02
1426 -5.466667e-02
1427 4.266667e-02
1428 -7.066667e-02
1429 -1.173333e-01
1430 -1.780000e-01
1431 4.266667e-02
1432 -1.793333e-01
1433 -3.800000e-02
1434 2.733333e-02
1435 -1.060000e-01
1436 1.933333e-02
1437 -2.253333e-01
1438 3.600000e-02
1439 -9.666667e-02
1440 -1.546667e-01
1441 -2.420000e-01
1442 -9.200000e-02
1443 -1.706667e-01
1444 5.066667e-02
1445 -8.066667e-02
1446 -7.333333e-02
1447 -1.666667e-01
1448 8.200000e-02
1449 -5.600000e-02
1450 -4.133333e-02
1451 9.666667e-02
1452 -5.866667e-02
1453 1.873333e-01
1454 -1.746667e-01
1455 9.066667e-02
1456 -1.013333e-01
1457 -7.866667e-02
1458 -1.313333e-01
1459 4.333333e-02
1460 -2.113333e-01
1461 1.280000e-01
1462 1.060000e-01
1463 -4.000000e-02
1464 -1.226667e-01
1465 4.133333e-02
1466 6.666667e-04
1467 4.666667e-02
1468 -1.733333e-01
1469 1.386667e-01
1470 -1.960000e-01
1471 1.980000e-01
1472 1.333333e-01
1473 -1.020000e-01
1474 1.000000e-01
1475 -8.400000e-02
1476 -4.266667e-02
1477 8.400000e-02
1478 -1.506667e-01
1479 -1.600000e-02
1480 1.180000e-01
1481 1.826667e-01
1482 -4.800000e-02
1483 1.233333e-01
1484 -3.000000e-02
1485 1.213333e-01
1486 7.000000e-02
1487 1.533333e-01
1488 -6.666667e-04
1489 -9.666667e-02
1490 4.200000e-02
1491 -1.166667e-01
1492 9.800000e-02
1493 8.000000e-02
1494 -4.666667e-02
1495 -2.200000e-02
1496 4.000000e-03
1497 -9.533333e-02
1498 5.133333e-02
1499 1.626667e-01
1500 -1.200000e-02
1501 -9.000000e-02
1502 -1.693333e-01
1503 -1.333333e-03
1504 -1.466667e-01
1505 2.253333e-01
1506 -1.113333e-01
1507 -5.266667e-02
1508 8.733333e-02
1509 8.533333e-02
1510 -1.086667e-01
1511 -1.313333e-01
1512 -5.400000e-02
1513 -3.333333e-02
1514 -5.200000e-02
1515 -1.020000e-01
1516 1.933333e-02
1517 1.900000e-01
1518 -4.800000e-02
1519 1.526667e-01
1520 1.140000e-01
1521 2.666667e-03
1522 8.866667e-02
1523 4.533333e-02
1524 9.533333e-02
1525 2.206667e-01
1526 3.200000e-02
1527 -6.666667e-03
1528 1.733333e-02
1529 -2.260000e-01
1530 1.466667e-02
1531 1.040000e-01
1532 1.026667e-01
1533 -8.600000e-02
1534 -2.273333e-01
1535 -1.326667e-01
1536 -5.333333e-02
1537 1.460000e-01
1538 -3.133333e-02
1539 -5.733333e-02
1540 -1.100000e-01
1541 8.533333e-02
1542 -3.533333e-02
1543 -1.153333e-01
1544 -1.740000e-01
1545 2.666667e-03
1546 -1.513333e-01
1547 1.426667e-01
1548 2.006667e-01
1549 6.000000e-02
1550 -5.466667e-02
1551 5.333333e-03
1552 6.666667e-04
1553 1.200000e-01
1554 1.253333e-01
1555 1.713333e-01
1556 2.666667e-02
1557 -9.400000e-02
1558 9.133333e-02
1559 -4.000000e-02
1560 -4.200000e-02
1561 1.200000e-02
1562 3.800000e-02
1563 -1.853333e-01
1564 -2.066667e-02
1565 -1.666667e-01
1566 -1.686667e-01
1567 1.333333e-02
1568 -1.120000e-01
1569 -2.266667e-02
1570 -1.053333e-01
1571 5.600000e-02
1572 -6.466667e-02
1573 -1.933333e-01
1574 -4.800000e-02
1575 -9.733333e-02
1576 5.533333e-02
1577 -2.380000e-01
1578 8.800000e-02
1579 1.000000e-02
1580 1.106667e-01
1581 -1.066667e-02
1582 -1.266667e-02
1583 7.933333e-02
1584 3.200000e-02
1585 3.733333e-02
1586 1.426667e-01
1587 -4.666667e-03
1588 -1.000000e-01
1589 2.133333e-02
1590 -1.233333e-01
1591 7.000000e-02
1592 -1.466667e-02
1593 1.800000e-02
1594 1.933333e-02
1595 8.000000e-03
1596 -2.726667e-01
1597 -2.106667e-01
1598 -5.533333e-02
1599 3.666667e-02
1600 -3.933333e-02
1601 8.200000e-02
1602 -1.526667e-01
1603 1.720000e-01
1604 -1.600000e-02
1605 1.706667e-01
1606 -1.726667e-01
1607 -1.233333e-01
1608 5.533333e-02
1609 -1.473333e-01
1610 -3.466667e-02
1611 -1.060000e-01
1612 1.120000e-01
1613 -6.533333e-02
1614 -2.326667e-01
1615 4.466667e-02
1616 -2.313333e-01
1617 8.600000e-02
1618 -1.220000e-01
1619 -1.186667e-01
1620 -1.886667e-01
1621 -1.933333e-02
1622 -2.933333e-02
1623 -1.920000e-01
1624 1.566667e-01
1625 -1.933333e-02
1626 -1.633333e-01
1627 8.333333e-02
1628 -1.040000e-01
1629 -7.600000e-02
1630 -7.133333e-02
1631 3.333333e-03
1632 8.533333e-02
1633 -8.866667e-02
1634 -9.800000e-02
1635 1.813333e-01
1636 -1.293333e-01
1637 2.733333e-02
1638 -1.473333e-01
1639 -3.533333e-02
1640 -4.133333e-02
1641 1.506667e-01
1642 6.000000e-02
1643 1.353333e-01
1644 -1.920000e-01
1645 8.933333e-02
1646 1.306667e-01
1647 -2.166667e-01
1648 9.466667e-02
1649 -2.533333e-02
1650 -9.400000e-02
1651 1.993333e-01
1652 -3.600000e-02
1653 -1.286667e-01
1654 -1.800000e-02
1655 -1.806667e-01
1656 -1.046667e-01
1657 -1.933333e-01
1658 3.933333e-02
1659 -6.666667e-04
1660 2.000000e-03
1661 -1.040000e-01
1662 -1.153333e-01
1663 4.200000e-02
1664 1.580000e-01
1665 -1.260000e-01
1666 4.200000e-02
1667 9.733333e-02
1668 -8.666667e-02
1669 1.573333e-01
1670 -1.266667e-01
1671 -1.486667e-01
1672 -1.793333e-01
1673 1.120000e-01
1674 -1.333333e-02
1675 2.553333e-01
1676 1.346667e-01
1677 -2.800000e-02
1678 -6.866667e-02
1679 -1.993333e-01
1680 1.120000e-01
1681 2.400000e-02
1682 9.066667e-02
1683 -1.466667e-01
1684 -7.733333e-02
1685 -1.666667e-02
1686 6.933333e-02
1687 -1.206667e-01
1688 -1.260000e-01
1689 -1.266667e-02
1690 -1.626667e-01
1691 1.200000e-01
1692 1.966667e-01
1693 -1.306667e-01
1694 -8.800000e-02
1695 1.633333e-01
1696 -1.406667e-01
1697 1.773333e-01
1698 -1.066667e-02
1699 1.086667e-01
1700 1.660000e-01
1701 -2.000000e-01
1702 -1.000000e-01
1703 4.800000e-02
1704 -7.333333e-02
1705 -2.466667e-02
1706 3.600000e-02
1707 -1.926667e-01
1708 -2.280000e-01
1709 2.546667e-01
1710 1.326667e-01
1711 1.426667e-01
1712 -1.040000e-01
1713 1.866667e-01
1714 6.533333e-02
1715 1.733333e-01
1716 6.866667e-02
1717 2.060000e-01
1718 -6.666667e-03
1719 -4.866667e-02
1720 1.606667e-01
1721 -1.053333e-01
1722 -1.733333e-02
1723 -1.866667e-02
1724 -7.400000e-02
1725 -1.520000e-01
1726 -2.060000e-01
1727 -8.000000e-02
1728 -2.600000e-02
1729 -6.200000e-02
1730 -1.186667e-01
1731 8.266667e-02
1732 5.733333e-02
1733 -1.413333e-01
1734 5.933333e-02
1735 1.400000e-02
1736 -8.000000e-03
1737 1.500000e-01
1738 3.933333e-02
1739 1.146667e-01
1740 -1.480000e-01
1741 1.606667e-01
1742 9.866667e-02
1743 4.666667e-03
1744 -3.533333e-02
1745 2.733333e-02
1746 1.233333e-01
1747 5.000000e-02
1748 1.606667e-01
1749 9.933333e-02
1750 -1.920000e-01
1751 1.613333e-01
1752 6.666667e-04
1753 1.106667e-01
1754 8.066667e-02
1755 -3.733333e-02
1756 1.573333e-01
1757 -1.193333e-01
1758 -6.133333e-02
1759 -1.040000e-01
1760 -1.093333e-01
1761 -1.200000e-02
1762 1.666667e-01
1763 -1.380000e-01
1764 1.333333e-03
1765 1.593333e-01
1766 1.266667e-02
1767 -2.666667e-02
1768 8.600000e-02
1769 2.266667e-02
1770 1.680000e-01
1771 -8.666667e-03
1772 2.866667e-02
1773 -6.533333e-02
1774 -5.200000e-02
1775 1.426667e-01
1776 1.800000e-02
1777 7.533333e-02
1778 -2.133333e-02
1779 -1.546667e-01
1780 1.773333e-01
1781 -1.413333e-01
1782 7.200000e-02
1783 8.666667e-03
1784 4.866667e-02
1785 5.400000e-02
1786 -1.480000e-01
1787 -1.413333e-01
1788 3.466667e-02
1789 -7.600000e-02
1790 9.933333e-02
1791 2.346667e-01
1792 -1.420000e-01
1793 1.320000e-01
1794 -1.033333e-01
1795 -1.153333e-01
1796 1.533333e-02
1797 6.800000e-02
1798 -1.366667e-01
1799 -1.240000e-01
1800 1.066667e-01
1801 -2.333333e-02
1802 -6.066667e-02
1803 1.833333e-01
1804 1.613333e-01
1805 9.600000e-02
1806 6.000000e-03
1807 5.333333e-03
1808 1.893333e-01
1809 2.000000e-01
1810 -5.066667e-02
1811 -2.400000e-02
1812 1.100000e-01
1813 -1.600000e-02
1814 1.333333e-02
1815 -8.866667e-02
1816 4.666667e-03
1817 3.133333e-02
1818 2.700000e-01
1819 1.466667e-02
1820 1.586667e-01
1821 1.113333e-01
1822 1.066667e-01
1823 -4.200000e-02
1824 1.513333e-01
1825 -1.453333e-01
1826 -9.666667e-02
1827 -1.653333e-01
1828 -9.800000e-02
1829 8.533333e-02
1830 1.000000e-02
1831 -5.066667e-02
1832 1.326667e-01
1833 -3.400000e-02
1834 2.000000e-02
1835 -2.220000e-01
1836 4.266667e-02
1837 1.700000e-01
1838 -1.433333e-01
1839 2.553333e-01
1840 -2.666667e-03
1841 -2.066667e-02
1842 3.333333e-03
1843 -2.046667e-01
1844 -2.186667e-01
1845 -4.000000e-03
1846 -5.533333e-02
1847 -4.266667e-02
1848 1.866667e-02
1849 -1.373333e-01
1850 -1.153333e-01
1851 -1.513333e-01
1852 -1.540000e-01
1853 1.066667e-02
1854 1.586667e-01
1855 -8.466667e-02
1856 -1.486667e-01
1857 1.700000e-01
1858 6.733333e-02
1859 1.953333e-01
1860 1.193333e-01
1861 -1.760000e-01
1862 1.940000e-01
1863 3.333333e-03
1864 8.733333e-02
1865 4.133333e-02
1866 5.733333e-02
1867 -1.880000e-01
1868 2.800000e-02
1869 -1.573333e-01
1870 -5.266667e-02
1871 2.533333e-02
1872 -1.580000e-01
1873 2.066667e-02
1874 1.860000e-01
1875 1.333333e-03
1876 -8.466667e-02
1877 1.060000e-01
1878 8.333333e-02
1879 7.666667e-02
1880 1.453333e-01
1881 -2.000000e-02
1882 2.000000e-02
1883 -9.866667e-02
1884 1.533333e-02
1885 5.400000e-02
1886 9.866667e-02
1887 2.686667e-01
1888 -9.066667e-02
1889 2.666667e-02
1890 -8.200000e-02
1891 8.600000e-02
1892 1.153333e-01
1893 -2.466667e-02
1894 2.280000e-01
1895 -1.580000e-01
1896 -1.560000e-01
1897 1.333333e-03
1898 1.400000e-02
1899 -1.266667e-01
1900 -1.900000e-01
1901 1.560000e-01
1902 -7.200000e-02
1903 -3.266667e-02
1904 2.746667e-01
1905 1.440000e-01
1906 -7.666667e-02
1907 1.540000e-01
1908 5.866667e-02
1909 2.266667e-02
1910 -1.200000e-02
1911 9.533333e-02
1912 1.660000e-01
1913 1.253333e-01
1914 5.266667e-02
1915 -1.646667e-01
1916 -2.520000e-01
1917 3.133333e-02
1918 1.573333e-01
1919 2.333333e-02
1920 -2.200000e-02
1921 1.780000e-01
1922 6.466667e-02
1923 -3.666667e-02
1924 -2.666667e-03
1925 -4.600000e-02
1926 -8.066667e-02
1927 -8.866667e-02
1928 5.333333e-02
1929 -5.666667e-02
1930 1.493333e-01
1931 -7.600000e-02
1932 1.246667e-01
1933 2.666667e-03
1934 1.820000e-01
1935 -1.313333e-01
1936 -9.000000e-02
1937 1.820000e-01
1938 -4.400000e-02
1939 -2.020000e-01
1940 -3.400000e-02
1941 5.066667e-02
1942 9.733333e-02
1943 -1.446667e-01
1944 6.333333e-02
1945 1.360000e-01
1946 1.073333e-01
1947 5.400000e-02
1948 -1.880000e-01
1949 -9.866667e-02
1950 1.100000e-01
1951 5.733333e-02
1952 1.060000e-01
1953 -1.486667e-01
1954 -7.066667e-02
1955 5.066667e-02
1956 5.533333e-02
1957 -2.200000e-02
1958 1.546667e-01
1959 1.900000e-01
1960 5.666667e-02
1961 1.080000e-01
1962 -1.566667e-01
1963 7.000000e-02
1964 9.466667e-02
1965 -3.133333e-02
1966 -1.006667e-01
1967 1.873333e-01
1968 -8.933333e-02
1969 8.133333e-02
1970 -2.400000e-02
1971 -1.526667e-01
1972 9.533333e-02
1973 1.333333e-01
1974 -1.266667e-01
1975 -1.780000e-01
1976 1.306667e-01
1977 1.413333e-01
1978 -2.246667e-01
1979 -9.000000e-02
1980 1.160000e-01
1981 -1.466667e-02
1982 -1.466667e-02
1983 9.533333e-02
1984 -2.580000e-01
1985 1.553333e-01
1986 1.886667e-01
1987 -6.133333e-02
1988 -6.666667e-03
1989 2.200000e-02
1990 -1.340000e-01
1991 -1.666667e-02
1992 -2.160000e-01
1993 1.213333e-01
1994 2.266667e-02
1995 1.640000e-01
1996 1.120000e-01
1997 -2.000000e-03
1998 -3.333333e-03
1999 -1.233333e-01
2000 -7.200000e-02
2001 1.066667e-01
2002 1.266667e-01
2003 -1.766667e-01
2004 -3.200000e-02
2005 -2.560000e-01
2006 3.400000e-02
2007 2.666667e-02
2008 1.626667e-01
2009 1.240000e-01
2010 -2.800000e-02
2011 2.066667e-02
2012 2.666667e-03
2013 1.060000e-01
2014 1.593333e-01
2015 -1.920000e-01
2016 1.733333e-01
2017 1.726667e-01
2018 -3.466667e-02
2019 -7.333333e-02
2020 -1.020000e-01
2021 -1.200000e-02
2022 -1.080000e-01
2023 1.266667e-02
2024 4.333333e-02
2025 -1.940000e-01
2026 -1.673333e-01
2027 -7.200000e-02
2028 -6.533333e-02
2029 3.200000e-02
2030 2.220610e-17
2031 1.473333e-01
2032 1.666667e-01
2033 2.666667e-02
2034 -1.293333e-01
2035 1.766667e-01
2036 1.700000e-01
2037 4.466667e-02
2038 -8.000000e-02
2039 -2.533333e-01
2040 1.366667e-01
2041 -2.420000e-01
2042 2.066667e-01
2043 -8.000000e-02
2044 -1.173333e-01
2045 1.446667e-01
2046 -3.733333e-02
2047 7.733333e-02
2048 1.360000e-01
2049 -2.580000e-01
2050 -1.913333e-01
2051 -8.200000e-02
2052 2.020000e-01
2053 1.880000e-01
2054 -4.133333e-02
2055 -2.266667e-02
2056 -3.600000e-02
2057 -8.333333e-02
2058 4.266667e-02
2059 -1.693333e-01
2060 -1.266667e-02
2061 1.006667e-01
2062 -2.066667e-02
2063 -3.666667e-02
2064 -2.400000e-02
2065 -1.866667e-01
2066 -1.353333e-01
2067 -2.420000e-01
2068 -3.266667e-02
2069 4.066667e-02
2070 1.886667e-01
2071 -9.333333e-02
2072 1.326667e-01
2073 -1.280000e-01
2074 6.933333e-02
2075 -2.053333e-01
2076 -6.333333e-02
2077 1.113333e-01
2078 -4.000000e-02
2079 8.066667e-02
2080 -2.866667e-02
2081 -2.593333e-01
2082 2.193333e-01
2083 2.426667e-01
2084 -1.473333e-01
2085 1.940000e-01
2086 1.573333e-01
2087 9.933333e-02
2088 -1.273333e-01
2089 -8.933333e-02
2090 -9.600000e-02
2091 -1.246667e-01
2092 -9.866667e-02
2093 -3.200000e-02
2094 9.533333e-02
2095 1.146667e-01
2096 -9.133333e-02
2097 2.393333e-01
2098 1.213333e-01
2099 -2.420000e-01
2100 -3.266667e-02
2101 -7.333333e-02
2102 -7.266667e-02
2103 -1.406667e-01
2104 -8.000000e-03
2105 7.800000e-02
2106 1.406667e-01
2107 -4.666667e-03
2108 7.466667e-02
2109 1.800000e-02
2110 -1.333333e-01
2111 -4.400000e-02
2112 1.233333e-01
2113 1.340000e-01
2114 -1.006667e-01
2115 8.733333e-02
2116 1.766667e-01
2117 6.533333e-02
2118 -1.666667e-02
2119 1.800000e-02
2120 1.133333e-02
2121 7.733333e-02
2122 1.100000e-01
2123 1.840000e-01
2124 -7.933333e-02
2125 -1.540000e-01
2126 -2.006667e-01
2127 -1.760000e-01
2128 1.540000e-01
2129 1.860000e-01
2130 1.620000e-01
2131 2.400000e-02
2132 -2.406667e-01
2133 -1.813333e-01
2134 1.080000e-01
2135 -1.133333e-02
2136 -4.266667e-02
2137 -1.026667e-01
2138 -3.133333e-02
2139 2.800000e-02
2140 -1.933333e-02
2141 4.133333e-02
2142 5.933333e-02
2143 2.773333e-01
2144 8.000000e-03
2145 6.933333e-02
2146 2.333333e-02
2147 7.466667e-02
2148 5.333333e-03
2149 -4.933333e-02
2150 -7.400000e-02
2151 -6.000000e-02
2152 1.253333e-01
2153 -8.133333e-02
2154 2.666667e-03
2155 -2.866667e-02
2156 2.553333e-01
2157 3.040000e-01
2158 4.866667e-02
2159 1.506667e-01
2160 1.600000e-02
2161 8.066667e-02
2162 9.866667e-02
2163 6.600000e-02
2164 1.266667e-01
2165 -1.513333e-01
2166 9.600000e-02
2167 1.866667e-02
2168 5.933333e-02
2169 4.800000e-02
2170 8.533333e-02
2171 -8.666667e-03
2172 2.246667e-01
2173 8.733333e-02
2174 -7.333333e-03
2175 1.500000e-01
2176 1.120000e-01
2177 9.400000e-02
2178 -2.206667e-01
2179 -1.160000e-01
2180 -1.733333e-02
2181 -1.746667e-01
2182 -2.800000e-02
2183 2.666667e-03
2184 -1.126667e-01
2185 -4.600000e-02
2186 -9.733333e-02
2187 2.333333e-01
2188 -1.880000e-01
2189 -5.400000e-02
2190 1.233333e-01
2191 -5.666667e-02
2192 -2.653333e-01
2193 -7.666667e-02
2194 9.733333e-02
2195 2.406667e-01
2196 1.040000e-01
2197 2.200000e-01
2198 1.133333e-01
2199 7.733333e-02
2200 1.046667e-01
2201 -8.266667e-02
2202 3.866667e-02
2203 -6.466667e-02
2204 1.073333e-01
2205 1.360000e-01
2206 -4.666667e-02
2207 -1.580000e-01
2208 -7.533333e-02
2209 1.120000e-01
2210 -1.853333e-01
2211 -8.400000e-02
2212 -1.000000e-02
2213 1.466667e-01
2214 -8.933333e-02
2215 5.466667e-02
2216 -7.866667e-02
2217 1.646667e-01
2218 -5.066667e-02
2219 -1.560000e-01
2220 -2.133333e-02
2221 -1.746667e-01
2222 -1.606667e-01
2223 -6.400000e-02
2224 -3.733333e-02
2225 -1.206667e-01
2226 3.266667e-02
2227 7.666667e-02
2228 1.153333e-01
2229 9.533333e-02
2230 1.700000e-01
2231 1.620000e-01
2232 1.200000e-01
2233 2.053333e-01
2234 1.546667e-01
2235 2.306667e-01
2236 1.173333e-01
2237 -1.273333e-01
2238 2.533333e-02
2239 1.220000e-01
2240 1.280000e-01
2241 -4.266667e-02
2242 -2.666667e-03
2243 1.733333e-01
2244 9.800000e-02
2245 -8.600000e-02
2246 1.680000e-01
2247 6.466667e-02
2248 2.266667e-02
2249 -7.533333e-02
2250 2.000000e-02
2251 1.933333e-02
2252 1.833333e-01
2253 -6.733333e-02
2254 -1.833333e-01
2255 -1.353333e-01
2256 -4.933333e-02
2257 4.533333e-02
2258 -1.826667e-01
2259 -9.333333e-03
2260 1.046667e-01
2261 -6.666667e-02
2262 3.400000e-02
2263 -1.226667e-01
2264 1.006667e-01
2265 -2.093333e-01
2266 -6.866667e-02
2267 4.400000e-02
2268 -1.026667e-01
2269 1.906667e-01
2270 2.453333e-01
2271 -7.733333e-02
2272 1.453333e-01
2273 -6.333333e-02
2274 -6.666667e-04
2275 -1.933333e-01
2276 1.166667e-01
2277 8.600000e-02
2278 6.866667e-02
2279 1.060000e-01
2280 8.666667e-02
2281 3.266667e-02
2282 1.153333e-01
2283 -1.860000e-01
2284 -1.353333e-01
2285 9.333333e-02
2286 1.100000e-01
2287 -1.866667e-01
2288 1.373333e-01
2289 1.973333e-01
2290 -1.286667e-01
2291 -7.266667e-02
2292 -6.666667e-03
2293 2.320000e-01
2294 -8.866667e-02
2295 9.200000e-02
2296 -1.160000e-01
2297 -9.866667e-02
2298 -7.266667e-02
2299 -1.413333e-01
2300 -6.000000e-02
2301 1.593333e-01
2302 1.173333e-01
2303 -1.200000e-02
2304 -7.733333e-02
2305 -2.666667e-02
2306 -3.800000e-02
2307 9.333333e-03
2308 2.733333e-02
2309 1.380000e-01
2310 -1.493333e-01
2311 1.693333e-01
2312 1.640000e-01
2313 -1.033333e-01
2314 2.466667e-02
2315 2.466667e-02
2316 1.420000e-01
2317 -9.333333e-03
2318 -1.446667e-01
2319 -2.520000e-01
2320 2.166667e-01
2321 2.460000e-01
2322 2.286667e-01
2323 -2.600000e-02
2324 -7.000000e-02
2325 -3.866667e-02
2326 -8.333333e-02
2327 2.000000e-02
2328 -1.666667e-02
2329 -7.466667e-02
2330 -9.666667e-02
2331 2.000000e-03
2332 2.413333e-01
2333 5.400000e-02
2334 1.440000e-01
2335 -1.826667e-01
2336 1.780000e-01
2337 -1.813333e-01
2338 7.000000e-02
2339 -1.353333e-01
2340 -9.400000e-02
2341 -1.346667e-01
2342 6.400000e-02
2343 -6.266667e-02
2344 7.933333e-02
2345 -1.180000e-01
2346 2.140000e-01
2347 -2.173333e-01
2348 2.333333e-02
2349 -1.060000e-01
2350 -4.000000e-02
2351 -7.600000e-02
2352 8.800000e-02
2353 1.266667e-02
2354 1.460000e-01
2355 7.533333e-02
2356 1.966667e-01
2357 -2.000000e-03
2358 -1.106667e-01
2359 -1.066667e-02
2360 8.400000e-02
2361 -2.293333e-01
2362 -3.866667e-02
2363 -8.600000e-02
2364 2.133333e-02
2365 -1.600000e-01
2366 2.800000e-02
2367 1.060000e-01
2368 5.000000e-02
2369 1.266667e-02
2370 -1.000000e-01
2371 4.866667e-02
2372 -6.800000e-02
2373 -1.060000e-01
2374 1.886667e-01
2375 3.333333e-02
2376 1.280000e-01
2377 1.873333e-01
2378 7.866667e-02
2379 1.180000e-01
2380 1.300000e-01
2381 -9.066667e-02
2382 -1.600000e-01
2383 1.566667e-01
2384 2.800000e-02
2385 -1.433333e-01
2386 -9.800000e-02
2387 9.733333e-02
2388 3.933333e-02
2389 1.153333e-01
2390 6.666667e-02
2391 -2.000000e-01
2392 1.220000e-01
2393 -2.933333e-02
2394 -1.533333e-01
2395 -3.466667e-02
2396 -2.200000e-02
2397 2.400000e-02
2398 -1.006667e-01
2399 -6.600000e-02
2400 -1.813333e-01
2401 -9.600000e-02
2402 8.333333e-02
2403 -7.066667e-02
2404 -1.626667e-01
2405 1.493333e-01
2406 1.266667e-02
2407 1.513333e-01
2408 -9.333333e-03
2409 -4.800000e-02
2410 6.400000e-02
2411 1.340000e-01
2412 5.866667e-02
2413 -1.440000e-01
2414 7.533333e-02
2415 1.486667e-01
2416 1.766667e-01
2417 2.253333e-01
2418 -9.733333e-02
2419 2.666667e-03
2420 -1.353333e-01
2421 6.933333e-02
2422 -9.200000e-02
2423 -9.066667e-02
2424 -1.066667e-01
2425 1.286667e-01
2426 1.666667e-01
2427 -1.626667e-01
2428 -1.366667e-01
2429 -1.086667e-01
2430 6.133333e-02
2431 -6.000000e-03
2432 1.166667e-01
2433 -1.833333e-01
2434 1.133333e-02
2435 1.506667e-01
2436 5.533333e-02
2437 -1.053333e-01
2438 -8.400000e-02
2439 1.366667e-01
2440 5.133333e-02
2441 5.933333e-02
2442 -1.006667e-01
2443 -5.666667e-02
2444 -1.360000e-01
2445 1.880000e-01
2446 3.533333e-02
2447 -4.666667e-02
2448 -1.633333e-01
2449 1.180000e-01
2450 -3.266667e-02
2451 -2.266667e-02
2452 7.066667e-02
2453 -9.333333e-02
2454 -4.000000e-02
2455 1.606667e-01
2456 -3.600000e-02
2457 -9.333333e-02
2458 3.200000e-02
2459 6.666667e-02
2460 1.500000e-01
2461 1.100000e-01
2462 -5.266667e-02
2463 -7.466667e-02
2464 -2.333333e-02
2465 1.880000e-01
2466 -1.366667e-01
2467 5.066667e-02
2468 1.493333e-01
2469 -1.326667e-01
2470 -1.126667e-01
2471 -9.466667e-02
2472 1.306667e-01
2473 3.000000e-02
2474 1.453333e-01
2475 -1.073333e-01
2476 1.666667e-01
2477 -6.066667e-02
2478 7.600000e-02
2479 9.466667e-02
2480 3.800000e-02
2481 6.533333e-02
2482 2.400000e-02
2483 -2.006667e-01
2484 7.666667e-02
2485 3.866667e-02
2486 1.133333e-02
2487 1.873333e-01
2488 2.600000e-02
2489 -5.933333e-02
2490 1.740000e-01
2491 1.173333e-01
2492 2.346667e-01
2493 -8.600000e-02
2494 -1.033333e-01
2495 -9.800000e-02
2496 1.046667e-01
2497 -1.126667e-01
2498 3.400000e-02
2499 -9.733333e-02
2500 -1.600000e-02
2501 3.600000e-02
2502 -1.306667e-01
2503 5.866667e-02
2504 -6.200000e-02
2505 -1.466667e-01
2506 -1.946667e-01
2507 3.266667e-02
2508 -2.200000e-01
2509 2.133333e-01
2510 -6.333333e-02
2511 9.866667e-02
2512 1.573333e-01
2513 2.800000e-02
2514 -2.333333e-02
2515 -8.466667e-02
2516 -1.313333e-01
2517 4.000000e-03
2518 -5.733333e-02
2519 7.266667e-02
2520 -2.400000e-02
2521 -1.333333e-02
2522 -1.466667e-02
2523 1.153333e-01
2524 1.873333e-01
2525 -8.533333e-02
2526 -6.333333e-02
2527 -1.040000e-01
2528 -2.400000e-02
2529 -9.866667e-02
2530 -1.066667e-02
2531 -1.033333e-01
2532 -1.533333e-01
2533 1.333333e-02
2534 9.600000e-02
2535 3.733333e-02
2536 -7.200000e-02
2537 -4.066667e-02
2538 1.946667e-01
2539 -1.840000e-01
2540 -9.933333e-02
2541 -6.400000e-02
2542 1.566667e-01
2543 -3.733333e-02
2544 1.586667e-01
2545 4.066667e-02
2546 1.306667e-01
2547 9.333333e-02
2548 -3.733333e-02
2549 1.740000e-01
2550 -8.866667e-02
2551 -1.200000e-01
2552 -6.133333e-02
2553 -2.260000e-01
2554 -6.666667e-02
2555 6.133333e-02
2556 -1.753333e-01
2557 -1.000000e-02
2558 -1.600000e-02
2559 -4.666667e-02
2560 -6.133333e-02
2561 1.200000e-02
2562 -1.540000e-01
2563 -1.233333e-01
2564 2.733333e-02
2565 -1.073333e-01
2566 -1.546667e-01
2567 6.666667e-04
2568 6.466667e-02
2569 2.026667e-01
2570 -1.346667e-01
2571 1.180000e-01
2572 -3.466667e-02
2573 8.533333e-02
2574 -1.480000e-01
2575 -1.426667e-01
2576 -2.366667e-01
2577 1.846667e-01
2578 2.613333e-01
2579 -2.200000e-02
2580 -3.933333e-02
2581 -2.313333e-01
2582 1.093333e-01
2583 7.200000e-02
2584 4.600000e-02
2585 -1.193333e-01
2586 1.660000e-01
2587 9.933333e-02
2588 1.226667e-01
2589 -1.953333e-01
2590 -1.180000e-01
2591 9.266667e-02
2592 1.213333e-01
2593 2.280000e-01
2594 -4.800000e-02
2595 -8.200000e-02
2596 1.586667e-01
2597 2.540000e-01
2598 7.933333e-02
2599 3.666667e-02
2600 1.160000e-01
2601 -1.940000e-01
2602 1.953333e-01
2603 -1.800000e-01
2604 1.026667e-01
2605 8.733333e-02
2606 -1.420000e-01
2607 -1.460000e-01
2608 1.573333e-01
2609 -1.580000e-01
2610 3.200000e-02
2611 -1.720000e-01
2612 1.213333e-01
2613 1.173333e-01
2614 -5.733333e-02
2615 -2.000000e-03
2616 -6.866667e-02
2617 9.200000e-02
2618 -7.133333e-02
2619 1.326667e-01
2620 4.866667e-02
2621 9.333333e-03
2622 -3.000000e-02
2623 -6.666667e-02
2624 -1.846667e-01
2625 1.993333e-01
2626 3.200000e-02
2627 -1.486667e-01
2628 4.866667e-02
2629 -1.913333e-01
2630 1.133333e-01
2631 2.413333e-01
2632 1.333333e-03
2633 5.133333e-02
2634 -4.600000e-02
2635 -1.700000e-01
2636 -2.466667e-02
2637 8.733333e-02
2638 -6.333333e-02
2639 1.353333e-01
2640 -8.000000e-03
2641 -2.153333e-01
2642 1.046667e-01
2643 1.033333e-01
2644 1.400000e-02
2645 -1.186667e-01
2646 -1.806667e-01
2647 -3.133333e-02
2648 -1.380000e-01
2649 -7.266667e-02
2650 1.906667e-01
2651 -3.333333e-03
2652 8.666667e-03
2653 2.186667e-01
2654 2.400000e-02
2655 -8.466667e-02
2656 -1.200000e-01
2657 5.600000e-02
2658 8.666667e-03
2659 -1.780000e-01
2660 8.466667e-02
2661 -1.160000e-01
2662 6.400000e-02
2663 -5.533333e-02
2664 1.033333e-01
2665 2.433333e-01
2666 6.333333e-02
2667 -1.600000e-02
2668 1.266667e-02
2669 -9.800000e-02
2670 -1.146667e-01
2671 1.266667e-01
2672 3.333333e-02
2673 3.066667e-02
2674 3.466667e-02
2675 4.200000e-02
2676 8.000000e-03
2677 8.333333e-02
2678 1.606667e-01
2679 2.080000e-01
2680 -1.380000e-01
2681 2.533333e-02
2682 -2.266667e-02
2683 -1.846667e-01
2684 -6.466667e-02
2685 -8.666667e-03
2686 6.666667e-02
2687 5.000000e-02
2688 1.980000e-01
2689 1.593333e-01
2690 1.880000e-01
2691 -1.646667e-01
2692 1.213333e-01
2693 -4.000000e-03
2694 1.046667e-01
2695 6.133333e-02
2696 2.266667e-01
2697 -1.086667e-01
2698 1.373333e-01
2699 -1.126667e-01
2700 1.593333e-01
2701 1.753333e-01
2702 1.866667e-02
2703 1.920000e-01
2704 -1.200000e-02
2705 -8.666667e-02
2706 2.466667e-02
2707 -2.120000e-01
2708 -1.186667e-01
2709 3.733333e-02
2710 -9.666667e-02
2711 1.040000e-01
2712 -2.366667e-01
2713 -1.120000e-01
2714 9.666667e-02
2715 1.373333e-01
2716 -1.533333e-02
2717 1.260000e-01
2718 -5.466667e-02
2719 1.120000e-01
2720 1.893333e-01
2721 -1.606667e-01
2722 -9.666667e-02
2723 8.400000e-02
2724 2.666667e-02
2725 -5.800000e-02
2726 1.746667e-01
2727 8.000000e-02
2728 1.773333e-01
2729 2.373333e-01
2730 9.866667e-02
2731 -4.000000e-02
2732 -9.333333e-02
2733 -1.113333e-01
2734 3.866667e-02
2735 -8.400000e-02
2736 -5.666667e-02
2737 2.466667e-02
2738 -1.513333e-01
2739 -1.660000e-01
2740 -2.066667e-02
2741 -3.400000e-02
2742 9.333333e-03
2743 1.246667e-01
2744 -1.000000e-02
2745 1.540000e-01
2746 1.913333e-01
2747 -1.080000e-01
2748 -1.180000e-01
2749 2.000000e-03
2750 -8.066667e-02
2751 1.786667e-01
2752 -1.160000e-01
2753 6.666667e-03
2754 -1.526667e-01
2755 -1.246667e-01
2756 -1.080000e-01
2757 -8.133333e-02
2758 -2.320000e-01
2759 2.093333e-01
2760 -1.906667e-01
2761 -1.060000e-01
2762 -1.780000e-01
2763 -6.666667e-03
2764 4.200000e-02
2765 1.806667e-01
2766 -6.400000e-02
2767 5.200000e-02
2768 -1.793333e-01
2769 2.600000e-02
2770 -9.000000e-02
2771 -1.146667e-01
2772 -2.066667e-02
2773 -6.666667e-02
2774 8.266667e-02
2775 -3.600000e-02
2776 -8.200000e-02
2777 -1.473333e-01
2778 4.000000e-03
2779 1.566667e-01
2780 -1.933333e-01
2781 -9.200000e-02
2782 -9.200000e-02
2783 1.093333e-01
2784 -1.186667e-01
2785 1.066667e-02
2786 1.666667e-01
2787 -8.133333e-02
2788 1.593333e-01
2789 -1.046667e-01
2790 7.066667e-02
2791 -7.733333e-02
2792 -1.933333e-02
2793 4.666667e-03
2794 1.620000e-01
2795 5.000000e-02
2796 3.533333e-02
2797 -1.486667e-01
2798 -6.866667e-02
2799 -4.266667e-02
2800 -1.086667e-01
2801 2.026667e-01
2802 -1.473333e-01
2803 -1.846667e-01
2804 1.540000e-01
2805 -1.140000e-01
2806 1.733333e-02
2807 1.460000e-01
2808 1.566667e-01
2809 -1.800000e-02
2810 -1.293333e-01
2811 -9.933333e-02
2812 -1.173333e-01
2813 -1.526667e-01
2814 -6.000000e-03
2815 -6.666667e-03
2816 2.240000e-01
2817 -3.066667e-02
2818 -1.746667e-01
2819 -8.733333e-02
2820 -1.086667e-01
2821 -1.140000e-01
2822 1.780000e-01
2823 -2.733333e-02
2824 -2.140000e-01
2825 -2.000000e-03
2826 1.653333e-01
2827 1.413333e-01
2828 -8.733333e-02
2829 1.093333e-01
2830 7.533333e-02
2831 -9.066667e-02
2832 -1.140000e-01
2833 7.133333e-02
2834 4.800000e-02
2835 -7.600000e-02
2836 6.000000e-03
2837 7.066667e-02
2838 1.660000e-01
2839 -4.600000e-02
2840 1.320000e-01
2841 -8.666667e-03
2842 1.553333e-01
2843 1.546667e-01
2844 -1.066667e-02
2845 7.333333e-02
2846 5.333333e-02
2847 1.486667e-01
2848 -8.200000e-02
2849 -3.333333e-03
2850 1.460000e-01
2851 -2.260000e-01
2852 -3.133333e-02
2853 1.973333e-01
2854 3.266667e-02
2855 -2.293333e-01
2856 2.146667e-01
2857 -1.453333e-01
2858 9.133333e-02
2859 -1.780000e-01
2860 -9.066667e-02
2861 -1.940000e-01
2862 2.666667e-03
2863 -1.473333e-01
2864 1.186667e-01
2865 5.333333e-02
2866 2.733333e-02
2867 5.066667e-02
2868 -2.620000e-01
2869 1.520000e-01
2870 9.066667e-02
2871 5.600000e-02
2872 -3.466667e-02
2873 -6.066667e-02
2874 -5.200000e-02
2875 -9.066667e-02
2876 -7.400000e-02
2877 9.800000e-02
2878 1.513333e-01
2879 -1.740000e-01
2880 5.200000e-02
2881 1.313333e-01
2882 1.733333e-02
2883 1.800000e-02
2884 -4.000000e-03
2885 -7.333333e-02
2886 1.520000e-01
2887 -2.466667e-02
2888 -1.526667e-01
2889 -4.266667e-02
2890 -1.073333e-01
2891 9.333333e-02
2892 1.020000e-01
2893 1.826667e-01
2894 -5.000000e-02
2895 8.066667e-02
2896 -6.066667e-02
2897 1.366667e-01
2898 -2.066667e-01
2899 -4.000000e-02
2900 7.133333e-02
2901 -3.533333e-02
2902 9.666667e-02
2903 -1.086667e-01
2904 -7.000000e-02
2905 -7.200000e-02
2906 3.600000e-02
2907 1.226667e-01
2908 2.000000e-02
2909 2.400000e-02
2910 -1.100000e-01
2911 1.520000e-01
2912 -1.226667e-01
2913 -2.173333e-01
2914 -1.220000e-01
2915 -1.573333e-01
2916 -9.533333e-02
2917 1.266667e-02
2918 1.740000e-01
2919 -8.200000e-02
2920 -1.140000e-01
2921 -2.200000e-02
2922 9.066667e-02
2923 -2.513333e-01
2924 -3.800000e-02
2925 2.600000e-02
2926 -2.866667e-02
2927 1.433333e-01
2928 1.560000e-01
2929 2.600000e-02
2930 -1.006667e-01
2931 -1.333333e-03
2932 6.933333e-02
2933 1.533333e-02
2934 -4.666667e-02
2935 2.266667e-02
2936 -2.440000e-01
2937 -1.300000e-01
2938 -1.266667e-01
2939 -8.066667e-02
2940 1.053333e-01
2941 -3.400000e-02
2942 7.400000e-02
2943 4.800000e-02
2944 -5.933333e-02
2945 -6.533333e-02
2946 -8.666667e-02
2947 6.000000e-02
2948 5.200000e-02
2949 -9.600000e-02
2950 -5.466667e-02
2951 -1.533333e-01
2952 -5.000000e-02
2953 -8.000000e-02
2954 6.266667e-02
2955 -8.866667e-02
2956 -1.746667e-01
2957 8.266667e-02
2958 8.200000e-02
2959 -1.273333e-01
2960 -6.933333e-02
2961 1.726667e-01
2962 -3.200000e-02
2963 -1.800000e-01
2964 2.013333e-01
2965 1.040000e-01
2966 -5.333333e-02
2967 4.666667e-02
2968 1.653333e-01
2969 3.066667e-02
2970 -1.153333e-01
2971 -1.420000e-01
2972 -1.873333e-01
2973 -4.200000e-02
2974 1.546667e-01
2975 9.200000e-02
2976 5.933333e-02
2977 1.526667e-01
2978 -2.866667e-02
2979 1.866667e-02
2980 1.586667e-01
2981 1.393333e-01
2982 -7.000000e-02
2983 -1.546667e-01
2984 1.000000e-02
2985 -6.666667e-03
2986 -5.333333e-03
2987 1.133333e-02
2988 -1.120000e-01
2989 -1.400000e-02
2990 5.733333e-02
2991 1.433333e-01
2992 1.000000e-02
2993 -3.866667e-02
2994 -1.333333e-01
2995 -1.466667e-01
2996 1.800000e-02
2997 -3.333333e-03
2998 -1.506667e-01
2999 4.200000e-02
3000 4.733333e-02
3001 -1.020000e-01
3002 2.500000e-01
3003 -6.200000e-02
3004 -4.066667e-02
3005 -8.600000e-02
3006 -1.333333e-01
3007 -7.666667e-02
3008 5.733333e-02
3009 -1.073333e-01
3010 7.333333e-03
3011 -1.526667e-01
3012 -7.733333e-02
3013 1.040000e-01
3014 1.166667e-01
3015 1.526667e-01
3016 1.773333e-01
3017 4.666667e-03
3018 1.040000e-01
3019 1.700000e-01
3020 -1.546667e-01
3021 1.680000e-01
3022 -1.933333e-02
3023 -7.800000e-02
3024 -6.600000e-02
3025 1.160000e-01
3026 -3.866667e-02
3027 3.066667e-02
3028 9.266667e-02
3029 -6.333333e-02
3030 -1.166667e-01
3031 2.466667e-02
3032 7.066667e-02
3033 -5.933333e-02
3034 -1.613333e-01
3035 1.673333e-01
3036 -1.426667e-01
3037 1.453333e-01
3038 1.100000e-01
3039 -1.820000e-01
3040 -7.800000e-02
3041 -1.466667e-01
3042 1.346667e-01
3043 -1.213333e-01
3044 1.066667e-02
3045 -1.800000e-02
3046 -1.000000e-01
3047 -1.740000e-01
3048 -1.666667e-02
3049 -1.200000e-02
3050 -1.533333e-02
3051 2.413333e-01
3052 1.393333e-01
3053 2.666667e-02
3054 6.466667e-02
3055 1.546667e-01
3056 -8.466667e-02
3057 -1.666667e-02
3058 5.933333e-02
3059 1.080000e-01
3060 -6.066667e-02
3061 -1.566667e-01
3062 -3.000000e-02
3063 -1.300000e-01
3064 1.066667e-01
3065 -2.606667e-01
3066 -1.340000e-01
3067 -4.466667e-02
3068 -2.000000e-03
3069 5.533333e-02
3070 -1.840000e-01
3071 1.733333e-01
3072 3.733333e-02
3073 -5.466667e-02
3074 -1.526667e-01
3075 -3.600000e-02
3076 -1.720000e-01
3077 2.666667e-02
3078 -1.286667e-01
3079 -1.500000e-01
3080 1.733333e-02
3081 -3.066667e-02
3082 -3.333333e-02
3083 1.320000e-01
3084 -2.293333e-01
3085 -1.426667e-01
3086 -2.400000e-02
3087 -1.466667e-02
3088 -1.466667e-01
3089 -7.466667e-02
3090 1.900000e-01
3091 -9.800000e-02
3092 2.000000e-02
3093 1.620000e-01
3094 1.200000e-02
3095 8.866667e-02
3096 -1.106667e-01
3097 -9.200000e-02
3098 -9.466667e-02
3099 -3.333333e-02
3100 2.073333e-01
3101 2.466667e-02
3102 -1.913333e-01
3103 -7.000000e-02
3104 3.133333e-02
3105 1.433333e-01
3106 1.626667e-01
3107 1.026667e-01
3108 -1.153333e-01
3109 9.933333e-02
3110 -1.060000e-01
3111 1.333333e-02
3112 1.106667e-01
3113 1.666667e-02
3114 8.666667e-03
3115 -2.000000e-01
3116 1.566667e-01
3117 -6.733333e-02
3118 1.573333e-01
3119 -1.793333e-01
3120 2.113333e-01
3121 -3.133333e-02
3122 1.720000e-01
3123 -2.013333e-01
3124 -4.200000e-02
3125 -2.266667e-02
3126 -4.066667e-02
3127 -1.893333e-01
3128 1.093333e-01
3129 -1.493333e-01
3130 -2.360000e-01
3131 2.800000e-02
3132 1.333333e-02
3133 1.613333e-01
3134 2.200000e-01
3135 3.066667e-02
3136 4.400000e-02
3137 1.333333e-03
3138 -1.013333e-01
3139 -5.733333e-02
3140 -1.713333e-01
3141 -1.520000e-01
3142 1.066667e-02
3143 2.160000e-01
3144 3.733333e-02
3145 1.126667e-01
3146 -1.820000e-01
3147 1.493333e-01
3148 -9.666667e-02
3149 -1.820000e-01
3150 8.466667e-02
3151 1.173333e-01
3152 9.133333e-02
3153 4.066667e-02
3154 2.666667e-03
3155 5.600000e-02
3156 -1.853333e-01
3157 1.020000e-01
3158 1.200000e-02
3159 1.666667e-02
3160 1.886667e-01
3161 1.493333e-01
3162 -6.800000e-02
3163 8.200000e-02
3164 -1.033333e-01
3165 5.333333e-03
3166 7.200000e-02
3167 -2.266667e-02
3168 1.353333e-01
3169 -8.666667e-03
3170 -1.906667e-01
3171 1.986667e-01
3172 -7.933333e-02
3173 8.866667e-02
3174 2.600000e-02
3175 4.333333e-02
3176 5.666667e-02
3177 2.093333e-01
3178 2.293333e-01
3179 2.666667e-03
3180 8.400000e-02
3181 4.133333e-02
3182 -1.306667e-01
3183 -1.553333e-01
3184 -8.466667e-02
3185 1.393333e-01
3186 1.133333e-02
3187 -1.860000e-01
3188 1.800000e-01
3189 2.240000e-01
3190 1.666667e-01
3191 -2.266667e-01
3192 -1.253333e-01
3193 -6.466667e-02
3194 3.333333e-03
3195 1.200000e-01
3196 -2.313333e-01
3197 -2.020000e-01
3198 -8.266667e-02
3199 1.553333e-01
3200 2.400000e-02
3201 -2.526667e-01
3202 9.533333e-02
3203 1.606667e-01
3204 -1.433333e-01
3205 3.133333e-02
3206 -5.266667e-02
3207 -6.866667e-02
3208 2.066667e-02
3209 9.866667e-02
3210 -9.733333e-02
3211 4.066667e-02
3212 1.760000e-01
3213 1.000000e-01
3214 -3.533333e-02
3215 9.000000e-02
3216 -2.933333e-02
3217 -1.126667e-01
3218 -3.800000e-02
3219 -1.406667e-01
3220 4.666667e-03
3221 1.060000e-01
3222 -2.240000e-01
3223 -1.753333e-01
3224 4.333333e-02
3225 1.353333e-01
3226 -5.600000e-02
3227 -1.520000e-01
3228 2.273333e-01
3229 4.000000e-02
3230 -1.273333e-01
3231 3.200000e-02
3232 2.293333e-01
3233 -1.013333e-01
3234 -4.066667e-02
3235 -1.933333e-02
3236 -6.400000e-02
3237 -1.613333e-01
3238 1.086667e-01
3239 -2.033333e-01
3240 -3.333333e-03
3241 -3.266667e-02
3242 -3.533333e-02
3243 -1.193333e-01
3244 1.753333e-01
3245 2.220000e-01
3246 3.800000e-02
3247 1.373333e-01
3248 7.733333e-02
3249 -1.333333e-01
3250 -1.733333e-02
3251 -4.933333e-02
3252 1.220000e-01
3253 2.133333e-02
3254 -5.333333e-03
3255 1.693333e-01
3256 4.800000e-02
3257 5.600000e-02
3258 -1.793333e-01
3259 -3.933333e-02
3260 1.500000e-01
3261 1.533333e-02
3262 1.673333e-01
3263 1.866667e-02
3264 6.666667e-04
3265 9.600000e-02
3266 2.400000e-02
3267 -3.333333e-03
3268 1.086667e-01
3269 7.066667e-02
3270 2.933333e-02
3271 7.666667e-02
3272 -1.546667e-01
3273 -2.240000e-01
3274 -4.266667e-02
3275 2.200000e-02
3276 -6.866667e-02
3277 -4.733333e-02
3278 -2.466667e-02
3279 1.733333e-02
3280 7.400000e-02
3281 1.546667e-01
3282 -5.600000e-02
3283 -9.466667e-02
3284 1.600000e-02
3285 1.066667e-01
3286 -8.000000e-02
3287 -1.500000e-01
3288 6.800000e-02
3289 -1.800000e-02
3290 -6.266667e-02
3291 -1.940000e-01
3292 1.326667e-01
3293 -5.400000e-02
3294 9.266667e-02
3295 -2.326667e-01
3296 -1.180000e-01
3297 -3.666667e-02
3298 -7.133333e-02
3299 1.253333e-01
3300 -1.533333e-02
3301 -2.800000e-02
3302 -4.200000e-02
3303 2.933333e-02
3304 -7.400000e-02
3305 -1.506667e-01
3306 -1.540000e-01
3307 3.400000e-02
3308 1.713333e-01
3309 -1.486667e-01
3310 3.533333e-02
3311 -2.133333e-02
3312 -1.040000e-01
3313 3.866667e-02
3314 -1.466667e-01
3315 -1.260000e-01
3316 -4.200000e-02
3317 -1.580000e-01
3318 2.306667e-01
3319 5.000000e-02
3320 -3.866667e-02
3321 -5.866667e-02
3322 -1.240000e-01
3323 2.600000e-02
3324 -7.333333e-02
3325 -1.753333e-01
3326 5.400000e-02
3327 3.133333e-02
3328 -7.066667e-02
3329 1.893333e-01
3330 -2.866667e-02
3331 1.360000e-01
3332 8.200000e-02
3333 -1.220000e-01
3334 8.866667e-02
3335 -2.026667e-01
3336 -2.466667e-02
3337 -1.313333e-01
3338 1.313333e-01
3339 -1.133333e-02
3340 -9.933333e-02
3341 8.066667e-02
3342 6.333333e-02
3343 1.333333e-03
3344 2.220610e-17
3345 -1.060000e-01
3346 1.666667e-02
3347 -8.466667e-02
3348 -1.400000e-02
3349 -1.866667e-02
3350 5.466667e-02
3351 7.066667e-02
3352 -3.266667e-02
3353 -1.146667e-01
3354 -2.340000e-01
3355 8.000000e-03
3356 -3.600000e-02
3357 1.193333e-01
3358 -1.266667e-02
3359 -6.000000e-02
3360 1.133333e-02
3361 -2.666667e-03
3362 -8.000000e-02
3363 5.733333e-02
3364 2.233333e-01
3365 -1.280000e-01
3366 1.860000e-01
3367 5.333333e-03
3368 2.093333e-01
3369 4.133333e-02
3370 1.686667e-01
3371 8.400000e-02
3372 -1.386667e-01
3373 -1.660000e-01
3374 -4.533333e-02
3375 -8.600000e-02
3376 -1.306667e-01
3377 1.906667e-01
3378 -5.333333e-03
3379 -5.933333e-02
3380 -1.240000e-01
3381 -3.000000e-02
3382 2.033333e-01
3383 -5.179691e-17
3384 -1.520000e-01
3385 7.800000e-02
3386 1.033333e-01
3387 4.533333e-02
3388 -1.293333e-01
3389 -3.733333e-02
3390 -5.933333e-02
3391 8.000000e-03
3392 -1.353333e-01
3393 2.133333e-02
3394 1.426667e-01
3395 9.066667e-02
3396 2.866667e-02
3397 1.166667e-01
3398 -1.973333e-01
3399 1.026667e-01
3400 8.666667e-02
3401 2.153333e-01
3402 1.586667e-01
3403 1.073333e-01
3404 -4.600000e-02
3405 -9.066667e-02
3406 9.333333e-02
3407 6.666667e-04
3408 -9.000000e-02
3409 1.066667e-02
3410 -1.113333e-01
3411 -1.300000e-01
3412 5.200000e-02
3413 2.333333e-02
3414 -1.846667e-01
3415 2.086667e-01
3416 -1.506667e-01
3417 2.600000e-02
3418 1.146667e-01
3419 -1.500000e-01
3420 1.266667e-02
3421 1.266667e-02
3422 -5.733333e-02
3423 -3.066667e-02
3424 2.466667e-02
3425 -3.200000e-02
3426 1.266667e-02
3427 -5.466667e-02
3428 2.020000e-01
3429 1.333333e-03
3430 -1.440000e-01
3431 -2.733333e-01
3432 1.813333e-01
3433 -8.133333e-02
3434 1.366667e-01
3435 -9.666667e-02
3436 -9.200000e-02
3437 -1.380000e-01
3438 -1.213333e-01
3439 1.086667e-01
3440 -1.966667e-01
3441 -1.760000e-01
3442 -1.080000e-01
3443 -2.340000e-01
3444 1.500000e-01
3445 7.333333e-02
3446 7.866667e-02
3447 -5.800000e-02
3448 -1.800000e-02
3449 3.466667e-02
3450 -3.466667e-02
3451 8.200000e-02
3452 1.466667e-01
3453 3.533333e-02
3454 1.073333e-01
3455 -9.600000e-02
3456 1.466667e-01
3457 -1.326667e-01
3458 -6.666667e-02
3459 -1.766667e-01
3460 2.600000e-02
3461 7.133333e-02
3462 -2.506667e-01
3463 2.140000e-01
3464 -2.000000e-02
3465 2.266667e-02
3466 1.160000e-01
3467 1.893333e-01
3468 -8.133333e-02
3469 -1.346667e-01
3470 1.226667e-01
3471 6.666667e-02
3472 -2.400000e-02
3473 -2.460000e-01
3474 -2.333333e-02
3475 -2.286667e-01
3476 3.933333e-02
3477 5.066667e-02
3478 -2.666667e-03
3479 3.800000e-02
3480 -8.866667e-02
3481 -2.220000e-01
3482 1.540000e-01
3483 7.466667e-02
3484 -1.333333e-03
3485 6.200000e-02
3486 -4.533333e-02
3487 7.333333e-02
3488 9.733333e-02
3489 -8.266667e-02
3490 7.066667e-02
3491 -6.066667e-02
3492 1.066667e-02
3493 1.813333e-01
3494 7.333333e-03
3495 1.400000e-02
3496 1.253333e-01
3497 -1.700000e-01
3498 -6.200000e-02
3499 1.273333e-01
3500 1.706667e-01
3501 1.133333e-01
3502 -1.073333e-01
3503 -2.400000e-02
3504 1.940000e-01
3505 -3.000000e-02
3506 2.353333e-01
3507 6.000000e-03
3508 -1.473333e-01
3509 2.333333e-02
3510 7.533333e-02
3511 1.066667e-02
3512 5.600000e-02
3513 9.466667e-02
3514 -8.000000e-02
3515 -7.533333e-02
3516 -1.133333e-02
3517 7.666667e-02
3518 -1.533333e-02
3519 1.213333e-01
3520 -9.066667e-02
3521 1.313333e-01
3522 -7.400000e-02
3523 1.200000e-01
3524 1.106667e-01
3525 -2.253333e-01
3526 -1.473333e-01
3527 -1.153333e-01
3528 -6.933333e-02
3529 -1.633333e-01
3530 1.193333e-01
3531 3.699405e-17
3532 2.113333e-01
3533 -1.553333e-01
3534 1.466667e-02
3535 9.933333e-02
3536 -2.300000e-01
3537 1.880000e-01
3538 -2.173333e-01
3539 8.333333e-02
3540 -6.533333e-02
3541 5.933333e-02
3542 1.433333e-01
3543 2.680000e-01
3544 -6.533333e-02
3545 8.533333e-02
3546 1.466667e-02
3547 -5.333333e-02
3548 -2.266667e-01
3549 2.866667e-02
3550 -7.666667e-02
3551 1.753333e-01
3552 -3.400000e-02
3553 -2.446667e-01
3554 -6.466667e-02
3555 1.266667e-02
3556 4.000000e-03
3557 -2.066667e-02
3558 9.800000e-02
3559 2.040000e-01
3560 -7.600000e-02
3561 5.733333e-02
3562 1.400000e-02
3563 6.733333e-02
3564 -5.066667e-02
3565 -5.400000e-02
3566 -1.246667e-01
3567 -4.866667e-02
3568 1.693333e-01
3569 4.866667e-02
3570 1.040000e-01
3571 -8.533333e-02
3572 -1.160000e-01
3573 1.386667e-01
3574 2.313333e-01
3575 1.300000e-01
3576 1.140000e-01
3577 7.866667e-02
3578 -2.500000e-01
3579 1.600000e-01
3580 1.520000e-01
3581 2.666667e-02
3582 4.266667e-02
3583 -4.533333e-02
3584 2.613333e-01
3585 8.400000e-02
3586 4.800000e-02
3587 -1.386667e-01
3588 -9.866667e-02
3589 -1.000000e-02
3590 -2.186667e-01
3591 4.533333e-02
3592 1.326667e-01
3593 1.526667e-01
3594 1.226667e-01
3595 1.673333e-01
3596 1.393333e-01
3597 -2.420000e-01
3598 -1.233333e-01
3599 -5.400000e-02
3600 -1.833333e-01
3601 -2.166667e-01
3602 -1.806667e-01
3603 1.153333e-01
3604 1.906667e-01
3605 -1.980000e-01
3606 2.386667e-01
3607 -1.333333e-03
3608 -1.046667e-01
3609 -4.466667e-02
3610 -1.400000e-01
3611 2.266667e-02
3612 1.320000e-01
3613 -1.693333e-01
3614 1.440000e-01
3615 3.866667e-02
3616 3.933333e-02
3617 -1.440000e-01
3618 1.113333e-01
3619 -2.000000e-02
3620 -1.606667e-01
3621 5.133333e-02
3622 -1.320000e-01
3623 1.613333e-01
3624 -8.666667e-03
3625 1.506667e-01
3626 -1.460000e-01
3627 -2.653333e-01
3628 -1.273333e-01
3629 1.533333e-02
3630 -5.800000e-02
3631 1.153333e-01
3632 9.800000e-02
3633 1.306667e-01
3634 -1.133333e-01
3635 -9.533333e-02
3636 -5.866667e-02
3637 -6.600000e-02
3638 -2.466667e-02
3639 -7.266667e-02
3640 1.046667e-01
3641 -7.133333e-02
3642 -1.460000e-01
3643 1.553333e-01
3644 2.000000e-03
3645 -7.666667e-02
3646 -1.386667e-01
3647 8.266667e-02
3648 -1.246667e-01
3649 -5.333333e-03
3650 -1.160000e-01
3651 4.000000e-02
3652 -1.026667e-01
3653 1.366667e-01
3654 2.133333e-02
3655 -1.020000e-01
3656 1.633333e-01
3657 -9.200000e-02
3658 8.666667e-02
3659 -7.133333e-02
3660 9.933333e-02
3661 1.773333e-01
3662 7.466667e-02
3663 5.600000e-02
3664 -5.333333e-03
3665 -2.040000e-01
3666 1.820000e-01
3667 -3.666667e-02
3668 1.833333e-01
3669 7.466667e-02
3670 5.666667e-02
3671 -1.806667e-01
3672 -6.066667e-02
3673 -2.140000e-01
3674 -4.000000e-02
3675 -1.220000e-01
3676 -1.233333e-01
3677 1.373333e-01
3678 -7.800000e-02
3679 -2.366667e-01
3680 1.246667e-01
3681 -9.333333e-02
3682 -3.466667e-02
3683 -8.000000e-02
3684 2.640000e-01
3685 -1.453333e-01
3686 2.400000e-02
3687 1.513333e-01
3688 -4.666667e-02
3689 8.000000e-02
3690 5.133333e-02
3691 -1.553333e-01
3692 6.666667e-02
3693 1.773333e-01
3694 1.566667e-01
3695 1.193333e-01
3696 -8.866667e-02
3697 1.560000e-01
3698 -4.600000e-02
3699 2.000000e-03
3700 -6.266667e-02
3701 2.466667e-01
3702 -2.066667e-02
3703 2.013333e-01
3704 1.786667e-01
3705 -2.666667e-03
3706 -1.953333e-01
3707 2.800000e-02
3708 7.666667e-02
3709 2.000000e-03
3710 -1.133333e-01
3711 -1.913333e-01
3712 -1.533333e-01
3713 8.333333e-02
3714 -2.706667e-01
3715 -6.800000e-02
3716 2.366667e-01
3717 1.940000e-01
3718 8.866667e-02
3719 1.526667e-01
3720 -1.120000e-01
3721 6.000000e-02
3722 2.800000e-02
3723 -1.320000e-01
3724 1.053333e-01
3725 1.020000e-01
3726 2.066667e-02
3727 -2.340000e-01
3728 -1.786667e-01
3729 1.166667e-01
3730 -3.733333e-02
3731 -1.033333e-01
3732 2.033333e-01
3733 -1.600000e-02
3734 6.266667e-02
3735 -7.200000e-02
3736 7.533333e-02
3737 -6.600000e-02
3738 1.066667e-01
3739 -1.320000e-01
3740 -2.006667e-01
3741 -1.286667e-01
3742 3.133333e-02
3743 1.160000e-01
3744 -1.400000e-02
3745 -1.866667e-02
3746 1.733333e-02
3747 -4.066667e-02
3748 1.426667e-01
3749 -2.166667e-01
3750 4.133333e-02
3751 4.733333e-02
3752 9.600000e-02
3753 -1.620000e-01
3754 1.480000e-01
3755 -1.186667e-01
3756 3.200000e-02
3757 1.746667e-01
3758 -1.200000e-02
3759 -1.740000e-01
3760 1.266667e-01
3761 -4.266667e-02
3762 6.533333e-02
3763 -5.466667e-02
3764 2.026667e-01
3765 6.800000e-02
3766 -2.133333e-02
3767 -2.333333e-02
3768 4.666667e-02
3769 -1.006667e-01
3770 1.400000e-02
3771 5.133333e-02
3772 -1.833333e-01
3773 6.666667e-04
3774 -2.166667e-01
3775 6.800000e-02
3776 3.866667e-02
3777 -1.433333e-01
3778 1.920000e-01
3779 -2.546667e-01
3780 1.040000e-01
3781 1.066667e-01
3782 -1.066667e-01
3783 3.333333e-02
3784 1.800000e-02
3785 -7.333333e-03
3786 -1.520000e-01
3787 1.800000e-01
3788 1.200000e-02
3789 -4.466667e-02
3790 -1.800000e-02
3791 1.400000e-01
3792 -5.333333e-02
3793 2.800000e-02
3794 3.800000e-02
3795 -7.266667e-02
3796 -4.200000e-02
3797 1.213333e-01
3798 -4.666667e-03
3799 -1.660000e-01
3800 -2.286667e-01
3801 -2.133333e-02
3802 -1.460000e-01
3803 -8.266667e-02
3804 -8.733333e-02
3805 -2.113333e-01
3806 -1.493333e-01
3807 8.000000e-03
3808 -1.373333e-01
3809 1.080000e-01
3810 1.420000e-01
3811 -9.266667e-02
3812 -1.746667e-01
3813 1.000000e-01
3814 -1.706667e-01
3815 -1.406667e-01
3816 -1.646667e-01
3817 2.400000e-02
3818 9.066667e-02
3819 -5.866667e-02
3820 -1.880000e-01
3821 -1.133333e-01
3822 5.333333e-03
3823 -1.133333e-01
3824 8.400000e-02
3825 -1.126667e-01
3826 7.600000e-02
3827 -6.333333e-02
3828 3.600000e-02
3829 -1.920000e-01
3830 -1.173333e-01
3831 2.746667e-01
3832 -1.520000e-01
3833 1.060000e-01
3834 1.893333e-01
3835 2.066667e-02
3836 1.033333e-01
3837 9.333333e-03
3838 -8.133333e-02
3839 5.333333e-02
3840 1.506667e-01
3841 -6.800000e-02
3842 1.893333e-01
3843 -9.200000e-02
3844 1.853333e-01
3845 8.533333e-02
3846 -1.113333e-01
3847 -6.466667e-02
3848 -6.066667e-02
3849 -1.553333e-01
3850 -4.000000e-03
3851 -1.260000e-01
3852 -2.113333e-01
3853 -4.933333e-02
3854 3.000000e-02
3855 7.133333e-02
3856 1.533333e-01
3857 1.600000e-02
3858 2.066667e-02
3859 3.866667e-02
3860 8.933333e-02
3861 9.133333e-02
3862 -6.866667e-02
3863 -7.266667e-02
3864 1.793333e-01
3865 5.933333e-02
3866 5.333333e-03
3867 1.960000e-01
3868 2.666667e-02
3869 6.666667e-03
3870 -6.933333e-02
3871 -1.913333e-01
3872 3.800000e-02
3873 -1.180000e-01
3874 2.706667e-01
3875 -3.666667e-02
3876 -1.686667e-01
3877 -1.053333e-01
3878 7.000000e-02
3879 -9.466667e-02
3880 3.200000e-02
3881 1.733333e-01
3882 2.000000e-03
3883 -1.333333e-01
3884 -8.600000e-02
3885 1.586667e-01
3886 -4.266667e-02
3887 -1.693333e-01
3888 -2.800000e-02
3889 1.460000e-01
3890 8.200000e-02
3891 -1.560000e-01
3892 1.346667e-01
3893 2.933333e-02
3894 7.200000e-02
3895 2.533333e-02
3896 -1.246667e-01
3897 5.533333e-02
3898 4.933333e-02
3899 -4.266667e-02
3900 -2.326667e-01
3901 5.466667e-02
3902 -2.533333e-02
3903 1.280000e-01
3904 -1.466667e-01
3905 7.066667e-02
3906 1.766667e-01
3907 -5.466667e-02
3908 3.333333e-03
3909 1.393333e-01
3910 6.400000e-02
3911 -2.573333e-01
3912 1.733333e-02
3913 1.240000e-01
3914 -6.400000e-02
3915 -1.160000e-01
3916 -4.666667e-02
3917 1.793333e-01
3918 -1.266667e-02
3919 2.060000e-01
3920 1.246667e-01
3921 1.200000e-01
3922 3.266667e-02
3923 -1.200000e-01
3924 -4.266667e-02
3925 -1.400000e-01
3926 9.733333e-02
3927 6.133333e-02
3928 3.533333e-02
3929 7.533333e-02
3930 -1.193333e-01
3931 -1.406667e-01
3932 1.326667e-01
3933 -9.866667e-02
3934 2.933333e-02
3935 5.600000e-02
3936 6.000000e-02
3937 3.333333e-02
3938 9.266667e-02
3939 -1.146667e-01
3940 1.800000e-02
3941 8.133333e-02
3942 6.000000e-03
3943 -1.620000e-01
3944 -1.566667e-01
3945 -2.233333e-01
3946 -3.066667e-02
3947 5.400000e-02
3948 1.520000e-01
3949 8.600000e-02
3950 1.240000e-01
3951 -6.400000e-02
3952 -1.266667e-01
3953 -2.466667e-02
3954 1.733333e-02
3955 -2.273333e-01
3956 -4.000000e-02
3957 4.000000e-02
3958 -6.600000e-02
3959 1.493333e-01
3960 6.533333e-02
3961 -6.666667e-02
3962 -1.106667e-01
3963 7.410465e-18
3964 -6.666667e-03
3965 -1.886667e-01
3966 -6.866667e-02
3967 2.533333e-01
3968 1.940000e-01
3969 1.306667e-01
3970 -1.333333e-02
3971 -2.666667e-03
3972 -7.333333e-02
3973 7.200000e-02
3974 -2.480000e-01
3975 5.866667e-02
3976 -1.200000e-02
3977 -1.166667e-01
3978 -7.133333e-02
3979 -1.333333e-03
3980 6.866667e-02
3981 2.506667e-01
3982 4.933333e-02
3983 2.173333e-01
3984 1.286667e-01
3985 -3.400000e-02
3986 -9.066667e-02
3987 3.866667e-02
3988 2.866667e-02
3989 1.340000e-01
3990 2.300000e-01
3991 2.000000e-01
3992 3.600000e-02
3993 1.560000e-01
3994 -1.106667e-01
3995 -9.866667e-02
3996 1.400000e-02
3997 -2.026667e-01
3998 3.333333e-03
3999 -3.400000e-02
4000 5.200000e-02
4001 3.466667e-02
4002 7.000000e-02
4003 -7.333333e-03
4004 -3.200000e-02
4005 -9.933333e-02
4006 1.380000e-01
4007 -9.466667e-02
4008 1.453333e-01
4009 5.400000e-02
4010 -1.646667e-01
4011 9.533333e-02
4012 2.066667e-02
4013 1.233333e-01
4014 1.646667e-01
4015 -1.146667e-01
4016 3.333333e-02
4017 9.466667e-02
4018 1.220000e-01
4019 1.013333e-01
4020 -7.933333e-02
4021 -7.466667e-02
4022 1.673333e-01
4023 -1.140000e-01
4024 4.466667e-02
4025 6.000000e-03
4026 -7.933333e-02
4027 -1.333333e-02
4028 4.133333e-02
4029 1.206667e-01
4030 -5.933333e-02
4031 -1.386667e-01
4032 -7.333333e-03
4033 1.353333e-01
4034 7.533333e-02
4035 2.393333e-01
4036 1.220000e-01
4037 -1.000000e-01
4038 -6.133333e-02
4039 -1.706667e-01
4040 1.713333e-01
4041 1.653333e-01
4042 -1.653333e-01
4043 6.666667e-04
4044 1.280000e-01
4045 5.333333e-02
4046 2.533333e-02
4047 -1.153333e-01
4048 2.200000e-02
4049 1.280000e-01
4050 -1.733333e-01
4051 -1.666667e-02
4052 2.666667e-03
4053 2.266667e-01
4054 9.800000e-02
4055 -4.133333e-02
4056 -6.866667e-02
4057 1.586667e-01
4058 -1.306667e-01
4059 -5.866667e-02
4060 1.253333e-01
4061 -1.333333e-03
4062 -1.533333e-02
4063 5.066667e-02
4064 4.400000e-02
4065 4.000000e-02
4066 1.453333e-01
4067 -1.266667e-02
4068 -7.266667e-02
4069 4.133333e-02
4070 1.920000e-01
4071 -8.600000e-02
4072 -1.040000e-01
4073 -1.226667e-01
4074 8.466667e-02
4075 -1.273333e-01
4076 -6.666667e-02
4077 -1.400000e-02
4078 -1.720000e-01
4079 9.333333e-02
4080 4.000000e-02
4081 -1.566667e-01
4082 6.666667e-03
4083 -1.586667e-01
4084 6.800000e-02
4085 -1.513333e-01
4086 -1.713333e-01
4087 -1.086667e-01
4088 -7.200000e-02
4089 -2.180000e-01
4090 -1.573333e-01
4091 -8.733333e-02
4092 -7.333333e-02
4093 1.213333e-01
4094 -1.113333e-01
4095 1.806667e-01
4096 1.586667e-01
4097 8.400000e-02
4098 -9.200000e-02
4099 -8.000000e-03
4100 3.600000e-02
4101 -7.266667e-02
4102 -8.600000e-02
4103 1.186667e-01
4104 1.273333e-01
4105 -2.000000e-02
4106 -1.380000e-01
4107 2.446667e-01
4108 6.266667e-02
4109 1.333333e-02
4110 -2.433333e-01
4111 -1.086667e-01
4112 -1.533333e-01
4113 9.466667e-02
4114 8.000000e-03
4115 -1.713333e-01
4116 2.020000e-01
4117 1.233333e-01
4118 -8.800000e-02
4119 3.133333e-02
4120 8.000000e-03
4121 -1.600000e-01
4122 1.853333e-01
4123 1.793333e-01
4124 7.866667e-02
4125 -1.800000e-01
4126 1.986667e-01
4127 -1.486667e-01
4128 4.733333e-02
4129 5.666667e-02
4130 1.586667e-01
4131 -2.260000e-01
4132 1.153333e-01
4133 6.800000e-02
4134 7.066667e-02
4135 -4.733333e-02
4136 -6.266667e-02
4137 -9.333333e-02
4138 1.926667e-01
4139 1.506667e-01
4140 -4.800000e-02
4141 2.566667e-01
4142 6.400000e-02
4143 -3.000000e-02
4144 1.453333e-01
4145 6.666667e-03
4146 5.200000e-02
4147 -1.673333e-01
4148 -1.133333e-02
4149 -1.886667e-01
4150 -2.933333e-02
4151 -2.000000e-03
4152 -5.333333e-03
4153 1.606667e-01
4154 -2.106667e-01
4155 -6.600000e-02
4156 -2.220971e-17
4157 -1.153333e-01
4158 5.733333e-02
4159 1.286667e-01
4160 1.560000e-01
4161 4.333333e-02
4162 4.000000e-02
4163 1.600000e-01
4164 9.666667e-02
4165 2.846667e-01
4166 3.933333e-02
4167 1.060000e-01
4168 -1.606667e-01
4169 1.213333e-01
4170 -1.126667e-01
4171 -2.086667e-01
4172 -1.953333e-01
4173 1.120000e-01
4174 -2.333333e-02
4175 1.293333e-01
4176 -1.393333e-01
4177 -2.146667e-01
4178 -8.266667e-02
4179 -8.666667e-02
4180 3.733333e-02
4181 2.466667e-02
4182 1.280000e-01
4183 8.066667e-02
4184 9.533333e-02
4185 -1.926667e-01
4186 -1.120000e-01
4187 2.046667e-01
4188 1.286667e-01
4189 2.686667e-01
4190 8.800000e-02
4191 1.153333e-01
4192 2.666667e-01
4193 -1.846667e-01
4194 -5.133333e-02
4195 6.933333e-02
4196 -1.320000e-01
4197 1.333333e-01
4198 -8.866667e-02
4199 8.066667e-02
4200 -1.933333e-02
4201 5.466667e-02
4202 6.666667e-03
4203 4.800000e-02
4204 -5.000000e-02
4205 -1.380000e-01
4206 1.260000e-01
4207 -6.000000e-02
4208 8.266667e-02
4209 1.333333e-03
4210 1.560000e-01
4211 2.120000e-01
4212 6.000000e-02
4213 2.606667e-01
4214 -1.953333e-01
4215 -8.933333e-02
4216 -4.133333e-02
4217 8.866667e-02
4218 9.200000e-02
4219 -4.000000e-03
4220 1.440000e-01
4221 9.400000e-02
4222 -1.533333e-02
4223 -3.533333e-02
4224 -1.320000e-01
4225 -6.400000e-02
4226 -1.973333e-01
4227 -1.720000e-01
4228 4.200000e-02
4229 7.533333e-02
4230 -2.800000e-02
4231 -5.800000e-02
4232 1.286667e-01
4233 -1.746667e-01
4234 -7.200000e-02
4235 -1.040000e-01
4236 4.133333e-02
4237 5.066667e-02
4238 -1.486667e-01
4239 -9.133333e-02
4240 -5.600000e-02
4241 1.353333e-01
4242 -6.666667e-03
4243 -4.933333e-02
4244 1.633333e-01
4245 -1.273333e-01
4246 -5.400000e-02
4247 -1.686667e-01
4248 -1.613333e-01
4249 1.286667e-01
4250 9.200000e-02
4251 4.000000e-03
4252 2.073333e-01
4253 1.186667e-01
4254 -1.380000e-01
4255 -2.146667e-01
4256 8.066667e-02
4257 9.400000e-02
4258 -4.466667e-02
4259 -7.000000e-02
4260 -1.113333e-01
4261 1.393333e-01
4262 -2.533333e-02
4263 2.133333e-02
4264 8.133333e-02
4265 1.653333e-01
4266 2.200000e-02
4267 1.240000e-01
4268 -2.533333e-02
4269 1.333333e-02
4270 -2.093333e-01
4271 1.540000e-01
4272 6.000000e-03
4273 -9.266667e-02
4274 6.000000e-02
4275 -1.060000e-01
4276 1.653333e-01
4277 4.066667e-02
4278 2.320000e-01
4279 -1.366667e-01
4280 -1.486667e-01
4281 -1.306667e-01
4282 -2.400000e-01
4283 2.666667e-02
4284 1.473333e-01
4285 5.666667e-02
4286 -7.733333e-02
4287 -7.666667e-02
4288 -1.286667e-01
4289 -1.433333e-01
4290 1.000000e-02
4291 -1.760000e-01
4292 -2.166667e-01
4293 -1.013333e-01
4294 -4.466667e-02
4295 7.933333e-02
4296 -1.900000e-01
4297 1.860000e-01
4298 -9.333333e-02
4299 2.386667e-01
4300 -6.800000e-02
4301 -1.966667e-01
4302 -6.666667e-04
4303 -3.333333e-02
4304 -1.386667e-01
4305 -1.626667e-01
4306 1.406667e-01
4307 1.000000e-02
4308 1.280000e-01
4309 2.113333e-01
4310 -2.200000e-02
4311 1.433333e-01
4312 -2.033333e-01
4313 -1.493333e-01
4314 2.866667e-01
4315 9.066667e-02
4316 -5.333333e-02
4317 4.666667e-03
4318 3.800000e-02
4319 6.266667e-02
4320 -2.866667e-02
4321 -1.493333e-01
4322 -1.380000e-01
4323 4.733333e-02
4324 1.646667e-01
4325 1.226667e-01
4326 1.966667e-01
4327 5.866667e-02
4328 2.100000e-01
4329 1.220000e-01
4330 -5.066667e-02
4331 1.666667e-01
4332 -1.400000e-01
4333 4.733333e-02
4334 2.266667e-01
4335 -4.000000e-03
4336 -7.466667e-02
4337 -7.333333e-02
4338 9.866667e-02
4339 5.266667e-02
4340 1.473333e-01
4341 1.113333e-01
4342 1.286667e-01
4343 -9.666667e-02
4344 4.866667e-02
4345 -8.600000e-02
4346 1.580000e-01
4347 -1.573333e-01
4348 3.733333e-02
4349 1.633333e-01
4350 1.400000e-01
4351 -9.200000e-02
4352 6.200000e-02
4353 1.820000e-01
4354 -7.333333e-02
4355 -1.060000e-01
4356 -1.853333e-01
4357 -1.686667e-01
4358 -2.040000e-01
4359 8.600000e-02
4360 -2.733333e-02
4361 -1.200000e-02
4362 9.800000e-02
4363 9.733333e-02
4364 1.293333e-01
4365 -1.666667e-02
4366 -2.800000e-02
4367 -1.393333e-01
4368 1.360000e-01
4369 -5.333333e-02
4370 -1.600000e-01
4371 -2.933333e-02
4372 -2.133333e-02
4373 3.266667e-02
4374 2.600000e-02
4375 -9.733333e-02
4376 7.600000e-02
4377 2.533333e-02
4378 1.420000e-01
4379 1.933333e-02
4380 3.400000e-02
4381 -1.140000e-01
4382 3.400000e-02
4383 1.033333e-01
4384 2.733333e-02
4385 -1.433333e-01
4386 -1.173333e-01
4387 2.433333e-01
4388 -4.333333e-02
4389 -2.620000e-01
4390 5.200000e-02
4391 1.140000e-01
4392 4.600000e-02
4393 4.400000e-02
4394 1.933333e-02
4395 8.866667e-02
4396 -1.400000e-01
4397 1.153333e-01
4398 1.053333e-01
4399 2.193333e-01
4400 -1.026667e-01
4401 -1.293333e-01
4402 6.333333e-02
4403 -8.333333e-02
4404 4.666667e-02
4405 1.933333e-01
4406 2.733333e-02
4407 -6.666667e-02
4408 8.133333e-02
4409 -2.066667e-02
4410 -1.973333e-01
4411 -2.033333e-01
4412 -1.606667e-01
4413 6.733333e-02
4414 -9.533333e-02
4415 -9.266667e-02
4416 3.733333e-02
4417 -2.186667e-01
4418 -9.133333e-02
4419 -1.700000e-01
4420 1.113333e-01
4421 -1.140000e-01
4422 1.600000e-02
4423 1.246667e-01
4424 -1.133333e-01
4425 -1.213333e-01
4426 4.200000e-02
4427 1.846667e-01
4428 -1.026667e-01
4429 -1.026667e-01
4430 1.466667e-02
4431 1.740000e-01
4432 1.980000e-01
4433 5.133333e-02
4434 -1.313333e-01
4435 -8.600000e-02
4436 1.113333e-01
4437 -1.180000e-01
4438 1.280000e-01
4439 1.300000e-01
4440 2.100000e-01
4441 2.266667e-02
4442 -1.800000e-01
4443 -2.066667e-01
4444 4.466667e-02
4445 4.666667e-02
4446 1.340000e-01
4447 3.600000e-02
4448 3.200000e-02
4449 1.580000e-01
4450 -9.466667e-02
4451 -2.240000e-01
4452 1.940000e-01
4453 1.326667e-01
4454 -5.733333e-02
4455 1.500000e-01
4456 -5.266667e-02
4457 4.066667e-02
4458 1.840000e-01
4459 -2.353333e-01
4460 -1.533333e-01
4461 -1.453333e-01
4462 -9.800000e-02
4463 1.200000e-02
4464 5.000000e-02
4465 3.933333e-02
4466 -1.533333e-01
4467 -1.306667e-01
4468 -2.526667e-01
4469 -1.800000e-02
4470 -1.786667e-01
4471 -2.046667e-01
4472 -2.126667e-01
4473 5.733333e-02
4474 -1.513333e-01
4475 9.200000e-02
4476 -1.640000e-01
4477 -9.666667e-02
4478 6.466667e-02
4479 -5.933333e-02
4480 -4.000000e-03
4481 -1.120000e-01
4482 -6.866667e-02
4483 3.933333e-02
4484 4.066667e-02
4485 -9.200000e-02
4486 -2.326667e-01
4487 -1.233333e-01
4488 -1.040000e-01
4489 9.866667e-02
4490 -2.466667e-02
4491 -1.866667e-02
4492 1.226667e-01
4493 4.200000e-02
4494 1.446667e-01
4495 1.440000e-01
4496 -9.466667e-02
4497 1.746667e-01
4498 6.666667e-03
4499 -2.866667e-02
4500 -2.380000e-01
4501 1.140000e-01
4502 9.266667e-02
4503 -1.013333e-01
4504 8.066667e-02
4505 -2.066667e-02
4506 5.800000e-02
4507 7.866667e-02
4508 1.773333e-01
4509 1.020000e-01
4510 -3.200000e-02
4511 -1.526667e-01
4512 -1.306667e-01
4513 1.306667e-01
4514 1.706667e-01
4515 8.400000e-02
4516 -6.800000e-02
4517 8.266667e-02
4518 -8.866667e-02
4519 5.266667e-02
4520 1.100000e-01
4521 -5.866667e-02
4522 3.600000e-02
4523 1.200000e-01
4524 -2.280000e-01
4525 1.166667e-01
4526 1.193333e-01
4527 2.040000e-01
4528 8.733333e-02
4529 5.600000e-02
4530 4.000000e-02
4531 9.533333e-02
4532 -5.800000e-02
4533 8.200000e-02
4534 1.060000e-01
4535 -1.113333e-01
4536 9.800000e-02
4537 -1.333333e-03
4538 1.933333e-02
4539 2.080000e-01
4540 -2.400000e-01
4541 6.333333e-02
4542 2.933333e-02
4543 6.066667e-02
4544 -1.180000e-01
4545 -1.413333e-01
4546 -1.173333e-01
4547 -1.293333e-01
4548 8.000000e-03
4549 -3.333333e-02
4550 4.666667e-02
4551 6.466667e-02
4552 -4.400000e-02
4553 -8.333333e-02
4554 -1.033333e-01
4555 1.740000e-01
4556 1.460000e-01
4557 -9.733333e-02
4558 6.533333e-02
4559 2.033333e-01
4560 -1.866667e-02
4561 -1.466667e-02
4562 -8.066667e-02
4563 1.066667e-01
4564 2.000000e-01
4565 1.966667e-01
4566 -1.546667e-01
4567 1.420000e-01
4568 -6.666667e-04
4569 1.946667e-01
4570 -4.066667e-02
4571 -5.800000e-02
4572 6.666667e-02
4573 -1.753333e-01
4574 -1.540000e-01
4575 -1.466667e-02
4576 2.200000e-02
4577 -1.106667e-01
4578 6.400000e-02
4579 -8.933333e-02
4580 -1.846667e-01
4581 -2.020000e-01
4582 -1.960000e-01
4583 -3.266667e-02
4584 -1.533333e-01
4585 -6.666667e-03
4586 1.733333e-01
4587 7.800000e-02
4588 4.133333e-02
4589 -1.953333e-01
4590 9.800000e-02
4591 2.800000e-02
4592 -6.666667e-04
4593 1.380000e-01
4594 -6.933333e-02
4595 -3.333333e-02
4596 2.400000e-02
4597 -3.133333e-02
4598 1.760000e-01
4599 -1.640000e-01
4600 8.933333e-02
4601 -8.666667e-02
4602 -8.066667e-02
4603 -7.066667e-02
4604 -1.533333e-02
4605 1.026667e-01
4606 -1.800000e-01
4607 -4.200000e-02
4608 -7.066667e-02
4609 -1.320000e-01
4610 1.933333e-02
4611 5.333333e-02
4612 -7.866667e-02
4613 -1.113333e-01
4614 2.393333e-01
4615 1.193333e-01
4616 6.666667e-04
4617 -7.666667e-02
4618 -1.813333e-01
4619 -1.340000e-01
4620 1.133333e-02
4621 1.706667e-01
4622 -5.400000e-02
4623 -9.666667e-02
4624 -1.280000e-01
4625 1.166667e-01
4626 9.800000e-02
4627 1.566667e-01
4628 -1.033333e-01
4629 -5.933333e-02
4630 -9.000000e-02
4631 -1.480000e-01
4632 -2.033333e-01
4633 1.266667e-01
4634 1.453333e-01
4635 7.733333e-02
4636 6.666667e-03
4637 -4.000000e-02
4638 1.773333e-01
4639 1.713333e-01
4640 -4.733333e-02
4641 -2.013333e-01
4642 -2.600000e-02
4643 -1.333333e-03
4644 -1.066667e-02
4645 -1.226667e-01
4646 6.200000e-02
4647 4.266667e-02
4648 -2.666667e-03
4649 7.066667e-02
4650 1.933333e-02
4651 1.433333e-01
4652 6.200000e-02
4653 1.266667e-02
4654 -1.400000e-02
4655 -1.553333e-01
4656 4.266667e-02
4657 -4.066667e-02
4658 7.333333e-02
4659 3.466667e-02
4660 -5.066667e-02
4661 -1.000000e-02
4662 8.933333e-02
4663 -2.666667e-02
4664 -1.353333e-01
4665 -6.933333e-02
4666 -1.226667e-01
4667 1.480000e-01
4668 2.100000e-01
4669 -2.340000e-01
4670 5.733333e-02
4671 -6.266667e-02
4672 -2.726667e-01
4673 -1.526667e-01
4674 -1.820000e-01
4675 -2.180000e-01
4676 -4.000000e-02
4677 -1.266667e-02
4678 2.466667e-01
4679 1.106667e-01
4680 8.066667e-02
4681 -2.666667e-02
4682 1.540000e-01
4683 -9.200000e-02
4684 -2.000000e-03
4685 -8.866667e-02
4686 -1.493333e-01
4687 2.466667e-02
4688 9.466667e-02
4689 -5.466667e-02
4690 1.346667e-01
4691 -3.333333e-03
4692 -4.466667e-02
4693 3.333333e-02
4694 -8.133333e-02
4695 -1.966667e-01
4696 3.733333e-02
4697 4.600000e-02
4698 -8.533333e-02
4699 -7.066667e-02
4700 3.333333e-02
4701 -2.226667e-01
4702 -1.640000e-01
4703 5.533333e-02
4704 2.060000e-01
4705 6.400000e-02
4706 2.446667e-01
4707 -2.293333e-01
4708 -1.246667e-01
4709 -1.480000e-01
4710 -1.853333e-01
4711 1.393333e-01
4712 1.600000e-01
4713 1.333333e-01
4714 1.340000e-01
4715 -1.346667e-01
4716 2.133333e-02
4717 -1.073333e-01
4718 -1.400000e-01
4719 8.733333e-02
4720 -9.000000e-02
4721 8.066667e-02
4722 -2.666667e-03
4723 -1.860000e-01
4724 5.400000e-02
4725 8.666667e-02
4726 -5.533333e-02
4727 1.266667e-01
4728 -6.533333e-02
4729 6.733333e-02
4730 -9.400000e-02
4731 -5.800000e-02
4732 1.266667e-02
4733 -4.666667e-03
4734 -9.200000e-02
4735 1.786667e-01
4736 -2.200000e-02
4737 2.146667e-01
4738 -1.360000e-01
4739 -8.000000e-03
4740 -1.933333e-02
4741 3.533333e-02
4742 1.666667e-02
4743 4.733333e-02
4744 -7.333333e-02
4745 -8.133333e-02
4746 -1.313333e-01
4747 2.126667e-01
4748 -3.800000e-02
4749 -1.406667e-01
4750 1.266667e-02
4751 -1.300000e-01
4752 9.000000e-02
4753 2.333333e-02
4754 -2.673333e-01
4755 4.066667e-02
4756 -5.066667e-02
4757 2.200000e-02
4758 -2.246667e-01
4759 1.646667e-01
4760 1.693333e-01
4761 -1.233333e-01
4762 -1.053333e-01
4763 -2.086667e-01
4764 -2.800000e-02
4765 2.733333e-02
4766 -2.000000e-03
4767 -1.433333e-01
4768 -1.486667e-01
4769 9.800000e-02
4770 -1.720000e-01
4771 5.466667e-02
4772 -2.120000e-01
4773 -9.533333e-02
4774 -5.333333e-02
4775 -2.466667e-02
4776 8.466667e-02
4777 -7.400000e-02
4778 -3.133333e-02
4779 1.566667e-01
4780 2.800000e-02
4781 6.666667e-02
4782 -1.006667e-01
4783 1.020000e-01
4784 -1.313333e-01
4785 -7.400000e-02
4786 -4.133333e-02
4787 1.633333e-01
4788 1.700000e-01
4789 3.666667e-02
4790 -5.866667e-02
4791 -1.706667e-01
4792 9.933333e-02
4793 -2.060000e-01
4794 7.533333e-02
4795 -9.533333e-02
4796 -9.333333e-03
4797 -2.293333e-01
4798 -1.333333e-03
4799 -1.406667e-01
4800 5.000000e-02
4801 1.900000e-01
4802 -1.306667e-01
4803 -1.626667e-01
4804 -1.246667e-01
4805 -1.060000e-01
4806 -2.500000e-01
4807 1.333333e-01
4808 1.866667e-02
4809 -3.066667e-02
4810 1.660000e-01
4811 1.313333e-01
4812 1.120000e-01
4813 -1.533333e-01
4814 -1.353333e-01
4815 2.600000e-02
4816 -2.073333e-01
4817 -2.666667e-02
4818 4.266667e-02
4819 2.073333e-01
4820 1.626667e-01
4821 2.666667e-03
4822 1.880000e-01
4823 -8.600000e-02
4824 1.126667e-01
4825 2.200000e-02
4826 -1.966667e-01
4827 -1.013333e-01
4828 -1.746667e-01
4829 -2.400000e-02
4830 -9.133333e-02
4831 9.266667e-02
4832 1.866667e-01
4833 -1.753333e-01
4834 -1.640000e-01
4835 1.386667e-01
4836 -1.093333e-01
4837 -1.153333e-01
4838 1.706667e-01
4839 -3.866667e-02
4840 6.533333e-02
4841 1.546667e-01
4842 -1.700000e-01
4843 1.266667e-01
4844 -1.566667e-01
4845 -2.180000e-01
4846 -4.666667e-03
4847 -4.933333e-02
4848 2.053333e-01
4849 -1.553333e-01
4850 -1.586667e-01
4851 -5.800000e-02
4852 6.200000e-02
4853 7.200000e-02
4854 -7.466667e-02
4855 -1.500000e-01
4856 -1.400000e-02
4857 -7.200000e-02
4858 -1.806667e-01
4859 -1.006667e-01
4860 2.400000e-02
4861 -5.600000e-02
4862 -5.333333e-02
4863 -7.533333e-02
4864 1.386667e-01
4865 8.066667e-02
4866 -1.820000e-01
4867 4.266667e-02
4868 3.333333e-02
4869 -4.133333e-02
4870 1.573333e-01
4871 3.333333e-03
4872 1.573333e-01
4873 -1.386667e-01
4874 1.786667e-01
4875 -2.333333e-02
4876 5.466667e-02
4877 -2.466667e-02
4878 6.266667e-02
4879 -4.666667e-03
4880 1.200000e-02
4881 6.666667e-03
4882 -8.600000e-02
4883 8.200000e-02
4884 1.733333e-01
4885 7.133333e-02
4886 -4.666667e-03
4887 1.346667e-01
4888 1.340000e-01
4889 -1.193333e-01
4890 6.000000e-02
4891 4.400000e-02
4892 7.333333e-03
4893 1.053333e-01
4894 -7.333333e-02
4895 4.733333e-02
4896 -1.940000e-01
4897 1.093333e-01
4898 -1.826667e-01
4899 -7.733333e-02
4900 4.133333e-02
4901 7.400000e-02
4902 -2.593333e-01
4903 -2.266667e-02
4904 -1.546667e-01
4905 1.640000e-01
4906 -3.200000e-02
4907 -6.800000e-02
4908 -7.933333e-02
4909 -9.466667e-02
4910 2.133333e-02
4911 -1.053333e-01
4912 2.000000e-02
4913 1.706667e-01
4914 -2.866667e-02
4915 -6.933333e-02
4916 9.733333e-02
4917 -1.000000e-02
4918 -2.046667e-01
4919 1.773333e-01
4920 -2.706667e-01
4921 -3.933333e-02
4922 1.146667e-01
4923 1.420000e-01
4924 -1.780000e-01
4925 1.240000e-01
4926 1.140000e-01
4927 7.266667e-02
4928 5.866667e-02
4929 1.013333e-01
4930 7.666667e-02
4931 9.000000e-02
4932 1.140000e-01
4933 1.153333e-01
4934 -6.266667e-02
4935 1.446667e-01
4936 -1.200000e-01
4937 -1.653333e-01
4938 1.760000e-01
4939 3.333333e-02
4940 -1.213333e-01
4941 2.666667e-03
4942 1.406667e-01
4943 -7.666667e-02
4944 -4.066667e-02
4945 2.020000e-01
4946 1.666667e-01
4947 -1.926667e-01
4948 -2.340000e-01
4949 1.300000e-01
4950 -1.546667e-01
4951 -2.020000e-01
4952 1.026667e-01
4953 8.000000e-03
4954 -1.026667e-01
4955 1.206667e-01
4956 1.786667e-01
4957 -7.000000e-02
4958 9.400000e-02
4959 1.560000e-01
4960 4.133333e-02
4961 3.800000e-02
4962 7.533333e-02
4963 7.933333e-02
4964 1.020000e-01
4965 -1.633333e-01
4966 9.000000e-02
4967 5.133333e-02
4968 -3.133333e-02
4969 1.866667e-02
4970 -4.000000e-03
4971 -9.266667e-02
4972 -6.533333e-02
4973 8.666667e-03
4974 -1.386667e-01
4975 -1.320000e-01
4976 1.026667e-01
4977 -1.253333e-01
4978 9.200000e-02
4979 1.780000e-01
4980 1.313333e-01
4981 -9.800000e-02
4982 5.200000e-02
4983 5.333333e-02
4984 -9.533333e-02
4985 -1.933333e-02
4986 1.373333e-01
4987 7.800000e-02
4988 -2.666667e-03
4989 -7.666667e-02
4990 -1.466667e-02
4991 8.600000e-02
4992 -1.933333e-02
4993 4.666667e-03
4994 -4.400000e-02
4995 -6.266667e-02
4996 2.506667e-01
4997 2.533333e-02
4998 -7.000000e-02
4999 -5.200000e-02
5000 2.320000e-01
5001 -8.666667e-03
5002 9.600000e-02
5003 1.133333e-01
5004 6.400000e-02
5005 -1.546667e-01
5006 -1.386667e-01
5007 -2.173333e-01
5008 -1.566667e-01
5009 1.313333e-01
5010 8.866667e-02
5011 2.060000e-01
5012 1.353333e-01
5013 2.221694e-17
5014 1.466667e-02
5015 1.286667e-01
5016 -1.126667e-01
5017 -1.573333e-01
5018 -5.133333e-02
5019 -8.133333e-02
5020 1.000000e-01
5021 8.000000e-03
5022 2.533333e-02
5023 7.333333e-02
5024 1.353333e-01
5025 1.266667e-02
5026 -2.380000e-01
5027 -2.200000e-02
5028 1.493333e-01
5029 -1.693333e-01
5030 1.246667e-01
5031 4.133333e-02
5032 -6.466667e-02
5033 1.566667e-01
5034 -1.706667e-01
5035 -7.400000e-02
5036 -1.606667e-01
5037 1.226667e-01
5038 -8.000000e-02
5039 5.600000e-02
5040 -2.013333e-01
5041 -2.220000e-01
5042 1.726667e-01
5043 1.313333e-01
5044 -1.146667e-01
5045 5.066667e-02
5046 1.000000e-01
5047 7.133333e-02
5048 2.020000e-01
5049 -6.400000e-02
5050 -3.066667e-02
5051 -1.133333e-01
5052 -1.093333e-01
5053 1.126667e-01
5054 -1.946667e-01
5055 1.766667e-01
5056 2.400000e-02
5057 5.600000e-02
5058 6.666667e-02
5059 -1.160000e-01
5060 1.346667e-01
5061 -3.666667e-02
5062 -1.846667e-01
5063 -1.746667e-01
5064 -1.473333e-01
5065 -7.933333e-02
5066 -2.606667e-01
5067 4.200000e-02
5068 -1.226667e-01
5069 1.853333e-01
5070 3.200000e-02
5071 -7.133333e-02
5072 1.680000e-01
5073 4.666667e-02
5074 1.266667e-01
5075 -1.633333e-01
5076 -4.466667e-02
5077 -1.253333e-01
5078 1.913333e-01
5079 -1.946667e-01
5080 1.486667e-01
5081 2.026667e-01
5082 2.600000e-02
5083 7.466667e-02
5084 -7.866667e-02
5085 9.200000e-02
5086 -1.613333e-01
5087 4.066667e-02
5088 1.340000e-01
5089 -7.600000e-02
5090 -5.133333e-02
5091 6.666667e-02
5092 -1.566667e-01
5093 -2.800000e-02
5094 -9.733333e-02
5095 1.766667e-01
5096 4.800000e-02
5097 -2.386667e-01
5098 -3.133333e-02
5099 -1.913333e-01
5100 3.066667e-02
5101 1.853333e-01
5102 -1.066667e-02
5103 -1.920000e-01
5104 -2.040000e-01
5105 -6.666667e-02
5106 1.206667e-01
5107 -9.466667e-02
5108 1.346667e-01
5109 -1.013333e-01
5110 -5.800000e-02
5111 -1.646667e-01
5112 9.066667e-02
5113 1.880000e-01
5114 6.666667e-04
5115 2.346667e-01
5116 1.460000e-01
5117 -1.666667e-02
5118 3.933333e-02
5119 1.666667e-02
5120 -1.873333e-01
5121 -1.286667e-01
5122 5.266667e-02
5123 -8.066667e-02
5124 1.426667e-01
5125 7.600000e-02
5126 1.753333e-01
5127 -5.466667e-02
5128 -1.780000e-01
5129 1.606667e-01
5130 -2.666667e-03
5131 1.253333e-01
5132 -1.680000e-01
5133 1.413333e-01
5134 -1.400000e-01
5135 -9.133333e-02
5136 1.333333e-01
5137 6.666667e-02
5138 -2.066667e-02
5139 -1.093333e-01
5140 3.133333e-02
5141 8.266667e-02
5142 1.226667e-01
5143 -1.066667e-01
5144 1.200000e-01
5145 -2.413333e-01
5146 -1.140000e-01
5147 2.466667e-02
5148 -2.933333e-02
5149 -1.986667e-01
5150 -5.000000e-02
5151 8.933333e-02
5152 -1.820000e-01
5153 -5.800000e-02
5154 -2.466667e-02
5155 1.446667e-01
5156 -3.933333e-02
5157 1.846667e-01
5158 -1.320000e-01
5159 1.733333e-01
5160 -9.533333e-02
5161 -1.740000e-01
5162 -1.466667e-01
5163 8.000000e-03
5164 1.226667e-01
5165 1.146667e-01
5166 -7.200000e-02
5167 -2.100000e-01
5168 4.866667e-02
5169 -1.153333e-01
5170 -1.906667e-01
5171 -2.213333e-01
5172 1.333333e-03
5173 -2.433333e-01
5174 1.666667e-02
5175 1.060000e-01
5176 1.133333e-02
5177 -1.226667e-01
5178 -5.333333e-03
5179 5.600000e-02
5180 8.133333e-02
5181 1.906667e-01
5182 1.860000e-01
5183 -2.040000e-01
5184 -1.146667e-01
5185 -5.933333e-02
5186 -8.266667e-02
5187 3.533333e-02
5188 -1.940000e-01
5189 -9.866667e-02
5190 1.026667e-01
5191 -1.800000e-01
5192 1.493333e-01
5193 1.226667e-01
5194 -1.186667e-01
5195 -3.466667e-02
5196 1.273333e-01
5197 -1.400000e-02
5198 9.000000e-02
5199 1.260000e-01
5200 -1.600000e-02
5201 1.133333e-01
5202 3.066667e-02
5203 1.660000e-01
5204 1.360000e-01
5205 -9.066667e-02
5206 -7.466667e-02
5207 -2.333333e-01
5208 1.133333e-02
5209 9.466667e-02
5210 2.133333e-02
5211 9.666667e-02
5212 -7.466667e-02
5213 -1.120000e-01
5214 1.993333e-01
5215 1.273333e-01
5216 1.126667e-01
5217 -2.733333e-02
5218 1.000000e-01
5219 1.240000e-01
5220 1.333333e-01
5221 9.333333e-02
5222 -9.666667e-02
5223 -2.320000e-01
5224 -3.133333e-02
5225 -1.673333e-01
5226 -4.333333e-02
5227 -9.266667e-02
5228 1.713333e-01
5229 1.566667e-01
5230 2.086667e-01
5231 -1.340000e-01
5232 1.266667e-01
5233 -1.226667e-01
5234 5.666667e-02
5235 -9.733333e-02
5236 -1.113333e-01
5237 -1.886667e-01
5238 9.266667e-02
5239 1.733333e-02
5240 1.333333e-02
5241 -1.566667e-01
5242 2.100000e-01
5243 1.426667e-01
5244 1.726667e-01
5245 2.013333e-01
5246 -3.000000e-02
5247 1.320000e-01
5248 -4.666667e-02
5249 9.400000e-02
5250 6.600000e-02
5251 -1.580000e-01
5252 -6.266667e-02
5253 5.333333e-03
5254 9.533333e-02
5255 8.000000e-03
5256 5.933333e-02
5257 3.266667e-02
5258 2.140000e-01
5259 -1.073333e-01
5260 -2.226667e-01
5261 -1.093333e-01
5262 1.633333e-01
5263 -1.946667e-01
5264 -5.266667e-02
5265 -9.333333e-03
5266 3.133333e-02
5267 -1.173333e-01
5268 1.093333e-01
5269 -1.240000e-01
5270 -1.533333e-02
5271 8.866667e-02
5272 7.666667e-02
5273 7.466667e-02
5274 -1.086667e-01
5275 6.733333e-02
5276 7.933333e-02
5277 -7.333333e-03
5278 4.600000e-02
5279 9.333333e-03
5280 1.960000e-01
5281 -5.133333e-02
5282 4.800000e-02
5283 1.553333e-01
5284 1.666667e-02
5285 -2.440000e-01
5286 2.173333e-01
5287 1.813333e-01
5288 -2.933333e-02
5289 -2.086667e-01
5290 9.200000e-02
5291 8.866667e-02
5292 1.420000e-01
5293 -2.133333e-02
5294 1.680000e-01
5295 -1.133333e-02
5296 2.033333e-01
5297 2.200000e-02
5298 -3.133333e-02
5299 1.493333e-01
5300 -1.226667e-01
5301 -1.440000e-01
5302 1.366667e-01
5303 -1.866667e-02
5304 2.800000e-02
5305 -3.600000e-02
5306 1.133333e-01
5307 9.400000e-02
5308 1.600000e-01
5309 -1.346667e-01
5310 -4.266667e-02
5311 -1.886667e-01
5312 -1.066667e-02
5313 1.473333e-01
5314 -1.320000e-01
5315 6.733333e-02
5316 -1.000000e-01
5317 -7.600000e-02
5318 -1.113333e-01
5319 -1.266667e-01
5320 1.160000e-01
5321 -6.000000e-03
5322 2.180000e-01
5323 1.213333e-01
5324 1.006667e-01
5325 -1.200000e-02
5326 -1.253333e-01
5327 1.320000e-01
5328 1.260000e-01
5329 -8.600000e-02
5330 7.866667e-02
5331 -5.800000e-02
5332 -4.933333e-02
5333 -2.066667e-01
5334 -1.466667e-01
5335 1.880000e-01
5336 3.466667e-02
5337 6.000000e-03
5338 9.000000e-02
5339 -4.533333e-02
5340 -8.400000e-02
5341 -3.600000e-02
5342 4.666667e-02
5343 -1.673333e-01
5344 5.600000e-02
5345 -1.400000e-01
5346 2.333333e-02
5347 -1.000000e-01
5348 -4.800000e-02
5349 -6.266667e-02
5350 1.193333e-01
5351 3.000000e-02
5352 2.466667e-02
5353 -1.266667e-01
5354 7.066667e-02
5355 9.933333e-02
5356 1.900000e-01
5357 8.800000e-02
5358 1.446667e-01
5359 -2.306667e-01
5360 2.240000e-01
5361 -1.886667e-01
5362 -5.733333e-02
5363 5.533333e-02
5364 7.333333e-03
5365 1.493333e-01
5366 -1.173333e-01
5367 1.826667e-01
5368 1.726667e-01
5369 -2.660000e-01
5370 -3.733333e-02
5371 8.600000e-02
5372 -8.733333e-02
5373 -3.200000e-02
5374 -6.866667e-02
5375 -4.666667e-03
5376 1.046667e-01
5377 7.266667e-02
5378 4.066667e-02
5379 4.400000e-02
5380 -8.000000e-02
5381 1.600000e-02
5382 2.393333e-01
5383 7.400000e-02
5384 -6.666667e-04
5385 -1.526667e-01
5386 1.160000e-01
5387 1.333333e-02
5388 8.666667e-02
5389 -4.133333e-02
5390 8.933333e-02
5391 -1.700000e-01
5392 -7.866667e-02
5393 5.933333e-02
5394 -3.000000e-02
5395 -1.020000e-01
5396 -2.600000e-02
5397 6.666667e-03
5398 1.066667e-01
5399 -1.600000e-01
5400 -1.893333e-01
5401 7.866667e-02
5402 1.460000e-01
5403 1.246667e-01
5404 -1.833333e-01
5405 -1.446667e-01
5406 -1.293333e-01
5407 1.213333e-01
5408 -1.893333e-01
5409 -4.133333e-02
5410 1.000000e-02
5411 -1.506667e-01
5412 -1.893333e-01
5413 -4.666667e-03
5414 -6.400000e-02
5415 -1.326667e-01
5416 -5.533333e-02
5417 7.406851e-18
5418 1.860000e-01
5419 2.866667e-02
5420 -2.733333e-02
5421 4.933333e-02
5422 -1.060000e-01
5423 3.133333e-02
5424 1.126667e-01
5425 -1.606667e-01
5426 -4.466667e-02
5427 -9.000000e-02
5428 1.160000e-01
5429 6.733333e-02
5430 1.520000e-01
5431 7.333333e-03
5432 1.266667e-02
5433 5.200000e-02
5434 -1.980000e-01
5435 1.540000e-01
5436 -6.133333e-02
5437 -2.866667e-02
5438 3.333333e-03
5439 -1.326667e-01
5440 -7.066667e-02
5441 -1.666667e-01
5442 2.280000e-01
5443 1.746667e-01
5444 -1.593333e-01
5445 -1.106667e-01
5446 -2.133333e-02
5447 -1.440000e-01
5448 5.466667e-02
5449 -2.640000e-01
5450 -1.346667e-01
5451 -1.200000e-02
5452 -1.066667e-01
5453 6.800000e-02
5454 2.073333e-01
5455 1.200000e-02
5456 3.800000e-02
5457 1.000000e-02
5458 9.133333e-02
5459 -2.733333e-02
5460 -1.293333e-01
5461 -1.466667e-01
5462 -1.980000e-01
5463 7.733333e-02
5464 9.800000e-02
5465 1.960000e-01
5466 -1.500000e-01
5467 -1.793333e-01
5468 8.466667e-02
5469 1.940000e-01
5470 -2.600000e-02
5471 2.386667e-01
5472 -1.620000e-01
5473 -1.200000e-02
5474 -8.666667e-02
5475 6.200000e-02
5476 -1.526667e-01
5477 1.213333e-01
5478 -8.600000e-02
5479 -1.066667e-02
5480 1.600000e-02
5481 -3.666667e-02
5482 -6.933333e-02
5483 1.633333e-01
5484 -1.213333e-01
5485 -1.013333e-01
5486 1.053333e-01
5487 -8.733333e-02
5488 -3.000000e-02
5489 1.000000e-01
5490 1.113333e-01
5491 9.066667e-02
5492 -1.066667e-02
5493 -1.233333e-01
5494 -7.333333e-02
5495 -2.266667e-02
5496 7.333333e-02
5497 1.546667e-01
5498 -5.266667e-02
5499 4.133333e-02
5500 -1.753333e-01
5501 -1.173333e-01
5502 -5.133333e-02
5503 3.933333e-02
5504 -1.573333e-01
5505 -8.600000e-02
5506 4.400000e-02
5507 -1.133333e-02
5508 -1.053333e-01
5509 -6.266667e-02
5510 -1.586667e-01
5511 -2.060000e-01
5512 6.000000e-03
5513 1.386667e-01
5514 1.260000e-01
5515 2.133333e-01
5516 -1.233333e-01
5517 -2.253333e-01
5518 -1.773333e-01
5519 8.000000e-03
5520 2.600000e-02
5521 -8.466667e-02
5522 -8.666667e-03
5523 -4.666667e-02
5524 2.000000e-02
5525 1.746667e-01
5526 -1.560000e-01
5527 -1.593333e-01
5528 -3.266667e-02
5529 6.200000e-02
5530 -4.000000e-03
5531 2.040000e-01
5532 9.400000e-02
5533 2.126667e-01
5534 -1.506667e-01
5535 -1.006667e-01
5536 8.066667e-02
5537 3.266667e-02
5538 -5.933333e-02
5539 6.800000e-02
5540 1.553333e-01
5541 4.000000e-03
5542 1.533333e-01
5543 8.400000e-02
5544 1.340000e-01
5545 -1.933333e-02
5546 1.893333e-01
5547 6.200000e-02
5548 1.013333e-01
5549 4.733333e-02
5550 5.266667e-02
5551 1.833333e-01
5552 6.000000e-03
5553 -1.040000e-01
5554 -4.666667e-02
5555 4.933333e-02
5556 -2.060000e-01
5557 -1.160000e-01
5558 5.066667e-02
5559 -1.820000e-01
5560 1.866667e-02
5561 -7.800000e-02
5562 2.100000e-01
5563 -9.533333e-02
5564 -5.666667e-02
5565 -1.600000e-02
5566 1.373333e-01
5567 9.533333e-02
5568 5.800000e-02
5569 6.733333e-02
5570 2.000000e-02
5571 -1.880000e-01
5572 7.066667e-02
5573 3.933333e-02
5574 1.140000e-01
5575 -2.000000e-03
5576 2.166667e-01
5577 -4.733333e-02
5578 1.066667e-01
5579 -2.320000e-01
5580 -5.666667e-02
5581 6.333333e-02
5582 -1.280000e-01
5583 3.733333e-02
5584 -1.040000e-01
5585 -9.800000e-02
5586 1.480000e-01
5587 -2.266667e-02
5588 -4.733333e-02
5589 1.066667e-01
5590 -1.813333e-01
5591 3.933333e-02
5592 5.933333e-02
5593 -1.426667e-01
5594 8.066667e-02
5595 1.933333e-02
5596 -3.400000e-02
5597 3.000000e-02
5598 -5.466667e-02
5599 -3.933333e-02
5600 -5.066667e-02
5601 -1.333333e-01
5602 1.246667e-01
5603 1.413333e-01
5604 -1.380000e-01
5605 -1.413333e-01
5606 9.000000e-02
5607 1.353333e-01
5608 8.533333e-02
5609 8.866667e-02
5610 -2.133333e-02
5611 -2.933333e-02
5612 -3.466667e-02
5613 -3.333333e-02
5614 -1.033333e-01
5615 -2.100000e-01
5616 2.600000e-02
5617 -2.386667e-01
5618 -2.780000e-01
5619 1.333333e-01
5620 5.933333e-02
5621 2.266667e-02
5622 -2.933333e-02
5623 -7.200000e-02
5624 -5.066667e-02
5625 5.133333e-02
5626 3.200000e-02
5627 -1.333333e-03
5628 -8.600000e-02
5629 1.233333e-01
5630 -6.733333e-02
5631 -2.353333e-01
5632 -1.733333e-02
5633 2.220000e-01
5634 -2.360000e-01
5635 1.546667e-01
5636 -1.320000e-01
5637 1.766667e-01
5638 -2.000000e-03
5639 1.153333e-01
5640 -8.200000e-02
5641 5.666667e-02
5642 -6.666667e-04
5643 -2.400000e-01
5644 -8.133333e-02
5645 5.066667e-02
5646 6.000000e-02
5647 -7.400000e-02
5648 2.206667e-01
5649 7.333333e-02
5650 1.006667e-01
5651 -8.733333e-02
5652 -1.406667e-01
5653 -1.113333e-01
5654 -4.600000e-02
5655 1.040000e-01
5656 -9.333333e-03
5657 6.133333e-02
5658 8.000000e-02
5659 -3.400000e-02
5660 -2.166667e-01
5661 2.466667e-02
5662 -1.600000e-02
5663 -2.413333e-01
5664 -2.800000e-02
5665 -4.866667e-02
5666 1.900000e-01
5667 -4.333333e-02
5668 2.426667e-01
5669 2.200000e-02
5670 -5.466667e-02
5671 5.466667e-02
5672 -1.060000e-01
5673 1.126667e-01
5674 -2.533333e-02
5675 -1.626667e-01
5676 -3.800000e-02
5677 1.400000e-02
5678 -5.333333e-03
5679 -2.326667e-01
5680 9.333333e-02
5681 1.573333e-01
5682 -1.353333e-01
5683 -7.428535e-18
5684 2.000000e-03
5685 2.200000e-02
5686 3.866667e-02
5687 -1.413333e-01
5688 8.933333e-02
5689 1.720000e-01
5690 4.600000e-02
5691 -5.066667e-02
5692 1.200000e-01
5693 1.320000e-01
5694 -5.866667e-02
5695 -4.133333e-02
5696 -2.333333e-02
5697 1.046667e-01
5698 3.733333e-02
5699 -9.933333e-02
5700 6.866667e-02
5701 1.840000e-01
5702 9.866667e-02
5703 -1.446667e-01
5704 1.100000e-01
5705 1.080000e-01
5706 2.300000e-01
5707 1.053333e-01
5708 -1.666667e-01
5709 1.953333e-01
5710 -1.146667e-01
5711 -1.360000e-01
5712 -1.253333e-01
5713 2.420000e-01
5714 -5.800000e-02
5715 -1.353333e-01
5716 1.400000e-02
5717 9.266667e-02
5718 -1.986667e-01
5719 -1.520000e-01
5720 -4.933333e-02
5721 1.700000e-01
5722 3.800000e-02
5723 9.933333e-02
5724 -5.200000e-02
5725 2.800000e-02
5726 -8.600000e-02
5727 -5.600000e-02
5728 -1.340000e-01
5729 -1.380000e-01
5730 1.500000e-01
5731 -4.133333e-02
5732 -1.066667e-02
5733 6.400000e-02
5734 1.520000e-01
5735 8.266667e-02
5736 1.986667e-01
5737 -1.853333e-01
5738 -1.066667e-01
5739 2.333333e-02
5740 -1.393333e-01
5741 9.933333e-02
5742 1.133333e-02
5743 3.000000e-02
5744 -7.866667e-02
5745 1.320000e-01
5746 -5.466667e-02
5747 -1.360000e-01
5748 -1.266667e-01
5749 -3.866667e-02
5750 -8.866667e-02
5751 1.026667e-01
5752 1.526667e-01
5753 -1.106667e-01
5754 1.506667e-01
5755 -6.666667e-04
5756 -2.380000e-01
5757 -7.066667e-02
5758 2.860000e-01
5759 -1.700000e-01
5760 1.120000e-01
5761 -1.220000e-01
5762 -1.240000e-01
5763 2.173333e-01
5764 2.140000e-01
5765 1.493333e-01
5766 -1.993333e-01
5767 1.400000e-01
5768 5.933333e-02
5769 -2.126667e-01
5770 2.240000e-01
5771 1.653333e-01
5772 -1.653333e-01
5773 -9.333333e-03
5774 -2.253333e-01
5775 -2.400000e-02
5776 7.733333e-02
5777 1.133333e-01
5778 -2.400000e-02
5779 -2.006667e-01
5780 1.513333e-01
5781 1.553333e-01
5782 1.700000e-01
5783 -4.133333e-02
5784 -1.333333e-03
5785 4.666667e-03
5786 -3.400000e-02
5787 -1.846667e-01
5788 -5.400000e-02
5789 -2.333333e-02
5790 3.698682e-17
5791 -5.533333e-02
5792 -1.973333e-01
5793 -1.533333e-01
5794 -8.000000e-03
5795 -8.000000e-02
5796 9.666667e-02
5797 3.333333e-03
5798 1.026667e-01
5799 -3.333333e-02
5800 -1.993333e-01
5801 -1.393333e-01
5802 1.346667e-01
5803 1.080000e-01
5804 3.333333e-02
5805 -1.086667e-01
5806 -7.533333e-02
5807 -5.866667e-02
5808 -4.533333e-02
5809 2.033333e-01
5810 1.000000e-02
5811 -7.800000e-02
5812 8.333333e-02
5813 -1.626667e-01
5814 1.000000e-01
5815 1.133333e-02
5816 9.533333e-02
5817 1.373333e-01
5818 -9.933333e-02
5819 -1.126667e-01
5820 2.800000e-02
5821 -1.646667e-01
5822 -2.446667e-01
5823 2.273333e-01
5824 1.020000e-01
5825 2.133333e-02
5826 7.466667e-02
5827 -1.600000e-01
5828 -1.213333e-01
5829 1.040000e-01
5830 -1.200000e-02
5831 -3.466667e-02
5832 1.080000e-01
5833 -1.966667e-01
5834 2.006667e-01
5835 3.400000e-02
5836 -1.746667e-01
5837 1.446667e-01
5838 1.560000e-01
5839 1.600000e-01
5840 7.200000e-02
5841 -9.333333e-02
5842 9.200000e-02
5843 -2.020000e-01
5844 4.066667e-02
5845 4.000000e-03
5846 7.933333e-02
5847 8.200000e-02
5848 -6.000000e-02
5849 7.866667e-02
5850 -1.266667e-01
5851 -8.066667e-02
5852 1.506667e-01
5853 -3.800000e-02
5854 -2.266667e-01
5855 -2.533333e-02
5856 1.640000e-01
5857 -1.206667e-01
5858 8.000000e-03
5859 1.700000e-01
5860 4.000000e-03
5861 8.933333e-02
5862 1.933333e-02
5863 2.080000e-01
5864 3.866667e-02
5865 2.466667e-02
5866 1.740000e-01
5867 1.146667e-01
5868 2.066667e-01
5869 -8.800000e-02
5870 -1.113333e-01
5871 1.820000e-01
5872 -9.866667e-02
5873 -9.133333e-02
5874 -2.133333e-02
5875 1.153333e-01
5876 -1.380000e-01
5877 -8.333333e-02
5878 1.180000e-01
5879 -1.140000e-01
5880 -1.933333e-02
5881 1.353333e-01
5882 1.460000e-01
5883 1.520000e-01
5884 7.133333e-02
5885 -1.640000e-01
5886 1.320000e-01
5887 -1.006667e-01
5888 -2.133333e-02
5889 -1.220000e-01
5890 1.153333e-01
5891 -7.066667e-02
5892 -1.960000e-01
5893 -1.513333e-01
5894 1.866667e-01
5895 2.260000e-01
5896 -1.340000e-01
5897 1.033333e-01
5898 -1.300000e-01
5899 -1.533333e-02
5900 5.333333e-03
5901 -4.066667e-02
5902 -1.666667e-02
5903 -2.080000e-01
5904 -1.200000e-01
5905 9.600000e-02
5906 -1.406667e-01
5907 8.666667e-03
5908 1.493333e-01
5909 -3.466667e-02
5910 -4.466667e-02
5911 2.400000e-02
5912 -9.800000e-02
5913 -1.346667e-01
5914 -1.120000e-01
5915 -1.073333e-01
5916 -5.200000e-02
5917 1.613333e-01
5918 -3.533333e-02
5919 6.933333e-02
5920 1.266667e-02
5921 6.800000e-02
5922 -1.546667e-01
5923 -1.933333e-01
5924 8.666667e-02
5925 6.266667e-02
5926 -6.466667e-02
5927 -4.466667e-02
5928 -6.200000e-02
5929 7.403237e-18
5930 1.266667e-02
5931 -1.880000e-01
5932 2.666667e-03
5933 7.333333e-03
5934 1.160000e-01
5935 -1.800000e-02
5936 6.200000e-02
5937 1.713333e-01
5938 7.866667e-02
5939 7.466667e-02
5940 1.293333e-01
5941 -1.800000e-02
5942 1.393333e-01
5943 7.066667e-02
5944 3.466667e-02
5945 1.213333e-01
5946 2.413333e-01
5947 1.353333e-01
5948 -1.220000e-01
5949 -9.066667e-02
5950 -1.666667e-01
5951 1.313333e-01
5952 2.200000e-02
5953 5.133333e-02
5954 -8.200000e-02
5955 -6.933333e-02
5956 1.153333e-01
5957 -2.000000e-02
5958 -1.420000e-01
5959 -1.080000e-01
5960 -1.566667e-01
5961 -8.600000e-02
5962 -2.466667e-02
5963 -1.280000e-01
5964 5.333333e-03
5965 -2.066667e-02
5966 7.400000e-02
5967 1.746667e-01
5968 -2.013333e-01
5969 -1.346667e-01
5970 -1.860000e-01
5971 -1.240000e-01
5972 2.666667e-03
5973 5.333333e-03
5974 1.853333e-01
5975 -2.173333e-01
5976 -2.060000e-01
5977 -4.666667e-02
5978 -5.200000e-02
5979 -6.266667e-02
5980 -2.533333e-02
5981 1.566667e-01
5982 -1.253333e-01
5983 -2.666667e-03
5984 -1.753333e-01
5985 -6.333333e-02
5986 1.740000e-01
5987 -1.386667e-01
5988 -2.333333e-02
5989 -1.246667e-01
5990 2.500000e-01
5991 8.200000e-02
5992 -1.566667e-01
5993 -4.666667e-03
5994 2.533333e-02
5995 -1.486667e-01
5996 -1.486667e-01
5997 -5.133333e-02
5998 -5.133333e-02
5999 1.100000e-01
6000 -4.200000e-02
6001 5.400000e-02
6002 1.333333e-02
6003 1.266667e-02
6004 -6.666667e-04
6005 -1.320000e-01
6006 6.000000e-03
6007 -1.373333e-01
6008 -1.233333e-01
6009 -1.453333e-01
6010 -1.666667e-01
6011 7.666667e-02
6012 -1.000000e-02
6013 4.800000e-02
6014 1.220000e-01
6015 -8.066667e-02
6016 -8.000000e-03
6017 -6.266667e-02
6018 1.786667e-01
6019 -7.000000e-02
6020 -8.200000e-02
6021 1.193333e-01
6022 -2.013333e-01
6023 1.546667e-01
6024 4.733333e-02
6025 -7.133333e-02
6026 -1.746667e-01
6027 1.986667e-01
6028 -6.933333e-02
6029 3.600000e-02
6030 -1.153333e-01
6031 -1.900000e-01
6032 -1.780000e-01
6033 2.193333e-01
6034 1.760000e-01
6035 -3.533333e-02
6036 2.080000e-01
6037 -1.220000e-01
6038 1.180000e-01
6039 1.533333e-01
6040 8.600000e-02
6041 -7.800000e-02
6042 -6.466667e-02
6043 4.400000e-02
6044 -2.486667e-01
6045 -1.613333e-01
6046 1.893333e-01
6047 2.126667e-01
6048 -5.666667e-02
6049 4.666667e-03
6050 -1.446667e-01
6051 -7.666667e-02
6052 -1.846667e-01
6053 -1.833333e-01
6054 8.466667e-02
6055 1.446667e-01
6056 -2.266667e-02
6057 1.193333e-01
6058 -1.653333e-01
6059 4.133333e-02
6060 2.286667e-01
6061 -1.813333e-01
6062 6.333333e-02
6063 -4.000000e-02
6064 1.666667e-01
6065 3.733333e-02
6066 -1.593333e-01
6067 6.800000e-02
6068 1.920000e-01
6069 -7.200000e-02
6070 -8.666667e-03
6071 8.066667e-02
6072 2.106667e-01
6073 -1.493333e-01
6074 -1.380000e-01
6075 -2.020000e-01
6076 2.533333e-02
6077 -6.000000e-03
6078 -1.700000e-01
6079 -1.093333e-01
6080 8.133333e-02
6081 -9.000000e-02
6082 8.000000e-03
6083 -5.666667e-02
6084 1.600000e-01
6085 1.586667e-01
6086 -8.133333e-02
6087 5.800000e-02
6088 -2.460000e-01
6089 8.066667e-02
6090 1.386667e-01
6091 7.733333e-02
6092 3.466667e-02
6093 -7.133333e-02
6094 -2.866667e-02
6095 -1.573333e-01
6096 1.486667e-01
6097 1.466667e-02
6098 -1.193333e-01
6099 3.733333e-02
6100 -1.800000e-02
6101 -1.826667e-01
6102 -1.733333e-01
6103 1.120000e-01
6104 -1.740000e-01
6105 8.933333e-02
6106 8.533333e-02
6107 7.200000e-02
6108 -1.653333e-01
6109 -4.800000e-02
6110 -5.400000e-02
6111 2.000000e-01
6112 4.000000e-02
6113 3.600000e-02
6114 -7.133333e-02
6115 7.200000e-02
6116 5.333333e-03
6117 -3.333333e-02
6118 -1.800000e-02
6119 -2.033333e-01
6120 -1.313333e-01
6121 -2.933333e-02
6122 1.386667e-01
6123 1.826667e-01
6124 1.346667e-01
6125 9.600000e-02
6126 4.000000e-02
6127 2.406667e-01
6128 -5.933333e-02
6129 1.400000e-01
6130 -3.666667e-02
6131 -2.066667e-02
6132 6.400000e-02
6133 1.413333e-01
6134 -1.800000e-01
6135 1.080000e-01
6136 6.733333e-02
6137 7.933333e-02
6138 -1.046667e-01
6139 -7.466667e-02
6140 -4.866667e-02
6141 -1.213333e-01
6142 -2.386667e-01
6143 1.260000e-01
6144 -6.666667e-03
6145 1.620000e-01
6146 2.153333e-01
6147 -5.800000e-02
6148 -2.066667e-01
6149 2.233333e-01
6150 2.140000e-01
6151 -5.333333e-03
6152 5.179691e-17
6153 -1.800000e-02
6154 -1.200000e-02
6155 1.206667e-01
6156 1.646667e-01
6157 -1.006667e-01
6158 6.933333e-02
6159 1.600000e-01
6160 -1.040000e-01
6161 2.360000e-01
6162 1.833333e-01
6163 1.133333e-01
6164 1.773333e-01
6165 2.100000e-01
6166 9.200000e-02
6167 1.633333e-01
6168 -2.406667e-01
6169 -1.426667e-01
6170 -2.600000e-02
6171 1.466667e-01
6172 1.986667e-01
6173 1.633333e-01
6174 3.333333e-02
6175 5.066667e-02
6176 1.353333e-01
6177 -3.133333e-02
6178 -4.066667e-02
6179 1.393333e-01
6180 -3.333333e-02
6181 -1.066667e-02
6182 -1.413333e-01
6183 -8.400000e-02
6184 8.200000e-02
6185 -7.000000e-02
6186 2.766667e-01
6187 -1.600000e-02
6188 -2.240000e-01
6189 4.533333e-02
6190 6.066667e-02
6191 1.813333e-01
6192 1.093333e-01
6193 1.260000e-01
6194 -9.733333e-02
6195 2.200000e-02
6196 1.940000e-01
6197 -1.286667e-01
6198 2.266667e-02
6199 -1.546667e-01
6200 -8.666667e-03
6201 -4.133333e-02
6202 1.206667e-01
6203 3.400000e-02
6204 7.333333e-02
6205 -5.800000e-02
6206 -1.420000e-01
6207 1.200000e-01
6208 -4.000000e-03
6209 2.800000e-02
6210 -1.866667e-02
6211 -2.466667e-02
6212 2.026667e-01
6213 1.493333e-01
6214 -2.266667e-01
6215 3.600000e-02
6216 -3.400000e-02
6217 2.080000e-01
6218 2.533333e-02
6219 9.333333e-02
6220 -2.086667e-01
6221 -5.600000e-02
6222 1.653333e-01
6223 2.333333e-01
6224 -1.600000e-02
6225 2.093333e-01
6226 1.800000e-02
6227 -2.526667e-01
6228 -2.466667e-02
6229 1.333333e-03
6230 -6.133333e-02
6231 -4.000000e-02
6232 1.000000e-01
6233 5.466667e-02
6234 -7.866667e-02
6235 -6.666667e-03
6236 8.866667e-02
6237 1.900000e-01
6238 -1.293333e-01
6239 1.680000e-01
6240 3.066667e-02
6241 -7.933333e-02
6242 9.666667e-02
6243 1.393333e-01
6244 -2.353333e-01
6245 -1.340000e-01
6246 2.346667e-01
6247 8.800000e-02
6248 1.480000e-01
6249 -9.200000e-02
6250 -1.266667e-01
6251 1.086667e-01
6252 -1.586667e-01
6253 -2.666667e-02
6254 -3.733333e-02
6255 -3.733333e-02
6256 -2.733333e-02
6257 6.733333e-02
6258 -1.013333e-01
6259 2.380000e-01
6260 -1.146667e-01
6261 -1.386667e-01
6262 7.866667e-02
6263 1.060000e-01
6264 8.533333e-02
6265 -2.593333e-01
6266 -1.013333e-01
6267 1.013333e-01
6268 8.666667e-03
6269 -7.333333e-03
6270 7.666667e-02
6271 -1.933333e-02
6272 2.000000e-02
6273 2.266667e-02
6274 -1.466667e-01
6275 1.940000e-01
6276 4.933333e-02
6277 1.553333e-01
6278 2.286667e-01
6279 5.333333e-02
6280 -1.640000e-01
6281 2.866667e-02
6282 2.000000e-02
6283 9.866667e-02
6284 -2.280000e-01
6285 -7.733333e-02
6286 -1.386667e-01
6287 9.400000e-02
6288 8.466667e-02
6289 -1.000000e-01
6290 -9.666667e-02
6291 1.200000e-01
6292 -1.333333e-01
6293 3.000000e-02
6294 1.100000e-01
6295 4.266667e-02
6296 -1.306667e-01
6297 -2.066667e-02
6298 2.733333e-02
6299 -1.566667e-01
6300 5.666667e-02
6301 5.200000e-02
6302 6.066667e-02
6303 1.346667e-01
6304 -2.326667e-01
6305 5.733333e-02
6306 -2.060000e-01
6307 1.120000e-01
6308 -8.000000e-02
6309 2.160000e-01
6310 -9.933333e-02
6311 5.600000e-02
6312 -4.666667e-02
6313 -2.433333e-01
6314 1.506667e-01
6315 1.853333e-01
6316 -1.400000e-01
6317 -1.593333e-01
6318 1.533333e-01
6319 -1.346667e-01
6320 -9.066667e-02
6321 -7.666667e-02
6322 -1.733333e-01
6323 -1.933333e-01
6324 6.266667e-02
6325 -1.353333e-01
6326 1.306667e-01
6327 9.066667e-02
6328 2.200000e-02
6329 2.326667e-01
6330 -1.013333e-01
6331 9.333333e-02
6332 -1.946667e-01
6333 -1.566667e-01
6334 -2.933333e-02
6335 -1.046667e-01
6336 4.466667e-02
6337 1.760000e-01
6338 -2.480000e-01
6339 2.066667e-01
6340 -5.133333e-02
6341 -2.020000e-01
6342 3.400000e-02
6343 1.266667e-01
6344 -4.866667e-02
6345 1.906667e-01
6346 -7.800000e-02
6347 1.013333e-01
6348 -4.133333e-02
6349 1.360000e-01
6350 -8.066667e-02
6351 2.433333e-01
6352 2.113333e-01
6353 1.320000e-01
6354 4.333333e-02
6355 1.086667e-01
6356 1.240000e-01
6357 -7.400000e-02
6358 -6.066667e-02
6359 1.420000e-01
6360 -8.866667e-02
6361 3.600000e-02
6362 -6.000000e-03
6363 -7.933333e-02
6364 1.400000e-01
6365 -3.000000e-02
6366 -7.866667e-02
6367 -1.906667e-01
6368 1.946667e-01
6369 2.053333e-01
6370 -1.926667e-01
6371 2.200000e-02
6372 -2.666667e-02
6373 1.266667e-01
6374 3.666667e-02
6375 1.586667e-01
6376 9.733333e-02
6377 2.180000e-01
6378 -2.553333e-01
6379 1.533333e-02
6380 -2.000000e-02
6381 -7.733333e-02
6382 9.933333e-02
6383 2.180000e-01
6384 -2.533333e-02
6385 2.373333e-01
6386 -4.333333e-02
6387 -1.806667e-01
6388 -1.600000e-02
6389 -9.333333e-03
6390 -1.546667e-01
6391 2.293333e-01
6392 2.280000e-01
6393 1.866667e-02
6394 1.100000e-01
6395 -7.800000e-02
6396 -1.473333e-01
6397 2.800000e-02
6398 -3.266667e-02
6399 -5.466667e-02
6400 -3.000000e-02
6401 1.393333e-01
6402 -2.533333e-02
6403 7.533333e-02
6404 2.686667e-01
6405 6.000000e-03
6406 6.400000e-02
6407 1.080000e-01
6408 6.666667e-04
6409 7.266667e-02
6410 1.200000e-01
6411 1.480000e-01
6412 -2.200000e-01
6413 3.000000e-02
6414 6.666667e-02
6415 1.386667e-01
6416 -9.866667e-02
6417 -1.366667e-01
6418 1.066667e-02
6419 7.733333e-02
6420 -2.133333e-02
6421 -1.193333e-01
6422 -1.673333e-01
6423 -5.933333e-02
6424 1.546667e-01
6425 1.060000e-01
6426 -6.000000e-02
6427 -1.966667e-01
6428 -1.226667e-01
6429 4.000000e-02
6430 1.800000e-01
6431 -2.560000e-01
6432 -1.233333e-01
6433 -1.213333e-01
6434 -3.666667e-02
6435 1.253333e-01
6436 -6.666667e-04
6437 -9.666667e-02
6438 8.533333e-02
6439 2.666667e-03
6440 -1.400000e-01
6441 1.453333e-01
6442 -1.180000e-01
6443 2.933333e-02
6444 -7.266667e-02
6445 -1.173333e-01
6446 -1.146667e-01
6447 -8.800000e-02
6448 5.600000e-02
6449 -2.580000e-01
6450 1.200000e-02
6451 -2.233333e-01
6452 3.600000e-02
6453 -2.226667e-01
6454 6.600000e-02
6455 -5.000000e-02
6456 1.666667e-02
6457 4.000000e-02
6458 -9.466667e-02
6459 -6.266667e-02
6460 -7.400000e-02
6461 1.353333e-01
6462 -4.200000e-02
6463 -1.026667e-01
6464 -1.646667e-01
6465 -5.266667e-02
6466 -2.040000e-01
6467 -1.433333e-01
6468 2.140000e-01
6469 -1.200000e-01
6470 -6.133333e-02
6471 -2.800000e-02
6472 2.666667e-02
6473 -4.733333e-02
6474 -1.713333e-01
6475 -5.933333e-02
6476 1.246667e-01
6477 4.666667e-02
6478 1.740000e-01
6479 -1.420000e-01
6480 1.393333e-01
6481 9.600000e-02
6482 -3.800000e-02
6483 -1.653333e-01
6484 8.666667e-03
6485 -1.333333e-02
6486 -1.600000e-02
6487 2.800000e-02
6488 1.180000e-01
6489 -3.133333e-02
6490 -1.253333e-01
6491 -1.220000e-01
6492 -1.733333e-02
6493 4.000000e-03
6494 -7.733333e-02
6495 -7.266667e-02
6496 1.786667e-01
6497 6.000000e-02
6498 -1.326667e-01
6499 1.700000e-01
6500 1.200000e-02
6501 1.426667e-01
6502 2.533333e-02
6503 1.533333e-01
6504 -1.073333e-01
6505 8.466667e-02
6506 1.066667e-02
6507 -1.486667e-01
6508 -2.300000e-01
6509 -6.666667e-02
6510 -3.133333e-02
6511 -3.333333e-02
6512 -1.286667e-01
6513 -4.666667e-02
6514 9.866667e-02
6515 1.973333e-01
6516 1.420000e-01
6517 2.133333e-02
6518 -6.400000e-02
6519 1.800000e-02
6520 1.680000e-01
6521 -1.320000e-01
6522 5.400000e-02
6523 1.666667e-01
6524 -1.380000e-01
6525 3.600000e-02
6526 4.000000e-02
6527 -5.133333e-02
6528 -3.000000e-02
6529 6.000000e-03
6530 6.400000e-02
6531 -7.066667e-02
6532 1.406667e-01
6533 5.333333e-02
6534 -9.866667e-02
6535 1.866667e-02
6536 1.340000e-01
6537 1.746667e-01
6538 1.133333e-02
6539 -1.366667e-01
6540 -8.733333e-02
6541 1.720000e-01
6542 -9.933333e-02
6543 -4.333333e-02
6544 -1.653333e-01
6545 -7.333333e-03
6546 1.266667e-02
6547 1.733333e-02
6548 2.260000e-01
6549 -1.440000e-01
6550 2.186667e-01
6551 -2.200000e-02
6552 1.193333e-01
6553 -9.333333e-03
6554 1.666667e-02
6555 1.426667e-01
6556 -1.953333e-01
6557 -8.000000e-03
6558 -4.933333e-02
6559 9.200000e-02
6560 7.066667e-02
6561 3.266667e-02
6562 1.066667e-02
6563 1.266667e-02
6564 -2.213333e-01
6565 -1.780000e-01
6566 1.153333e-01
6567 -1.133333e-01
6568 1.540000e-01
6569 -3.533333e-02
6570 -1.306667e-01
6571 6.733333e-02
6572 -1.746667e-01
6573 1.120000e-01
6574 -6.733333e-02
6575 2.153333e-01
6576 -3.733333e-02
6577 -9.066667e-02
6578 3.866667e-02
6579 -9.333333e-02
6580 1.140000e-01
6581 -1.086667e-01
6582 -4.000000e-02
6583 -2.333333e-02
6584 1.200000e-01
6585 1.080000e-01
6586 -8.933333e-02
6587 -6.000000e-03
6588 -1.940000e-01
6589 -2.000000e-02
6590 -8.133333e-02
6591 1.800000e-02
6592 -7.600000e-02
6593 -1.866667e-02
6594 -5.866667e-02
6595 6.000000e-02
6596 8.133333e-02
6597 9.266667e-02
6598 8.133333e-02
6599 -6.666667e-03
6600 1.200000e-02
6601 6.333333e-02
6602 -2.320000e-01
6603 1.973333e-01
6604 7.333333e-03
6605 1.300000e-01
6606 -1.793333e-01
6607 -1.980000e-01
6608 8.666667e-02
6609 1.380000e-01
6610 -1.006667e-01
6611 7.466667e-02
6612 -9.666667e-02
6613 -1.066667e-02
6614 -8.266667e-02
6615 -8.333333e-02
6616 -9.133333e-02
6617 4.466667e-02
6618 -1.000000e-02
6619 -1.466667e-01
6620 -4.533333e-02
6621 -2.000000e-01
6622 1.793333e-01
6623 1.973333e-01
6624 1.093333e-01
6625 1.446667e-01
6626 4.333333e-02
6627 -5.066667e-02
6628 -1.326667e-01
6629 -1.646667e-01
6630 -1.540000e-01
6631 -1.006667e-01
6632 1.933333e-01
6633 -1.033333e-01
6634 6.266667e-02
6635 -6.733333e-02
6636 -2.233333e-01
6637 -8.933333e-02
6638 2.333333e-02
6639 -4.333333e-02
6640 -1.420000e-01
6641 -2.533333e-02
6642 1.000000e-01
6643 1.813333e-01
6644 -1.633333e-01
6645 1.326667e-01
6646 6.600000e-02
6647 1.853333e-01
6648 1.446667e-01
6649 1.293333e-01
6650 1.626667e-01
6651 1.680000e-01
6652 -1.453333e-01
6653 -6.800000e-02
6654 1.780000e-01
6655 7.933333e-02
6656 1.106667e-01
6657 5.733333e-02
6658 1.246667e-01
6659 1.100000e-01
6660 1.573333e-01
6661 -1.680000e-01
6662 8.533333e-02
6663 1.053333e-01
6664 -8.133333e-02
6665 1.806667e-01
6666 5.466667e-02
6667 1.600000e-02
6668 1.740000e-01
6669 1.593333e-01
6670 1.873333e-01
6671 1.020000e-01
6672 -1.173333e-01
6673 -1.406667e-01
6674 -7.933333e-02
6675 7.333333e-02
6676 -1.460000e-01
6677 -2.600000e-02
6678 2.353333e-01
6679 -7.800000e-02
6680 -1.260000e-01
6681 -2.933333e-02
6682 1.406667e-01
6683 -1.806667e-01
6684 1.020000e-01
6685 2.866667e-02
6686 -9.533333e-02
6687 4.666667e-03
6688 -2.600000e-02
6689 -1.533333e-02
6690 1.840000e-01
6691 -1.306667e-01
6692 8.466667e-02
6693 -7.866667e-02
6694 -4.000000e-02
6695 -5.333333e-02
6696 1.040000e-01
6697 1.180000e-01
6698 -1.740000e-01
6699 -2.113333e-01
6700 1.720000e-01
6701 9.933333e-02
6702 -1.780000e-01
6703 -4.200000e-02
6704 -3.000000e-02
6705 -1.506667e-01
6706 -2.446667e-01
6707 1.980000e-01
6708 -1.853333e-01
6709 -3.533333e-02
6710 -2.066667e-02
6711 5.733333e-02
6712 2.633333e-01
6713 -2.466667e-02
6714 4.666667e-03
6715 -9.600000e-02
6716 -1.913333e-01
6717 7.333333e-03
6718 -8.266667e-02
6719 -1.426667e-01
6720 2.206667e-01
6721 3.666667e-02
6722 -1.666667e-02
6723 -8.466667e-02
6724 1.000000e-02
6725 2.080000e-01
6726 -2.440000e-01
6727 1.666667e-01
6728 -1.626667e-01
6729 -2.266667e-02
6730 -6.200000e-02
6731 -5.066667e-02
6732 4.133333e-02
6733 -1.820000e-01
6734 -8.400000e-02
6735 1.173333e-01
6736 4.933333e-02
6737 -1.620000e-01
6738 -6.266667e-02
6739 2.300000e-01
6740 3.800000e-02
6741 -1.133333e-01
6742 1.600000e-01
6743 -1.240000e-01
6744 -1.373333e-01
6745 -8.000000e-03
6746 1.433333e-01
6747 -1.073333e-01
6748 -4.800000e-02
6749 -6.533333e-02
6750 -3.000000e-02
6751 -7.866667e-02
6752 1.366667e-01
6753 1.206667e-01
6754 -1.673333e-01
6755 -4.066667e-02
6756 1.493333e-01
6757 -2.480000e-01
6758 1.466667e-02
6759 -8.800000e-02
6760 -3.600000e-02
6761 -2.000000e-02
6762 -1.053333e-01
6763 2.113333e-01
6764 -4.533333e-02
6765 -1.093333e-01
6766 6.866667e-02
6767 9.266667e-02
6768 -2.800000e-02
6769 -2.266667e-02
6770 6.000000e-02
6771 -3.200000e-02
6772 -7.200000e-02
6773 -2.440000e-01
6774 8.800000e-02
6775 1.146667e-01
6776 -1.133333e-01
6777 -1.733333e-01
6778 1.780000e-01
6779 2.200000e-02
6780 2.080000e-01
6781 -1.246667e-01
6782 1.300000e-01
6783 1.266667e-01
6784 1.653333e-01
6785 -4.666667e-03
6786 -6.266667e-02
6787 -2.053333e-01
6788 1.440000e-01
6789 1.513333e-01
6790 -1.826667e-01
6791 -1.166667e-01
6792 1.546667e-01
6793 1.613333e-01
6794 -1.446667e-01
6795 -1.340000e-01
6796 -7.400000e-02
6797 -5.866667e-02
6798 6.466667e-02
6799 1.600000e-01
6800 1.966667e-01
6801 -6.466667e-02
6802 -2.400000e-02
6803 -6.000000e-03
6804 -5.800000e-02
6805 -2.380000e-01
6806 1.220000e-01
6807 2.393333e-01
6808 1.880000e-01
6809 1.160000e-01
6810 -4.800000e-02
6811 -5.066667e-02
6812 6.733333e-02
6813 -2.100000e-01
6814 5.533333e-02
6815 -1.673333e-01
6816 -3.333333e-03
6817 -9.333333e-03
6818 1.226667e-01
6819 5.066667e-02
6820 -1.953333e-01
6821 6.666667e-04
6822 -9.666667e-02
6823 -2.133333e-02
6824 -1.340000e-01
6825 1.780000e-01
6826 -1.213333e-01
6827 -1.533333e-01
6828 2.000000e-03
6829 6.200000e-02
6830 7.666667e-02
6831 7.133333e-02
6832 1.400000e-02
6833 1.593333e-01
6834 2.333333e-02
6835 1.593333e-01
6836 -2.020000e-01
6837 -2.266667e-02
6838 -1.933333e-01
6839 -3.200000e-02
6840 1.400000e-02
6841 1.513333e-01
6842 1.560000e-01
6843 -2.133333e-02
6844 -9.866667e-02
6845 -4.733333e-02
6846 -2.333333e-02
6847 -2.133333e-02
6848 1.466667e-01
6849 -2.666667e-02
6850 1.733333e-01
6851 5.666667e-02
6852 1.300000e-01
6853 1.046667e-01
6854 -1.580000e-01
6855 5.533333e-02
6856 1.960000e-01
6857 -6.000000e-03
6858 -1.960000e-01
6859 4.333333e-02
6860 1.206667e-01
6861 -1.500000e-01
6862 2.286667e-01
6863 -1.273333e-01
6864 2.446667e-01
6865 1.533333e-02
6866 -1.613333e-01
6867 -1.620000e-01
6868 9.666667e-02
6869 1.273333e-01
6870 2.100000e-01
6871 1.700000e-01
6872 -8.200000e-02
6873 4.933333e-02
6874 2.933333e-02
6875 9.200000e-02
6876 -7.000000e-02
6877 3.000000e-02
6878 -8.466667e-02
6879 6.000000e-03
6880 -2.200000e-02
6881 9.666667e-02
6882 8.066667e-02
6883 9.066667e-02
6884 -8.666667e-02
6885 -3.200000e-02
6886 1.326667e-01
6887 9.333333e-02
6888 -3.400000e-02
6889 -1.346667e-01
6890 -2.733333e-02
6891 1.333333e-02
6892 -1.093333e-01
6893 -2.146667e-01
6894 2.133333e-02
6895 -4.000000e-02
6896 -1.306667e-01
6897 2.000000e-02
6898 -8.600000e-02
6899 -7.400000e-02
6900 -6.800000e-02
6901 -6.933333e-02
6902 1.493333e-01
6903 -9.333333e-03
6904 -1.720000e-01
6905 1.160000e-01
6906 -9.800000e-02
6907 5.133333e-02
6908 -1.293333e-01
6909 -2.666667e-02
6910 6.066667e-02
6911 -3.933333e-02
6912 2.133333e-02
6913 -1.673333e-01
6914 -1.460000e-01
6915 5.000000e-02
6916 1.066667e-01
6917 1.940000e-01
6918 1.640000e-01
6919 -7.733333e-02
6920 1.206667e-01
6921 -2.213333e-01
6922 1.866667e-02
6923 8.400000e-02
6924 1.713333e-01
6925 -7.333333e-03
6926 1.793333e-01
6927 -3.600000e-02
6928 1.093333e-01
6929 1.620000e-01
6930 -2.933333e-02
6931 5.333333e-03
6932 -2.413333e-01
6933 6.600000e-02
6934 -5.179691e-17
6935 9.666667e-02
6936 -2.140000e-01
6937 -5.666667e-02
6938 -1.686667e-01
6939 -1.620000e-01
6940 -2.466667e-02
6941 -4.133333e-02
6942 7.600000e-02
6943 -6.466667e-02
6944 3.666667e-02
6945 -1.620000e-01
6946 1.266667e-01
6947 2.733333e-02
6948 -1.626667e-01
6949 -1.093333e-01
6950 1.873333e-01
6951 1.046667e-01
6952 -2.100000e-01
6953 2.066667e-02
6954 8.866667e-02
6955 -2.260000e-01
6956 -1.586667e-01
6957 -1.793333e-01
6958 1.500000e-01
6959 6.200000e-02
6960 -1.933333e-02
6961 -1.786667e-01
6962 -7.800000e-02
6963 1.826667e-01
6964 -9.400000e-02
6965 -8.000000e-03
6966 -2.853333e-01
6967 3.733333e-02
6968 1.206667e-01
6969 -4.266667e-02
6970 3.200000e-02
6971 1.186667e-01
6972 3.333333e-03
6973 -1.180000e-01
6974 1.506667e-01
6975 4.733333e-02
6976 1.066667e-02
6977 6.466667e-02
6978 9.200000e-02
6979 -2.120000e-01
6980 -2.000000e-02
6981 2.600000e-01
6982 -2.286667e-01
6983 -1.000000e-02
6984 -1.300000e-01
6985 -2.666667e-02
6986 -1.393333e-01
6987 -2.300000e-01
6988 -6.333333e-02
6989 -6.466667e-02
6990 2.373333e-01
6991 4.866667e-02
6992 2.600000e-02
6993 4.200000e-02
6994 1.013333e-01
6995 1.406667e-01
6996 -8.666667e-02
6997 2.013333e-01
6998 -2.600000e-02
6999 1.380000e-01
7000 1.080000e-01
7001 6.666667e-02
7002 -1.733333e-02
7003 1.333333e-01
7004 1.233333e-01
7005 -1.073333e-01
7006 -1.006667e-01
7007 -1.726667e-01
7008 -1.320000e-01
7009 -1.420000e-01
7010 1.466667e-02
7011 9.933333e-02
7012 1.160000e-01
7013 -9.600000e-02
7014 2.093333e-01
7015 -6.533333e-02
7016 -6.000000e-02
7017 6.466667e-02
7018 1.606667e-01
7019 2.466667e-02
7020 2.246667e-01
7021 -8.666667e-02
7022 1.346667e-01
7023 3.666667e-02
7024 1.000000e-02
7025 -4.800000e-02
7026 1.600000e-01
7027 -1.493333e-01
7028 3.533333e-02
7029 -9.666667e-02
7030 8.666667e-03
7031 5.600000e-02
7032 7.000000e-02
7033 2.733333e-02
7034 -3.266667e-02
7035 2.046667e-01
7036 -1.406667e-01
7037 -2.400000e-02
7038 1.033333e-01
7039 1.466667e-02
7040 1.333333e-01
7041 -1.173333e-01
7042 -5.066667e-02
7043 -2.866667e-02
7044 1.080000e-01
7045 -1.046667e-01
7046 -8.333333e-02
7047 -8.000000e-03
7048 1.166667e-01
7049 -8.533333e-02
7050 1.773333e-01
7051 1.013333e-01
7052 -1.106667e-01
7053 -2.460000e-01
7054 1.280000e-01
7055 -3.333333e-03
7056 2.933333e-02
7057 1.106667e-01
7058 4.866667e-02
7059 -7.266667e-02
7060 -1.293333e-01
7061 2.213333e-01
7062 2.240000e-01
7063 -1.320000e-01
7064 -1.333333e-01
7065 7.600000e-02
7066 7.133333e-02
7067 2.066667e-01
7068 -7.533333e-02
7069 -7.600000e-02
7070 2.593333e-01
7071 -6.666667e-03
7072 -5.333333e-02
7073 6.600000e-02
7074 9.800000e-02
7075 6.733333e-02
7076 8.800000e-02
7077 -1.153333e-01
7078 9.866667e-02
7079 4.133333e-02
7080 -1.666667e-01
7081 -6.666667e-04
7082 4.400000e-02
7083 -7.000000e-02
7084 -1.793333e-01
7085 7.733333e-02
7086 2.393333e-01
7087 -9.866667e-02
7088 1.740000e-01
7089 6.733333e-02
7090 -8.000000e-02
7091 -1.066667e-01
7092 -1.200000e-01
7093 -1.800000e-02
7094 2.733333e-02
7095 1.773333e-01
7096 -8.066667e-02
7097 2.600000e-02
7098 1.346667e-01
7099 -8.000000e-02
7100 5.733333e-02
7101 -2.306667e-01
7102 3.200000e-02
7103 -1.353333e-01
7104 1.780000e-01
7105 -5.600000e-02
7106 9.466667e-02
7107 1.320000e-01
7108 -7.133333e-02
7109 -7.333333e-02
7110 -7.533333e-02
7111 1.066667e-01
7112 -8.466667e-02
7113 -1.440000e-01
7114 -8.800000e-02
7115 -9.866667e-02
7116 -1.193333e-01
7117 -1.213333e-01
7118 2.226667e-01
7119 -1.666667e-02
7120 -1.553333e-01
7121 8.933333e-02
7122 1.166667e-01
7123 -7.266667e-02
7124 1.333333e-01
7125 -3.266667e-02
7126 -5.066667e-02
7127 1.753333e-01
7128 2.533333e-02
7129 -2.220971e-17
7130 6.000000e-02
7131 -7.933333e-02
7132 -9.533333e-02
7133 -3.666667e-02
7134 1.906667e-01
7135 2.160000e-01
7136 -5.666667e-02
7137 -1.546667e-01
7138 -4.266667e-02
7139 -9.866667e-02
7140 -9.533333e-02
7141 -1.060000e-01
7142 1.466667e-02
7143 1.106667e-01
7144 3.533333e-02
7145 -8.400000e-02
7146 1.080000e-01
7147 -1.046667e-01
7148 3.533333e-02
7149 2.180000e-01
7150 -3.866667e-02
7151 -1.233333e-01
7152 3.933333e-02
7153 1.033333e-01
7154 -1.066667e-02
7155 -3.699405e-17
7156 -1.220000e-01
7157 1.426667e-01
7158 -1.366667e-01
7159 -7.933333e-02
7160 -1.333333e-02
7161 2.333333e-02
7162 5.266667e-02
7163 -1.646667e-01
7164 2.933333e-02
7165 2.300000e-01
7166 1.546667e-01
7167 1.726667e-01
7168 -1.300000e-01
7169 1.233333e-01
7170 6.933333e-02
7171 -9.600000e-02
7172 2.460000e-01
7173 -8.133333e-02
7174 9.333333e-03
7175 7.333333e-02
7176 5.400000e-02
7177 -2.800000e-02
7178 -1.313333e-01
7179 1.440000e-01
7180 1.513333e-01
7181 -1.086667e-01
7182 1.700000e-01
7183 2.266667e-02
7184 -6.533333e-02
7185 2.000000e-03
7186 -9.000000e-02
7187 -4.666667e-03
7188 1.733333e-02
7189 4.466667e-02
7190 -2.533333e-02
7191 7.466667e-02
7192 9.000000e-02
7193 1.293333e-01
7194 -1.700000e-01
7195 1.100000e-01
7196 9.600000e-02
7197 1.333333e-01
7198 -1.613333e-01
7199 -5.866667e-02
7200 1.593333e-01
7201 1.080000e-01
7202 -3.933333e-02
7203 -7.333333e-02
7204 -1.113333e-01
7205 -1.613333e-01
7206 2.266667e-02
7207 -6.533333e-02
7208 3.800000e-02
7209 1.820000e-01
7210 -1.806667e-01
7211 -6.266667e-02
7212 1.980000e-01
7213 -1.653333e-01
7214 -1.173333e-01
7215 -4.533333e-02
7216 1.333333e-01
7217 -7.133333e-02
7218 4.200000e-02
7219 -5.266667e-02
7220 -4.600000e-02
7221 3.400000e-02
7222 -1.640000e-01
7223 -2.186667e-01
7224 -1.453333e-01
7225 2.666667e-02
7226 1.206667e-01
7227 -9.666667e-02
7228 1.813333e-01
7229 6.466667e-02
7230 1.140000e-01
7231 8.800000e-02
7232 2.013333e-01
7233 5.800000e-02
7234 -1.286667e-01
7235 -1.153333e-01
7236 1.746667e-01
7237 2.266667e-01
7238 -1.333333e-02
7239 2.000000e-02
7240 1.486667e-01
7241 2.066667e-02
7242 -1.073333e-01
7243 1.300000e-01
7244 -2.260000e-01
7245 -1.333333e-03
7246 -5.600000e-02
7247 -1.066667e-02
7248 -1.306667e-01
7249 8.866667e-02
7250 -8.866667e-02
7251 1.446667e-01
7252 1.060000e-01
7253 2.206667e-01
7254 -6.866667e-02
7255 1.533333e-01
7256 -1.166667e-01
7257 -1.726667e-01
7258 -1.166667e-01
7259 1.646667e-01
7260 8.933333e-02
7261 -5.400000e-02
7262 6.666667e-03
7263 -1.040000e-01
7264 1.333333e-03
7265 -2.053333e-01
7266 -1.326667e-01
7267 2.000000e-02
7268 -1.386667e-01
7269 1.393333e-01
7270 1.700000e-01
7271 -4.133333e-02
7272 1.386667e-01
7273 -6.866667e-02
7274 2.026667e-01
7275 1.046667e-01
7276 2.066667e-02
7277 5.933333e-02
7278 -8.400000e-02
7279 1.413333e-01
7280 -1.753333e-01
7281 4.466667e-02
7282 1.260000e-01
7283 7.866667e-02
7284 -8.400000e-02
7285 -5.133333e-02
7286 5.333333e-03
7287 -9.866667e-02
7288 -1.300000e-01
7289 7.066667e-02
7290 2.166667e-01
7291 -4.400000e-02
7292 -5.666667e-02
7293 -5.266667e-02
7294 -2.000000e-02
7295 -1.846667e-01
7296 -3.666667e-02
7297 1.273333e-01
7298 -8.933333e-02
7299 -5.200000e-02
7300 1.800000e-01
7301 -1.600000e-01
7302 1.153333e-01
7303 -6.533333e-02
7304 -1.333333e-02
7305 -8.666667e-02
7306 1.286667e-01
7307 1.513333e-01
7308 -1.133333e-02
7309 -1.653333e-01
7310 -4.066667e-02
7311 7.333333e-02
7312 6.466667e-02
7313 6.200000e-02
7314 -1.806667e-01
7315 -2.153333e-01
7316 -5.666667e-02
7317 1.933333e-02
7318 -1.873333e-01
7319 -1.406667e-01
7320 -1.493333e-01
7321 1.586667e-01
7322 4.800000e-02
7323 3.699767e-17
7324 8.733333e-02
7325 1.800000e-02
7326 3.466667e-02
7327 -2.026667e-01
7328 7.066667e-02
7329 1.146667e-01
7330 6.400000e-02
7331 7.133333e-02
7332 -6.400000e-02
7333 1.700000e-01
7334 -8.600000e-02
7335 6.933333e-02
7336 1.340000e-01
7337 1.240000e-01
7338 -1.713333e-01
7339 1.153333e-01
7340 -1.086667e-01
7341 1.306667e-01
7342 3.200000e-02
7343 -7.133333e-02
7344 4.000000e-03
7345 5.933333e-02
7346 2.626667e-01
7347 1.180000e-01
7348 1.166667e-01
7349 1.426667e-01
7350 1.546667e-01
7351 5.133333e-02
7352 -6.533333e-02
7353 1.873333e-01
7354 2.866667e-02
7355 -1.480000e-01
7356 -9.600000e-02
7357 6.333333e-02
7358 1.586667e-01
7359 -8.266667e-02
7360 1.100000e-01
7361 1.693333e-01
7362 -3.533333e-02
7363 -1.640000e-01
7364 1.560000e-01
7365 -1.333333e-02
7366 8.133333e-02
7367 1.606667e-01
7368 7.000000e-02
7369 7.533333e-02
7370 -8.000000e-03
7371 -1.793333e-01
7372 -1.413333e-01
7373 -1.666667e-02
7374 -3.133333e-02
7375 1.926667e-01
7376 -7.866667e-02
7377 -2.466667e-02
7378 1.666667e-02
7379 4.466667e-02
7380 1.266667e-02
7381 -5.666667e-02
7382 2.600000e-02
7383 -5.533333e-02
7384 -9.600000e-02
7385 9.933333e-02
7386 1.133333e-02
7387 2.800000e-02
7388 2.933333e-02
7389 -5.333333e-02
7390 1.000000e-02
7391 -1.700000e-01
7392 1.026667e-01
7393 -7.533333e-02
7394 -1.540000e-01
7395 1.313333e-01
7396 -1.773333e-01
7397 1.626667e-01
7398 -1.726667e-01
7399 1.480000e-01
7400 2.613333e-01
7401 8.333333e-02
7402 1.726667e-01
7403 9.333333e-03
7404 -1.706667e-01
7405 7.333333e-03
7406 -1.360000e-01
7407 -1.266667e-02
7408 7.866667e-02
7409 1.360000e-01
7410 5.333333e-02
7411 -4.666667e-02
7412 3.666667e-02
7413 5.133333e-02
7414 -1.840000e-01
7415 -1.206667e-01
7416 -9.000000e-02
7417 -7.866667e-02
7418 -6.000000e-03
7419 -3.699767e-17
7420 -1.153333e-01
7421 -1.733333e-01
7422 -3.333333e-02
7423 -1.100000e-01
7424 6.733333e-02
7425 6.333333e-02
7426 -2.140000e-01
7427 5.600000e-02
7428 1.420000e-01
7429 -5.066667e-02
7430 -8.200000e-02
7431 5.866667e-02
7432 6.333333e-02
7433 2.753333e-01
7434 2.000000e-03
7435 -7.266667e-02
7436 1.213333e-01
7437 8.000000e-03
7438 3.800000e-02
7439 -1.273333e-01
7440 1.213333e-01
7441 -1.313333e-01
7442 -9.266667e-02
7443 -2.400000e-02
7444 -3.200000e-02
7445 -3.066667e-02
7446 -1.166667e-01
7447 -1.453333e-01
7448 -6.933333e-02
7449 1.426667e-01
7450 1.506667e-01
7451 9.933333e-02
7452 -1.746667e-01
7453 1.060000e-01
7454 1.446667e-01
7455 -8.666667e-03
7456 2.866667e-02
7457 -1.086667e-01
7458 2.333333e-02
7459 5.600000e-02
7460 -9.333333e-03
7461 3.933333e-02
7462 8.000000e-02
7463 1.280000e-01
7464 -7.933333e-02
7465 1.580000e-01
7466 8.600000e-02
7467 1.673333e-01
7468 2.173333e-01
7469 -1.466667e-01
7470 1.466667e-02
7471 1.886667e-01
7472 1.413333e-01
7473 1.720000e-01
7474 -2.066667e-02
7475 -1.626667e-01
7476 -2.053333e-01
7477 -1.593333e-01
7478 1.866667e-01
7479 -5.266667e-02
7480 -7.733333e-02
7481 1.673333e-01
7482 -1.093333e-01
7483 -1.486667e-01
7484 -1.446667e-01
7485 -1.246667e-01
7486 6.466667e-02
7487 4.000000e-02
7488 -1.660000e-01
7489 1.040000e-01
7490 1.666667e-02
7491 1.273333e-01
7492 7.417693e-18
7493 1.153333e-01
7494 2.013333e-01
7495 -1.420000e-01
7496 -1.533333e-01
7497 -1.740000e-01
7498 -1.633333e-01
7499 9.666667e-02
7500 1.640000e-01
7501 -1.200000e-02
7502 -4.733333e-02
7503 1.186667e-01
7504 1.160000e-01
7505 6.066667e-02
7506 -1.220000e-01
7507 -1.406667e-01
7508 2.733333e-02
7509 1.833333e-01
7510 1.000000e-02
7511 6.333333e-02
7512 4.400000e-02
7513 1.406667e-01
7514 -1.826667e-01
7515 1.020000e-01
7516 3.666667e-02
7517 2.493333e-01
7518 1.226667e-01
7519 -5.733333e-02
7520 3.933333e-02
7521 -8.800000e-02
7522 -2.180000e-01
7523 3.466667e-02
7524 -5.133333e-02
7525 -2.040000e-01
7526 1.260000e-01
7527 1.533333e-02
7528 1.713333e-01
7529 -2.293333e-01
7530 -9.733333e-02
7531 1.453333e-01
7532 -1.066667e-01
7533 -2.426667e-01
7534 -1.600000e-02
7535 1.386667e-01
7536 1.320000e-01
7537 -1.186667e-01
7538 -6.733333e-02
7539 -7.406851e-18
7540 1.640000e-01
7541 3.933333e-02
7542 -2.666667e-02
7543 -8.000000e-02
7544 -1.186667e-01
7545 -8.000000e-03
7546 8.666667e-03
7547 -6.800000e-02
7548 -5.333333e-03
7549 2.400000e-02
7550 1.753333e-01
7551 2.600000e-02
7552 1.333333e-02
7553 -9.333333e-02
7554 -8.400000e-02
7555 4.066667e-02
7556 1.580000e-01
7557 1.500000e-01
7558 5.466667e-02
7559 -7.933333e-02
7560 -1.806667e-01
7561 -1.940000e-01
7562 4.666667e-03
7563 8.133333e-02
7564 -1.920000e-01
7565 1.126667e-01
7566 -1.733333e-02
7567 4.266667e-02
7568 1.226667e-01
7569 6.466667e-02
7570 -1.533333e-02
7571 -2.000000e-02
7572 1.913333e-01
7573 -1.633333e-01
7574 4.666667e-03
7575 1.200000e-01
7576 -1.066667e-02
7577 4.200000e-02
7578 -1.893333e-01
7579 -2.666667e-03
7580 1.246667e-01
7581 -4.400000e-02
7582 1.200000e-01
7583 4.466667e-02
7584 6.733333e-02
7585 -2.733333e-02
7586 -1.306667e-01
7587 -2.933333e-02
7588 1.133333e-02
7589 1.173333e-01
7590 -4.000000e-02
7591 -9.600000e-02
7592 -5.800000e-02
7593 2.733333e-02
7594 -1.000000e-02
7595 3.200000e-02
7596 7.333333e-03
7597 -1.573333e-01
7598 -5.333333e-02
7599 5.333333e-02
7600 -9.266667e-02
7601 2.060000e-01
7602 -1.753333e-01
7603 1.200000e-02
7604 1.206667e-01
7605 8.066667e-02
7606 -1.226667e-01
7607 1.180000e-01
7608 1.440000e-01
7609 2.446667e-01
7610 -2.666667e-03
7611 -1.606667e-01
7612 -1.800000e-02
7613 -1.266667e-01
7614 6.200000e-02
7615 1.120000e-01
7616 2.193333e-01
7617 -8.000000e-03
7618 1.393333e-01
7619 -7.666667e-02
7620 -9.200000e-02
7621 -1.340000e-01
7622 1.906667e-01
7623 4.066667e-02
7624 -9.266667e-02
7625 7.333333e-02
7626 6.400000e-02
7627 -4.666667e-02
7628 6.800000e-02
7629 -1.933333e-02
7630 -1.640000e-01
7631 8.266667e-02
7632 1.913333e-01
7633 1.066667e-02
7634 1.573333e-01
7635 -5.666667e-02
7636 -4.133333e-02
7637 -1.506667e-01
7638 -6.066667e-02
7639 -1.573333e-01
7640 1.993333e-01
7641 1.946667e-01
7642 4.400000e-02
7643 9.533333e-02
7644 6.133333e-02
7645 1.393333e-01
7646 1.126667e-01
7647 1.800000e-01
7648 1.853333e-01
7649 1.180000e-01
7650 1.360000e-01
7651 2.186667e-01
7652 4.466667e-02
7653 -1.633333e-01
7654 -1.626667e-01
7655 7.200000e-02
7656 1.340000e-01
7657 -1.846667e-01
7658 1.820000e-01
7659 -2.406667e-01
7660 1.753333e-01
7661 -6.933333e-02
7662 -4.733333e-02
7663 -8.200000e-02
7664 1.586667e-01
7665 7.800000e-02
7666 -5.866667e-02
7667 -3.333333e-03
7668 -1.520000e-01
7669 1.133333e-02
7670 9.800000e-02
7671 -1.280000e-01
7672 7.266667e-02
7673 9.733333e-02
7674 1.146667e-01
7675 -7.866667e-02
7676 2.213333e-01
7677 -5.800000e-02
7678 -1.033333e-01
7679 7.466667e-02
7680 -1.880000e-01
7681 2.253333e-01
7682 -1.320000e-01
7683 -6.000000e-03
7684 1.480000e-01
7685 1.006667e-01
7686 -1.800000e-02
7687 -6.800000e-02
7688 1.293333e-01
7689 -2.000000e-03
7690 -2.006667e-01
7691 -1.226667e-01
7692 2.026667e-01
7693 -6.866667e-02
7694 9.000000e-02
7695 2.666667e-03
7696 1.986667e-01
7697 -1.746667e-01
7698 5.666667e-02
7699 1.506667e-01
7700 2.373333e-01
7701 -1.320000e-01
7702 1.040000e-01
7703 -1.080000e-01
7704 7.333333e-02
7705 1.780000e-01
7706 -1.420000e-01
7707 -1.980000e-01
7708 3.533333e-02
7709 -1.393333e-01
7710 1.933333e-01
7711 1.853333e-01
7712 -1.066667e-01
7713 -6.000000e-02
7714 -6.400000e-02
7715 -2.400000e-02
7716 1.873333e-01
7717 -1.566667e-01
7718 -9.066667e-02
7719 8.533333e-02
7720 -1.133333e-02
7721 -1.586667e-01
7722 -1.720000e-01
7723 -1.366667e-01
7724 1.693333e-01
7725 -3.533333e-02
7726 -6.533333e-02
7727 1.966667e-01
7728 2.026667e-01
7729 -9.400000e-02
7730 -1.460000e-01
7731 -1.380000e-01
7732 -1.086667e-01
7733 2.246667e-01
7734 -4.133333e-02
7735 -1.013333e-01
7736 1.006667e-01
7737 1.900000e-01
7738 1.273333e-01
7739 1.860000e-01
7740 8.066667e-02
7741 -1.740000e-01
7742 9.466667e-02
7743 -6.200000e-02
7744 -5.600000e-02
7745 1.640000e-01
7746 -1.246667e-01
7747 1.773333e-01
7748 -8.066667e-02
7749 -2.333333e-02
7750 -1.533333e-02
7751 -1.566667e-01
7752 1.500000e-01
7753 -7.866667e-02
7754 -1.460000e-01
7755 2.400000e-02
7756 -8.533333e-02
7757 7.800000e-02
7758 1.300000e-01
7759 -9.666667e-02
7760 -7.466667e-02
7761 -1.380000e-01
7762 -2.280000e-01
7763 1.266667e-02
7764 7.600000e-02
7765 -2.266667e-01
7766 1.933333e-01
7767 2.666667e-02
7768 1.606667e-01
7769 -1.353333e-01
7770 6.333333e-02
7771 2.380000e-01
7772 3.600000e-02
7773 3.933333e-02
7774 3.466667e-02
7775 3.866667e-02
7776 -8.466667e-02
7777 1.600000e-02
7778 1.946667e-01
7779 -8.000000e-02
7780 -6.333333e-02
7781 4.066667e-02
7782 6.933333e-02
7783 1.980000e-01
7784 1.526667e-01
7785 1.400000e-01
7786 -6.533333e-02
7787 8.133333e-02
7788 1.320000e-01
7789 -1.433333e-01
7790 -1.333333e-03
7791 -6.666667e-02
7792 3.000000e-02
7793 8.533333e-02
7794 -3.400000e-02
7795 -1.480000e-01
7796 1.546667e-01
7797 -4.800000e-02
7798 1.066667e-02
7799 -9.333333e-02
7800 1.980000e-01
7801 -5.200000e-02
7802 8.533333e-02
7803 1.413333e-01
7804 7.800000e-02
7805 -1.733333e-02
7806 -6.533333e-02
7807 -1.313333e-01
7808 -4.800000e-02
7809 2.106667e-01
7810 -4.666667e-02
7811 7.866667e-02
7812 -1.373333e-01
7813 2.306667e-01
7814 -1.513333e-01
7815 -5.333333e-02
7816 4.466667e-02
7817 6.666667e-04
7818 -1.466667e-01
7819 1.300000e-01
7820 -7.266667e-02
7821 -1.093333e-01
7822 -5.466667e-02
7823 -2.220000e-01
7824 -1.000000e-01
7825 9.533333e-02
7826 -1.833333e-01
7827 1.086667e-01
7828 7.000000e-02
7829 4.000000e-03
7830 1.940000e-01
7831 1.780000e-01
7832 -5.066667e-02
7833 4.000000e-03
7834 -4.866667e-02
7835 -4.666667e-02
7836 -7.421307e-18
7837 -1.713333e-01
7838 7.200000e-02
7839 -1.793333e-01
7840 1.673333e-01
7841 -1.173333e-01
7842 -1.840000e-01
7843 -1.666667e-02
7844 9.000000e-02
7845 9.066667e-02
7846 -6.666667e-02
7847 2.306667e-01
7848 -8.466667e-02
7849 -8.666667e-02
7850 -1.153333e-01
7851 -2.266667e-02
7852 2.420000e-01
7853 2.800000e-02
7854 -2.073333e-01
7855 1.700000e-01
7856 7.466667e-02
7857 4.266667e-02
7858 -1.726667e-01
7859 2.866667e-02
7860 1.620000e-01
7861 1.800000e-02
7862 1.013333e-01
7863 3.133333e-02
7864 -9.333333e-02
7865 6.000000e-03
7866 -1.740000e-01
7867 -9.400000e-02
7868 -1.586667e-01
7869 3.333333e-02
7870 9.200000e-02
7871 -1.440000e-01
7872 8.266667e-02
7873 1.000000e-02
7874 -1.193333e-01
7875 -1.606667e-01
7876 9.866667e-02
7877 -9.733333e-02
7878 -3.533333e-02
7879 1.446667e-01
7880 8.466667e-02
7881 -1.886667e-01
7882 -4.133333e-02
7883 -3.000000e-02
7884 1.573333e-01
7885 -7.266667e-02
7886 -9.066667e-02
7887 1.093333e-01
7888 -2.393333e-01
7889 2.000000e-02
7890 1.086667e-01
7891 -1.580000e-01
7892 1.186667e-01
7893 -8.400000e-02
7894 1.526667e-01
7895 -8.600000e-02
7896 -4.466667e-02
7897 -1.413333e-01
7898 -6.933333e-02
7899 -1.266667e-01
7900 -5.933333e-02
7901 1.486667e-01
7902 4.133333e-02
7903 8.066667e-02
7904 9.400000e-02
7905 4.266667e-02
7906 -2.000000e-01
7907 3.800000e-02
7908 -2.206667e-01
7909 -1.046667e-01
7910 -1.086667e-01
7911 1.133333e-02
7912 1.493333e-01
7913 6.666667e-02
7914 1.060000e-01
7915 1.046667e-01
7916 -1.666667e-02
7917 -7.333333e-03
7918 -1.833333e-01
7919 4.066667e-02
7920 1.240000e-01
7921 -6.000000e-03
7922 5.333333e-03
7923 8.800000e-02
7924 -1.620000e-01
7925 -4.866667e-02
7926 3.400000e-02
7927 7.333333e-03
7928 -1.273333e-01
7929 -2.126667e-01
7930 -1.280000e-01
7931 -3.800000e-02
7932 5.533333e-02
7933 -1.240000e-01
7934 1.426667e-01
7935 -4.066667e-02
7936 5.200000e-02
7937 1.293333e-01
7938 1.773333e-01
7939 7.266667e-02
7940 1.220000e-01
7941 1.366667e-01
7942 2.546667e-01
7943 1.000000e-01
7944 1.386667e-01
7945 -5.200000e-02
7946 1.400000e-02
7947 2.006667e-01
7948 5.266667e-02
7949 6.666667e-02
7950 -9.333333e-02
7951 -1.353333e-01
7952 -1.460000e-01
7953 9.866667e-02
7954 1.666667e-01
7955 -8.066667e-02
7956 -7.933333e-02
7957 -6.400000e-02
7958 2.133333e-01
7959 -9.400000e-02
7960 5.133333e-02
7961 -1.280000e-01
7962 2.066667e-01
7963 1.226667e-01
7964 1.200000e-01
7965 8.533333e-02
7966 -1.480000e-01
7967 -1.846667e-01
7968 1.806667e-01
7969 1.800000e-01
7970 -7.421307e-18
7971 -1.213333e-01
7972 -1.293333e-01
7973 9.600000e-02
7974 1.040000e-01
7975 1.933333e-02
7976 -3.733333e-02
7977 1.046667e-01
7978 1.493333e-01
7979 1.426667e-01
7980 -4.666667e-03
7981 -1.306667e-01
7982 9.466667e-02
7983 -4.000000e-03
7984 3.800000e-02
7985 9.133333e-02
7986 6.866667e-02
7987 1.000000e-02
7988 1.113333e-01
7989 1.726667e-01
7990 -1.266667e-01
7991 6.466667e-02
7992 -7.533333e-02
7993 -1.866667e-02
7994 1.433333e-01
7995 -1.506667e-01
7996 -2.000000e-02
7997 2.333333e-02
7998 4.000000e-02
7999 8.000000e-02
8000 -2.100000e-01
8001 -1.640000e-01
8002 -5.600000e-02
8003 -7.333333e-03
8004 1.320000e-01
8005 1.600000e-02
8006 -1.340000e-01
8007 1.940000e-01
8008 3.333333e-02
8009 -1.266667e-01
8010 1.873333e-01
8011 -2.220000e-01
8012 2.600000e-02
8013 7.800000e-02
8014 -1.920000e-01
8015 1.953333e-01
8016 5.333333e-02
8017 -1.840000e-01
8018 -2.206667e-01
8019 1.420000e-01
8020 -1.186667e-01
8021 -4.800000e-02
8022 1.586667e-01
8023 -4.000000e-02
8024 -6.866667e-02
8025 1.033333e-01
8026 -2.333333e-01
8027 2.400000e-02
8028 -8.400000e-02
8029 -1.600000e-01
8030 -2.100000e-01
8031 1.073333e-01
8032 -1.800000e-02
8033 1.820000e-01
8034 -1.653333e-01
8035 -1.186667e-01
8036 -2.333333e-02
8037 -1.000000e-02
8038 2.146667e-01
8039 1.700000e-01
8040 -2.566667e-01
8041 -1.280000e-01
8042 -1.133333e-01
8043 1.726667e-01
8044 -1.333333e-03
8045 1.593333e-01
8046 1.820000e-01
8047 1.200000e-01
8048 -8.533333e-02
8049 1.066667e-01
8050 1.393333e-01
8051 1.473333e-01
8052 2.466667e-02
8053 2.333333e-02
8054 -3.200000e-02
8055 -1.473333e-01
8056 1.593333e-01
8057 7.333333e-02
8058 6.933333e-02
8059 -1.846667e-01
8060 -2.666667e-03
8061 -9.800000e-02
8062 1.533333e-01
8063 -1.380000e-01
8064 -1.360000e-01
8065 -1.173333e-01
8066 -1.186667e-01
8067 5.333333e-02
8068 1.013333e-01
8069 -5.266667e-02
8070 -1.300000e-01
8071 7.933333e-02
8072 -2.600000e-02
8073 -1.733333e-02
8074 -7.333333e-02
8075 -3.266667e-02
8076 -5.533333e-02
8077 1.806667e-01
8078 1.980000e-01
8079 5.333333e-02
8080 -9.866667e-02
8081 4.000000e-03
8082 7.666667e-02
8083 7.333333e-03
8084 -1.353333e-01
8085 -7.533333e-02
8086 6.400000e-02
8087 5.800000e-02
8088 1.933333e-02
8089 -8.133333e-02
8090 3.733333e-02
8091 1.160000e-01
8092 -1.040000e-01
8093 1.273333e-01
8094 7.333333e-02
8095 7.000000e-02
8096 5.800000e-02
8097 -8.933333e-02
8098 1.140000e-01
8099 1.200000e-02
8100 1.680000e-01
8101 -8.533333e-02
8102 -2.013333e-01
8103 -8.933333e-02
8104 9.066667e-02
8105 1.186667e-01
8106 1.260000e-01
8107 -4.400000e-02
8108 -1.173333e-01
8109 1.220000e-01
8110 3.466667e-02
8111 -9.933333e-02
8112 -2.866667e-02
8113 -3.133333e-02
8114 -1.046667e-01
8115 2.333333e-01
8116 8.933333e-02
8117 -5.133333e-02
8118 1.666667e-02
8119 6.200000e-02
8120 -1.466667e-01
8121 -3.000000e-02
8122 -3.133333e-02
8123 -1.320000e-01
8124 6.666667e-02
8125 7.333333e-03
8126 -2.133333e-02
8127 -8.666667e-03
8128 1.100000e-01
8129 -3.333333e-02
8130 -9.333333e-03
8131 -1.093333e-01
8132 -1.813333e-01
8133 1.986667e-01
8134 1.333333e-03
8135 1.100000e-01
8136 -1.586667e-01
8137 -1.333333e-03
8138 -1.206667e-01
8139 -2.066667e-01
8140 1.013333e-01
8141 -8.800000e-02
8142 -1.706667e-01
8143 5.533333e-02
8144 -6.933333e-02
8145 1.466667e-02
8146 1.246667e-01
8147 1.040000e-01
8148 -2.466667e-02
8149 1.666667e-01
8150 1.466667e-02
8151 -1.326667e-01
8152 1.146667e-01
8153 -1.306667e-01
8154 -1.700000e-01
8155 -1.940000e-01
8156 5.666667e-02
8157 9.000000e-02
8158 -7.333333e-02
8159 1.986667e-01
8160 1.126667e-01
8161 9.266667e-02
8162 -1.793333e-01
8163 2.213333e-01
8164 -1.466667e-02
8165 1.926667e-01
8166 -4.400000e-02
8167 -2.133333e-02
8168 5.600000e-02
8169 -6.800000e-02
8170 5.466667e-02
8171 6.666667e-03
8172 -1.593333e-01
8173 -6.266667e-02
8174 -9.600000e-02
8175 1.306667e-01
8176 -1.820000e-01
8177 -1.213333e-01
8178 -1.186667e-01
8179 2.460000e-01
8180 -6.733333e-02
8181 1.680000e-01
8182 -6.466667e-02
8183 -1.766667e-01
8184 8.466667e-02
8185 -6.000000e-02
8186 8.466667e-02
8187 1.266667e-01
8188 8.666667e-03
8189 2.133333e-02
8190 1.733333e-02
8191 1.466667e-02
8192 -7.533333e-02
8193 1.686667e-01
8194 -6.666667e-03
8195 -6.666667e-02
8196 4.866667e-02
8197 -3.000000e-02
8198 2.193333e-01
8199 -2.060000e-01
8200 7.400000e-02
8201 1.540000e-01
8202 2.400000e-01
8203 -1.520000e-01
8204 -5.933333e-02
8205 -2.040000e-01
8206 2.086667e-01
8207 8.066667e-02
8208 -2.666667e-03
8209 -1.693333e-01
8210 7.933333e-02
8211 4.666667e-03
8212 7.866667e-02
8213 -9.733333e-02
8214 1.533333e-01
8215 -5.800000e-02
8216 1.406667e-01
8217 1.033333e-01
8218 1.900000e-01
8219 -1.540000e-01
8220 8.200000e-02
8221 -6.666667e-04
8222 -1.866667e-02
8223 -9.266667e-02
8224 1.480000e-01
8225 1.806667e-01
8226 -5.866667e-02
8227 2.000000e-02
8228 -1.906667e-01
8229 -1.420000e-01
8230 2.933333e-02
8231 5.000000e-02
8232 -8.666667e-03
8233 1.006667e-01
8234 -6.666667e-04
8235 3.266667e-02
8236 -6.800000e-02
8237 1.733333e-01
8238 -8.466667e-02
8239 -1.153333e-01
8240 5.933333e-02
8241 -2.800000e-02
8242 8.266667e-02
8243 9.000000e-02
8244 2.666667e-03
8245 -1.460000e-01
8246 1.393333e-01
8247 2.720000e-01
8248 -1.853333e-01
8249 3.333333e-02
8250 1.760000e-01
8251 1.466667e-01
8252 -2.586667e-01
8253 -1.466667e-02
8254 -1.720000e-01
8255 -5.733333e-02
8256 6.066667e-02
8257 2.340000e-01
8258 1.646667e-01
8259 9.000000e-02
8260 1.260000e-01
8261 -2.266667e-02
8262 8.333333e-02
8263 1.073333e-01
8264 7.333333e-02
8265 1.280000e-01
8266 -1.646667e-01
8267 7.866667e-02
8268 7.866667e-02
8269 2.133333e-02
8270 1.846667e-01
8271 1.806667e-01
8272 -1.333333e-01
8273 1.226667e-01
8274 -4.800000e-02
8275 -1.386667e-01
8276 3.600000e-02
8277 1.280000e-01
8278 1.400000e-02
8279 -1.473333e-01
8280 4.600000e-02
8281 -2.033333e-01
8282 6.666667e-03
8283 -2.286667e-01
8284 1.493333e-01
8285 1.146667e-01
8286 -1.806667e-01
8287 -1.206667e-01
8288 -1.666667e-02
8289 -1.053333e-01
8290 -1.166667e-01
8291 -9.666667e-02
8292 2.086667e-01
8293 -5.866667e-02
8294 1.593333e-01
8295 -4.600000e-02
8296 -2.273333e-01
8297 -1.353333e-01
8298 -8.600000e-02
8299 -9.333333e-03
8300 -6.000000e-03
8301 1.133333e-02
8302 1.373333e-01
8303 2.466667e-02
8304 2.000000e-02
8305 1.273333e-01
8306 -1.666667e-02
8307 1.006667e-01
8308 3.933333e-02
8309 1.180000e-01
8310 2.666667e-02
8311 1.500000e-01
8312 6.200000e-02
8313 -9.466667e-02
8314 -1.333333e-01
8315 1.886667e-01
8316 1.040000e-01
8317 4.200000e-02
8318 1.113333e-01
8319 7.600000e-02
8320 -1.666667e-01
8321 8.466667e-02
8322 8.000000e-03
8323 -7.403237e-18
8324 1.013333e-01
8325 -1.553333e-01
8326 -2.053333e-01
8327 4.466667e-02
8328 -4.066667e-02
8329 -2.380000e-01
8330 -1.293333e-01
8331 -5.200000e-02
8332 -1.960000e-01
8333 3.600000e-02
8334 1.380000e-01
8335 5.533333e-02
8336 -9.333333e-02
8337 -1.646667e-01
8338 -2.906667e-01
8339 2.566667e-01
8340 -9.866667e-02
8341 1.600000e-02
8342 1.273333e-01
8343 -9.733333e-02
8344 4.066667e-02
8345 1.260000e-01
8346 -1.180000e-01
8347 -4.800000e-02
8348 1.893333e-01
8349 -1.086667e-01
8350 -6.666667e-03
8351 6.400000e-02
8352 1.206667e-01
8353 5.266667e-02
8354 9.333333e-03
8355 1.740000e-01
8356 -1.446667e-01
8357 -1.486667e-01
8358 -6.933333e-02
8359 -4.000000e-02
8360 -2.166667e-01
8361 -8.933333e-02
8362 5.933333e-02
8363 1.206667e-01
8364 -1.826667e-01
8365 2.266667e-01
8366 -1.260000e-01
8367 -1.906667e-01
8368 8.066667e-02
8369 -1.080000e-01
8370 -7.933333e-02
8371 1.073333e-01
8372 -1.060000e-01
8373 -4.800000e-02
8374 4.933333e-02
8375 2.133333e-02
8376 1.593333e-01
8377 -3.333333e-02
8378 4.400000e-02
8379 9.266667e-02
8380 2.120000e-01
8381 4.533333e-02
8382 1.220000e-01
8383 8.800000e-02
8384 -1.893333e-01
8385 1.600000e-01
8386 1.933333e-02
8387 -1.740000e-01
8388 -1.333333e-01
8389 4.933333e-02
8390 -1.000000e-02
8391 4.600000e-02
8392 -1.733333e-01
8393 2.533333e-02
8394 -1.986667e-01
8395 5.333333e-03
8396 7.133333e-02
8397 -2.060000e-01
8398 -1.686667e-01
8399 -1.840000e-01
8400 3.933333e-02
8401 1.066667e-01
8402 -1.666667e-02
8403 7.533333e-02
8404 6.200000e-02
8405 1.466667e-02
8406 6.866667e-02
8407 2.406667e-01
8408 -7.666667e-02
8409 2.720000e-01
8410 6.200000e-02
8411 -2.126667e-01
8412 1.733333e-02
8413 1.333333e-01
8414 6.333333e-02
8415 1.246667e-01
8416 -1.060000e-01
8417 1.513333e-01
8418 6.666667e-04
8419 2.120000e-01
8420 2.666667e-02
8421 1.213333e-01
8422 1.653333e-01
8423 -4.666667e-02
8424 -1.720000e-01
8425 2.026667e-01
8426 -1.333333e-02
8427 -7.600000e-02
8428 -1.186667e-01
8429 2.000000e-02
8430 2.173333e-01
8431 -1.786667e-01
8432 -2.733333e-02
8433 -7.666667e-02
8434 -1.286667e-01
8435 -6.533333e-02
8436 -3.866667e-02
8437 -8.600000e-02
8438 -2.306667e-01
8439 -7.400000e-02
8440 1.620000e-01
8441 -1.833333e-01
8442 2.233333e-01
8443 8.333333e-02
8444 -1.633333e-01
8445 1.713333e-01
8446 -1.733333e-01
8447 1.500000e-01
8448 1.693333e-01
8449 9.733333e-02
8450 1.386667e-01
8451 -7.200000e-02
8452 -1.573333e-01
8453 1.453333e-01
8454 1.326667e-01
8455 7.066667e-02
8456 1.733333e-02
8457 -3.333333e-02
8458 6.933333e-02
8459 -4.933333e-02
8460 -2.380000e-01
8461 1.186667e-01
8462 6.933333e-02
8463 -2.093333e-01
8464 3.466667e-02
8465 9.333333e-03
8466 4.600000e-02
8467 8.933333e-02
8468 -9.666667e-02
8469 2.013333e-01
8470 -2.666667e-02
8471 1.753333e-01
8472 -1.600000e-02
8473 1.846667e-01
8474 1.666667e-01
8475 9.266667e-02
8476 -4.333333e-02
8477 -1.733333e-02
8478 1.946667e-01
8479 1.173333e-01
8480 4.200000e-02
8481 -1.600000e-01
8482 1.780000e-01
8483 -2.193333e-01
8484 -3.066667e-02
8485 1.100000e-01
8486 1.533333e-02
8487 -9.533333e-02
8488 2.406667e-01
8489 7.066667e-02
8490 -1.640000e-01
8491 1.600000e-01
8492 1.773333e-01
8493 1.846667e-01
8494 -5.933333e-02
8495 -2.126667e-01
8496 -9.333333e-02
8497 -2.393333e-01
8498 -6.200000e-02
8499 -1.680000e-01
8500 -2.666667e-03
8501 7.400000e-02
8502 4.400000e-02
8503 -1.513333e-01
8504 -6.866667e-02
8505 1.920000e-01
8506 1.466667e-01
8507 8.133333e-02
8508 -2.433333e-01
8509 -1.926667e-01
8510 -2.666667e-03
8511 1.726667e-01
8512 -3.533333e-02
8513 -5.666667e-02
8514 1.546667e-01
8515 2.586667e-01
8516 1.520000e-01
8517 -1.413333e-01
8518 -1.246667e-01
8519 -7.533333e-02
8520 7.533333e-02
8521 1.653333e-01
8522 1.040000e-01
8523 -1.093333e-01
8524 -4.600000e-02
8525 1.000000e-01
8526 -4.666667e-02
8527 -1.900000e-01
8528 2.933333e-02
8529 -1.600000e-02
8530 -1.793333e-01
8531 -6.666667e-02
8532 1.133333e-01
8533 1.260000e-01
8534 -1.180000e-01
8535 -3.533333e-02
8536 1.126667e-01
8537 -1.226667e-01
8538 -9.066667e-02
8539 7.200000e-02
8540 6.266667e-02
8541 -6.133333e-02
8542 1.573333e-01
8543 -1.633333e-01
8544 2.000000e-02
8545 1.973333e-01
8546 -8.000000e-03
8547 1.366667e-01
8548 1.580000e-01
8549 1.500000e-01
8550 -1.093333e-01
8551 4.266667e-02
8552 -1.146667e-01
8553 -1.540000e-01
8554 -6.866667e-02
8555 7.933333e-02
8556 8.066667e-02
8557 -1.786667e-01
8558 -2.386667e-01
8559 -9.400000e-02
8560 2.600000e-02
8561 -1.840000e-01
8562 -3.533333e-02
8563 -3.533333e-02
8564 -1.206667e-01
8565 4.266667e-02
8566 -1.953333e-01
8567 -1.860000e-01
8568 -2.033333e-01
8569 6.000000e-02
8570 2.000000e-03
8571 5.800000e-02
8572 -1.840000e-01
8573 1.740000e-01
8574 -6.733333e-02
8575 2.313333e-01
8576 -5.400000e-02
8577 -1.313333e-01
8578 7.466667e-02
8579 -6.666667e-03
8580 -7.666667e-02
8581 -4.333333e-02
8582 -3.600000e-02
8583 9.866667e-02
8584 3.333333e-02
8585 -5.200000e-02
8586 1.726667e-01
8587 -4.266667e-02
8588 -1.426667e-01
8589 -1.840000e-01
8590 2.126667e-01
8591 -8.266667e-02
8592 -1.713333e-01
8593 -1.500000e-01
8594 -1.400000e-02
8595 -1.833333e-01
8596 -2.533333e-02
8597 1.020000e-01
8598 3.133333e-02
8599 -1.613333e-01
8600 8.666667e-02
8601 -1.266667e-01
8602 -2.013333e-01
8603 -7.066667e-02
8604 -2.466667e-02
8605 1.760000e-01
8606 -4.266667e-02
8607 -1.613333e-01
8608 -1.366667e-01
8609 1.080000e-01
8610 2.000000e-03
8611 -1.866667e-01
8612 1.613333e-01
8613 9.733333e-02
8614 2.286667e-01
8615 -3.800000e-02
8616 2.600000e-02
8617 2.120000e-01
8618 7.266667e-02
8619 3.866667e-02
8620 -6.933333e-02
8621 1.680000e-01
8622 2.113333e-01
8623 2.620000e-01
8624 1.633333e-01
8625 5.866667e-02
8626 1.053333e-01
8627 -8.333333e-02
8628 -1.066667e-01
8629 -1.306667e-01
8630 1.033333e-01
8631 -1.406667e-01
8632 -4.666667e-02
8633 6.066667e-02
8634 -1.606667e-01
8635 -1.606667e-01
8636 4.800000e-02
8637 -9.466667e-02
8638 -8.866667e-02
8639 -2.400000e-02
8640 2.933333e-02
8641 9.333333e-02
8642 1.120000e-01
8643 7.266667e-02
8644 -1.140000e-01
8645 -1.693333e-01
8646 9.933333e-02
8647 1.500000e-01
8648 -2.513333e-01
8649 -8.733333e-02
8650 1.453333e-01
8651 1.866667e-01
8652 4.933333e-02
8653 -1.933333e-01
8654 -6.266667e-02
8655 1.720000e-01
8656 3.200000e-02
8657 5.733333e-02
8658 1.380000e-01
8659 7.800000e-02
8660 -9.400000e-02
8661 -6.066667e-02
8662 -9.533333e-02
8663 -1.700000e-01
8664 1.200000e-01
8665 -1.173333e-01
8666 -6.533333e-02
8667 1.306667e-01
8668 4.666667e-02
8669 5.533333e-02
8670 -1.000000e-01
8671 1.540000e-01
8672 -7.200000e-02
8673 1.400000e-02
8674 -9.333333e-02
8675 -2.600000e-02
8676 -1.740000e-01
8677 -1.366667e-01
8678 -9.733333e-02
8679 -4.600000e-02
8680 8.000000e-03
8681 -7.466667e-02
8682 -9.733333e-02
8683 -1.753333e-01
8684 9.666667e-02
8685 1.286667e-01
8686 -7.933333e-02
8687 -1.053333e-01
8688 -5.266667e-02
8689 -2.200000e-02
8690 2.666667e-03
8691 2.400000e-02
8692 9.866667e-02
8693 -3.733333e-02
8694 2.720000e-01
8695 1.673333e-01
8696 1.220000e-01
8697 -3.133333e-02
8698 1.120000e-01
8699 1.653333e-01
8700 1.880000e-01
8701 1.106667e-01
8702 -6.600000e-02
8703 1.946667e-01
8704 -4.333333e-02
8705 -2.126667e-01
8706 2.066667e-01
8707 5.333333e-03
8708 1.946667e-01
8709 1.713333e-01
8710 -1.886667e-01
8711 -1.293333e-01
8712 5.000000e-02
8713 1.206667e-01
8714 -1.260000e-01
8715 8.600000e-02
8716 8.533333e-02
8717 -1.653333e-01
8718 -5.800000e-02
8719 -3.600000e-02
8720 -2.133333e-02
8721 1.400000e-01
8722 5.866667e-02
8723 -1.433333e-01
8724 -7.600000e-02
8725 -1.533333e-02
8726 -1.253333e-01
8727 1.966667e-01
8728 -5.533333e-02
8729 1.420000e-01
8730 -2.180000e-01
8731 -1.833333e-01
8732 1.706667e-01
8733 -1.353333e-01
8734 -7.533333e-02
8735 -1.473333e-01
8736 1.433333e-01
8737 -2.073333e-01
8738 2.533333e-02
8739 -1.000000e-01
8740 -6.733333e-02
8741 1.320000e-01
8742 1.666667e-02
8743 1.293333e-01
8744 -1.386667e-01
8745 2.053333e-01
8746 -1.233333e-01
8747 -1.353333e-01
8748 -1.366667e-01
8749 -6.200000e-02
8750 -1.626667e-01
8751 1.333333e-03
8752 7.733333e-02
8753 1.500000e-01
8754 -1.926667e-01
8755 3.666667e-02
8756 -6.666667e-03
8757 -2.733333e-02
8758 6.000000e-03
8759 4.533333e-02
8760 -2.126667e-01
8761 -1.313333e-01
8762 1.286667e-01
8763 6.533333e-02
8764 2.733333e-02
8765 -1.666667e-02
8766 -1.613333e-01
8767 2.933333e-02
8768 -1.333333e-03
8769 1.833333e-01
8770 1.000000e-01
8771 -1.253333e-01
8772 -1.086667e-01
8773 1.586667e-01
8774 1.320000e-01
8775 1.926667e-01
8776 -8.200000e-02
8777 -1.073333e-01
8778 4.000000e-02
8779 -1.553333e-01
8780 1.440000e-01
8781 2.026667e-01
8782 9.600000e-02
8783 1.620000e-01
8784 2.666667e-03
8785 2.133333e-02
8786 1.533333e-02
8787 6.000000e-02
8788 -1.240000e-01
8789 -6.000000e-03
8790 9.866667e-02
8791 4.800000e-02
8792 -6.133333e-02
8793 -3.600000e-02
8794 -1.786667e-01
8795 1.400000e-01
8796 2.600000e-02
8797 -5.333333e-03
8798 -1.660000e-01
8799 -1.066667e-01
8800 -5.866667e-02
8801 2.080000e-01
8802 7.466667e-02
8803 2.353333e-01
8804 -1.033333e-01
8805 -3.133333e-02
8806 9.933333e-02
8807 3.466667e-02
8808 -2.033333e-01
8809 2.186667e-01
8810 1.626667e-01
8811 7.666667e-02
8812 -6.733333e-02
8813 -1.506667e-01
8814 1.026667e-01
8815 -1.600000e-02
8816 1.033333e-01
8817 1.226667e-01
8818 2.013333e-01
8819 2.266667e-02
8820 -5.200000e-02
8821 7.800000e-02
8822 -7.133333e-02
8823 1.726667e-01
8824 -5.200000e-02
8825 1.940000e-01
8826 -1.220000e-01
8827 4.733333e-02
8828 7.333333e-02
8829 9.066667e-02
8830 1.140000e-01
8831 1.813333e-01
8832 -8.666667e-02
8833 1.333333e-03
8834 1.100000e-01
8835 -1.933333e-01
8836 3.000000e-02
8837 -4.666667e-03
8838 -8.400000e-02
8839 -2.086667e-01
8840 -1.080000e-01
8841 -8.733333e-02
8842 1.246667e-01
8843 2.120000e-01
8844 -1.673333e-01
8845 -3.200000e-02
8846 2.026667e-01
8847 -8.933333e-02
8848 -7.066667e-02
8849 1.900000e-01
8850 1.733333e-01
8851 -1.106667e-01
8852 -1.066667e-02
8853 -2.866667e-02
8854 2.000000e-03
8855 8.466667e-02
8856 2.400000e-02
8857 4.000000e-02
8858 9.866667e-02
8859 -1.466667e-01
8860 -6.133333e-02
8861 1.000000e-01
8862 1.853333e-01
8863 5.466667e-02
8864 5.600000e-02
8865 -1.346667e-01
8866 -4.066667e-02
8867 8.933333e-02
8868 -1.133333e-02
8869 -1.633333e-01
8870 1.273333e-01
8871 -7.066667e-02
8872 -6.266667e-02
8873 -1.946667e-01
8874 -6.666667e-02
8875 1.673333e-01
8876 7.866667e-02
8877 9.400000e-02
8878 -1.400000e-02
8879 6.666667e-02
8880 -1.860000e-01
8881 -1.200000e-02
8882 -1.833333e-01
8883 -1.080000e-01
8884 8.800000e-02
8885 1.166667e-01
8886 -2.626667e-01
8887 -2.666667e-02
8888 -9.400000e-02
8889 -2.060000e-01
8890 6.666667e-04
8891 1.773333e-01
8892 2.080000e-01
8893 -1.086667e-01
8894 -1.133333e-01
8895 -1.073333e-01
8896 2.400000e-02
8897 1.466667e-01
8898 -1.333333e-01
8899 -1.600000e-02
8900 5.866667e-02
8901 -1.013333e-01
8902 -7.733333e-02
8903 6.400000e-02
8904 -6.933333e-02
8905 1.406667e-01
8906 -7.533333e-02
8907 4.400000e-02
8908 1.553333e-01
8909 7.733333e-02
8910 -2.213333e-01
8911 -4.866667e-02
8912 8.466667e-02
8913 4.066667e-02
8914 -1.866667e-02
8915 -1.866667e-02
8916 -1.493333e-01
8917 -7.666667e-02
8918 3.133333e-02
8919 -9.266667e-02
8920 1.060000e-01
8921 -1.360000e-01
8922 7.666667e-02
8923 -2.800000e-02
8924 -8.600000e-02
8925 -3.533333e-02
8926 -5.733333e-02
8927 1.813333e-01
8928 6.800000e-02
8929 1.720000e-01
8930 -1.400000e-02
8931 9.933333e-02
8932 8.800000e-02
8933 -3.866667e-02
8934 4.333333e-02
8935 1.400000e-01
8936 -2.260000e-01
8937 -7.800000e-02
8938 1.160000e-01
8939 7.000000e-02
8940 -1.600000e-02
8941 1.100000e-01
8942 1.013333e-01
8943 -1.460000e-01
8944 -7.600000e-02
8945 1.013333e-01
8946 -1.606667e-01
8947 -1.706667e-01
8948 1.726667e-01
8949 1.320000e-01
8950 2.220000e-01
8951 2.006667e-01
8952 1.180000e-01
8953 1.160000e-01
8954 -8.000000e-03
8955 -1.913333e-01
8956 -6.600000e-02
8957 8.200000e-02
8958 1.453333e-01
8959 -2.066667e-02
8960 -6.000000e-03
8961 -1.240000e-01
8962 5.600000e-02
8963 1.666667e-02
8964 -6.666667e-03
8965 -7.666667e-02
8966 1.053333e-01
8967 -1.513333e-01
8968 -1.500000e-01
8969 -8.066667e-02
8970 -2.666667e-03
8971 -3.466667e-02
8972 -1.080000e-01
8973 6.600000e-02
8974 -1.106667e-01
8975 -1.920000e-01
8976 -2.293333e-01
8977 9.733333e-02
8978 2.000000e-02
8979 1.746667e-01
8980 1.700000e-01
8981 -8.600000e-02
8982 -1.060000e-01
8983 -9.066667e-02
8984 -1.533333e-02
8985 9.533333e-02
8986 6.666667e-03
8987 1.466667e-01
8988 -2.466667e-02
8989 -4.466667e-02
8990 7.600000e-02
8991 1.066667e-01
8992 -1.493333e-01
8993 -3.400000e-02
8994 1.493333e-01
8995 1.020000e-01
8996 -7.066667e-02
8997 4.933333e-02
8998 8.533333e-02
8999 8.866667e-02
9000 -4.533333e-02
9001 -1.033333e-01
9002 1.300000e-01
9003 1.486667e-01
9004 1.200000e-02
9005 -1.200000e-02
9006 -1.440000e-01
9007 -1.653333e-01
9008 -3.000000e-02
9009 -1.060000e-01
9010 -1.446667e-01
9011 6.466667e-02
9012 1.606667e-01
9013 -7.333333e-02
9014 -7.600000e-02
9015 6.733333e-02
9016 -1.933333e-02
9017 -3.733333e-02
9018 -1.106667e-01
9019 1.800000e-01
9020 1.500000e-01
9021 3.333333e-02
9022 1.080000e-01
9023 -3.466667e-02
9024 8.466667e-02
9025 1.153333e-01
9026 -1.893333e-01
9027 5.666667e-02
9028 6.000000e-03
9029 -1.086667e-01
9030 -4.066667e-02
9031 1.300000e-01
9032 -1.533333e-01
9033 1.460000e-01
9034 -1.026667e-01
9035 -5.000000e-02
9036 -9.600000e-02
9037 -1.486667e-01
9038 -7.400000e-02
9039 9.200000e-02
9040 1.066667e-01
9041 1.573333e-01
9042 -9.733333e-02
9043 -1.206667e-01
9044 4.466667e-02
9045 -1.000000e-02
9046 1.933333e-02
9047 1.446667e-01
9048 1.140000e-01
9049 -3.866667e-02
9050 3.200000e-02
9051 -1.320000e-01
9052 -7.200000e-02
9053 -1.806667e-01
9054 2.666667e-03
9055 1.613333e-01
9056 -7.533333e-02
9057 -1.540000e-01
9058 2.506667e-01
9059 -8.200000e-02
9060 1.400000e-02
9061 1.353333e-01
9062 -9.333333e-02
9063 -5.333333e-02
9064 5.200000e-02
9065 -7.200000e-02
9066 -4.666667e-02
9067 1.406667e-01
9068 -1.826667e-01
9069 1.073333e-01
9070 3.466667e-02
9071 -2.060000e-01
9072 -9.200000e-02
9073 1.853333e-01
9074 1.100000e-01
9075 1.693333e-01
9076 7.333333e-02
9077 1.200000e-02
9078 8.266667e-02
9079 8.666667e-02
9080 4.866667e-02
9081 -1.233333e-01
9082 1.333333e-02
9083 -1.520000e-01
9084 6.333333e-02
9085 2.153333e-01
9086 -2.126667e-01
9087 3.333333e-02
9088 1.766667e-01
9089 -1.860000e-01
9090 -2.800000e-02
9091 1.153333e-01
9092 -1.346667e-01
9093 1.173333e-01
9094 -1.646667e-01
9095 5.000000e-02
9096 -8.133333e-02
9097 -1.126667e-01
9098 -1.800000e-01
9099 1.046667e-01
9100 2.206667e-01
9101 1.193333e-01
9102 -8.266667e-02
9103 9.666667e-02
9104 9.600000e-02
9105 -1.740000e-01
9106 5.133333e-02
9107 -1.406667e-01
9108 4.000000e-03
9109 -3.400000e-02
9110 -8.333333e-02
9111 3.733333e-02
9112 4.333333e-02
9113 1.246667e-01
9114 -2.720000e-01
9115 -1.066667e-01
9116 -6.800000e-02
9117 -3.200000e-02
9118 4.066667e-02
9119 -2.060000e-01
9120 1.593333e-01
9121 1.066667e-02
9122 1.226667e-01
9123 -8.266667e-02
9124 -1.380000e-01
9125 -1.200000e-02
9126 1.093333e-01
9127 4.533333e-02
9128 8.400000e-02
9129 1.993333e-01
9130 -9.266667e-02
9131 -4.133333e-02
9132 1.080000e-01
9133 6.533333e-02
9134 -8.733333e-02
9135 -1.840000e-01
9136 2.000000e-03
9137 -4.000000e-03
9138 9.066667e-02
9139 1.113333e-01
9140 -1.033333e-01
9141 3.800000e-02
9142 -1.613333e-01
9143 -9.266667e-02
9144 1.600000e-01
9145 -1.346667e-01
9146 -1.820000e-01
9147 -5.000000e-02
9148 1.046667e-01
9149 3.533333e-02
9150 -1.253333e-01
9151 4.666667e-03
9152 -1.100000e-01
9153 7.533333e-02
9154 -2.160000e-01
9155 -7.000000e-02
9156 -3.533333e-02
9157 2.693333e-01
9158 2.000000e-03
9159 -4.800000e-02
9160 -2.600000e-02
9161 4.466667e-02
9162 -1.533333e-02
9163 2.333333e-02
9164 -7.333333e-02
9165 -4.800000e-02
9166 2.373333e-01
9167 3.733333e-02
9168 1.220000e-01
9169 -9.400000e-02
9170 7.066667e-02
9171 -1.333333e-03
9172 1.893333e-01
9173 -7.333333e-02
9174 -9.400000e-02
9175 -2.006667e-01
9176 -1.866667e-02
9177 -1.600000e-02
9178 5.266667e-02
9179 -4.866667e-02
9180 6.466667e-02
9181 -7.666667e-02
9182 -2.220000e-01
9183 -1.400000e-01
9184 6.866667e-02
9185 -1.680000e-01
9186 -1.733333e-02
9187 -3.600000e-02
9188 1.086667e-01
9189 4.533333e-02
9190 2.280000e-01
9191 -1.166667e-01
9192 2.053333e-01
9193 -1.760000e-01
9194 2.140000e-01
9195 -3.200000e-02
9196 1.900000e-01
9197 -5.333333e-03
9198 1.446667e-01
9199 1.560000e-01
9200 -1.786667e-01
9201 2.066667e-01
9202 -5.333333e-02
9203 -2.220000e-01
9204 -1.666667e-02
9205 -4.866667e-02
9206 2.000000e-02
9207 -1.473333e-01
9208 5.000000e-02
9209 -6.733333e-02
9210 -1.186667e-01
9211 8.666667e-02
9212 1.333333e-01
9213 1.533333e-01
9214 1.600000e-02
9215 -1.933333e-02
9216 2.400000e-02
9217 -2.266667e-02
9218 -6.466667e-02
9219 -1.013333e-01
9220 1.193333e-01
9221 -1.553333e-01
9222 6.000000e-03
9223 -4.800000e-02
9224 -1.813333e-01
9225 1.246667e-01
9226 -1.440000e-01
9227 -7.133333e-02
9228 7.333333e-03
9229 -2.400000e-02
9230 4.533333e-02
9231 -1.800000e-02
9232 -1.480000e-01
9233 6.800000e-02
9234 -1.200000e-02
9235 -1.500000e-01
9236 -1.613333e-01
9237 2.180000e-01
9238 4.466667e-02
9239 -9.733333e-02
9240 -1.493333e-01
9241 9.933333e-02
9242 1.420000e-01
9243 -4.133333e-02
9244 4.000000e-02
9245 -2.933333e-02
9246 1.786667e-01
9247 -2.000000e-02
9248 9.933333e-02
9249 -1.020000e-01
9250 -2.113333e-01
9251 -8.466667e-02
9252 -9.866667e-02
9253 -2.466667e-02
9254 -1.346667e-01
9255 5.266667e-02
9256 -5.866667e-02
9257 -1.906667e-01
9258 -6.466667e-02
9259 2.933333e-02
9260 -1.613333e-01
9261 8.666667e-03
9262 1.493333e-01
9263 1.580000e-01
9264 1.266667e-02
9265 1.153333e-01
9266 -1.460000e-01
9267 4.333333e-02
9268 8.733333e-02
9269 -3.066667e-02
9270 1.766667e-01
9271 -1.733333e-02
9272 -8.266667e-02
9273 -1.686667e-01
9274 1.233333e-01
9275 7.266667e-02
9276 -1.993333e-01
9277 1.613333e-01
9278 5.333333e-02
9279 -7.933333e-02
9280 -8.466667e-02
9281 1.566667e-01
9282 -7.600000e-02
9283 -9.733333e-02
9284 -4.666667e-03
9285 9.800000e-02
9286 -7.466667e-02
9287 -8.866667e-02
9288 -1.600000e-01
9289 1.573333e-01
9290 1.440000e-01
9291 1.100000e-01
9292 1.880000e-01
9293 1.926667e-01
9294 -1.033333e-01
9295 -5.266667e-02
9296 -2.180000e-01
9297 1.086667e-01
9298 1.933333e-02
9299 6.666667e-03
9300 -1.473333e-01
9301 -5.466667e-02
9302 -5.533333e-02
9303 -1.680000e-01
9304 4.266667e-02
9305 -1.933333e-01
9306 8.733333e-02
9307 -1.306667e-01
9308 -1.733333e-02
9309 6.533333e-02
9310 -1.646667e-01
9311 -1.033333e-01
9312 -1.353333e-01
9313 -1.906667e-01
9314 -5.000000e-02
9315 8.466667e-02
9316 -4.733333e-02
9317 1.313333e-01
9318 -1.680000e-01
9319 1.060000e-01
9320 7.133333e-02
9321 5.933333e-02
9322 4.066667e-02
9323 7.000000e-02
9324 -8.933333e-02
9325 -1.120000e-01
9326 5.466667e-02
9327 3.200000e-02
9328 9.600000e-02
9329 1.333333e-03
9330 2.466667e-02
9331 -7.421307e-18
9332 7.266667e-02
9333 1.040000e-01
9334 -9.533333e-02
9335 8.333333e-02
9336 1.333333e-01
9337 -1.586667e-01
9338 -8.466667e-02
9339 -1.460000e-01
9340 -8.466667e-02
9341 2.180000e-01
9342 1.560000e-01
9343 2.133333e-02
9344 1.553333e-01
9345 2.053333e-01
9346 -6.133333e-02
9347 1.526667e-01
9348 -2.200000e-02
9349 3.333333e-02
9350 -1.866667e-02
9351 -2.020000e-01
9352 -4.666667e-02
9353 -6.800000e-02
9354 1.326667e-01
9355 -2.086667e-01
9356 -8.666667e-03
9357 -3.800000e-02
9358 -1.873333e-01
9359 -2.613333e-01
9360 -1.093333e-01
9361 8.200000e-02
9362 -8.600000e-02
9363 7.266667e-02
9364 -4.466667e-02
9365 -1.326667e-01
9366 -2.626667e-01
9367 2.206667e-01
9368 -1.126667e-01
9369 1.266667e-01
9370 6.666667e-03
9371 9.333333e-03
9372 -1.073333e-01
9373 -3.333333e-03
9374 5.466667e-02
9375 -1.886667e-01
9376 1.913333e-01
9377 1.646667e-01
9378 8.000000e-03
9379 -4.333333e-02
9380 6.666667e-02
9381 7.333333e-02
9382 -1.053333e-01
9383 3.133333e-02
9384 -1.946667e-01
9385 8.800000e-02
9386 1.273333e-01
9387 -5.533333e-02
9388 -1.353333e-01
9389 5.000000e-02
9390 -4.400000e-02
9391 2.386667e-01
9392 6.466667e-02
9393 -2.426667e-01
9394 4.666667e-03
9395 -8.800000e-02
9396 -1.400000e-01
9397 4.200000e-02
9398 -8.333333e-02
9399 4.533333e-02
9400 1.406667e-01
9401 -1.966667e-01
9402 2.186667e-01
9403 1.160000e-01
9404 1.780000e-01
9405 1.020000e-01
9406 -6.200000e-02
9407 1.133333e-01
9408 -1.293333e-01
9409 1.520000e-01
9410 1.800000e-02
9411 2.113333e-01
9412 1.173333e-01
9413 -1.413333e-01
9414 -5.933333e-02
9415 1.826667e-01
9416 -1.520000e-01
9417 6.466667e-02
9418 -1.486667e-01
9419 2.433333e-01
9420 1.600000e-02
9421 -4.600000e-02
9422 1.106667e-01
9423 2.006667e-01
9424 1.560000e-01
9425 -3.866667e-02
9426 4.133333e-02
9427 5.933333e-02
9428 5.400000e-02
9429 -1.193333e-01
9430 -3.466667e-02
9431 -2.060000e-01
9432 2.106667e-01
9433 -4.800000e-02
9434 -2.026667e-01
9435 1.566667e-01
9436 -5.200000e-02
9437 1.000000e-02
9438 8.533333e-02
9439 -9.266667e-02
9440 -1.520000e-01
9441 8.333333e-02
9442 -6.600000e-02
9443 1.346667e-01
9444 1.066667e-02
9445 8.133333e-02
9446 1.853333e-01
9447 2.133333e-02
9448 -1.920000e-01
9449 1.133333e-02
9450 -8.066667e-02
9451 1.906667e-01
9452 1.113333e-01
9453 1.120000e-01
9454 2.100000e-01
9455 -2.466667e-02
9456 1.013333e-01
9457 -6.266667e-02
9458 -5.800000e-02
9459 1.200000e-01
9460 6.933333e-02
9461 -1.520000e-01
9462 9.066667e-02
9463 1.453333e-01
9464 1.940000e-01
9465 1.720000e-01
9466 7.466667e-02
9467 -6.000000e-02
9468 -1.600000e-02
9469 -1.026667e-01
9470 1.506667e-01
9471 -1.833333e-01
9472 -7.466667e-02
9473 -7.733333e-02
9474 -9.200000e-02
9475 -6.400000e-02
9476 5.933333e-02
9477 -1.206667e-01
9478 -1.233333e-01
9479 -1.066667e-01
9480 -1.653333e-01
9481 2.093333e-01
9482 1.493333e-01
9483 1.180000e-01
9484 2.046667e-01
9485 1.446667e-01
9486 1.026667e-01
9487 -4.466667e-02
9488 -1.873333e-01
9489 8.400000e-02
9490 1.540000e-01
9491 1.340000e-01
9492 -1.273333e-01
9493 5.466667e-02
9494 -5.400000e-02
9495 1.340000e-01
9496 1.973333e-01
9497 1.333333e-01
9498 -9.600000e-02
9499 -2.866667e-02
9500 -1.380000e-01
9501 -1.440000e-01
9502 -1.873333e-01
9503 1.080000e-01
9504 9.333333e-02
9505 -2.666667e-02
9506 6.333333e-02
9507 1.566667e-01
9508 -5.400000e-02
9509 -1.506667e-01
9510 1.060000e-01
9511 1.280000e-01
9512 -1.460000e-01
9513 1.913333e-01
9514 1.126667e-01
9515 8.733333e-02
9516 -1.886667e-01
9517 6.533333e-02
9518 4.133333e-02
9519 2.020000e-01
9520 1.346667e-01
9521 -1.333333e-03
9522 1.333333e-02
9523 -1.606667e-01
9524 -1.646667e-01
9525 1.053333e-01
9526 1.593333e-01
9527 8.466667e-02
9528 -6.666667e-03
9529 4.666667e-02
9530 1.493333e-01
9531 -2.000000e-02
9532 -1.940000e-01
9533 2.000000e-03
9534 -2.733333e-02
9535 -9.200000e-02
9536 -1.546667e-01
9537 -6.200000e-02
9538 -1.833333e-01
9539 1.026667e-01
9540 7.600000e-02
9541 1.453333e-01
9542 1.613333e-01
9543 8.200000e-02
9544 -7.133333e-02
9545 -1.666667e-01
9546 -1.606667e-01
9547 7.533333e-02
9548 -1.113333e-01
9549 -1.266667e-02
9550 -9.600000e-02
9551 -2.233333e-01
9552 1.546667e-01
9553 1.320000e-01
9554 -7.933333e-02
9555 -7.266667e-02
9556 1.200000e-01
9557 2.466667e-02
9558 1.700000e-01
9559 2.006667e-01
9560 1.353333e-01
9561 1.266667e-02
9562 1.760000e-01
9563 7.133333e-02
9564 2.693333e-01
9565 1.486667e-01
9566 -6.000000e-03
9567 1.800000e-02
9568 -2.006667e-01
9569 1.480000e-01
9570 -1.053333e-01
9571 -4.200000e-02
9572 -1.113333e-01
9573 1.133333e-02
9574 9.666667e-02
9575 -1.260000e-01
9576 -5.000000e-02
9577 1.240000e-01
9578 -1.386667e-01
9579 1.253333e-01
9580 3.400000e-02
9581 -1.126667e-01
9582 5.266667e-02
9583 -1.200000e-01
9584 -2.266667e-02
9585 -1.233333e-01
9586 -1.006667e-01
9587 1.580000e-01
9588 7.414079e-18
9589 8.000000e-03
9590 -9.266667e-02
9591 -9.266667e-02
9592 3.933333e-02
9593 1.466667e-02
9594 -1.306667e-01
9595 -1.660000e-01
9596 1.793333e-01
9597 2.133333e-02
9598 1.486667e-01
9599 -1.026667e-01
9600 5.333333e-03
9601 3.133333e-02
9602 1.386667e-01
9603 1.653333e-01
9604 -1.053333e-01
9605 1.526667e-01
9606 9.733333e-02
9607 1.520000e-01
9608 9.466667e-02
9609 1.400000e-02
9610 -1.266667e-02
9611 -1.333333e-02
9612 -1.926667e-01
9613 1.046667e-01
9614 8.200000e-02
9615 -1.333333e-02
9616 -1.486667e-01
9617 9.600000e-02
9618 1.460000e-01
9619 5.133333e-02
9620 -9.800000e-02
9621 4.733333e-02
9622 -1.586667e-01
9623 2.253333e-01
9624 4.733333e-02
9625 -7.866667e-02
9626 -2.040000e-01
9627 8.000000e-02
9628 -1.880000e-01
9629 -5.000000e-02
9630 1.160000e-01
9631 -2.220610e-17
9632 -2.053333e-01
9633 1.580000e-01
9634 1.000000e-02
9635 7.466667e-02
9636 -4.333333e-02
9637 1.233333e-01
9638 -1.260000e-01
9639 1.026667e-01
9640 -2.280000e-01
9641 -1.220000e-01
9642 9.600000e-02
9643 8.133333e-02
9644 8.733333e-02
9645 1.300000e-01
9646 -6.133333e-02
9647 -1.346667e-01
9648 1.506667e-01
9649 6.133333e-02
9650 2.160000e-01
9651 2.533333e-02
9652 -1.753333e-01
9653 -6.000000e-03
9654 1.553333e-01
9655 2.286667e-01
9656 -1.933333e-02
9657 1.566667e-01
9658 -1.780000e-01
9659 9.733333e-02
9660 6.200000e-02
9661 9.066667e-02
9662 8.333333e-02
9663 -6.666667e-04
9664 1.186667e-01
9665 1.106667e-01
9666 8.000000e-03
9667 1.066667e-02
9668 8.866667e-02
9669 -1.200000e-02
9670 -2.200000e-02
9671 1.020000e-01
9672 1.260000e-01
9673 8.800000e-02
9674 2.533333e-02
9675 9.800000e-02
9676 2.000000e-02
9677 1.253333e-01
9678 -1.533333e-02
9679 -1.206667e-01
9680 -1.333333e-03
9681 6.066667e-02
9682 -2.293333e-01
9683 1.266667e-01
9684 -1.126667e-01
9685 -1.733333e-01
9686 1.986667e-01
9687 5.333333e-02
9688 -2.120000e-01
9689 1.946667e-01
9690 7.000000e-02
9691 -5.666667e-02
9692 7.000000e-02
9693 -1.133333e-02
9694 1.966667e-01
9695 -1.620000e-01
9696 1.526667e-01
9697 1.266667e-01
9698 2.666667e-02
9699 1.226667e-01
9700 1.713333e-01
9701 -1.520000e-01
9702 -3.866667e-02
9703 -7.333333e-02
9704 1.046667e-01
9705 -6.266667e-02
9706 -3.666667e-02
9707 3.333333e-02
9708 7.866667e-02
9709 7.066667e-02
9710 2.200000e-01
9711 -2.866667e-02
9712 -1.933333e-02
9713 -4.533333e-02
9714 -4.733333e-02
9715 2.206667e-01
9716 -6.666667e-03
9717 8.000000e-02
9718 1.126667e-01
9719 1.666667e-02
9720 -3.533333e-02
9721 -7.066667e-02
9722 1.126667e-01
9723 1.233333e-01
9724 7.066667e-02
9725 -1.066667e-01
9726 -2.120000e-01
9727 -3.733333e-02
9728 1.266667e-02
9729 8.000000e-03
9730 -2.326667e-01
9731 7.466667e-02
9732 -1.033333e-01
9733 2.466667e-02
9734 -8.533333e-02
9735 -2.733333e-02
9736 1.640000e-01
9737 1.500000e-01
9738 -1.440000e-01
9739 1.153333e-01
9740 -1.940000e-01
9741 2.400000e-01
9742 5.666667e-02
9743 1.246667e-01
9744 -3.666667e-02
9745 -5.800000e-02
9746 1.566667e-01
9747 1.400000e-01
9748 1.933333e-02
9749 -2.000000e-03
9750 -3.133333e-02
9751 2.766667e-01
9752 -1.433333e-01
9753 -2.000000e-01
9754 -4.933333e-02
9755 -2.393333e-01
9756 1.280000e-01
9757 -1.693333e-01
9758 -1.046667e-01
9759 2.933333e-02
9760 -4.200000e-02
9761 -1.346667e-01
9762 1.793333e-01
9763 1.826667e-01
9764 1.346667e-01
9765 9.066667e-02
9766 -2.406667e-01
9767 -8.800000e-02
9768 3.800000e-02
9769 7.333333e-02
9770 9.600000e-02
9771 1.533333e-02
9772 -1.613333e-01
9773 2.013333e-01
9774 2.733333e-02
9775 1.386667e-01
9776 -4.533333e-02
9777 1.053333e-01
9778 2.133333e-02
9779 -1.886667e-01
9780 -2.400000e-02
9781 6.933333e-02
9782 3.800000e-02
9783 7.733333e-02
9784 3.133333e-02
9785 8.800000e-02
9786 2.800000e-02
9787 -2.386667e-01
9788 -1.000000e-02
9789 1.126667e-01
9790 -1.786667e-01
9791 1.466667e-01
9792 -1.373333e-01
9793 -2.026667e-01
9794 5.000000e-02
9795 -1.866667e-02
9796 -1.300000e-01
9797 -1.920000e-01
9798 -1.400000e-02
9799 -9.333333e-03
9800 -5.600000e-02
9801 2.413333e-01
9802 1.740000e-01
9803 8.800000e-02
9804 1.793333e-01
9805 1.780000e-01
9806 -1.240000e-01
9807 1.606667e-01
9808 3.333333e-03
9809 -3.200000e-02
9810 -4.333333e-02
9811 1.106667e-01
9812 3.733333e-02
9813 4.533333e-02
9814 -9.333333e-03
9815 1.060000e-01
9816 -2.600000e-02
9817 3.600000e-02
9818 -1.626667e-01
9819 -2.666667e-03
9820 -1.066667e-01
9821 -3.533333e-02
9822 -1.680000e-01
9823 -1.126667e-01
9824 3.933333e-02
9825 -1.373333e-01
9826 -3.200000e-02
9827 -4.200000e-02
9828 -1.506667e-01
9829 -1.813333e-01
9830 1.333333e-01
9831 1.360000e-01
9832 -8.400000e-02
9833 3.666667e-02
9834 -1.193333e-01
9835 6.133333e-02
9836 1.493333e-01
9837 2.066667e-02
9838 -1.720000e-01
9839 -7.933333e-02
9840 -1.466667e-02
9841 -1.546667e-01
9842 1.713333e-01
9843 6.333333e-02
9844 -3.200000e-02
9845 2.073333e-01
9846 1.126667e-01
9847 2.466667e-02
9848 -6.133333e-02
9849 -5.400000e-02
9850 1.106667e-01
9851 -8.533333e-02
9852 -1.626667e-01
9853 -1.086667e-01
9854 -9.133333e-02
9855 -8.266667e-02
9856 -1.753333e-01
9857 3.200000e-02
9858 2.313333e-01
9859 -7.000000e-02
9860 4.000000e-02
9861 -3.266667e-02
9862 9.333333e-03
9863 -1.313333e-01
9864 9.000000e-02
9865 -8.866667e-02
9866 -6.666667e-02
9867 8.866667e-02
9868 -1.426667e-01
9869 1.946667e-01
9870 -3.000000e-02
9871 -2.386667e-01
9872 1.273333e-01
9873 -8.333333e-02
9874 -6.000000e-03
9875 -5.000000e-02
9876 7.066667e-02
9877 -8.400000e-02
9878 1.880000e-01
9879 -2.800000e-02
9880 5.600000e-02
9881 3.266667e-02
9882 2.146667e-01
9883 1.546667e-01
9884 1.626667e-01
9885 6.133333e-02
9886 -1.806667e-01
9887 -1.493333e-01
9888 9.666667e-02
9889 -1.266667e-02
9890 -1.226667e-01
9891 -1.206667e-01
9892 -2.173333e-01
9893 2.613333e-01
9894 1.553333e-01
9895 1.573333e-01
9896 -3.133333e-02
9897 9.266667e-02
9898 -8.066667e-02
9899 -6.933333e-02
9900 -8.000000e-03
9901 4.333333e-02
9902 6.733333e-02
9903 -1.140000e-01
9904 -8.666667e-03
9905 -1.133333e-02
9906 -8.133333e-02
9907 -1.520000e-01
9908 -8.666667e-02
9909 2.733333e-02
9910 1.080000e-01
9911 -1.186667e-01
9912 4.466667e-02
9913 -6.466667e-02
9914 3.666667e-02
9915 6.666667e-04
9916 1.420000e-01
9917 -2.013333e-01
9918 -9.000000e-02
9919 4.666667e-03
9920 2.066667e-01
9921 8.600000e-02
9922 -1.480000e-01
9923 6.400000e-02
9924 -1.160000e-01
9925 2.266667e-02
9926 -2.800000e-02
9927 -1.600000e-02
9928 -1.320000e-01
9929 4.800000e-02
9930 -1.526667e-01
9931 -7.000000e-02
9932 -2.420000e-01
9933 5.466667e-02
9934 -7.600000e-02
9935 1.340000e-01
9936 3.666667e-02
9937 -8.533333e-02
9938 -1.066667e-02
9939 -1.280000e-01
9940 1.466667e-01
9941 1.380000e-01
9942 2.246667e-01
9943 9.800000e-02
9944 -1.133333e-01
9945 1.566667e-01
9946 -7.933333e-02
9947 8.866667e-02
9948 8.200000e-02
9949 -4.666667e-03
9950 9.066667e-02
9951 -7.733333e-02
9952 -3.800000e-02
9953 1.580000e-01
9954 1.160000e-01
9955 1.620000e-01
9956 -1.400000e-02
9957 -7.533333e-02
9958 -1.473333e-01
9959 -7.266667e-02
9960 1.060000e-01
9961 2.606667e-01
9962 -1.780000e-01
9963 -3.066667e-02
9964 1.393333e-01
9965 -7.333333e-02
9966 -3.266667e-02
9967 1.186667e-01
9968 -1.740000e-01
9969 -2.206667e-01
9970 -1.000000e-02
9971 2.733333e-02
9972 -2.100000e-01
9973 -9.533333e-02
9974 -3.533333e-02
9975 2.313333e-01
9976 -4.600000e-02
9977 5.666667e-02
9978 -1.526667e-01
9979 8.333333e-02
9980 -1.246667e-01
9981 2.066667e-01
9982 -1.680000e-01
9983 1.133333e-02
9984 -1.066667e-01
9985 2.186667e-01
9986 1.440000e-01
9987 -4.733333e-02
9988 1.553333e-01
9989 -1.113333e-01
9990 1.533333e-02
9991 1.560000e-01
9992 1.400000e-01
9993 -7.733333e-02
9994 -1.280000e-01
9995 6.133333e-02
9996 1.373333e-01
9997 -3.400000e-02
9998 -4.800000e-02
9999 -9.000000e-02
This code performs a permutation test to analyze the difference in grocery prices between Walmart and Target. The polarity vector is used to randomly shuffle the data between the two stores (Target and Walmart) to simulate the null distribution, where no real difference between the stores exists. The do(9999) function is used to generate 9,999 resamples, and the mean difference between the two stores is calculated for each resample. The output shows the distribution of these simulated mean differences, with values both positive and negative, suggesting random variations around the null hypothesis of no difference between the two stores.
Plotting the Null Distribution
gf_histogram (data = null_dist_price, ~ mean) %>%
gf_vline (xintercept = obs_diff_price, colour = "red" )
Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font
family not found in Windows font database
Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font
family not found in Windows font database
Warning in grid.Call.graphics(C_text, as.graphicsAnnot(x$label), x$x, x$y, :
font family not found in Windows font database
Warning in grid.Call.graphics(C_text, as.graphicsAnnot(x$label), x$x, x$y, :
font family not found in Windows font database
Warning in grid.Call.graphics(C_text, as.graphicsAnnot(x$label), x$x, x$y, :
font family not found in Windows font database
This plot shows the null distribution of the mean differences in grocery prices between Target and Walmart from the permutation test. The histogram represents the distribution of the simulated mean differences when the null hypothesis is assumed (no real price difference between the stores). The red vertical line indicates the observed mean price difference (approximately 0.0567) between Walmart and Target. This line’s position relative to the null distribution helps visualize whether the observed difference is extreme or typical under the null hypothesis, aiding in the determination of statistical significance.
Proportion of values in the null distribution that are less than or equal to the observed mean difference
prop1 (~ mean, data = null_dist_price)
This calculates the proportion of values in the null distribution that are less than or equal to the observed mean difference. The result shows that approximately 0.0292% (2e-04) of the simulated null distribution values are less than the observed difference. This small proportion suggests that the observed difference is quite extreme under the null hypothesis, potentially indicating statistical significance depending on the context of the test.
All Tests Together
mosaic:: t_test (Groceries$ Walmart, Groceries$ Target, paired = TRUE ) %>%
broom:: tidy () %>%
gt () %>%
tab_style (
style = list (
cell_fill (color = "cyan" ),
cell_text (weight = "bold" )
),
locations = cells_body (columns = p.value)
) %>%
tab_header (title = "t.test" )
estimate
statistic
p.value
parameter
conf.low
conf.high
method
alternative
-0.05666667
-0.4704556
0.6415488
29
-0.3030159
0.1896825
Paired t-test
two.sided
lm (Target - Walmart ~ 1 , data = Groceries) %>%
broom:: tidy (conf.int = TRUE , conf.level = 0.95 ) %>%
gt () %>%
tab_style (
style = list (
cell_fill (color = "cyan" ),
cell_text (weight = "bold" )
),
locations = cells_body (columns = p.value)
) %>%
tab_header (title = "Linear Model" )
term
estimate
std.error
statistic
p.value
conf.low
conf.high
(Intercept)
0.05666667
0.1204506
0.4704556
0.6415488
-0.1896825
0.3030159
wilcox.test (Groceries$ Walmart, Groceries$ Target,
digits.rank = 7 ,
paired = TRUE ,
conf.int = TRUE ,
conf.level = 0.95
) %>%
broom:: tidy () %>%
gt () %>%
tab_style (
style = list (
cell_fill (color = "palegreen" ),
cell_text (weight = "bold" )
),
locations = cells_body (columns = p.value)
) %>%
tab_header (title = "Wilcoxon Test" )
Warning in wilcox.test.default(Groceries$Walmart, Groceries$Target, digits.rank
= 7, : cannot compute exact p-value with ties
Warning in wilcox.test.default(Groceries$Walmart, Groceries$Target, digits.rank
= 7, : cannot compute exact confidence interval with ties
Warning in wilcox.test.default(Groceries$Walmart, Groceries$Target, digits.rank
= 7, : cannot compute exact p-value with zeroes
Warning in wilcox.test.default(Groceries$Walmart, Groceries$Target, digits.rank
= 7, : cannot compute exact confidence interval with zeroes
estimate
statistic
p.value
conf.low
conf.high
method
alternative
-0.104966
95
0.01431746
-0.1750051
-0.03005987
Wilcoxon signed rank test with continuity correction
two.sided
lm (signed_rank (Target - Walmart) ~ 1 ,
data = Groceries
) %>%
broom:: tidy (conf.int = TRUE , conf.level = 0.95 ) %>%
gt () %>%
tab_style (
style = list (
cell_fill (color = "palegreen" ),
cell_text (weight = "bold" )
),
locations = cells_body (columns = p.value)
) %>%
tab_header (title = "Linear Model with Sign.Ranks" )
term
estimate
std.error
statistic
p.value
conf.low
conf.high
(Intercept)
8.533333
2.888834
2.953902
0.006167464
2.625004
14.44166
The analysis includes different statistical methods comparing grocery prices at Walmart and Target. The paired t-test and linear model both returned high p-values (0.6415), indicating no significant difference between the prices at the two stores. However, the non-parametric Wilcoxon test (p-value = 0.0143) and the linear model with signed ranks (p-value = 0.0062) both show significant differences, suggesting that there is indeed a notable price difference between Walmart and Target. The contrast in results implies that the t-test and standard linear model may not be suitable due to possible violations of assumptions like normality, which the Wilcoxon and signed rank models effectively account for, leading to more reliable results in this case.
Removing the Quaker cereal data item
theme_set (new = theme_custom ())
set.seed (12345 )
Groceries_less <- Groceries %>%
filter (Product != "Quaker Oats Life Cereal Original" )
Groceries_less_long <- Groceries_less %>%
pivot_longer (
cols = c (Target, Walmart),
names_to = "store" ,
values_to = "prices"
)
wilcox.test (Groceries_less$ Walmart,
Groceries_less$ Target,
paired = TRUE , digits.rank = 7 ,
conf.int = TRUE ,
conf.level = 0.95
) %>%
broom:: tidy ()
Warning in wilcox.test.default(Groceries_less$Walmart, Groceries_less$Target, :
cannot compute exact p-value with ties
Warning in wilcox.test.default(Groceries_less$Walmart, Groceries_less$Target, :
cannot compute exact confidence interval with ties
Warning in wilcox.test.default(Groceries_less$Walmart, Groceries_less$Target, :
cannot compute exact p-value with zeroes
Warning in wilcox.test.default(Groceries_less$Walmart, Groceries_less$Target, :
cannot compute exact confidence interval with zeroes
# A tibble: 1 × 7
estimate statistic p.value conf.low conf.high method alternative
<dbl> <dbl> <dbl> <dbl> <dbl> <chr> <chr>
1 -0.110 67 0.00349 -0.190 -0.0450 Wilcoxon signed ran… two.sided
obs_diff_price_less <-
mean (~ (Target - Walmart), data = Groceries_less)
obs_diff_price_less
polarity_less <- c (rep (1 , 15 ), rep (- 1 , 14 ))
null_dist_price_less <-
do (9999 ) * mean (
data = Groceries_less,
~ (Target - Walmart) * resample (polarity_less, replace = TRUE )
)
gf_histogram (data = null_dist_price_less, ~ mean) %>%
gf_vline (
xintercept = obs_diff_price_less,
colour = "red"
)
Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font
family not found in Windows font database
Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font
family not found in Windows font database
Warning in grid.Call.graphics(C_text, as.graphicsAnnot(x$label), x$x, x$y, :
font family not found in Windows font database
Warning in grid.Call.graphics(C_text, as.graphicsAnnot(x$label), x$x, x$y, :
font family not found in Windows font database
Warning in grid.Call.graphics(C_text, as.graphicsAnnot(x$label), x$x, x$y, :
font family not found in Windows font database
mean (null_dist_price_less >= obs_diff_price_less)
The code focuses on analysing the price difference between Target and Walmart after removing “Quaker Oats Life Cereal Original” using a Wilcoxon signed rank test. The data is reshaped into a long format for comparison between the two stores. The Wilcoxon signed rank test shows a statistically significant result with an estimate of -0.1102, a p-value of 0.00349, and confidence intervals ranging from -0.1899 to -0.0450. A permutation test is also conducted, generating a null distribution of the mean differences between the two stores. The observed difference (marked by a red line) is plotted on a histogram of the null distribution, suggesting the observed difference is greater than expected under the null hypothesis. Overall, the analysis indicates that Target prices are significantly lower than Walmart prices for this specific product.
Comparing Multiple Means with ANOVA
library (tidyverse)
library (ggformula)
library (mosaic)
library (broom)
library (infer)
Attaching package: 'infer'
The following objects are masked from 'package:mosaic':
prop_test, t_test
library (patchwork)
library (ggprism)
library (supernova)
Dataset - Frogs
frogs_orig <- read_csv ("../../data/frogs.csv" )
Rows: 60 Columns: 4
── Column specification ────────────────────────────────────────────────────────
Delimiter: ","
dbl (4): Frogspawn sample id, Temperature13, Temperature18, Temperature25
ℹ Use `spec()` to retrieve the full column specification for this data.
ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
# A tibble: 60 × 4
`Frogspawn sample id` Temperature13 Temperature18 Temperature25
<dbl> <dbl> <dbl> <dbl>
1 1 24 NA NA
2 2 NA 21 NA
3 3 NA NA 18
4 4 26 NA NA
5 5 NA 22 NA
6 6 NA NA 14
7 7 27 NA NA
8 8 NA 22 NA
9 9 NA NA 15
10 10 27 NA NA
# ℹ 50 more rows
The dataset displayed in the image titled “Frogs” contains frogspawn sample data with three different temperature measurements (13°C, 18°C, and 25°C). The dataset comprises 60 rows and 4 columns, with the columns labeled “Frogspawn sample,” “Temperature13,” “Temperature18,” and “Temperature25.” The “Frogspawn sample” column represents the sample IDs, while the temperature columns show frogspawn counts or measurements recorded at each respective temperature. The dataset includes missing values, represented by “NA,” across the temperature columns, indicating incomplete data for certain samples at specific temperatures.
Cleaning the data
frogs_orig %>%
pivot_longer (
.,
cols = starts_with ("Temperature" ),
cols_vary = "fastest" ,
names_to = "Temp" ,
values_to = "Time"
) %>%
drop_na () %>%
separate_wider_regex (
cols = Temp,
patterns = c ("Temperature" , TempFac = " \\ d+" ),
cols_remove = TRUE
) %>%
## Convert Temp into TempFac, a 3-level factor
mutate (TempFac = factor (
x = TempFac,
levels = c (13 , 18 , 25 ),
labels = c ("13" , "18" , "25" )
)) %>%
rename ("Id" = ` Frogspawn sample id ` ) -> frogs_long
frogs_long
# A tibble: 60 × 3
Id TempFac Time
<dbl> <fct> <dbl>
1 1 13 24
2 2 18 21
3 3 25 18
4 4 13 26
5 5 18 22
6 6 25 14
7 7 13 27
8 8 18 22
9 9 25 15
10 10 13 27
# ℹ 50 more rows
frogs_long %>% count (TempFac)
# A tibble: 3 × 2
TempFac n
<fct> <int>
1 13 20
2 18 20
3 25 20
The dataset on frogs consists of observations of frogspawn samples at various temperatures (13°C, 18°C, and 25°C). The data cleaning process involves restructuring the dataset into a long format, renaming and separating columns to create a temperature factor variable (TempFac) with three levels representing the different temperatures. Missing values are dropped, and the cleaned dataset contains 60 observations, 20 for each temperature level. The table shows frogspawn sample IDs, the corresponding temperature factors, and the time recorded at each temperature. Finally, a count confirms that each temperature factor has exactly 20 observations.
Histograms of Hatching Time Distributions vs Temperature
theme_set (new = theme_custom ())
gf_histogram (~ Time,
fill = ~ TempFac,
data = frogs_long, alpha = 0.5
) %>%
gf_vline (xintercept = ~ mean (Time)) %>%
gf_labs (
title = "Histograms of Hatching Time Distributions vs Temperature" ,
x = "Hatching Time" , y = "Count"
) %>%
gf_text (7 ~ (mean (Time) + 2 ),
label = "Overall Mean"
) %>%
gf_refine (guides (fill = guide_legend (title = "Temperature level (°C)" )))
Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font
family not found in Windows font database
Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font
family not found in Windows font database
Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font
family not found in Windows font database
Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font
family not found in Windows font database
Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font
family not found in Windows font database
Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font
family not found in Windows font database
Warning in grid.Call.graphics(C_text, as.graphicsAnnot(x$label), x$x, x$y, :
font family not found in Windows font database
Warning in grid.Call.graphics(C_text, as.graphicsAnnot(x$label), x$x, x$y, :
font family not found in Windows font database
Warning in grid.Call.graphics(C_text, as.graphicsAnnot(x$label), x$x, x$y, :
font family not found in Windows font database
Warning in grid.Call.graphics(C_text, as.graphicsAnnot(x$label), x$x, x$y, :
font family not found in Windows font database
Warning in grid.Call.graphics(C_text, as.graphicsAnnot(x$label), x$x, x$y, :
font family not found in Windows font database
Warning in grid.Call.graphics(C_text, as.graphicsAnnot(x$label), x$x, x$y, :
font family not found in Windows font database
The plot presented shows histograms of hatching times across these temperature levels, with a vertical line representing the overall mean hatching time. The plot highlights the distribution of hatching times for each temperature level, revealing different patterns in hatching time depending on the temperature. The overall mean is marked for comparison.
Boxplots of Hatching Time Distributions vs Temperature
theme_set (new = theme_custom ())
gf_boxplot (
data = frogs_long,
Time ~ TempFac,
fill = ~ TempFac,
alpha = 0.5
) %>%
gf_vline (xintercept = ~ mean (Time)) %>%
gf_labs (
title = "Boxplots of Hatching Time Distributions vs Temperature" ,
x = "Temperature" , y = "Hatching Time" ,
caption = "Using ggprism"
) %>%
gf_refine (
scale_x_discrete (guide = "prism_bracket" ),
guides (fill = guide_legend (title = "Temperature level (°C)" ))
)
Warning: The S3 guide system was deprecated in ggplot2 3.5.0.
ℹ It has been replaced by a ggproto system that can be extended.
Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font
family not found in Windows font database
Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font
family not found in Windows font database
Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font
family not found in Windows font database
Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font
family not found in Windows font database
Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font
family not found in Windows font database
Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font
family not found in Windows font database
Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font
family not found in Windows font database
Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font
family not found in Windows font database
Warning in grid.Call.graphics(C_text, as.graphicsAnnot(x$label), x$x, x$y, :
font family not found in Windows font database
Warning in grid.Call.graphics(C_text, as.graphicsAnnot(x$label), x$x, x$y, :
font family not found in Windows font database
Warning in grid.Call.graphics(C_text, as.graphicsAnnot(x$label), x$x, x$y, :
font family not found in Windows font database
Warning in grid.Call.graphics(C_text, as.graphicsAnnot(x$label), x$x, x$y, :
font family not found in Windows font database
Warning in grid.Call.graphics(C_text, as.graphicsAnnot(x$label), x$x, x$y, :
font family not found in Windows font database
Warning in grid.Call.graphics(C_text, as.graphicsAnnot(x$label), x$x, x$y, :
font family not found in Windows font database
The boxplot visualisation compares the distribution of hatching times across the different temperature levels. At 13°C, the median hatching time is higher, around 27–28 days, with a slight outlier. At 18°C, the hatching time decreases with a median around 21 days. At 25°C, the hatching time is the shortest, with the median around 17 days. The variation in hatching time reduces as the temperature increases, reflecting a clearer distinction in the relationship between temperature and hatching time. This trend demonstrates that higher temperatures result in shorter hatching periods.
ANOVA
frogs_anova <- aov (Time ~ TempFac, data = frogs_long)
This creates an ANOVA model object, called frogs_anova.
Errorbar Plot
theme_set (new = theme_custom ())
supernova:: pairwise (frogs_anova,
correction = "Bonferroni" ,
alpha = 0.05 ,
var_equal = TRUE ,
plot = TRUE
)
Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font
family not found in Windows font database
Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font
family not found in Windows font database
Warning in grid.Call.graphics(C_text, as.graphicsAnnot(x$label), x$x, x$y, :
font family not found in Windows font database
Warning in grid.Call.graphics(C_text, as.graphicsAnnot(x$label), x$x, x$y, :
font family not found in Windows font database
── Pairwise t-tests with Bonferroni correction ─────────────────────────────────
Family-wise error-rate: 0.049
group_1 group_2 diff pooled_se t df lower upper p_adj
<chr> <chr> <dbl> <dbl> <dbl> <int> <dbl> <dbl> <dbl>
1 18 13 -5.300 0.257 -20.608 57 -5.861 -4.739 .0000
2 25 13 -10.100 0.257 -39.272 57 -10.661 -9.539 .0000
3 25 18 -4.800 0.257 -18.664 57 -5.361 -4.239 .0000
The error bar plot provides a comparison of the differences in hatching times between three temperature groups (13°C, 18°C, and 25°C), with confidence intervals based on Bonferroni correction. The differences between these groups are statistically significant (all p-values are less than 0.05), as shown by the pairwise comparisons of the group means. The intervals for each comparison do not overlap the zero line, indicating clear distinctions between the temperature groups’ effects on hatching time. For example, the difference between 25°C and 13°C is about -10.1 with a confidence interval from -10.66 to -9.54. These findings suggest that temperature significantly affects the hatching time, with higher temperatures generally leading to faster hatching.
Table from supernova
supernova:: supernova (frogs_anova)
Analysis of Variance Table (Type III SS)
Model: Time ~ TempFac
SS df MS F PRE p
----- --------------- | -------- -- ------- ------- ----- -----
Model (error reduced) | 1020.933 2 510.467 385.897 .9312 .0000
Error (from model) | 75.400 57 1.323
----- --------------- | -------- -- ------- ------- ----- -----
Total (empty model) | 1096.333 59 18.582
The analysis of variance (ANOVA) table provides insight into the model’s effectiveness in explaining the variation in hatching time as a function of temperature levels (TempFac). The table shows the following:
Model (error reduced) : The sum of squares (SS) for the model is 1020.933, with 2 degrees of freedom (df). The mean square (MS) is 510.467. The F-statistic is 385.897, with a p-value of 0.0000, indicating strong statistical significance. This suggests that the temperature factor explains a significant portion of the variance in hatching time.
Error (from model) : The error SS is 75.400 with 57 degrees of freedom, giving an MS of 1.323. This reflects the variance not explained by the temperature levels.
Total (empty model) : The total sum of squares is 1096.333, which is the sum of explained and unexplained variation in the model.
Overall, the model is highly significant, with a p-value close to zero, confirming that temperature has a strong impact on the frogs’ hatching time.
Calculating overall sum squares
frogs_overall <- frogs_long %>%
summarise (
overall_mean_time = mean (Time),
SST = sum ((Time - overall_mean_time)^ 2 ),
n = n ()
)
frogs_overall
# A tibble: 1 × 3
overall_mean_time SST n
<dbl> <dbl> <int>
1 21.2 1096. 60
This table calculates the overall sum of squares for the frogs’ hatching time data. The overall mean hatching time is 21.17 units, and the sum of squares total (SST) is 1096.333. This SST represents the total variation in hatching time that the model will attempt to explain. The sample size (n) consists of 60 frogspawn samples. This value of SST matches the total variation from the previous ANOVA table, which confirms the accuracy of the sum of squares calculation in the dataset.
Sum of Squares Total
SST <- frogs_overall$ SST
SST
This output displays the Sum of Squares Total (SST) value, which is calculated as 1096.333. This value represents the total variability in the dataset for the frogs’ hatching time. The SST reflects the overall variation that the model will partition into components explained by the temperature factors and those left unexplained by the model (residuals). This calculation is consistent with the overall SST value observed in the ANOVA table earlier.
Calculating the sums of square errors within each group
frogs_within_groups <- frogs_long %>%
group_by (TempFac) %>%
summarise (
grouped_mean_time = mean (Time),
grouped_variance_time = var (Time),
group_error_squares = sum ((Time - grouped_mean_time)^ 2 ),
n = n ()
)
frogs_within_groups
# A tibble: 3 × 5
TempFac grouped_mean_time grouped_variance_time group_error_squares n
<fct> <dbl> <dbl> <dbl> <int>
1 13 26.3 1.27 24.2 20
2 18 21 1.26 24 20
3 25 16.2 1.43 27.2 20
frogs_SSE <- frogs_within_groups %>%
summarise (SSE = sum (group_error_squares))
SSE <- frogs_SSE$ SSE
SSE
The analysis shows the calculation of sums of square errors (SSE) within each group of frogspawn samples across three different temperature levels (13°C, 18°C, and 25°C). The grouped mean time (average hatching time) for each temperature level was calculated: 26.3 for 13°C, 21.0 for 18°C, and 16.2 for 25°C. Each group’s variance and sum of square errors (the total variation within each group from the group mean) were also calculated. The total SSE was found to be 75.4, which quantifies the variation within the groups.
Sum of squares between groups
This computes the sum of squares between groups (SSA) for the frog hatching time analysis. The total sum of squares (SST) is 1096.333, which represents the overall variation in the hatching times. The sum of square errors (SSE), which measures the variation within the temperature groups, was calculated to be 75.4. Finally, the sum of squares among groups (SSA), representing the variation between the different temperature levels, was found to be 1020.933 by subtracting SSE from SST. This indicates that most of the variation in hatching time is due to differences in the temperature levels.
Degrees of freedom for the quantities
df_SSE <- frogs_long %>%
group_by (TempFac) %>%
summarise (per_group_df_SSE = n () - 1 ) %>%
summarise (df_SSE = sum (per_group_df_SSE)) %>%
as.numeric ()
df_SST <- frogs_long %>%
summarise (df_SST = n () - 1 ) %>%
as.integer ()
k <- length (unique (frogs_long$ TempFac))
df_SSA <- k - 1
The degrees of freedom (df) for the sum of squares are calculated as follows: for the total sum of squares (SST), the degrees of freedom are 59. For the sum of square errors (SSE), the degrees of freedom are 57, which represents the number of data points minus the number of groups. Finally, for the sum of squares among groups (SSA), the degrees of freedom are 2, reflecting the number of temperature groups minus 1.
Mean Square Error
MSE <- frogs_within_groups %>%
summarise (mean_square_error = sum (group_error_squares / df_SSE)) %>%
as.numeric ()
MSE
The code calculates the Mean Square Error (MSE) from the frog dataset. It first takes the group_error_squares (which are the sum of squared differences from the group means) and divides them by the degrees of freedom for the error term (df_SSE). The result, 1.322807, represents the average variation within the groups. MSE is a key component in an ANOVA analysis, as it quantifies the variance within each group and is used in hypothesis testing to compare the means across different groups.
Mean Square for the Factor
This computes the Mean Square for the Factor (MSA) by dividing the sum of squares for the factor (SSA) by its degrees of freedom (df_SSA). The resulting value, 510.4667, represents the average variation between the group means. This MSA value is essential in the ANOVA calculation as it is used to determine the F-statistic, comparing the variation between the groups (due to the factor) to the variation within the groups (from the MSE) to assess if the differences between group means are statistically significant.
F-Statistic
F_stat <- MSA / MSE
F_stat
The code calculates the F-statistic for the ANOVA test by dividing the Mean Square for the Factor (MSA) by the Mean Square for Error (MSE). The resulting F-statistic value is 385.8966. This value helps determine whether there is a statistically significant difference between the group means. A higher F-statistic generally indicates that the variation between the groups is more significant than the variation within the groups, leading to stronger evidence against the null hypothesis that all group means are equal.
Critical F-value
F_crit <-
qf (
p = (1 - 0.05 / 3 ),
df1 = df_SSA,
df2 = df_SSE
)
F_crit
The code calculates the critical F-value (F_crit) for an ANOVA test, given a significance level adjusted for multiple comparisons (0.05/3) and the degrees of freedom for both the factor (df_SSA) and error (df_SSE). The F_crit value is 4.403048. The F_stat, calculated earlier, is 385.8966. Since the F_stat is much larger than the F_crit, this suggests a significant difference between the groups, providing strong evidence to reject the null hypothesis.
F distribution for Frogs Data
theme_set (new = theme_custom ())
mosaic:: xpf (
q = F_crit,
df1 = df_SSA, df2 = df_SSE, method = "gg" ,
log.p = FALSE , lower.tail = TRUE ,
return = "plot"
) %>%
gf_vline (xintercept = F_crit) %>%
gf_label (0.75 ~ 5 ,
label = "F_critical" ,
inherit = F, show.legend = F
) %>%
gf_labs (
title = "F distribution for Frogs Data" ,
subtitle = "F_critical = 4.403"
)
Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font
family not found in Windows font database
Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font
family not found in Windows font database
Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font
family not found in Windows font database
Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font
family not found in Windows font database
Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font
family not found in Windows font database
Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font
family not found in Windows font database
Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font
family not found in Windows font database
Warning in grid.Call.graphics(C_text, as.graphicsAnnot(x$label), x$x, x$y, :
font family not found in Windows font database
Warning in grid.Call.graphics(C_text, as.graphicsAnnot(x$label), x$x, x$y, :
font family not found in Windows font database
Warning in grid.Call.graphics(C_text, as.graphicsAnnot(x$label), x$x, x$y, :
font family not found in Windows font database
Warning in grid.Call.graphics(C_text, as.graphicsAnnot(x$label), x$x, x$y, :
font family not found in Windows font database
Warning in grid.Call.graphics(C_text, as.graphicsAnnot(x$label), x$x, x$y, :
font family not found in Windows font database
Warning in grid.Call.graphics(C_text, as.graphicsAnnot(x$label), x$x, x$y, :
font family not found in Windows font database
Warning in grid.Call.graphics(C_text, as.graphicsAnnot(x$label), x$x, x$y, :
font family not found in Windows font database
The F distribution plot for the frog data, with the calculated critical F value of 4.403, visually illustrates the density distribution of F values under the null hypothesis. The plot shows a steep decrease in probability density as F values increase, with most of the probability mass concentrated near zero. The shaded area in purple (A: 0.983) represents the region where the observed F-statistic is less than the critical F value, while the small green area (B: 0.017) represents the region beyond the critical value. Since the calculated F-statistic (385.897) is far beyond the critical value, we reject the null hypothesis, suggesting that temperature levels significantly impact hatching time. This conclusion is based on the comparison of the observed F-statistic with the critical threshold in the F distribution.
Linear equation relating Hatching_Time to TempFac
supernova:: equation (frogs_anova)
Fitted equation:
Time = 26.3 + -5.3*TempFac18 + -10.1*TempFac25 + e
The linear equation suggests that at a baseline temperature (13°C), the average hatching time is 26.3 days. When the temperature increases to 18°C (TempFac18), the hatching time decreases by 5.3 days, and when the temperature reaches 25°C (TempFac25), the hatching time decreases further by 10.1 days. The residual error is represented by eee, accounting for any variation not explained by the temperature levels. This equation illustrates a clear negative relationship between temperature and hatching time: as temperature increases, hatching time decreases.
Checking for Normality
shapiro.test (x = frogs_long$ Time)
Shapiro-Wilk normality test
data: frogs_long$Time
W = 0.92752, p-value = 0.001561
The Shapiro-Wilk normality test was conducted on the variable “Time” from the “frogs_long” dataset to check whether the data follows a normal distribution. The test result produced a W statistic of 0.92752 and a p-value of 0.001561. Since the p-value is below the typical significance threshold of 0.05, we reject the null hypothesis that the data is normally distributed. Therefore, the “Time” data does not follow a normal distribution, indicating potential skewness or deviation from normality.
Shapiro-Wilk normality test on the “Time” data across different temperature levels
frogs_long %>%
group_by (TempFac) %>%
group_modify (~ .x %>%
select (Time) %>%
as_vector () %>%
shapiro.test () %>%
broom:: tidy ())
# A tibble: 3 × 4
# Groups: TempFac [3]
TempFac statistic p.value method
<fct> <dbl> <dbl> <chr>
1 13 0.890 0.0264 Shapiro-Wilk normality test
2 18 0.925 0.126 Shapiro-Wilk normality test
3 25 0.898 0.0377 Shapiro-Wilk normality test
The Shapiro-Wilk normality test was conducted on the “Time” data across different temperature levels (TempFac) of 13°C, 18°C, and 25°C. The results show that for TempFac 13°C, the W statistic is 0.8895 with a p-value of 0.0264, suggesting a deviation from normality as the p-value is less than 0.05. For TempFac 18°C, the W statistic is 0.9254 with a p-value of 0.1261, which indicates no significant departure from normality at the 0.05 level. Similarly, for TempFac 25°C, the W statistic is 0.8979 with a p-value of 0.0377, also showing a marginal deviation from normality. Overall, while TempFac 18°C appears to be normally distributed, the other two temperature levels show some departure from normality.
theme_set (new = theme_custom ())
frogs_anova$ residuals %>%
as_tibble () %>%
gf_dhistogram (~ value, data = .) %>%
gf_fitdistr ()
Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font
family not found in Windows font database
Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font
family not found in Windows font database
Warning in grid.Call.graphics(C_text, as.graphicsAnnot(x$label), x$x, x$y, :
font family not found in Windows font database
Warning in grid.Call.graphics(C_text, as.graphicsAnnot(x$label), x$x, x$y, :
font family not found in Windows font database
Warning in grid.Call.graphics(C_text, as.graphicsAnnot(x$label), x$x, x$y, :
font family not found in Windows font database
frogs_anova$ residuals %>%
as_tibble () %>%
gf_qq (~ value, data = .) %>%
gf_qqstep () %>%
gf_qqline ()
Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font
family not found in Windows font database
Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font
family not found in Windows font database
Warning in grid.Call.graphics(C_text, as.graphicsAnnot(x$label), x$x, x$y, :
font family not found in Windows font database
Warning in grid.Call.graphics(C_text, as.graphicsAnnot(x$label), x$x, x$y, :
font family not found in Windows font database
Warning in grid.Call.graphics(C_text, as.graphicsAnnot(x$label), x$x, x$y, :
font family not found in Windows font database
shapiro.test (frogs_anova$ residuals)
Shapiro-Wilk normality test
data: frogs_anova$residuals
W = 0.94814, p-value = 0.01275
This checks the normality of residuals from an ANOVA model (frogs_anova$residuals) by using both graphical and statistical methods. First, a histogram with a fitted distribution is created, which visualizes the residuals to check if they approximately follow a normal distribution. Next, a QQ plot (Quantile-Quantile plot) is generated with the gf_qq function to further assess the normality of the residuals by comparing the observed quantiles of the residuals with the expected quantiles from a standard normal distribution. Finally, a Shapiro-Wilk test is conducted on the residuals to provide a formal test of normality, where the null hypothesis is that the data is normally distributed. The results of the Shapiro-Wilk test and the plots together help determine whether the residuals meet the assumption of normality, which is important for validating the ANOVA model.
Checking for Similar Varience
frogs_long %>%
group_by (TempFac) %>%
summarise (variance = var (Time))
# A tibble: 3 × 2
TempFac variance
<fct> <dbl>
1 13 1.27
2 18 1.26
3 25 1.43
DescTools:: LeveneTest (Time ~ TempFac, data = frogs_long)
Levene's Test for Homogeneity of Variance (center = median)
Df F value Pr(>F)
group 2 0.3931 0.6768
57
fligner.test (Time ~ TempFac, data = frogs_long)
Fligner-Killeen test of homogeneity of variances
data: Time by TempFac
Fligner-Killeen:med chi-squared = 0.53898, df = 2, p-value = 0.7638
The data being analysed involves three temperature levels (13°C, 18°C, and 25°C) and their impact on hatching times of frogspawn samples. A variance test was conducted to check for homogeneity across the temperature groups. The variance values for the groups were approximately 1.27, 1.26, and 1.43, respectively. Two statistical tests, Levene’s test and the Fligner-Killeen test, were performed to check if variances between the groups are statistically equal. The Levene’s test returned a p-value of 0.6768, and the Fligner-Killeen test gave a p-value of 0.7638, both of which are greater than 0.05, indicating that the assumption of equal variances holds across the temperature groups. This justifies the use of ANOVA or similar tests under the assumption of homogeneity of variance.
Errorbar Chart
theme_set (new = theme_custom ())
frogs_supernova <-
supernova:: pairwise (frogs_anova,
plot = TRUE ,
alpha = 0.05 ,
correction = "Bonferroni"
)
Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font
family not found in Windows font database
Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font
family not found in Windows font database
Warning in grid.Call.graphics(C_text, as.graphicsAnnot(x$label), x$x, x$y, :
font family not found in Windows font database
Warning in grid.Call.graphics(C_text, as.graphicsAnnot(x$label), x$x, x$y, :
font family not found in Windows font database
This applies the Bonferroni correction in a pairwise comparison of the ANOVA model for frog data, using the supernova::pairwise function. The output plot represents 95.1% confidence intervals (CI) for pairwise comparisons between the temperature levels (13°C, 18°C, and 25°C). The error bars indicate the confidence intervals for the differences in hatching times between these temperatures. The confidence intervals help to determine whether the differences between groups are statistically significant; intervals that do not overlap zero indicate significant differences.
Pairwise t-tests with Bonferroni correction
── Pairwise t-tests with Bonferroni correction ─────────────────────────────────
Family-wise error-rate: 0.049
group_1 group_2 diff pooled_se t df lower upper p_adj
<chr> <chr> <dbl> <dbl> <dbl> <int> <dbl> <dbl> <dbl>
1 18 13 -5.300 0.257 -20.608 57 -5.861 -4.739 .0000
2 25 13 -10.100 0.257 -39.272 57 -10.661 -9.539 .0000
3 25 18 -4.800 0.257 -18.664 57 -5.361 -4.239 .0000
The results from the pairwise t-tests with Bonferroni correction provide insights into the comparison of hatching times across three temperature levels (13°C, 18°C, and 25°C). The family-wise error rate is set at 0.049 to account for multiple comparisons. The table displays differences between groups, their pooled standard errors, t-values, degrees of freedom (df), and adjusted p-values. All comparisons between the temperature groups are significant (p_adj = 0.000), suggesting that the hatching times significantly differ between the temperature levels, with higher t-values indicating stronger evidence against the null hypothesis.
F-Statistic
observed_infer <-
frogs_long %>%
specify (Time ~ TempFac) %>%
hypothesise (null = "independence" ) %>%
calculate (stat = "F" )
observed_infer
Response: Time (numeric)
Explanatory: TempFac (factor)
Null Hypothesis: independence
# A tibble: 1 × 1
stat
<dbl>
1 386.
The output shows the result of calculating the observed F-statistic for testing the independence between the variables Time and TempFac (temperature factor). The F-statistic calculated is approximately 385.8966, indicating a strong deviation from the null hypothesis of independence. This value suggests that there is a significant difference between the means of the hatching times across the different temperature levels. This high F-statistic provides further evidence that temperature has a substantial effect on the hatching time.
Permutation Test to generate a null distribution of F-statistics
null_dist_infer <- frogs_long %>%
specify (Time ~ TempFac) %>%
hypothesise (null = "independence" ) %>%
generate (reps = 4999 , type = "permute" ) %>%
calculate (stat = "F" )
null_dist_infer
Response: Time (numeric)
Explanatory: TempFac (factor)
Null Hypothesis: independence
# A tibble: 4,999 × 2
replicate stat
<int> <dbl>
1 1 1.08
2 2 3.30
3 3 5.51
4 4 3.85
5 5 0.189
6 6 0.412
7 7 2.75
8 8 1.54
9 9 0.0974
10 10 2.92
# ℹ 4,989 more rows
The output represents a permutation test to generate a null distribution of F-statistics. The hypothesis test involves shuffling the data 4,999 times to simulate what the F-statistics would be if the null hypothesis of independence between hatching time and temperature levels (TempFac) were true. The results show a wide range of F-statistic values, starting with values such as 2.40, 3.47, and 4.28. These values serve as a basis to compare the observed F-statistic (385.8966). If the observed F-statistic significantly exceeds these values, it provides strong evidence against the null hypothesis.
Visualisation of the null distribution of the F-statistic
null_dist_infer %>%
visualise (method = "simulation" ) +
shade_p_value (obs_stat = observed_infer$ stat, direction = "right" ) +
scale_x_continuous (trans = "log10" , expand = c (0 , 0 )) +
coord_cartesian (xlim = c (0.2 , 500 ), clip = "off" ) +
annotation_logticks (outside = FALSE ) +
theme_custom ()
Warning in transformation$transform(x): NaNs produced
Warning in scale_x_continuous(trans = "log10", expand = c(0, 0)): log-10
transformation introduced infinite values.
Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font
family not found in Windows font database
Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font
family not found in Windows font database
Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font
family not found in Windows font database
Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font
family not found in Windows font database
Warning in grid.Call.graphics(C_text, as.graphicsAnnot(x$label), x$x, x$y, :
font family not found in Windows font database
Warning in grid.Call.graphics(C_text, as.graphicsAnnot(x$label), x$x, x$y, :
font family not found in Windows font database
Warning in grid.Call.graphics(C_text, as.graphicsAnnot(x$label), x$x, x$y, :
font family not found in Windows font database
Warning in grid.Call.graphics(C_text, as.graphicsAnnot(x$label), x$x, x$y, :
font family not found in Windows font database
This visualizes the null distribution of the F-statistic generated through simulation. The plot shows the frequency distribution of F-statistics under the null hypothesis of independence between hatching time and temperature levels. The x-axis is displayed on a logarithmic scale, and the observed F-statistic (indicated by the red line) is far to the right, well beyond the range of most simulated F-values. This suggests that the observed F-statistic is highly significant and unlikely to occur under the null hypothesis, providing strong evidence against it.