Differences in Tips from Vegetarians ans Non-Vegetarians

Differences in Tips from Vegetarians ans Non-Vegetarians

Author

Sara S

Introduction

The case study named “I will eat my tip, thank you” is an exploration of difference in tips given by vegetarians and non-vegetarians in the student population. The sample population considered and used for the dataset are students from the various MAHE colleges with equal number of women and men.

Importing Packages

library(tidyverse)
── 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
library(ggformula)
Loading required package: scales

Attaching package: 'scales'

The following object is masked from 'package:purrr':

    discard

The following object is masked from 'package:readr':

    col_factor

Loading required package: ggridges

New to ggformula?  Try the tutorials: 
    learnr::run_tutorial("introduction", package = "ggformula")
    learnr::run_tutorial("refining", package = "ggformula")
library(mosaic)
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 object is masked from 'package:scales':

    rescale

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(infer)

Attaching package: 'infer'

The following objects are masked from 'package:mosaic':

    prop_test, t_test
library(nortest)
library(dplyr)
library(crosstable)

Attaching package: 'crosstable'

The following object is masked from 'package:purrr':

    compact

Dataset: Tip

tip <- read_csv("../../data/tip.csv")
Rows: 60 Columns: 4
── Column specification ────────────────────────────────────────────────────────
Delimiter: ","
chr (3): Name, Gender, Preferance
dbl (1): Tip

ℹ 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.
tip
# A tibble: 60 × 4
   Name     Gender Preferance   Tip
   <chr>    <chr>  <chr>      <dbl>
 1 Aanya    Female Veg            0
 2 Adit     Male   Veg            0
 3 Aditi    Female Veg           20
 4 Akash    Male   Non-veg        0
 5 Akshita  Female Non-veg        0
 6 Anandita Female Non-veg        0
 7 Ananya   Female Non-veg       20
 8 Anaya    Female Veg           35
 9 Anhuya   Female Veg           40
10 Ankit    Male   Non-veg        0
# ℹ 50 more rows

Organizing the data

glimpse(tip)
Rows: 60
Columns: 4
$ Name       <chr> "Aanya", "Adit", "Aditi", "Akash", "Akshita", "Anandita", "…
$ Gender     <chr> "Female", "Male", "Female", "Male", "Female", "Female", "Fe…
$ Preferance <chr> "Veg", "Veg", "Veg", "Non-veg", "Non-veg", "Non-veg", "Non-…
$ Tip        <dbl> 0, 0, 20, 0, 0, 0, 20, 35, 40, 0, 0, 0, 0, 0, 0, 0, 20, 0, …
inspect(tip)

categorical variables:  
        name     class levels  n missing
1       Name character     60 60       0
2     Gender character      2 60       0
3 Preferance character      2 60       0
                                   distribution
1 Aanya (1.7%), Adit (1.7%) ...                
2 Female (50%), Male (50%)                     
3 Non-veg (50%), Veg (50%)                     

quantitative variables:  
  name   class min Q1 median Q3 max     mean       sd  n missing
1  Tip numeric   0  0      0 20 100 11.16667 17.83556 60       0

Factorizing the data

tip2 <- tip %>% 
  mutate(
    Preferance = as_factor(Preferance),
    Gender = as_factor(Gender)
  )
tip2
# A tibble: 60 × 4
   Name     Gender Preferance   Tip
   <chr>    <fct>  <fct>      <dbl>
 1 Aanya    Female Veg            0
 2 Adit     Male   Veg            0
 3 Aditi    Female Veg           20
 4 Akash    Male   Non-veg        0
 5 Akshita  Female Non-veg        0
 6 Anandita Female Non-veg        0
 7 Ananya   Female Non-veg       20
 8 Anaya    Female Veg           35
 9 Anhuya   Female Veg           40
10 Ankit    Male   Non-veg        0
# ℹ 50 more rows
glimpse(tip2)
Rows: 60
Columns: 4
$ Name       <chr> "Aanya", "Adit", "Aditi", "Akash", "Akshita", "Anandita", "…
$ Gender     <fct> Female, Male, Female, Male, Female, Female, Female, Female,…
$ Preferance <fct> Veg, Veg, Veg, Non-veg, Non-veg, Non-veg, Non-veg, Veg, Veg…
$ Tip        <dbl> 0, 0, 20, 0, 0, 0, 20, 35, 40, 0, 0, 0, 0, 0, 0, 0, 20, 0, …
inspect(tip2)

categorical variables:  
        name     class levels  n missing
1       Name character     60 60       0
2     Gender    factor      2 60       0
3 Preferance    factor      2 60       0
                                   distribution
1 Aanya (1.7%), Adit (1.7%) ...                
2 Female (50%), Male (50%)                     
3 Veg (50%), Non-veg (50%)                     

quantitative variables:  
  name   class min Q1 median Q3 max     mean       sd  n missing
1  Tip numeric   0  0      0 20 100 11.16667 17.83556 60       0
skimr::skim(tip2)
Data summary
Name tip2
Number of rows 60
Number of columns 4
_______________________
Column type frequency:
character 1
factor 2
numeric 1
________________________
Group variables None

Variable type: character

skim_variable n_missing complete_rate min max empty n_unique whitespace
Name 0 1 4 9 0 60 0

Variable type: factor

skim_variable n_missing complete_rate ordered n_unique top_counts
Gender 0 1 FALSE 2 Fem: 30, Mal: 30
Preferance 0 1 FALSE 2 Veg: 30, Non: 30

Variable type: numeric

skim_variable n_missing complete_rate mean sd p0 p25 p50 p75 p100 hist
Tip 0 1 11.17 17.84 0 0 0 20 100 ▇▁▁▁▁

Data Dictionary

Quantitative Variables

Tip: A numerical variable that represents the amount of tip given.

###Qualitative Variables Gender: Indicates the gender of individuals. Preference: Indicates dietary preference (Veg or Non-veg).

Crosstable

tip2 %>% crosstable(Tip~Preferance) %>% as_flextable

label

variable

Preferance

Veg

Non-veg

Tip

Min / Max

0 / 100.0

0 / 50.0

Med [IQR]

0 [0;20.0]

0 [0;20.0]

Mean (std)

12.3 (21.9)

10.0 (12.9)

N (NA)

30 (0)

30 (0)

Visualization.

gf_boxplot(Tip ~ Preferance, data = tip2) %>%
  gf_labs(
    title = "Tips by Preference",
    x = "Preference",
    y = "Amount"
  )

The tipping behavior between vegetarian and non-vegetarian groups shows a slight difference in the mean value, with vegetarians averaging a mean tip of 12.3 (with a standard deviation of 21.9) compared to 10.0 for non-vegetarians (with a standard deviation of 12.9). The minimum and maximum tips for vegetarians range from 0 to 100, while non-vegetarians only go up to 50. The plot indicates the presence of an outlier in the vegetarian group, with a single individual tipping 100, which significantly exceeds the other amounts. Both groups exhibit a median tip of 0, suggesting that most people either do not tip or tip very minimally. Overall, this analysis indicates that while there are a few instances of higher tips among vegetarians, tip amounts are generally low across both groups, with only a few individuals tipping at higher levels.

Mean and Standard Deviation for Tip

tip_mean <- mosaic::mean(~Tip, data = tip2)
tip_sd <- mosaic::sd(~Tip, data = tip2)

tip_mean
[1] 11.16667
tip_sd
[1] 17.83556

Preference

Histogram

gf_histogram(~Tip,fill = ~Preferance, data=tip2)%>%
  gf_facet_wrap(vars(Preferance)) %>% 
  gf_labs(title="Do people give Tips?")

Both groups display a higher concentration of tips towards the lower end of the scale, with most individuals tipping between 0 and 20. The vegetarian group shows a wider range of tipping behavior, with a few individuals giving significantly higher amounts. While the non-vegetarians have similar and lower tips, showing a more consistent tipping behavior among them. There are fewer high-value tips in the non-vegetarian group, proving once again that many non-vegetarians either do not tip or typically give minimal amounts. Although there are some differences in tipping patterns between the two groups, overall, tips remain low across both categories, with a significant number of individuals giving no tips at all.

Null Hypothesis

There is no significant difference in tipping behavior between non-vegetarian and vegetarian individuals.

Density graph

tip2 %>% 
  gf_density(~Tip, title= "People who Tip")%>% 
  gf_fitdistr(dist="dnorm")

The plot shows a noticeable peak at the lower end of the tipping scale, indicating that most individuals tend to tip minimal amounts, particularly around 0 to 20. The distribution gradually decreases as tip amounts increase, suggesting that higher tips are less common. The line for the normal distribution confirms that the majority of tips are concentrated in the lower range, emphasizing the idea that tipping is generally low among the student population.

tip2 %>% 
  gf_density(~Tip, fill=~Preferance, alpha=0.5, title= "Non-Veg and Veg who Tip")%>% 
  gf_facet_grid(~Preferance) %>% 
  gf_fitdistr(dist="dnorm")

Both groups show a peak at the lower end of the tipping scale, with most tips from 0 to around 10 for vegetarians and to around 20 for non-vegetarians. However, the veg group exhibit a slightly wider spread, with a few tipping significantly higher amounts compared to non-vegetarians, who consistently tip at lower amounts. The normal distribution lines for each group reveals that while both distributions are skewed towards lower tips, the vegetarian group demonstrates more variation, highlighting differences in tipping behavior between the two dietary preferences.

T-Test

mosaic::t_test(Tip~Preferance, data=tip2) %>% 
  broom::tidy()
# A tibble: 1 × 10
  estimate estimate1 estimate2 statistic p.value parameter conf.low conf.high
     <dbl>     <dbl>     <dbl>     <dbl>   <dbl>     <dbl>    <dbl>     <dbl>
1     2.33      12.3        10     0.503   0.617      46.9    -6.99      11.7
# ℹ 2 more variables: method <chr>, alternative <chr>

The test statistic is 0.50, with a p-value of 0.62, indicating no statistically significant difference in tipping behavior between the two groups. The confidence interval ranges from about -6.99 to 11.66, suggesting that the true difference in average tips could fall anywhere within this range. Since the p-value is much higher 0.05, it means there isn’t enough evidence to reject the null hypothesis, implying that tipping patterns between vegetarians and non-vegetarians are similar.

Finding Normal Distribution using Shapiro Test

Separating Tipping Data by Preference

##tip_extra <- data.frame(   ##Name = c("Aanya", "Adit", "Aditi", "Akash", "Akshita", "Anandita", "Ananya", "Anaya",               "Anhuya", "Ankit", "Anmol", "Anna", "Anoushka", "Arnav", "Arushi", "Ashutosh",            ##"Asark", "Ayan", "Debu", "Dheeman", "Diya", "Hardik", "Ignatius", "Khushi",            ##"Kshraja", "Mahendra", "Mahie", "Manish", "Nanditha", "Nevaan", "Nidhi",            ##"Nishant", "Nitya", "Ojas", "Praneeta", "Priyanshu", "Radha", "Reva", "Rikin",            ##"Sadnya", "Sanjana", "Sarah", "Shaivii", "Shashwat", "Shiva", "Shreya", "Symran"            ##,"Simran", "Sourabh", "Srujan", "Suhaas", "Suhani", "Sushmita", "Taran", "Varad"            ##,"Vedant", "Vinay", "Vishesh", "Vishnu", "Zivnya"),  ## Gender = c("Female", "Male", "Female", "Male", "Female", "Female", "Female", "Female",            ##  "Female", "Male", "Male", "Male", "Female", "Male", "Female", "Male", "Female",             "Male", "Male", "Male", "Female", "Male", "Male", "Female", "Female", "Male",           ##   "Female", "Male", "Female", "Male", "Female", "Male", "Female", "Male",           ##   "Female", "Male", "Female", "Female", "Male", "Female", "Female", "Female",            ##  "Female", "Male", "Male", "Female", "Female", "Female", "Male", "Male", "Male",          ##   "Female", "Female", "Male", "Male", "Male", "Male", "Male", "Male", "Female"),   ##Preferance = c("Veg", "Veg", "Veg", "Non-veg", "Non-veg", "Non-veg", "Non-veg", "Veg",                 ## "Veg", "Non-veg", "Veg", "Veg", "Non-veg", "Non-veg", "Non-veg", "Non-veg",                 "Non-veg", "Veg", "Veg", "Veg", "Veg", "Non-veg", "Non-veg", "Veg", "Veg",                ##  "Non-veg", "Veg", "Veg", "Veg", "Non-veg", "Veg", "Non-veg", "Non-veg",                 ## "Veg", "Non-veg", "Non-veg", "Non-veg", "Non-veg", "Non-veg", "Veg", "Veg",                 "Non-veg", "Non-veg", "Veg", "Veg", "Veg", "Non-veg", "Non-veg", "Non-veg",                 "Veg", "Veg", "Non-veg", "Veg", "Veg", "Veg", "Non-veg", "Non-veg", "Veg",                ##  "Non-veg", "Veg"),  ## Tip = c(0, 0, 20, 0, 0, 0, 20, 35, 40, 0, 0, 0, 0, 0, 0, 0, 20, 0, 15, 100, 30, 0, 20, 0,           0, 20, 0, 0, 0, 0, 0, 20, 0, 20, 50, 20, 20, 20, 30, 0, 0, 0, 0, 0, 0, 0, 20, 0,          ##  0, 0, 20, 20, 20, 20, 0, 20, 0, 0, 0, 50)) ##tip3 <- tip_extra %>% ##  pivot_wider()
##tip_extra <-tip2 %>% 
##  select(
##  "Female", "Male", "Female", "Male", "Female", "Female", "Female", "Female", 
##  "Female", "Male", "Male", "Male", "Female", "Male", "Female", "Male", "Female","Male", "Male", "Male", "Female", "Male", "Male", "Female", "Female", "Male", 
##  "Female", "Male", "Female", "Male", "Female", "Male", "Female", "Male", 
##  "Female", "Male", "Female", "Female", "Male", "Female", "Female", "Female", 
##  "Female", "Male", "Male", "Female", "Female", "Female", "Male", "Male", "Male","Female", "Female", "Male", "Male", "Male", "Male", "Male", "Male", "Female") %>% 
##tip3 <- tip_extra %>%
##  mutate(
##    Male = as.character(Gender == "Male"),
##    Female = as.character(Gender == "Female"))
tip2 %>% 
  filter(Preferance== "Non-veg") %>% 
  select(Tip)-> NV
NV
# A tibble: 30 × 1
     Tip
   <dbl>
 1     0
 2     0
 3     0
 4    20
 5     0
 6     0
 7     0
 8     0
 9     0
10    20
# ℹ 20 more rows
tip2 %>% 
  filter(Preferance== "Veg") %>% 
  select(Tip)-> V
V
# A tibble: 30 × 1
     Tip
   <dbl>
 1     0
 2     0
 3    20
 4    35
 5    40
 6     0
 7     0
 8     0
 9    15
10   100
# ℹ 20 more rows

Shapiro Test

shapiro.test(NV$Tip)

    Shapiro-Wilk normality test

data:  NV$Tip
W = 0.71661, p-value = 2.747e-06
shapiro.test(V$Tip)

    Shapiro-Wilk normality test

data:  V$Tip
W = 0.6286, p-value = 1.661e-07

The Shapiro normality test results for the tipping data show that both non-vegetarians and vegetarians do not follow a normal distribution. For the non-vegetarian group, the test produced a p-value of 2.747e-06 (2.747× 10 to the power negative 6 = 0.000002747), while the vegetarian group had a p-value of 1.661e-07 (1.6617× 10 to the power negative 7 = 0.0000001661). Since both p-values are significantly lower than 0.05, the null hypothesis of normality is rejected for both groups. This indicates that the tipping behavior in both categories is not normally distributed, suggesting that non-parametric methods need to be used for further analysis.

Non-parametric methods are statistical techniques that do not assume a specific distribution for the data, making them useful when the data doesn’t follow a normal distribution. Eg: Wilcoxon test

Parametric methods are statistical techniques that assume the data follows a specific distribution, typically a normal distribution. Eg:T-test and ANOVA

Wilcoxon Test

wilcox.test(Tip ~ Preferance, data = tip2,
            conf.int = TRUE,
            conf.level = 0.95) %>% 
  broom::tidy()
Warning in wilcox.test.default(x = DATA[[1L]], y = DATA[[2L]], ...): cannot
compute exact p-value with ties
Warning in wilcox.test.default(x = DATA[[1L]], y = DATA[[2L]], ...): cannot
compute exact confidence intervals with ties
# A tibble: 1 × 7
    estimate statistic p.value     conf.low conf.high method         alternative
       <dbl>     <dbl>   <dbl>        <dbl>     <dbl> <chr>          <chr>      
1 -0.0000372       437   0.833 -0.000000989 0.0000335 Wilcoxon rank… two.sided  

The results from the Wilcoxon rank sum test indicates that there is no significant difference in tipping amounts between vegetarians and non-vegetarians.With a p-value of 0.8327, much higher than 0.05, it shows that the null hypothesis cannot be rejected, showing once again that the tipping behavior in both groups is similar.

Permutation

obs_mean <- diffmean(Tip~Preferance, data = tip2)
obs_mean
 diffmean 
-2.333333 
null_dist <- 
  do(4999) * diffmean(data = tip2, 
                      Tip ~ shuffle(Preferance))
null_dist
        diffmean
1     -0.3333333
2     -4.0000000
3     -1.0000000
4     -2.6666667
5     -3.3333333
6     -1.6666667
7     -2.0000000
8      8.3333333
9      7.0000000
10    -6.3333333
11     1.6666667
12    -3.0000000
13    -1.6666667
14    -0.3333333
15     0.6666667
16    -6.0000000
17     2.3333333
18    -1.6666667
19    -0.6666667
20    -7.0000000
21    -3.0000000
22    -3.3333333
23    -1.3333333
24     9.3333333
25     6.0000000
26     7.0000000
27     8.0000000
28    -3.6666667
29     8.6666667
30     2.6666667
31    -6.6666667
32    -3.3333333
33     1.6666667
34   -12.3333333
35    -6.6666667
36    -0.3333333
37     2.3333333
38    -6.6666667
39    -4.0000000
40    -4.0000000
41     6.6666667
42    -6.6666667
43    -2.6666667
44     2.3333333
45    -2.0000000
46    -5.0000000
47    -4.3333333
48    -3.6666667
49     6.0000000
50    -5.0000000
51    -6.3333333
52    -3.6666667
53    -6.0000000
54     2.6666667
55     2.3333333
56    -3.6666667
57     3.3333333
58     4.6666667
59     6.6666667
60     5.3333333
61     0.6666667
62     3.6666667
63     1.3333333
64     1.3333333
65     4.0000000
66     6.6666667
67     5.6666667
68     2.6666667
69    -2.3333333
70    -1.0000000
71    12.0000000
72    -3.6666667
73    -6.0000000
74    -1.0000000
75     0.6666667
76    -3.0000000
77    -1.0000000
78    -7.0000000
79     2.6666667
80    -0.3333333
81     3.3333333
82     5.6666667
83     6.0000000
84     0.0000000
85     4.3333333
86     1.6666667
87     2.0000000
88    -2.6666667
89    10.0000000
90    -5.6666667
91     3.0000000
92    -4.0000000
93    -0.3333333
94    -2.3333333
95     5.3333333
96   -10.0000000
97    -1.6666667
98    -8.3333333
99    -4.3333333
100   -2.6666667
101    8.6666667
102   -1.0000000
103    0.3333333
104    7.3333333
105   -1.6666667
106    5.0000000
107   -0.6666667
108  -10.0000000
109    1.0000000
110    1.0000000
111    5.6666667
112   -4.6666667
113   -6.6666667
114    0.3333333
115    4.3333333
116   -1.3333333
117   -1.0000000
118   -1.0000000
119   -1.0000000
120   -1.3333333
121   -2.3333333
122   -8.6666667
123    0.0000000
124   -3.3333333
125   -1.3333333
126    5.0000000
127    2.3333333
128    2.3333333
129    0.3333333
130   -5.0000000
131   -3.6666667
132   10.6666667
133    1.6666667
134    0.3333333
135   -6.6666667
136    3.3333333
137    5.6666667
138   -6.0000000
139   -3.0000000
140   -2.6666667
141   -2.6666667
142   -4.3333333
143    2.3333333
144   -9.3333333
145   -6.6666667
146    2.0000000
147   -3.3333333
148    0.3333333
149    2.0000000
150   -6.0000000
151   -5.3333333
152   -6.3333333
153    8.0000000
154    3.3333333
155   -3.6666667
156   -2.0000000
157    1.0000000
158    5.6666667
159   -4.3333333
160   -2.6666667
161   -0.6666667
162    0.6666667
163   -8.0000000
164    8.6666667
165    0.3333333
166    2.6666667
167    2.6666667
168   -0.6666667
169   -5.6666667
170    2.3333333
171    0.3333333
172   -2.3333333
173    1.3333333
174    2.6666667
175    2.6666667
176    4.6666667
177    0.6666667
178   -5.0000000
179    2.3333333
180   -2.0000000
181    5.3333333
182    0.0000000
183   -3.3333333
184    4.3333333
185    6.3333333
186    0.3333333
187   -8.6666667
188    2.0000000
189    1.0000000
190   -2.3333333
191    2.3333333
192   -0.6666667
193    0.0000000
194    6.0000000
195   -7.3333333
196   -7.6666667
197    5.6666667
198    5.0000000
199    7.6666667
200    1.0000000
201   10.3333333
202   -6.6666667
203    5.3333333
204    9.6666667
205   -5.6666667
206    0.0000000
207   -5.3333333
208   -3.3333333
209   -2.0000000
210  -10.3333333
211    5.3333333
212    3.3333333
213   -2.6666667
214   -5.0000000
215    1.6666667
216   -7.3333333
217   -1.3333333
218    3.0000000
219   -2.6666667
220   -4.3333333
221   -4.3333333
222   -8.6666667
223   -3.6666667
224   -3.3333333
225    5.0000000
226    1.6666667
227    3.0000000
228    5.3333333
229    2.3333333
230  -11.6666667
231   -1.0000000
232    2.6666667
233   -4.3333333
234   -1.0000000
235    0.3333333
236   -0.3333333
237   -1.0000000
238    2.3333333
239   10.0000000
240    0.6666667
241    5.3333333
242    0.0000000
243   -1.6666667
244   -2.3333333
245   -3.6666667
246    5.0000000
247   -1.0000000
248   -1.6666667
249   -4.0000000
250   -2.6666667
251   -1.6666667
252    3.0000000
253   -8.0000000
254    7.3333333
255    2.0000000
256    5.0000000
257   -5.3333333
258   -8.0000000
259    1.0000000
260    0.3333333
261   -1.0000000
262    0.6666667
263   -0.3333333
264   -1.3333333
265   -1.0000000
266    1.3333333
267    2.3333333
268    0.0000000
269   -1.0000000
270   -1.0000000
271    8.6666667
272   -2.6666667
273    2.6666667
274   -1.0000000
275   -3.0000000
276    3.0000000
277   -3.0000000
278    6.3333333
279    3.0000000
280    5.6666667
281   -3.6666667
282    9.0000000
283   -3.0000000
284    0.0000000
285    4.6666667
286   -6.6666667
287    2.6666667
288    5.6666667
289   10.3333333
290   -0.6666667
291    4.3333333
292   -3.6666667
293   -1.6666667
294   -1.3333333
295    6.3333333
296  -10.6666667
297    2.6666667
298   -1.0000000
299   -7.6666667
300   -2.0000000
301    2.3333333
302    2.3333333
303    3.0000000
304    1.6666667
305   -6.0000000
306   -8.6666667
307   -2.6666667
308   -6.6666667
309    4.0000000
310    0.0000000
311   -5.0000000
312   -7.3333333
313   -8.6666667
314    1.3333333
315   -0.6666667
316    6.0000000
317   -7.6666667
318   -1.3333333
319    3.6666667
320    0.6666667
321    3.0000000
322    3.6666667
323   -1.3333333
324    6.0000000
325   -2.0000000
326    1.0000000
327   -3.3333333
328    3.3333333
329   -1.3333333
330   -0.6666667
331    2.6666667
332   -1.6666667
333   -5.6666667
334   -4.6666667
335    1.3333333
336    1.3333333
337    3.6666667
338    1.0000000
339    3.0000000
340    2.3333333
341    1.0000000
342   -1.0000000
343    3.6666667
344   -0.3333333
345   -2.6666667
346    1.0000000
347   -1.6666667
348    2.3333333
349   -3.0000000
350   -3.0000000
351   -3.0000000
352    0.6666667
353    6.0000000
354    4.3333333
355    2.3333333
356   -6.3333333
357   -4.3333333
358    9.6666667
359    1.0000000
360    6.3333333
361    1.0000000
362   -0.3333333
363    4.3333333
364   -0.6666667
365    0.6666667
366    1.0000000
367   -6.6666667
368   -2.6666667
369    5.0000000
370    3.0000000
371   -5.3333333
372    1.6666667
373   -2.0000000
374    4.6666667
375   -1.0000000
376   -7.3333333
377   -5.6666667
378    2.3333333
379   -3.0000000
380    6.3333333
381   -3.3333333
382   -2.6666667
383   -1.6666667
384   -5.3333333
385    0.3333333
386    2.0000000
387   -7.0000000
388    4.0000000
389   -5.3333333
390   -6.3333333
391    0.0000000
392   -3.0000000
393    1.3333333
394    5.6666667
395    3.6666667
396   -9.0000000
397   -2.0000000
398   -0.6666667
399   -3.0000000
400   -6.0000000
401    5.0000000
402   10.3333333
403   -6.6666667
404   -5.0000000
405   -0.6666667
406   -0.3333333
407    1.3333333
408   -0.6666667
409    2.6666667
410    3.0000000
411    8.6666667
412   -8.3333333
413   -9.3333333
414    2.0000000
415   -0.3333333
416   10.0000000
417  -10.0000000
418    3.0000000
419    3.0000000
420    7.3333333
421   -6.0000000
422   -0.3333333
423    1.3333333
424    3.6666667
425   -5.6666667
426    0.6666667
427   -1.0000000
428    5.6666667
429   -4.3333333
430    0.6666667
431   -0.3333333
432    1.3333333
433   -3.3333333
434   -2.0000000
435   -0.3333333
436    2.0000000
437   -1.0000000
438    9.6666667
439    1.0000000
440   -3.0000000
441    0.6666667
442   -4.6666667
443   -2.6666667
444   -6.0000000
445   -1.6666667
446   -4.6666667
447   -4.0000000
448   -5.3333333
449    4.6666667
450   -5.3333333
451    2.6666667
452   -3.3333333
453   -2.6666667
454    3.6666667
455    2.6666667
456   -1.3333333
457   -6.0000000
458    3.0000000
459   -1.6666667
460   -4.3333333
461    2.0000000
462   -6.6666667
463    3.3333333
464    5.0000000
465  -10.0000000
466   -4.3333333
467    2.0000000
468   -2.3333333
469   -9.3333333
470    1.3333333
471    3.3333333
472    2.0000000
473    3.3333333
474   -0.6666667
475   -5.3333333
476    0.0000000
477   -5.6666667
478    1.6666667
479   -1.6666667
480   -1.3333333
481    3.3333333
482   -1.0000000
483   -8.0000000
484   -0.6666667
485   -2.6666667
486    9.3333333
487    0.6666667
488    7.6666667
489    0.6666667
490   -2.6666667
491   -1.6666667
492    6.0000000
493    0.6666667
494    5.3333333
495   -5.6666667
496    4.6666667
497    2.6666667
498   -1.0000000
499   -9.0000000
500   -4.0000000
501    2.3333333
502   -4.6666667
503   -1.0000000
504    0.0000000
505    0.3333333
506    2.6666667
507   -4.0000000
508    3.6666667
509   -4.6666667
510   -9.6666667
511    2.0000000
512    0.0000000
513    3.3333333
514    0.0000000
515    1.0000000
516   -1.6666667
517    2.3333333
518   -5.3333333
519    5.6666667
520    0.0000000
521    0.3333333
522    0.3333333
523   -3.6666667
524    4.6666667
525    0.6666667
526    3.3333333
527   -2.6666667
528    1.0000000
529   -3.0000000
530   -4.3333333
531   -3.0000000
532   -7.6666667
533    0.3333333
534   -1.0000000
535   -2.3333333
536    2.0000000
537   -4.0000000
538    0.0000000
539    0.3333333
540   -0.3333333
541    4.3333333
542    6.0000000
543   -0.3333333
544   -2.3333333
545   -2.0000000
546   -1.3333333
547    8.0000000
548   -6.6666667
549   -2.0000000
550    3.0000000
551   -6.3333333
552   -1.6666667
553    0.3333333
554    1.6666667
555   -3.6666667
556   -4.0000000
557   -3.3333333
558   -6.6666667
559    8.3333333
560   -1.6666667
561    1.3333333
562   -6.0000000
563    8.0000000
564   -7.3333333
565   -2.3333333
566   -2.6666667
567    1.3333333
568   -1.6666667
569   -0.3333333
570    4.6666667
571    0.6666667
572   -2.0000000
573    9.6666667
574    4.6666667
575    3.6666667
576   -3.3333333
577   -2.6666667
578   -2.0000000
579   -6.6666667
580    0.0000000
581    4.3333333
582   -0.3333333
583   -0.6666667
584   -1.3333333
585    2.3333333
586   -1.3333333
587    5.3333333
588   -8.6666667
589   -2.3333333
590    7.3333333
591   -3.6666667
592    4.0000000
593   -1.0000000
594   -2.0000000
595   -5.3333333
596    8.3333333
597   -1.6666667
598    3.3333333
599    1.3333333
600   -5.6666667
601    1.0000000
602    0.0000000
603    1.0000000
604    3.0000000
605   -2.0000000
606   -8.3333333
607   -1.0000000
608    2.0000000
609   -6.3333333
610    3.6666667
611    0.6666667
612    3.3333333
613    1.3333333
614    0.3333333
615    4.3333333
616   -2.6666667
617   -7.6666667
618   -5.0000000
619   -4.0000000
620   -4.0000000
621    0.3333333
622    1.0000000
623   -0.6666667
624    0.6666667
625   -2.3333333
626   -6.0000000
627   -5.0000000
628    7.0000000
629    7.3333333
630   -2.6666667
631    9.0000000
632    0.0000000
633   -6.6666667
634   -2.6666667
635   -7.0000000
636    3.3333333
637   -0.6666667
638   10.3333333
639   10.0000000
640    4.3333333
641   -1.6666667
642    4.3333333
643    2.0000000
644   -9.6666667
645   -1.3333333
646   -3.3333333
647    0.3333333
648    1.0000000
649   -4.3333333
650    7.0000000
651   10.0000000
652   -2.3333333
653    2.3333333
654   -2.3333333
655    0.3333333
656   -4.3333333
657    2.0000000
658    0.6666667
659    5.6666667
660   -0.6666667
661    5.3333333
662   -0.6666667
663   -8.3333333
664    5.3333333
665   -5.6666667
666    6.3333333
667    0.3333333
668    5.6666667
669    2.3333333
670    5.0000000
671   -3.6666667
672   -4.0000000
673    1.3333333
674   -1.6666667
675   -3.3333333
676   -2.0000000
677    3.0000000
678   -3.0000000
679    1.0000000
680    1.6666667
681    9.3333333
682   -3.0000000
683    6.6666667
684   -6.3333333
685   -9.0000000
686    0.0000000
687    5.6666667
688   -8.0000000
689    6.3333333
690   -2.6666667
691   -4.3333333
692    3.0000000
693   -1.3333333
694   -1.0000000
695    1.0000000
696    4.0000000
697   -2.6666667
698   -6.0000000
699    1.3333333
700    1.3333333
701    0.3333333
702    3.6666667
703   -7.3333333
704   -1.6666667
705   -2.3333333
706   -1.6666667
707   -2.6666667
708   -0.3333333
709   -3.6666667
710   -7.3333333
711    6.0000000
712   -4.0000000
713   -1.6666667
714   -3.6666667
715   -1.6666667
716    8.6666667
717   -0.6666667
718    7.0000000
719    1.6666667
720    1.6666667
721   -1.3333333
722   -0.3333333
723   -1.0000000
724    3.6666667
725   -4.3333333
726    5.3333333
727    1.3333333
728   -1.3333333
729    4.3333333
730    2.3333333
731    0.3333333
732   -4.3333333
733    4.6666667
734   -1.6666667
735    0.0000000
736   -1.3333333
737   -0.6666667
738   -1.6666667
739    1.0000000
740    7.6666667
741    4.6666667
742   -1.0000000
743   -2.0000000
744    3.6666667
745   -5.3333333
746    1.0000000
747   -3.0000000
748   10.3333333
749    4.0000000
750    6.6666667
751   -4.6666667
752   -4.0000000
753   -0.3333333
754   -2.3333333
755    2.6666667
756    2.3333333
757   -0.6666667
758   -3.0000000
759   -5.0000000
760   -3.6666667
761    0.0000000
762    2.0000000
763    2.3333333
764   -4.6666667
765   -3.3333333
766    4.0000000
767    8.0000000
768   -3.3333333
769   -2.3333333
770    1.6666667
771   -4.3333333
772   -3.3333333
773    5.0000000
774    3.0000000
775    2.6666667
776   -1.0000000
777    4.0000000
778   -5.0000000
779   -1.6666667
780    7.0000000
781   -1.3333333
782    3.3333333
783    1.0000000
784    4.0000000
785    5.6666667
786    2.6666667
787   -2.6666667
788    0.6666667
789    1.0000000
790   -2.0000000
791   -4.0000000
792   -2.6666667
793   -0.6666667
794    4.0000000
795   -4.0000000
796    1.6666667
797   -1.3333333
798   -1.3333333
799   -2.6666667
800   -1.6666667
801   -0.3333333
802    8.3333333
803   -0.6666667
804    5.3333333
805    4.6666667
806    1.6666667
807    7.3333333
808    4.3333333
809   -2.0000000
810   -2.0000000
811    8.0000000
812   -5.0000000
813   -0.6666667
814    1.0000000
815   -0.3333333
816   -8.6666667
817    5.6666667
818   -8.0000000
819   -0.6666667
820    4.3333333
821    3.3333333
822    1.3333333
823   -3.3333333
824   -2.3333333
825    1.0000000
826   -1.6666667
827    1.0000000
828    0.3333333
829   -4.0000000
830    1.6666667
831    3.3333333
832    1.6666667
833    1.6666667
834   -3.0000000
835    5.6666667
836    3.0000000
837   -2.0000000
838    6.6666667
839   -6.3333333
840    2.0000000
841    4.6666667
842    2.6666667
843   -3.0000000
844    6.0000000
845    0.3333333
846    7.3333333
847   -2.6666667
848    3.6666667
849    1.3333333
850    7.0000000
851   -5.3333333
852   -7.3333333
853   -3.0000000
854   -4.0000000
855   -0.3333333
856   -0.6666667
857    1.3333333
858   -0.3333333
859    2.3333333
860    2.0000000
861   -2.3333333
862   -3.3333333
863   -0.3333333
864   -1.3333333
865    4.6666667
866   -3.0000000
867    5.3333333
868    2.3333333
869    2.6666667
870    2.6666667
871    4.3333333
872   -6.0000000
873    2.6666667
874   -3.3333333
875    5.6666667
876    7.6666667
877   -6.0000000
878   -3.6666667
879   -2.0000000
880   -1.3333333
881    3.3333333
882    7.6666667
883    6.3333333
884    7.0000000
885   -5.3333333
886   -0.3333333
887   -6.3333333
888    0.3333333
889   10.6666667
890   -2.6666667
891    4.0000000
892    8.3333333
893   -5.0000000
894    0.0000000
895    7.0000000
896   -0.6666667
897    3.6666667
898    4.0000000
899    0.0000000
900    6.6666667
901    7.6666667
902    2.0000000
903   -2.3333333
904    3.3333333
905   11.3333333
906   -5.3333333
907    0.0000000
908   10.3333333
909   -6.6666667
910    4.6666667
911    6.3333333
912   -4.3333333
913   -6.0000000
914    2.3333333
915   -1.3333333
916    2.0000000
917    6.3333333
918   -4.3333333
919    0.0000000
920    5.3333333
921    5.3333333
922   -4.6666667
923    6.0000000
924   -0.6666667
925    1.6666667
926   -4.6666667
927   -3.3333333
928   -2.0000000
929   -4.0000000
930   -2.0000000
931   -5.0000000
932   -4.3333333
933   -2.3333333
934    5.0000000
935    0.6666667
936   -4.0000000
937   -0.6666667
938   -8.6666667
939   -6.3333333
940   -9.6666667
941    1.0000000
942    7.6666667
943   -7.3333333
944   -1.6666667
945    7.3333333
946    5.0000000
947   -3.6666667
948   -0.3333333
949   -8.0000000
950   -5.0000000
951   -7.3333333
952   -4.6666667
953   -4.0000000
954   -0.3333333
955   -3.3333333
956   -0.6666667
957    8.3333333
958   -0.6666667
959    1.3333333
960   -3.0000000
961    3.6666667
962   -3.0000000
963    0.0000000
964    6.0000000
965    5.6666667
966   -7.6666667
967   -4.3333333
968   -8.0000000
969   -1.0000000
970    2.6666667
971    2.3333333
972   -4.6666667
973    1.3333333
974   -5.0000000
975   -6.6666667
976   -0.3333333
977    0.6666667
978   -2.3333333
979   -3.0000000
980   -4.0000000
981   -4.0000000
982    6.0000000
983    1.0000000
984    7.3333333
985   -1.3333333
986    1.0000000
987    1.6666667
988   -1.0000000
989   -9.0000000
990   -1.6666667
991   -8.3333333
992    0.3333333
993    6.3333333
994    0.3333333
995    6.6666667
996    1.6666667
997    1.6666667
998    5.3333333
999    0.0000000
1000   5.0000000
1001  -2.0000000
1002  -5.6666667
1003  -6.3333333
1004   0.0000000
1005   2.6666667
1006  -7.3333333
1007   9.3333333
1008  -2.0000000
1009   1.6666667
1010   9.0000000
1011  -3.0000000
1012   0.0000000
1013  -4.3333333
1014   7.0000000
1015   4.6666667
1016  -2.3333333
1017  -3.6666667
1018  -0.3333333
1019   4.0000000
1020  -0.6666667
1021   0.0000000
1022   0.6666667
1023   1.0000000
1024   3.3333333
1025  -0.3333333
1026  -1.0000000
1027  -6.0000000
1028  -1.0000000
1029  -1.6666667
1030   0.6666667
1031   7.6666667
1032   1.3333333
1033   3.0000000
1034  -3.3333333
1035  -4.6666667
1036  -9.0000000
1037  -7.0000000
1038   3.3333333
1039   0.3333333
1040   0.3333333
1041   6.6666667
1042  -0.6666667
1043   5.6666667
1044  -1.3333333
1045  -3.3333333
1046   3.3333333
1047  -5.3333333
1048  -2.6666667
1049  -4.3333333
1050   3.0000000
1051  -3.0000000
1052  -3.3333333
1053  -6.6666667
1054  -3.3333333
1055  -4.6666667
1056  -4.0000000
1057   2.0000000
1058  -5.0000000
1059   7.0000000
1060  -5.0000000
1061  -6.0000000
1062  -4.6666667
1063  -5.0000000
1064  -4.6666667
1065  -3.3333333
1066  -2.0000000
1067   6.3333333
1068   4.6666667
1069   7.3333333
1070  -0.6666667
1071   4.6666667
1072  -1.6666667
1073  -0.3333333
1074   8.6666667
1075   0.3333333
1076   1.3333333
1077   5.6666667
1078  -2.0000000
1079   6.6666667
1080  -0.6666667
1081   0.0000000
1082  -4.0000000
1083  -8.3333333
1084  -0.6666667
1085  -2.0000000
1086   3.3333333
1087   0.0000000
1088  -5.0000000
1089   0.3333333
1090   0.0000000
1091  -1.0000000
1092   0.3333333
1093   3.3333333
1094   1.3333333
1095  -0.6666667
1096  -4.6666667
1097   0.0000000
1098  -5.6666667
1099   3.3333333
1100   8.6666667
1101   3.6666667
1102  -3.0000000
1103  -1.0000000
1104 -11.3333333
1105  -2.6666667
1106   1.0000000
1107  -1.0000000
1108   3.0000000
1109   2.3333333
1110   4.6666667
1111  -1.6666667
1112  -0.6666667
1113  -3.0000000
1114  -2.6666667
1115  -2.3333333
1116   6.6666667
1117  -6.0000000
1118  -6.6666667
1119  -9.6666667
1120   6.0000000
1121   1.3333333
1122   4.0000000
1123  -6.6666667
1124  -7.6666667
1125   4.3333333
1126  -1.0000000
1127   2.3333333
1128   0.3333333
1129  -6.6666667
1130  -7.3333333
1131  -7.3333333
1132   0.6666667
1133   6.0000000
1134  -2.6666667
1135   1.3333333
1136   1.3333333
1137  12.0000000
1138   5.6666667
1139  -8.6666667
1140   1.6666667
1141  -5.0000000
1142   2.3333333
1143   6.0000000
1144   1.0000000
1145  -6.3333333
1146  -4.3333333
1147  -4.6666667
1148  -4.0000000
1149  -1.3333333
1150   7.3333333
1151   3.3333333
1152   2.3333333
1153   5.3333333
1154   2.3333333
1155  -4.3333333
1156  -0.3333333
1157  -1.0000000
1158  -3.3333333
1159   2.6666667
1160  -3.6666667
1161  -1.6666667
1162  -5.3333333
1163   5.3333333
1164   1.0000000
1165  -2.6666667
1166   1.3333333
1167   1.3333333
1168  -7.6666667
1169   0.6666667
1170  -5.3333333
1171  -7.0000000
1172  -0.3333333
1173  -7.0000000
1174  -1.0000000
1175   3.3333333
1176   0.3333333
1177  -6.3333333
1178   0.6666667
1179  -2.3333333
1180  -5.0000000
1181   0.3333333
1182  -3.3333333
1183  -4.3333333
1184  -1.6666667
1185  -7.6666667
1186   3.3333333
1187   4.3333333
1188   5.0000000
1189   1.6666667
1190   0.6666667
1191  -0.6666667
1192   4.0000000
1193 -13.6666667
1194  -4.3333333
1195  -2.6666667
1196  -1.0000000
1197  -7.3333333
1198   4.3333333
1199   0.0000000
1200  -4.6666667
1201   2.6666667
1202   5.6666667
1203   2.6666667
1204   5.0000000
1205  -2.6666667
1206   1.3333333
1207  -4.3333333
1208   6.3333333
1209  -2.0000000
1210   4.3333333
1211  -2.0000000
1212  -9.3333333
1213   6.0000000
1214   3.3333333
1215   0.3333333
1216   3.0000000
1217  -3.3333333
1218   6.3333333
1219  -0.3333333
1220   0.3333333
1221   0.0000000
1222   1.0000000
1223   6.3333333
1224  -8.0000000
1225   6.6666667
1226  -2.0000000
1227   2.6666667
1228   6.0000000
1229   6.0000000
1230   3.3333333
1231   6.3333333
1232  -1.3333333
1233   1.0000000
1234  -9.0000000
1235   0.3333333
1236   0.0000000
1237   6.3333333
1238  -4.3333333
1239   1.0000000
1240  -2.3333333
1241   3.3333333
1242  -6.3333333
1243 -11.3333333
1244  -3.3333333
1245   7.0000000
1246  -2.3333333
1247   5.6666667
1248   4.3333333
1249   2.3333333
1250   9.6666667
1251  -3.0000000
1252   7.6666667
1253   5.0000000
1254  11.3333333
1255  -0.6666667
1256  -5.3333333
1257  -0.6666667
1258   2.6666667
1259  -7.3333333
1260  -3.6666667
1261   4.3333333
1262   0.6666667
1263  -3.0000000
1264   3.6666667
1265   4.6666667
1266 -12.6666667
1267   8.3333333
1268  -3.0000000
1269   4.6666667
1270   3.3333333
1271   4.6666667
1272   3.6666667
1273  -0.6666667
1274   3.0000000
1275   2.3333333
1276   0.0000000
1277  10.0000000
1278  -2.3333333
1279  -0.3333333
1280  -4.3333333
1281   4.3333333
1282   0.3333333
1283  -7.3333333
1284   1.0000000
1285  -4.6666667
1286  -5.6666667
1287 -10.0000000
1288   2.0000000
1289   3.0000000
1290  -3.3333333
1291   6.3333333
1292   1.0000000
1293  -1.3333333
1294   4.6666667
1295  -2.0000000
1296  -5.0000000
1297   5.3333333
1298   3.6666667
1299   1.6666667
1300   1.3333333
1301   2.3333333
1302   8.3333333
1303   5.3333333
1304  -6.0000000
1305  -7.6666667
1306  -5.0000000
1307   5.6666667
1308  -1.0000000
1309  -1.6666667
1310   0.6666667
1311  -3.6666667
1312  -6.6666667
1313  -5.0000000
1314  -6.3333333
1315  -6.3333333
1316   0.6666667
1317   9.0000000
1318  -4.0000000
1319  -5.0000000
1320  -4.3333333
1321   3.6666667
1322  -0.3333333
1323   1.0000000
1324  -9.6666667
1325  -3.0000000
1326   4.6666667
1327   1.6666667
1328   1.6666667
1329  -6.3333333
1330  -3.0000000
1331  -3.6666667
1332  -4.3333333
1333  -3.6666667
1334  -1.0000000
1335  -7.3333333
1336  -8.3333333
1337   1.6666667
1338  -4.3333333
1339  -6.0000000
1340  -2.6666667
1341  -3.6666667
1342  -3.6666667
1343  -4.6666667
1344  -1.0000000
1345  -8.3333333
1346  -2.3333333
1347   2.3333333
1348  -2.3333333
1349   5.6666667
1350  -1.0000000
1351  -3.0000000
1352  -5.0000000
1353   0.6666667
1354  -5.3333333
1355   3.3333333
1356  -5.0000000
1357   2.6666667
1358  -9.3333333
1359   4.3333333
1360  -0.3333333
1361  -2.0000000
1362   1.0000000
1363  -1.0000000
1364  -2.0000000
1365  -4.0000000
1366  -2.6666667
1367  -1.3333333
1368   2.6666667
1369   3.0000000
1370  -4.3333333
1371   7.6666667
1372  -0.3333333
1373  -1.6666667
1374  -0.6666667
1375   0.0000000
1376  -3.0000000
1377  -1.3333333
1378  -7.3333333
1379   0.6666667
1380   8.6666667
1381  -2.0000000
1382   8.0000000
1383   5.0000000
1384  -4.0000000
1385   0.0000000
1386  -0.3333333
1387  -2.0000000
1388   0.0000000
1389   1.0000000
1390   3.3333333
1391 -10.0000000
1392   1.6666667
1393   2.3333333
1394  -3.6666667
1395  -5.0000000
1396   7.0000000
1397  -1.6666667
1398  -7.0000000
1399  -4.6666667
1400   0.6666667
1401  -3.6666667
1402   0.6666667
1403  -8.0000000
1404  -1.3333333
1405  -0.6666667
1406   0.6666667
1407   6.0000000
1408  -2.3333333
1409  -0.3333333
1410  -7.0000000
1411  -5.6666667
1412  -1.3333333
1413   6.0000000
1414  -0.3333333
1415   5.0000000
1416  -6.3333333
1417   4.3333333
1418  -5.6666667
1419  -9.0000000
1420   3.0000000
1421   4.3333333
1422   1.3333333
1423 -10.6666667
1424  -0.6666667
1425   4.6666667
1426  -2.0000000
1427   6.6666667
1428  -2.3333333
1429   0.6666667
1430   4.0000000
1431   7.6666667
1432  -3.6666667
1433   3.0000000
1434  -2.3333333
1435   0.0000000
1436  -0.6666667
1437   7.0000000
1438 -10.3333333
1439   4.0000000
1440  -1.6666667
1441   1.0000000
1442  -2.3333333
1443   6.6666667
1444  -4.6666667
1445   4.0000000
1446  -1.6666667
1447   5.0000000
1448  -1.0000000
1449  -4.0000000
1450  -0.3333333
1451  -7.6666667
1452   2.0000000
1453   0.3333333
1454   0.3333333
1455  -2.0000000
1456  -6.3333333
1457   5.3333333
1458  -4.3333333
1459   4.0000000
1460   3.6666667
1461  -1.3333333
1462  -8.3333333
1463   0.0000000
1464  -2.6666667
1465   5.6666667
1466  -0.6666667
1467   2.6666667
1468  -2.0000000
1469   0.3333333
1470   0.6666667
1471   3.0000000
1472  -6.0000000
1473   3.0000000
1474  -2.6666667
1475   1.3333333
1476   1.0000000
1477  12.0000000
1478  -0.3333333
1479   0.3333333
1480   0.3333333
1481  -2.0000000
1482  -2.6666667
1483   3.6666667
1484   2.3333333
1485   4.3333333
1486  -1.3333333
1487  -4.6666667
1488   6.3333333
1489   5.0000000
1490  -1.0000000
1491   0.3333333
1492   3.3333333
1493   4.6666667
1494   6.0000000
1495  -1.6666667
1496   3.3333333
1497  -4.3333333
1498  -1.6666667
1499   6.6666667
1500  -0.3333333
1501  -1.3333333
1502   1.3333333
1503   6.0000000
1504  -7.3333333
1505   1.3333333
1506  -1.6666667
1507   4.3333333
1508   4.3333333
1509  -4.3333333
1510  -2.0000000
1511   2.0000000
1512  -5.0000000
1513  -0.3333333
1514   3.0000000
1515   4.0000000
1516  -9.3333333
1517  -3.6666667
1518  -6.6666667
1519   8.3333333
1520   4.0000000
1521   3.0000000
1522   0.6666667
1523   1.0000000
1524   6.0000000
1525  -1.6666667
1526  -4.0000000
1527   2.0000000
1528   1.3333333
1529  11.3333333
1530  -1.6666667
1531  -9.0000000
1532   3.6666667
1533   2.3333333
1534   2.3333333
1535  -3.0000000
1536  -2.6666667
1537  -1.0000000
1538   9.3333333
1539   1.6666667
1540  -4.3333333
1541   3.3333333
1542  -6.3333333
1543  -2.3333333
1544  -2.3333333
1545  -5.3333333
1546  -4.0000000
1547   6.3333333
1548   0.3333333
1549   4.6666667
1550   1.3333333
1551   7.3333333
1552  -8.0000000
1553   5.6666667
1554   8.0000000
1555  -2.0000000
1556  -0.3333333
1557  -4.0000000
1558  -3.6666667
1559  -7.0000000
1560   0.6666667
1561  -3.3333333
1562   1.6666667
1563  -1.0000000
1564  -5.3333333
1565   4.3333333
1566  -7.0000000
1567   3.6666667
1568   0.3333333
1569   0.0000000
1570   3.6666667
1571   3.3333333
1572   8.0000000
1573  -6.6666667
1574  -8.0000000
1575  -3.3333333
1576  -3.0000000
1577   0.6666667
1578  -1.3333333
1579  -2.6666667
1580  -3.0000000
1581   1.6666667
1582  -1.0000000
1583  -4.6666667
1584  -0.3333333
1585   2.0000000
1586   0.6666667
1587   7.0000000
1588  -7.0000000
1589   4.6666667
1590   0.0000000
1591   0.3333333
1592   4.6666667
1593   5.3333333
1594   3.6666667
1595  -3.0000000
1596  -3.0000000
1597   8.6666667
1598  -1.6666667
1599   3.3333333
1600   3.3333333
1601   0.0000000
1602  -4.0000000
1603   3.0000000
1604   3.3333333
1605   1.6666667
1606  -6.6666667
1607  -2.6666667
1608   0.6666667
1609   2.0000000
1610  -4.3333333
1611   1.3333333
1612  -7.0000000
1613  -9.0000000
1614  -3.6666667
1615   1.6666667
1616  -1.0000000
1617   4.6666667
1618   1.3333333
1619  -2.0000000
1620   5.0000000
1621   6.6666667
1622   4.0000000
1623   8.6666667
1624   3.6666667
1625  -3.0000000
1626  -3.6666667
1627   8.3333333
1628  -5.3333333
1629   2.3333333
1630  -2.0000000
1631   2.3333333
1632  -3.0000000
1633  -0.3333333
1634  -0.6666667
1635  -5.0000000
1636   4.3333333
1637   2.6666667
1638  -0.3333333
1639  -3.0000000
1640  -6.3333333
1641   2.0000000
1642   2.3333333
1643  -2.6666667
1644   8.6666667
1645  -5.3333333
1646   8.3333333
1647   7.3333333
1648  10.3333333
1649  -5.3333333
1650   3.3333333
1651   6.0000000
1652   1.3333333
1653  -2.3333333
1654  -0.6666667
1655  -6.3333333
1656  -5.3333333
1657   5.3333333
1658   5.0000000
1659  -7.6666667
1660   8.3333333
1661  -2.6666667
1662  -1.0000000
1663  -1.3333333
1664   6.6666667
1665   3.3333333
1666   9.3333333
1667   4.0000000
1668  -5.3333333
1669  -2.6666667
1670  -4.3333333
1671   3.6666667
1672   1.3333333
1673   4.3333333
1674   7.6666667
1675  -2.3333333
1676  -4.6666667
1677  -2.0000000
1678  -7.0000000
1679  -2.3333333
1680   3.3333333
1681   6.0000000
1682   4.3333333
1683   1.0000000
1684  -2.6666667
1685   5.0000000
1686  -6.6666667
1687   2.0000000
1688 -10.6666667
1689  -0.6666667
1690   0.0000000
1691   2.3333333
1692  -1.6666667
1693  -1.3333333
1694   1.6666667
1695   1.3333333
1696  -2.3333333
1697  -2.3333333
1698   4.6666667
1699   2.0000000
1700   0.0000000
1701  -1.3333333
1702   3.0000000
1703   3.6666667
1704   6.6666667
1705  -1.6666667
1706   2.6666667
1707   9.0000000
1708  -4.0000000
1709   3.3333333
1710   6.0000000
1711   3.3333333
1712  -6.6666667
1713  -5.3333333
1714   1.0000000
1715  -2.6666667
1716   3.0000000
1717   0.3333333
1718   0.3333333
1719  -9.6666667
1720  -5.0000000
1721   4.0000000
1722  -2.6666667
1723   2.3333333
1724   2.0000000
1725   3.0000000
1726  -1.6666667
1727  -5.6666667
1728   1.3333333
1729  -4.0000000
1730   3.6666667
1731   1.6666667
1732   2.3333333
1733   6.3333333
1734   4.6666667
1735  -2.3333333
1736   4.3333333
1737   4.6666667
1738   4.3333333
1739   4.3333333
1740  -4.6666667
1741  -5.3333333
1742  -1.0000000
1743  -3.0000000
1744  -3.6666667
1745  -9.6666667
1746  -9.3333333
1747  -7.6666667
1748   8.6666667
1749  -3.6666667
1750   6.0000000
1751   4.6666667
1752   1.6666667
1753  -1.0000000
1754   2.3333333
1755   0.0000000
1756   3.6666667
1757   0.0000000
1758   4.3333333
1759  -2.0000000
1760  -4.3333333
1761  -2.3333333
1762   4.0000000
1763  -2.0000000
1764   6.3333333
1765   7.6666667
1766  -5.3333333
1767   4.6666667
1768   5.0000000
1769   0.3333333
1770   3.0000000
1771  -7.0000000
1772  -3.3333333
1773  -7.6666667
1774  -4.0000000
1775   4.3333333
1776  -6.3333333
1777   6.3333333
1778  -5.0000000
1779  -2.6666667
1780  -6.6666667
1781  -2.3333333
1782  -2.6666667
1783   2.6666667
1784   3.6666667
1785  -6.0000000
1786   3.3333333
1787  -5.3333333
1788  -1.0000000
1789  -9.6666667
1790  -1.0000000
1791  -1.3333333
1792  -0.6666667
1793  -3.3333333
1794  -7.3333333
1795  -2.3333333
1796   7.3333333
1797  -5.0000000
1798   6.6666667
1799 -11.0000000
1800   1.0000000
1801  -5.0000000
1802   6.3333333
1803   0.0000000
1804  -6.3333333
1805  -4.3333333
1806  -5.6666667
1807   1.3333333
1808   1.3333333
1809  -3.0000000
1810   0.0000000
1811   6.0000000
1812  -3.6666667
1813   2.0000000
1814   3.0000000
1815   8.0000000
1816   5.6666667
1817   5.0000000
1818  -5.0000000
1819   6.6666667
1820  -6.3333333
1821   0.6666667
1822   3.0000000
1823   1.3333333
1824   1.6666667
1825  -0.3333333
1826   2.3333333
1827   3.6666667
1828   4.0000000
1829   4.0000000
1830  -4.3333333
1831   3.3333333
1832  -5.3333333
1833  -8.3333333
1834  -2.3333333
1835   1.0000000
1836   0.0000000
1837  -9.6666667
1838   2.6666667
1839  11.0000000
1840   5.6666667
1841  -7.0000000
1842  -5.6666667
1843   9.3333333
1844   1.0000000
1845   5.0000000
1846  -2.6666667
1847   1.6666667
1848  -1.0000000
1849   1.6666667
1850   3.6666667
1851  -7.6666667
1852   1.0000000
1853   5.3333333
1854   5.3333333
1855   3.6666667
1856   2.3333333
1857   4.6666667
1858  -6.0000000
1859  -1.0000000
1860  -2.0000000
1861   2.3333333
1862   2.0000000
1863 -10.0000000
1864   1.6666667
1865  -4.6666667
1866   5.3333333
1867   8.0000000
1868  -2.0000000
1869  -2.0000000
1870   1.6666667
1871   0.0000000
1872  -0.3333333
1873   5.3333333
1874   0.3333333
1875   8.6666667
1876   5.0000000
1877   5.3333333
1878  -1.3333333
1879   1.3333333
1880  -1.0000000
1881   2.6666667
1882  -5.0000000
1883   3.0000000
1884   3.6666667
1885  -2.3333333
1886  -1.3333333
1887  -1.3333333
1888  -1.3333333
1889   2.3333333
1890  -0.6666667
1891   4.6666667
1892   5.0000000
1893   3.3333333
1894   4.0000000
1895   3.3333333
1896   3.3333333
1897   3.3333333
1898   2.3333333
1899   1.0000000
1900   4.3333333
1901   1.0000000
1902  -1.6666667
1903   3.6666667
1904  -6.3333333
1905  -5.3333333
1906  -4.0000000
1907   0.6666667
1908   0.6666667
1909  -4.6666667
1910   3.0000000
1911   4.6666667
1912   8.0000000
1913  -7.3333333
1914   4.0000000
1915  -8.0000000
1916  -2.0000000
1917   2.6666667
1918   3.6666667
1919   6.0000000
1920  -1.0000000
1921   3.0000000
1922   2.0000000
1923  -6.3333333
1924   7.6666667
1925   5.0000000
1926   2.3333333
1927  -4.0000000
1928   6.0000000
1929   2.6666667
1930  -2.0000000
1931  -3.0000000
1932  -5.0000000
1933  -3.0000000
1934  -5.6666667
1935   6.3333333
1936  -2.6666667
1937  -1.3333333
1938   0.6666667
1939   5.0000000
1940   8.3333333
1941   3.3333333
1942   4.3333333
1943  -1.0000000
1944   4.0000000
1945   1.6666667
1946   4.6666667
1947   3.3333333
1948   4.3333333
1949   1.0000000
1950  -1.0000000
1951   9.0000000
1952  -2.3333333
1953  -6.3333333
1954  11.0000000
1955   2.6666667
1956   5.0000000
1957  -0.6666667
1958  -2.6666667
1959   4.3333333
1960  -9.0000000
1961  -3.3333333
1962  -1.6666667
1963   5.0000000
1964  -0.6666667
1965  -8.0000000
1966   3.3333333
1967  -1.0000000
1968   0.0000000
1969  11.3333333
1970   3.0000000
1971  -4.0000000
1972  10.3333333
1973   3.6666667
1974   1.6666667
1975   3.6666667
1976   1.3333333
1977  -3.3333333
1978   3.3333333
1979   4.6666667
1980  -2.6666667
1981  -1.6666667
1982  -4.6666667
1983   1.3333333
1984   6.3333333
1985  -2.6666667
1986   1.0000000
1987  -1.6666667
1988   0.0000000
1989  -2.6666667
1990  -8.6666667
1991   8.6666667
1992  -7.6666667
1993  -6.0000000
1994   1.6666667
1995  -2.0000000
1996   5.0000000
1997   0.0000000
1998   0.6666667
1999  -3.6666667
2000   3.0000000
2001   1.6666667
2002   2.6666667
2003  -4.3333333
2004   6.0000000
2005  -5.3333333
2006   8.3333333
2007   3.3333333
2008   5.6666667
2009  -3.3333333
2010   5.6666667
2011   1.0000000
2012   2.3333333
2013 -14.3333333
2014  -9.6666667
2015   3.3333333
2016  -3.0000000
2017  -6.0000000
2018  -9.0000000
2019   5.6666667
2020  -2.3333333
2021  -3.3333333
2022  -0.6666667
2023   6.3333333
2024  -8.6666667
2025  -3.6666667
2026   2.6666667
2027   5.3333333
2028  -0.6666667
2029   5.0000000
2030   3.3333333
2031  -8.3333333
2032  -3.6666667
2033   5.6666667
2034   1.0000000
2035  12.0000000
2036  -2.0000000
2037   5.0000000
2038   0.6666667
2039  -2.6666667
2040  -3.3333333
2041  -2.3333333
2042   2.0000000
2043  -4.6666667
2044  -1.0000000
2045  -1.0000000
2046   6.6666667
2047   9.6666667
2048   0.3333333
2049   3.3333333
2050   4.6666667
2051   1.6666667
2052   7.3333333
2053   0.0000000
2054  -1.0000000
2055   3.3333333
2056  -2.3333333
2057  -4.3333333
2058   1.0000000
2059  -1.3333333
2060  -1.0000000
2061   9.3333333
2062   4.0000000
2063   2.3333333
2064  12.3333333
2065  -0.6666667
2066   1.0000000
2067   6.0000000
2068   4.3333333
2069  -6.3333333
2070   4.0000000
2071   3.6666667
2072  -3.6666667
2073  -2.3333333
2074   3.6666667
2075  -2.3333333
2076   3.3333333
2077  -5.6666667
2078  -2.6666667
2079  -3.0000000
2080  -0.3333333
2081   2.6666667
2082  -8.0000000
2083  -7.6666667
2084   0.0000000
2085   0.6666667
2086   2.3333333
2087  -7.3333333
2088 -11.6666667
2089  -1.0000000
2090   0.3333333
2091  -1.0000000
2092   6.0000000
2093  11.0000000
2094  -2.0000000
2095   6.6666667
2096  -4.6666667
2097  -4.3333333
2098   5.3333333
2099   6.0000000
2100   4.0000000
2101   2.0000000
2102   3.3333333
2103   5.0000000
2104  -6.6666667
2105   1.0000000
2106  -2.6666667
2107   1.3333333
2108  -2.3333333
2109  -2.6666667
2110  -5.6666667
2111   0.0000000
2112   3.0000000
2113  -2.0000000
2114   3.3333333
2115   6.0000000
2116  -6.6666667
2117   1.3333333
2118   5.6666667
2119   4.3333333
2120   4.0000000
2121  -1.6666667
2122   1.3333333
2123   3.0000000
2124  12.6666667
2125  -1.3333333
2126   5.3333333
2127   1.3333333
2128  -8.0000000
2129  -2.3333333
2130  -0.3333333
2131  -0.3333333
2132  -2.3333333
2133   1.0000000
2134   7.3333333
2135   0.6666667
2136   6.0000000
2137   6.0000000
2138  -5.0000000
2139  -3.6666667
2140   0.0000000
2141  -4.3333333
2142   0.0000000
2143   5.3333333
2144   4.0000000
2145  -6.3333333
2146   3.0000000
2147   3.6666667
2148   6.6666667
2149  -0.3333333
2150  -6.3333333
2151   3.6666667
2152  -4.3333333
2153   8.3333333
2154   0.0000000
2155  -4.3333333
2156   5.3333333
2157   3.0000000
2158  -7.0000000
2159  -2.3333333
2160  -8.0000000
2161  -2.0000000
2162  -6.6666667
2163  -5.0000000
2164   3.6666667
2165  -4.6666667
2166  -0.3333333
2167  -3.6666667
2168  -2.6666667
2169  -1.0000000
2170   6.6666667
2171   4.6666667
2172   4.6666667
2173   1.0000000
2174   3.6666667
2175  -8.6666667
2176   0.6666667
2177   2.3333333
2178   6.0000000
2179  -4.6666667
2180   4.0000000
2181   5.6666667
2182   3.6666667
2183  -6.3333333
2184   0.3333333
2185   2.3333333
2186 -13.3333333
2187   4.0000000
2188  -3.3333333
2189   0.0000000
2190  -2.6666667
2191   2.0000000
2192   7.6666667
2193   1.0000000
2194   4.6666667
2195   0.6666667
2196  -0.6666667
2197   6.3333333
2198   1.3333333
2199  -6.6666667
2200  -5.6666667
2201  -4.6666667
2202  -0.3333333
2203   6.3333333
2204  -4.6666667
2205   3.0000000
2206  -1.6666667
2207 -11.3333333
2208  -6.6666667
2209  -4.3333333
2210  -5.3333333
2211   2.0000000
2212   7.6666667
2213   3.0000000
2214 -11.0000000
2215  -0.3333333
2216  -3.0000000
2217   0.3333333
2218   8.0000000
2219  -7.3333333
2220   2.6666667
2221   2.3333333
2222   8.3333333
2223  -5.6666667
2224   2.3333333
2225  -3.6666667
2226  -5.6666667
2227  -0.3333333
2228   1.6666667
2229   2.0000000
2230  -1.3333333
2231   2.0000000
2232  -1.6666667
2233   6.0000000
2234  -0.3333333
2235   0.0000000
2236   4.3333333
2237  -5.3333333
2238  -0.3333333
2239   7.0000000
2240   2.3333333
2241   7.3333333
2242   0.3333333
2243   1.6666667
2244   1.0000000
2245  -2.6666667
2246   0.3333333
2247   1.6666667
2248   2.0000000
2249  -9.3333333
2250   8.3333333
2251 -11.3333333
2252   0.0000000
2253   1.0000000
2254  -3.3333333
2255   2.3333333
2256   4.0000000
2257   3.0000000
2258  -4.6666667
2259   2.6666667
2260  -0.3333333
2261   3.0000000
2262   4.0000000
2263  -5.3333333
2264   8.6666667
2265   0.6666667
2266   0.0000000
2267   2.3333333
2268   2.0000000
2269  -7.6666667
2270   5.6666667
2271  -5.0000000
2272  -1.6666667
2273  -4.0000000
2274 -10.0000000
2275   2.0000000
2276   0.6666667
2277   3.6666667
2278  -3.6666667
2279  -8.0000000
2280   0.6666667
2281   0.3333333
2282  -3.0000000
2283  -8.3333333
2284   3.3333333
2285   6.3333333
2286   3.6666667
2287  -5.3333333
2288  -6.3333333
2289   6.0000000
2290   6.0000000
2291   5.3333333
2292   1.3333333
2293   4.0000000
2294   5.0000000
2295  -4.0000000
2296   2.3333333
2297  -1.0000000
2298  -4.0000000
2299  -2.6666667
2300   1.0000000
2301  -3.6666667
2302  -4.0000000
2303   4.6666667
2304  -0.6666667
2305   1.0000000
2306   6.0000000
2307  -4.0000000
2308   2.3333333
2309   2.0000000
2310   3.3333333
2311   1.0000000
2312  -0.6666667
2313  -5.0000000
2314   1.3333333
2315   3.6666667
2316   4.3333333
2317  -5.0000000
2318  -0.6666667
2319   4.3333333
2320   4.6666667
2321  -1.3333333
2322   0.3333333
2323  -1.0000000
2324   9.3333333
2325   1.0000000
2326  -7.0000000
2327  -6.0000000
2328  -3.0000000
2329   6.3333333
2330   0.6666667
2331  -3.6666667
2332   7.6666667
2333   2.0000000
2334  -0.6666667
2335  -7.0000000
2336  -5.3333333
2337   0.6666667
2338   3.0000000
2339  -5.6666667
2340   3.0000000
2341  -1.0000000
2342   2.3333333
2343   0.6666667
2344  -1.0000000
2345   1.3333333
2346   0.6666667
2347   5.0000000
2348   2.6666667
2349   5.0000000
2350   4.6666667
2351   6.0000000
2352  -0.6666667
2353  -3.3333333
2354  -3.3333333
2355  -1.0000000
2356  -7.0000000
2357  -4.3333333
2358  -4.0000000
2359   3.6666667
2360   9.3333333
2361   1.0000000
2362  -0.3333333
2363   4.0000000
2364  -4.0000000
2365  -6.6666667
2366   1.3333333
2367   1.3333333
2368  -1.0000000
2369   3.6666667
2370   1.6666667
2371  -9.0000000
2372   6.6666667
2373   1.6666667
2374  -4.3333333
2375   3.3333333
2376   3.3333333
2377   3.0000000
2378   7.6666667
2379   1.3333333
2380  -1.6666667
2381  -6.0000000
2382   6.3333333
2383   5.6666667
2384  -6.0000000
2385  10.6666667
2386  -8.0000000
2387  -0.6666667
2388  -4.3333333
2389  -1.0000000
2390  -4.6666667
2391  -3.6666667
2392  -3.0000000
2393  -4.6666667
2394  -3.3333333
2395  -4.3333333
2396  -6.3333333
2397   1.0000000
2398   3.6666667
2399   7.6666667
2400   1.0000000
2401  -2.6666667
2402   1.6666667
2403   6.0000000
2404   3.6666667
2405   6.0000000
2406  -7.0000000
2407  -0.6666667
2408   5.0000000
2409  -3.0000000
2410   6.0000000
2411  -3.0000000
2412   7.0000000
2413   6.6666667
2414  -2.0000000
2415  -1.3333333
2416   4.3333333
2417  -4.0000000
2418  -8.3333333
2419   1.6666667
2420   1.0000000
2421   3.6666667
2422   5.6666667
2423  -1.0000000
2424  -1.6666667
2425  -5.0000000
2426   4.3333333
2427  -0.6666667
2428   1.0000000
2429   4.3333333
2430  11.3333333
2431   0.6666667
2432  -3.6666667
2433   5.3333333
2434   2.3333333
2435  -6.3333333
2436   7.0000000
2437   4.6666667
2438   1.3333333
2439   1.6666667
2440  -4.3333333
2441   6.0000000
2442  -3.0000000
2443   5.6666667
2444   7.3333333
2445   2.0000000
2446  -5.3333333
2447   5.0000000
2448   6.6666667
2449   5.0000000
2450   4.0000000
2451  -3.0000000
2452   5.3333333
2453  -4.3333333
2454 -10.0000000
2455   3.3333333
2456   1.6666667
2457   2.6666667
2458  -3.0000000
2459   1.3333333
2460  -7.0000000
2461   6.3333333
2462   2.6666667
2463  12.0000000
2464   3.6666667
2465  -4.6666667
2466   3.6666667
2467   5.0000000
2468   0.0000000
2469  -7.0000000
2470   2.0000000
2471   3.3333333
2472   2.0000000
2473   4.3333333
2474   0.3333333
2475  -3.3333333
2476   5.3333333
2477   2.6666667
2478   0.3333333
2479  -4.6666667
2480   1.6666667
2481  -5.3333333
2482  -0.3333333
2483  -2.3333333
2484   9.6666667
2485   4.6666667
2486   1.6666667
2487  -3.0000000
2488   3.6666667
2489   1.0000000
2490   3.0000000
2491  -4.0000000
2492  -0.3333333
2493   5.6666667
2494   5.3333333
2495   4.0000000
2496  -2.3333333
2497   5.0000000
2498  -4.0000000
2499  -3.3333333
2500  -3.0000000
2501  -0.3333333
2502  12.3333333
2503   2.6666667
2504   4.0000000
2505  -1.3333333
2506   2.0000000
2507   1.6666667
2508   1.0000000
2509   0.0000000
2510  -1.6666667
2511   0.0000000
2512  -2.6666667
2513  -4.0000000
2514   1.6666667
2515  -5.3333333
2516   2.3333333
2517  -6.3333333
2518  -7.0000000
2519  -5.0000000
2520  -2.0000000
2521  -3.6666667
2522  -3.3333333
2523   1.0000000
2524   1.3333333
2525  -0.3333333
2526  -7.3333333
2527   0.0000000
2528   0.6666667
2529  -3.3333333
2530  -2.3333333
2531   2.6666667
2532  -4.0000000
2533   2.6666667
2534  -3.6666667
2535   2.3333333
2536   1.6666667
2537   4.3333333
2538   1.0000000
2539  -1.6666667
2540  -0.3333333
2541  -4.6666667
2542   0.0000000
2543  -0.3333333
2544  -5.6666667
2545   5.6666667
2546   1.3333333
2547   7.3333333
2548  11.0000000
2549   0.0000000
2550   6.3333333
2551  -2.0000000
2552  -3.3333333
2553  -3.6666667
2554   5.6666667
2555   5.0000000
2556   1.3333333
2557  -4.3333333
2558   0.0000000
2559  -0.6666667
2560  -2.6666667
2561   1.6666667
2562 -11.0000000
2563   7.6666667
2564   2.6666667
2565  -6.6666667
2566   1.3333333
2567   4.6666667
2568   3.6666667
2569   3.0000000
2570  -0.3333333
2571   0.3333333
2572  -3.0000000
2573   2.6666667
2574   1.3333333
2575   5.0000000
2576   0.0000000
2577  -6.3333333
2578  -4.6666667
2579 -13.3333333
2580  -2.6666667
2581  -0.6666667
2582   4.0000000
2583  -1.0000000
2584   1.0000000
2585   0.0000000
2586  -8.0000000
2587   1.3333333
2588   5.3333333
2589  -4.6666667
2590  -2.0000000
2591  -3.3333333
2592   6.6666667
2593   5.3333333
2594   2.3333333
2595   2.3333333
2596   3.6666667
2597  -8.6666667
2598   0.6666667
2599   9.6666667
2600   6.3333333
2601  -1.6666667
2602  -4.0000000
2603   5.3333333
2604   1.0000000
2605  -2.0000000
2606  -1.0000000
2607  -6.6666667
2608  -2.3333333
2609  -1.6666667
2610  -3.3333333
2611  -0.6666667
2612   3.3333333
2613  -3.3333333
2614   6.0000000
2615   2.0000000
2616   0.3333333
2617   1.3333333
2618  -8.0000000
2619  -1.6666667
2620  -2.3333333
2621  -6.3333333
2622  -0.3333333
2623   0.3333333
2624   4.0000000
2625   3.0000000
2626  -4.3333333
2627  -7.6666667
2628  -1.3333333
2629   2.0000000
2630  -0.3333333
2631   4.0000000
2632   2.0000000
2633   6.6666667
2634  -5.3333333
2635   4.0000000
2636  -3.3333333
2637  -6.6666667
2638   0.3333333
2639   2.0000000
2640  -1.0000000
2641   7.3333333
2642  -5.0000000
2643   7.6666667
2644  -4.0000000
2645   4.3333333
2646   6.0000000
2647   5.6666667
2648  -2.3333333
2649  -5.0000000
2650   3.0000000
2651   1.3333333
2652   2.3333333
2653  -0.6666667
2654  10.0000000
2655   0.0000000
2656   2.6666667
2657   5.0000000
2658   1.6666667
2659   4.0000000
2660  -0.3333333
2661  -2.3333333
2662   5.0000000
2663   2.6666667
2664   5.3333333
2665   5.6666667
2666  -9.3333333
2667  -3.0000000
2668   5.0000000
2669   5.3333333
2670  -2.3333333
2671   1.0000000
2672   1.3333333
2673   2.0000000
2674  -8.3333333
2675   4.3333333
2676  -3.3333333
2677  -1.0000000
2678   5.3333333
2679  -1.0000000
2680  -1.6666667
2681  -5.6666667
2682  -3.6666667
2683   3.6666667
2684  11.0000000
2685   1.3333333
2686  -5.6666667
2687   3.3333333
2688   4.0000000
2689   0.6666667
2690  -1.6666667
2691  -5.3333333
2692   3.3333333
2693  -3.6666667
2694   1.0000000
2695   7.3333333
2696   2.3333333
2697  -2.0000000
2698  -2.0000000
2699   1.3333333
2700   3.6666667
2701  -6.3333333
2702   3.3333333
2703   0.3333333
2704   2.0000000
2705  -4.0000000
2706   8.3333333
2707  -0.3333333
2708   1.6666667
2709  -2.3333333
2710  -1.0000000
2711   3.0000000
2712  -1.0000000
2713   5.6666667
2714   0.0000000
2715   1.3333333
2716   1.6666667
2717   3.6666667
2718  -4.3333333
2719   2.6666667
2720  -0.3333333
2721   0.0000000
2722   0.6666667
2723   5.6666667
2724   8.6666667
2725  -0.3333333
2726   2.3333333
2727   5.3333333
2728  -7.3333333
2729  -0.6666667
2730  -4.0000000
2731   2.0000000
2732   2.3333333
2733  -3.0000000
2734   6.0000000
2735   4.6666667
2736  -6.3333333
2737   1.3333333
2738   3.3333333
2739   1.0000000
2740   5.6666667
2741  -4.3333333
2742   4.6666667
2743   3.0000000
2744  -2.6666667
2745   1.6666667
2746   7.0000000
2747   1.3333333
2748   2.6666667
2749   1.0000000
2750   6.0000000
2751   1.3333333
2752   4.6666667
2753   1.6666667
2754 -10.6666667
2755   3.6666667
2756   5.0000000
2757  -5.6666667
2758   3.6666667
2759  -3.3333333
2760  -4.0000000
2761  -8.0000000
2762   0.6666667
2763  -8.3333333
2764  -0.3333333
2765  -3.6666667
2766  -9.0000000
2767  -7.3333333
2768   0.3333333
2769  -4.6666667
2770  -2.0000000
2771  -1.3333333
2772  -5.6666667
2773   1.6666667
2774  -1.3333333
2775   4.6666667
2776   2.6666667
2777  -9.0000000
2778   3.3333333
2779  -6.3333333
2780   9.0000000
2781  -7.0000000
2782   4.0000000
2783  -4.6666667
2784   5.6666667
2785   4.0000000
2786   1.6666667
2787   2.0000000
2788  -7.6666667
2789   5.6666667
2790  -4.3333333
2791  -6.0000000
2792  10.3333333
2793  -7.0000000
2794   5.3333333
2795  -5.6666667
2796   1.3333333
2797   1.3333333
2798  -0.3333333
2799   7.3333333
2800  -1.0000000
2801  -1.6666667
2802   6.0000000
2803  -0.6666667
2804  -5.3333333
2805  -2.6666667
2806   4.6666667
2807  -3.0000000
2808  -5.3333333
2809   4.6666667
2810  -1.6666667
2811   6.3333333
2812   2.6666667
2813  -3.3333333
2814  -5.3333333
2815  -7.6666667
2816   1.0000000
2817  -3.6666667
2818  -2.0000000
2819  -1.3333333
2820   2.3333333
2821   0.0000000
2822  -7.6666667
2823  12.3333333
2824   0.3333333
2825   0.3333333
2826   3.3333333
2827   2.0000000
2828   7.6666667
2829   1.0000000
2830  -7.0000000
2831   4.3333333
2832  -5.0000000
2833   1.6666667
2834  -2.0000000
2835   5.6666667
2836   2.3333333
2837  -3.6666667
2838   7.3333333
2839  -1.0000000
2840  -1.3333333
2841  -6.6666667
2842  -2.6666667
2843  -1.0000000
2844  -2.3333333
2845  -5.0000000
2846   6.3333333
2847  -1.3333333
2848  -5.3333333
2849   8.3333333
2850  -2.0000000
2851   3.0000000
2852   1.3333333
2853   1.0000000
2854   2.3333333
2855   0.6666667
2856   4.6666667
2857  -6.3333333
2858   4.3333333
2859  -2.3333333
2860   5.0000000
2861   2.0000000
2862   3.0000000
2863   1.3333333
2864  -5.3333333
2865  -6.0000000
2866   1.0000000
2867  -3.6666667
2868  -0.6666667
2869   4.0000000
2870   1.0000000
2871   1.0000000
2872  -8.6666667
2873  -4.3333333
2874  -9.3333333
2875   5.6666667
2876  10.6666667
2877   2.3333333
2878   8.3333333
2879   3.0000000
2880   2.6666667
2881  -5.0000000
2882   4.6666667
2883  -3.3333333
2884  -1.3333333
2885  -0.6666667
2886  -2.0000000
2887  -4.0000000
2888  -1.3333333
2889  -7.6666667
2890   2.3333333
2891  -7.0000000
2892   1.6666667
2893  -5.3333333
2894  -3.6666667
2895   6.0000000
2896  -3.0000000
2897   7.6666667
2898   4.3333333
2899   3.6666667
2900  10.0000000
2901   2.0000000
2902  -4.3333333
2903   0.0000000
2904  -3.6666667
2905  -0.6666667
2906  -4.3333333
2907   6.6666667
2908  -0.3333333
2909  -2.3333333
2910   2.3333333
2911   9.6666667
2912   1.3333333
2913   0.6666667
2914 -10.3333333
2915   2.6666667
2916   2.0000000
2917   1.0000000
2918   1.3333333
2919  -8.3333333
2920  -0.6666667
2921   5.6666667
2922   0.0000000
2923   8.6666667
2924   4.0000000
2925  -1.3333333
2926  -2.3333333
2927  -9.3333333
2928  -8.6666667
2929  -3.3333333
2930  -2.0000000
2931  -3.6666667
2932   5.0000000
2933  -5.3333333
2934   3.0000000
2935   9.0000000
2936  -6.0000000
2937   8.6666667
2938   7.0000000
2939   6.0000000
2940   3.6666667
2941   7.0000000
2942   2.6666667
2943  -4.0000000
2944  -1.3333333
2945   6.0000000
2946  -5.3333333
2947  -1.3333333
2948   1.0000000
2949   1.0000000
2950   3.6666667
2951  -5.0000000
2952  -1.6666667
2953   1.6666667
2954  -1.0000000
2955   3.0000000
2956   7.3333333
2957   5.0000000
2958   0.3333333
2959   0.6666667
2960   4.0000000
2961   0.3333333
2962   0.3333333
2963   6.6666667
2964   5.0000000
2965  -1.6666667
2966   5.6666667
2967  -1.3333333
2968  -2.6666667
2969   8.0000000
2970   3.0000000
2971   8.0000000
2972   3.3333333
2973   3.6666667
2974  -0.3333333
2975   0.6666667
2976   2.0000000
2977   6.6666667
2978  -2.0000000
2979   9.0000000
2980  -7.6666667
2981   2.6666667
2982  -7.3333333
2983   3.6666667
2984   1.6666667
2985  -3.6666667
2986   4.0000000
2987   1.3333333
2988  -3.6666667
2989  -6.0000000
2990   1.3333333
2991   6.3333333
2992   3.6666667
2993  -1.6666667
2994   4.3333333
2995   0.6666667
2996  -6.3333333
2997   4.6666667
2998   1.3333333
2999  -1.6666667
3000   7.6666667
3001   3.6666667
3002   2.0000000
3003   1.3333333
3004   4.3333333
3005   5.3333333
3006   0.0000000
3007   7.6666667
3008   5.3333333
3009  -2.0000000
3010  -0.6666667
3011  10.0000000
3012  -3.3333333
3013  -0.6666667
3014   3.0000000
3015  -4.6666667
3016   2.0000000
3017  -3.3333333
3018   2.3333333
3019  -0.3333333
3020   3.6666667
3021  -3.0000000
3022   1.6666667
3023  -2.0000000
3024   7.3333333
3025   4.6666667
3026  -1.3333333
3027   5.3333333
3028  -3.6666667
3029  -0.3333333
3030   3.6666667
3031  -4.3333333
3032  -2.3333333
3033  -1.3333333
3034   4.3333333
3035   6.0000000
3036  -1.0000000
3037  -5.6666667
3038  -4.6666667
3039  10.0000000
3040   0.0000000
3041   0.6666667
3042  -4.0000000
3043   3.3333333
3044   8.0000000
3045  -5.6666667
3046  10.3333333
3047  -7.6666667
3048  -1.3333333
3049  -3.0000000
3050   6.0000000
3051  -2.0000000
3052   2.3333333
3053   4.3333333
3054  -4.3333333
3055   4.6666667
3056   1.3333333
3057  -3.0000000
3058  10.0000000
3059   1.3333333
3060  -4.6666667
3061  -0.6666667
3062  -0.6666667
3063  -2.6666667
3064  -4.3333333
3065   1.6666667
3066  -3.0000000
3067  -1.0000000
3068   3.6666667
3069   6.3333333
3070   7.6666667
3071  -1.6666667
3072   4.3333333
3073  -5.0000000
3074   5.6666667
3075   0.0000000
3076   4.3333333
3077   1.3333333
3078  -1.0000000
3079  -6.3333333
3080  -4.3333333
3081  -4.6666667
3082   6.6666667
3083   1.3333333
3084   9.0000000
3085   5.0000000
3086  -6.0000000
3087   4.0000000
3088  -3.3333333
3089   5.0000000
3090  -0.6666667
3091   2.6666667
3092  -5.0000000
3093  -2.0000000
3094  10.0000000
3095   4.3333333
3096   1.6666667
3097  -3.6666667
3098   3.6666667
3099   2.6666667
3100  -3.0000000
3101   2.6666667
3102   5.6666667
3103   3.3333333
3104  -6.3333333
3105  -0.3333333
3106  -5.0000000
3107   4.3333333
3108   9.6666667
3109   6.3333333
3110   2.0000000
3111   3.3333333
3112  -4.6666667
3113   2.6666667
3114   1.3333333
3115   4.0000000
3116  -2.0000000
3117  -2.6666667
3118  -9.6666667
3119  -1.3333333
3120  -1.3333333
3121  -2.0000000
3122   1.3333333
3123  -1.6666667
3124   6.6666667
3125  -0.6666667
3126  -7.0000000
3127   7.3333333
3128   7.0000000
3129   3.6666667
3130   7.6666667
3131   7.0000000
3132   1.3333333
3133   5.3333333
3134  -2.3333333
3135  -4.3333333
3136   5.0000000
3137  -7.6666667
3138  -0.6666667
3139   2.0000000
3140  -2.0000000
3141  -3.0000000
3142   3.3333333
3143   0.6666667
3144  -0.6666667
3145  10.0000000
3146   3.0000000
3147   1.0000000
3148   1.3333333
3149  -5.0000000
3150   1.3333333
3151  -4.3333333
3152  -5.3333333
3153  -0.6666667
3154   5.0000000
3155   6.3333333
3156   7.0000000
3157   4.6666667
3158   0.3333333
3159   5.6666667
3160   5.0000000
3161   3.6666667
3162  -1.6666667
3163   0.3333333
3164   4.3333333
3165   2.0000000
3166  -3.3333333
3167  -2.6666667
3168  -0.6666667
3169   3.3333333
3170   4.6666667
3171  -1.6666667
3172   4.6666667
3173  -6.0000000
3174   0.0000000
3175   8.6666667
3176  -1.3333333
3177   0.6666667
3178  -5.6666667
3179  -1.3333333
3180   0.0000000
3181   3.3333333
3182   2.6666667
3183   1.3333333
3184  -3.6666667
3185   2.0000000
3186  11.0000000
3187  -2.0000000
3188   0.6666667
3189   4.6666667
3190   5.3333333
3191  -1.3333333
3192   2.3333333
3193  -2.6666667
3194  -2.0000000
3195   6.6666667
3196  -1.3333333
3197   8.0000000
3198  -1.0000000
3199  -6.0000000
3200  -1.3333333
3201  -0.6666667
3202   0.6666667
3203   1.0000000
3204  -3.6666667
3205   0.3333333
3206   3.3333333
3207   6.0000000
3208   2.3333333
3209   1.6666667
3210  -3.3333333
3211  -7.3333333
3212  -2.6666667
3213  -9.0000000
3214   9.3333333
3215   2.6666667
3216   0.6666667
3217  -5.3333333
3218  -5.6666667
3219   2.3333333
3220  -1.3333333
3221   3.3333333
3222  -4.3333333
3223   1.6666667
3224  -5.0000000
3225   0.6666667
3226   0.6666667
3227  -8.0000000
3228   7.6666667
3229  -2.3333333
3230  -6.0000000
3231  -2.0000000
3232  -2.3333333
3233  -4.3333333
3234   9.6666667
3235   6.6666667
3236  -1.0000000
3237   0.3333333
3238   1.6666667
3239  -0.6666667
3240  -5.0000000
3241  -4.6666667
3242   5.0000000
3243  -1.0000000
3244   8.0000000
3245  -7.6666667
3246   1.3333333
3247  -7.6666667
3248  -0.6666667
3249  -2.3333333
3250   4.0000000
3251  -4.3333333
3252   6.0000000
3253  -2.3333333
3254  -3.0000000
3255 -12.3333333
3256  -4.0000000
3257   2.3333333
3258   2.0000000
3259   5.6666667
3260   5.3333333
3261   3.6666667
3262  -2.0000000
3263  -8.0000000
3264   2.3333333
3265   5.0000000
3266   0.0000000
3267   6.0000000
3268   2.6666667
3269   1.6666667
3270  -6.3333333
3271  -0.3333333
3272  -3.3333333
3273  -3.6666667
3274   0.6666667
3275   5.3333333
3276   0.0000000
3277   1.3333333
3278  -5.3333333
3279  -2.0000000
3280   2.0000000
3281 -11.0000000
3282   7.3333333
3283   5.6666667
3284  -4.3333333
3285   3.0000000
3286   2.6666667
3287  12.3333333
3288  -3.3333333
3289   0.6666667
3290   6.0000000
3291   0.3333333
3292   0.0000000
3293 -11.3333333
3294   3.0000000
3295  -0.3333333
3296  -1.3333333
3297  -3.6666667
3298   4.3333333
3299   5.0000000
3300   1.0000000
3301  -3.0000000
3302   4.3333333
3303  -6.6666667
3304   0.0000000
3305  -5.6666667
3306  10.0000000
3307  -0.3333333
3308  -0.3333333
3309  -1.0000000
3310   2.0000000
3311   5.0000000
3312  -2.6666667
3313  -7.3333333
3314  -0.3333333
3315  -7.6666667
3316   3.6666667
3317  -2.6666667
3318 -11.0000000
3319   3.0000000
3320   4.6666667
3321  -5.6666667
3322   7.0000000
3323   0.0000000
3324   5.0000000
3325   3.6666667
3326  -5.6666667
3327  -0.6666667
3328   3.3333333
3329   6.3333333
3330  -8.3333333
3331  -0.6666667
3332  -3.0000000
3333   2.6666667
3334  -1.6666667
3335   6.3333333
3336   1.6666667
3337   9.0000000
3338  -1.6666667
3339  -3.3333333
3340   4.0000000
3341   3.3333333
3342  -3.3333333
3343  -1.0000000
3344   3.0000000
3345  -2.6666667
3346   0.0000000
3347  -0.3333333
3348   0.3333333
3349  -4.6666667
3350  -0.6666667
3351   0.0000000
3352  -4.6666667
3353   0.6666667
3354  -2.3333333
3355  -3.6666667
3356   5.0000000
3357   5.3333333
3358   4.6666667
3359   7.6666667
3360   2.6666667
3361  -1.0000000
3362   4.6666667
3363  -2.6666667
3364  -4.0000000
3365   9.0000000
3366   0.3333333
3367   2.0000000
3368   8.6666667
3369  -0.3333333
3370  -0.6666667
3371   7.3333333
3372  -0.6666667
3373  -9.0000000
3374   3.0000000
3375   7.3333333
3376  -8.6666667
3377  -0.6666667
3378  -0.6666667
3379  -4.6666667
3380  -2.0000000
3381   0.6666667
3382   1.0000000
3383  -0.3333333
3384   3.3333333
3385  -0.6666667
3386   0.6666667
3387   3.3333333
3388   2.0000000
3389   2.6666667
3390   3.6666667
3391  -3.6666667
3392   2.0000000
3393   3.3333333
3394  -3.3333333
3395  -3.0000000
3396   5.3333333
3397  -5.0000000
3398  -7.6666667
3399   6.3333333
3400  -5.0000000
3401   2.0000000
3402   8.0000000
3403   0.6666667
3404  -7.3333333
3405   5.3333333
3406   1.6666667
3407   0.0000000
3408  -0.6666667
3409   3.0000000
3410  -7.3333333
3411  -2.6666667
3412  -5.0000000
3413   0.0000000
3414   1.3333333
3415  -5.0000000
3416   4.0000000
3417  -2.3333333
3418  -0.3333333
3419   4.6666667
3420  -7.0000000
3421  -3.3333333
3422   6.3333333
3423   0.3333333
3424  -5.0000000
3425  -0.6666667
3426  -1.6666667
3427   3.0000000
3428   8.0000000
3429  -5.0000000
3430   8.0000000
3431   4.3333333
3432  -1.6666667
3433  -5.3333333
3434  -2.3333333
3435   3.0000000
3436   6.3333333
3437   6.0000000
3438  -1.3333333
3439   4.3333333
3440   2.6666667
3441  -2.3333333
3442   2.3333333
3443  -4.3333333
3444  -5.6666667
3445  -4.0000000
3446  -3.6666667
3447   3.0000000
3448   0.0000000
3449   6.0000000
3450  -1.6666667
3451   1.3333333
3452  -4.3333333
3453   5.6666667
3454  -1.0000000
3455   3.0000000
3456   2.3333333
3457  -8.6666667
3458  -5.6666667
3459  -0.6666667
3460  -2.3333333
3461   5.6666667
3462  -9.6666667
3463  -0.6666667
3464   3.0000000
3465   5.6666667
3466   0.3333333
3467   9.6666667
3468   2.6666667
3469   4.3333333
3470  -7.3333333
3471  -3.6666667
3472  -5.6666667
3473   3.6666667
3474  -0.6666667
3475  -4.6666667
3476  -6.0000000
3477   0.0000000
3478  -1.3333333
3479  -6.3333333
3480   9.3333333
3481  -5.3333333
3482   8.3333333
3483  -2.6666667
3484  -0.6666667
3485  -4.3333333
3486   4.6666667
3487   8.3333333
3488   1.3333333
3489  -3.3333333
3490   4.6666667
3491   3.6666667
3492   5.3333333
3493  -2.6666667
3494   0.6666667
3495  -1.3333333
3496   4.3333333
3497  -8.0000000
3498  -7.3333333
3499  -1.0000000
3500   0.0000000
3501  -5.0000000
3502   5.3333333
3503   2.3333333
3504   2.6666667
3505  -1.0000000
3506  -3.6666667
3507   3.3333333
3508   0.3333333
3509   7.6666667
3510  -2.6666667
3511   0.6666667
3512  -3.3333333
3513  -1.0000000
3514  -3.0000000
3515 -11.6666667
3516   2.6666667
3517  -3.6666667
3518   5.3333333
3519  -6.3333333
3520  -0.6666667
3521  -2.6666667
3522  -5.0000000
3523   0.6666667
3524   0.0000000
3525  -6.3333333
3526  10.0000000
3527   7.6666667
3528   7.3333333
3529  -4.6666667
3530   0.0000000
3531   0.6666667
3532   0.3333333
3533  -2.0000000
3534  -6.6666667
3535   0.6666667
3536   1.6666667
3537  -4.3333333
3538  -0.6666667
3539  -2.6666667
3540  -7.3333333
3541  -1.6666667
3542  -6.0000000
3543  -1.3333333
3544   0.6666667
3545  -3.6666667
3546   1.3333333
3547  -6.6666667
3548  -6.6666667
3549   9.3333333
3550  -5.0000000
3551  -4.0000000
3552  -2.0000000
3553   5.3333333
3554  -2.3333333
3555  -5.3333333
3556  -7.6666667
3557  -2.3333333
3558   6.3333333
3559  -6.3333333
3560   4.0000000
3561  -2.3333333
3562  -2.6666667
3563   2.6666667
3564  -6.3333333
3565   7.0000000
3566   3.3333333
3567  -4.0000000
3568   6.3333333
3569  -7.3333333
3570  -7.3333333
3571   2.6666667
3572   1.3333333
3573   1.3333333
3574  -3.3333333
3575  -1.3333333
3576   6.6666667
3577  -0.6666667
3578  -0.6666667
3579   0.3333333
3580   2.0000000
3581   7.3333333
3582  -4.3333333
3583  -4.0000000
3584  -4.3333333
3585  -0.6666667
3586  -0.6666667
3587  -1.0000000
3588  -3.6666667
3589   3.6666667
3590   2.6666667
3591  -8.6666667
3592   7.3333333
3593  -5.0000000
3594  -4.0000000
3595  -1.6666667
3596  -0.6666667
3597   3.3333333
3598  -0.6666667
3599  -8.3333333
3600  -5.6666667
3601   0.3333333
3602  10.3333333
3603  10.6666667
3604   2.6666667
3605  -3.6666667
3606   3.0000000
3607   3.6666667
3608   7.6666667
3609   2.6666667
3610   1.0000000
3611  -7.3333333
3612  -4.6666667
3613  -2.3333333
3614  -2.0000000
3615  -6.0000000
3616   2.0000000
3617  -9.3333333
3618  -3.3333333
3619  -8.0000000
3620   0.3333333
3621  -2.3333333
3622  -5.3333333
3623  -2.0000000
3624   0.0000000
3625  -1.3333333
3626  -2.0000000
3627  -6.6666667
3628   5.6666667
3629   0.3333333
3630   4.0000000
3631  -1.3333333
3632  -3.3333333
3633   1.0000000
3634   4.3333333
3635   1.6666667
3636   2.3333333
3637  -2.3333333
3638   2.3333333
3639  -2.6666667
3640  -6.3333333
3641  -0.6666667
3642  -4.0000000
3643  -2.0000000
3644   0.0000000
3645  -3.6666667
3646   4.0000000
3647  -5.0000000
3648  -2.6666667
3649   0.0000000
3650  -5.3333333
3651  -3.0000000
3652   1.3333333
3653  -4.0000000
3654  -0.3333333
3655  -6.0000000
3656  -8.0000000
3657   3.6666667
3658  -3.0000000
3659  -3.0000000
3660   0.3333333
3661  -4.6666667
3662   3.3333333
3663   2.6666667
3664  -6.0000000
3665   2.6666667
3666  -0.6666667
3667  -0.6666667
3668  -2.0000000
3669  -5.6666667
3670   7.6666667
3671  -8.3333333
3672  -0.3333333
3673   2.3333333
3674   9.6666667
3675  -7.3333333
3676   2.6666667
3677  -4.3333333
3678   0.6666667
3679  -9.6666667
3680   6.3333333
3681  -2.0000000
3682  -8.0000000
3683   3.6666667
3684   1.0000000
3685   1.6666667
3686   2.0000000
3687  -4.0000000
3688  -6.0000000
3689   1.0000000
3690   5.0000000
3691   0.6666667
3692  -5.0000000
3693   5.6666667
3694   1.3333333
3695  -1.3333333
3696  -1.6666667
3697   0.0000000
3698  -2.3333333
3699   8.3333333
3700  -0.6666667
3701  -2.3333333
3702  -1.3333333
3703   0.3333333
3704  -1.0000000
3705  12.3333333
3706   3.3333333
3707   2.6666667
3708   1.0000000
3709   2.0000000
3710   0.6666667
3711  -5.0000000
3712   6.6666667
3713   1.3333333
3714   2.0000000
3715  -2.0000000
3716   2.6666667
3717   9.0000000
3718  -3.0000000
3719  -4.6666667
3720   1.6666667
3721   2.6666667
3722  -4.3333333
3723   2.3333333
3724  -0.3333333
3725   8.0000000
3726   7.3333333
3727  -2.0000000
3728  -1.3333333
3729  -6.0000000
3730   8.0000000
3731  -6.6666667
3732  -3.6666667
3733   0.0000000
3734   2.3333333
3735   2.0000000
3736   9.0000000
3737   4.6666667
3738  -4.6666667
3739  -1.3333333
3740  -0.6666667
3741  -5.0000000
3742  -6.6666667
3743  -2.6666667
3744   1.0000000
3745  -3.6666667
3746  -5.3333333
3747   2.6666667
3748   2.0000000
3749  -0.3333333
3750   4.0000000
3751   5.0000000
3752   7.3333333
3753   0.3333333
3754  -4.3333333
3755   1.0000000
3756  -6.6666667
3757   1.3333333
3758   5.6666667
3759  -0.6666667
3760  -4.6666667
3761  -4.6666667
3762  -7.0000000
3763  -9.3333333
3764   1.0000000
3765  -1.3333333
3766  -0.6666667
3767   5.0000000
3768  -2.3333333
3769   6.6666667
3770   9.0000000
3771   4.3333333
3772   1.6666667
3773   0.6666667
3774  -1.3333333
3775  -5.0000000
3776   3.6666667
3777   3.6666667
3778  11.6666667
3779   6.3333333
3780  -1.6666667
3781  -4.0000000
3782  -4.0000000
3783   5.6666667
3784   3.0000000
3785   5.0000000
3786  -1.6666667
3787   5.6666667
3788 -10.0000000
3789  -1.0000000
3790   5.0000000
3791  -0.3333333
3792   4.6666667
3793  -6.3333333
3794  -7.6666667
3795  -6.6666667
3796  -2.3333333
3797   8.6666667
3798   0.3333333
3799  -4.3333333
3800   6.0000000
3801   1.3333333
3802   2.6666667
3803  -2.3333333
3804  -2.0000000
3805  10.0000000
3806   1.3333333
3807   5.6666667
3808   8.0000000
3809   2.0000000
3810   2.6666667
3811   5.3333333
3812   0.6666667
3813  -5.6666667
3814   0.3333333
3815   0.3333333
3816  -6.6666667
3817  -3.6666667
3818   5.3333333
3819  -0.3333333
3820  -2.6666667
3821  -2.3333333
3822  -3.0000000
3823  -0.6666667
3824   3.6666667
3825   0.6666667
3826   4.0000000
3827   3.6666667
3828  -4.3333333
3829  -2.6666667
3830   1.3333333
3831   3.0000000
3832   2.3333333
3833  -1.0000000
3834   2.0000000
3835   2.0000000
3836   0.3333333
3837  -2.0000000
3838   4.6666667
3839  -0.6666667
3840   0.3333333
3841   5.3333333
3842  -2.0000000
3843  10.0000000
3844   0.3333333
3845  -5.6666667
3846 -10.0000000
3847   0.0000000
3848   0.3333333
3849   7.3333333
3850   6.0000000
3851   3.0000000
3852   4.3333333
3853  -4.3333333
3854  -5.3333333
3855  -7.3333333
3856   0.3333333
3857  -4.3333333
3858   3.0000000
3859   4.0000000
3860  -2.3333333
3861  -3.0000000
3862  -0.6666667
3863  -1.6666667
3864  -7.6666667
3865  -8.6666667
3866   4.0000000
3867   6.0000000
3868  -2.3333333
3869   2.0000000
3870   6.3333333
3871  -0.3333333
3872  -1.0000000
3873   4.3333333
3874  -2.6666667
3875   4.0000000
3876   2.0000000
3877   6.3333333
3878   7.3333333
3879  -2.0000000
3880  -5.0000000
3881   4.6666667
3882  -7.0000000
3883  -7.0000000
3884  -2.6666667
3885   7.6666667
3886   1.0000000
3887   6.3333333
3888   2.0000000
3889   4.3333333
3890   8.3333333
3891   0.0000000
3892   1.3333333
3893  -1.3333333
3894   5.0000000
3895   1.3333333
3896  -6.0000000
3897   0.0000000
3898  -0.6666667
3899   1.6666667
3900  -5.0000000
3901   1.6666667
3902  -7.3333333
3903   4.0000000
3904   2.3333333
3905   1.0000000
3906   3.6666667
3907  -1.3333333
3908  -2.6666667
3909  -3.6666667
3910   3.3333333
3911   8.0000000
3912   6.0000000
3913  -1.3333333
3914   0.6666667
3915   2.6666667
3916  -1.6666667
3917   4.0000000
3918   0.6666667
3919  -1.6666667
3920   7.3333333
3921   1.0000000
3922  -0.6666667
3923   4.3333333
3924  -0.6666667
3925   6.3333333
3926  -3.0000000
3927   6.3333333
3928  -1.0000000
3929  -3.6666667
3930  -8.0000000
3931   0.3333333
3932   0.3333333
3933  -5.0000000
3934  -3.3333333
3935  -2.3333333
3936   2.0000000
3937   3.3333333
3938   3.6666667
3939  -2.0000000
3940   1.6666667
3941  -1.3333333
3942   2.6666667
3943  -0.6666667
3944  -6.3333333
3945  -4.0000000
3946  -1.0000000
3947  -7.6666667
3948  10.6666667
3949   4.0000000
3950  -6.0000000
3951  -7.0000000
3952   0.6666667
3953   8.0000000
3954   1.3333333
3955   3.0000000
3956  -1.0000000
3957   1.0000000
3958  -4.3333333
3959  -8.6666667
3960  -5.6666667
3961  -5.6666667
3962  -5.6666667
3963   0.3333333
3964  -2.6666667
3965  -0.6666667
3966  -4.0000000
3967   3.3333333
3968  -5.6666667
3969   6.0000000
3970   7.6666667
3971   1.6666667
3972   4.0000000
3973  -1.3333333
3974   4.0000000
3975  -8.6666667
3976   0.6666667
3977  -6.0000000
3978  -3.3333333
3979  -9.6666667
3980   0.3333333
3981   4.0000000
3982   2.3333333
3983   2.6666667
3984   8.3333333
3985   5.0000000
3986   8.3333333
3987  10.3333333
3988  -8.0000000
3989   4.0000000
3990  -6.0000000
3991   8.6666667
3992  -3.3333333
3993  -1.3333333
3994   5.0000000
3995   2.6666667
3996  -4.0000000
3997  -4.6666667
3998   4.3333333
3999   5.6666667
4000   1.3333333
4001   2.3333333
4002   2.3333333
4003   1.3333333
4004   2.0000000
4005   7.3333333
4006   0.3333333
4007   3.0000000
4008   1.0000000
4009  -4.6666667
4010  -2.0000000
4011   3.3333333
4012  -2.6666667
4013  -1.6666667
4014  -5.3333333
4015   7.3333333
4016  -7.0000000
4017   1.6666667
4018   0.0000000
4019   0.3333333
4020   4.6666667
4021   6.3333333
4022  -4.6666667
4023   3.3333333
4024   4.3333333
4025   1.0000000
4026   7.3333333
4027   1.0000000
4028 -13.3333333
4029  -5.3333333
4030   9.0000000
4031   7.0000000
4032   4.6666667
4033   7.6666667
4034   1.0000000
4035   3.6666667
4036  -0.6666667
4037   1.6666667
4038   3.3333333
4039  -6.6666667
4040  -4.0000000
4041   2.6666667
4042  -8.3333333
4043  -7.6666667
4044   6.6666667
4045  -5.3333333
4046  -3.0000000
4047   5.3333333
4048   3.0000000
4049   3.3333333
4050   4.6666667
4051  -2.3333333
4052   1.3333333
4053   9.6666667
4054   4.0000000
4055  -3.0000000
4056   2.3333333
4057   4.0000000
4058  -2.6666667
4059   1.6666667
4060  -3.6666667
4061   7.0000000
4062  -3.0000000
4063  -6.3333333
4064   2.3333333
4065  -1.0000000
4066  -5.0000000
4067   2.3333333
4068   3.0000000
4069   8.3333333
4070   0.3333333
4071   2.0000000
4072  -6.0000000
4073  -3.0000000
4074  -7.6666667
4075   7.3333333
4076   4.0000000
4077   6.3333333
4078  10.0000000
4079  -3.6666667
4080   3.3333333
4081   2.0000000
4082  -1.3333333
4083  -4.6666667
4084   6.3333333
4085  -2.6666667
4086   4.0000000
4087   5.3333333
4088  -6.0000000
4089   3.6666667
4090   2.3333333
4091   9.0000000
4092   1.3333333
4093  -1.0000000
4094  -6.0000000
4095  -0.6666667
4096   4.6666667
4097  -3.0000000
4098   3.0000000
4099   6.3333333
4100  -1.0000000
4101  11.6666667
4102   1.3333333
4103  -4.0000000
4104   4.0000000
4105   3.3333333
4106  -2.0000000
4107  -3.6666667
4108   6.3333333
4109  -8.3333333
4110  -3.6666667
4111   6.3333333
4112  -3.6666667
4113  -3.3333333
4114  -7.6666667
4115  -7.3333333
4116  -5.3333333
4117   3.3333333
4118   2.3333333
4119   2.0000000
4120   6.3333333
4121   3.3333333
4122   0.6666667
4123  -0.6666667
4124   2.3333333
4125  -9.3333333
4126   4.3333333
4127  -0.3333333
4128   0.6666667
4129  -4.0000000
4130   1.0000000
4131  -0.6666667
4132   1.0000000
4133   1.0000000
4134   3.3333333
4135  -5.6666667
4136  -3.6666667
4137  -7.6666667
4138  -2.3333333
4139   3.3333333
4140  -5.0000000
4141  -2.0000000
4142  -1.3333333
4143   2.0000000
4144   1.3333333
4145  -3.6666667
4146   2.0000000
4147   1.6666667
4148  -9.3333333
4149  -1.6666667
4150   0.3333333
4151  -8.0000000
4152  -5.3333333
4153  -6.6666667
4154   2.3333333
4155  -3.6666667
4156   0.3333333
4157  -4.6666667
4158   3.0000000
4159  -5.0000000
4160   7.0000000
4161   3.0000000
4162   4.3333333
4163   3.0000000
4164  -2.6666667
4165   9.0000000
4166  -4.6666667
4167   7.3333333
4168   4.6666667
4169   6.6666667
4170   3.0000000
4171   1.6666667
4172  -1.6666667
4173   7.0000000
4174  -2.0000000
4175   3.0000000
4176  -4.0000000
4177   2.3333333
4178   8.0000000
4179   0.3333333
4180  -2.0000000
4181  -1.3333333
4182  -1.0000000
4183   1.6666667
4184  -3.6666667
4185 -10.0000000
4186  -5.0000000
4187  -2.3333333
4188   1.0000000
4189   4.6666667
4190  -2.0000000
4191   5.3333333
4192 -11.0000000
4193 -12.0000000
4194  -4.6666667
4195   4.3333333
4196   2.3333333
4197   7.0000000
4198   0.0000000
4199  -5.0000000
4200  -5.0000000
4201  -0.6666667
4202  -9.0000000
4203   6.0000000
4204   2.6666667
4205   0.3333333
4206  -0.3333333
4207   2.6666667
4208  11.0000000
4209  -8.3333333
4210   4.3333333
4211  -2.6666667
4212 -10.0000000
4213  -4.6666667
4214  -6.6666667
4215   4.3333333
4216  -4.0000000
4217  -6.6666667
4218   1.3333333
4219  -6.6666667
4220  -1.0000000
4221   3.6666667
4222  -1.0000000
4223   5.3333333
4224   0.6666667
4225   3.3333333
4226  -2.3333333
4227   4.0000000
4228   5.0000000
4229   0.3333333
4230  -5.3333333
4231   3.3333333
4232  -3.0000000
4233  -6.0000000
4234  -4.6666667
4235  -5.0000000
4236   3.0000000
4237  -2.6666667
4238  -3.3333333
4239   0.0000000
4240  -6.3333333
4241   7.3333333
4242   1.3333333
4243   4.6666667
4244   0.6666667
4245   8.0000000
4246   5.0000000
4247   4.3333333
4248   4.0000000
4249  -5.0000000
4250  -0.3333333
4251  -4.3333333
4252   0.3333333
4253  -2.0000000
4254  -7.6666667
4255   2.0000000
4256   2.0000000
4257   3.6666667
4258   4.0000000
4259  -2.3333333
4260  -4.0000000
4261  -2.0000000
4262   6.3333333
4263   1.0000000
4264   0.3333333
4265   3.6666667
4266  -5.6666667
4267   4.3333333
4268   3.6666667
4269  -4.6666667
4270  -1.0000000
4271   0.6666667
4272  -3.3333333
4273   6.6666667
4274   0.3333333
4275  -6.3333333
4276  -9.0000000
4277   4.6666667
4278   6.6666667
4279  10.3333333
4280  -4.0000000
4281   1.0000000
4282   3.6666667
4283   6.0000000
4284   3.3333333
4285   4.6666667
4286  -3.6666667
4287   5.0000000
4288   7.3333333
4289  -1.3333333
4290  -1.6666667
4291   1.3333333
4292  -1.3333333
4293  -7.3333333
4294   8.3333333
4295   7.0000000
4296  -3.0000000
4297   6.0000000
4298  -0.3333333
4299  -1.3333333
4300  -7.6666667
4301   7.6666667
4302  -4.0000000
4303   1.3333333
4304   2.6666667
4305  -2.6666667
4306  -1.3333333
4307   0.3333333
4308   8.6666667
4309   9.3333333
4310  -2.0000000
4311   2.0000000
4312   0.3333333
4313  -1.0000000
4314  -3.6666667
4315   6.3333333
4316  -7.6666667
4317  -5.0000000
4318  -1.6666667
4319   1.6666667
4320  -3.6666667
4321   8.3333333
4322  -0.6666667
4323  -0.3333333
4324   3.3333333
4325  -2.6666667
4326  -6.3333333
4327   0.6666667
4328  -7.0000000
4329  -3.0000000
4330  -4.6666667
4331  -4.3333333
4332   0.0000000
4333  -1.3333333
4334   0.0000000
4335  -1.0000000
4336   3.6666667
4337  -3.3333333
4338   7.6666667
4339   3.6666667
4340  -2.6666667
4341   4.6666667
4342   1.6666667
4343  -2.6666667
4344  -4.6666667
4345  10.3333333
4346  -3.6666667
4347  -1.6666667
4348   8.0000000
4349   4.6666667
4350  -6.3333333
4351  -2.6666667
4352  -2.3333333
4353  -2.6666667
4354 -11.3333333
4355  -4.6666667
4356  -7.6666667
4357  -3.6666667
4358   1.0000000
4359   4.6666667
4360  -1.3333333
4361  -1.0000000
4362   3.3333333
4363  -2.6666667
4364   6.0000000
4365  -5.0000000
4366   4.0000000
4367   9.6666667
4368  -5.0000000
4369   5.3333333
4370  -4.3333333
4371   2.3333333
4372  -2.0000000
4373   3.0000000
4374   2.3333333
4375  -1.0000000
4376   4.3333333
4377   2.6666667
4378  -5.0000000
4379  -0.6666667
4380   4.0000000
4381  -5.3333333
4382   2.3333333
4383  -3.6666667
4384   2.3333333
4385  -0.3333333
4386  -3.3333333
4387   2.0000000
4388   1.0000000
4389   0.6666667
4390  -1.3333333
4391  -1.0000000
4392  -3.0000000
4393  -0.6666667
4394   2.3333333
4395   0.0000000
4396  -2.0000000
4397  -0.3333333
4398   0.0000000
4399  -0.6666667
4400  11.0000000
4401   1.3333333
4402   1.3333333
4403 -12.3333333
4404  -5.3333333
4405  -6.3333333
4406  -1.3333333
4407   0.6666667
4408   7.0000000
4409  -2.0000000
4410  -3.6666667
4411  -0.6666667
4412  -3.0000000
4413  -1.3333333
4414   3.0000000
4415   2.3333333
4416   9.6666667
4417  -3.3333333
4418   3.6666667
4419   3.3333333
4420   5.0000000
4421  -4.3333333
4422  -8.3333333
4423  -2.0000000
4424   2.6666667
4425 -11.3333333
4426  -7.0000000
4427   1.0000000
4428   4.0000000
4429   5.3333333
4430  -5.3333333
4431  -6.3333333
4432  -6.3333333
4433   0.3333333
4434  -2.3333333
4435   1.3333333
4436  -6.3333333
4437   2.0000000
4438  -3.0000000
4439   2.3333333
4440  -9.0000000
4441   3.0000000
4442  -4.3333333
4443   4.3333333
4444  -3.6666667
4445  -3.6666667
4446  -4.3333333
4447   2.6666667
4448  -7.6666667
4449   6.3333333
4450   2.6666667
4451  -2.0000000
4452  -4.3333333
4453  -3.6666667
4454   3.3333333
4455   4.6666667
4456   2.6666667
4457  -2.0000000
4458   2.3333333
4459   7.3333333
4460   2.0000000
4461  -4.0000000
4462  -1.6666667
4463   3.6666667
4464  -4.6666667
4465  -4.6666667
4466  -5.0000000
4467   2.6666667
4468  -1.0000000
4469   0.3333333
4470   6.6666667
4471   4.6666667
4472   2.6666667
4473   2.3333333
4474   4.0000000
4475   3.3333333
4476   4.3333333
4477  -1.3333333
4478  -2.0000000
4479   4.0000000
4480  -1.0000000
4481   0.3333333
4482  -3.0000000
4483   2.6666667
4484   5.0000000
4485  -8.0000000
4486  -4.3333333
4487   4.6666667
4488  -2.6666667
4489  -0.3333333
4490  -4.3333333
4491  -1.0000000
4492   2.3333333
4493  -4.0000000
4494  -4.6666667
4495   8.0000000
4496   3.6666667
4497   5.6666667
4498  -8.6666667
4499   2.0000000
4500   2.0000000
4501   7.0000000
4502  -0.3333333
4503  -0.3333333
4504   1.0000000
4505  -1.6666667
4506   3.3333333
4507   0.3333333
4508  -5.0000000
4509   7.0000000
4510   7.3333333
4511  -3.0000000
4512  -8.0000000
4513  -0.6666667
4514  -4.3333333
4515   8.3333333
4516   5.0000000
4517  -3.3333333
4518  -8.6666667
4519  -1.6666667
4520  -4.0000000
4521   1.0000000
4522  -2.6666667
4523   7.0000000
4524   2.6666667
4525  -7.0000000
4526  -7.3333333
4527  -4.6666667
4528  -2.6666667
4529  -2.3333333
4530   2.3333333
4531  -9.0000000
4532  -0.6666667
4533  -3.0000000
4534   4.3333333
4535  -4.6666667
4536  -3.6666667
4537  -0.6666667
4538  -0.3333333
4539  -4.6666667
4540   6.0000000
4541   8.0000000
4542 -12.0000000
4543   7.0000000
4544   2.0000000
4545  -1.0000000
4546  -6.3333333
4547   5.3333333
4548   9.3333333
4549  -3.6666667
4550   0.6666667
4551   8.3333333
4552  -4.0000000
4553  -2.6666667
4554  -3.3333333
4555   0.3333333
4556   1.0000000
4557   3.3333333
4558  -2.0000000
4559  -0.6666667
4560  -1.3333333
4561   4.6666667
4562   4.3333333
4563  -0.3333333
4564  -3.0000000
4565   4.3333333
4566   2.6666667
4567  -0.3333333
4568  -4.6666667
4569  -0.3333333
4570  -4.3333333
4571  -4.0000000
4572   5.6666667
4573  -0.3333333
4574  -3.3333333
4575  -5.6666667
4576  -4.6666667
4577   0.0000000
4578   3.3333333
4579   2.3333333
4580   3.0000000
4581   3.6666667
4582  -2.3333333
4583  -1.6666667
4584  -6.3333333
4585   7.3333333
4586  -2.6666667
4587  -3.3333333
4588  -2.6666667
4589  -1.6666667
4590  -0.3333333
4591   9.6666667
4592  -3.6666667
4593  -1.0000000
4594   8.0000000
4595  -5.6666667
4596   0.3333333
4597   0.3333333
4598  -0.3333333
4599  -4.0000000
4600  -2.6666667
4601   4.3333333
4602  -1.3333333
4603  -1.0000000
4604  -2.3333333
4605   0.3333333
4606   2.0000000
4607   2.6666667
4608   0.3333333
4609  -1.0000000
4610  -4.3333333
4611   4.3333333
4612   1.6666667
4613   5.3333333
4614   9.6666667
4615  -2.3333333
4616  -3.6666667
4617  -8.3333333
4618   6.0000000
4619  -4.6666667
4620   0.3333333
4621   1.3333333
4622  -2.6666667
4623   0.3333333
4624   5.3333333
4625   0.6666667
4626   4.3333333
4627  -8.0000000
4628  -2.0000000
4629   2.3333333
4630  -5.6666667
4631  -5.0000000
4632   8.0000000
4633   6.3333333
4634  -7.6666667
4635  -4.3333333
4636  -5.3333333
4637  -0.6666667
4638   5.3333333
4639   2.6666667
4640  -7.3333333
4641  -1.6666667
4642  -0.6666667
4643   1.0000000
4644   2.3333333
4645  -2.3333333
4646  -4.0000000
4647   4.3333333
4648   0.6666667
4649   0.0000000
4650  -3.6666667
4651  -8.0000000
4652  -4.3333333
4653  -4.6666667
4654   2.6666667
4655   0.6666667
4656   0.6666667
4657   2.3333333
4658  -0.6666667
4659   7.3333333
4660   0.0000000
4661  -3.3333333
4662  -4.0000000
4663   2.6666667
4664  -7.3333333
4665  -7.3333333
4666  -9.3333333
4667  10.0000000
4668   4.3333333
4669   3.6666667
4670  -9.3333333
4671  -4.3333333
4672  -4.0000000
4673   5.6666667
4674   2.0000000
4675   3.6666667
4676   2.6666667
4677   0.6666667
4678   4.0000000
4679  -3.6666667
4680   2.3333333
4681   6.0000000
4682   6.3333333
4683  -6.6666667
4684   7.0000000
4685  -4.3333333
4686   1.3333333
4687   7.6666667
4688   5.6666667
4689  -5.3333333
4690   5.3333333
4691   5.0000000
4692   1.3333333
4693  -4.3333333
4694  -1.0000000
4695   3.3333333
4696   7.6666667
4697   4.0000000
4698  -7.3333333
4699   2.3333333
4700  -2.0000000
4701  -6.6666667
4702   2.0000000
4703  -7.0000000
4704   3.3333333
4705   4.3333333
4706   4.0000000
4707  -0.6666667
4708   5.3333333
4709   4.6666667
4710   0.0000000
4711  -1.3333333
4712  -7.6666667
4713   8.6666667
4714   2.0000000
4715  -7.0000000
4716  -6.6666667
4717   2.3333333
4718   0.0000000
4719  -0.3333333
4720   2.3333333
4721   1.0000000
4722   2.6666667
4723   0.3333333
4724  -0.3333333
4725   4.0000000
4726   2.3333333
4727  -3.3333333
4728  -4.0000000
4729   4.0000000
4730   1.0000000
4731   4.0000000
4732  -3.6666667
4733   6.6666667
4734   1.0000000
4735   3.0000000
4736   5.0000000
4737  -0.6666667
4738  -6.6666667
4739   1.0000000
4740  -2.6666667
4741   0.6666667
4742   6.0000000
4743   2.3333333
4744  -6.3333333
4745   4.3333333
4746   0.6666667
4747  -8.6666667
4748   0.3333333
4749  -9.3333333
4750  -0.6666667
4751  -2.0000000
4752   0.0000000
4753  -3.6666667
4754  -5.0000000
4755   3.6666667
4756   5.3333333
4757  10.0000000
4758   3.0000000
4759  -1.3333333
4760   1.6666667
4761   6.0000000
4762  -4.0000000
4763  -4.3333333
4764   2.3333333
4765   1.0000000
4766   2.3333333
4767  -6.3333333
4768  -3.6666667
4769  -4.0000000
4770   2.3333333
4771   0.0000000
4772  -5.3333333
4773  -2.0000000
4774  -2.0000000
4775  -4.0000000
4776  -4.3333333
4777  -1.0000000
4778   5.3333333
4779  -3.0000000
4780  -3.0000000
4781   5.3333333
4782   4.0000000
4783  -0.6666667
4784   4.3333333
4785  -1.0000000
4786  -6.6666667
4787   4.6666667
4788   1.0000000
4789   3.0000000
4790   2.0000000
4791   3.0000000
4792   2.6666667
4793   6.0000000
4794  -0.3333333
4795  -8.3333333
4796  -3.6666667
4797   6.3333333
4798   5.6666667
4799   9.0000000
4800  -0.6666667
4801   2.6666667
4802   5.6666667
4803  -6.3333333
4804   4.6666667
4805  -2.0000000
4806  -4.0000000
4807  -2.3333333
4808  -2.0000000
4809  -4.0000000
4810   2.3333333
4811   7.0000000
4812   7.0000000
4813  -5.0000000
4814  -5.3333333
4815   0.3333333
4816   1.0000000
4817  -1.6666667
4818  -2.0000000
4819  -2.3333333
4820  -1.6666667
4821  -4.6666667
4822   2.6666667
4823   8.0000000
4824  -1.6666667
4825   1.6666667
4826  -4.6666667
4827  -2.6666667
4828  -5.0000000
4829   0.3333333
4830  -1.3333333
4831   1.6666667
4832   5.0000000
4833  -2.0000000
4834  -1.6666667
4835   2.3333333
4836   0.3333333
4837  -1.6666667
4838   1.0000000
4839   2.6666667
4840   0.0000000
4841   2.6666667
4842  -3.3333333
4843  -0.6666667
4844  -3.0000000
4845  -7.6666667
4846  -2.0000000
4847  -0.3333333
4848   2.3333333
4849   1.0000000
4850  -0.6666667
4851  -0.6666667
4852  -6.0000000
4853  -1.3333333
4854   0.3333333
4855   7.3333333
4856  -6.6666667
4857  -0.3333333
4858   0.6666667
4859  -3.3333333
4860   7.0000000
4861   3.3333333
4862   0.3333333
4863  -8.6666667
4864   1.0000000
4865  -2.3333333
4866   5.3333333
4867   8.3333333
4868  -5.0000000
4869   4.6666667
4870  -4.0000000
4871  -1.0000000
4872  -3.0000000
4873  -0.6666667
4874  11.6666667
4875   2.6666667
4876   4.6666667
4877   2.0000000
4878   3.3333333
4879  -1.0000000
4880   2.6666667
4881  -1.0000000
4882  -3.3333333
4883   0.6666667
4884  -7.3333333
4885  -1.3333333
4886   6.3333333
4887   4.0000000
4888   4.0000000
4889  -2.0000000
4890  -0.3333333
4891   4.3333333
4892 -10.6666667
4893  -5.3333333
4894   4.0000000
4895   4.3333333
4896  -2.3333333
4897  -4.0000000
4898  -3.6666667
4899  -3.0000000
4900   6.3333333
4901  -3.6666667
4902   2.6666667
4903  -5.0000000
4904  -2.6666667
4905   4.0000000
4906  -1.6666667
4907   1.0000000
4908   0.0000000
4909  -3.0000000
4910  -1.6666667
4911  -2.6666667
4912  -5.3333333
4913   6.6666667
4914   7.0000000
4915   3.6666667
4916   7.6666667
4917   1.6666667
4918   6.3333333
4919  -2.6666667
4920  -6.3333333
4921   4.6666667
4922   4.3333333
4923  -7.6666667
4924  -4.3333333
4925   0.6666667
4926  -6.3333333
4927  -6.0000000
4928  -3.0000000
4929  -0.3333333
4930  -2.0000000
4931   5.6666667
4932  -6.6666667
4933  -2.3333333
4934   0.0000000
4935   1.6666667
4936  -1.0000000
4937   1.0000000
4938   2.3333333
4939   1.6666667
4940   5.6666667
4941  -0.6666667
4942   0.3333333
4943  -6.6666667
4944  -6.0000000
4945   6.0000000
4946   1.6666667
4947  -2.6666667
4948   2.0000000
4949   4.3333333
4950  -5.3333333
4951  -0.3333333
4952  -9.6666667
4953   9.3333333
4954   9.0000000
4955   7.6666667
4956  -4.3333333
4957   5.3333333
4958  -7.0000000
4959   5.3333333
4960  -4.3333333
4961   8.3333333
4962  -0.6666667
4963  -7.6666667
4964   0.0000000
4965   2.6666667
4966  -6.0000000
4967   1.3333333
4968   1.3333333
4969   5.6666667
4970   0.0000000
4971  -1.6666667
4972   6.6666667
4973  -5.6666667
4974   2.0000000
4975   2.0000000
4976  -4.3333333
4977   8.6666667
4978  -0.3333333
4979   4.6666667
4980  -0.6666667
4981  -2.3333333
4982  -5.0000000
4983   3.6666667
4984   2.6666667
4985   0.3333333
4986  -3.6666667
4987  -6.3333333
4988  -1.6666667
4989   0.0000000
4990  -3.3333333
4991  -7.3333333
4992  -4.6666667
4993  -0.6666667
4994  -2.6666667
4995   4.3333333
4996  -1.0000000
4997   3.6666667
4998  -2.3333333
4999   7.3333333
prop1(~ diffmean <= obs_mean, data = null_dist)
prop_TRUE 
    0.323 
gf_histogram(data = null_dist, ~ diffmean, 
             bins = 25) %>%
  gf_vline(xintercept = obs_mean, 
           colour = "red", linewidth = 1,
           title = "Null Distribution by Permutation for Preference") %>% 
  gf_labs(x = "Difference in Means")

The permutation test is conducted to analyze the difference in tipping amounts between vegetarians and non-vegetarians without checking for normality or other assumptions, simply by shuffling the data between the groups. The observed mean difference in tips is calculated to be -2.333333, indicating that, on average, vegetarians tip less than non-vegetarians. To better this difference, a null distribution is generated by shuffling the ‘Preferance’ variable 4999 times, allowing for the comparison of the observed mean difference against this distribution. The proportion of the null distribution that is less than or equal to the observed mean difference is then calculated and visualized via a histogram with 25 bins. A red vertical line that marks the position of the observed mean difference. This visualization helps to determine if the observed difference is likely due to random chance and this plot has a central placement indicating that the observed difference may be due to chance. Once again showing that vegetarians and non-vegetarians tip similarly.

Gender

gf_histogram(~Tip,fill = ~Gender, data=tip2)%>%
  gf_facet_wrap(vars(Gender)) %>% 
  gf_labs(title="Do people give Tips?")

gf_boxplot(Tip ~ Gender, data = tip2) %>%
  gf_labs(
    title = "Tips by Preference",
    x = "Preference",
    y = "Amount"
  )

Both males and females mostly tip low amounts, with most people giving tips between 0 and 20. However, females have a wider variety in their tipping, with some tipping much higher than others, showing a few noticeable outliers. On the other hand, males usually tip lower amounts more consistently, with only a few higher tips, notably one at 100 from a vegetarian. Overall, the data shows that while both genders usually tip low, females tend to have more differences in their tipping amounts compared to males.

Null Hypothesis

There is no difference between tips for male and female

Density Graph

tip2 %>% 
  gf_density(~Tip, fill=~Gender, alpha=0.5, title= "Men and Women who Tip")%>% 
  gf_facet_grid(~Gender) %>% 
  gf_fitdistr(dist="dnorm")

The fitted normal distribution lines indicate that while tipping is generally low for both men and women, mostly between 0 and 20, women’s tipping behavior shows more variability, with some individuals tipping significantly higher. This finding aligns with density plot of the actual population and reconfirms the insights gathered from the histogram.

T-Test

mosaic::t_test(Tip~Gender, data=tip2) %>% 
  broom::tidy()
# A tibble: 1 × 10
  estimate estimate1 estimate2 statistic p.value parameter conf.low conf.high
     <dbl>     <dbl>     <dbl>     <dbl>   <dbl>     <dbl>    <dbl>     <dbl>
1        2      12.2      10.2     0.431   0.668      55.8    -7.29      11.3
# ℹ 2 more variables: method <chr>, alternative <chr>

The t-test shows that the mean tip for women is 12.17, while for men it is 10.17. The p-value is 0.67 indicating that there is no statistically significant difference in the tipping behavior between the two genders. The confidence interval for the mean difference ranges from -7.29 to 11.29, suggesting that the true difference in mean tips could be negative or positive, further showing the lack of significant difference in tipping patterns between men and women.

Finding Normal Distribution using Shapiro Test

Separating Tipping Data by Preference

tip2 %>% 
  filter(Gender== "Female") %>% 
  select(Tip)-> FM
FM
# A tibble: 30 × 1
     Tip
   <dbl>
 1     0
 2    20
 3     0
 4     0
 5    20
 6    35
 7    40
 8     0
 9     0
10    20
# ℹ 20 more rows
tip2 %>% 
  filter(Gender== "Male") %>% 
  select(Tip)-> M
M
# A tibble: 30 × 1
     Tip
   <dbl>
 1     0
 2     0
 3     0
 4     0
 5     0
 6     0
 7     0
 8     0
 9    15
10   100
# ℹ 20 more rows

Shapiro Test

shapiro.test(FM$Tip)

    Shapiro-Wilk normality test

data:  FM$Tip
W = 0.74757, p-value = 8.321e-06
shapiro.test(M$Tip)

    Shapiro-Wilk normality test

data:  M$Tip
W = 0.53209, p-value = 1.19e-08

The results of the Shapiro test indicate that the tipping data for both females and males does not follow a normal distribution. For the female group, the test produced a p-value of approximately 0.00000832, while for the male group, the p-value was about 0.000000012. Since both p-values are significantly lower than 0.05, this leads to the rejection of the null hypothesis of normality for both genders. This suggests that the tipping behavior for both females and males is not normally distributed, which is why non-parametric tests needs to be conducted for further analysis.

Wilcox Test

wilcox.test(Tip ~ Gender, data = tip2,
            conf.int = TRUE,
            conf.level = 0.95) %>% 
  broom::tidy()
Warning in wilcox.test.default(x = DATA[[1L]], y = DATA[[2L]], ...): cannot
compute exact p-value with ties
Warning in wilcox.test.default(x = DATA[[1L]], y = DATA[[2L]], ...): cannot
compute exact confidence intervals with ties
# A tibble: 1 × 7
   estimate statistic p.value   conf.low  conf.high method           alternative
      <dbl>     <dbl>   <dbl>      <dbl>      <dbl> <chr>            <chr>      
1 0.0000445       498   0.422 -0.0000134 0.00000497 Wilcoxon rank s… two.sided  

The estimated difference in tips is approximately 0.00004446, with a p-value of 0.42207. Since the p-value is greater than 0.05, it suggests that there is no difference in tipping amounts between genders. The confidence interval ranges from -0.00001344 to 0.00000497, indicating that any differences in tipping behavior between the two groups are minimal and not statistically significant.

Permutation

obs_mean1 <- diffmean(Tip~Gender, data = tip2)
obs_mean1
diffmean 
      -2 
null_dist2 <- 
  do(4999) * diffmean(data = tip2, 
                      Tip ~ shuffle(Gender))
null_dist2
        diffmean
1     -5.6666667
2      8.6666667
3     -8.6666667
4      3.6666667
5     -3.3333333
6      2.0000000
7      2.0000000
8      6.3333333
9     -6.0000000
10    -6.3333333
11     0.3333333
12    -0.6666667
13    -2.0000000
14    -0.3333333
15    -9.0000000
16     0.6666667
17    -3.6666667
18    -3.6666667
19     4.3333333
20    -3.3333333
21     7.3333333
22    -0.6666667
23    -1.3333333
24    -1.6666667
25     0.0000000
26     3.6666667
27    -4.0000000
28    -4.0000000
29    -4.0000000
30     5.3333333
31     2.3333333
32     2.6666667
33     4.3333333
34     2.0000000
35     3.3333333
36     7.3333333
37    -1.0000000
38     3.0000000
39    -1.0000000
40    -7.0000000
41     2.0000000
42    -6.6666667
43     2.3333333
44     8.0000000
45     0.6666667
46     4.3333333
47     4.3333333
48     1.6666667
49    -4.3333333
50    -1.6666667
51    -1.6666667
52    -1.6666667
53     6.6666667
54     3.0000000
55    -1.6666667
56    -4.6666667
57     5.0000000
58    -2.0000000
59    -4.6666667
60     7.0000000
61    -1.0000000
62    -7.3333333
63     1.6666667
64    -1.0000000
65     3.0000000
66    -0.3333333
67    -4.3333333
68    -3.0000000
69    -2.3333333
70     9.6666667
71     9.0000000
72    -0.3333333
73     1.6666667
74     0.6666667
75    -7.6666667
76     0.3333333
77    -6.3333333
78    -0.6666667
79    -1.0000000
80    -2.3333333
81     3.6666667
82     0.3333333
83    -5.3333333
84    -8.0000000
85     4.3333333
86    -3.3333333
87    -2.3333333
88     2.0000000
89    -5.3333333
90    10.0000000
91    -4.0000000
92     6.0000000
93     3.0000000
94     4.6666667
95    -4.0000000
96     1.3333333
97     3.0000000
98     0.3333333
99     1.6666667
100   -2.3333333
101    6.6666667
102    9.0000000
103   -2.3333333
104    2.0000000
105    3.6666667
106   11.6666667
107   -8.0000000
108    0.0000000
109   -7.0000000
110    2.6666667
111    3.0000000
112   -1.3333333
113    7.6666667
114    6.6666667
115   -7.3333333
116    3.6666667
117    0.0000000
118    9.6666667
119   -3.3333333
120    2.0000000
121   -4.6666667
122    0.0000000
123    4.6666667
124    2.3333333
125   -1.6666667
126    2.6666667
127   -4.3333333
128   -1.3333333
129   -5.6666667
130    2.6666667
131    0.6666667
132   -3.3333333
133   -6.3333333
134   -9.6666667
135  -12.0000000
136   -5.3333333
137  -10.6666667
138   -4.6666667
139    2.3333333
140    2.0000000
141    4.3333333
142    2.6666667
143   -1.3333333
144    3.6666667
145    3.6666667
146    2.0000000
147    3.0000000
148   -9.0000000
149    0.6666667
150   -3.3333333
151   -2.6666667
152    2.0000000
153   -1.6666667
154    0.6666667
155   -0.6666667
156    2.0000000
157   -2.0000000
158   -4.0000000
159   -4.6666667
160   -5.6666667
161   -6.0000000
162    3.0000000
163    0.0000000
164   -5.6666667
165    3.6666667
166   -3.3333333
167    1.3333333
168    3.6666667
169   -7.0000000
170   -1.3333333
171   -5.3333333
172    4.3333333
173   -7.3333333
174    3.6666667
175   -5.0000000
176    6.3333333
177   -4.0000000
178    9.3333333
179    2.6666667
180    5.6666667
181   -2.6666667
182    4.3333333
183   -7.3333333
184   -0.3333333
185   -2.3333333
186   -9.3333333
187    6.6666667
188    6.0000000
189   -1.0000000
190    3.6666667
191    0.6666667
192    2.3333333
193   -2.0000000
194    0.6666667
195   -5.3333333
196   -0.6666667
197    1.6666667
198   -6.3333333
199   -5.3333333
200   -3.6666667
201    1.6666667
202    4.3333333
203    4.3333333
204    5.3333333
205    6.0000000
206    6.6666667
207   -4.3333333
208   -1.0000000
209    1.0000000
210   -6.0000000
211   -7.6666667
212   -4.3333333
213   -1.6666667
214   -0.6666667
215    4.6666667
216   10.0000000
217    0.3333333
218   -7.0000000
219   -4.0000000
220   -0.6666667
221    4.3333333
222    0.0000000
223   -1.0000000
224    6.0000000
225    6.6666667
226    6.0000000
227    1.6666667
228    1.3333333
229   -2.0000000
230    4.6666667
231    3.0000000
232   -9.0000000
233  -10.3333333
234   -2.3333333
235    2.0000000
236   -4.3333333
237   -6.3333333
238   -3.0000000
239    6.0000000
240   -0.3333333
241   -3.0000000
242    3.0000000
243   -2.3333333
244   -5.0000000
245    2.0000000
246    5.0000000
247   -2.0000000
248   -2.0000000
249   -3.0000000
250   -3.0000000
251    1.0000000
252   -7.0000000
253   -0.3333333
254    5.0000000
255   -6.3333333
256   -2.3333333
257   -0.3333333
258    6.3333333
259   -5.6666667
260   -2.0000000
261    4.6666667
262   -9.3333333
263   -5.0000000
264    5.3333333
265    2.3333333
266   -1.3333333
267    2.3333333
268   -7.6666667
269   -0.6666667
270    2.0000000
271    3.0000000
272    4.0000000
273    2.6666667
274    5.3333333
275   -1.0000000
276    7.0000000
277   -2.6666667
278   -6.3333333
279   -3.3333333
280   -5.3333333
281    2.3333333
282  -11.0000000
283    0.3333333
284    1.3333333
285    9.6666667
286    5.0000000
287    2.6666667
288   -5.0000000
289    6.3333333
290    2.6666667
291    1.3333333
292   -1.6666667
293   -6.0000000
294    0.0000000
295    2.3333333
296   -2.0000000
297   -3.6666667
298    4.0000000
299    1.3333333
300    6.0000000
301    1.3333333
302   -1.0000000
303    2.6666667
304   -3.3333333
305    0.0000000
306    5.6666667
307   -7.6666667
308   -1.3333333
309   -1.6666667
310   -4.6666667
311   -1.6666667
312   -5.3333333
313    6.0000000
314    2.0000000
315   -4.6666667
316    0.6666667
317    2.3333333
318    0.6666667
319   -1.6666667
320    0.3333333
321    2.6666667
322   -7.3333333
323    6.3333333
324   -6.3333333
325   -1.3333333
326   -3.3333333
327    8.3333333
328    7.6666667
329   -3.3333333
330   10.3333333
331   -1.3333333
332    5.6666667
333    2.6666667
334   -1.0000000
335    7.6666667
336    5.0000000
337    5.6666667
338    4.0000000
339   -0.6666667
340   -0.3333333
341    0.0000000
342    3.3333333
343    0.6666667
344    0.3333333
345   -1.3333333
346   -9.3333333
347   -9.3333333
348   -5.0000000
349    6.6666667
350    0.3333333
351    5.3333333
352    1.6666667
353    3.3333333
354    5.0000000
355   -9.0000000
356   -1.0000000
357    0.3333333
358   -3.0000000
359    2.0000000
360   -9.0000000
361   -3.3333333
362   -0.3333333
363   -0.3333333
364    4.6666667
365   -2.3333333
366    6.0000000
367   -4.3333333
368   -7.0000000
369   -1.6666667
370    9.3333333
371   -7.0000000
372   -2.3333333
373   -8.3333333
374   -2.3333333
375    2.6666667
376   -0.3333333
377    0.0000000
378    7.3333333
379    8.6666667
380   -2.6666667
381   -2.6666667
382    6.3333333
383    2.6666667
384   10.6666667
385    7.6666667
386    4.3333333
387    1.0000000
388    1.3333333
389    6.3333333
390    0.0000000
391   -0.6666667
392    0.0000000
393   -6.6666667
394    6.6666667
395    0.3333333
396   -1.0000000
397    2.3333333
398    5.0000000
399    1.6666667
400    5.0000000
401   -4.6666667
402   -5.3333333
403    5.3333333
404   10.6666667
405    4.6666667
406   -6.6666667
407    6.3333333
408   -2.6666667
409    1.6666667
410   -7.3333333
411    1.3333333
412   -6.3333333
413   -0.6666667
414   -4.6666667
415    9.6666667
416   -0.6666667
417   -1.0000000
418    1.6666667
419    0.6666667
420   -8.0000000
421   -4.3333333
422    3.6666667
423   -9.0000000
424    1.6666667
425   -5.6666667
426   -1.6666667
427    0.0000000
428   -3.3333333
429   -3.6666667
430   -5.0000000
431   -7.6666667
432   -1.0000000
433   -4.6666667
434   -3.6666667
435   -1.3333333
436   -2.3333333
437    7.6666667
438    1.0000000
439    0.0000000
440   -0.3333333
441   -2.3333333
442   -2.3333333
443   -7.3333333
444   -5.6666667
445    6.0000000
446    1.6666667
447   10.0000000
448   -4.6666667
449   -5.0000000
450   -3.6666667
451   -6.6666667
452   -2.0000000
453   -8.0000000
454   -8.0000000
455    4.6666667
456   -4.6666667
457   -2.6666667
458    7.3333333
459   -3.0000000
460   -3.0000000
461    6.3333333
462    9.6666667
463   -6.3333333
464   -2.0000000
465   -0.3333333
466   -6.0000000
467   -4.0000000
468   -6.6666667
469   -3.6666667
470   -2.6666667
471   -9.6666667
472   -0.3333333
473    2.0000000
474    0.3333333
475    0.0000000
476    1.6666667
477   -3.3333333
478    7.3333333
479    1.3333333
480    2.6666667
481   -1.0000000
482   -3.0000000
483   -3.0000000
484    3.3333333
485   -1.0000000
486    1.0000000
487   -5.3333333
488   -8.6666667
489    6.6666667
490    1.6666667
491   -4.3333333
492    5.6666667
493   -2.6666667
494   -6.3333333
495   -3.6666667
496   -1.6666667
497   -6.0000000
498   -1.0000000
499    2.3333333
500   -7.6666667
501    6.3333333
502    4.6666667
503   -0.3333333
504    5.3333333
505    2.6666667
506    6.0000000
507    9.3333333
508    0.0000000
509   -2.6666667
510    0.6666667
511   -3.6666667
512   -8.3333333
513   -0.6666667
514   -1.6666667
515   -3.6666667
516    0.0000000
517   -5.3333333
518   -6.6666667
519    8.3333333
520    1.3333333
521   -0.6666667
522   -5.0000000
523   -2.0000000
524   -1.0000000
525    3.3333333
526    1.0000000
527   -5.0000000
528    3.3333333
529    4.0000000
530    4.6666667
531    6.6666667
532    8.6666667
533   -3.3333333
534   -7.0000000
535    5.6666667
536    1.3333333
537    4.0000000
538    5.6666667
539   -7.0000000
540   -0.3333333
541    5.0000000
542    1.3333333
543    3.0000000
544    1.0000000
545   -1.6666667
546    5.3333333
547   -2.3333333
548    8.6666667
549   -0.6666667
550   -4.0000000
551    3.6666667
552    4.3333333
553    4.6666667
554   -5.6666667
555   -5.3333333
556    2.3333333
557   -3.6666667
558    3.3333333
559   -9.3333333
560   -8.6666667
561   -1.3333333
562    1.3333333
563   -3.3333333
564   -6.6666667
565    2.6666667
566   -1.3333333
567    1.3333333
568   -7.3333333
569    7.6666667
570    0.6666667
571    0.0000000
572   -2.6666667
573   -8.0000000
574    3.6666667
575   -1.0000000
576   -0.6666667
577   -6.6666667
578   -5.0000000
579   -9.0000000
580    2.3333333
581    2.3333333
582    0.6666667
583    0.0000000
584    5.0000000
585    6.0000000
586   -1.3333333
587   -8.3333333
588   -9.0000000
589    4.3333333
590   -8.3333333
591    3.6666667
592   -5.3333333
593    3.3333333
594   -2.0000000
595    1.0000000
596    1.6666667
597   -8.3333333
598   -6.3333333
599    3.6666667
600   -2.3333333
601   -2.6666667
602    0.6666667
603    2.3333333
604    7.6666667
605    0.3333333
606   -4.3333333
607    4.3333333
608   -2.0000000
609   -0.3333333
610    0.6666667
611   -3.6666667
612    1.3333333
613    2.6666667
614    6.0000000
615   -0.6666667
616   -2.0000000
617    3.6666667
618   -6.3333333
619    4.0000000
620   -2.0000000
621    0.0000000
622    1.0000000
623   -4.0000000
624   -0.6666667
625   -3.0000000
626    2.0000000
627    5.3333333
628   -3.3333333
629  -10.0000000
630    0.3333333
631    4.0000000
632    4.0000000
633    1.6666667
634   -0.6666667
635   -6.6666667
636    2.0000000
637   -3.0000000
638   -5.0000000
639    9.0000000
640    6.0000000
641   -2.0000000
642   -5.6666667
643    6.6666667
644    1.6666667
645    2.0000000
646    4.0000000
647    0.3333333
648    0.0000000
649   -2.6666667
650   -1.3333333
651    5.6666667
652    1.0000000
653   -3.3333333
654   -4.6666667
655    2.0000000
656   -7.6666667
657   -4.3333333
658    5.3333333
659    0.6666667
660   -0.6666667
661   -9.3333333
662    8.6666667
663    3.0000000
664   -4.0000000
665    3.0000000
666    6.3333333
667    9.6666667
668    4.3333333
669   -2.6666667
670    6.3333333
671    2.3333333
672    3.0000000
673    3.3333333
674    3.6666667
675    5.0000000
676   -2.3333333
677   -4.6666667
678    6.3333333
679    4.6666667
680   -1.3333333
681    3.0000000
682    7.0000000
683    3.0000000
684    4.6666667
685    0.6666667
686    2.3333333
687  -10.3333333
688   -8.0000000
689   -3.0000000
690   -2.0000000
691    7.3333333
692    2.0000000
693   -1.6666667
694    6.0000000
695    1.6666667
696    6.0000000
697    7.0000000
698   -9.3333333
699    6.6666667
700   -5.6666667
701    4.0000000
702    0.3333333
703   -1.3333333
704    5.0000000
705   -5.0000000
706   -0.3333333
707    7.3333333
708    3.3333333
709    1.6666667
710   -0.3333333
711    8.0000000
712    3.3333333
713    2.0000000
714    2.3333333
715   -4.0000000
716   -1.6666667
717    3.3333333
718    2.3333333
719   -2.3333333
720    1.3333333
721    6.3333333
722    5.0000000
723    0.6666667
724    5.0000000
725    1.6666667
726   -1.3333333
727  -11.3333333
728   -4.6666667
729   -2.0000000
730   -5.6666667
731    4.0000000
732    0.6666667
733   -6.3333333
734   -6.6666667
735   -4.3333333
736   -2.0000000
737    1.0000000
738   -2.6666667
739   -8.0000000
740    2.0000000
741   -4.0000000
742   -1.3333333
743   -0.6666667
744   10.0000000
745   -2.3333333
746   -0.6666667
747    6.3333333
748   -3.3333333
749   10.6666667
750   -2.3333333
751   14.6666667
752   -1.3333333
753   -1.3333333
754   -2.6666667
755   -0.6666667
756    4.3333333
757   -1.0000000
758    0.3333333
759   -6.3333333
760    7.3333333
761    2.6666667
762   -0.6666667
763   -9.3333333
764    0.6666667
765   -1.6666667
766   -6.3333333
767   -1.3333333
768    7.3333333
769   -9.6666667
770   -1.0000000
771    9.0000000
772   -1.6666667
773   -2.3333333
774   -6.0000000
775    2.3333333
776   -2.0000000
777    2.3333333
778    1.0000000
779    3.3333333
780    0.0000000
781    1.6666667
782   -0.3333333
783   -0.3333333
784   -6.3333333
785    0.6666667
786    3.6666667
787   -2.3333333
788    6.6666667
789    6.0000000
790    3.0000000
791    7.0000000
792   -3.6666667
793   -0.3333333
794   -0.3333333
795   -1.6666667
796   -2.6666667
797    2.6666667
798   -5.3333333
799    7.6666667
800   -6.0000000
801    2.0000000
802   -2.6666667
803    4.0000000
804   -3.3333333
805    4.0000000
806    2.3333333
807   -1.3333333
808   -2.6666667
809   -5.3333333
810   -2.0000000
811    1.0000000
812   -7.0000000
813    1.3333333
814    0.3333333
815    3.6666667
816    9.0000000
817    7.3333333
818    0.6666667
819   10.0000000
820   -3.3333333
821    0.0000000
822    0.6666667
823   -0.3333333
824   -4.6666667
825    5.6666667
826    6.3333333
827   -0.6666667
828   -1.0000000
829    0.6666667
830    9.0000000
831    0.0000000
832    3.0000000
833    1.6666667
834    2.3333333
835   -5.3333333
836   -3.0000000
837   -5.6666667
838    0.6666667
839   -6.0000000
840   -2.0000000
841    6.6666667
842    0.6666667
843   -1.3333333
844    2.3333333
845    3.6666667
846   -1.3333333
847   -5.0000000
848    0.6666667
849    3.6666667
850    5.0000000
851    6.0000000
852    1.3333333
853   11.6666667
854    4.0000000
855   -3.3333333
856   -5.0000000
857   -4.0000000
858   -1.6666667
859    1.3333333
860   -3.0000000
861    8.6666667
862    2.0000000
863   -5.0000000
864   -1.3333333
865    3.0000000
866   -3.3333333
867   -2.3333333
868   -1.6666667
869    7.0000000
870    5.0000000
871    1.0000000
872   -5.0000000
873    3.3333333
874    5.3333333
875   -0.6666667
876   -5.3333333
877   -3.3333333
878   -6.0000000
879    5.3333333
880    1.3333333
881   -2.6666667
882    3.6666667
883   -2.6666667
884   -6.3333333
885   -5.0000000
886    0.0000000
887   -9.0000000
888   -9.3333333
889   -5.0000000
890    4.3333333
891   -0.6666667
892    2.0000000
893    4.6666667
894   -7.6666667
895   -5.6666667
896    5.0000000
897    3.6666667
898    0.3333333
899    3.0000000
900   -6.0000000
901    0.3333333
902   -2.6666667
903   -0.6666667
904    2.6666667
905    1.6666667
906    0.6666667
907    2.3333333
908   -1.0000000
909   -2.6666667
910    0.3333333
911    3.6666667
912    0.0000000
913   -5.6666667
914   -1.0000000
915    0.6666667
916   -0.6666667
917   -1.0000000
918    1.3333333
919   -8.6666667
920  -10.6666667
921   -3.0000000
922    1.3333333
923    4.6666667
924    3.6666667
925    8.6666667
926    5.0000000
927   -2.0000000
928    2.0000000
929    1.0000000
930    5.0000000
931    1.6666667
932    4.3333333
933    3.3333333
934   -6.0000000
935   -2.3333333
936    3.6666667
937    0.3333333
938    2.0000000
939   -8.6666667
940    4.3333333
941    4.0000000
942   -1.6666667
943    3.6666667
944    0.3333333
945    2.0000000
946   -6.6666667
947   -3.0000000
948   -4.3333333
949    3.0000000
950   -7.0000000
951   -2.3333333
952    1.6666667
953   -1.6666667
954   -8.0000000
955   -6.3333333
956   -1.6666667
957   -5.3333333
958   -4.0000000
959    1.0000000
960    0.6666667
961    1.6666667
962    7.3333333
963    3.0000000
964    0.6666667
965    6.3333333
966    0.0000000
967   -7.6666667
968   -2.3333333
969    8.0000000
970    5.3333333
971  -11.3333333
972    4.0000000
973   -4.0000000
974   -1.0000000
975    1.3333333
976    4.6666667
977    2.6666667
978    3.3333333
979    9.3333333
980   -0.3333333
981    2.3333333
982   -4.3333333
983    1.6666667
984   -2.3333333
985   -2.3333333
986   -0.3333333
987    6.3333333
988   -4.3333333
989   -2.6666667
990    3.0000000
991    2.6666667
992    1.0000000
993    6.6666667
994    5.0000000
995    6.0000000
996    4.0000000
997    4.0000000
998   -4.3333333
999    1.3333333
1000  12.3333333
1001  -5.3333333
1002  -1.3333333
1003  -2.3333333
1004   6.6666667
1005   3.3333333
1006  -5.0000000
1007  -2.0000000
1008  -0.6666667
1009  -5.6666667
1010   5.0000000
1011  -0.6666667
1012  -7.3333333
1013   2.6666667
1014   3.6666667
1015  -1.6666667
1016   0.3333333
1017   3.6666667
1018  -3.6666667
1019   2.6666667
1020   0.6666667
1021   0.6666667
1022   0.6666667
1023   4.0000000
1024  -2.0000000
1025   0.6666667
1026  -2.0000000
1027   8.3333333
1028   0.6666667
1029   5.0000000
1030  -7.0000000
1031  -1.3333333
1032  -6.6666667
1033  -4.6666667
1034   7.6666667
1035  -2.3333333
1036   8.6666667
1037  -1.6666667
1038   2.3333333
1039  -0.3333333
1040  -2.6666667
1041  -5.3333333
1042   1.6666667
1043   8.6666667
1044  -7.0000000
1045  -2.3333333
1046  -3.6666667
1047   0.6666667
1048   5.0000000
1049   6.6666667
1050   1.6666667
1051   0.3333333
1052   3.0000000
1053   5.6666667
1054   6.0000000
1055  -3.6666667
1056  -0.3333333
1057   2.3333333
1058   5.6666667
1059   3.6666667
1060  -2.6666667
1061   6.0000000
1062  -2.0000000
1063   0.0000000
1064  -1.3333333
1065  -1.3333333
1066  -4.0000000
1067  -2.3333333
1068   1.3333333
1069   0.0000000
1070  -7.3333333
1071  -7.6666667
1072  -5.0000000
1073   0.0000000
1074   5.6666667
1075  -2.6666667
1076  10.3333333
1077   1.3333333
1078   0.0000000
1079   3.3333333
1080  -0.6666667
1081   0.6666667
1082  -4.0000000
1083   3.3333333
1084   6.0000000
1085  -4.0000000
1086   4.0000000
1087   3.3333333
1088   3.6666667
1089   1.0000000
1090   0.3333333
1091  -0.3333333
1092   7.6666667
1093   0.3333333
1094   1.0000000
1095  -2.3333333
1096   0.6666667
1097   9.6666667
1098   0.3333333
1099   6.3333333
1100   1.3333333
1101  -4.0000000
1102   6.6666667
1103   3.0000000
1104   6.3333333
1105   5.3333333
1106  -2.6666667
1107  -5.3333333
1108   3.3333333
1109  -2.0000000
1110   1.0000000
1111   1.0000000
1112   0.6666667
1113  -5.6666667
1114  -3.6666667
1115   2.0000000
1116  -4.6666667
1117  -3.0000000
1118   7.3333333
1119   7.6666667
1120   0.6666667
1121   2.0000000
1122   1.0000000
1123   1.3333333
1124  -6.0000000
1125  -1.6666667
1126  -6.0000000
1127  -3.0000000
1128  -9.3333333
1129  -3.3333333
1130  -5.0000000
1131  -2.3333333
1132  -3.3333333
1133   0.3333333
1134   3.3333333
1135  -1.0000000
1136   1.6666667
1137   0.0000000
1138  -0.6666667
1139   7.3333333
1140   3.0000000
1141   1.3333333
1142  11.6666667
1143  -4.0000000
1144   6.6666667
1145  -2.6666667
1146  -0.6666667
1147  -6.6666667
1148   0.0000000
1149   2.6666667
1150  -5.3333333
1151  -2.6666667
1152  -2.0000000
1153  -1.6666667
1154   0.0000000
1155   1.6666667
1156   8.0000000
1157   0.3333333
1158   8.6666667
1159   1.6666667
1160   2.3333333
1161   7.0000000
1162  -9.3333333
1163   0.6666667
1164   3.0000000
1165  -2.3333333
1166   0.0000000
1167   1.6666667
1168   3.6666667
1169   3.0000000
1170  -7.3333333
1171   0.6666667
1172  -7.3333333
1173   4.0000000
1174  -2.6666667
1175   5.6666667
1176  -5.6666667
1177   1.3333333
1178  -7.0000000
1179  -3.3333333
1180   3.0000000
1181   4.3333333
1182  -5.3333333
1183  -1.6666667
1184  -1.6666667
1185   7.0000000
1186   2.3333333
1187  -0.6666667
1188   4.3333333
1189   1.6666667
1190  -2.3333333
1191   1.6666667
1192  -4.0000000
1193  -2.6666667
1194   8.6666667
1195  -0.6666667
1196  -3.6666667
1197  -0.6666667
1198  -1.3333333
1199  -4.6666667
1200  -0.6666667
1201   1.6666667
1202   6.3333333
1203  -3.0000000
1204  -5.0000000
1205  -2.6666667
1206  -2.6666667
1207   0.0000000
1208  -6.6666667
1209   2.0000000
1210   3.6666667
1211  -4.0000000
1212   4.0000000
1213  -2.0000000
1214   0.6666667
1215  -4.3333333
1216  10.6666667
1217  -2.3333333
1218   1.3333333
1219  -0.3333333
1220   6.3333333
1221  -3.0000000
1222   0.0000000
1223  -2.6666667
1224  -2.3333333
1225  -5.6666667
1226   2.6666667
1227   7.6666667
1228  -9.6666667
1229  -4.0000000
1230  -5.0000000
1231  -2.0000000
1232   8.0000000
1233  -8.0000000
1234  -2.3333333
1235  -2.6666667
1236   6.3333333
1237  -8.0000000
1238   1.3333333
1239  -6.3333333
1240  -4.3333333
1241   4.0000000
1242   4.3333333
1243  -7.0000000
1244   2.0000000
1245  -2.6666667
1246   5.0000000
1247   1.6666667
1248  -5.6666667
1249   2.0000000
1250   0.6666667
1251  -6.6666667
1252   2.0000000
1253   2.6666667
1254  -2.0000000
1255   5.0000000
1256   2.6666667
1257  -5.3333333
1258   1.6666667
1259  -0.3333333
1260   4.6666667
1261   4.6666667
1262   3.0000000
1263 -11.0000000
1264   1.3333333
1265   1.3333333
1266   0.0000000
1267  -7.6666667
1268   4.0000000
1269  -1.3333333
1270   2.0000000
1271   3.3333333
1272  -7.6666667
1273   1.0000000
1274  -2.6666667
1275  -3.6666667
1276   5.0000000
1277   7.0000000
1278   7.6666667
1279  -4.6666667
1280   2.6666667
1281  -4.3333333
1282  -7.6666667
1283  -2.3333333
1284  -2.6666667
1285   9.3333333
1286  -2.0000000
1287  -1.0000000
1288  -1.3333333
1289   2.6666667
1290  -2.0000000
1291  -9.0000000
1292   1.3333333
1293   1.3333333
1294   2.6666667
1295   2.3333333
1296  -5.3333333
1297   1.6666667
1298   2.6666667
1299  -0.3333333
1300  -1.0000000
1301   1.6666667
1302   3.6666667
1303   4.0000000
1304  -7.3333333
1305  -1.6666667
1306  -5.6666667
1307   7.0000000
1308   4.0000000
1309  -1.3333333
1310   1.3333333
1311  -3.0000000
1312  -4.0000000
1313  -4.3333333
1314  -1.3333333
1315   1.3333333
1316   1.6666667
1317  -4.3333333
1318   1.6666667
1319  -4.0000000
1320  -6.3333333
1321   6.3333333
1322  -3.0000000
1323   7.6666667
1324   8.6666667
1325  -7.0000000
1326  -2.3333333
1327  -7.6666667
1328   5.3333333
1329   1.3333333
1330  -5.6666667
1331   8.6666667
1332  12.3333333
1333   2.6666667
1334 -11.6666667
1335  -1.0000000
1336  -1.3333333
1337  -7.3333333
1338  -6.6666667
1339  -8.3333333
1340  -1.6666667
1341   3.0000000
1342  -2.0000000
1343  -8.3333333
1344  -5.0000000
1345   5.0000000
1346  -3.3333333
1347   0.6666667
1348   1.3333333
1349  -6.3333333
1350   1.3333333
1351  -2.3333333
1352  -7.0000000
1353   0.3333333
1354  -2.6666667
1355   7.3333333
1356  -6.0000000
1357   2.0000000
1358  -1.3333333
1359  -3.0000000
1360   3.0000000
1361   1.6666667
1362  -3.6666667
1363  -7.0000000
1364   5.6666667
1365  -5.6666667
1366   3.3333333
1367   2.0000000
1368  -5.3333333
1369   2.0000000
1370   3.6666667
1371  -3.0000000
1372  -6.6666667
1373  -7.6666667
1374   0.0000000
1375   4.3333333
1376   3.6666667
1377   4.6666667
1378  -6.6666667
1379   0.0000000
1380  -7.0000000
1381   7.0000000
1382   0.6666667
1383   3.0000000
1384   4.3333333
1385   0.6666667
1386   3.3333333
1387  -5.3333333
1388  10.0000000
1389   2.0000000
1390 -12.0000000
1391  -0.6666667
1392  -3.0000000
1393   2.3333333
1394   2.6666667
1395  -5.6666667
1396   5.6666667
1397   6.0000000
1398   2.6666667
1399  -4.3333333
1400   7.0000000
1401   0.3333333
1402  -2.0000000
1403   1.0000000
1404  -1.3333333
1405   0.3333333
1406  -5.0000000
1407   0.6666667
1408   1.0000000
1409  -7.0000000
1410  -6.3333333
1411  -9.3333333
1412  -5.0000000
1413  -5.6666667
1414  -2.0000000
1415   3.6666667
1416   3.3333333
1417  -7.3333333
1418   2.0000000
1419  -2.3333333
1420  -2.6666667
1421  -9.3333333
1422  -1.0000000
1423  -8.6666667
1424   6.6666667
1425  -5.0000000
1426  -3.3333333
1427  -5.0000000
1428  -5.0000000
1429   2.6666667
1430  -6.6666667
1431  -3.0000000
1432  -0.3333333
1433   7.3333333
1434  10.0000000
1435   9.3333333
1436   7.3333333
1437   8.0000000
1438   6.6666667
1439  -8.6666667
1440  -0.3333333
1441  -3.3333333
1442   4.6666667
1443  -2.3333333
1444   9.6666667
1445  -6.0000000
1446  -2.6666667
1447   0.0000000
1448  -3.6666667
1449  -6.0000000
1450  -1.0000000
1451  -1.6666667
1452  -0.6666667
1453   2.3333333
1454  -3.6666667
1455   0.3333333
1456  -4.3333333
1457   1.6666667
1458   0.0000000
1459  -6.0000000
1460   2.6666667
1461   5.0000000
1462  -4.0000000
1463   2.6666667
1464  -3.0000000
1465   1.6666667
1466   0.3333333
1467  -3.6666667
1468  -1.6666667
1469   1.0000000
1470   0.3333333
1471  -0.3333333
1472   0.3333333
1473  -3.0000000
1474  -4.6666667
1475   3.0000000
1476   5.3333333
1477   3.6666667
1478   2.3333333
1479  -6.0000000
1480  -0.6666667
1481   2.0000000
1482   4.6666667
1483   3.3333333
1484  -7.0000000
1485  -8.3333333
1486  -3.6666667
1487   4.0000000
1488  -4.3333333
1489   6.6666667
1490  -5.3333333
1491  -5.6666667
1492  -2.0000000
1493   1.3333333
1494  -5.3333333
1495   4.3333333
1496   2.6666667
1497   6.0000000
1498   1.0000000
1499  -4.0000000
1500   1.3333333
1501   6.0000000
1502   1.6666667
1503  -9.0000000
1504  -4.3333333
1505  -0.3333333
1506   0.0000000
1507  -2.3333333
1508  -1.0000000
1509  -5.6666667
1510  -2.3333333
1511  -9.6666667
1512   0.3333333
1513  -2.3333333
1514  -1.3333333
1515   0.6666667
1516   5.0000000
1517   4.0000000
1518   6.3333333
1519  -3.0000000
1520   0.0000000
1521  -5.3333333
1522  -5.3333333
1523  -6.3333333
1524   3.3333333
1525   0.3333333
1526   8.0000000
1527   2.3333333
1528   3.6666667
1529   2.0000000
1530  -2.0000000
1531   0.3333333
1532   1.6666667
1533  -4.6666667
1534  -4.3333333
1535   4.0000000
1536  -1.3333333
1537  -5.6666667
1538   4.6666667
1539  -4.6666667
1540  -5.0000000
1541  -7.3333333
1542  -7.6666667
1543   3.0000000
1544  -1.6666667
1545  -0.6666667
1546  -7.6666667
1547  -7.3333333
1548  -2.6666667
1549  -4.6666667
1550  -0.3333333
1551   0.3333333
1552  -3.3333333
1553   2.3333333
1554  -1.3333333
1555   2.0000000
1556   6.3333333
1557   4.6666667
1558  -4.3333333
1559   9.6666667
1560  -5.3333333
1561  -0.6666667
1562   5.6666667
1563  -8.3333333
1564   1.0000000
1565  -6.0000000
1566   3.0000000
1567   4.6666667
1568  -4.6666667
1569  -0.3333333
1570   0.0000000
1571   3.3333333
1572   0.0000000
1573   9.3333333
1574  -3.0000000
1575   1.0000000
1576   2.6666667
1577  -4.6666667
1578   6.6666667
1579   2.0000000
1580  -6.0000000
1581 -11.6666667
1582   5.3333333
1583  -9.6666667
1584  -4.0000000
1585   5.3333333
1586   6.0000000
1587  -1.3333333
1588  -1.6666667
1589  -1.3333333
1590  -0.3333333
1591   0.3333333
1592   1.6666667
1593  -6.6666667
1594   0.3333333
1595  -3.3333333
1596   1.3333333
1597   6.6666667
1598   4.3333333
1599  -7.0000000
1600   1.3333333
1601   1.0000000
1602   5.0000000
1603  -2.3333333
1604   5.0000000
1605   3.3333333
1606  -2.6666667
1607   2.3333333
1608  -0.6666667
1609   3.6666667
1610   2.3333333
1611  -1.3333333
1612  -6.6666667
1613  -4.3333333
1614  -3.6666667
1615   3.0000000
1616  -3.3333333
1617  -8.3333333
1618  -1.3333333
1619   0.3333333
1620   2.0000000
1621   1.0000000
1622   6.6666667
1623   2.3333333
1624   9.6666667
1625  -6.6666667
1626   2.6666667
1627  -1.3333333
1628   2.3333333
1629  -6.3333333
1630   5.3333333
1631   2.3333333
1632  -7.3333333
1633  -0.3333333
1634  -6.0000000
1635  -2.6666667
1636  -2.3333333
1637   0.6666667
1638   2.0000000
1639  -3.0000000
1640  -1.3333333
1641  -4.0000000
1642  -2.6666667
1643  -1.6666667
1644  -4.3333333
1645   0.0000000
1646   0.0000000
1647   4.3333333
1648   1.6666667
1649   9.3333333
1650   2.0000000
1651  -0.6666667
1652 -11.0000000
1653   0.0000000
1654   3.6666667
1655  -5.0000000
1656  -1.0000000
1657  -3.3333333
1658  -1.6666667
1659  -2.3333333
1660  -4.0000000
1661  -0.6666667
1662   1.0000000
1663   7.6666667
1664  -9.3333333
1665  -2.3333333
1666   4.3333333
1667   4.0000000
1668   0.0000000
1669   5.6666667
1670  -3.6666667
1671   3.6666667
1672   2.0000000
1673   0.3333333
1674   5.0000000
1675   3.0000000
1676  -2.6666667
1677  -2.3333333
1678  -4.0000000
1679   4.6666667
1680  -8.3333333
1681   3.3333333
1682   3.3333333
1683  -1.3333333
1684  -3.6666667
1685   1.6666667
1686   1.6666667
1687  -3.3333333
1688   0.6666667
1689  -1.0000000
1690   2.0000000
1691  -3.0000000
1692   4.0000000
1693  -4.6666667
1694   8.6666667
1695  -6.6666667
1696   6.3333333
1697  -7.6666667
1698  -1.0000000
1699  -8.3333333
1700   8.3333333
1701   3.3333333
1702   2.6666667
1703  -2.3333333
1704  14.0000000
1705  -2.3333333
1706   2.6666667
1707  -3.0000000
1708  -6.6666667
1709  -5.3333333
1710  -0.3333333
1711  -3.0000000
1712  -2.3333333
1713   3.6666667
1714  -1.6666667
1715  -3.6666667
1716  -0.6666667
1717   2.6666667
1718  -7.6666667
1719   1.6666667
1720   7.6666667
1721  -6.6666667
1722  -4.3333333
1723  -2.0000000
1724   4.3333333
1725   3.0000000
1726  -3.6666667
1727  -4.3333333
1728   2.3333333
1729  -2.3333333
1730  -0.6666667
1731   6.6666667
1732  -6.0000000
1733   3.3333333
1734   2.0000000
1735   2.0000000
1736  -0.3333333
1737 -10.3333333
1738   1.0000000
1739  -4.3333333
1740  -5.3333333
1741   1.0000000
1742  -0.3333333
1743   3.0000000
1744   2.3333333
1745   0.0000000
1746  -3.3333333
1747   2.6666667
1748  -5.6666667
1749   6.3333333
1750  -0.3333333
1751  -0.6666667
1752   2.0000000
1753  -7.0000000
1754  -2.6666667
1755  -7.3333333
1756   2.0000000
1757  -6.0000000
1758  -5.6666667
1759   2.0000000
1760   7.3333333
1761  -4.3333333
1762   2.0000000
1763   3.3333333
1764  -1.0000000
1765   2.0000000
1766   2.3333333
1767   1.3333333
1768   7.3333333
1769  -2.6666667
1770  -0.3333333
1771  -1.6666667
1772   3.0000000
1773   0.3333333
1774   1.3333333
1775  -1.6666667
1776   0.0000000
1777  -1.6666667
1778   5.3333333
1779  -4.0000000
1780  -6.3333333
1781   6.3333333
1782  -3.6666667
1783   8.0000000
1784  -6.6666667
1785   2.3333333
1786  -2.0000000
1787   0.3333333
1788  -5.3333333
1789   0.6666667
1790   5.0000000
1791  -4.3333333
1792  -4.6666667
1793  -1.6666667
1794   1.3333333
1795  -2.6666667
1796  -4.0000000
1797  -4.0000000
1798  -2.3333333
1799   1.3333333
1800   2.6666667
1801  -4.3333333
1802   4.0000000
1803  -4.6666667
1804   0.6666667
1805   2.3333333
1806  -0.3333333
1807  10.0000000
1808  -4.0000000
1809   6.0000000
1810  -3.3333333
1811  -0.6666667
1812  -7.3333333
1813  -5.3333333
1814   3.0000000
1815  -0.6666667
1816  -7.0000000
1817  -0.3333333
1818   5.6666667
1819   2.3333333
1820  -4.3333333
1821  -5.6666667
1822  -2.3333333
1823   6.6666667
1824  10.0000000
1825  -6.6666667
1826  -5.6666667
1827   2.3333333
1828   5.6666667
1829   5.0000000
1830  -7.0000000
1831   3.0000000
1832   3.0000000
1833   3.0000000
1834   6.3333333
1835   3.6666667
1836   3.6666667
1837  -1.6666667
1838   1.6666667
1839  -0.3333333
1840   1.3333333
1841  -8.3333333
1842  -2.6666667
1843  -6.6666667
1844  -2.3333333
1845   4.3333333
1846   5.3333333
1847  -9.0000000
1848  -3.6666667
1849   6.0000000
1850   6.0000000
1851   1.3333333
1852  -0.3333333
1853   3.0000000
1854  -0.3333333
1855   1.6666667
1856  -1.6666667
1857  -2.0000000
1858  -0.3333333
1859   4.0000000
1860  -7.0000000
1861  -0.6666667
1862   4.0000000
1863   2.6666667
1864   8.0000000
1865   5.3333333
1866   4.0000000
1867  -6.3333333
1868   4.3333333
1869  -2.6666667
1870  -3.3333333
1871   0.0000000
1872  -1.6666667
1873  11.0000000
1874  -0.6666667
1875   1.0000000
1876   4.3333333
1877  -4.0000000
1878  -5.3333333
1879   4.0000000
1880   2.0000000
1881   8.3333333
1882   0.6666667
1883   4.3333333
1884   7.0000000
1885 -12.0000000
1886  -6.0000000
1887  -1.6666667
1888   7.0000000
1889  -6.0000000
1890  -7.6666667
1891  -5.0000000
1892   2.6666667
1893   3.0000000
1894  -3.6666667
1895   3.6666667
1896  -8.0000000
1897   0.0000000
1898  -5.3333333
1899   1.0000000
1900  -2.3333333
1901   0.3333333
1902   9.0000000
1903   2.6666667
1904   1.6666667
1905   6.3333333
1906  -2.0000000
1907   6.0000000
1908  -0.3333333
1909   2.0000000
1910  -1.0000000
1911   2.6666667
1912   0.3333333
1913   4.3333333
1914  12.3333333
1915   3.3333333
1916   0.0000000
1917  -9.6666667
1918   2.0000000
1919  -3.0000000
1920  -4.0000000
1921  -0.6666667
1922   4.3333333
1923  -0.3333333
1924  -2.0000000
1925   5.6666667
1926  -5.3333333
1927  -3.3333333
1928  -9.3333333
1929   4.3333333
1930   5.6666667
1931  -0.6666667
1932   4.0000000
1933   4.6666667
1934  -9.6666667
1935  -5.6666667
1936   2.3333333
1937  -0.6666667
1938   0.3333333
1939  -2.6666667
1940  -0.3333333
1941   3.0000000
1942  -3.0000000
1943   1.0000000
1944  11.6666667
1945  -3.6666667
1946  -4.3333333
1947  -1.6666667
1948  -3.0000000
1949  -8.3333333
1950   4.0000000
1951   3.0000000
1952  -3.6666667
1953   5.0000000
1954   4.0000000
1955   8.0000000
1956  -2.3333333
1957   0.3333333
1958  -0.3333333
1959  -7.6666667
1960  -2.3333333
1961  -6.3333333
1962   6.0000000
1963   0.6666667
1964   2.6666667
1965   0.3333333
1966  -8.6666667
1967  -0.3333333
1968   4.3333333
1969  -6.6666667
1970   1.0000000
1971   6.0000000
1972   1.0000000
1973   0.6666667
1974  -3.6666667
1975   4.0000000
1976  -1.3333333
1977  -1.3333333
1978  -4.0000000
1979  -2.0000000
1980   3.6666667
1981  -2.3333333
1982   3.6666667
1983  -4.3333333
1984  -7.3333333
1985   5.6666667
1986   2.0000000
1987  -7.0000000
1988  -2.3333333
1989  -7.0000000
1990  -2.3333333
1991  -2.0000000
1992   7.0000000
1993   1.6666667
1994  -2.0000000
1995   3.3333333
1996  -1.6666667
1997   7.0000000
1998  -6.0000000
1999  -2.0000000
2000   1.6666667
2001   3.3333333
2002   0.6666667
2003   0.3333333
2004 -11.6666667
2005   1.0000000
2006  -7.6666667
2007  -1.3333333
2008  -5.3333333
2009  -3.6666667
2010   9.6666667
2011  10.3333333
2012   2.3333333
2013   3.6666667
2014  -4.6666667
2015  -0.6666667
2016   7.3333333
2017   1.0000000
2018  -3.0000000
2019   1.0000000
2020  -0.6666667
2021   4.0000000
2022   0.0000000
2023   2.0000000
2024  -1.3333333
2025   0.0000000
2026   1.0000000
2027  -7.3333333
2028  -0.3333333
2029   5.0000000
2030  -4.3333333
2031   6.6666667
2032  -6.0000000
2033  -9.0000000
2034  -1.3333333
2035  -4.6666667
2036  -2.0000000
2037 -12.3333333
2038  -1.6666667
2039  -2.0000000
2040  -3.0000000
2041   4.0000000
2042  -2.3333333
2043  -5.3333333
2044   1.0000000
2045   2.0000000
2046 -12.3333333
2047   4.0000000
2048   6.3333333
2049  -6.3333333
2050   8.3333333
2051   3.6666667
2052  -0.6666667
2053  -4.3333333
2054  -5.3333333
2055   2.0000000
2056  -1.3333333
2057   2.6666667
2058  -2.3333333
2059  -5.3333333
2060  -4.6666667
2061   9.3333333
2062  -1.6666667
2063   4.6666667
2064  -4.3333333
2065   3.6666667
2066   8.6666667
2067  -5.0000000
2068   0.0000000
2069  -1.3333333
2070  -2.6666667
2071  -6.0000000
2072  -3.0000000
2073   7.3333333
2074  -6.6666667
2075   4.0000000
2076  -4.0000000
2077   3.0000000
2078   2.0000000
2079   4.3333333
2080  -0.3333333
2081   1.0000000
2082  -4.3333333
2083   1.6666667
2084  -6.6666667
2085   4.3333333
2086   5.6666667
2087  -1.0000000
2088  -1.6666667
2089   6.3333333
2090   8.6666667
2091  -4.0000000
2092   5.6666667
2093   4.3333333
2094  -0.3333333
2095   0.6666667
2096  -3.0000000
2097   3.6666667
2098  -3.3333333
2099  -0.3333333
2100   5.0000000
2101  -6.3333333
2102  -5.3333333
2103   3.0000000
2104   0.6666667
2105  -4.6666667
2106   7.3333333
2107  -1.3333333
2108  -3.3333333
2109   2.3333333
2110   0.0000000
2111  -2.0000000
2112   1.6666667
2113  -0.3333333
2114   0.0000000
2115   6.0000000
2116  -6.0000000
2117   0.0000000
2118   1.3333333
2119  -7.0000000
2120  -4.3333333
2121  -2.6666667
2122 -10.0000000
2123  -1.0000000
2124   0.3333333
2125  -1.0000000
2126   1.3333333
2127   3.6666667
2128   5.6666667
2129 -10.0000000
2130  -6.6666667
2131   3.0000000
2132  -1.3333333
2133   5.0000000
2134  -1.6666667
2135  -3.3333333
2136  -2.0000000
2137   2.0000000
2138   5.0000000
2139  -7.0000000
2140   3.0000000
2141  -6.3333333
2142   1.6666667
2143   7.0000000
2144  -5.3333333
2145  -3.0000000
2146  -3.0000000
2147  -2.6666667
2148   2.3333333
2149  -9.3333333
2150  -5.0000000
2151   6.6666667
2152  -5.3333333
2153  -3.0000000
2154  -0.6666667
2155   1.6666667
2156  -7.3333333
2157  -0.6666667
2158  -3.0000000
2159   5.0000000
2160   0.6666667
2161  -2.3333333
2162  -2.0000000
2163   6.0000000
2164  -1.3333333
2165  -9.6666667
2166   4.3333333
2167   2.3333333
2168   2.6666667
2169  -0.3333333
2170   4.6666667
2171  -7.3333333
2172   3.3333333
2173   6.6666667
2174   3.3333333
2175   2.6666667
2176   2.0000000
2177  -0.6666667
2178   6.3333333
2179   4.6666667
2180  -1.3333333
2181   6.0000000
2182  -4.0000000
2183   3.0000000
2184  -5.0000000
2185  11.0000000
2186  -2.3333333
2187   4.3333333
2188   0.0000000
2189   3.3333333
2190   5.3333333
2191  -2.0000000
2192   3.6666667
2193   6.3333333
2194  -9.6666667
2195  -0.6666667
2196   4.0000000
2197   3.6666667
2198   6.6666667
2199  -4.3333333
2200   2.3333333
2201   1.6666667
2202   0.6666667
2203 -11.0000000
2204   5.3333333
2205  -7.3333333
2206   1.6666667
2207   0.0000000
2208  -8.0000000
2209  -3.3333333
2210  -1.0000000
2211  -8.6666667
2212  -1.3333333
2213  -3.6666667
2214   5.0000000
2215  -0.3333333
2216   2.0000000
2217  -2.0000000
2218   5.6666667
2219   3.6666667
2220   2.3333333
2221  -7.3333333
2222   5.3333333
2223  -3.0000000
2224   1.3333333
2225   6.3333333
2226   9.3333333
2227   6.3333333
2228  -3.3333333
2229   4.6666667
2230  -6.0000000
2231   2.0000000
2232  -0.6666667
2233   2.6666667
2234  -3.3333333
2235   3.0000000
2236  -7.0000000
2237  -2.0000000
2238   3.3333333
2239  -4.3333333
2240   3.0000000
2241  -5.0000000
2242   5.3333333
2243   1.6666667
2244   3.3333333
2245  -8.3333333
2246   4.0000000
2247  -4.3333333
2248   1.6666667
2249  -2.3333333
2250  -3.6666667
2251   2.3333333
2252   5.3333333
2253  -6.6666667
2254  -1.6666667
2255  -2.6666667
2256  -7.6666667
2257   6.3333333
2258  -1.3333333
2259  -6.3333333
2260   3.6666667
2261   0.0000000
2262   1.3333333
2263   3.6666667
2264   7.0000000
2265  -4.0000000
2266  -6.0000000
2267  -0.6666667
2268  -1.0000000
2269   4.0000000
2270  -2.3333333
2271  -1.0000000
2272  -1.0000000
2273   2.6666667
2274  -2.0000000
2275   2.3333333
2276   3.3333333
2277  -2.3333333
2278  -0.6666667
2279  -3.3333333
2280   8.0000000
2281   4.3333333
2282  -2.0000000
2283  -5.0000000
2284   0.0000000
2285  -3.3333333
2286  -7.6666667
2287  -4.0000000
2288  -2.0000000
2289  -6.0000000
2290  -4.3333333
2291  -3.3333333
2292   4.0000000
2293   3.3333333
2294  -9.3333333
2295  -1.0000000
2296   2.3333333
2297 -11.0000000
2298   6.3333333
2299  -1.0000000
2300   0.3333333
2301  -7.6666667
2302  -5.3333333
2303  -6.0000000
2304  -3.6666667
2305   3.0000000
2306  -6.6666667
2307  -5.0000000
2308   2.3333333
2309   4.0000000
2310   0.0000000
2311  -0.6666667
2312   7.6666667
2313  -2.6666667
2314   1.3333333
2315  -1.3333333
2316   3.6666667
2317  -5.3333333
2318  -1.6666667
2319   1.6666667
2320  -0.6666667
2321   3.6666667
2322   8.6666667
2323   0.3333333
2324  -1.6666667
2325   1.3333333
2326  -6.3333333
2327  -1.3333333
2328   2.3333333
2329  -0.3333333
2330   7.3333333
2331  -4.3333333
2332   0.3333333
2333   3.6666667
2334   2.3333333
2335   2.3333333
2336  -4.6666667
2337  -6.6666667
2338  -5.3333333
2339  -9.0000000
2340  -4.6666667
2341  -3.6666667
2342  -2.6666667
2343  -1.6666667
2344   3.0000000
2345  -1.0000000
2346  -4.6666667
2347   0.6666667
2348   6.0000000
2349   2.6666667
2350  -3.6666667
2351   0.0000000
2352  -3.3333333
2353   1.6666667
2354   0.0000000
2355   4.6666667
2356   4.0000000
2357   0.0000000
2358  -3.0000000
2359  -3.6666667
2360   2.6666667
2361  -8.6666667
2362  -2.3333333
2363   8.6666667
2364  -5.3333333
2365   3.0000000
2366   5.6666667
2367  -2.6666667
2368   4.3333333
2369  -2.3333333
2370   0.6666667
2371   6.0000000
2372  -1.3333333
2373   0.0000000
2374   6.3333333
2375  -3.3333333
2376   0.0000000
2377   0.3333333
2378  -8.0000000
2379   4.3333333
2380   0.3333333
2381   2.6666667
2382  -2.3333333
2383   6.3333333
2384   3.3333333
2385  -5.6666667
2386  -4.0000000
2387   9.3333333
2388   3.0000000
2389  -3.3333333
2390  -5.6666667
2391   1.3333333
2392   3.6666667
2393  -4.6666667
2394   0.3333333
2395  -0.3333333
2396   0.3333333
2397  -1.0000000
2398   1.0000000
2399  -2.6666667
2400   2.6666667
2401   3.0000000
2402  -3.3333333
2403  -7.3333333
2404   2.3333333
2405   2.6666667
2406   1.6666667
2407   5.3333333
2408   5.0000000
2409   0.3333333
2410   7.3333333
2411 -13.3333333
2412   0.6666667
2413  13.6666667
2414   2.0000000
2415  -2.6666667
2416   1.0000000
2417   6.3333333
2418   3.0000000
2419  -2.6666667
2420  -0.6666667
2421  -3.6666667
2422   0.6666667
2423  -8.3333333
2424  -1.6666667
2425  -1.6666667
2426   8.6666667
2427  -0.3333333
2428   0.6666667
2429  -3.3333333
2430  -2.0000000
2431   4.3333333
2432   2.3333333
2433  -5.3333333
2434   1.6666667
2435   0.6666667
2436  -4.6666667
2437  -3.0000000
2438   0.3333333
2439  -3.0000000
2440  -3.6666667
2441   1.3333333
2442   2.0000000
2443  -6.3333333
2444   3.3333333
2445  -0.3333333
2446   1.0000000
2447  -1.3333333
2448   5.6666667
2449   3.3333333
2450  -0.6666667
2451  -1.3333333
2452   2.0000000
2453  -3.3333333
2454  -3.0000000
2455  -9.0000000
2456  -4.0000000
2457   2.6666667
2458  -6.0000000
2459  -2.6666667
2460   8.6666667
2461   4.0000000
2462  -5.6666667
2463   4.6666667
2464  -1.0000000
2465   6.6666667
2466  -1.3333333
2467   4.0000000
2468  -3.0000000
2469  -1.3333333
2470   4.0000000
2471   8.3333333
2472   0.6666667
2473  -2.0000000
2474   8.0000000
2475  -4.0000000
2476  -3.6666667
2477   0.3333333
2478  -2.6666667
2479  -3.3333333
2480   2.0000000
2481  -4.3333333
2482  -0.3333333
2483   2.0000000
2484  -7.0000000
2485  -2.3333333
2486  -2.3333333
2487  -7.3333333
2488  -4.0000000
2489  -4.6666667
2490  -4.6666667
2491  -7.3333333
2492   3.6666667
2493   4.0000000
2494   3.3333333
2495   2.6666667
2496  -4.6666667
2497   6.0000000
2498   6.6666667
2499  -5.0000000
2500   2.0000000
2501   5.3333333
2502  -3.0000000
2503  -7.3333333
2504   5.0000000
2505  -1.0000000
2506   0.0000000
2507   1.3333333
2508  -2.0000000
2509  -0.3333333
2510  -2.3333333
2511  -1.3333333
2512   1.6666667
2513   5.3333333
2514  -2.3333333
2515  -7.0000000
2516  -1.6666667
2517  -6.6666667
2518   2.6666667
2519   2.0000000
2520  14.3333333
2521   6.3333333
2522   6.0000000
2523  -2.6666667
2524   0.6666667
2525  -3.3333333
2526   1.6666667
2527   5.3333333
2528   0.0000000
2529   2.0000000
2530   4.0000000
2531  -7.0000000
2532  -1.3333333
2533  -0.3333333
2534  -3.0000000
2535  -2.3333333
2536   5.0000000
2537   0.3333333
2538  -3.0000000
2539  -3.3333333
2540   4.0000000
2541   0.6666667
2542  -3.0000000
2543  -1.0000000
2544   3.0000000
2545   2.6666667
2546   4.6666667
2547  -2.0000000
2548   3.0000000
2549   2.6666667
2550   5.0000000
2551   6.0000000
2552  -0.6666667
2553  -0.6666667
2554   6.6666667
2555   1.3333333
2556  -2.6666667
2557   3.6666667
2558   2.3333333
2559  -3.3333333
2560   4.6666667
2561  -6.0000000
2562 -10.0000000
2563  -7.3333333
2564  -0.3333333
2565  -9.3333333
2566   4.3333333
2567  -8.0000000
2568   1.3333333
2569  -4.3333333
2570  -6.0000000
2571   1.3333333
2572   8.0000000
2573  -5.0000000
2574   6.0000000
2575  -5.0000000
2576   5.0000000
2577  -1.6666667
2578  -1.6666667
2579  -2.3333333
2580   1.3333333
2581  -1.3333333
2582  -1.0000000
2583   4.6666667
2584  -4.0000000
2585   3.6666667
2586   9.0000000
2587   3.3333333
2588   1.0000000
2589   5.6666667
2590  -4.3333333
2591  -5.0000000
2592   1.6666667
2593   0.0000000
2594   1.0000000
2595  -2.0000000
2596   8.6666667
2597   0.0000000
2598   9.3333333
2599  -5.6666667
2600   0.6666667
2601  -5.3333333
2602  -4.6666667
2603   7.3333333
2604   0.6666667
2605   5.0000000
2606   1.6666667
2607  -5.3333333
2608   0.0000000
2609  -2.3333333
2610   0.6666667
2611  -5.0000000
2612   3.0000000
2613   4.6666667
2614   0.3333333
2615   3.3333333
2616   7.3333333
2617   0.3333333
2618   1.3333333
2619  -4.0000000
2620  -2.6666667
2621  -2.6666667
2622  -2.6666667
2623  -3.3333333
2624  -4.3333333
2625  -0.3333333
2626  -4.6666667
2627   5.6666667
2628  -3.0000000
2629   4.3333333
2630  10.3333333
2631   2.3333333
2632   6.3333333
2633  -0.3333333
2634  -1.3333333
2635  -0.6666667
2636   2.0000000
2637  -7.3333333
2638  -4.6666667
2639   1.6666667
2640  11.3333333
2641   6.6666667
2642   0.6666667
2643  -7.0000000
2644  -0.3333333
2645  -3.0000000
2646  -4.3333333
2647  -4.0000000
2648  -3.3333333
2649  -0.6666667
2650  -2.6666667
2651   4.0000000
2652  -3.0000000
2653  -0.6666667
2654  10.3333333
2655   3.6666667
2656   4.3333333
2657  -6.3333333
2658  -5.0000000
2659   0.3333333
2660  -8.3333333
2661  -4.6666667
2662  -3.0000000
2663  -1.3333333
2664  -3.0000000
2665  -1.3333333
2666   7.3333333
2667   5.0000000
2668   3.6666667
2669   5.3333333
2670   0.0000000
2671   3.3333333
2672  -2.6666667
2673  -3.3333333
2674   3.0000000
2675   1.3333333
2676  -8.3333333
2677   5.3333333
2678   1.0000000
2679  -3.0000000
2680  -0.6666667
2681   3.6666667
2682  13.0000000
2683  -1.6666667
2684   4.6666667
2685  -6.6666667
2686   3.6666667
2687   4.3333333
2688  -6.6666667
2689   6.6666667
2690   3.3333333
2691  -4.6666667
2692  -1.0000000
2693   4.0000000
2694 -10.3333333
2695   4.0000000
2696  -5.6666667
2697  -2.0000000
2698   6.3333333
2699  -7.3333333
2700  -8.0000000
2701  -1.6666667
2702  -4.3333333
2703  -0.3333333
2704  -2.3333333
2705  -2.6666667
2706   1.6666667
2707   1.0000000
2708   4.0000000
2709  -6.6666667
2710   1.6666667
2711  -2.0000000
2712   6.6666667
2713   3.3333333
2714   1.3333333
2715   5.3333333
2716  -0.6666667
2717  -6.6666667
2718  -4.3333333
2719   2.6666667
2720  -3.6666667
2721  -1.0000000
2722   0.6666667
2723   1.6666667
2724  -4.0000000
2725   1.3333333
2726  -7.0000000
2727  -4.0000000
2728   4.3333333
2729   3.0000000
2730  -4.3333333
2731   2.6666667
2732  -0.6666667
2733  -2.6666667
2734   2.3333333
2735  -0.6666667
2736  -3.3333333
2737  -7.0000000
2738  -4.6666667
2739   7.0000000
2740  -9.0000000
2741  -8.6666667
2742   5.3333333
2743   2.0000000
2744  -1.3333333
2745  -5.6666667
2746  -7.0000000
2747  -1.0000000
2748   5.3333333
2749  -5.6666667
2750  -6.0000000
2751   0.3333333
2752   2.6666667
2753  -4.3333333
2754  -9.3333333
2755  -4.0000000
2756  -7.3333333
2757   2.6666667
2758  -2.0000000
2759   3.0000000
2760  -2.0000000
2761  -7.6666667
2762  -9.0000000
2763   8.6666667
2764  -3.3333333
2765   1.3333333
2766   5.0000000
2767  -1.0000000
2768   5.6666667
2769   6.3333333
2770   3.6666667
2771   2.3333333
2772   6.6666667
2773  -2.6666667
2774   3.0000000
2775  -7.3333333
2776   8.6666667
2777  -0.3333333
2778  -4.3333333
2779   0.3333333
2780  -2.6666667
2781   0.3333333
2782  -6.3333333
2783  -5.3333333
2784  -0.6666667
2785  -0.3333333
2786  -2.6666667
2787   1.3333333
2788   1.3333333
2789  -3.0000000
2790   3.6666667
2791   4.0000000
2792  -1.3333333
2793   1.0000000
2794  -3.3333333
2795  -2.6666667
2796  -1.0000000
2797   4.0000000
2798  -1.0000000
2799  -7.6666667
2800  -0.6666667
2801   0.6666667
2802   4.3333333
2803  -1.3333333
2804  -2.0000000
2805   2.3333333
2806   8.3333333
2807  -4.0000000
2808   1.3333333
2809   0.6666667
2810   3.3333333
2811  -7.0000000
2812   7.3333333
2813  -5.0000000
2814  -3.0000000
2815   4.3333333
2816   5.3333333
2817  -0.6666667
2818  -3.3333333
2819   3.6666667
2820 -10.0000000
2821   6.3333333
2822  -9.3333333
2823  -1.6666667
2824  -5.6666667
2825   5.0000000
2826   3.0000000
2827  -1.3333333
2828  -3.3333333
2829   7.6666667
2830   5.0000000
2831  -2.0000000
2832   4.3333333
2833   3.3333333
2834   6.3333333
2835   4.3333333
2836  -6.3333333
2837  -3.6666667
2838  -0.3333333
2839   5.0000000
2840  -1.0000000
2841  -1.6666667
2842  -1.6666667
2843  -0.6666667
2844   7.0000000
2845  -0.6666667
2846  -0.6666667
2847   5.3333333
2848  -3.3333333
2849   1.6666667
2850  -3.0000000
2851   1.3333333
2852  -4.6666667
2853  -4.3333333
2854   5.0000000
2855  -2.0000000
2856  -1.0000000
2857  -1.3333333
2858  -5.6666667
2859   0.0000000
2860  -2.0000000
2861   0.6666667
2862   5.0000000
2863  -6.3333333
2864  -2.6666667
2865  -3.6666667
2866   0.6666667
2867  -2.6666667
2868  -1.6666667
2869   6.3333333
2870  -4.6666667
2871  -1.6666667
2872  -1.0000000
2873  -3.0000000
2874   6.3333333
2875   0.3333333
2876   7.3333333
2877  10.3333333
2878  -0.3333333
2879  -6.6666667
2880  -1.3333333
2881  -1.6666667
2882  -2.6666667
2883   3.3333333
2884  -1.3333333
2885   1.0000000
2886  -0.6666667
2887   7.3333333
2888   5.0000000
2889   6.0000000
2890   2.6666667
2891  -1.3333333
2892  -4.0000000
2893  -4.6666667
2894   3.3333333
2895   1.0000000
2896  -0.3333333
2897  -6.3333333
2898 -13.0000000
2899   4.3333333
2900   2.0000000
2901  -1.6666667
2902  -3.0000000
2903   3.3333333
2904   4.0000000
2905   0.0000000
2906  -3.3333333
2907  -5.6666667
2908   5.6666667
2909  -4.6666667
2910  -7.0000000
2911   3.6666667
2912   7.6666667
2913   1.0000000
2914  -3.0000000
2915   0.3333333
2916 -10.6666667
2917   7.0000000
2918   1.0000000
2919   1.0000000
2920   3.6666667
2921  -6.6666667
2922   0.3333333
2923  -3.0000000
2924   0.3333333
2925   1.0000000
2926  -4.3333333
2927  -2.6666667
2928   0.0000000
2929   5.0000000
2930  -3.0000000
2931   3.3333333
2932  -4.0000000
2933  -1.3333333
2934   7.6666667
2935  -0.3333333
2936   0.3333333
2937   9.0000000
2938  -2.3333333
2939  -3.0000000
2940   3.6666667
2941  -3.6666667
2942   0.0000000
2943   7.0000000
2944   0.6666667
2945   2.3333333
2946   7.6666667
2947   1.3333333
2948   6.3333333
2949  -3.6666667
2950   9.3333333
2951  -5.0000000
2952  -2.6666667
2953   1.6666667
2954   2.3333333
2955  -5.3333333
2956  -1.0000000
2957  -2.3333333
2958  -1.6666667
2959  -7.3333333
2960  -2.3333333
2961   4.0000000
2962   3.3333333
2963  -5.0000000
2964  -5.3333333
2965  -6.0000000
2966  -2.0000000
2967   2.3333333
2968   7.3333333
2969   9.6666667
2970  -6.3333333
2971   1.0000000
2972  -1.6666667
2973  -3.6666667
2974   2.3333333
2975  -3.3333333
2976   5.0000000
2977  11.0000000
2978  10.6666667
2979   4.0000000
2980   3.0000000
2981   1.6666667
2982   4.6666667
2983  -1.3333333
2984   1.6666667
2985   7.3333333
2986   2.6666667
2987   6.6666667
2988  -1.0000000
2989   2.3333333
2990  -0.6666667
2991  -6.3333333
2992  -9.3333333
2993  -4.6666667
2994  -5.3333333
2995  -3.3333333
2996  -8.3333333
2997  -2.0000000
2998   2.6666667
2999   8.6666667
3000  -6.6666667
3001   0.0000000
3002   0.3333333
3003   0.3333333
3004  -0.3333333
3005   3.3333333
3006   6.0000000
3007  -1.3333333
3008   3.6666667
3009   4.3333333
3010   4.0000000
3011  -3.6666667
3012   1.6666667
3013  -3.0000000
3014   5.3333333
3015   2.3333333
3016   5.6666667
3017  -7.0000000
3018   9.3333333
3019  -2.3333333
3020   0.3333333
3021  -9.0000000
3022  -3.3333333
3023  -1.6666667
3024  -7.0000000
3025  -1.0000000
3026   4.0000000
3027   2.0000000
3028   0.6666667
3029   3.0000000
3030   3.3333333
3031  -5.3333333
3032  -6.3333333
3033  -8.3333333
3034   1.6666667
3035  -2.3333333
3036   0.0000000
3037   8.3333333
3038  -1.6666667
3039   0.3333333
3040  -2.6666667
3041  -3.6666667
3042  -2.0000000
3043   7.0000000
3044 -11.0000000
3045   4.3333333
3046   3.6666667
3047  -0.6666667
3048   0.0000000
3049   1.6666667
3050   4.3333333
3051  -7.0000000
3052  -4.0000000
3053   6.0000000
3054   5.3333333
3055   3.0000000
3056   7.3333333
3057   8.6666667
3058  -6.6666667
3059   1.3333333
3060   1.6666667
3061   4.6666667
3062  -5.0000000
3063   2.6666667
3064  -1.3333333
3065  -4.0000000
3066   3.6666667
3067   6.6666667
3068   1.6666667
3069   0.6666667
3070   5.3333333
3071   4.6666667
3072  -0.6666667
3073  -4.6666667
3074  -3.3333333
3075   4.6666667
3076  -2.3333333
3077  -7.3333333
3078   4.3333333
3079   6.0000000
3080  -3.3333333
3081  -0.3333333
3082   8.0000000
3083  -1.0000000
3084  12.6666667
3085   4.3333333
3086  -3.0000000
3087  -2.0000000
3088  -5.3333333
3089   5.6666667
3090  -3.6666667
3091  -5.6666667
3092  -2.6666667
3093   2.6666667
3094   2.6666667
3095  -3.6666667
3096   2.0000000
3097  -6.6666667
3098   0.0000000
3099   9.0000000
3100  -3.0000000
3101   0.6666667
3102   7.6666667
3103   5.3333333
3104   0.6666667
3105   2.3333333
3106   8.3333333
3107  -3.6666667
3108  -5.0000000
3109  -1.3333333
3110   2.0000000
3111  -1.0000000
3112   2.3333333
3113   2.3333333
3114  -6.6666667
3115   5.3333333
3116   5.3333333
3117  -2.6666667
3118   8.3333333
3119  -4.6666667
3120   1.0000000
3121   8.3333333
3122   7.3333333
3123  -1.3333333
3124   0.0000000
3125   4.3333333
3126  -2.6666667
3127   2.6666667
3128   1.3333333
3129  -9.6666667
3130   1.6666667
3131   3.0000000
3132  -6.6666667
3133  -6.0000000
3134  -2.0000000
3135  -5.3333333
3136   4.3333333
3137   0.3333333
3138  -6.3333333
3139   1.6666667
3140  -4.3333333
3141  -1.0000000
3142  -5.3333333
3143  -2.6666667
3144   1.0000000
3145  -7.3333333
3146   4.3333333
3147   0.3333333
3148  -2.3333333
3149  -8.6666667
3150   7.0000000
3151   4.0000000
3152   0.3333333
3153  -3.6666667
3154  -3.0000000
3155  -0.3333333
3156  -3.3333333
3157  -4.6666667
3158   6.6666667
3159  -4.3333333
3160   4.0000000
3161  -6.3333333
3162  -8.3333333
3163  -1.0000000
3164   2.6666667
3165   9.3333333
3166   0.6666667
3167  -1.6666667
3168  -5.0000000
3169   3.3333333
3170   3.0000000
3171  -7.6666667
3172   1.3333333
3173  -5.6666667
3174   3.0000000
3175  -3.3333333
3176  -5.6666667
3177   4.6666667
3178  -7.0000000
3179   3.0000000
3180  -0.3333333
3181   1.0000000
3182  -0.6666667
3183  -0.3333333
3184  -5.6666667
3185   1.6666667
3186  -2.0000000
3187   1.0000000
3188  -4.3333333
3189  -0.3333333
3190  -3.3333333
3191  -4.0000000
3192   5.6666667
3193  -5.6666667
3194   1.6666667
3195  -4.3333333
3196 -10.0000000
3197  -9.0000000
3198  -0.3333333
3199  -0.6666667
3200  -4.6666667
3201   5.3333333
3202  -1.3333333
3203  -8.0000000
3204  -6.0000000
3205  -7.0000000
3206  -2.3333333
3207   7.0000000
3208  -4.0000000
3209   1.6666667
3210   5.6666667
3211  -4.6666667
3212  -3.0000000
3213   0.3333333
3214  -1.3333333
3215   1.6666667
3216  -4.6666667
3217   3.3333333
3218   6.0000000
3219   6.6666667
3220   5.0000000
3221  -6.6666667
3222  -3.6666667
3223   0.3333333
3224   0.3333333
3225  -2.6666667
3226   3.0000000
3227  -4.0000000
3228  -4.3333333
3229   4.0000000
3230   0.6666667
3231  -1.3333333
3232  -5.0000000
3233  -0.6666667
3234   0.3333333
3235   1.0000000
3236  -1.0000000
3237   2.3333333
3238   5.3333333
3239  -1.3333333
3240   0.6666667
3241  -1.3333333
3242  -5.0000000
3243   1.6666667
3244   9.0000000
3245   6.3333333
3246  -9.0000000
3247   8.3333333
3248  -6.6666667
3249 -12.3333333
3250  -0.3333333
3251  -1.6666667
3252  -3.0000000
3253  -0.3333333
3254   2.3333333
3255   0.6666667
3256  -3.6666667
3257   4.6666667
3258  -6.0000000
3259  -9.3333333
3260  -0.6666667
3261   7.0000000
3262  -1.0000000
3263  -0.6666667
3264   4.6666667
3265   2.6666667
3266  -4.6666667
3267  -2.0000000
3268  -1.6666667
3269   6.3333333
3270   1.6666667
3271   4.0000000
3272   2.6666667
3273  -3.6666667
3274   2.3333333
3275   3.0000000
3276   1.3333333
3277  -3.3333333
3278  -8.6666667
3279   6.3333333
3280  -1.6666667
3281   1.6666667
3282   4.6666667
3283   3.0000000
3284  -3.0000000
3285   2.0000000
3286  -9.6666667
3287   2.0000000
3288  12.0000000
3289  -2.0000000
3290   0.3333333
3291   6.0000000
3292  -6.6666667
3293  -2.0000000
3294   2.6666667
3295  -4.0000000
3296  -6.3333333
3297  -7.0000000
3298  -6.3333333
3299   4.3333333
3300   6.3333333
3301  -3.6666667
3302  -5.3333333
3303   1.6666667
3304   6.6666667
3305  -3.3333333
3306  -8.3333333
3307   6.3333333
3308  -0.3333333
3309  -7.3333333
3310   5.0000000
3311  -3.0000000
3312   6.3333333
3313   5.6666667
3314   1.6666667
3315  -4.3333333
3316  -1.6666667
3317  -6.3333333
3318  -0.3333333
3319  -2.3333333
3320  -4.6666667
3321   6.6666667
3322   4.6666667
3323   3.0000000
3324   0.0000000
3325   1.3333333
3326  -1.6666667
3327  -9.0000000
3328   0.6666667
3329   0.6666667
3330  -6.0000000
3331  -2.6666667
3332   8.3333333
3333   5.6666667
3334  -4.6666667
3335  -0.3333333
3336  -2.3333333
3337  -1.0000000
3338   1.3333333
3339  -2.6666667
3340   5.0000000
3341  -0.3333333
3342   1.3333333
3343   0.3333333
3344  -3.3333333
3345   1.6666667
3346   0.0000000
3347  -6.6666667
3348   8.6666667
3349   3.3333333
3350  -3.0000000
3351   4.0000000
3352  -6.3333333
3353   4.0000000
3354   4.6666667
3355  -5.3333333
3356   8.3333333
3357  -5.0000000
3358   0.3333333
3359   4.6666667
3360   3.6666667
3361   2.3333333
3362   5.3333333
3363 -11.6666667
3364  -2.0000000
3365   2.6666667
3366  -3.0000000
3367   6.6666667
3368  -2.3333333
3369   1.6666667
3370  -4.6666667
3371   4.6666667
3372  -5.3333333
3373   7.3333333
3374   2.0000000
3375   6.6666667
3376  -0.3333333
3377  -3.3333333
3378  -7.0000000
3379   5.3333333
3380  -1.3333333
3381  -1.6666667
3382   1.6666667
3383  -0.3333333
3384  -3.3333333
3385  -6.0000000
3386   4.6666667
3387  -7.6666667
3388  -1.3333333
3389   5.3333333
3390  -2.3333333
3391   7.0000000
3392   2.3333333
3393   1.0000000
3394   2.6666667
3395   9.3333333
3396   4.0000000
3397  -6.6666667
3398   2.0000000
3399   1.3333333
3400   2.3333333
3401  -1.6666667
3402   0.6666667
3403   3.6666667
3404  -3.6666667
3405  -3.0000000
3406   2.6666667
3407  -3.6666667
3408  -5.0000000
3409  -0.6666667
3410   6.0000000
3411  -1.0000000
3412  -0.3333333
3413   5.6666667
3414  -2.6666667
3415  -6.6666667
3416   4.3333333
3417  -0.6666667
3418  -4.0000000
3419  -1.3333333
3420   7.0000000
3421   3.0000000
3422  -4.6666667
3423   2.6666667
3424  -2.3333333
3425  -1.6666667
3426  -3.6666667
3427   2.0000000
3428  -0.3333333
3429   0.0000000
3430   6.3333333
3431   2.0000000
3432   0.3333333
3433  -2.3333333
3434  -4.6666667
3435   0.6666667
3436   1.6666667
3437   8.6666667
3438   1.6666667
3439   6.3333333
3440  -3.6666667
3441   4.0000000
3442  -2.0000000
3443  -0.6666667
3444   2.0000000
3445  -1.3333333
3446   4.6666667
3447   0.3333333
3448  -1.0000000
3449   1.6666667
3450 -10.3333333
3451  -2.0000000
3452   4.3333333
3453  -1.0000000
3454   1.0000000
3455  -2.6666667
3456  -2.3333333
3457  -4.6666667
3458  -3.3333333
3459   4.0000000
3460   1.3333333
3461  -8.3333333
3462   3.3333333
3463   0.6666667
3464   3.3333333
3465   4.3333333
3466   0.6666667
3467  -4.0000000
3468  -3.3333333
3469  -3.3333333
3470  -3.0000000
3471  -2.0000000
3472   3.3333333
3473   0.0000000
3474  -7.0000000
3475  -2.0000000
3476   0.3333333
3477   8.6666667
3478  -2.6666667
3479   6.3333333
3480   2.6666667
3481   0.3333333
3482  -4.3333333
3483   4.6666667
3484  -4.6666667
3485  -4.6666667
3486  -6.6666667
3487   9.6666667
3488   5.3333333
3489   3.0000000
3490   5.0000000
3491  -3.6666667
3492   1.3333333
3493  -9.6666667
3494   0.3333333
3495   1.6666667
3496   5.3333333
3497   3.3333333
3498   0.6666667
3499   2.6666667
3500  -6.3333333
3501  -5.6666667
3502   3.0000000
3503   3.3333333
3504   1.6666667
3505   2.6666667
3506  -0.3333333
3507  -1.6666667
3508  -1.6666667
3509   8.3333333
3510   2.0000000
3511   4.6666667
3512  -2.0000000
3513   5.0000000
3514  -3.3333333
3515   1.0000000
3516  -4.6666667
3517  -1.0000000
3518   3.0000000
3519   4.0000000
3520  -3.3333333
3521  -2.6666667
3522  -3.6666667
3523  -4.6666667
3524   1.3333333
3525   5.3333333
3526   1.0000000
3527   0.6666667
3528   9.6666667
3529   3.0000000
3530  -0.6666667
3531   1.3333333
3532   3.6666667
3533  -7.3333333
3534   0.6666667
3535  -3.3333333
3536   6.0000000
3537   3.6666667
3538  -1.0000000
3539   2.6666667
3540  -5.0000000
3541   0.6666667
3542   5.0000000
3543   0.0000000
3544  -1.6666667
3545  -9.6666667
3546   4.6666667
3547  -8.6666667
3548   0.3333333
3549   5.3333333
3550   8.0000000
3551  -4.3333333
3552   2.6666667
3553   7.3333333
3554  -5.6666667
3555   1.0000000
3556  -7.0000000
3557   0.0000000
3558   0.3333333
3559   4.3333333
3560  -4.3333333
3561   9.3333333
3562   5.0000000
3563  -5.6666667
3564   1.0000000
3565  -5.0000000
3566   4.3333333
3567   7.3333333
3568  -5.3333333
3569  -6.0000000
3570   5.3333333
3571   8.6666667
3572  -2.3333333
3573  -3.0000000
3574  -5.6666667
3575   2.6666667
3576   3.0000000
3577   1.0000000
3578   6.0000000
3579   7.3333333
3580   6.0000000
3581  -2.0000000
3582   5.6666667
3583   2.6666667
3584   8.6666667
3585   2.6666667
3586  -4.3333333
3587  -1.6666667
3588  -6.6666667
3589  -7.3333333
3590 -10.6666667
3591  -6.0000000
3592   5.0000000
3593   1.3333333
3594  -2.6666667
3595   1.3333333
3596  -1.0000000
3597  -0.3333333
3598  -2.3333333
3599  -0.6666667
3600   2.3333333
3601   4.3333333
3602   3.6666667
3603   0.3333333
3604  -4.0000000
3605  -4.6666667
3606  -0.6666667
3607   2.0000000
3608   9.0000000
3609  -4.0000000
3610  -5.0000000
3611  -5.0000000
3612  -3.0000000
3613  -0.3333333
3614   5.6666667
3615  -2.0000000
3616  -5.3333333
3617  -0.3333333
3618   6.0000000
3619   2.6666667
3620  -1.6666667
3621  -3.3333333
3622   4.6666667
3623  -5.3333333
3624   1.6666667
3625   5.3333333
3626  -1.6666667
3627  -1.3333333
3628   0.3333333
3629   6.0000000
3630   5.0000000
3631   0.3333333
3632   5.6666667
3633  -6.6666667
3634  -3.3333333
3635   1.6666667
3636  -4.3333333
3637   1.0000000
3638  -4.0000000
3639   2.0000000
3640   2.6666667
3641  -3.3333333
3642   3.0000000
3643   2.0000000
3644  -4.3333333
3645  -1.3333333
3646  -7.3333333
3647  -2.0000000
3648  -2.3333333
3649   2.6666667
3650  -2.6666667
3651  -3.0000000
3652   2.0000000
3653  -2.3333333
3654  -2.6666667
3655  -5.3333333
3656   6.6666667
3657   2.6666667
3658   1.6666667
3659   7.0000000
3660   1.6666667
3661   1.6666667
3662   1.6666667
3663  -5.0000000
3664   3.0000000
3665   4.0000000
3666   3.0000000
3667  -4.6666667
3668  -0.6666667
3669  -0.6666667
3670   5.3333333
3671  -4.3333333
3672   5.6666667
3673   2.6666667
3674   7.6666667
3675   2.0000000
3676  -6.6666667
3677  -2.0000000
3678  -4.0000000
3679   4.6666667
3680  -5.0000000
3681   0.3333333
3682   8.3333333
3683   5.0000000
3684  -1.6666667
3685   6.0000000
3686  -7.3333333
3687  -3.3333333
3688   3.3333333
3689   5.6666667
3690   3.6666667
3691  -1.6666667
3692   4.3333333
3693   7.0000000
3694   1.3333333
3695   1.0000000
3696   2.0000000
3697  -0.3333333
3698   2.3333333
3699   0.3333333
3700  -2.6666667
3701  -4.6666667
3702   2.0000000
3703   0.3333333
3704  -0.3333333
3705   0.0000000
3706  -1.3333333
3707   5.6666667
3708  -6.6666667
3709  -2.3333333
3710  -4.3333333
3711   5.6666667
3712  -4.6666667
3713   2.3333333
3714   4.6666667
3715   0.3333333
3716   5.0000000
3717   0.6666667
3718   0.0000000
3719  -4.0000000
3720   8.0000000
3721   6.3333333
3722  -6.6666667
3723   6.3333333
3724  -8.3333333
3725  -2.6666667
3726   5.0000000
3727  -1.0000000
3728   5.3333333
3729   4.3333333
3730   6.3333333
3731   0.6666667
3732   6.6666667
3733  -6.3333333
3734  -2.0000000
3735   0.6666667
3736  -6.6666667
3737  -1.6666667
3738   5.3333333
3739  -6.3333333
3740  -2.3333333
3741   4.3333333
3742  -4.6666667
3743  -2.6666667
3744   0.3333333
3745   4.0000000
3746   2.6666667
3747   0.0000000
3748   0.3333333
3749  -6.0000000
3750  -8.0000000
3751   1.3333333
3752  -3.6666667
3753  -0.6666667
3754   0.3333333
3755  -1.6666667
3756  -3.3333333
3757   5.6666667
3758  -4.3333333
3759  -1.6666667
3760   0.0000000
3761  -1.6666667
3762   0.3333333
3763  -2.0000000
3764   5.0000000
3765  -0.6666667
3766   2.6666667
3767  -0.3333333
3768  -2.6666667
3769  -3.6666667
3770  -3.6666667
3771  -1.6666667
3772  -2.3333333
3773   1.6666667
3774  -0.6666667
3775  -4.0000000
3776   5.6666667
3777   4.0000000
3778   0.0000000
3779   6.0000000
3780   5.6666667
3781  -1.6666667
3782   1.0000000
3783  -4.6666667
3784   0.0000000
3785  -7.6666667
3786   2.6666667
3787   1.6666667
3788  -5.0000000
3789   3.0000000
3790  -1.6666667
3791  -9.3333333
3792   3.6666667
3793   9.6666667
3794  -6.0000000
3795  -4.3333333
3796   6.0000000
3797  -5.3333333
3798   1.0000000
3799   7.0000000
3800   3.3333333
3801  -4.3333333
3802  -1.0000000
3803  -6.6666667
3804   1.0000000
3805   4.6666667
3806   4.3333333
3807   4.3333333
3808  11.0000000
3809  -2.3333333
3810   6.3333333
3811  -7.3333333
3812  -3.0000000
3813  -0.6666667
3814   4.3333333
3815  -1.0000000
3816  -6.6666667
3817  -8.3333333
3818   2.6666667
3819  -3.6666667
3820   7.6666667
3821  10.0000000
3822  -5.0000000
3823  -3.3333333
3824   6.3333333
3825  -6.0000000
3826  -6.3333333
3827   6.0000000
3828  -0.3333333
3829   9.3333333
3830  -8.3333333
3831  -7.6666667
3832  -6.6666667
3833   0.3333333
3834   1.6666667
3835   3.0000000
3836  -5.3333333
3837   2.0000000
3838   3.0000000
3839   0.3333333
3840   6.3333333
3841   6.6666667
3842   7.3333333
3843   8.0000000
3844 -10.0000000
3845   8.0000000
3846   0.0000000
3847   8.3333333
3848   2.0000000
3849   8.0000000
3850  -3.3333333
3851   5.3333333
3852   4.0000000
3853   7.3333333
3854   0.0000000
3855  -2.3333333
3856   4.3333333
3857  -2.0000000
3858   5.6666667
3859  -2.6666667
3860  -3.6666667
3861  -2.3333333
3862  -4.3333333
3863   3.6666667
3864   3.3333333
3865  -6.6666667
3866  -6.0000000
3867   3.0000000
3868  -2.6666667
3869   1.0000000
3870  -7.3333333
3871   4.6666667
3872   1.0000000
3873  -6.3333333
3874  -4.3333333
3875   2.0000000
3876  -5.0000000
3877  -0.3333333
3878   0.3333333
3879   4.6666667
3880   3.3333333
3881   2.6666667
3882  -8.3333333
3883  -2.0000000
3884   8.3333333
3885  -1.3333333
3886   7.6666667
3887   0.3333333
3888  -1.3333333
3889  -3.3333333
3890  -5.3333333
3891   0.3333333
3892   4.6666667
3893   0.3333333
3894  -3.6666667
3895   1.0000000
3896  -3.0000000
3897   4.3333333
3898   4.0000000
3899  -9.6666667
3900  -3.0000000
3901  -0.6666667
3902  -5.3333333
3903  -1.3333333
3904   1.6666667
3905   1.3333333
3906   3.0000000
3907   4.0000000
3908   0.0000000
3909  -2.3333333
3910  -2.6666667
3911   2.3333333
3912  -2.6666667
3913   1.3333333
3914   5.0000000
3915   6.3333333
3916   0.3333333
3917   1.6666667
3918  -2.0000000
3919  -5.3333333
3920   7.3333333
3921   6.0000000
3922  -6.6666667
3923  -1.3333333
3924   1.3333333
3925   4.0000000
3926  -3.3333333
3927   0.0000000
3928   1.0000000
3929   3.3333333
3930  -3.3333333
3931  -0.3333333
3932   0.6666667
3933  -5.3333333
3934   4.0000000
3935   0.3333333
3936  -6.0000000
3937   3.6666667
3938   7.3333333
3939  -2.3333333
3940   6.6666667
3941  -7.6666667
3942  -1.3333333
3943   3.3333333
3944   0.6666667
3945  -6.3333333
3946   4.6666667
3947   7.3333333
3948 -12.3333333
3949   0.6666667
3950  -1.0000000
3951  -4.3333333
3952   7.0000000
3953   2.3333333
3954   3.3333333
3955   8.3333333
3956   3.6666667
3957  -2.3333333
3958   0.3333333
3959   2.0000000
3960   2.3333333
3961  -2.6666667
3962  -5.3333333
3963   2.3333333
3964  -8.0000000
3965   0.3333333
3966   6.6666667
3967  -4.3333333
3968   4.0000000
3969  10.0000000
3970   3.0000000
3971   2.6666667
3972   2.6666667
3973   5.3333333
3974   5.0000000
3975   1.0000000
3976   9.0000000
3977  -7.6666667
3978   6.3333333
3979  -4.0000000
3980   3.6666667
3981  -2.0000000
3982  -5.6666667
3983  -6.0000000
3984   0.3333333
3985   6.6666667
3986  -2.3333333
3987   3.0000000
3988   1.0000000
3989  -2.3333333
3990   5.6666667
3991   8.3333333
3992   1.3333333
3993  -1.0000000
3994  -3.6666667
3995  -0.6666667
3996   3.0000000
3997  -3.3333333
3998  -0.6666667
3999  -3.3333333
4000   8.6666667
4001   5.3333333
4002  -5.6666667
4003   2.0000000
4004  -1.6666667
4005   5.0000000
4006   0.3333333
4007   1.3333333
4008  -2.3333333
4009   2.0000000
4010  -6.3333333
4011   8.3333333
4012   1.6666667
4013   0.0000000
4014   4.6666667
4015   0.0000000
4016   4.3333333
4017  -5.6666667
4018   1.0000000
4019  -2.0000000
4020   2.6666667
4021  10.0000000
4022  -1.3333333
4023   3.3333333
4024  -4.3333333
4025  -3.6666667
4026   3.6666667
4027   0.6666667
4028   0.0000000
4029  -6.6666667
4030  -2.0000000
4031   3.6666667
4032   4.3333333
4033   0.6666667
4034  -3.3333333
4035  -9.3333333
4036   1.0000000
4037  -1.6666667
4038  -2.3333333
4039  -7.3333333
4040   2.0000000
4041  -5.0000000
4042  -4.3333333
4043   0.0000000
4044  -2.6666667
4045  -1.0000000
4046   3.6666667
4047   1.0000000
4048   3.3333333
4049   1.0000000
4050  -7.6666667
4051   4.3333333
4052  -5.6666667
4053   6.0000000
4054   0.3333333
4055  -0.6666667
4056  -1.0000000
4057  -1.6666667
4058   7.3333333
4059  -4.6666667
4060   5.0000000
4061   6.0000000
4062   5.3333333
4063  -3.3333333
4064  -5.0000000
4065  -4.0000000
4066  -7.3333333
4067   3.6666667
4068  -1.0000000
4069   1.0000000
4070  -9.0000000
4071   0.3333333
4072  -7.0000000
4073  -7.0000000
4074  -9.0000000
4075  -3.0000000
4076   0.6666667
4077  -3.3333333
4078   3.0000000
4079  -7.6666667
4080  -1.3333333
4081  -3.0000000
4082  -4.3333333
4083  -1.3333333
4084  -0.6666667
4085  -0.6666667
4086   0.6666667
4087   6.0000000
4088   2.0000000
4089   1.3333333
4090  -2.3333333
4091   9.6666667
4092   1.0000000
4093   2.0000000
4094 -10.0000000
4095  -6.3333333
4096   3.6666667
4097  -7.6666667
4098  -6.0000000
4099  -8.6666667
4100   1.3333333
4101  -6.3333333
4102   1.0000000
4103   3.3333333
4104  -4.0000000
4105  -9.3333333
4106   9.6666667
4107  -1.3333333
4108   0.3333333
4109  -1.6666667
4110  -7.3333333
4111  -2.0000000
4112   5.0000000
4113  -1.3333333
4114  -0.3333333
4115   6.3333333
4116   3.6666667
4117  -0.6666667
4118   4.6666667
4119   5.3333333
4120   4.0000000
4121  -5.3333333
4122  -0.3333333
4123   5.0000000
4124  -9.6666667
4125   6.0000000
4126   0.0000000
4127  -2.0000000
4128   0.6666667
4129  -3.3333333
4130   6.0000000
4131  -6.3333333
4132  -2.6666667
4133  -2.6666667
4134  -3.0000000
4135  -0.6666667
4136  -1.0000000
4137   1.6666667
4138   8.0000000
4139  -0.3333333
4140   2.6666667
4141   2.0000000
4142   4.3333333
4143  -2.0000000
4144   7.6666667
4145   2.6666667
4146   1.0000000
4147  -3.6666667
4148  -3.3333333
4149   1.0000000
4150   2.0000000
4151   7.0000000
4152  -8.0000000
4153  -2.0000000
4154   4.6666667
4155  -1.6666667
4156  -3.3333333
4157  -1.0000000
4158   6.6666667
4159   2.6666667
4160   1.0000000
4161  -7.0000000
4162  -4.3333333
4163  -5.0000000
4164   1.3333333
4165   4.0000000
4166  -1.0000000
4167  -3.0000000
4168  -2.3333333
4169   8.6666667
4170  -6.0000000
4171   1.3333333
4172   4.6666667
4173   3.0000000
4174   8.3333333
4175  -1.6666667
4176  -2.3333333
4177  -4.0000000
4178  -2.6666667
4179   1.6666667
4180  -5.3333333
4181   4.3333333
4182  -4.0000000
4183   1.3333333
4184   6.3333333
4185  -0.6666667
4186  -8.0000000
4187  -4.0000000
4188  -2.0000000
4189  -6.6666667
4190   2.6666667
4191   1.6666667
4192  -5.3333333
4193   5.6666667
4194   1.0000000
4195   5.3333333
4196  -6.3333333
4197   7.6666667
4198   3.6666667
4199   6.6666667
4200  -3.0000000
4201   1.3333333
4202   7.0000000
4203   9.3333333
4204  -7.3333333
4205  -1.3333333
4206  -4.0000000
4207  -1.6666667
4208  -5.0000000
4209   0.3333333
4210   4.0000000
4211  -4.0000000
4212   2.6666667
4213  -7.6666667
4214   4.6666667
4215   3.3333333
4216  -5.3333333
4217   0.3333333
4218  -5.3333333
4219  -2.6666667
4220   2.0000000
4221  -6.6666667
4222   3.3333333
4223  -2.0000000
4224   1.0000000
4225  -1.6666667
4226   1.0000000
4227  -2.0000000
4228  -4.3333333
4229  -1.6666667
4230  -4.3333333
4231  -1.6666667
4232  -1.6666667
4233  -3.0000000
4234   1.3333333
4235  -1.3333333
4236   5.3333333
4237  -2.0000000
4238  -1.3333333
4239   0.0000000
4240   1.3333333
4241  -5.6666667
4242  -7.6666667
4243   3.6666667
4244   3.6666667
4245   0.0000000
4246  -2.0000000
4247  -4.3333333
4248   1.0000000
4249   4.6666667
4250   3.6666667
4251  -3.3333333
4252  -3.6666667
4253   6.3333333
4254  -6.0000000
4255  -0.6666667
4256   3.3333333
4257   4.0000000
4258  -1.3333333
4259  -0.6666667
4260   0.0000000
4261   3.0000000
4262   2.3333333
4263   2.0000000
4264  -0.3333333
4265   5.6666667
4266  -2.0000000
4267  -1.3333333
4268  -4.6666667
4269  -2.6666667
4270  -8.0000000
4271  -1.0000000
4272   3.0000000
4273  -2.0000000
4274  -1.6666667
4275   5.6666667
4276  -5.6666667
4277   1.0000000
4278  -3.6666667
4279   0.3333333
4280  -4.3333333
4281  -2.6666667
4282  -1.0000000
4283  -2.0000000
4284   2.3333333
4285   5.0000000
4286  -4.3333333
4287  -4.0000000
4288   0.3333333
4289   5.6666667
4290   9.6666667
4291  -4.3333333
4292  -0.3333333
4293  -4.6666667
4294   6.3333333
4295  -2.6666667
4296  -7.3333333
4297   5.0000000
4298   0.6666667
4299  -1.6666667
4300   2.6666667
4301   5.0000000
4302   3.6666667
4303   2.3333333
4304  -2.3333333
4305   6.0000000
4306  -3.6666667
4307  -4.6666667
4308   3.0000000
4309  -7.6666667
4310  -6.3333333
4311  -5.6666667
4312  -3.0000000
4313   5.6666667
4314   6.3333333
4315   9.0000000
4316  -3.0000000
4317  -3.6666667
4318   3.3333333
4319  -5.0000000
4320  -4.0000000
4321   1.0000000
4322   2.6666667
4323   6.0000000
4324   3.0000000
4325   0.3333333
4326   5.3333333
4327   1.6666667
4328  -2.3333333
4329   0.6666667
4330  -2.0000000
4331  -1.3333333
4332   6.0000000
4333  -0.3333333
4334   1.6666667
4335  -0.6666667
4336   0.0000000
4337   6.3333333
4338  -6.3333333
4339  -4.6666667
4340  -5.6666667
4341   5.3333333
4342   0.3333333
4343   2.0000000
4344  -3.6666667
4345   0.3333333
4346  11.6666667
4347  -2.0000000
4348  -0.3333333
4349  -2.0000000
4350   4.0000000
4351   4.6666667
4352   6.3333333
4353  -3.0000000
4354   1.0000000
4355  -2.3333333
4356   0.6666667
4357  -7.6666667
4358   6.6666667
4359   1.6666667
4360  -4.6666667
4361  -2.0000000
4362   2.3333333
4363  -3.6666667
4364  -3.6666667
4365   5.6666667
4366   3.0000000
4367  -3.3333333
4368  -3.6666667
4369  -2.3333333
4370   1.3333333
4371   4.3333333
4372   2.0000000
4373   0.6666667
4374   3.0000000
4375   5.6666667
4376  -4.6666667
4377  -2.0000000
4378   1.3333333
4379   2.6666667
4380   1.6666667
4381  -1.6666667
4382   1.6666667
4383   5.3333333
4384  -0.3333333
4385   6.6666667
4386   7.3333333
4387  -8.0000000
4388  -3.0000000
4389   4.3333333
4390  -0.6666667
4391   2.0000000
4392  -7.6666667
4393  -6.0000000
4394  -1.6666667
4395  -2.0000000
4396  -0.6666667
4397   6.3333333
4398  -3.3333333
4399  -2.6666667
4400  -1.6666667
4401   0.6666667
4402   3.3333333
4403 -12.3333333
4404   4.0000000
4405   7.0000000
4406  -2.6666667
4407 -10.0000000
4408  -7.0000000
4409   2.6666667
4410   4.3333333
4411   1.3333333
4412   2.6666667
4413  -6.3333333
4414   1.0000000
4415  -3.0000000
4416   2.6666667
4417  -4.6666667
4418   6.6666667
4419   3.0000000
4420   7.0000000
4421  -6.3333333
4422  -6.3333333
4423  -2.3333333
4424   4.0000000
4425  -4.0000000
4426   0.3333333
4427  -5.3333333
4428   2.3333333
4429  -5.6666667
4430  -9.0000000
4431  -1.0000000
4432  -0.6666667
4433  -3.6666667
4434  -4.0000000
4435   3.0000000
4436   0.6666667
4437   4.3333333
4438  -1.0000000
4439  -1.6666667
4440   5.6666667
4441   3.0000000
4442   1.3333333
4443   1.0000000
4444   3.6666667
4445   7.3333333
4446  -1.3333333
4447  -6.6666667
4448   1.3333333
4449 -12.0000000
4450  -5.6666667
4451  -7.3333333
4452  -5.3333333
4453  -4.0000000
4454   1.3333333
4455   7.6666667
4456  -4.0000000
4457  -1.6666667
4458   4.0000000
4459  -4.3333333
4460  -1.6666667
4461   6.3333333
4462  -7.6666667
4463  10.0000000
4464  13.6666667
4465   0.6666667
4466   1.3333333
4467  -3.3333333
4468  -2.3333333
4469   0.6666667
4470  -6.6666667
4471   7.0000000
4472  -4.0000000
4473   4.6666667
4474   3.3333333
4475  -3.6666667
4476 -11.0000000
4477   4.0000000
4478   6.0000000
4479  -5.0000000
4480  -0.6666667
4481  -6.6666667
4482  -4.0000000
4483   7.6666667
4484   6.6666667
4485  -1.3333333
4486  -0.3333333
4487   0.6666667
4488  -8.3333333
4489   1.6666667
4490  -2.3333333
4491  -3.0000000
4492  -8.0000000
4493  -2.3333333
4494  -7.3333333
4495  -4.6666667
4496  -2.3333333
4497  -6.0000000
4498  -1.6666667
4499   4.0000000
4500   3.0000000
4501  -6.6666667
4502   6.0000000
4503  -1.6666667
4504   0.3333333
4505   2.0000000
4506  -6.3333333
4507  -9.0000000
4508   3.0000000
4509   4.3333333
4510  -1.0000000
4511   7.6666667
4512  -1.0000000
4513  -2.6666667
4514   6.6666667
4515   6.3333333
4516  -3.6666667
4517  -5.3333333
4518   0.6666667
4519   1.0000000
4520   8.6666667
4521   6.3333333
4522  -0.6666667
4523   1.6666667
4524   3.3333333
4525  -7.0000000
4526   8.6666667
4527   2.3333333
4528  -3.3333333
4529  -3.6666667
4530  -7.3333333
4531  -4.6666667
4532   0.3333333
4533   1.0000000
4534   3.3333333
4535   4.0000000
4536  -6.3333333
4537 -10.0000000
4538   5.3333333
4539  -2.6666667
4540   6.0000000
4541  -3.0000000
4542  10.6666667
4543   4.3333333
4544   2.6666667
4545  -4.3333333
4546  -4.3333333
4547  -6.0000000
4548  -0.6666667
4549   5.6666667
4550  -5.0000000
4551   1.6666667
4552   2.3333333
4553   6.6666667
4554  -6.3333333
4555  -3.0000000
4556  -1.0000000
4557   6.3333333
4558   1.3333333
4559   1.6666667
4560   7.6666667
4561   4.6666667
4562  -2.3333333
4563  -1.3333333
4564   1.0000000
4565  -2.6666667
4566   6.3333333
4567   5.6666667
4568  -4.6666667
4569  -5.0000000
4570  -5.3333333
4571   3.3333333
4572   3.6666667
4573   2.6666667
4574  -2.0000000
4575  -2.0000000
4576   0.0000000
4577   8.6666667
4578   3.3333333
4579   0.3333333
4580 -10.6666667
4581  -7.0000000
4582   4.3333333
4583   5.3333333
4584   1.0000000
4585   1.3333333
4586   0.6666667
4587   3.3333333
4588  -5.6666667
4589   0.6666667
4590   2.6666667
4591  -4.3333333
4592   6.6666667
4593   0.6666667
4594   6.0000000
4595   2.3333333
4596  -1.6666667
4597   2.0000000
4598  -2.3333333
4599   1.0000000
4600  -4.0000000
4601   4.3333333
4602   0.3333333
4603   3.0000000
4604  -2.3333333
4605   0.0000000
4606  -0.6666667
4607   1.0000000
4608  -3.3333333
4609   2.6666667
4610   7.0000000
4611  -2.6666667
4612  -8.6666667
4613   3.6666667
4614  -3.0000000
4615   2.0000000
4616  -5.0000000
4617  -9.0000000
4618   4.0000000
4619  -9.3333333
4620   9.6666667
4621   3.3333333
4622   6.6666667
4623  -5.6666667
4624   3.6666667
4625   0.0000000
4626   1.6666667
4627   9.3333333
4628   0.3333333
4629  -3.6666667
4630   2.0000000
4631  -3.0000000
4632  -2.3333333
4633  -5.0000000
4634   6.6666667
4635  -7.3333333
4636   4.6666667
4637  -4.3333333
4638   2.3333333
4639   4.3333333
4640   4.3333333
4641   5.6666667
4642  -4.0000000
4643   4.0000000
4644   2.3333333
4645  -0.3333333
4646   3.0000000
4647  -0.3333333
4648   3.3333333
4649  -5.0000000
4650   5.6666667
4651  -1.6666667
4652  -4.3333333
4653   6.6666667
4654  -4.0000000
4655  -1.3333333
4656   7.3333333
4657   4.6666667
4658   2.3333333
4659  10.0000000
4660   2.3333333
4661  -2.3333333
4662   4.0000000
4663   2.6666667
4664   6.3333333
4665   3.0000000
4666   4.6666667
4667  -3.0000000
4668   1.3333333
4669  -2.3333333
4670  -1.6666667
4671  -0.3333333
4672  -6.3333333
4673   1.3333333
4674   5.0000000
4675   3.3333333
4676   3.0000000
4677   4.3333333
4678   2.0000000
4679  -8.0000000
4680  -2.0000000
4681  -2.0000000
4682  -6.0000000
4683   0.0000000
4684   2.6666667
4685  -2.0000000
4686   9.0000000
4687   0.3333333
4688  -2.3333333
4689   6.6666667
4690   1.6666667
4691   8.6666667
4692   7.6666667
4693  -6.3333333
4694  -8.3333333
4695  -5.6666667
4696  -2.3333333
4697   3.3333333
4698   9.6666667
4699  -1.3333333
4700  -6.3333333
4701  -5.3333333
4702   0.0000000
4703   4.0000000
4704  -3.6666667
4705  -4.3333333
4706  -1.3333333
4707   0.3333333
4708   2.6666667
4709   2.6666667
4710  -5.0000000
4711  -0.6666667
4712   4.3333333
4713  -4.6666667
4714   4.6666667
4715   4.0000000
4716   1.0000000
4717  -3.0000000
4718 -11.0000000
4719  -7.0000000
4720  -2.3333333
4721   1.0000000
4722   3.6666667
4723  -8.6666667
4724   8.6666667
4725  -0.3333333
4726  -1.0000000
4727   4.3333333
4728  -0.6666667
4729   4.0000000
4730  -3.0000000
4731  -0.6666667
4732  -0.3333333
4733  10.3333333
4734  -6.6666667
4735  -7.3333333
4736   2.6666667
4737  -2.6666667
4738   2.0000000
4739  -8.6666667
4740  11.0000000
4741  -3.0000000
4742  -1.3333333
4743   0.6666667
4744   2.3333333
4745  -1.0000000
4746  -4.6666667
4747   5.6666667
4748   3.3333333
4749   5.6666667
4750   0.6666667
4751  -1.6666667
4752   1.3333333
4753  -5.3333333
4754   2.0000000
4755  -4.3333333
4756  -5.6666667
4757  -3.3333333
4758   0.3333333
4759   4.6666667
4760   3.0000000
4761   5.6666667
4762  -1.0000000
4763   6.0000000
4764  -6.3333333
4765  -1.0000000
4766  -7.6666667
4767   4.6666667
4768   2.0000000
4769   6.3333333
4770  -5.3333333
4771  -6.3333333
4772  -6.0000000
4773   6.0000000
4774  -7.6666667
4775   5.3333333
4776   3.0000000
4777  -4.0000000
4778  -4.0000000
4779   1.0000000
4780   1.6666667
4781   0.6666667
4782   3.6666667
4783   2.6666667
4784  -2.6666667
4785   1.3333333
4786  -0.6666667
4787  -4.3333333
4788   2.6666667
4789   2.3333333
4790   6.6666667
4791   6.0000000
4792   0.6666667
4793  -5.0000000
4794  -1.0000000
4795   5.0000000
4796   8.0000000
4797  -6.3333333
4798  -3.0000000
4799   7.0000000
4800  -3.6666667
4801  -3.3333333
4802  -0.6666667
4803   4.0000000
4804   2.3333333
4805   5.3333333
4806   0.0000000
4807   7.6666667
4808   1.0000000
4809  -3.6666667
4810  -1.3333333
4811   7.3333333
4812  -3.6666667
4813   4.3333333
4814  -3.3333333
4815  -6.6666667
4816   0.0000000
4817  -3.0000000
4818   2.6666667
4819  -2.0000000
4820   3.6666667
4821   2.3333333
4822   3.3333333
4823   8.0000000
4824  -7.0000000
4825  -4.6666667
4826   1.0000000
4827   7.3333333
4828  -7.0000000
4829  -3.3333333
4830  -6.0000000
4831  -8.0000000
4832  -5.0000000
4833  -1.3333333
4834  -0.3333333
4835   9.3333333
4836  -4.3333333
4837  -0.3333333
4838   9.6666667
4839   8.6666667
4840  -1.0000000
4841  -1.6666667
4842   6.0000000
4843   6.6666667
4844  -6.3333333
4845  -6.0000000
4846  11.0000000
4847  -2.6666667
4848   0.3333333
4849   2.0000000
4850   8.0000000
4851   8.6666667
4852  -0.6666667
4853   5.3333333
4854   3.6666667
4855   6.6666667
4856  -1.0000000
4857   0.6666667
4858   3.3333333
4859  -6.3333333
4860   6.0000000
4861  -1.3333333
4862   1.0000000
4863   7.6666667
4864 -11.3333333
4865   1.0000000
4866   9.3333333
4867  -0.6666667
4868  -0.3333333
4869   0.6666667
4870  -5.6666667
4871  -2.3333333
4872  -1.0000000
4873  -3.6666667
4874   7.6666667
4875  -4.0000000
4876  -1.3333333
4877  -4.3333333
4878  -1.3333333
4879  -5.3333333
4880  -1.6666667
4881  -0.3333333
4882   0.6666667
4883   0.3333333
4884   0.3333333
4885  -8.3333333
4886   5.6666667
4887  -1.0000000
4888   4.3333333
4889   6.6666667
4890  -7.6666667
4891   1.6666667
4892  -4.0000000
4893   9.6666667
4894   6.0000000
4895  -5.3333333
4896  -7.0000000
4897   1.0000000
4898   4.3333333
4899 -11.6666667
4900   7.6666667
4901  -3.3333333
4902  -4.3333333
4903  -3.0000000
4904   8.0000000
4905   3.6666667
4906  -5.0000000
4907   4.3333333
4908   4.0000000
4909   5.3333333
4910   0.0000000
4911   3.0000000
4912  -1.6666667
4913  -8.3333333
4914   5.0000000
4915  -1.6666667
4916  -0.3333333
4917   2.0000000
4918   4.3333333
4919   4.6666667
4920   2.6666667
4921   4.0000000
4922 -11.3333333
4923   0.0000000
4924  -1.6666667
4925   6.6666667
4926   5.6666667
4927  -1.0000000
4928   3.0000000
4929  -5.3333333
4930   0.6666667
4931   0.0000000
4932   1.6666667
4933   3.3333333
4934   4.3333333
4935   1.3333333
4936  -6.0000000
4937   1.6666667
4938   1.0000000
4939  -0.6666667
4940   1.6666667
4941  -2.0000000
4942  -7.6666667
4943  -4.6666667
4944   4.0000000
4945   0.0000000
4946  -8.0000000
4947   6.0000000
4948   1.3333333
4949  -1.3333333
4950   3.3333333
4951 -10.0000000
4952  -1.6666667
4953   4.6666667
4954  -3.3333333
4955  -1.3333333
4956   1.0000000
4957   2.6666667
4958  -2.3333333
4959  -2.6666667
4960  -2.0000000
4961  12.0000000
4962   2.3333333
4963   0.3333333
4964  -3.0000000
4965  -3.3333333
4966   3.6666667
4967   1.3333333
4968  -2.3333333
4969   2.3333333
4970   6.0000000
4971   8.0000000
4972  -7.3333333
4973  -1.6666667
4974   5.0000000
4975  -5.6666667
4976  -6.3333333
4977   6.6666667
4978  10.6666667
4979  -6.3333333
4980  -2.6666667
4981  -6.0000000
4982   2.3333333
4983  -0.6666667
4984  -5.0000000
4985   6.0000000
4986   9.0000000
4987   1.3333333
4988   7.0000000
4989   3.6666667
4990  -6.0000000
4991   1.3333333
4992  -7.6666667
4993   6.6666667
4994  -4.3333333
4995   2.6666667
4996   4.0000000
4997   4.3333333
4998  -6.3333333
4999  -1.6666667
###
prop1(~ diffmean <= obs_mean1, data = null_dist2)
prop_TRUE 
   0.3632 
###
gf_histogram(data = null_dist2, ~ diffmean, 
             bins = 25) %>%
  gf_vline(xintercept = obs_mean1, 
           colour = "red", linewidth = 1,
           title = "Null Distribution by Permutation for Gender") %>% 
  gf_labs(x = "Difference in Means")

To determine if the difference in tipping between genders is statistically significant, a null distribution is created by randomly shuffling the Gender variable 4,999 times, allowing for a comparison with the observed mean difference of -2. The results show that about 35.84% of the null distribution. It shows how often the random shuffling resulted in a mean difference that is as extreme as the observed difference of -2. Since about 35.84% of the shuffled results are less than or equal to -2, it means there is a 35.84% chance that such a mean difference could occur by random, indicating that there may not be a real difference in tipping behavior between genders. The red line is the position of the observed mean difference. Overall, this plot shows that the observed difference falls within the range of what might occur by random chance, once again showing that the tipping behavior between genders is similar rather than significantly different.

Conclusion

This study examined the tipping behavior of vegetarians and non-vegetarians, as well as the differences in tips given by males and females among students. The initial analysis using a t-test indicated no significant difference in tipping amounts between the groups, with p-values above 0.05. However, since both groups’ tipping data did not follow a normal distribution, as confirmed by the Shapiro test, non-parametric methods like the Wilcoxon test were conducted for more reliable results. The Wilcoxon test further supported the findings of the t-test, showing no significant difference in tips between vegetarians and non-vegetarians, or between males and females. Additionally, the permutation test showed how often observed differences might occur due to random chance, reconfirming the findings that tipping behaviors are similar across the examined groups. Overall, the combination of these statistical tests provided a clear understanding of tipping behavior among students, revealing that tipping amounts were generally low, often reaching 0, across all analyzed groups.